]> git.ipfire.org Git - thirdparty/grsecurity-scrape.git/commitdiff
Auto commit, 1 new patch{es}.
authorPiotr Karbowski <piotr.karbowski@gmail.com>
Sun, 13 Nov 2016 21:43:19 +0000 (22:43 +0100)
committerPiotr Karbowski <piotr.karbowski@gmail.com>
Sun, 13 Nov 2016 21:43:19 +0000 (22:43 +0100)
test/grsecurity-3.1-4.8.7-201611102210.patch

index 5240727353eba39c0002e040a81d0171082a66c2..76a16d1d4b26eb57d93acd2ffd7c0a6a96548ba2 100644 (file)
@@ -159486,4 +159486,61060 @@ index fd7b41e..71dae11 100644
                return -ENOBUFS;
        }
  
-@@ -463,7 +463,7 @@ int __sk_receive_skb(struct sock *sk, s
\ No newline at end of file
+@@ -463,7 +463,7 @@ int __sk_receive_skb(struct sock *sk, struct sk_buff *skb,
+       skb->dev = NULL;
+       if (sk_rcvqueues_full(sk, sk->sk_rcvbuf)) {
+-              atomic_inc(&sk->sk_drops);
++              atomic_inc_unchecked(&sk->sk_drops);
+               goto discard_and_relse;
+       }
+       if (nested)
+@@ -481,7 +481,7 @@ int __sk_receive_skb(struct sock *sk, struct sk_buff *skb,
+               mutex_release(&sk->sk_lock.dep_map, 1, _RET_IP_);
+       } else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) {
+               bh_unlock_sock(sk);
+-              atomic_inc(&sk->sk_drops);
++              atomic_inc_unchecked(&sk->sk_drops);
+               goto discard_and_relse;
+       }
+@@ -889,19 +889,6 @@ set_rcvbuf:
+               }
+               break;
+-      case SO_ATTACH_BPF:
+-              ret = -EINVAL;
+-              if (optlen == sizeof(u32)) {
+-                      u32 ufd;
+-
+-                      ret = -EFAULT;
+-                      if (copy_from_user(&ufd, optval, sizeof(ufd)))
+-                              break;
+-
+-                      ret = sk_attach_bpf(ufd, sk);
+-              }
+-              break;
+-
+       case SO_ATTACH_REUSEPORT_CBPF:
+               ret = -EINVAL;
+               if (optlen == sizeof(struct sock_fprog)) {
+@@ -915,6 +902,20 @@ set_rcvbuf:
+               }
+               break;
++#ifndef GRKERNSEC_BPF_HARDEN
++      case SO_ATTACH_BPF:
++              ret = -EINVAL;
++              if (optlen == sizeof(u32)) {
++                      u32 ufd;
++
++                      ret = -EFAULT;
++                      if (copy_from_user(&ufd, optval, sizeof(ufd)))
++                              break;
++
++                      ret = sk_attach_bpf(ufd, sk);
++              }
++              break;
++
+       case SO_ATTACH_REUSEPORT_EBPF:
+               ret = -EINVAL;
+               if (optlen == sizeof(u32)) {
+@@ -928,6 +929,8 @@ set_rcvbuf:
+               }
+               break;
++#endif
++
+       case SO_DETACH_FILTER:
+               ret = sk_detach_filter(sk);
+               break;
+@@ -1037,12 +1040,12 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
+               struct timeval tm;
+       } v;
+-      int lv = sizeof(int);
+-      int len;
++      unsigned int lv = sizeof(int);
++      unsigned int len;
+       if (get_user(len, optlen))
+               return -EFAULT;
+-      if (len < 0)
++      if (len > INT_MAX)
+               return -EINVAL;
+       memset(&v, 0, sizeof(v));
+@@ -1180,11 +1183,11 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
+       case SO_PEERNAME:
+       {
+-              char address[128];
++              char address[_K_SS_MAXSIZE];
+               if (sock->ops->getname(sock, (struct sockaddr *)address, &lv, 2))
+                       return -ENOTCONN;
+-              if (lv < len)
++              if (lv < len || sizeof address < len)
+                       return -EINVAL;
+               if (copy_to_user(optval, address, len))
+                       return -EFAULT;
+@@ -1272,7 +1275,7 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
+       if (len > lv)
+               len = lv;
+-      if (copy_to_user(optval, &v, len))
++      if (len > sizeof(v) || copy_to_user(optval, &v, len))
+               return -EFAULT;
+ lenout:
+       if (put_user(len, optlen))
+@@ -1536,7 +1539,7 @@ struct sock *sk_clone_lock(const struct sock *sk, const gfp_t priority)
+               newsk->sk_dst_cache     = NULL;
+               newsk->sk_wmem_queued   = 0;
+               newsk->sk_forward_alloc = 0;
+-              atomic_set(&newsk->sk_drops, 0);
++              atomic_set_unchecked(&newsk->sk_drops, 0);
+               newsk->sk_send_head     = NULL;
+               newsk->sk_userlocks     = sk->sk_userlocks & ~SOCK_BINDPORT_LOCK;
+@@ -1565,7 +1568,7 @@ struct sock *sk_clone_lock(const struct sock *sk, const gfp_t priority)
+               newsk->sk_err      = 0;
+               newsk->sk_priority = 0;
+               newsk->sk_incoming_cpu = raw_smp_processor_id();
+-              atomic64_set(&newsk->sk_cookie, 0);
++              atomic64_set_unchecked(&newsk->sk_cookie, 0);
+               cgroup_sk_alloc(&newsk->sk_cgrp_data);
+@@ -2497,7 +2500,7 @@ void sock_init_data(struct socket *sock, struct sock *sk)
+        */
+       smp_wmb();
+       atomic_set(&sk->sk_refcnt, 1);
+-      atomic_set(&sk->sk_drops, 0);
++      atomic_set_unchecked(&sk->sk_drops, 0);
+ }
+ EXPORT_SYMBOL(sock_init_data);
+@@ -2621,6 +2624,7 @@ void sock_enable_timestamp(struct sock *sk, int flag)
+ int sock_recv_errqueue(struct sock *sk, struct msghdr *msg, int len,
+                      int level, int type)
+ {
++      struct sock_extended_err ee;
+       struct sock_exterr_skb *serr;
+       struct sk_buff *skb;
+       int copied, err;
+@@ -2642,7 +2646,8 @@ int sock_recv_errqueue(struct sock *sk, struct msghdr *msg, int len,
+       sock_recv_timestamp(msg, sk, skb);
+       serr = SKB_EXT_ERR(skb);
+-      put_cmsg(msg, level, type, sizeof(serr->ee), &serr->ee);
++      ee = serr->ee;
++      put_cmsg(msg, level, type, sizeof ee, &ee);
+       msg->msg_flags |= MSG_ERRQUEUE;
+       err = copied;
+@@ -3094,7 +3099,7 @@ static __net_exit void proto_exit_net(struct net *net)
+ }
+-static __net_initdata struct pernet_operations proto_net_ops = {
++static __net_initconst struct pernet_operations proto_net_ops = {
+       .init = proto_init_net,
+       .exit = proto_exit_net,
+ };
+diff --git a/net/core/sock_diag.c b/net/core/sock_diag.c
+index 6b10573..af9e62e 100644
+--- a/net/core/sock_diag.c
++++ b/net/core/sock_diag.c
+@@ -14,7 +14,7 @@
+ #include <linux/inet_diag.h>
+ #include <linux/sock_diag.h>
+-static const struct sock_diag_handler *sock_diag_handlers[AF_MAX];
++static const struct sock_diag_handler *sock_diag_handlers[AF_MAX] __read_only;
+ static int (*inet_rcv_compat)(struct sk_buff *skb, struct nlmsghdr *nlh);
+ static DEFINE_MUTEX(sock_diag_table_mutex);
+ static struct workqueue_struct *broadcast_wq;
+@@ -22,12 +22,12 @@ static struct workqueue_struct *broadcast_wq;
+ static u64 sock_gen_cookie(struct sock *sk)
+ {
+       while (1) {
+-              u64 res = atomic64_read(&sk->sk_cookie);
++              u64 res = atomic64_read_unchecked(&sk->sk_cookie);
+               if (res)
+                       return res;
+-              res = atomic64_inc_return(&sock_net(sk)->cookie_gen);
+-              atomic64_cmpxchg(&sk->sk_cookie, 0, res);
++              res = atomic64_inc_return_unchecked(&sock_net(sk)->cookie_gen);
++              atomic64_cmpxchg_unchecked(&sk->sk_cookie, 0, res);
+       }
+ }
+@@ -67,7 +67,7 @@ int sock_diag_put_meminfo(struct sock *sk, struct sk_buff *skb, int attrtype)
+       mem[SK_MEMINFO_WMEM_QUEUED] = sk->sk_wmem_queued;
+       mem[SK_MEMINFO_OPTMEM] = atomic_read(&sk->sk_omem_alloc);
+       mem[SK_MEMINFO_BACKLOG] = sk->sk_backlog.len;
+-      mem[SK_MEMINFO_DROPS] = atomic_read(&sk->sk_drops);
++      mem[SK_MEMINFO_DROPS] = atomic_read_unchecked(&sk->sk_drops);
+       return nla_put(skb, attrtype, sizeof(mem), &mem);
+ }
+@@ -193,8 +193,11 @@ int sock_diag_register(const struct sock_diag_handler *hndl)
+       mutex_lock(&sock_diag_table_mutex);
+       if (sock_diag_handlers[hndl->family])
+               err = -EBUSY;
+-      else
++      else {
++              pax_open_kernel();
+               sock_diag_handlers[hndl->family] = hndl;
++              pax_close_kernel();
++      }
+       mutex_unlock(&sock_diag_table_mutex);
+       return err;
+@@ -210,7 +213,9 @@ void sock_diag_unregister(const struct sock_diag_handler *hnld)
+       mutex_lock(&sock_diag_table_mutex);
+       BUG_ON(sock_diag_handlers[family] != hnld);
++      pax_open_kernel();
+       sock_diag_handlers[family] = NULL;
++      pax_close_kernel();
+       mutex_unlock(&sock_diag_table_mutex);
+ }
+ EXPORT_SYMBOL_GPL(sock_diag_unregister);
+diff --git a/net/core/sysctl_net_core.c b/net/core/sysctl_net_core.c
+index 0df2aa6..7db59f7 100644
+--- a/net/core/sysctl_net_core.c
++++ b/net/core/sysctl_net_core.c
+@@ -36,7 +36,7 @@ static int rps_sock_flow_sysctl(struct ctl_table *table, int write,
+ {
+       unsigned int orig_size, size;
+       int ret, i;
+-      struct ctl_table tmp = {
++      ctl_table_no_const tmp = {
+               .data = &size,
+               .maxlen = sizeof(size),
+               .mode = table->mode
+@@ -204,7 +204,7 @@ static int set_default_qdisc(struct ctl_table *table, int write,
+                            void __user *buffer, size_t *lenp, loff_t *ppos)
+ {
+       char id[IFNAMSIZ];
+-      struct ctl_table tbl = {
++      ctl_table_no_const tbl = {
+               .data = id,
+               .maxlen = IFNAMSIZ,
+       };
+@@ -222,7 +222,7 @@ static int set_default_qdisc(struct ctl_table *table, int write,
+ static int proc_do_rss_key(struct ctl_table *table, int write,
+                          void __user *buffer, size_t *lenp, loff_t *ppos)
+ {
+-      struct ctl_table fake_table;
++      ctl_table_no_const fake_table;
+       char buf[NETDEV_RSS_KEY_LEN * 3];
+       snprintf(buf, sizeof(buf), "%*phC", NETDEV_RSS_KEY_LEN, netdev_rss_key);
+@@ -286,7 +286,7 @@ static struct ctl_table net_core_table[] = {
+               .mode           = 0444,
+               .proc_handler   = proc_do_rss_key,
+       },
+-#ifdef CONFIG_BPF_JIT
++#if defined(CONFIG_BPF_JIT) && !defined(CONFIG_GRKERNSEC_BPF_HARDEN)
+       {
+               .procname       = "bpf_jit_enable",
+               .data           = &bpf_jit_enable,
+@@ -428,13 +428,12 @@ static struct ctl_table netns_core_table[] = {
+ static __net_init int sysctl_core_net_init(struct net *net)
+ {
+-      struct ctl_table *tbl;
++      ctl_table_no_const *tbl = NULL;
+       net->core.sysctl_somaxconn = SOMAXCONN;
+-      tbl = netns_core_table;
+       if (!net_eq(net, &init_net)) {
+-              tbl = kmemdup(tbl, sizeof(netns_core_table), GFP_KERNEL);
++              tbl = kmemdup(netns_core_table, sizeof(netns_core_table), GFP_KERNEL);
+               if (tbl == NULL)
+                       goto err_dup;
+@@ -444,17 +443,16 @@ static __net_init int sysctl_core_net_init(struct net *net)
+               if (net->user_ns != &init_user_ns) {
+                       tbl[0].procname = NULL;
+               }
+-      }
+-
+-      net->core.sysctl_hdr = register_net_sysctl(net, "net/core", tbl);
++              net->core.sysctl_hdr = register_net_sysctl(net, "net/core", tbl);
++      } else
++              net->core.sysctl_hdr = register_net_sysctl(net, "net/core", netns_core_table);
+       if (net->core.sysctl_hdr == NULL)
+               goto err_reg;
+       return 0;
+ err_reg:
+-      if (tbl != netns_core_table)
+-              kfree(tbl);
++      kfree(tbl);
+ err_dup:
+       return -ENOMEM;
+ }
+@@ -469,7 +467,7 @@ static __net_exit void sysctl_core_net_exit(struct net *net)
+       kfree(tbl);
+ }
+-static __net_initdata struct pernet_operations sysctl_core_ops = {
++static __net_initconst struct pernet_operations sysctl_core_ops = {
+       .init = sysctl_core_net_init,
+       .exit = sysctl_core_net_exit,
+ };
+diff --git a/net/decnet/af_decnet.c b/net/decnet/af_decnet.c
+index 13d6b1a..eaa0cee 100644
+--- a/net/decnet/af_decnet.c
++++ b/net/decnet/af_decnet.c
+@@ -1524,7 +1524,12 @@ static int __dn_getsockopt(struct socket *sock, int level,int optname, char __us
+       struct linkinfo_dn link;
+       unsigned int r_len;
+       void *r_data = NULL;
+-      unsigned int val;
++      struct optdata_dn opt;
++      struct accessdata_dn acc;
++      u8 mode;
++      int val;
++      unsigned long window;
++      unsigned char rem;
+       if(get_user(r_len , optlen))
+               return -EFAULT;
+@@ -1533,25 +1538,29 @@ static int __dn_getsockopt(struct socket *sock, int level,int optname, char __us
+       case DSO_CONDATA:
+               if (r_len > sizeof(struct optdata_dn))
+                       r_len = sizeof(struct optdata_dn);
+-              r_data = &scp->conndata_in;
++              opt = scp->conndata_in;
++              r_data = &opt;
+               break;
+       case DSO_DISDATA:
+               if (r_len > sizeof(struct optdata_dn))
+                       r_len = sizeof(struct optdata_dn);
+-              r_data = &scp->discdata_in;
++              opt = scp->discdata_in;
++              r_data = &opt;
+               break;
+       case DSO_CONACCESS:
+               if (r_len > sizeof(struct accessdata_dn))
+                       r_len = sizeof(struct accessdata_dn);
+-              r_data = &scp->accessdata;
++              acc = scp->accessdata;
++              r_data = &acc;
+               break;
+       case DSO_ACCEPTMODE:
+               if (r_len > sizeof(unsigned char))
+                       r_len = sizeof(unsigned char);
+-              r_data = &scp->accept_mode;
++              mode = scp->accept_mode;
++              r_data = &mode;
+               break;
+       case DSO_LINKINFO:
+@@ -1601,7 +1610,8 @@ static int __dn_getsockopt(struct socket *sock, int level,int optname, char __us
+       case DSO_MAXWINDOW:
+               if (r_len > sizeof(unsigned long))
+                       r_len = sizeof(unsigned long);
+-              r_data = &scp->max_window;
++              window = scp->max_window;
++              r_data = &window;
+               break;
+       case DSO_NODELAY:
+@@ -1621,13 +1631,15 @@ static int __dn_getsockopt(struct socket *sock, int level,int optname, char __us
+       case DSO_SERVICES:
+               if (r_len > sizeof(unsigned char))
+                       r_len = sizeof(unsigned char);
+-              r_data = &scp->services_rem;
++              rem = scp->services_rem;
++              r_data = &rem;
+               break;
+       case DSO_INFO:
+               if (r_len > sizeof(unsigned char))
+                       r_len = sizeof(unsigned char);
+-              r_data = &scp->info_rem;
++              rem = scp->info_rem;
++              r_data = &rem;
+               break;
+       }
+diff --git a/net/decnet/dn_dev.c b/net/decnet/dn_dev.c
+index b2c26b0..41f803e 100644
+--- a/net/decnet/dn_dev.c
++++ b/net/decnet/dn_dev.c
+@@ -201,7 +201,7 @@ static struct dn_dev_sysctl_table {
+               .extra1 = &min_t3,
+               .extra2 = &max_t3
+       },
+-      {0}
++      { }
+       },
+ };
+diff --git a/net/decnet/sysctl_net_decnet.c b/net/decnet/sysctl_net_decnet.c
+index 5325b54..a0d4d69 100644
+--- a/net/decnet/sysctl_net_decnet.c
++++ b/net/decnet/sysctl_net_decnet.c
+@@ -174,7 +174,7 @@ static int dn_node_address_handler(struct ctl_table *table, int write,
+       if (len > *lenp) len = *lenp;
+-      if (copy_to_user(buffer, addr, len))
++      if (len > sizeof addr || copy_to_user(buffer, addr, len))
+               return -EFAULT;
+       *lenp = len;
+@@ -237,7 +237,7 @@ static int dn_def_dev_handler(struct ctl_table *table, int write,
+       if (len > *lenp) len = *lenp;
+-      if (copy_to_user(buffer, devname, len))
++      if (len > sizeof devname || copy_to_user(buffer, devname, len))
+               return -EFAULT;
+       *lenp = len;
+diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
+index 7e68bc6..09a6073 100644
+--- a/net/dsa/dsa.c
++++ b/net/dsa/dsa.c
+@@ -269,7 +269,7 @@ const struct dsa_device_ops *dsa_resolve_tag_protocol(int tag_protocol)
+ int dsa_cpu_port_ethtool_setup(struct dsa_switch *ds)
+ {
+       struct net_device *master;
+-      struct ethtool_ops *cpu_ops;
++      ethtool_ops_no_const *cpu_ops;
+       master = ds->dst->master_netdev;
+       if (ds->master_netdev)
+@@ -1045,7 +1045,7 @@ static struct packet_type dsa_pack_type __read_mostly = {
+       .func   = dsa_switch_rcv,
+ };
+-static struct notifier_block dsa_netdevice_nb __read_mostly = {
++static struct notifier_block dsa_netdevice_nb = {
+       .notifier_call  = dsa_slave_netdevice_event,
+ };
+diff --git a/net/dsa/dsa_priv.h b/net/dsa/dsa_priv.h
+index 00077a9..c513046 100644
+--- a/net/dsa/dsa_priv.h
++++ b/net/dsa/dsa_priv.h
+@@ -60,7 +60,7 @@ void dsa_cpu_port_ethtool_restore(struct dsa_switch *ds);
+ /* slave.c */
+ extern const struct dsa_device_ops notag_netdev_ops;
+ void dsa_slave_mii_bus_init(struct dsa_switch *ds);
+-void dsa_cpu_port_ethtool_init(struct ethtool_ops *ops);
++void dsa_cpu_port_ethtool_init(ethtool_ops_no_const *ops);
+ int dsa_slave_create(struct dsa_switch *ds, struct device *parent,
+                    int port, const char *name);
+ void dsa_slave_destroy(struct net_device *slave_dev);
+diff --git a/net/dsa/slave.c b/net/dsa/slave.c
+index fc91967..b11a825 100644
+--- a/net/dsa/slave.c
++++ b/net/dsa/slave.c
+@@ -906,7 +906,7 @@ static void dsa_slave_poll_controller(struct net_device *dev)
+ }
+ #endif
+-void dsa_cpu_port_ethtool_init(struct ethtool_ops *ops)
++void dsa_cpu_port_ethtool_init(ethtool_ops_no_const *ops)
+ {
+       ops->get_sset_count = dsa_cpu_port_get_sset_count;
+       ops->get_ethtool_stats = dsa_cpu_port_get_ethtool_stats;
+diff --git a/net/hsr/hsr_device.c b/net/hsr/hsr_device.c
+index 16737cd..812d5d5 100644
+--- a/net/hsr/hsr_device.c
++++ b/net/hsr/hsr_device.c
+@@ -233,7 +233,7 @@ static netdev_features_t hsr_fix_features(struct net_device *dev,
+ }
+-static int hsr_dev_xmit(struct sk_buff *skb, struct net_device *dev)
++static netdev_tx_t hsr_dev_xmit(struct sk_buff *skb, struct net_device *dev)
+ {
+       struct hsr_priv *hsr = netdev_priv(dev);
+       struct hsr_port *master;
+diff --git a/net/hsr/hsr_netlink.c b/net/hsr/hsr_netlink.c
+index d4d1617..06282b4 100644
+--- a/net/hsr/hsr_netlink.c
++++ b/net/hsr/hsr_netlink.c
+@@ -108,7 +108,7 @@ nla_put_failure:
+       return -EMSGSIZE;
+ }
+-static struct rtnl_link_ops hsr_link_ops __read_mostly = {
++static struct rtnl_link_ops hsr_link_ops = {
+       .kind           = "hsr",
+       .maxtype        = IFLA_HSR_MAX,
+       .policy         = hsr_policy,
+diff --git a/net/ieee802154/6lowpan/core.c b/net/ieee802154/6lowpan/core.c
+index d7efbf0..2f69b06b 100644
+--- a/net/ieee802154/6lowpan/core.c
++++ b/net/ieee802154/6lowpan/core.c
+@@ -182,7 +182,7 @@ static void lowpan_dellink(struct net_device *ldev, struct list_head *head)
+       dev_put(wdev);
+ }
+-static struct rtnl_link_ops lowpan_link_ops __read_mostly = {
++static struct rtnl_link_ops lowpan_link_ops = {
+       .kind           = "lowpan",
+       .priv_size      = LOWPAN_PRIV_SIZE(sizeof(struct lowpan_802154_dev)),
+       .setup          = lowpan_setup,
+diff --git a/net/ieee802154/6lowpan/reassembly.c b/net/ieee802154/6lowpan/reassembly.c
+index 30d875d..760f4f1 100644
+--- a/net/ieee802154/6lowpan/reassembly.c
++++ b/net/ieee802154/6lowpan/reassembly.c
+@@ -492,14 +492,13 @@ static struct ctl_table lowpan_frags_ctl_table[] = {
+ static int __net_init lowpan_frags_ns_sysctl_register(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table = NULL;
+       struct ctl_table_header *hdr;
+       struct netns_ieee802154_lowpan *ieee802154_lowpan =
+               net_ieee802154_lowpan(net);
+-      table = lowpan_frags_ns_ctl_table;
+       if (!net_eq(net, &init_net)) {
+-              table = kmemdup(table, sizeof(lowpan_frags_ns_ctl_table),
++              table = kmemdup(lowpan_frags_ns_ctl_table, sizeof(lowpan_frags_ns_ctl_table),
+                               GFP_KERNEL);
+               if (table == NULL)
+                       goto err_alloc;
+@@ -514,9 +513,9 @@ static int __net_init lowpan_frags_ns_sysctl_register(struct net *net)
+               /* Don't export sysctls to unprivileged users */
+               if (net->user_ns != &init_user_ns)
+                       table[0].procname = NULL;
+-      }
+-
+-      hdr = register_net_sysctl(net, "net/ieee802154/6lowpan", table);
++              hdr = register_net_sysctl(net, "net/ieee802154/6lowpan", table);
++      } else
++              hdr = register_net_sysctl(net, "net/ieee802154/6lowpan", lowpan_frags_ns_ctl_table);
+       if (hdr == NULL)
+               goto err_reg;
+@@ -524,8 +523,7 @@ static int __net_init lowpan_frags_ns_sysctl_register(struct net *net)
+       return 0;
+ err_reg:
+-      if (!net_eq(net, &init_net))
+-              kfree(table);
++      kfree(table);
+ err_alloc:
+       return -ENOMEM;
+ }
+diff --git a/net/ieee802154/core.c b/net/ieee802154/core.c
+index cb7176c..afd2c62 100644
+--- a/net/ieee802154/core.c
++++ b/net/ieee802154/core.c
+@@ -110,7 +110,7 @@ struct wpan_phy *wpan_phy_idx_to_wpan_phy(int wpan_phy_idx)
+ struct wpan_phy *
+ wpan_phy_new(const struct cfg802154_ops *ops, size_t priv_size)
+ {
+-      static atomic_t wpan_phy_counter = ATOMIC_INIT(0);
++      static atomic_unchecked_t wpan_phy_counter = ATOMIC_INIT(0);
+       struct cfg802154_registered_device *rdev;
+       size_t alloc_size;
+@@ -121,11 +121,11 @@ wpan_phy_new(const struct cfg802154_ops *ops, size_t priv_size)
+       rdev->ops = ops;
+-      rdev->wpan_phy_idx = atomic_inc_return(&wpan_phy_counter);
++      rdev->wpan_phy_idx = atomic_inc_return_unchecked(&wpan_phy_counter);
+       if (unlikely(rdev->wpan_phy_idx < 0)) {
+               /* ugh, wrapped! */
+-              atomic_dec(&wpan_phy_counter);
++              atomic_dec_unchecked(&wpan_phy_counter);
+               kfree(rdev);
+               return NULL;
+       }
+diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c
+index 55513e6..87546f8 100644
+--- a/net/ipv4/af_inet.c
++++ b/net/ipv4/af_inet.c
+@@ -1445,7 +1445,7 @@ int inet_recv_error(struct sock *sk, struct msghdr *msg, int len, int *addr_len)
+               return ip_recv_error(sk, msg, len, addr_len);
+ #if IS_ENABLED(CONFIG_IPV6)
+       if (sk->sk_family == AF_INET6)
+-              return pingv6_ops.ipv6_recv_error(sk, msg, len, addr_len);
++              return pingv6_ops->ipv6_recv_error(sk, msg, len, addr_len);
+ #endif
+       return -EINVAL;
+ }
+@@ -1655,7 +1655,7 @@ static __net_exit void ipv4_mib_exit_net(struct net *net)
+       free_percpu(net->mib.tcp_statistics);
+ }
+-static __net_initdata struct pernet_operations ipv4_mib_ops = {
++static __net_initconst struct pernet_operations ipv4_mib_ops = {
+       .init = ipv4_mib_init_net,
+       .exit = ipv4_mib_exit_net,
+ };
+@@ -1696,7 +1696,7 @@ static __net_exit void inet_exit_net(struct net *net)
+ {
+ }
+-static __net_initdata struct pernet_operations af_inet_ops = {
++static __net_initconst struct pernet_operations af_inet_ops = {
+       .init = inet_init_net,
+       .exit = inet_exit_net,
+ };
+diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c
+index 89a8cac4..7d3fdc5 100644
+--- a/net/ipv4/arp.c
++++ b/net/ipv4/arp.c
+@@ -332,7 +332,7 @@ static void arp_solicit(struct neighbour *neigh, struct sk_buff *skb)
+       u8 dst_ha[MAX_ADDR_LEN], *dst_hw = NULL;
+       struct net_device *dev = neigh->dev;
+       __be32 target = *(__be32 *)neigh->primary_key;
+-      int probes = atomic_read(&neigh->probes);
++      int probes = atomic_read_unchecked(&neigh->probes);
+       struct in_device *in_dev;
+       struct dst_entry *dst = NULL;
+diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c
+index 062a67c..cb05c97 100644
+--- a/net/ipv4/devinet.c
++++ b/net/ipv4/devinet.c
+@@ -69,7 +69,8 @@
+ static struct ipv4_devconf ipv4_devconf = {
+       .data = {
+-              [IPV4_DEVCONF_ACCEPT_REDIRECTS - 1] = 1,
++              [IPV4_DEVCONF_ACCEPT_REDIRECTS - 1] = 0,
++              [IPV4_DEVCONF_RP_FILTER - 1] = 1,
+               [IPV4_DEVCONF_SEND_REDIRECTS - 1] = 1,
+               [IPV4_DEVCONF_SECURE_REDIRECTS - 1] = 1,
+               [IPV4_DEVCONF_SHARED_MEDIA - 1] = 1,
+@@ -80,7 +81,8 @@ static struct ipv4_devconf ipv4_devconf = {
+ static struct ipv4_devconf ipv4_devconf_dflt = {
+       .data = {
+-              [IPV4_DEVCONF_ACCEPT_REDIRECTS - 1] = 1,
++              [IPV4_DEVCONF_ACCEPT_REDIRECTS - 1] = 0,
++              [IPV4_DEVCONF_RP_FILTER - 1] = 1,
+               [IPV4_DEVCONF_SEND_REDIRECTS - 1] = 1,
+               [IPV4_DEVCONF_SECURE_REDIRECTS - 1] = 1,
+               [IPV4_DEVCONF_SHARED_MEDIA - 1] = 1,
+@@ -1605,7 +1607,7 @@ static int inet_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
+               idx = 0;
+               head = &net->dev_index_head[h];
+               rcu_read_lock();
+-              cb->seq = atomic_read(&net->ipv4.dev_addr_genid) ^
++              cb->seq = atomic_read_unchecked(&net->ipv4.dev_addr_genid) ^
+                         net->dev_base_seq;
+               hlist_for_each_entry_rcu(dev, head, index_hlist) {
+                       if (idx < s_idx)
+@@ -1939,7 +1941,7 @@ static int inet_netconf_dump_devconf(struct sk_buff *skb,
+               idx = 0;
+               head = &net->dev_index_head[h];
+               rcu_read_lock();
+-              cb->seq = atomic_read(&net->ipv4.dev_addr_genid) ^
++              cb->seq = atomic_read_unchecked(&net->ipv4.dev_addr_genid) ^
+                         net->dev_base_seq;
+               hlist_for_each_entry_rcu(dev, head, index_hlist) {
+                       if (idx < s_idx)
+@@ -2180,7 +2182,7 @@ static int ipv4_doint_and_flush(struct ctl_table *ctl, int write,
+ #define DEVINET_SYSCTL_FLUSHING_ENTRY(attr, name) \
+       DEVINET_SYSCTL_COMPLEX_ENTRY(attr, name, ipv4_doint_and_flush)
+-static struct devinet_sysctl_table {
++static const struct devinet_sysctl_table {
+       struct ctl_table_header *sysctl_header;
+       struct ctl_table devinet_vars[__IPV4_DEVCONF_MAX];
+ } devinet_sysctl = {
+@@ -2320,7 +2322,7 @@ static __net_init int devinet_init_net(struct net *net)
+       int err;
+       struct ipv4_devconf *all, *dflt;
+ #ifdef CONFIG_SYSCTL
+-      struct ctl_table *tbl = ctl_forward_entry;
++      ctl_table_no_const *tbl = NULL;
+       struct ctl_table_header *forw_hdr;
+ #endif
+@@ -2338,7 +2340,7 @@ static __net_init int devinet_init_net(struct net *net)
+                       goto err_alloc_dflt;
+ #ifdef CONFIG_SYSCTL
+-              tbl = kmemdup(tbl, sizeof(ctl_forward_entry), GFP_KERNEL);
++              tbl = kmemdup(ctl_forward_entry, sizeof(ctl_forward_entry), GFP_KERNEL);
+               if (!tbl)
+                       goto err_alloc_ctl;
+@@ -2359,7 +2361,10 @@ static __net_init int devinet_init_net(struct net *net)
+               goto err_reg_dflt;
+       err = -ENOMEM;
+-      forw_hdr = register_net_sysctl(net, "net/ipv4", tbl);
++      if (!net_eq(net, &init_net))
++              forw_hdr = register_net_sysctl(net, "net/ipv4", tbl);
++      else
++              forw_hdr = register_net_sysctl(net, "net/ipv4", ctl_forward_entry);
+       if (!forw_hdr)
+               goto err_reg_ctl;
+       net->ipv4.forw_hdr = forw_hdr;
+@@ -2375,8 +2380,7 @@ err_reg_ctl:
+ err_reg_dflt:
+       __devinet_sysctl_unregister(all);
+ err_reg_all:
+-      if (tbl != ctl_forward_entry)
+-              kfree(tbl);
++      kfree(tbl);
+ err_alloc_ctl:
+ #endif
+       if (dflt != &ipv4_devconf_dflt)
+@@ -2403,7 +2407,7 @@ static __net_exit void devinet_exit_net(struct net *net)
+       kfree(net->ipv4.devconf_all);
+ }
+-static __net_initdata struct pernet_operations devinet_ops = {
++static __net_initconst struct pernet_operations devinet_ops = {
+       .init = devinet_init_net,
+       .exit = devinet_exit_net,
+ };
+diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c
+index 1b25daf..9ef9ef2 100644
+--- a/net/ipv4/fib_frontend.c
++++ b/net/ipv4/fib_frontend.c
+@@ -1141,12 +1141,12 @@ static int fib_inetaddr_event(struct notifier_block *this, unsigned long event,
+ #ifdef CONFIG_IP_ROUTE_MULTIPATH
+               fib_sync_up(dev, RTNH_F_DEAD);
+ #endif
+-              atomic_inc(&net->ipv4.dev_addr_genid);
++              atomic_inc_unchecked(&net->ipv4.dev_addr_genid);
+               rt_cache_flush(dev_net(dev));
+               break;
+       case NETDEV_DOWN:
+               fib_del_ifaddr(ifa, NULL);
+-              atomic_inc(&net->ipv4.dev_addr_genid);
++              atomic_inc_unchecked(&net->ipv4.dev_addr_genid);
+               if (!ifa->ifa_dev->ifa_list) {
+                       /* Last address was deleted from this interface.
+                        * Disable IP.
+@@ -1186,7 +1186,7 @@ static int fib_netdev_event(struct notifier_block *this, unsigned long event, vo
+ #ifdef CONFIG_IP_ROUTE_MULTIPATH
+               fib_sync_up(dev, RTNH_F_DEAD);
+ #endif
+-              atomic_inc(&net->ipv4.dev_addr_genid);
++              atomic_inc_unchecked(&net->ipv4.dev_addr_genid);
+               rt_cache_flush(net);
+               break;
+       case NETDEV_DOWN:
+diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c
+index e9f5622..975108b 100644
+--- a/net/ipv4/fib_semantics.c
++++ b/net/ipv4/fib_semantics.c
+@@ -916,7 +916,7 @@ __be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh)
+       nh->nh_saddr = inet_select_addr(nh->nh_dev,
+                                       nh->nh_gw,
+                                       nh->nh_parent->fib_scope);
+-      nh->nh_saddr_genid = atomic_read(&net->ipv4.dev_addr_genid);
++      nh->nh_saddr_genid = atomic_read_unchecked(&net->ipv4.dev_addr_genid);
+       return nh->nh_saddr;
+ }
+diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c
+index 38abe70..5e03195 100644
+--- a/net/ipv4/icmp.c
++++ b/net/ipv4/icmp.c
+@@ -1228,7 +1228,7 @@ fail:
+       return err;
+ }
+-static struct pernet_operations __net_initdata icmp_sk_ops = {
++static struct pernet_operations __net_initconst icmp_sk_ops = {
+        .init = icmp_sk_init,
+        .exit = icmp_sk_exit,
+ };
+diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c
+index 61a9dee..e3b4a9b 100644
+--- a/net/ipv4/inet_connection_sock.c
++++ b/net/ipv4/inet_connection_sock.c
+@@ -666,8 +666,8 @@ struct sock *inet_csk_clone_lock(const struct sock *sk,
+               sock_reset_flag(newsk, SOCK_RCU_FREE);
+               newsk->sk_mark = inet_rsk(req)->ir_mark;
+-              atomic64_set(&newsk->sk_cookie,
+-                           atomic64_read(&inet_rsk(req)->ir_cookie));
++              atomic64_set_unchecked(&newsk->sk_cookie,
++                           atomic64_read_unchecked(&inet_rsk(req)->ir_cookie));
+               newicsk->icsk_retransmits = 0;
+               newicsk->icsk_backoff     = 0;
+diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c
+index 38c2c47..5d8ebc5 100644
+--- a/net/ipv4/inet_diag.c
++++ b/net/ipv4/inet_diag.c
+@@ -1029,7 +1029,7 @@ static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
+                               return -EINVAL;
+               }
+               {
+-                      struct netlink_dump_control c = {
++                      static struct netlink_dump_control c = {
+                               .dump = inet_diag_dump_compat,
+                       };
+                       return netlink_dump_start(net->diag_nlsk, skb, nlh, &c);
+@@ -1060,7 +1060,7 @@ static int inet_diag_handler_cmd(struct sk_buff *skb, struct nlmsghdr *h)
+                               return -EINVAL;
+               }
+               {
+-                      struct netlink_dump_control c = {
++                      static struct netlink_dump_control c = {
+                               .dump = inet_diag_dump,
+                       };
+                       return netlink_dump_start(net->diag_nlsk, skb, h, &c);
+diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c
+index 77c20a4..76261b6 100644
+--- a/net/ipv4/inet_hashtables.c
++++ b/net/ipv4/inet_hashtables.c
+@@ -19,6 +19,7 @@
+ #include <linux/slab.h>
+ #include <linux/wait.h>
+ #include <linux/vmalloc.h>
++#include <linux/security.h>
+ #include <net/addrconf.h>
+ #include <net/inet_connection_sock.h>
+@@ -56,6 +57,8 @@ u32 sk_ehashfn(const struct sock *sk)
+                           sk->sk_daddr, sk->sk_dport);
+ }
++extern void gr_update_task_in_ip_table(const struct inet_sock *inet);
++
+ /*
+  * Allocate and initialize a new local port bind bucket.
+  * The bindhash mutex for snum's hash chain must be held here.
+@@ -642,6 +645,9 @@ ok:
+       spin_unlock(&head->lock);
+       if (tw)
+               inet_twsk_deschedule_put(tw);
++
++      gr_update_task_in_ip_table(inet_sk(sk));
++
+       local_bh_enable();
+       return 0;
+ }
+diff --git a/net/ipv4/inet_timewait_sock.c b/net/ipv4/inet_timewait_sock.c
+index ddcd56c..b2f4a52 100644
+--- a/net/ipv4/inet_timewait_sock.c
++++ b/net/ipv4/inet_timewait_sock.c
+@@ -186,7 +186,7 @@ struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk,
+               tw->tw_ipv6only     = 0;
+               tw->tw_transparent  = inet->transparent;
+               tw->tw_prot         = sk->sk_prot_creator;
+-              atomic64_set(&tw->tw_cookie, atomic64_read(&sk->sk_cookie));
++              atomic64_set_unchecked(&tw->tw_cookie, atomic64_read_unchecked(&sk->sk_cookie));
+               twsk_net_set(tw, sock_net(sk));
+               setup_pinned_timer(&tw->tw_timer, tw_timer_handler,
+                                  (unsigned long)tw);
+diff --git a/net/ipv4/inetpeer.c b/net/ipv4/inetpeer.c
+index 86fa458..5f601b9 100644
+--- a/net/ipv4/inetpeer.c
++++ b/net/ipv4/inetpeer.c
+@@ -445,7 +445,7 @@ relookup:
+       if (p) {
+               p->daddr = *daddr;
+               atomic_set(&p->refcnt, 1);
+-              atomic_set(&p->rid, 0);
++              atomic_set_unchecked(&p->rid, 0);
+               p->metrics[RTAX_LOCK-1] = INETPEER_METRICS_NEW;
+               p->rate_tokens = 0;
+               /* 60*HZ is arbitrary, but chosen enough high so that the first
+diff --git a/net/ipv4/ip_fragment.c b/net/ipv4/ip_fragment.c
+index bbe7f72..7a5a57f 100644
+--- a/net/ipv4/ip_fragment.c
++++ b/net/ipv4/ip_fragment.c
+@@ -282,7 +282,7 @@ static int ip_frag_too_far(struct ipq *qp)
+               return 0;
+       start = qp->rid;
+-      end = atomic_inc_return(&peer->rid);
++      end = atomic_inc_return_unchecked(&peer->rid);
+       qp->rid = end;
+       rc = qp->q.fragments && (end - start) > max;
+@@ -773,12 +773,11 @@ static struct ctl_table ip4_frags_ctl_table[] = {
+ static int __net_init ip4_frags_ns_ctl_register(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table = NULL;
+       struct ctl_table_header *hdr;
+-      table = ip4_frags_ns_ctl_table;
+       if (!net_eq(net, &init_net)) {
+-              table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
++              table = kmemdup(ip4_frags_ns_ctl_table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
+               if (!table)
+                       goto err_alloc;
+@@ -789,9 +788,10 @@ static int __net_init ip4_frags_ns_ctl_register(struct net *net)
+               table[1].extra2 = &net->ipv4.frags.high_thresh;
+               table[2].data = &net->ipv4.frags.timeout;
+               table[3].data = &net->ipv4.frags.max_dist;
+-      }
+-
+-      hdr = register_net_sysctl(net, "net/ipv4", table);
++              hdr = register_net_sysctl(net, "net/ipv4", table);
++      } else
++              hdr = register_net_sysctl(net, "net/ipv4", ip4_frags_ns_ctl_table);
++ 
+       if (!hdr)
+               goto err_reg;
+@@ -799,8 +799,7 @@ static int __net_init ip4_frags_ns_ctl_register(struct net *net)
+       return 0;
+ err_reg:
+-      if (!net_eq(net, &init_net))
+-              kfree(table);
++      kfree(table);
+ err_alloc:
+       return -ENOMEM;
+ }
+diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c
+index 113cc43..9f89876 100644
+--- a/net/ipv4/ip_gre.c
++++ b/net/ipv4/ip_gre.c
+@@ -110,7 +110,7 @@ static bool log_ecn_error = true;
+ module_param(log_ecn_error, bool, 0644);
+ MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
+-static struct rtnl_link_ops ipgre_link_ops __read_mostly;
++static struct rtnl_link_ops ipgre_link_ops;
+ static int ipgre_tunnel_init(struct net_device *dev);
+ static int ipgre_net_id __read_mostly;
+@@ -1114,7 +1114,7 @@ static const struct nla_policy ipgre_policy[IFLA_GRE_MAX + 1] = {
+       [IFLA_GRE_IGNORE_DF]    = { .type = NLA_U8 },
+ };
+-static struct rtnl_link_ops ipgre_link_ops __read_mostly = {
++static struct rtnl_link_ops ipgre_link_ops = {
+       .kind           = "gre",
+       .maxtype        = IFLA_GRE_MAX,
+       .policy         = ipgre_policy,
+@@ -1129,7 +1129,7 @@ static struct rtnl_link_ops ipgre_link_ops __read_mostly = {
+       .get_link_net   = ip_tunnel_get_link_net,
+ };
+-static struct rtnl_link_ops ipgre_tap_ops __read_mostly = {
++static struct rtnl_link_ops ipgre_tap_ops = {
+       .kind           = "gretap",
+       .maxtype        = IFLA_GRE_MAX,
+       .policy         = ipgre_policy,
+diff --git a/net/ipv4/ip_input.c b/net/ipv4/ip_input.c
+index d6feabb..9cb3988 100644
+--- a/net/ipv4/ip_input.c
++++ b/net/ipv4/ip_input.c
+@@ -148,6 +148,10 @@
+ #include <linux/netlink.h>
+ #include <net/dst_metadata.h>
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++extern int grsec_enable_blackhole;
++#endif
++
+ /*
+  *    Process Router Attention IP option (RFC 2113)
+  */
+@@ -223,6 +227,9 @@ static int ip_local_deliver_finish(struct net *net, struct sock *sk, struct sk_b
+                       if (!raw) {
+                               if (xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) {
+                                       __IP_INC_STATS(net, IPSTATS_MIB_INUNKNOWNPROTOS);
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++                                      if (!grsec_enable_blackhole || (skb->dev->flags & IFF_LOOPBACK))
++#endif
+                                       icmp_send(skb, ICMP_DEST_UNREACH,
+                                                 ICMP_PROT_UNREACH, 0);
+                               }
+diff --git a/net/ipv4/ip_sockglue.c b/net/ipv4/ip_sockglue.c
+index 71a52f4d..2bab905 100644
+--- a/net/ipv4/ip_sockglue.c
++++ b/net/ipv4/ip_sockglue.c
+@@ -1325,7 +1325,8 @@ static int do_ip_getsockopt(struct sock *sk, int level, int optname,
+               len = min_t(unsigned int, len, opt->optlen);
+               if (put_user(len, optlen))
+                       return -EFAULT;
+-              if (copy_to_user(optval, opt->__data, len))
++              if ((len > (sizeof(optbuf) - sizeof(struct ip_options))) ||
++                  copy_to_user(optval, opt->__data, len))
+                       return -EFAULT;
+               return 0;
+       }
+@@ -1461,7 +1462,7 @@ static int do_ip_getsockopt(struct sock *sk, int level, int optname,
+               if (sk->sk_type != SOCK_STREAM)
+                       return -ENOPROTOOPT;
+-              msg.msg_control = (__force void *) optval;
++              msg.msg_control = (__force_kernel void *) optval;
+               msg.msg_controllen = len;
+               msg.msg_flags = flags;
+diff --git a/net/ipv4/ip_vti.c b/net/ipv4/ip_vti.c
+index 5d7944f..f7953fe 100644
+--- a/net/ipv4/ip_vti.c
++++ b/net/ipv4/ip_vti.c
+@@ -44,7 +44,7 @@
+ #include <net/net_namespace.h>
+ #include <net/netns/generic.h>
+-static struct rtnl_link_ops vti_link_ops __read_mostly;
++static struct rtnl_link_ops vti_link_ops;
+ static int vti_net_id __read_mostly;
+ static int vti_tunnel_init(struct net_device *dev);
+@@ -555,7 +555,7 @@ static const struct nla_policy vti_policy[IFLA_VTI_MAX + 1] = {
+       [IFLA_VTI_REMOTE]       = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
+ };
+-static struct rtnl_link_ops vti_link_ops __read_mostly = {
++static struct rtnl_link_ops vti_link_ops = {
+       .kind           = "vti",
+       .maxtype        = IFLA_VTI_MAX,
+       .policy         = vti_policy,
+@@ -593,7 +593,7 @@ static int vti_device_event(struct notifier_block *unused,
+       return NOTIFY_DONE;
+ }
+-static struct notifier_block vti_notifier_block __read_mostly = {
++static notifier_block_no_const vti_notifier_block __read_only = {
+       .notifier_call = vti_device_event,
+ };
+diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c
+index 1d71c40..3f8a6fa 100644
+--- a/net/ipv4/ipconfig.c
++++ b/net/ipv4/ipconfig.c
+@@ -334,7 +334,7 @@ static int __init ic_devinet_ioctl(unsigned int cmd, struct ifreq *arg)
+       mm_segment_t oldfs = get_fs();
+       set_fs(get_ds());
+-      res = devinet_ioctl(&init_net, cmd, (struct ifreq __user *) arg);
++      res = devinet_ioctl(&init_net, cmd, (struct ifreq __force_user *) arg);
+       set_fs(oldfs);
+       return res;
+ }
+@@ -345,7 +345,7 @@ static int __init ic_dev_ioctl(unsigned int cmd, struct ifreq *arg)
+       mm_segment_t oldfs = get_fs();
+       set_fs(get_ds());
+-      res = dev_ioctl(&init_net, cmd, (struct ifreq __user *) arg);
++      res = dev_ioctl(&init_net, cmd, (struct ifreq __force_user *) arg);
+       set_fs(oldfs);
+       return res;
+ }
+@@ -356,7 +356,7 @@ static int __init ic_route_ioctl(unsigned int cmd, struct rtentry *arg)
+       mm_segment_t oldfs = get_fs();
+       set_fs(get_ds());
+-      res = ip_rt_ioctl(&init_net, cmd, (void __user *) arg);
++      res = ip_rt_ioctl(&init_net, cmd, (void __force_user *) arg);
+       set_fs(oldfs);
+       return res;
+ }
+diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c
+index 4ae3f8e..bd0ea72 100644
+--- a/net/ipv4/ipip.c
++++ b/net/ipv4/ipip.c
+@@ -123,7 +123,7 @@ MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
+ static int ipip_net_id __read_mostly;
+ static int ipip_tunnel_init(struct net_device *dev);
+-static struct rtnl_link_ops ipip_link_ops __read_mostly;
++static struct rtnl_link_ops ipip_link_ops;
+ static int ipip_err(struct sk_buff *skb, u32 info)
+ {
+@@ -564,7 +564,7 @@ static const struct nla_policy ipip_policy[IFLA_IPTUN_MAX + 1] = {
+       [IFLA_IPTUN_ENCAP_DPORT]        = { .type = NLA_U16 },
+ };
+-static struct rtnl_link_ops ipip_link_ops __read_mostly = {
++static struct rtnl_link_ops ipip_link_ops = {
+       .kind           = "ipip",
+       .maxtype        = IFLA_IPTUN_MAX,
+       .policy         = ipip_policy,
+diff --git a/net/ipv4/netfilter/arp_tables.c b/net/ipv4/netfilter/arp_tables.c
+index b31df59..76740d3 100644
+--- a/net/ipv4/netfilter/arp_tables.c
++++ b/net/ipv4/netfilter/arp_tables.c
+@@ -790,13 +790,13 @@ static int compat_table_info(const struct xt_table_info *info,
+ #endif
+ static int get_info(struct net *net, void __user *user,
+-                  const int *len, int compat)
++                  int len, int compat)
+ {
+       char name[XT_TABLE_MAXNAMELEN];
+       struct xt_table *t;
+       int ret;
+-      if (*len != sizeof(struct arpt_getinfo))
++      if (len != sizeof(struct arpt_getinfo))
+               return -EINVAL;
+       if (copy_from_user(name, user, sizeof(name)) != 0)
+@@ -831,7 +831,7 @@ static int get_info(struct net *net, void __user *user,
+               info.size = private->size;
+               strcpy(info.name, name);
+-              if (copy_to_user(user, &info, *len) != 0)
++              if (copy_to_user(user, &info, len) != 0)
+                       ret = -EFAULT;
+               else
+                       ret = 0;
+@@ -1441,7 +1441,7 @@ static int compat_do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user,
+       switch (cmd) {
+       case ARPT_SO_GET_INFO:
+-              ret = get_info(sock_net(sk), user, len, 1);
++              ret = get_info(sock_net(sk), user, *len, 1);
+               break;
+       case ARPT_SO_GET_ENTRIES:
+               ret = compat_get_entries(sock_net(sk), user, len);
+@@ -1485,7 +1485,7 @@ static int do_arpt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len
+       switch (cmd) {
+       case ARPT_SO_GET_INFO:
+-              ret = get_info(sock_net(sk), user, len, 0);
++              ret = get_info(sock_net(sk), user, *len, 0);
+               break;
+       case ARPT_SO_GET_ENTRIES:
+diff --git a/net/ipv4/netfilter/ip_tables.c b/net/ipv4/netfilter/ip_tables.c
+index f993545..e98f208 100644
+--- a/net/ipv4/netfilter/ip_tables.c
++++ b/net/ipv4/netfilter/ip_tables.c
+@@ -958,13 +958,13 @@ static int compat_table_info(const struct xt_table_info *info,
+ #endif
+ static int get_info(struct net *net, void __user *user,
+-                  const int *len, int compat)
++                  int len, int compat)
+ {
+       char name[XT_TABLE_MAXNAMELEN];
+       struct xt_table *t;
+       int ret;
+-      if (*len != sizeof(struct ipt_getinfo))
++      if (len != sizeof(struct ipt_getinfo))
+               return -EINVAL;
+       if (copy_from_user(name, user, sizeof(name)) != 0)
+@@ -999,7 +999,7 @@ static int get_info(struct net *net, void __user *user,
+               info.size = private->size;
+               strcpy(info.name, name);
+-              if (copy_to_user(user, &info, *len) != 0)
++              if (copy_to_user(user, &info, len) != 0)
+                       ret = -EFAULT;
+               else
+                       ret = 0;
+@@ -1662,7 +1662,7 @@ compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
+       switch (cmd) {
+       case IPT_SO_GET_INFO:
+-              ret = get_info(sock_net(sk), user, len, 1);
++              ret = get_info(sock_net(sk), user, *len, 1);
+               break;
+       case IPT_SO_GET_ENTRIES:
+               ret = compat_get_entries(sock_net(sk), user, len);
+@@ -1708,7 +1708,7 @@ do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
+       switch (cmd) {
+       case IPT_SO_GET_INFO:
+-              ret = get_info(sock_net(sk), user, len, 0);
++              ret = get_info(sock_net(sk), user, *len, 0);
+               break;
+       case IPT_SO_GET_ENTRIES:
+diff --git a/net/ipv4/netfilter/ipt_CLUSTERIP.c b/net/ipv4/netfilter/ipt_CLUSTERIP.c
+index 4a9e6db..06174e1 100644
+--- a/net/ipv4/netfilter/ipt_CLUSTERIP.c
++++ b/net/ipv4/netfilter/ipt_CLUSTERIP.c
+@@ -730,7 +730,7 @@ static int clusterip_net_init(struct net *net)
+       spin_lock_init(&cn->lock);
+ #ifdef CONFIG_PROC_FS
+-      cn->procdir = proc_mkdir("ipt_CLUSTERIP", net->proc_net);
++      cn->procdir = proc_mkdir_restrict("ipt_CLUSTERIP", net->proc_net);
+       if (!cn->procdir) {
+               pr_err("Unable to proc dir entry\n");
+               return -ENOMEM;
+diff --git a/net/ipv4/ping.c b/net/ipv4/ping.c
+index 66ddcb6..0de0097 100644
+--- a/net/ipv4/ping.c
++++ b/net/ipv4/ping.c
+@@ -59,7 +59,7 @@ struct ping_table {
+ };
+ static struct ping_table ping_table;
+-struct pingv6_ops pingv6_ops;
++struct pingv6_ops *pingv6_ops;
+ EXPORT_SYMBOL_GPL(pingv6_ops);
+ static u16 ping_port_rover;
+@@ -361,7 +361,7 @@ static int ping_check_bind_addr(struct sock *sk, struct inet_sock *isk,
+                               return -ENODEV;
+                       }
+               }
+-              has_addr = pingv6_ops.ipv6_chk_addr(net, &addr->sin6_addr, dev,
++              has_addr = pingv6_ops->ipv6_chk_addr(net, &addr->sin6_addr, dev,
+                                                   scoped);
+               rcu_read_unlock();
+@@ -570,7 +570,7 @@ void ping_err(struct sk_buff *skb, int offset, u32 info)
+               }
+ #if IS_ENABLED(CONFIG_IPV6)
+       } else if (skb->protocol == htons(ETH_P_IPV6)) {
+-              harderr = pingv6_ops.icmpv6_err_convert(type, code, &err);
++              harderr = pingv6_ops->icmpv6_err_convert(type, code, &err);
+ #endif
+       }
+@@ -588,7 +588,7 @@ void ping_err(struct sk_buff *skb, int offset, u32 info)
+                                     info, (u8 *)icmph);
+ #if IS_ENABLED(CONFIG_IPV6)
+               } else if (family == AF_INET6) {
+-                      pingv6_ops.ipv6_icmp_error(sk, skb, err, 0,
++                      pingv6_ops->ipv6_icmp_error(sk, skb, err, 0,
+                                                  info, (u8 *)icmph);
+ #endif
+               }
+@@ -924,10 +924,10 @@ int ping_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
+               }
+               if (inet6_sk(sk)->rxopt.all)
+-                      pingv6_ops.ip6_datagram_recv_common_ctl(sk, msg, skb);
++                      pingv6_ops->ip6_datagram_recv_common_ctl(sk, msg, skb);
+               if (skb->protocol == htons(ETH_P_IPV6) &&
+                   inet6_sk(sk)->rxopt.all)
+-                      pingv6_ops.ip6_datagram_recv_specific_ctl(sk, msg, skb);
++                      pingv6_ops->ip6_datagram_recv_specific_ctl(sk, msg, skb);
+               else if (skb->protocol == htons(ETH_P_IP) && isk->cmsg_flags)
+                       ip_cmsg_recv(msg, skb);
+ #endif
+@@ -1124,7 +1124,7 @@ static void ping_v4_format_sock(struct sock *sp, struct seq_file *f,
+               from_kuid_munged(seq_user_ns(f), sock_i_uid(sp)),
+               0, sock_i_ino(sp),
+               atomic_read(&sp->sk_refcnt), sp,
+-              atomic_read(&sp->sk_drops));
++              atomic_read_unchecked(&sp->sk_drops));
+ }
+ static int ping_v4_seq_show(struct seq_file *seq, void *v)
+diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c
+index 9f665b6..5900fae 100644
+--- a/net/ipv4/proc.c
++++ b/net/ipv4/proc.c
+@@ -333,7 +333,7 @@ static void icmpmsg_put(struct seq_file *seq)
+       count = 0;
+       for (i = 0; i < ICMPMSG_MIB_MAX; i++) {
+-              val = atomic_long_read(&net->mib.icmpmsg_statistics->mibs[i]);
++              val = atomic_long_read_unchecked(&net->mib.icmpmsg_statistics->mibs[i]);
+               if (val) {
+                       type[count] = i;
+                       vals[count++] = val;
+@@ -352,7 +352,7 @@ static void icmp_put(struct seq_file *seq)
+ {
+       int i;
+       struct net *net = seq->private;
+-      atomic_long_t *ptr = net->mib.icmpmsg_statistics->mibs;
++      atomic_long_unchecked_t *ptr = net->mib.icmpmsg_statistics->mibs;
+       seq_puts(seq, "\nIcmp: InMsgs InErrors InCsumErrors");
+       for (i = 0; icmpmibmap[i].name != NULL; i++)
+@@ -366,13 +366,13 @@ static void icmp_put(struct seq_file *seq)
+               snmp_fold_field(net->mib.icmp_statistics, ICMP_MIB_CSUMERRORS));
+       for (i = 0; icmpmibmap[i].name != NULL; i++)
+               seq_printf(seq, " %lu",
+-                         atomic_long_read(ptr + icmpmibmap[i].index));
++                         atomic_long_read_unchecked(ptr + icmpmibmap[i].index));
+       seq_printf(seq, " %lu %lu",
+               snmp_fold_field(net->mib.icmp_statistics, ICMP_MIB_OUTMSGS),
+               snmp_fold_field(net->mib.icmp_statistics, ICMP_MIB_OUTERRORS));
+       for (i = 0; icmpmibmap[i].name != NULL; i++)
+               seq_printf(seq, " %lu",
+-                         atomic_long_read(ptr + (icmpmibmap[i].index | 0x100)));
++                         atomic_long_read_unchecked(ptr + (icmpmibmap[i].index | 0x100)));
+ }
+ /*
+@@ -532,7 +532,7 @@ static __net_exit void ip_proc_exit_net(struct net *net)
+       remove_proc_entry("sockstat", net->proc_net);
+ }
+-static __net_initdata struct pernet_operations ip_proc_ops = {
++static __net_initconst struct pernet_operations ip_proc_ops = {
+       .init = ip_proc_init_net,
+       .exit = ip_proc_exit_net,
+ };
+diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c
+index 438f50c..96538dd 100644
+--- a/net/ipv4/raw.c
++++ b/net/ipv4/raw.c
+@@ -325,7 +325,7 @@ static int raw_rcv_skb(struct sock *sk, struct sk_buff *skb)
+ int raw_rcv(struct sock *sk, struct sk_buff *skb)
+ {
+       if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) {
+-              atomic_inc(&sk->sk_drops);
++              atomic_inc_unchecked(&sk->sk_drops);
+               kfree_skb(skb);
+               return NET_RX_DROP;
+       }
+@@ -786,16 +786,20 @@ static int raw_init(struct sock *sk)
+ static int raw_seticmpfilter(struct sock *sk, char __user *optval, int optlen)
+ {
++      struct icmp_filter filter;
++
+       if (optlen > sizeof(struct icmp_filter))
+               optlen = sizeof(struct icmp_filter);
+-      if (copy_from_user(&raw_sk(sk)->filter, optval, optlen))
++      if (copy_from_user(&filter, optval, optlen))
+               return -EFAULT;
++      raw_sk(sk)->filter = filter;
+       return 0;
+ }
+ static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *optlen)
+ {
+       int len, ret = -EFAULT;
++      struct icmp_filter filter;
+       if (get_user(len, optlen))
+               goto out;
+@@ -805,8 +809,8 @@ static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *o
+       if (len > sizeof(struct icmp_filter))
+               len = sizeof(struct icmp_filter);
+       ret = -EFAULT;
+-      if (put_user(len, optlen) ||
+-          copy_to_user(optval, &raw_sk(sk)->filter, len))
++      filter = raw_sk(sk)->filter;
++      if (put_user(len, optlen) || len > sizeof filter || copy_to_user(optval, &filter, len))
+               goto out;
+       ret = 0;
+ out:  return ret;
+@@ -1035,7 +1039,7 @@ static void raw_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
+               0, 0L, 0,
+               from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
+               0, sock_i_ino(sp),
+-              atomic_read(&sp->sk_refcnt), sp, atomic_read(&sp->sk_drops));
++              atomic_read(&sp->sk_refcnt), sp, atomic_read_unchecked(&sp->sk_drops));
+ }
+ static int raw_seq_show(struct seq_file *seq, void *v)
+@@ -1098,7 +1102,7 @@ static __net_exit void raw_exit_net(struct net *net)
+       remove_proc_entry("raw", net->proc_net);
+ }
+-static __net_initdata struct pernet_operations raw_net_ops = {
++static __net_initconst struct pernet_operations raw_net_ops = {
+       .init = raw_init_net,
+       .exit = raw_exit_net,
+ };
+diff --git a/net/ipv4/route.c b/net/ipv4/route.c
+index 62c3ed0..a3694bf 100644
+--- a/net/ipv4/route.c
++++ b/net/ipv4/route.c
+@@ -232,7 +232,7 @@ static const struct seq_operations rt_cache_seq_ops = {
+ static int rt_cache_seq_open(struct inode *inode, struct file *file)
+ {
+-      return seq_open(file, &rt_cache_seq_ops);
++      return seq_open_restrict(file, &rt_cache_seq_ops);
+ }
+ static const struct file_operations rt_cache_seq_fops = {
+@@ -323,7 +323,7 @@ static const struct seq_operations rt_cpu_seq_ops = {
+ static int rt_cpu_seq_open(struct inode *inode, struct file *file)
+ {
+-      return seq_open(file, &rt_cpu_seq_ops);
++      return seq_open_restrict(file, &rt_cpu_seq_ops);
+ }
+ static const struct file_operations rt_cpu_seq_fops = {
+@@ -361,7 +361,7 @@ static int rt_acct_proc_show(struct seq_file *m, void *v)
+ static int rt_acct_proc_open(struct inode *inode, struct file *file)
+ {
+-      return single_open(file, rt_acct_proc_show, NULL);
++      return single_open_restrict(file, rt_acct_proc_show, NULL);
+ }
+ static const struct file_operations rt_acct_proc_fops = {
+@@ -413,7 +413,7 @@ static void __net_exit ip_rt_do_proc_exit(struct net *net)
+ #endif
+ }
+-static struct pernet_operations ip_rt_proc_ops __net_initdata =  {
++static struct pernet_operations ip_rt_proc_ops __net_initconst =  {
+       .init = ip_rt_do_proc_init,
+       .exit = ip_rt_do_proc_exit,
+ };
+@@ -463,7 +463,7 @@ static struct neighbour *ipv4_neigh_lookup(const struct dst_entry *dst,
+ #define IP_IDENTS_SZ 2048u
+-static atomic_t *ip_idents __read_mostly;
++static atomic_t ip_idents[IP_IDENTS_SZ] __read_mostly;
+ static u32 *ip_tstamps __read_mostly;
+ /* In order to protect privacy, we add a perturbation to identifiers
+@@ -2779,34 +2779,34 @@ static struct ctl_table ipv4_route_flush_table[] = {
+               .maxlen         = sizeof(int),
+               .mode           = 0200,
+               .proc_handler   = ipv4_sysctl_rtcache_flush,
++              .extra1         = &init_net,
+       },
+       { },
+ };
+ static __net_init int sysctl_route_net_init(struct net *net)
+ {
+-      struct ctl_table *tbl;
++      ctl_table_no_const *tbl = NULL;
+-      tbl = ipv4_route_flush_table;
+       if (!net_eq(net, &init_net)) {
+-              tbl = kmemdup(tbl, sizeof(ipv4_route_flush_table), GFP_KERNEL);
++              tbl = kmemdup(ipv4_route_flush_table, sizeof(ipv4_route_flush_table), GFP_KERNEL);
+               if (!tbl)
+                       goto err_dup;
+               /* Don't export sysctls to unprivileged users */
+               if (net->user_ns != &init_user_ns)
+                       tbl[0].procname = NULL;
+-      }
+-      tbl[0].extra1 = net;
++              tbl[0].extra1 = net;
++              net->ipv4.route_hdr = register_net_sysctl(net, "net/ipv4/route", tbl);
++      } else
++              net->ipv4.route_hdr = register_net_sysctl(net, "net/ipv4/route", ipv4_route_flush_table);
+-      net->ipv4.route_hdr = register_net_sysctl(net, "net/ipv4/route", tbl);
+       if (!net->ipv4.route_hdr)
+               goto err_reg;
+       return 0;
+ err_reg:
+-      if (tbl != ipv4_route_flush_table)
+-              kfree(tbl);
++      kfree(tbl);
+ err_dup:
+       return -ENOMEM;
+ }
+@@ -2821,7 +2821,7 @@ static __net_exit void sysctl_route_net_exit(struct net *net)
+       kfree(tbl);
+ }
+-static __net_initdata struct pernet_operations sysctl_route_ops = {
++static __net_initconst struct pernet_operations sysctl_route_ops = {
+       .init = sysctl_route_net_init,
+       .exit = sysctl_route_net_exit,
+ };
+@@ -2829,14 +2829,14 @@ static __net_initdata struct pernet_operations sysctl_route_ops = {
+ static __net_init int rt_genid_init(struct net *net)
+ {
+-      atomic_set(&net->ipv4.rt_genid, 0);
+-      atomic_set(&net->fnhe_genid, 0);
++      atomic_set_unchecked(&net->ipv4.rt_genid, 0);
++      atomic_set_unchecked(&net->fnhe_genid, 0);
+       get_random_bytes(&net->ipv4.dev_addr_genid,
+                        sizeof(net->ipv4.dev_addr_genid));
+       return 0;
+ }
+-static __net_initdata struct pernet_operations rt_genid_ops = {
++static __net_initconst struct pernet_operations rt_genid_ops = {
+       .init = rt_genid_init,
+ };
+@@ -2860,7 +2860,7 @@ static void __net_exit ipv4_inetpeer_exit(struct net *net)
+       kfree(bp);
+ }
+-static __net_initdata struct pernet_operations ipv4_inetpeer_ops = {
++static __net_initconst struct pernet_operations ipv4_inetpeer_ops = {
+       .init   =       ipv4_inetpeer_init,
+       .exit   =       ipv4_inetpeer_exit,
+ };
+@@ -2874,11 +2874,7 @@ int __init ip_rt_init(void)
+       int rc = 0;
+       int cpu;
+-      ip_idents = kmalloc(IP_IDENTS_SZ * sizeof(*ip_idents), GFP_KERNEL);
+-      if (!ip_idents)
+-              panic("IP: failed to allocate ip_idents\n");
+-
+-      prandom_bytes(ip_idents, IP_IDENTS_SZ * sizeof(*ip_idents));
++      prandom_bytes(ip_idents, sizeof(ip_idents));
+       ip_tstamps = kcalloc(IP_IDENTS_SZ, sizeof(*ip_tstamps), GFP_KERNEL);
+       if (!ip_tstamps)
+diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c
+index 1cb67de..2acf1f0 100644
+--- a/net/ipv4/sysctl_net_ipv4.c
++++ b/net/ipv4/sysctl_net_ipv4.c
+@@ -66,7 +66,7 @@ static int ipv4_local_port_range(struct ctl_table *table, int write,
+               container_of(table->data, struct net, ipv4.ip_local_ports.range);
+       int ret;
+       int range[2];
+-      struct ctl_table tmp = {
++      ctl_table_no_const tmp = {
+               .data = &range,
+               .maxlen = sizeof(range),
+               .mode = table->mode,
+@@ -124,7 +124,7 @@ static int ipv4_ping_group_range(struct ctl_table *table, int write,
+       int ret;
+       gid_t urange[2];
+       kgid_t low, high;
+-      struct ctl_table tmp = {
++      ctl_table_no_const tmp = {
+               .data = &urange,
+               .maxlen = sizeof(urange),
+               .mode = table->mode,
+@@ -155,7 +155,7 @@ static int proc_tcp_congestion_control(struct ctl_table *ctl, int write,
+                                      void __user *buffer, size_t *lenp, loff_t *ppos)
+ {
+       char val[TCP_CA_NAME_MAX];
+-      struct ctl_table tbl = {
++      ctl_table_no_const tbl = {
+               .data = val,
+               .maxlen = TCP_CA_NAME_MAX,
+       };
+@@ -174,7 +174,7 @@ static int proc_tcp_available_congestion_control(struct ctl_table *ctl,
+                                                void __user *buffer, size_t *lenp,
+                                                loff_t *ppos)
+ {
+-      struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX, };
++      ctl_table_no_const tbl = { .maxlen = TCP_CA_BUF_MAX, };
+       int ret;
+       tbl.data = kmalloc(tbl.maxlen, GFP_USER);
+@@ -191,7 +191,7 @@ static int proc_allowed_congestion_control(struct ctl_table *ctl,
+                                          void __user *buffer, size_t *lenp,
+                                          loff_t *ppos)
+ {
+-      struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX };
++      ctl_table_no_const tbl = { .maxlen = TCP_CA_BUF_MAX };
+       int ret;
+       tbl.data = kmalloc(tbl.maxlen, GFP_USER);
+@@ -210,7 +210,7 @@ static int proc_tcp_fastopen_key(struct ctl_table *ctl, int write,
+                                void __user *buffer, size_t *lenp,
+                                loff_t *ppos)
+ {
+-      struct ctl_table tbl = { .maxlen = (TCP_FASTOPEN_KEY_LENGTH * 2 + 10) };
++      ctl_table_no_const tbl = { .maxlen = (TCP_FASTOPEN_KEY_LENGTH * 2 + 10) };
+       struct tcp_fastopen_context *ctxt;
+       int ret;
+       u32  user_key[4]; /* 16 bytes, matching TCP_FASTOPEN_KEY_LENGTH */
+@@ -976,13 +976,12 @@ static struct ctl_table ipv4_net_table[] = {
+ static __net_init int ipv4_sysctl_init_net(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table = NULL;
+-      table = ipv4_net_table;
+       if (!net_eq(net, &init_net)) {
+               int i;
+-              table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL);
++              table = kmemdup(ipv4_net_table, sizeof(ipv4_net_table), GFP_KERNEL);
+               if (!table)
+                       goto err_alloc;
+@@ -991,7 +990,10 @@ static __net_init int ipv4_sysctl_init_net(struct net *net)
+                       table[i].data += (void *)net - (void *)&init_net;
+       }
+-      net->ipv4.ipv4_hdr = register_net_sysctl(net, "net/ipv4", table);
++      if (!net_eq(net, &init_net))
++              net->ipv4.ipv4_hdr = register_net_sysctl(net, "net/ipv4", table);
++      else
++              net->ipv4.ipv4_hdr = register_net_sysctl(net, "net/ipv4", ipv4_net_table);
+       if (!net->ipv4.ipv4_hdr)
+               goto err_reg;
+@@ -1020,7 +1022,7 @@ static __net_exit void ipv4_sysctl_exit_net(struct net *net)
+       kfree(table);
+ }
+-static __net_initdata struct pernet_operations ipv4_sysctl_ops = {
++static __net_initconst struct pernet_operations ipv4_sysctl_ops = {
+       .init = ipv4_sysctl_init_net,
+       .exit = ipv4_sysctl_exit_net,
+ };
+diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
+index a756b87..7237f19 100644
+--- a/net/ipv4/tcp_input.c
++++ b/net/ipv4/tcp_input.c
+@@ -268,11 +268,13 @@ static void tcp_ecn_rcv_synack(struct tcp_sock *tp, const struct tcphdr *th)
+               tp->ecn_flags &= ~TCP_ECN_OK;
+ }
++#ifndef CONFIG_GRKERNSEC_NO_SIMULT_CONNECT
+ static void tcp_ecn_rcv_syn(struct tcp_sock *tp, const struct tcphdr *th)
+ {
+       if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || !th->cwr))
+               tp->ecn_flags &= ~TCP_ECN_OK;
+ }
++#endif
+ static bool tcp_ecn_rcv_ecn_echo(const struct tcp_sock *tp, const struct tcphdr *th)
+ {
+@@ -789,7 +791,7 @@ static void tcp_update_pacing_rate(struct sock *sk)
+        * without any lock. We want to make sure compiler wont store
+        * intermediate values in this location.
+        */
+-      ACCESS_ONCE(sk->sk_pacing_rate) = min_t(u64, rate,
++      ACCESS_ONCE_RW(sk->sk_pacing_rate) = min_t(u64, rate,
+                                               sk->sk_max_pacing_rate);
+ }
+@@ -4737,7 +4739,7 @@ static struct sk_buff *tcp_collapse_one(struct sock *sk, struct sk_buff *skb,
+  * simplifies code)
+  */
+ static void
+-tcp_collapse(struct sock *sk, struct sk_buff_head *list,
++__intentional_overflow(5,6) tcp_collapse(struct sock *sk, struct sk_buff_head *list,
+            struct sk_buff *head, struct sk_buff *tail,
+            u32 start, u32 end)
+ {
+@@ -5735,6 +5737,7 @@ discard:
+           tcp_paws_reject(&tp->rx_opt, 0))
+               goto discard_and_undo;
++#ifndef CONFIG_GRKERNSEC_NO_SIMULT_CONNECT
+       if (th->syn) {
+               /* We see SYN without ACK. It is attempt of
+                * simultaneous connect with crossed SYNs.
+@@ -5786,6 +5789,7 @@ discard:
+               goto discard;
+ #endif
+       }
++#endif
+       /* "fifth, if neither of the SYN or RST bits is set then
+        * drop the segment and return."
+        */
+@@ -5829,7 +5833,7 @@ int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb)
+                       goto discard;
+               if (th->syn) {
+-                      if (th->fin)
++                      if (th->fin || th->urg || th->psh)
+                               goto discard;
+                       if (icsk->icsk_af_ops->conn_request(sk, skb) < 0)
+                               return 1;
+@@ -6149,7 +6153,7 @@ struct request_sock *inet_reqsk_alloc(const struct request_sock_ops *ops,
+ #if IS_ENABLED(CONFIG_IPV6)
+               ireq->pktopts = NULL;
+ #endif
+-              atomic64_set(&ireq->ir_cookie, 0);
++              atomic64_set_unchecked(&ireq->ir_cookie, 0);
+               ireq->ireq_state = TCP_NEW_SYN_RECV;
+               write_pnet(&ireq->ireq_net, sock_net(sk_listener));
+               ireq->ireq_family = sk_listener->sk_family;
+diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
+index 7158d4f..a25f7f8 100644
+--- a/net/ipv4/tcp_ipv4.c
++++ b/net/ipv4/tcp_ipv4.c
+@@ -88,6 +88,10 @@ int sysctl_tcp_tw_reuse __read_mostly;
+ int sysctl_tcp_low_latency __read_mostly;
+ EXPORT_SYMBOL(sysctl_tcp_low_latency);
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++extern int grsec_enable_blackhole;
++#endif
++
+ #ifdef CONFIG_TCP_MD5SIG
+ static int tcp_v4_md5_hash_hdr(char *md5_hash, const struct tcp_md5sig_key *key,
+                              __be32 daddr, __be32 saddr, const struct tcphdr *th);
+@@ -1428,6 +1432,9 @@ int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
+       return 0;
+ reset:
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++      if (!grsec_enable_blackhole)
++#endif
+       tcp_v4_send_reset(rsk, skb);
+ discard:
+       kfree_skb(skb);
+@@ -1595,12 +1602,19 @@ int tcp_v4_rcv(struct sk_buff *skb)
+ lookup:
+       sk = __inet_lookup_skb(&tcp_hashinfo, skb, __tcp_hdrlen(th), th->source,
+                              th->dest, &refcounted);
+-      if (!sk)
++      if (!sk) {
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++              ret = 1;
++#endif
+               goto no_tcp_socket;
+-
++      }
+ process:
+-      if (sk->sk_state == TCP_TIME_WAIT)
++      if (sk->sk_state == TCP_TIME_WAIT) {
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++              ret = 2;
++#endif
+               goto do_time_wait;
++      }
+       if (sk->sk_state == TCP_NEW_SYN_RECV) {
+               struct request_sock *req = inet_reqsk(sk);
+@@ -1690,6 +1704,10 @@ csum_error:
+ bad_packet:
+               __TCP_INC_STATS(net, TCP_MIB_INERRS);
+       } else {
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++              if (!grsec_enable_blackhole || (ret == 1 &&
++                  (skb->dev->flags & IFF_LOOPBACK)))
++#endif
+               tcp_v4_send_reset(NULL, skb);
+       }
+@@ -2428,7 +2446,7 @@ static void __net_exit tcp_sk_exit_batch(struct list_head *net_exit_list)
+       inet_twsk_purge(&tcp_hashinfo, &tcp_death_row, AF_INET);
+ }
+-static struct pernet_operations __net_initdata tcp_sk_ops = {
++static struct pernet_operations __net_initconst tcp_sk_ops = {
+        .init     = tcp_sk_init,
+        .exit     = tcp_sk_exit,
+        .exit_batch = tcp_sk_exit_batch,
+diff --git a/net/ipv4/tcp_metrics.c b/net/ipv4/tcp_metrics.c
+index b617826..c544a96 100644
+--- a/net/ipv4/tcp_metrics.c
++++ b/net/ipv4/tcp_metrics.c
+@@ -1166,7 +1166,7 @@ static void __net_exit tcp_net_metrics_exit(struct net *net)
+       tcp_metrics_flush_all(net);
+ }
+-static __net_initdata struct pernet_operations tcp_net_metrics_ops = {
++static __net_initconst struct pernet_operations tcp_net_metrics_ops = {
+       .init   =       tcp_net_metrics_init,
+       .exit   =       tcp_net_metrics_exit,
+ };
+diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c
+index 4b95ec4..4a83836 100644
+--- a/net/ipv4/tcp_minisocks.c
++++ b/net/ipv4/tcp_minisocks.c
+@@ -27,6 +27,10 @@
+ #include <net/inet_common.h>
+ #include <net/xfrm.h>
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++extern int grsec_enable_blackhole;
++#endif
++
+ int sysctl_tcp_abort_on_overflow __read_mostly;
+ struct inet_timewait_death_row tcp_death_row = {
+@@ -784,7 +788,10 @@ embryonic_reset:
+                * avoid becoming vulnerable to outside attack aiming at
+                * resetting legit local connections.
+                */
+-              req->rsk_ops->send_reset(sk, skb);
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++              if (!grsec_enable_blackhole)
++#endif
++                      req->rsk_ops->send_reset(sk, skb);
+       } else if (fastopen) { /* received a valid RST pkt */
+               reqsk_fastopen_remove(sk, req, true);
+               tcp_reset(sk);
+diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c
+index f6c50af..1eb9aa5 100644
+--- a/net/ipv4/tcp_probe.c
++++ b/net/ipv4/tcp_probe.c
+@@ -236,7 +236,7 @@ static ssize_t tcpprobe_read(struct file *file, char __user *buf,
+               if (cnt + width >= len)
+                       break;
+-              if (copy_to_user(buf + cnt, tbuf, width))
++              if (width > sizeof tbuf || copy_to_user(buf + cnt, tbuf, width))
+                       return -EFAULT;
+               cnt += width;
+       }
+diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c
+index f712b41..b651403 100644
+--- a/net/ipv4/tcp_timer.c
++++ b/net/ipv4/tcp_timer.c
+@@ -22,6 +22,10 @@
+ #include <linux/gfp.h>
+ #include <net/tcp.h>
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++extern int grsec_lastack_retries;
++#endif
++
+ int sysctl_tcp_thin_linear_timeouts __read_mostly;
+ /**
+@@ -228,6 +232,13 @@ static int tcp_write_timeout(struct sock *sk)
+               }
+       }
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++      if ((sk->sk_state == TCP_LAST_ACK) &&
++          (grsec_lastack_retries > 0) &&
++          (grsec_lastack_retries < retry_until))
++              retry_until = grsec_lastack_retries;
++#endif
++
+       if (retransmits_timed_out(sk, retry_until,
+                                 syn_set ? 0 : icsk->icsk_user_timeout, syn_set)) {
+               /* Has it gone just too far? */
+diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
+index 5fdcb8d..e9d917f 100644
+--- a/net/ipv4/udp.c
++++ b/net/ipv4/udp.c
+@@ -87,6 +87,7 @@
+ #include <linux/types.h>
+ #include <linux/fcntl.h>
+ #include <linux/module.h>
++#include <linux/security.h>
+ #include <linux/socket.h>
+ #include <linux/sockios.h>
+ #include <linux/igmp.h>
+@@ -115,6 +116,10 @@
+ #include "udp_impl.h"
+ #include <net/sock_reuseport.h>
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++extern int grsec_enable_blackhole;
++#endif
++
+ struct udp_table udp_table __read_mostly;
+ EXPORT_SYMBOL(udp_table);
+@@ -614,6 +619,9 @@ static inline bool __udp_is_mcast_sock(struct net *net, struct sock *sk,
+       return true;
+ }
++extern int gr_search_udp_recvmsg(struct sock *sk, const struct sk_buff *skb);
++extern int gr_search_udp_sendmsg(struct sock *sk, struct sockaddr_in *addr);
++
+ /*
+  * This routine is called by the ICMP module when it gets some
+  * sort of error condition.  If err < 0 then the socket should
+@@ -940,9 +948,18 @@ int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
+               dport = usin->sin_port;
+               if (dport == 0)
+                       return -EINVAL;
++
++              err = gr_search_udp_sendmsg(sk, usin);
++              if (err)
++                      return err;
+       } else {
+               if (sk->sk_state != TCP_ESTABLISHED)
+                       return -EDESTADDRREQ;
++
++              err = gr_search_udp_sendmsg(sk, NULL);
++              if (err)
++                      return err;
++
+               daddr = inet->inet_daddr;
+               dport = inet->inet_dport;
+               /* Open fast path for connected socket.
+@@ -1199,7 +1216,7 @@ static int first_packet_length(struct sock *sk)
+                               IS_UDPLITE(sk));
+               __UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
+                               IS_UDPLITE(sk));
+-              atomic_inc(&sk->sk_drops);
++              atomic_inc_unchecked(&sk->sk_drops);
+               __skb_unlink(skb, rcvq);
+               __skb_queue_tail(&list_kill, skb);
+       }
+@@ -1301,10 +1318,13 @@ try_again:
+                       goto csum_copy_err;
+       }
++      if (likely(!err))
++              err = gr_search_udp_recvmsg(sk, skb);
++
+       if (unlikely(err)) {
+               trace_kfree_skb(skb, udp_recvmsg);
+               if (!peeked) {
+-                      atomic_inc(&sk->sk_drops);
++                      atomic_inc_unchecked(&sk->sk_drops);
+                       UDP_INC_STATS(sock_net(sk),
+                                     UDP_MIB_INERRORS, is_udplite);
+               }
+@@ -1609,7 +1629,7 @@ csum_error:
+       __UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
+ drop:
+       __UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
+-      atomic_inc(&sk->sk_drops);
++      atomic_inc_unchecked(&sk->sk_drops);
+       kfree_skb(skb);
+       return -1;
+ }
+@@ -1667,7 +1687,7 @@ start_lookup:
+               nskb = skb_clone(skb, GFP_ATOMIC);
+               if (unlikely(!nskb)) {
+-                      atomic_inc(&sk->sk_drops);
++                      atomic_inc_unchecked(&sk->sk_drops);
+                       __UDP_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
+                                       IS_UDPLITE(sk));
+                       __UDP_INC_STATS(net, UDP_MIB_INERRORS,
+@@ -1808,6 +1828,9 @@ int __udp4_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
+               goto csum_error;
+       __UDP_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++      if (!grsec_enable_blackhole || (skb->dev->flags & IFF_LOOPBACK))
++#endif
+       icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
+       /*
+@@ -2372,7 +2395,7 @@ static void udp4_format_sock(struct sock *sp, struct seq_file *f,
+               from_kuid_munged(seq_user_ns(f), sock_i_uid(sp)),
+               0, sock_i_ino(sp),
+               atomic_read(&sp->sk_refcnt), sp,
+-              atomic_read(&sp->sk_drops));
++              atomic_read_unchecked(&sp->sk_drops));
+ }
+ int udp4_seq_show(struct seq_file *seq, void *v)
+diff --git a/net/ipv4/xfrm4_mode_beet.c b/net/ipv4/xfrm4_mode_beet.c
+index 71acd00..d2c74ee 100644
+--- a/net/ipv4/xfrm4_mode_beet.c
++++ b/net/ipv4/xfrm4_mode_beet.c
+@@ -36,7 +36,7 @@ static void xfrm4_beet_make_header(struct sk_buff *skb)
+  *
+  * The top IP header will be constructed per draft-nikander-esp-beet-mode-06.txt.
+  */
+-static int xfrm4_beet_output(struct xfrm_state *x, struct sk_buff *skb)
++static int __intentional_overflow(0) xfrm4_beet_output(struct xfrm_state *x, struct sk_buff *skb)
+ {
+       struct ip_beet_phdr *ph;
+       struct iphdr *top_iph;
+diff --git a/net/ipv4/xfrm4_mode_transport.c b/net/ipv4/xfrm4_mode_transport.c
+index fd840c7..b517627 100644
+--- a/net/ipv4/xfrm4_mode_transport.c
++++ b/net/ipv4/xfrm4_mode_transport.c
+@@ -18,7 +18,7 @@
+  * The IP header will be moved forward to make space for the encapsulation
+  * header.
+  */
+-static int xfrm4_transport_output(struct xfrm_state *x, struct sk_buff *skb)
++static int __intentional_overflow(0) xfrm4_transport_output(struct xfrm_state *x, struct sk_buff *skb)
+ {
+       struct iphdr *iph = ip_hdr(skb);
+       int ihl = iph->ihl * 4;
+diff --git a/net/ipv4/xfrm4_policy.c b/net/ipv4/xfrm4_policy.c
+index 41f5b50..1b82e10 100644
+--- a/net/ipv4/xfrm4_policy.c
++++ b/net/ipv4/xfrm4_policy.c
+@@ -215,11 +215,11 @@ _decode_session4(struct sk_buff *skb, struct flowi *fl, int reverse)
+       fl4->flowi4_tos = iph->tos;
+ }
+-static inline int xfrm4_garbage_collect(struct dst_ops *ops)
++static int xfrm4_garbage_collect(struct dst_ops *ops)
+ {
+       struct net *net = container_of(ops, struct net, xfrm.xfrm4_dst_ops);
+-      xfrm4_policy_afinfo.garbage_collect(net);
++      xfrm_garbage_collect_deferred(net);
+       return (dst_entries_get_slow(ops) > ops->gc_thresh * 2);
+ }
+@@ -297,19 +297,19 @@ static struct ctl_table xfrm4_policy_table[] = {
+ static __net_init int xfrm4_net_sysctl_init(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table = NULL;
+       struct ctl_table_header *hdr;
+-      table = xfrm4_policy_table;
+       if (!net_eq(net, &init_net)) {
+-              table = kmemdup(table, sizeof(xfrm4_policy_table), GFP_KERNEL);
++              table = kmemdup(xfrm4_policy_table, sizeof(xfrm4_policy_table), GFP_KERNEL);
+               if (!table)
+                       goto err_alloc;
+               table[0].data = &net->xfrm.xfrm4_dst_ops.gc_thresh;
+-      }
+-      hdr = register_net_sysctl(net, "net/ipv4", table);
++              hdr = register_net_sysctl(net, "net/ipv4", table);
++      } else
++              hdr = register_net_sysctl(net, "net/ipv4", xfrm4_policy_table);
+       if (!hdr)
+               goto err_reg;
+@@ -317,8 +317,7 @@ static __net_init int xfrm4_net_sysctl_init(struct net *net)
+       return 0;
+ err_reg:
+-      if (!net_eq(net, &init_net))
+-              kfree(table);
++      kfree(table);
+ err_alloc:
+       return -ENOMEM;
+ }
+@@ -369,7 +368,7 @@ static void __net_exit xfrm4_net_exit(struct net *net)
+       dst_entries_destroy(&net->xfrm.xfrm4_dst_ops);
+ }
+-static struct pernet_operations __net_initdata xfrm4_net_ops = {
++static struct pernet_operations __net_initconst xfrm4_net_ops = {
+       .init   = xfrm4_net_init,
+       .exit   = xfrm4_net_exit,
+ };
+diff --git a/net/ipv4/xfrm4_state.c b/net/ipv4/xfrm4_state.c
+index 542074c..648df74 100644
+--- a/net/ipv4/xfrm4_state.c
++++ b/net/ipv4/xfrm4_state.c
+@@ -56,6 +56,7 @@ xfrm4_init_temprop(struct xfrm_state *x, const struct xfrm_tmpl *tmpl,
+ int xfrm4_extract_header(struct sk_buff *skb)
+ {
++      unsigned char iph_tmp;
+       const struct iphdr *iph = ip_hdr(skb);
+       XFRM_MODE_SKB_CB(skb)->ihl = sizeof(*iph);
+@@ -63,7 +64,8 @@ int xfrm4_extract_header(struct sk_buff *skb)
+       XFRM_MODE_SKB_CB(skb)->frag_off = iph->frag_off;
+       XFRM_MODE_SKB_CB(skb)->tos = iph->tos;
+       XFRM_MODE_SKB_CB(skb)->ttl = iph->ttl;
+-      XFRM_MODE_SKB_CB(skb)->optlen = iph->ihl * 4 - sizeof(*iph);
++      iph_tmp = iph->ihl * 4;
++      XFRM_MODE_SKB_CB(skb)->optlen = iph_tmp - sizeof(*iph);
+       memset(XFRM_MODE_SKB_CB(skb)->flow_lbl, 0,
+              sizeof(XFRM_MODE_SKB_CB(skb)->flow_lbl));
+diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
+index 2f1f5d4..b8eadc4 100644
+--- a/net/ipv6/addrconf.c
++++ b/net/ipv6/addrconf.c
+@@ -179,7 +179,7 @@ static struct ipv6_devconf ipv6_devconf __read_mostly = {
+       .hop_limit              = IPV6_DEFAULT_HOPLIMIT,
+       .mtu6                   = IPV6_MIN_MTU,
+       .accept_ra              = 1,
+-      .accept_redirects       = 1,
++      .accept_redirects       = 0,
+       .autoconf               = 1,
+       .force_mld_version      = 0,
+       .mldv1_unsolicited_report_interval = 10 * HZ,
+@@ -224,7 +224,7 @@ static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
+       .hop_limit              = IPV6_DEFAULT_HOPLIMIT,
+       .mtu6                   = IPV6_MIN_MTU,
+       .accept_ra              = 1,
+-      .accept_redirects       = 1,
++      .accept_redirects       = 0,
+       .autoconf               = 1,
+       .force_mld_version      = 0,
+       .mldv1_unsolicited_report_interval = 10 * HZ,
+@@ -650,7 +650,7 @@ static int inet6_netconf_dump_devconf(struct sk_buff *skb,
+               idx = 0;
+               head = &net->dev_index_head[h];
+               rcu_read_lock();
+-              cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
++              cb->seq = atomic_read_unchecked(&net->ipv6.dev_addr_genid) ^
+                         net->dev_base_seq;
+               hlist_for_each_entry_rcu(dev, head, index_hlist) {
+                       if (idx < s_idx)
+@@ -2664,7 +2664,7 @@ int addrconf_set_dstaddr(struct net *net, void __user *arg)
+               p.iph.ihl = 5;
+               p.iph.protocol = IPPROTO_IPV6;
+               p.iph.ttl = 64;
+-              ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
++              ifr.ifr_ifru.ifru_data = (void __force_user *)&p;
+               if (ops->ndo_do_ioctl) {
+                       mm_segment_t oldfs = get_fs();
+@@ -4119,16 +4119,23 @@ static const struct file_operations if6_fops = {
+       .release        = seq_release_net,
+ };
++extern void register_ipv6_seq_ops_addr(struct seq_operations *addr);
++extern void unregister_ipv6_seq_ops_addr(void);
++
+ static int __net_init if6_proc_net_init(struct net *net)
+ {
+-      if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
++      register_ipv6_seq_ops_addr(&if6_seq_ops);
++      if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops)) {
++              unregister_ipv6_seq_ops_addr();
+               return -ENOMEM;
++      }
+       return 0;
+ }
+ static void __net_exit if6_proc_net_exit(struct net *net)
+ {
+       remove_proc_entry("if_inet6", net->proc_net);
++      unregister_ipv6_seq_ops_addr();
+ }
+ static struct pernet_operations if6_proc_net_ops = {
+@@ -4747,7 +4754,7 @@ static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
+       s_ip_idx = ip_idx = cb->args[2];
+       rcu_read_lock();
+-      cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
++      cb->seq = atomic_read_unchecked(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
+       for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
+               idx = 0;
+               head = &net->dev_index_head[h];
+@@ -4960,7 +4967,7 @@ static inline size_t inet6_if_nlmsg_size(void)
+              + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
+ }
+-static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
++static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_unchecked_t *mib,
+                                     int items, int bytes)
+ {
+       int i;
+@@ -4970,7 +4977,7 @@ static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
+       /* Use put_unaligned() because stats may not be aligned for u64. */
+       put_unaligned(items, &stats[0]);
+       for (i = 1; i < items; i++)
+-              put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
++              put_unaligned(atomic_long_read_unchecked(&mib[i]), &stats[i]);
+       memset(&stats[items], 0, pad);
+ }
+@@ -5427,7 +5434,7 @@ static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
+               rt_genid_bump_ipv6(net);
+               break;
+       }
+-      atomic_inc(&net->ipv6.dev_addr_genid);
++      atomic_inc_unchecked(&net->ipv6.dev_addr_genid);
+ }
+ static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
+@@ -5447,7 +5454,7 @@ int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
+       int *valp = ctl->data;
+       int val = *valp;
+       loff_t pos = *ppos;
+-      struct ctl_table lctl;
++      ctl_table_no_const lctl;
+       int ret;
+       /*
+@@ -5470,7 +5477,7 @@ static
+ int addrconf_sysctl_hop_limit(struct ctl_table *ctl, int write,
+                               void __user *buffer, size_t *lenp, loff_t *ppos)
+ {
+-      struct ctl_table lctl;
++      ctl_table_no_const lctl;
+       int min_hl = 1, max_hl = 255;
+       lctl = *ctl;
+@@ -5486,7 +5493,7 @@ int addrconf_sysctl_mtu(struct ctl_table *ctl, int write,
+ {
+       struct inet6_dev *idev = ctl->extra1;
+       int min_mtu = IPV6_MIN_MTU;
+-      struct ctl_table lctl;
++      ctl_table_no_const lctl;
+       lctl = *ctl;
+       lctl.extra1 = &min_mtu;
+@@ -5561,7 +5568,7 @@ int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
+       int *valp = ctl->data;
+       int val = *valp;
+       loff_t pos = *ppos;
+-      struct ctl_table lctl;
++      ctl_table_no_const lctl;
+       int ret;
+       /*
+@@ -5626,7 +5633,7 @@ static int addrconf_sysctl_stable_secret(struct ctl_table *ctl, int write,
+       int err;
+       struct in6_addr addr;
+       char str[IPV6_MAX_STRLEN];
+-      struct ctl_table lctl = *ctl;
++      ctl_table_no_const lctl = *ctl;
+       struct net *net = ctl->extra2;
+       struct ipv6_stable_secret *secret = ctl->data;
+@@ -5695,7 +5702,7 @@ int addrconf_sysctl_ignore_routes_with_linkdown(struct ctl_table *ctl,
+       int *valp = ctl->data;
+       int val = *valp;
+       loff_t pos = *ppos;
+-      struct ctl_table lctl;
++      ctl_table_no_const lctl;
+       int ret;
+       /* ctl->data points to idev->cnf.ignore_routes_when_linkdown
+@@ -6035,7 +6042,7 @@ static int __addrconf_sysctl_register(struct net *net, char *dev_name,
+               struct inet6_dev *idev, struct ipv6_devconf *p)
+ {
+       int i, ifindex;
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
+       table = kmemdup(addrconf_sysctl, sizeof(addrconf_sysctl), GFP_KERNEL);
+diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c
+index b454055..0ac9a2d 100644
+--- a/net/ipv6/af_inet6.c
++++ b/net/ipv6/af_inet6.c
+@@ -794,7 +794,7 @@ static int __net_init inet6_net_init(struct net *net)
+       net->ipv6.sysctl.idgen_retries = 3;
+       net->ipv6.sysctl.idgen_delay = 1 * HZ;
+       net->ipv6.sysctl.flowlabel_state_ranges = 0;
+-      atomic_set(&net->ipv6.fib6_sernum, 1);
++      atomic_set_unchecked(&net->ipv6.fib6_sernum, 1);
+       err = ipv6_init_mibs(net);
+       if (err)
+diff --git a/net/ipv6/datagram.c b/net/ipv6/datagram.c
+index 37874e2..d5cd498 100644
+--- a/net/ipv6/datagram.c
++++ b/net/ipv6/datagram.c
+@@ -1032,5 +1032,5 @@ void ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
+                  0,
+                  sock_i_ino(sp),
+                  atomic_read(&sp->sk_refcnt), sp,
+-                 atomic_read(&sp->sk_drops));
++                 atomic_read_unchecked(&sp->sk_drops));
+ }
+diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
+index bd59c34..8bd19fd2 100644
+--- a/net/ipv6/icmp.c
++++ b/net/ipv6/icmp.c
+@@ -1073,7 +1073,7 @@ static struct ctl_table ipv6_icmp_table_template[] = {
+ struct ctl_table * __net_init ipv6_icmp_sysctl_init(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       table = kmemdup(ipv6_icmp_table_template,
+                       sizeof(ipv6_icmp_table_template),
+diff --git a/net/ipv6/inet6_hashtables.c b/net/ipv6/inet6_hashtables.c
+index 00cf28a..4699aa3 100644
+--- a/net/ipv6/inet6_hashtables.c
++++ b/net/ipv6/inet6_hashtables.c
+@@ -178,7 +178,7 @@ struct sock *inet6_lookup(struct net *net, struct inet_hashinfo *hashinfo,
+ EXPORT_SYMBOL_GPL(inet6_lookup);
+ static int __inet6_check_established(struct inet_timewait_death_row *death_row,
+-                                   struct sock *sk, const __u16 lport,
++                                   struct sock *sk, __u16 lport,
+                                    struct inet_timewait_sock **twp)
+ {
+       struct inet_hashinfo *hinfo = death_row->hashinfo;
+diff --git a/net/ipv6/ip6_fib.c b/net/ipv6/ip6_fib.c
+index 771be1f..e592cb8 100644
+--- a/net/ipv6/ip6_fib.c
++++ b/net/ipv6/ip6_fib.c
+@@ -98,9 +98,9 @@ static int fib6_new_sernum(struct net *net)
+       int new, old;
+       do {
+-              old = atomic_read(&net->ipv6.fib6_sernum);
++              old = atomic_read_unchecked(&net->ipv6.fib6_sernum);
+               new = old < INT_MAX ? old + 1 : 1;
+-      } while (atomic_cmpxchg(&net->ipv6.fib6_sernum,
++      } while (atomic_cmpxchg_unchecked(&net->ipv6.fib6_sernum,
+                               old, new) != old);
+       return new;
+ }
+diff --git a/net/ipv6/ip6_gre.c b/net/ipv6/ip6_gre.c
+index edc3daa..c951634 100644
+--- a/net/ipv6/ip6_gre.c
++++ b/net/ipv6/ip6_gre.c
+@@ -71,8 +71,8 @@ struct ip6gre_net {
+       struct net_device *fb_tunnel_dev;
+ };
+-static struct rtnl_link_ops ip6gre_link_ops __read_mostly;
+-static struct rtnl_link_ops ip6gre_tap_ops __read_mostly;
++static struct rtnl_link_ops ip6gre_link_ops;
++static struct rtnl_link_ops ip6gre_tap_ops;
+ static int ip6gre_tunnel_init(struct net_device *dev);
+ static void ip6gre_tunnel_setup(struct net_device *dev);
+ static void ip6gre_tunnel_link(struct ip6gre_net *ign, struct ip6_tnl *t);
+@@ -1067,7 +1067,7 @@ static void ip6gre_fb_tunnel_init(struct net_device *dev)
+ }
+-static struct inet6_protocol ip6gre_protocol __read_mostly = {
++static struct inet6_protocol ip6gre_protocol = {
+       .handler     = gre_rcv,
+       .err_handler = ip6gre_err,
+       .flags       = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
+@@ -1520,7 +1520,7 @@ static const struct nla_policy ip6gre_policy[IFLA_GRE_MAX + 1] = {
+       [IFLA_GRE_ENCAP_DPORT]  = { .type = NLA_U16 },
+ };
+-static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
++static struct rtnl_link_ops ip6gre_link_ops = {
+       .kind           = "ip6gre",
+       .maxtype        = IFLA_GRE_MAX,
+       .policy         = ip6gre_policy,
+@@ -1535,7 +1535,7 @@ static struct rtnl_link_ops ip6gre_link_ops __read_mostly = {
+       .get_link_net   = ip6_tnl_get_link_net,
+ };
+-static struct rtnl_link_ops ip6gre_tap_ops __read_mostly = {
++static struct rtnl_link_ops ip6gre_tap_ops = {
+       .kind           = "ip6gretap",
+       .maxtype        = IFLA_GRE_MAX,
+       .policy         = ip6gre_policy,
+diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c
+index 888543d..bcc126c 100644
+--- a/net/ipv6/ip6_tunnel.c
++++ b/net/ipv6/ip6_tunnel.c
+@@ -80,7 +80,7 @@ static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
+ static int ip6_tnl_dev_init(struct net_device *dev);
+ static void ip6_tnl_dev_setup(struct net_device *dev);
+-static struct rtnl_link_ops ip6_link_ops __read_mostly;
++static struct rtnl_link_ops ip6_link_ops;
+ static int ip6_tnl_net_id __read_mostly;
+ struct ip6_tnl_net {
+@@ -1994,7 +1994,7 @@ static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
+       [IFLA_IPTUN_ENCAP_DPORT]        = { .type = NLA_U16 },
+ };
+-static struct rtnl_link_ops ip6_link_ops __read_mostly = {
++static struct rtnl_link_ops ip6_link_ops = {
+       .kind           = "ip6tnl",
+       .maxtype        = IFLA_IPTUN_MAX,
+       .policy         = ip6_tnl_policy,
+diff --git a/net/ipv6/ip6_vti.c b/net/ipv6/ip6_vti.c
+index 5bd3afd..207e6a1 100644
+--- a/net/ipv6/ip6_vti.c
++++ b/net/ipv6/ip6_vti.c
+@@ -62,7 +62,7 @@ static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
+ static int vti6_dev_init(struct net_device *dev);
+ static void vti6_dev_setup(struct net_device *dev);
+-static struct rtnl_link_ops vti6_link_ops __read_mostly;
++static struct rtnl_link_ops vti6_link_ops;
+ static int vti6_net_id __read_mostly;
+ struct vti6_net {
+@@ -1030,7 +1030,7 @@ static const struct nla_policy vti6_policy[IFLA_VTI_MAX + 1] = {
+       [IFLA_VTI_OKEY]         = { .type = NLA_U32 },
+ };
+-static struct rtnl_link_ops vti6_link_ops __read_mostly = {
++static struct rtnl_link_ops vti6_link_ops = {
+       .kind           = "vti6",
+       .maxtype        = IFLA_VTI_MAX,
+       .policy         = vti6_policy,
+diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c
+index 5330262..0335f4d 100644
+--- a/net/ipv6/ipv6_sockglue.c
++++ b/net/ipv6/ipv6_sockglue.c
+@@ -1026,7 +1026,7 @@ static int do_ipv6_getsockopt(struct sock *sk, int level, int optname,
+               if (sk->sk_type != SOCK_STREAM)
+                       return -ENOPROTOOPT;
+-              msg.msg_control = optval;
++              msg.msg_control = (void __force_kernel *)optval;
+               msg.msg_controllen = len;
+               msg.msg_flags = flags;
+diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c
+index fe65cdc..4e70b99 100644
+--- a/net/ipv6/ndisc.c
++++ b/net/ipv6/ndisc.c
+@@ -683,7 +683,7 @@ static void ndisc_solicit(struct neighbour *neigh, struct sk_buff *skb)
+       struct in6_addr mcaddr;
+       struct net_device *dev = neigh->dev;
+       struct in6_addr *target = (struct in6_addr *)&neigh->primary_key;
+-      int probes = atomic_read(&neigh->probes);
++      int probes = atomic_read_unchecked(&neigh->probes);
+       if (skb && ipv6_chk_addr_and_flags(dev_net(dev), &ipv6_hdr(skb)->saddr,
+                                          dev, 1,
+diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c
+index 552fac2..32c56ad 100644
+--- a/net/ipv6/netfilter/ip6_tables.c
++++ b/net/ipv6/netfilter/ip6_tables.c
+@@ -988,13 +988,13 @@ static int compat_table_info(const struct xt_table_info *info,
+ #endif
+ static int get_info(struct net *net, void __user *user,
+-                  const int *len, int compat)
++                  int len, int compat)
+ {
+       char name[XT_TABLE_MAXNAMELEN];
+       struct xt_table *t;
+       int ret;
+-      if (*len != sizeof(struct ip6t_getinfo))
++      if (len != sizeof(struct ip6t_getinfo))
+               return -EINVAL;
+       if (copy_from_user(name, user, sizeof(name)) != 0)
+@@ -1029,7 +1029,7 @@ static int get_info(struct net *net, void __user *user,
+               info.size = private->size;
+               strcpy(info.name, name);
+-              if (copy_to_user(user, &info, *len) != 0)
++              if (copy_to_user(user, &info, len) != 0)
+                       ret = -EFAULT;
+               else
+                       ret = 0;
+@@ -1683,7 +1683,7 @@ compat_do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
+       switch (cmd) {
+       case IP6T_SO_GET_INFO:
+-              ret = get_info(sock_net(sk), user, len, 1);
++              ret = get_info(sock_net(sk), user, *len, 1);
+               break;
+       case IP6T_SO_GET_ENTRIES:
+               ret = compat_get_entries(sock_net(sk), user, len);
+@@ -1729,7 +1729,7 @@ do_ip6t_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
+       switch (cmd) {
+       case IP6T_SO_GET_INFO:
+-              ret = get_info(sock_net(sk), user, len, 0);
++              ret = get_info(sock_net(sk), user, *len, 0);
+               break;
+       case IP6T_SO_GET_ENTRIES:
+diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c
+index e4347ae..c7654e7 100644
+--- a/net/ipv6/netfilter/nf_conntrack_reasm.c
++++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
+@@ -95,12 +95,11 @@ static struct ctl_table nf_ct_frag6_sysctl_table[] = {
+ static int nf_ct_frag6_sysctl_register(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table = NULL;
+       struct ctl_table_header *hdr;
+-      table = nf_ct_frag6_sysctl_table;
+       if (!net_eq(net, &init_net)) {
+-              table = kmemdup(table, sizeof(nf_ct_frag6_sysctl_table),
++              table = kmemdup(nf_ct_frag6_sysctl_table, sizeof(nf_ct_frag6_sysctl_table),
+                               GFP_KERNEL);
+               if (table == NULL)
+                       goto err_alloc;
+@@ -111,9 +110,9 @@ static int nf_ct_frag6_sysctl_register(struct net *net)
+               table[2].data = &net->nf_frag.frags.high_thresh;
+               table[2].extra1 = &net->nf_frag.frags.low_thresh;
+               table[2].extra2 = &init_net.nf_frag.frags.high_thresh;
+-      }
+-
+-      hdr = register_net_sysctl(net, "net/netfilter", table);
++              hdr = register_net_sysctl(net, "net/netfilter", table);
++      } else
++              hdr = register_net_sysctl(net, "net/netfilter", nf_ct_frag6_sysctl_table);
+       if (hdr == NULL)
+               goto err_reg;
+@@ -121,8 +120,7 @@ static int nf_ct_frag6_sysctl_register(struct net *net)
+       return 0;
+ err_reg:
+-      if (!net_eq(net, &init_net))
+-              kfree(table);
++      kfree(table);
+ err_alloc:
+       return -ENOMEM;
+ }
+diff --git a/net/ipv6/ping.c b/net/ipv6/ping.c
+index 0e983b6..655d90b 100644
+--- a/net/ipv6/ping.c
++++ b/net/ipv6/ping.c
+@@ -250,6 +250,24 @@ static struct pernet_operations ping_v6_net_ops = {
+ };
+ #endif
++static struct pingv6_ops real_pingv6_ops = {
++      .ipv6_recv_error                = ipv6_recv_error,
++      .ip6_datagram_recv_common_ctl   = ip6_datagram_recv_common_ctl,
++      .ip6_datagram_recv_specific_ctl = ip6_datagram_recv_specific_ctl,
++      .icmpv6_err_convert             = icmpv6_err_convert,
++      .ipv6_icmp_error                = ipv6_icmp_error,
++      .ipv6_chk_addr                  = ipv6_chk_addr,
++};
++
++static struct pingv6_ops dummy_pingv6_ops = {
++      .ipv6_recv_error                = dummy_ipv6_recv_error,
++      .ip6_datagram_recv_common_ctl   = dummy_ip6_datagram_recv_ctl,
++      .ip6_datagram_recv_specific_ctl = dummy_ip6_datagram_recv_ctl,
++      .icmpv6_err_convert             = dummy_icmpv6_err_convert,
++      .ipv6_icmp_error                = dummy_ipv6_icmp_error,
++      .ipv6_chk_addr                  = dummy_ipv6_chk_addr,
++};
++
+ int __init pingv6_init(void)
+ {
+ #ifdef CONFIG_PROC_FS
+@@ -257,13 +275,7 @@ int __init pingv6_init(void)
+       if (ret)
+               return ret;
+ #endif
+-      pingv6_ops.ipv6_recv_error = ipv6_recv_error;
+-      pingv6_ops.ip6_datagram_recv_common_ctl = ip6_datagram_recv_common_ctl;
+-      pingv6_ops.ip6_datagram_recv_specific_ctl =
+-              ip6_datagram_recv_specific_ctl;
+-      pingv6_ops.icmpv6_err_convert = icmpv6_err_convert;
+-      pingv6_ops.ipv6_icmp_error = ipv6_icmp_error;
+-      pingv6_ops.ipv6_chk_addr = ipv6_chk_addr;
++      pingv6_ops = &real_pingv6_ops;
+       return inet6_register_protosw(&pingv6_protosw);
+ }
+@@ -272,14 +284,9 @@ int __init pingv6_init(void)
+  */
+ void pingv6_exit(void)
+ {
+-      pingv6_ops.ipv6_recv_error = dummy_ipv6_recv_error;
+-      pingv6_ops.ip6_datagram_recv_common_ctl = dummy_ip6_datagram_recv_ctl;
+-      pingv6_ops.ip6_datagram_recv_specific_ctl = dummy_ip6_datagram_recv_ctl;
+-      pingv6_ops.icmpv6_err_convert = dummy_icmpv6_err_convert;
+-      pingv6_ops.ipv6_icmp_error = dummy_ipv6_icmp_error;
+-      pingv6_ops.ipv6_chk_addr = dummy_ipv6_chk_addr;
+ #ifdef CONFIG_PROC_FS
+       unregister_pernet_subsys(&ping_v6_net_ops);
+ #endif
++      pingv6_ops = &dummy_pingv6_ops;
+       inet6_unregister_protosw(&pingv6_protosw);
+ }
+diff --git a/net/ipv6/proc.c b/net/ipv6/proc.c
+index 679253d0..d85dd97 100644
+--- a/net/ipv6/proc.c
++++ b/net/ipv6/proc.c
+@@ -151,7 +151,7 @@ static const struct snmp_mib snmp6_udplite6_list[] = {
+       SNMP_MIB_SENTINEL
+ };
+-static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, atomic_long_t *smib)
++static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, atomic_long_unchecked_t *smib)
+ {
+       char name[32];
+       int i;
+@@ -168,14 +168,14 @@ static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, atomic_long_t *smib)
+               snprintf(name, sizeof(name), "Icmp6%s%s",
+                       i & 0x100 ? "Out" : "In", p);
+               seq_printf(seq, "%-32s\t%lu\n", name,
+-                         atomic_long_read(smib + i));
++                         atomic_long_read_unchecked(smib + i));
+       }
+       /* print by number (nonzero only) - ICMPMsgStat format */
+       for (i = 0; i < ICMP6MSG_MIB_MAX; i++) {
+               unsigned long val;
+-              val = atomic_long_read(smib + i);
++              val = atomic_long_read_unchecked(smib + i);
+               if (!val)
+                       continue;
+               snprintf(name, sizeof(name), "Icmp6%sType%u",
+@@ -188,7 +188,7 @@ static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, atomic_long_t *smib)
+  * or shared one (smib != NULL)
+  */
+ static void snmp6_seq_show_item(struct seq_file *seq, void __percpu *pcpumib,
+-                              atomic_long_t *smib,
++                              atomic_long_unchecked_t *smib,
+                               const struct snmp_mib *itemlist)
+ {
+       int i;
+@@ -197,7 +197,7 @@ static void snmp6_seq_show_item(struct seq_file *seq, void __percpu *pcpumib,
+       for (i = 0; itemlist[i].name; i++) {
+               val = pcpumib ?
+                       snmp_fold_field(pcpumib, itemlist[i].entry) :
+-                      atomic_long_read(smib + itemlist[i].entry);
++                      atomic_long_read_unchecked(smib + itemlist[i].entry);
+               seq_printf(seq, "%-32s\t%lu\n", itemlist[i].name, val);
+       }
+ }
+@@ -310,7 +310,7 @@ static int __net_init ipv6_proc_init_net(struct net *net)
+       if (!proc_create("snmp6", S_IRUGO, net->proc_net, &snmp6_seq_fops))
+               goto proc_snmp6_fail;
+-      net->mib.proc_net_devsnmp6 = proc_mkdir("dev_snmp6", net->proc_net);
++      net->mib.proc_net_devsnmp6 = proc_mkdir_restrict("dev_snmp6", net->proc_net);
+       if (!net->mib.proc_net_devsnmp6)
+               goto proc_dev_snmp6_fail;
+       return 0;
+diff --git a/net/ipv6/raw.c b/net/ipv6/raw.c
+index 590dd1f..97e5bd1 100644
+--- a/net/ipv6/raw.c
++++ b/net/ipv6/raw.c
+@@ -389,7 +389,7 @@ static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
+ {
+       if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
+           skb_checksum_complete(skb)) {
+-              atomic_inc(&sk->sk_drops);
++              atomic_inc_unchecked(&sk->sk_drops);
+               kfree_skb(skb);
+               return NET_RX_DROP;
+       }
+@@ -417,7 +417,7 @@ int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
+       struct raw6_sock *rp = raw6_sk(sk);
+       if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
+-              atomic_inc(&sk->sk_drops);
++              atomic_inc_unchecked(&sk->sk_drops);
+               kfree_skb(skb);
+               return NET_RX_DROP;
+       }
+@@ -441,7 +441,7 @@ int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
+       if (inet->hdrincl) {
+               if (skb_checksum_complete(skb)) {
+-                      atomic_inc(&sk->sk_drops);
++                      atomic_inc_unchecked(&sk->sk_drops);
+                       kfree_skb(skb);
+                       return NET_RX_DROP;
+               }
+@@ -609,7 +609,7 @@ out:
+       return err;
+ }
+-static int rawv6_send_hdrinc(struct sock *sk, struct msghdr *msg, int length,
++static int rawv6_send_hdrinc(struct sock *sk, struct msghdr *msg, unsigned int length,
+                       struct flowi6 *fl6, struct dst_entry **dstp,
+                       unsigned int flags)
+ {
+@@ -930,12 +930,15 @@ do_confirm:
+ static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
+                              char __user *optval, int optlen)
+ {
++      struct icmp6_filter filter;
++
+       switch (optname) {
+       case ICMPV6_FILTER:
+               if (optlen > sizeof(struct icmp6_filter))
+                       optlen = sizeof(struct icmp6_filter);
+-              if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
++              if (copy_from_user(&filter, optval, optlen))
+                       return -EFAULT;
++              raw6_sk(sk)->filter = filter;
+               return 0;
+       default:
+               return -ENOPROTOOPT;
+@@ -948,6 +951,7 @@ static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
+                              char __user *optval, int __user *optlen)
+ {
+       int len;
++      struct icmp6_filter filter;
+       switch (optname) {
+       case ICMPV6_FILTER:
+@@ -959,7 +963,8 @@ static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
+                       len = sizeof(struct icmp6_filter);
+               if (put_user(len, optlen))
+                       return -EFAULT;
+-              if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
++              filter = raw6_sk(sk)->filter;
++              if (len > sizeof filter || copy_to_user(optval, &filter, len))
+                       return -EFAULT;
+               return 0;
+       default:
+diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c
+index 2160d5d..6816c42 100644
+--- a/net/ipv6/reassembly.c
++++ b/net/ipv6/reassembly.c
+@@ -628,12 +628,11 @@ static struct ctl_table ip6_frags_ctl_table[] = {
+ static int __net_init ip6_frags_ns_sysctl_register(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table = NULL;
+       struct ctl_table_header *hdr;
+-      table = ip6_frags_ns_ctl_table;
+       if (!net_eq(net, &init_net)) {
+-              table = kmemdup(table, sizeof(ip6_frags_ns_ctl_table), GFP_KERNEL);
++              table = kmemdup(ip6_frags_ns_ctl_table, sizeof(ip6_frags_ns_ctl_table), GFP_KERNEL);
+               if (!table)
+                       goto err_alloc;
+@@ -647,9 +646,10 @@ static int __net_init ip6_frags_ns_sysctl_register(struct net *net)
+               /* Don't export sysctls to unprivileged users */
+               if (net->user_ns != &init_user_ns)
+                       table[0].procname = NULL;
+-      }
++              hdr = register_net_sysctl(net, "net/ipv6", table);
++      } else
++              hdr = register_net_sysctl(net, "net/ipv6", ip6_frags_ns_ctl_table);
+-      hdr = register_net_sysctl(net, "net/ipv6", table);
+       if (!hdr)
+               goto err_reg;
+@@ -657,8 +657,7 @@ static int __net_init ip6_frags_ns_sysctl_register(struct net *net)
+       return 0;
+ err_reg:
+-      if (!net_eq(net, &init_net))
+-              kfree(table);
++      kfree(table);
+ err_alloc:
+       return -ENOMEM;
+ }
+diff --git a/net/ipv6/route.c b/net/ipv6/route.c
+index 269218a..3b9358f 100644
+--- a/net/ipv6/route.c
++++ b/net/ipv6/route.c
+@@ -3571,7 +3571,7 @@ struct ctl_table ipv6_route_table_template[] = {
+ struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       table = kmemdup(ipv6_route_table_template,
+                       sizeof(ipv6_route_table_template),
+diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
+index 182b6a9..4d37cba 100644
+--- a/net/ipv6/sit.c
++++ b/net/ipv6/sit.c
+@@ -74,7 +74,7 @@ static void ipip6_tunnel_setup(struct net_device *dev);
+ static void ipip6_dev_free(struct net_device *dev);
+ static bool check_6rd(struct ip_tunnel *tunnel, const struct in6_addr *v6dst,
+                     __be32 *v4dst);
+-static struct rtnl_link_ops sit_link_ops __read_mostly;
++static struct rtnl_link_ops sit_link_ops;
+ static int sit_net_id __read_mostly;
+ struct sit_net {
+@@ -1735,7 +1735,7 @@ static void ipip6_dellink(struct net_device *dev, struct list_head *head)
+               unregister_netdevice_queue(dev, head);
+ }
+-static struct rtnl_link_ops sit_link_ops __read_mostly = {
++static struct rtnl_link_ops sit_link_ops = {
+       .kind           = "sit",
+       .maxtype        = IFLA_IPTUN_MAX,
+       .policy         = ipip6_policy,
+diff --git a/net/ipv6/sysctl_net_ipv6.c b/net/ipv6/sysctl_net_ipv6.c
+index 69c50e7..ec875fa 100644
+--- a/net/ipv6/sysctl_net_ipv6.c
++++ b/net/ipv6/sysctl_net_ipv6.c
+@@ -130,7 +130,7 @@ static struct ctl_table ipv6_rotable[] = {
+ static int __net_init ipv6_sysctl_net_init(struct net *net)
+ {
+-      struct ctl_table *ipv6_table;
++      ctl_table_no_const *ipv6_table;
+       struct ctl_table *ipv6_route_table;
+       struct ctl_table *ipv6_icmp_table;
+       int err;
+diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
+index 94f4f89..74404a9 100644
+--- a/net/ipv6/tcp_ipv6.c
++++ b/net/ipv6/tcp_ipv6.c
+@@ -101,6 +101,10 @@ static void inet6_sk_rx_dst_set(struct sock *sk, const struct sk_buff *skb)
+       }
+ }
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++extern int grsec_enable_blackhole;
++#endif
++
+ static __u32 tcp_v6_init_sequence(const struct sk_buff *skb)
+ {
+       return secure_tcpv6_sequence_number(ipv6_hdr(skb)->daddr.s6_addr32,
+@@ -1289,6 +1293,9 @@ static int tcp_v6_do_rcv(struct sock *sk, struct sk_buff *skb)
+       return 0;
+ reset:
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++      if (!grsec_enable_blackhole)
++#endif
+       tcp_v6_send_reset(sk, skb);
+ discard:
+       if (opt_skb)
+@@ -1401,12 +1408,20 @@ lookup:
+       sk = __inet6_lookup_skb(&tcp_hashinfo, skb, __tcp_hdrlen(th),
+                               th->source, th->dest, inet6_iif(skb),
+                               &refcounted);
+-      if (!sk)
++      if (!sk) {
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++              ret = 1;
++#endif
+               goto no_tcp_socket;
++      }
+ process:
+-      if (sk->sk_state == TCP_TIME_WAIT)
++      if (sk->sk_state == TCP_TIME_WAIT) {
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++              ret = 2;
++#endif
+               goto do_time_wait;
++      }
+       if (sk->sk_state == TCP_NEW_SYN_RECV) {
+               struct request_sock *req = inet_reqsk(sk);
+@@ -1496,6 +1511,10 @@ csum_error:
+ bad_packet:
+               __TCP_INC_STATS(net, TCP_MIB_INERRS);
+       } else {
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++              if (!grsec_enable_blackhole || (ret == 1 &&
++                  (skb->dev->flags & IFF_LOOPBACK)))
++#endif
+               tcp_v6_send_reset(NULL, skb);
+       }
+diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
+index 19ac3a1..6b586db 100644
+--- a/net/ipv6/udp.c
++++ b/net/ipv6/udp.c
+@@ -78,6 +78,10 @@ static u32 udp6_ehashfn(const struct net *net,
+                              udp_ipv6_hash_secret + net_hash_mix(net));
+ }
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++extern int grsec_enable_blackhole;
++#endif
++
+ static u32 udp6_portaddr_hash(const struct net *net,
+                             const struct in6_addr *addr6,
+                             unsigned int port)
+@@ -380,7 +384,7 @@ try_again:
+       if (unlikely(err)) {
+               trace_kfree_skb(skb, udpv6_recvmsg);
+               if (!peeked) {
+-                      atomic_inc(&sk->sk_drops);
++                      atomic_inc_unchecked(&sk->sk_drops);
+                       if (is_udp4)
+                               UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
+                                             is_udplite);
+@@ -646,7 +650,7 @@ csum_error:
+       __UDP6_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
+ drop:
+       __UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
+-      atomic_inc(&sk->sk_drops);
++      atomic_inc_unchecked(&sk->sk_drops);
+       kfree_skb(skb);
+       return -1;
+ }
+@@ -727,7 +731,7 @@ start_lookup:
+               }
+               nskb = skb_clone(skb, GFP_ATOMIC);
+               if (unlikely(!nskb)) {
+-                      atomic_inc(&sk->sk_drops);
++                      atomic_inc_unchecked(&sk->sk_drops);
+                       __UDP6_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
+                                        IS_UDPLITE(sk));
+                       __UDP6_INC_STATS(net, UDP_MIB_INERRORS,
+@@ -845,6 +849,9 @@ int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
+               goto csum_error;
+       __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
++#ifdef CONFIG_GRKERNSEC_BLACKHOLE
++      if (!grsec_enable_blackhole || (skb->dev->flags & IFF_LOOPBACK))
++#endif
+       icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
+       kfree_skb(skb);
+diff --git a/net/ipv6/xfrm6_mode_beet.c b/net/ipv6/xfrm6_mode_beet.c
+index 1e205c3..d71b846 100644
+--- a/net/ipv6/xfrm6_mode_beet.c
++++ b/net/ipv6/xfrm6_mode_beet.c
+@@ -37,7 +37,7 @@ static void xfrm6_beet_make_header(struct sk_buff *skb)
+  *
+  * The top IP header will be constructed per draft-nikander-esp-beet-mode-06.txt.
+  */
+-static int xfrm6_beet_output(struct xfrm_state *x, struct sk_buff *skb)
++static int __intentional_overflow(0) xfrm6_beet_output(struct xfrm_state *x, struct sk_buff *skb)
+ {
+       struct ipv6hdr *top_iph;
+       struct ip_beet_phdr *ph;
+diff --git a/net/ipv6/xfrm6_mode_transport.c b/net/ipv6/xfrm6_mode_transport.c
+index 4e34410..232827a 100644
+--- a/net/ipv6/xfrm6_mode_transport.c
++++ b/net/ipv6/xfrm6_mode_transport.c
+@@ -19,7 +19,7 @@
+  * The IP header and mutable extension headers will be moved forward to make
+  * space for the encapsulation header.
+  */
+-static int xfrm6_transport_output(struct xfrm_state *x, struct sk_buff *skb)
++static int __intentional_overflow(0) xfrm6_transport_output(struct xfrm_state *x, struct sk_buff *skb)
+ {
+       struct ipv6hdr *iph;
+       u8 *prevhdr;
+diff --git a/net/ipv6/xfrm6_policy.c b/net/ipv6/xfrm6_policy.c
+index 70a86ad..19ab7b0 100644
+--- a/net/ipv6/xfrm6_policy.c
++++ b/net/ipv6/xfrm6_policy.c
+@@ -216,11 +216,11 @@ _decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
+       }
+ }
+-static inline int xfrm6_garbage_collect(struct dst_ops *ops)
++static int xfrm6_garbage_collect(struct dst_ops *ops)
+ {
+       struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops);
+-      xfrm6_policy_afinfo.garbage_collect(net);
++      xfrm_garbage_collect_deferred(net);
+       return dst_entries_get_fast(ops) > ops->gc_thresh * 2;
+ }
+@@ -327,19 +327,19 @@ static struct ctl_table xfrm6_policy_table[] = {
+ static int __net_init xfrm6_net_sysctl_init(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table = NULL;
+       struct ctl_table_header *hdr;
+-      table = xfrm6_policy_table;
+       if (!net_eq(net, &init_net)) {
+-              table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
++              table = kmemdup(xfrm6_policy_table, sizeof(xfrm6_policy_table), GFP_KERNEL);
+               if (!table)
+                       goto err_alloc;
+               table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
+-      }
++              hdr = register_net_sysctl(net, "net/ipv6", table);
++      } else
++              hdr = register_net_sysctl(net, "net/ipv6", xfrm6_policy_table);
+-      hdr = register_net_sysctl(net, "net/ipv6", table);
+       if (!hdr)
+               goto err_reg;
+@@ -347,8 +347,7 @@ static int __net_init xfrm6_net_sysctl_init(struct net *net)
+       return 0;
+ err_reg:
+-      if (!net_eq(net, &init_net))
+-              kfree(table);
++      kfree(table);
+ err_alloc:
+       return -ENOMEM;
+ }
+diff --git a/net/ipx/ipx_proc.c b/net/ipx/ipx_proc.c
+index c1d247e..9e5949d 100644
+--- a/net/ipx/ipx_proc.c
++++ b/net/ipx/ipx_proc.c
+@@ -289,7 +289,7 @@ int __init ipx_proc_init(void)
+       struct proc_dir_entry *p;
+       int rc = -ENOMEM;
+-      ipx_proc_dir = proc_mkdir("ipx", init_net.proc_net);
++      ipx_proc_dir = proc_mkdir_restrict("ipx", init_net.proc_net);
+       if (!ipx_proc_dir)
+               goto out;
+diff --git a/net/irda/discovery.c b/net/irda/discovery.c
+index 364d70a..c503f3f 100644
+--- a/net/irda/discovery.c
++++ b/net/irda/discovery.c
+@@ -136,7 +136,7 @@ void irlmp_add_discovery_log(hashbin_t *cachelog, hashbin_t *log)
+       }
+       /* Delete the now empty log */
+-      hashbin_delete(log, (FREE_FUNC) kfree);
++      hashbin_delete(log, irlmp_kfree);
+ }
+ /*
+diff --git a/net/irda/ircomm/ircomm_core.c b/net/irda/ircomm/ircomm_core.c
+index 3af2195..a38e804 100644
+--- a/net/irda/ircomm/ircomm_core.c
++++ b/net/irda/ircomm/ircomm_core.c
+@@ -46,7 +46,7 @@
+ #include <net/irda/ircomm_param.h>
+ #include <net/irda/ircomm_core.h>
+-static int __ircomm_close(struct ircomm_cb *self);
++static void __ircomm_close(void *_self);
+ static void ircomm_control_indication(struct ircomm_cb *self,
+                                     struct sk_buff *skb, int clen);
+@@ -91,7 +91,7 @@ static int __init ircomm_init(void)
+ static void __exit ircomm_cleanup(void)
+ {
+-      hashbin_delete(ircomm, (FREE_FUNC) __ircomm_close);
++      hashbin_delete(ircomm, __ircomm_close);
+ #ifdef CONFIG_PROC_FS
+       remove_proc_entry("ircomm", proc_irda);
+@@ -151,8 +151,10 @@ EXPORT_SYMBOL(ircomm_open);
+  *    Remove IrCOMM instance
+  *
+  */
+-static int __ircomm_close(struct ircomm_cb *self)
++static void __ircomm_close(void *_self)
+ {
++      struct ircomm_cb *self = _self;
++
+       /* Disconnect link if any */
+       ircomm_do_event(self, IRCOMM_DISCONNECT_REQUEST, NULL, NULL);
+@@ -170,8 +172,6 @@ static int __ircomm_close(struct ircomm_cb *self)
+       self->magic = 0;
+       kfree(self);
+-
+-      return 0;
+ }
+ /*
+@@ -191,7 +191,8 @@ int ircomm_close(struct ircomm_cb *self)
+       IRDA_ASSERT(entry == self, return -1;);
+-      return __ircomm_close(self);
++      __ircomm_close(self);
++      return 0;
+ }
+ EXPORT_SYMBOL(ircomm_close);
+diff --git a/net/irda/ircomm/ircomm_tty.c b/net/irda/ircomm/ircomm_tty.c
+index 873c4b7..6d3624f 100644
+--- a/net/irda/ircomm/ircomm_tty.c
++++ b/net/irda/ircomm/ircomm_tty.c
+@@ -172,8 +172,10 @@ static int __init ircomm_tty_init(void)
+       return 0;
+ }
+-static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self)
++static void __exit __ircomm_tty_cleanup(void *_self)
+ {
++      struct ircomm_tty_cb *self = _self;
++
+       IRDA_ASSERT(self != NULL, return;);
+       IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
+@@ -201,7 +203,7 @@ static void __exit ircomm_tty_cleanup(void)
+               return;
+       }
+-      hashbin_delete(ircomm_tty, (FREE_FUNC) __ircomm_tty_cleanup);
++      hashbin_delete(ircomm_tty, __ircomm_tty_cleanup);
+       put_tty_driver(driver);
+ }
+@@ -311,10 +313,10 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
+       add_wait_queue(&port->open_wait, &wait);
+       pr_debug("%s(%d):block_til_ready before block on %s open_count=%d\n",
+-               __FILE__, __LINE__, tty->driver->name, port->count);
++               __FILE__, __LINE__, tty->driver->name, atomic_read(&port->count));
+       spin_lock_irqsave(&port->lock, flags);
+-      port->count--;
++      atomic_dec(&port->count);
+       port->blocked_open++;
+       spin_unlock_irqrestore(&port->lock, flags);
+@@ -347,7 +349,7 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
+               }
+               pr_debug("%s(%d):block_til_ready blocking on %s open_count=%d\n",
+-                       __FILE__, __LINE__, tty->driver->name, port->count);
++                       __FILE__, __LINE__, tty->driver->name, atomic_read(&port->count));
+               schedule();
+       }
+@@ -357,12 +359,12 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
+       spin_lock_irqsave(&port->lock, flags);
+       if (!tty_hung_up_p(filp))
+-              port->count++;
++              atomic_inc(&port->count);
+       port->blocked_open--;
+       spin_unlock_irqrestore(&port->lock, flags);
+       pr_debug("%s(%d):block_til_ready after blocking on %s open_count=%d\n",
+-               __FILE__, __LINE__, tty->driver->name, port->count);
++               __FILE__, __LINE__, tty->driver->name, atomic_read(&port->count));
+       if (!retval)
+               tty_port_set_active(port, 1);
+@@ -432,12 +434,12 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
+       /* ++ is not atomic, so this should be protected - Jean II */
+       spin_lock_irqsave(&self->port.lock, flags);
+-      self->port.count++;
++      atomic_inc(&self->port.count);
+       spin_unlock_irqrestore(&self->port.lock, flags);
+       tty_port_tty_set(&self->port, tty);
+       pr_debug("%s(), %s%d, count = %d\n", __func__ , tty->driver->name,
+-               self->line, self->port.count);
++               self->line, atomic_read(&self->port.count));
+       /* Not really used by us, but lets do it anyway */
+       self->port.low_latency = (self->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
+@@ -931,7 +933,7 @@ static void ircomm_tty_hangup(struct tty_struct *tty)
+               tty_kref_put(port->tty);
+       }
+       port->tty = NULL;
+-      port->count = 0;
++      atomic_set(&port->count, 0);
+       spin_unlock_irqrestore(&port->lock, flags);
+       tty_port_set_active(port, 0);
+@@ -1275,7 +1277,7 @@ static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m)
+       seq_putc(m, '\n');
+       seq_printf(m, "Role: %s\n", self->client ? "client" : "server");
+-      seq_printf(m, "Open count: %d\n", self->port.count);
++      seq_printf(m, "Open count: %d\n", atomic_read(&self->port.count));
+       seq_printf(m, "Max data size: %d\n", self->max_data_size);
+       seq_printf(m, "Max header size: %d\n", self->max_header_size);
+diff --git a/net/irda/ircomm/ircomm_tty_attach.c b/net/irda/ircomm/ircomm_tty_attach.c
+index 0a41101..e811c2e 100644
+--- a/net/irda/ircomm/ircomm_tty_attach.c
++++ b/net/irda/ircomm/ircomm_tty_attach.c
+@@ -52,7 +52,7 @@ static void ircomm_tty_getvalue_confirm(int result, __u16 obj_id,
+                                       struct ias_value *value, void *priv);
+ static void ircomm_tty_start_watchdog_timer(struct ircomm_tty_cb *self,
+                                           int timeout);
+-static void ircomm_tty_watchdog_timer_expired(void *data);
++static void ircomm_tty_watchdog_timer_expired(unsigned long data);
+ static int ircomm_tty_state_idle(struct ircomm_tty_cb *self,
+                                IRCOMM_TTY_EVENT event,
+@@ -597,7 +597,7 @@ static void ircomm_tty_start_watchdog_timer(struct ircomm_tty_cb *self,
+  *    Called when the connect procedure have taken to much time.
+  *
+  */
+-static void ircomm_tty_watchdog_timer_expired(void *data)
++static void ircomm_tty_watchdog_timer_expired(unsigned long data)
+ {
+       struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) data;
+diff --git a/net/irda/irda_device.c b/net/irda/irda_device.c
+index 8567366..7c8aa51 100644
+--- a/net/irda/irda_device.c
++++ b/net/irda/irda_device.c
+@@ -52,12 +52,12 @@
+ #include <net/irda/timer.h>
+ #include <net/irda/wrapper.h>
+-static void __irda_task_delete(struct irda_task *task);
++static void __irda_task_delete(void *_task);
+ static hashbin_t *dongles = NULL;
+ static hashbin_t *tasks = NULL;
+-static void irda_task_timer_expired(void *data);
++static void irda_task_timer_expired(unsigned long data);
+ int __init irda_device_init( void)
+ {
+@@ -90,7 +90,7 @@ static void leftover_dongle(void *arg)
+ void irda_device_cleanup(void)
+ {
+-      hashbin_delete(tasks, (FREE_FUNC) __irda_task_delete);
++      hashbin_delete(tasks, __irda_task_delete);
+       hashbin_delete(dongles, leftover_dongle);
+ }
+@@ -159,8 +159,10 @@ int irda_device_is_receiving(struct net_device *dev)
+       return req.ifr_receiving;
+ }
+-static void __irda_task_delete(struct irda_task *task)
++static void __irda_task_delete(void *_task)
+ {
++      struct irda_task *task = _task;
++
+       del_timer(&task->timer);
+       kfree(task);
+@@ -249,11 +251,11 @@ static int irda_task_kick(struct irda_task *task)
+  *    Task time has expired. We now try to execute task (again), and restart
+  *    the timer if the task has not finished yet
+  */
+-static void irda_task_timer_expired(void *data)
++static void irda_task_timer_expired(unsigned long data)
+ {
+       struct irda_task *task;
+-      task = data;
++      task = (struct irda_task *)data;
+       irda_task_kick(task);
+ }
+diff --git a/net/irda/iriap.c b/net/irda/iriap.c
+index 1138eaf..cb1900c 100644
+--- a/net/irda/iriap.c
++++ b/net/irda/iriap.c
+@@ -61,7 +61,7 @@ static const char *const ias_charset_types[] __maybe_unused = {
+ static hashbin_t *iriap = NULL;
+ static void *service_handle;
+-static void __iriap_close(struct iriap_cb *self);
++static void __iriap_close(void *_self);
+ static int iriap_register_lsap(struct iriap_cb *self, __u8 slsap_sel, int mode);
+ static void iriap_disconnect_indication(void *instance, void *sap,
+                                       LM_REASON reason, struct sk_buff *skb);
+@@ -76,7 +76,7 @@ static void iriap_connect_confirm(void *instance, void *sap,
+ static int iriap_data_indication(void *instance, void *sap,
+                                struct sk_buff *skb);
+-static void iriap_watchdog_timer_expired(void *data);
++static void iriap_watchdog_timer_expired(unsigned long data);
+ static inline void iriap_start_watchdog_timer(struct iriap_cb *self,
+                                             int timeout)
+@@ -161,8 +161,8 @@ void iriap_cleanup(void)
+ {
+       irlmp_unregister_service(service_handle);
+-      hashbin_delete(iriap, (FREE_FUNC) __iriap_close);
+-      hashbin_delete(irias_objects, (FREE_FUNC) __irias_delete_object);
++      hashbin_delete(iriap, __iriap_close);
++      hashbin_delete(irias_objects, __irias_delete_object);
+ }
+ /*
+@@ -219,8 +219,10 @@ EXPORT_SYMBOL(iriap_open);
+  *    Removes (deallocates) the IrIAP instance
+  *
+  */
+-static void __iriap_close(struct iriap_cb *self)
++static void __iriap_close(void *_self)
+ {
++      struct iriap_cb *self = _self;
++
+       IRDA_ASSERT(self != NULL, return;);
+       IRDA_ASSERT(self->magic == IAS_MAGIC, return;);
+@@ -946,7 +948,7 @@ void iriap_call_indication(struct iriap_cb *self, struct sk_buff *skb)
+  *    Query has taken too long time, so abort
+  *
+  */
+-static void iriap_watchdog_timer_expired(void *data)
++static void iriap_watchdog_timer_expired(unsigned long data)
+ {
+       struct iriap_cb *self = (struct iriap_cb *) data;
+diff --git a/net/irda/irias_object.c b/net/irda/irias_object.c
+index 53b86d0..5b884f3 100644
+--- a/net/irda/irias_object.c
++++ b/net/irda/irias_object.c
+@@ -88,8 +88,10 @@ EXPORT_SYMBOL(irias_new_object);
+  *    Delete given attribute and deallocate all its memory
+  *
+  */
+-static void __irias_delete_attrib(struct ias_attrib *attrib)
++static void __irias_delete_attrib(void *_attrib)
+ {
++      struct ias_attrib *attrib = _attrib;
++
+       IRDA_ASSERT(attrib != NULL, return;);
+       IRDA_ASSERT(attrib->magic == IAS_ATTRIB_MAGIC, return;);
+@@ -101,14 +103,16 @@ static void __irias_delete_attrib(struct ias_attrib *attrib)
+       kfree(attrib);
+ }
+-void __irias_delete_object(struct ias_object *obj)
++void __irias_delete_object(void *_obj)
+ {
++      struct ias_object *obj = _obj;
++
+       IRDA_ASSERT(obj != NULL, return;);
+       IRDA_ASSERT(obj->magic == IAS_OBJECT_MAGIC, return;);
+       kfree(obj->name);
+-      hashbin_delete(obj->attribs, (FREE_FUNC) __irias_delete_attrib);
++      hashbin_delete(obj->attribs, __irias_delete_attrib);
+       obj->magic = ~IAS_OBJECT_MAGIC;
+diff --git a/net/irda/irlan/irlan_client.c b/net/irda/irlan/irlan_client.c
+index c5837a4..518b358 100644
+--- a/net/irda/irlan/irlan_client.c
++++ b/net/irda/irlan/irlan_client.c
+@@ -68,7 +68,7 @@ static void irlan_check_response_param(struct irlan_cb *self, char *param,
+                                      char *value, int val_len);
+ static void irlan_client_open_ctrl_tsap(struct irlan_cb *self);
+-static void irlan_client_kick_timer_expired(void *data)
++static void irlan_client_kick_timer_expired(unsigned long data)
+ {
+       struct irlan_cb *self = (struct irlan_cb *) data;
+diff --git a/net/irda/irlap.c b/net/irda/irlap.c
+index 1cde711..d05a5fb 100644
+--- a/net/irda/irlap.c
++++ b/net/irda/irlap.c
+@@ -56,7 +56,7 @@ int sysctl_slot_timeout = SLOT_TIMEOUT * 1000 / HZ;
+ int sysctl_warn_noreply_time = 3;
+ extern void irlap_queue_xmit(struct irlap_cb *self, struct sk_buff *skb);
+-static void __irlap_close(struct irlap_cb *self);
++static void __irlap_close(void *_self);
+ static void irlap_init_qos_capabilities(struct irlap_cb *self,
+                                       struct qos_info *qos_user);
+@@ -95,7 +95,7 @@ void irlap_cleanup(void)
+ {
+       IRDA_ASSERT(irlap != NULL, return;);
+-      hashbin_delete(irlap, (FREE_FUNC) __irlap_close);
++      hashbin_delete(irlap, __irlap_close);
+ }
+ /*
+@@ -177,8 +177,10 @@ EXPORT_SYMBOL(irlap_open);
+  *    Remove IrLAP and all allocated memory. Stop any pending timers.
+  *
+  */
+-static void __irlap_close(struct irlap_cb *self)
++static void __irlap_close(void *_self)
+ {
++      struct irlap_cb *self = _self;
++
+       IRDA_ASSERT(self != NULL, return;);
+       IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
+@@ -482,6 +484,11 @@ void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason)
+  *    Start one single discovery operation.
+  *
+  */
++static void irlap_kfree(void *arg)
++{
++      kfree(arg);
++}
++
+ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery)
+ {
+       struct irlap_info info;
+@@ -513,7 +520,7 @@ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery)
+       /* Check if last discovery request finished in time, or if
+        * it was aborted due to the media busy flag. */
+       if (self->discovery_log != NULL) {
+-              hashbin_delete(self->discovery_log, (FREE_FUNC) kfree);
++              hashbin_delete(self->discovery_log, irlap_kfree);
+               self->discovery_log = NULL;
+       }
+diff --git a/net/irda/irlap_event.c b/net/irda/irlap_event.c
+index 0e1b4d7..7e39b12 100644
+--- a/net/irda/irlap_event.c
++++ b/net/irda/irlap_event.c
+@@ -163,7 +163,7 @@ static int (*state[])(struct irlap_cb *self, IRLAP_EVENT event,
+  *    Poll timer has expired. Normally we must now send a RR frame to the
+  *    remote device
+  */
+-static void irlap_poll_timer_expired(void *data)
++static void irlap_poll_timer_expired(unsigned long data)
+ {
+       struct irlap_cb *self = (struct irlap_cb *) data;
+diff --git a/net/irda/irlmp.c b/net/irda/irlmp.c
+index 4396459..cbf44c2 100644
+--- a/net/irda/irlmp.c
++++ b/net/irda/irlmp.c
+@@ -125,6 +125,11 @@ int __init irlmp_init(void)
+  *    Remove IrLMP layer
+  *
+  */
++void irlmp_kfree(void *arg)
++{
++      kfree(arg);
++}
++
+ void irlmp_cleanup(void)
+ {
+       /* Check for main structure */
+@@ -133,11 +138,11 @@ void irlmp_cleanup(void)
+       del_timer(&irlmp->discovery_timer);
+-      hashbin_delete(irlmp->links, (FREE_FUNC) kfree);
+-      hashbin_delete(irlmp->unconnected_lsaps, (FREE_FUNC) kfree);
+-      hashbin_delete(irlmp->clients, (FREE_FUNC) kfree);
+-      hashbin_delete(irlmp->services, (FREE_FUNC) kfree);
+-      hashbin_delete(irlmp->cachelog, (FREE_FUNC) kfree);
++      hashbin_delete(irlmp->links, irlmp_kfree);
++      hashbin_delete(irlmp->unconnected_lsaps, irlmp_kfree);
++      hashbin_delete(irlmp->clients, irlmp_kfree);
++      hashbin_delete(irlmp->services, irlmp_kfree);
++      hashbin_delete(irlmp->cachelog, irlmp_kfree);
+       /* De-allocate main structure */
+       kfree(irlmp);
+@@ -204,8 +209,10 @@ EXPORT_SYMBOL(irlmp_open_lsap);
+  *
+  *    Remove an instance of LSAP
+  */
+-static void __irlmp_close_lsap(struct lsap_cb *self)
++static void __irlmp_close_lsap(void *_self)
+ {
++      struct lsap_cb *self = _self;
++
+       IRDA_ASSERT(self != NULL, return;);
+       IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return;);
+@@ -354,7 +361,7 @@ void irlmp_unregister_link(__u32 saddr)
+               /* Final cleanup */
+               del_timer(&link->idle_timer);
+               link->magic = 0;
+-              hashbin_delete(link->lsaps, (FREE_FUNC) __irlmp_close_lsap);
++              hashbin_delete(link->lsaps, __irlmp_close_lsap);
+               kfree(link);
+       }
+ }
+diff --git a/net/irda/irlmp_event.c b/net/irda/irlmp_event.c
+index e306cf2..e6e0e90 100644
+--- a/net/irda/irlmp_event.c
++++ b/net/irda/irlmp_event.c
+@@ -165,7 +165,7 @@ void irlmp_do_lap_event(struct lap_cb *self, IRLMP_EVENT event,
+       (*lap_state[self->lap_state]) (self, event, skb);
+ }
+-void irlmp_discovery_timer_expired(void *data)
++void irlmp_discovery_timer_expired(unsigned long data)
+ {
+       /* We always cleanup the log (active & passive discovery) */
+       irlmp_do_expiry();
+@@ -176,7 +176,7 @@ void irlmp_discovery_timer_expired(void *data)
+       irlmp_start_discovery_timer(irlmp, sysctl_discovery_timeout * HZ);
+ }
+-void irlmp_watchdog_timer_expired(void *data)
++void irlmp_watchdog_timer_expired(unsigned long data)
+ {
+       struct lsap_cb *self = (struct lsap_cb *) data;
+@@ -186,7 +186,7 @@ void irlmp_watchdog_timer_expired(void *data)
+       irlmp_do_lsap_event(self, LM_WATCHDOG_TIMEOUT, NULL);
+ }
+-void irlmp_idle_timer_expired(void *data)
++void irlmp_idle_timer_expired(unsigned long data)
+ {
+       struct lap_cb *self = (struct lap_cb *) data;
+diff --git a/net/irda/irnet/irnet.h b/net/irda/irnet/irnet.h
+index 8d65bb9..677364b 100644
+--- a/net/irda/irnet/irnet.h
++++ b/net/irda/irnet/irnet.h
+@@ -511,7 +511,7 @@ typedef struct irnet_ctrl_channel
+ /* -------------------------- IRDA PART -------------------------- */
+ int irda_irnet_create(irnet_socket *);        /* Initialise an IrNET socket */
+ int irda_irnet_connect(irnet_socket *);       /* Try to connect over IrDA */
+-void irda_irnet_destroy(irnet_socket *);      /* Teardown an IrNET socket */
++void irda_irnet_destroy(void *);      /* Teardown an IrNET socket */
+ int irda_irnet_init(void);            /* Initialise IrDA part of IrNET */
+ void irda_irnet_cleanup(void);                /* Teardown IrDA part of IrNET */
+diff --git a/net/irda/irnet/irnet_irda.c b/net/irda/irnet/irnet_irda.c
+index 7f17a80..98575e1 100644
+--- a/net/irda/irnet/irnet_irda.c
++++ b/net/irda/irnet/irnet_irda.c
+@@ -613,8 +613,10 @@ irda_irnet_connect(irnet_socket * self)
+  * Note : this need to be called from a process context.
+  */
+ void
+-irda_irnet_destroy(irnet_socket *     self)
++irda_irnet_destroy(void *_self)
+ {
++  irnet_socket *self = _self;
++
+   DENTER(IRDA_SOCK_TRACE, "(self=0x%p)\n", self);
+   if(self == NULL)
+     return;
+@@ -1879,7 +1881,7 @@ irda_irnet_cleanup(void)
+   irnet_destroy_server();
+   /* Remove all instances of IrNET socket still present */
+-  hashbin_delete(irnet_server.list, (FREE_FUNC) irda_irnet_destroy);
++  hashbin_delete(irnet_server.list, irda_irnet_destroy);
+   DEXIT(MODULE_TRACE, "\n");
+ }
+diff --git a/net/irda/irproc.c b/net/irda/irproc.c
+index b9ac598..f88cc56 100644
+--- a/net/irda/irproc.c
++++ b/net/irda/irproc.c
+@@ -66,7 +66,7 @@ void __init irda_proc_register(void)
+ {
+       int i;
+-      proc_irda = proc_mkdir("irda", init_net.proc_net);
++      proc_irda = proc_mkdir_restrict("irda", init_net.proc_net);
+       if (proc_irda == NULL)
+               return;
+diff --git a/net/irda/irttp.c b/net/irda/irttp.c
+index b6ab41d..e2263ce 100644
+--- a/net/irda/irttp.c
++++ b/net/irda/irttp.c
+@@ -42,7 +42,7 @@
+ static struct irttp_cb *irttp;
+-static void __irttp_close_tsap(struct tsap_cb *self);
++static void __irttp_close_tsap(void *_self);
+ static int irttp_data_indication(void *instance, void *sap,
+                                struct sk_buff *skb);
+@@ -121,7 +121,7 @@ void irttp_cleanup(void)
+       /*
+        *  Delete hashbin and close all TSAP instances in it
+        */
+-      hashbin_delete(irttp->tsaps, (FREE_FUNC) __irttp_close_tsap);
++      hashbin_delete(irttp->tsaps, __irttp_close_tsap);
+       irttp->magic = 0;
+@@ -469,8 +469,10 @@ EXPORT_SYMBOL(irttp_open_tsap);
+  *    deallocation of the TSAP, and resetting of the TSAPs values;
+  *
+  */
+-static void __irttp_close_tsap(struct tsap_cb *self)
++static void __irttp_close_tsap(void *_self)
+ {
++      struct tsap_cb *self = _self;
++
+       /* First make sure we're connected. */
+       IRDA_ASSERT(self != NULL, return;);
+       IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return;);
+diff --git a/net/irda/timer.c b/net/irda/timer.c
+index f2280f7..c0a006f 100644
+--- a/net/irda/timer.c
++++ b/net/irda/timer.c
+@@ -34,12 +34,12 @@
+ extern int  sysctl_slot_timeout;
+-static void irlap_slot_timer_expired(void* data);
+-static void irlap_query_timer_expired(void* data);
+-static void irlap_final_timer_expired(void* data);
+-static void irlap_wd_timer_expired(void* data);
+-static void irlap_backoff_timer_expired(void* data);
+-static void irlap_media_busy_expired(void* data);
++static void irlap_slot_timer_expired(unsigned long data);
++static void irlap_query_timer_expired(unsigned long data);
++static void irlap_final_timer_expired(unsigned long data);
++static void irlap_wd_timer_expired(unsigned long data);
++static void irlap_backoff_timer_expired(unsigned long data);
++static void irlap_media_busy_expired(unsigned long data);
+ void irlap_start_slot_timer(struct irlap_cb *self, int timeout)
+ {
+@@ -138,7 +138,7 @@ void irlmp_stop_idle_timer(struct lap_cb *self)
+  *    IrLAP slot timer has expired
+  *
+  */
+-static void irlap_slot_timer_expired(void *data)
++static void irlap_slot_timer_expired(unsigned long data)
+ {
+       struct irlap_cb *self = (struct irlap_cb *) data;
+@@ -154,7 +154,7 @@ static void irlap_slot_timer_expired(void *data)
+  *    IrLAP query timer has expired
+  *
+  */
+-static void irlap_query_timer_expired(void *data)
++static void irlap_query_timer_expired(unsigned long data)
+ {
+       struct irlap_cb *self = (struct irlap_cb *) data;
+@@ -170,7 +170,7 @@ static void irlap_query_timer_expired(void *data)
+  *
+  *
+  */
+-static void irlap_final_timer_expired(void *data)
++static void irlap_final_timer_expired(unsigned long data)
+ {
+       struct irlap_cb *self = (struct irlap_cb *) data;
+@@ -186,7 +186,7 @@ static void irlap_final_timer_expired(void *data)
+  *
+  *
+  */
+-static void irlap_wd_timer_expired(void *data)
++static void irlap_wd_timer_expired(unsigned long data)
+ {
+       struct irlap_cb *self = (struct irlap_cb *) data;
+@@ -202,7 +202,7 @@ static void irlap_wd_timer_expired(void *data)
+  *
+  *
+  */
+-static void irlap_backoff_timer_expired(void *data)
++static void irlap_backoff_timer_expired(unsigned long data)
+ {
+       struct irlap_cb *self = (struct irlap_cb *) data;
+@@ -218,7 +218,7 @@ static void irlap_backoff_timer_expired(void *data)
+  *
+  *
+  */
+-static void irlap_media_busy_expired(void *data)
++static void irlap_media_busy_expired(unsigned long data)
+ {
+       struct irlap_cb *self = (struct irlap_cb *) data;
+diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c
+index 02b45a8..1c09f92 100644
+--- a/net/iucv/af_iucv.c
++++ b/net/iucv/af_iucv.c
+@@ -688,10 +688,10 @@ static void __iucv_auto_name(struct iucv_sock *iucv)
+ {
+       char name[12];
+-      sprintf(name, "%08x", atomic_inc_return(&iucv_sk_list.autobind_name));
++      sprintf(name, "%08x", atomic_inc_return_unchecked(&iucv_sk_list.autobind_name));
+       while (__iucv_get_sock_by_name(name)) {
+               sprintf(name, "%08x",
+-                      atomic_inc_return(&iucv_sk_list.autobind_name));
++                      atomic_inc_return_unchecked(&iucv_sk_list.autobind_name));
+       }
+       memcpy(iucv->src_name, name, 8);
+ }
+@@ -1350,7 +1350,7 @@ static int iucv_sock_recvmsg(struct socket *sock, struct msghdr *msg,
+       unsigned int copied, rlen;
+       struct sk_buff *skb, *rskb, *cskb;
+       int err = 0;
+-      u32 offset;
++      u32 offset, class;
+       if ((sk->sk_state == IUCV_DISCONN) &&
+           skb_queue_empty(&iucv->backlog_skb_q) &&
+@@ -1394,9 +1394,8 @@ static int iucv_sock_recvmsg(struct socket *sock, struct msghdr *msg,
+       /* create control message to store iucv msg target class:
+        * get the trgcls from the control buffer of the skb due to
+        * fragmentation of original iucv message. */
+-      err = put_cmsg(msg, SOL_IUCV, SCM_IUCV_TRGCLS,
+-                     sizeof(IUCV_SKB_CB(skb)->class),
+-                     (void *)&IUCV_SKB_CB(skb)->class);
++      class = IUCV_SKB_CB(skb)->class;
++      err = put_cmsg(msg, SOL_IUCV, SCM_IUCV_TRGCLS, sizeof(class), &class);
+       if (err) {
+               if (!(flags & MSG_PEEK))
+                       skb_queue_head(&sk->sk_receive_queue, skb);
+diff --git a/net/iucv/iucv.c b/net/iucv/iucv.c
+index 88a2a3b..db2037a 100644
+--- a/net/iucv/iucv.c
++++ b/net/iucv/iucv.c
+@@ -720,7 +720,7 @@ static int iucv_cpu_notify(struct notifier_block *self,
+       return NOTIFY_OK;
+ }
+-static struct notifier_block __refdata iucv_cpu_notifier = {
++static struct notifier_block iucv_cpu_notifier = {
+       .notifier_call = iucv_cpu_notify,
+ };
+diff --git a/net/key/af_key.c b/net/key/af_key.c
+index f9c9ecb..060751e 100644
+--- a/net/key/af_key.c
++++ b/net/key/af_key.c
+@@ -3050,10 +3050,10 @@ static int pfkey_send_policy_notify(struct xfrm_policy *xp, int dir, const struc
+ static u32 get_acqseq(void)
+ {
+       u32 res;
+-      static atomic_t acqseq;
++      static atomic_unchecked_t acqseq;
+       do {
+-              res = atomic_inc_return(&acqseq);
++              res = atomic_inc_return_unchecked(&acqseq);
+       } while (!res);
+       return res;
+ }
+diff --git a/net/l2tp/l2tp_eth.c b/net/l2tp/l2tp_eth.c
+index 57fc5a4..310e75b 100644
+--- a/net/l2tp/l2tp_eth.c
++++ b/net/l2tp/l2tp_eth.c
+@@ -42,12 +42,12 @@ struct l2tp_eth {
+       struct sock             *tunnel_sock;
+       struct l2tp_session     *session;
+       struct list_head        list;
+-      atomic_long_t           tx_bytes;
+-      atomic_long_t           tx_packets;
+-      atomic_long_t           tx_dropped;
+-      atomic_long_t           rx_bytes;
+-      atomic_long_t           rx_packets;
+-      atomic_long_t           rx_errors;
++      atomic_long_unchecked_t tx_bytes;
++      atomic_long_unchecked_t tx_packets;
++      atomic_long_unchecked_t tx_dropped;
++      atomic_long_unchecked_t rx_bytes;
++      atomic_long_unchecked_t rx_packets;
++      atomic_long_unchecked_t rx_errors;
+ };
+ /* via l2tp_session_priv() */
+@@ -90,7 +90,7 @@ static void l2tp_eth_dev_uninit(struct net_device *dev)
+       dev_put(dev);
+ }
+-static int l2tp_eth_dev_xmit(struct sk_buff *skb, struct net_device *dev)
++static netdev_tx_t l2tp_eth_dev_xmit(struct sk_buff *skb, struct net_device *dev)
+ {
+       struct l2tp_eth *priv = netdev_priv(dev);
+       struct l2tp_session *session = priv->session;
+@@ -98,10 +98,10 @@ static int l2tp_eth_dev_xmit(struct sk_buff *skb, struct net_device *dev)
+       int ret = l2tp_xmit_skb(session, skb, session->hdr_len);
+       if (likely(ret == NET_XMIT_SUCCESS)) {
+-              atomic_long_add(len, &priv->tx_bytes);
+-              atomic_long_inc(&priv->tx_packets);
++              atomic_long_add_unchecked(len, &priv->tx_bytes);
++              atomic_long_inc_unchecked(&priv->tx_packets);
+       } else {
+-              atomic_long_inc(&priv->tx_dropped);
++              atomic_long_inc_unchecked(&priv->tx_dropped);
+       }
+       return NETDEV_TX_OK;
+ }
+@@ -111,12 +111,12 @@ static struct rtnl_link_stats64 *l2tp_eth_get_stats64(struct net_device *dev,
+ {
+       struct l2tp_eth *priv = netdev_priv(dev);
+-      stats->tx_bytes   = atomic_long_read(&priv->tx_bytes);
+-      stats->tx_packets = atomic_long_read(&priv->tx_packets);
+-      stats->tx_dropped = atomic_long_read(&priv->tx_dropped);
+-      stats->rx_bytes   = atomic_long_read(&priv->rx_bytes);
+-      stats->rx_packets = atomic_long_read(&priv->rx_packets);
+-      stats->rx_errors  = atomic_long_read(&priv->rx_errors);
++      stats->tx_bytes   = atomic_long_read_unchecked(&priv->tx_bytes);
++      stats->tx_packets = atomic_long_read_unchecked(&priv->tx_packets);
++      stats->tx_dropped = atomic_long_read_unchecked(&priv->tx_dropped);
++      stats->rx_bytes   = atomic_long_read_unchecked(&priv->rx_bytes);
++      stats->rx_packets = atomic_long_read_unchecked(&priv->rx_packets);
++      stats->rx_errors  = atomic_long_read_unchecked(&priv->rx_errors);
+       return stats;
+ }
+@@ -167,15 +167,15 @@ static void l2tp_eth_dev_recv(struct l2tp_session *session, struct sk_buff *skb,
+       nf_reset(skb);
+       if (dev_forward_skb(dev, skb) == NET_RX_SUCCESS) {
+-              atomic_long_inc(&priv->rx_packets);
+-              atomic_long_add(data_len, &priv->rx_bytes);
++              atomic_long_inc_unchecked(&priv->rx_packets);
++              atomic_long_add_unchecked(data_len, &priv->rx_bytes);
+       } else {
+-              atomic_long_inc(&priv->rx_errors);
++              atomic_long_inc_unchecked(&priv->rx_errors);
+       }
+       return;
+ error:
+-      atomic_long_inc(&priv->rx_errors);
++      atomic_long_inc_unchecked(&priv->rx_errors);
+       kfree_skb(skb);
+ }
+diff --git a/net/l2tp/l2tp_ip.c b/net/l2tp/l2tp_ip.c
+index 42de4cc..f00aa3e 100644
+--- a/net/l2tp/l2tp_ip.c
++++ b/net/l2tp/l2tp_ip.c
+@@ -610,7 +610,7 @@ static struct inet_protosw l2tp_ip_protosw = {
+       .ops            = &l2tp_ip_ops,
+ };
+-static struct net_protocol l2tp_ip_protocol __read_mostly = {
++static const struct net_protocol l2tp_ip_protocol = {
+       .handler        = l2tp_ip_recv,
+       .netns_ok       = 1,
+ };
+diff --git a/net/l2tp/l2tp_ip6.c b/net/l2tp/l2tp_ip6.c
+index ea2ae66..0ef42f0 100644
+--- a/net/l2tp/l2tp_ip6.c
++++ b/net/l2tp/l2tp_ip6.c
+@@ -771,7 +771,7 @@ static struct inet_protosw l2tp_ip6_protosw = {
+       .ops            = &l2tp_ip6_ops,
+ };
+-static struct inet6_protocol l2tp_ip6_protocol __read_mostly = {
++static const struct inet6_protocol l2tp_ip6_protocol = {
+       .handler        = l2tp_ip6_recv,
+ };
+diff --git a/net/llc/llc_proc.c b/net/llc/llc_proc.c
+index 29c509c..c19322a 100644
+--- a/net/llc/llc_proc.c
++++ b/net/llc/llc_proc.c
+@@ -247,7 +247,7 @@ int __init llc_proc_init(void)
+       int rc = -ENOMEM;
+       struct proc_dir_entry *p;
+-      llc_proc_dir = proc_mkdir("llc", init_net.proc_net);
++      llc_proc_dir = proc_mkdir_restrict("llc", init_net.proc_net);
+       if (!llc_proc_dir)
+               goto out;
+diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
+index 543b1d4..bead45d 100644
+--- a/net/mac80211/cfg.c
++++ b/net/mac80211/cfg.c
+@@ -341,7 +341,7 @@ static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
+       switch (key->conf.cipher) {
+       case WLAN_CIPHER_SUITE_TKIP:
+-              pn64 = atomic64_read(&key->conf.tx_pn);
++              pn64 = atomic64_read_unchecked(&key->conf.tx_pn);
+               iv32 = TKIP_PN_TO_IV32(pn64);
+               iv16 = TKIP_PN_TO_IV16(pn64);
+@@ -381,7 +381,7 @@ static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
+                       drv_get_key_seq(sdata->local, key, &kseq);
+                       memcpy(seq, kseq.ccmp.pn, 6);
+               } else {
+-                      pn64 = atomic64_read(&key->conf.tx_pn);
++                      pn64 = atomic64_read_unchecked(&key->conf.tx_pn);
+                       seq[0] = pn64;
+                       seq[1] = pn64 >> 8;
+                       seq[2] = pn64 >> 16;
+@@ -543,7 +543,7 @@ static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
+                       ret = ieee80211_vif_use_channel(sdata, chandef,
+                                       IEEE80211_CHANCTX_EXCLUSIVE);
+               }
+-      } else if (local->open_count == local->monitors) {
++      } else if (local_read(&local->open_count) == local->monitors) {
+               local->_oper_chandef = *chandef;
+               ieee80211_hw_config(local, 0);
+       }
+@@ -3074,7 +3074,7 @@ static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
+                               sdata->vif.probe_req_reg--;
+               }
+-              if (!local->open_count)
++              if (!local_read(&local->open_count))
+                       break;
+               if (sdata->vif.probe_req_reg == 1)
+@@ -3229,8 +3229,8 @@ static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
+       if (chanctx_conf) {
+               *chandef = sdata->vif.bss_conf.chandef;
+               ret = 0;
+-      } else if (local->open_count > 0 &&
+-                 local->open_count == local->monitors &&
++      } else if (local_read(&local->open_count) > 0 &&
++                 local_read(&local->open_count) == local->monitors &&
+                  sdata->vif.type == NL80211_IFTYPE_MONITOR) {
+               if (local->use_chanctx)
+                       *chandef = local->monitor_chandef;
+diff --git a/net/mac80211/debugfs.c b/net/mac80211/debugfs.c
+index 2906c10..65d1f44 100644
+--- a/net/mac80211/debugfs.c
++++ b/net/mac80211/debugfs.c
+@@ -263,7 +263,7 @@ static const struct file_operations reset_ops = {
+ };
+ #endif
+-static const char *hw_flag_names[] = {
++static const char * const hw_flag_names[] = {
+ #define FLAG(F)       [IEEE80211_HW_##F] = #F
+       FLAG(HAS_RATE_CONTROL),
+       FLAG(RX_INCLUDES_FCS),
+diff --git a/net/mac80211/debugfs_key.c b/net/mac80211/debugfs_key.c
+index a2ef95f..5adf27d 100644
+--- a/net/mac80211/debugfs_key.c
++++ b/net/mac80211/debugfs_key.c
+@@ -111,7 +111,7 @@ static ssize_t key_tx_spec_write(struct file *file, const char __user *userbuf,
+               /* PN is a 48-bit counter */
+               if (pn >= (1ULL << 48))
+                       return -ERANGE;
+-              atomic64_set(&key->conf.tx_pn, pn);
++              atomic64_set_unchecked(&key->conf.tx_pn, pn);
+               return count;
+       default:
+               return 0;
+@@ -132,7 +132,7 @@ static ssize_t key_tx_spec_read(struct file *file, char __user *userbuf,
+               len = scnprintf(buf, sizeof(buf), "\n");
+               break;
+       case WLAN_CIPHER_SUITE_TKIP:
+-              pn = atomic64_read(&key->conf.tx_pn);
++              pn = atomic64_read_unchecked(&key->conf.tx_pn);
+               len = scnprintf(buf, sizeof(buf), "%08x %04x\n",
+                               TKIP_PN_TO_IV32(pn),
+                               TKIP_PN_TO_IV16(pn));
+@@ -145,7 +145,7 @@ static ssize_t key_tx_spec_read(struct file *file, char __user *userbuf,
+       case WLAN_CIPHER_SUITE_BIP_GMAC_256:
+       case WLAN_CIPHER_SUITE_GCMP:
+       case WLAN_CIPHER_SUITE_GCMP_256:
+-              pn = atomic64_read(&key->conf.tx_pn);
++              pn = atomic64_read_unchecked(&key->conf.tx_pn);
+               len = scnprintf(buf, sizeof(buf), "%02x%02x%02x%02x%02x%02x\n",
+                               (u8)(pn >> 40), (u8)(pn >> 32), (u8)(pn >> 24),
+                               (u8)(pn >> 16), (u8)(pn >> 8), (u8)pn);
+diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
+index f56d342..6c01d5d 100644
+--- a/net/mac80211/ieee80211_i.h
++++ b/net/mac80211/ieee80211_i.h
+@@ -31,6 +31,7 @@
+ #include <net/cfg80211.h>
+ #include <net/mac80211.h>
+ #include <net/fq.h>
++#include <asm/local.h>
+ #include "key.h"
+ #include "sta_info.h"
+ #include "debug.h"
+@@ -1127,7 +1128,7 @@ struct ieee80211_local {
+       /* also used to protect ampdu_ac_queue and amdpu_ac_stop_refcnt */
+       spinlock_t queue_stop_reason_lock;
+-      int open_count;
++      local_t open_count;
+       int monitors, cooked_mntrs;
+       /* number of interfaces with corresponding FIF_ flags */
+       int fif_fcsfail, fif_plcpfail, fif_control, fif_other_bss, fif_pspoll,
+diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c
+index b123a9e..945cb81 100644
+--- a/net/mac80211/iface.c
++++ b/net/mac80211/iface.c
+@@ -551,7 +551,7 @@ int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up)
+               break;
+       }
+-      if (local->open_count == 0) {
++      if (local_read(&local->open_count) == 0) {
+               res = drv_start(local);
+               if (res)
+                       goto err_del_bss;
+@@ -598,7 +598,7 @@ int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up)
+                       res = drv_add_interface(local, sdata);
+                       if (res)
+                               goto err_stop;
+-              } else if (local->monitors == 0 && local->open_count == 0) {
++              } else if (local->monitors == 0 && local_read(&local->open_count) == 0) {
+                       res = ieee80211_add_virtual_monitor(local);
+                       if (res)
+                               goto err_stop;
+@@ -707,7 +707,7 @@ int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up)
+               atomic_inc(&local->iff_allmultis);
+       if (coming_up)
+-              local->open_count++;
++              local_inc(&local->open_count);
+       if (hw_reconf_flags)
+               ieee80211_hw_config(local, hw_reconf_flags);
+@@ -745,7 +745,7 @@ int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up)
+  err_del_interface:
+       drv_remove_interface(local, sdata);
+  err_stop:
+-      if (!local->open_count)
++      if (!local_read(&local->open_count))
+               drv_stop(local);
+  err_del_bss:
+       sdata->bss = NULL;
+@@ -913,7 +913,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
+       }
+       if (going_down)
+-              local->open_count--;
++              local_dec(&local->open_count);
+       switch (sdata->vif.type) {
+       case NL80211_IFTYPE_AP_VLAN:
+@@ -983,7 +983,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
+               spin_unlock_bh(&fq->lock);
+       }
+-      if (local->open_count == 0)
++      if (local_read(&local->open_count) == 0)
+               ieee80211_clear_tx_pending(local);
+       /*
+@@ -1026,7 +1026,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
+       if (cancel_scan)
+               flush_delayed_work(&local->scan_work);
+-      if (local->open_count == 0) {
++      if (local_read(&local->open_count) == 0) {
+               ieee80211_stop_device(local);
+               /* no reconfiguring after stop! */
+@@ -1037,7 +1037,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
+       ieee80211_configure_filter(local);
+       ieee80211_hw_config(local, hw_reconf_flags);
+-      if (local->monitors == local->open_count)
++      if (local->monitors == local_read(&local->open_count))
+               ieee80211_add_virtual_monitor(local);
+ }
+@@ -1919,8 +1919,8 @@ void ieee80211_remove_interfaces(struct ieee80211_local *local)
+        */
+       cfg80211_shutdown_all_interfaces(local->hw.wiphy);
+-      WARN(local->open_count, "%s: open count remains %d\n",
+-           wiphy_name(local->hw.wiphy), local->open_count);
++      WARN(local_read(&local->open_count), "%s: open count remains %ld\n",
++           wiphy_name(local->hw.wiphy), local_read(&local->open_count));
+       mutex_lock(&local->iflist_mtx);
+       list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
+diff --git a/net/mac80211/main.c b/net/mac80211/main.c
+index d00ea9b..3f2e7f6 100644
+--- a/net/mac80211/main.c
++++ b/net/mac80211/main.c
+@@ -170,7 +170,7 @@ int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
+               changed &= ~(IEEE80211_CONF_CHANGE_CHANNEL |
+                            IEEE80211_CONF_CHANGE_POWER);
+-      if (changed && local->open_count) {
++      if (changed && local_read(&local->open_count)) {
+               ret = drv_config(local, changed);
+               /*
+                * Goal:
+diff --git a/net/mac80211/pm.c b/net/mac80211/pm.c
+index 00a43a7..ab6deef 100644
+--- a/net/mac80211/pm.c
++++ b/net/mac80211/pm.c
+@@ -19,7 +19,7 @@ int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
+       struct ieee80211_sub_if_data *sdata;
+       struct sta_info *sta;
+-      if (!local->open_count)
++      if (!local_read(&local->open_count))
+               goto suspend;
+       ieee80211_scan_cancel(local);
+@@ -178,7 +178,7 @@ int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
+       WARN_ON(!list_empty(&local->chanctx_list));
+       /* stop hardware - this must stop RX */
+-      if (local->open_count)
++      if (local_read(&local->open_count))
+               ieee80211_stop_device(local);
+  suspend:
+diff --git a/net/mac80211/rate.c b/net/mac80211/rate.c
+index 206698b..847e610 100644
+--- a/net/mac80211/rate.c
++++ b/net/mac80211/rate.c
+@@ -901,7 +901,7 @@ int ieee80211_init_rate_ctrl_alg(struct ieee80211_local *local,
+       ASSERT_RTNL();
+-      if (local->open_count)
++      if (local_read(&local->open_count))
+               return -EBUSY;
+       if (ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) {
+diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c
+index aa58df8..4db13c9 100644
+--- a/net/mac80211/sta_info.c
++++ b/net/mac80211/sta_info.c
+@@ -361,7 +361,7 @@ struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
+               int size = sizeof(struct txq_info) +
+                          ALIGN(hw->txq_data_size, sizeof(void *));
+-              txq_data = kcalloc(ARRAY_SIZE(sta->sta.txq), size, gfp);
++              txq_data = kcalloc(size, ARRAY_SIZE(sta->sta.txq), gfp);
+               if (!txq_data)
+                       goto free;
+diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
+index 18b285e..20a4d55 100644
+--- a/net/mac80211/tx.c
++++ b/net/mac80211/tx.c
+@@ -3324,7 +3324,7 @@ static bool ieee80211_xmit_fast(struct ieee80211_sub_if_data *sdata,
+               case WLAN_CIPHER_SUITE_CCMP_256:
+               case WLAN_CIPHER_SUITE_GCMP:
+               case WLAN_CIPHER_SUITE_GCMP_256:
+-                      pn = atomic64_inc_return(&fast_tx->key->conf.tx_pn);
++                      pn = atomic64_inc_return_unchecked(&fast_tx->key->conf.tx_pn);
+                       crypto_hdr[0] = pn;
+                       crypto_hdr[1] = pn >> 8;
+                       crypto_hdr[4] = pn >> 16;
+diff --git a/net/mac80211/util.c b/net/mac80211/util.c
+index 42bf0b6..8dcf0b2 100644
+--- a/net/mac80211/util.c
++++ b/net/mac80211/util.c
+@@ -1762,7 +1762,7 @@ int ieee80211_reconfig(struct ieee80211_local *local)
+       bool suspended = local->suspended;
+       /* nothing to do if HW shouldn't run */
+-      if (!local->open_count)
++      if (!local_read(&local->open_count))
+               goto wake_up;
+ #ifdef CONFIG_PM
+@@ -2068,7 +2068,7 @@ int ieee80211_reconfig(struct ieee80211_local *local)
+               mutex_unlock(&local->mtx);
+       }
+-      if (local->monitors == local->open_count && local->monitors > 0)
++      if (local->monitors == local_read(&local->open_count) && local->monitors > 0)
+               ieee80211_add_virtual_monitor(local);
+       /*
+@@ -2102,7 +2102,7 @@ int ieee80211_reconfig(struct ieee80211_local *local)
+        * If this is for hw restart things are still running.
+        * We may want to change that later, however.
+        */
+-      if (local->open_count && (!suspended || reconfig_due_to_wowlan))
++      if (local_read(&local->open_count) && (!suspended || reconfig_due_to_wowlan))
+               drv_reconfig_complete(local, IEEE80211_RECONFIG_TYPE_RESTART);
+       if (!suspended)
+@@ -2116,7 +2116,7 @@ int ieee80211_reconfig(struct ieee80211_local *local)
+       ieee80211_flush_completed_scan(local, false);
+-      if (local->open_count && !reconfig_due_to_wowlan)
++      if (local_read(&local->open_count) && !reconfig_due_to_wowlan)
+               drv_reconfig_complete(local, IEEE80211_RECONFIG_TYPE_SUSPEND);
+       list_for_each_entry(sdata, &local->interfaces, list) {
+diff --git a/net/mac80211/wpa.c b/net/mac80211/wpa.c
+index b48c1e1..4c02b5b 100644
+--- a/net/mac80211/wpa.c
++++ b/net/mac80211/wpa.c
+@@ -223,7 +223,7 @@ static int tkip_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
+               return 0;
+       /* Increase IV for the frame */
+-      pn = atomic64_inc_return(&key->conf.tx_pn);
++      pn = atomic64_inc_return_unchecked(&key->conf.tx_pn);
+       pos = ieee80211_tkip_add_iv(pos, &key->conf, pn);
+       /* hwaccel - with software IV */
+@@ -444,7 +444,7 @@ static int ccmp_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb,
+       hdr = (struct ieee80211_hdr *) pos;
+       pos += hdrlen;
+-      pn64 = atomic64_inc_return(&key->conf.tx_pn);
++      pn64 = atomic64_inc_return_unchecked(&key->conf.tx_pn);
+       pn[5] = pn64;
+       pn[4] = pn64 >> 8;
+@@ -679,7 +679,7 @@ static int gcmp_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
+       hdr = (struct ieee80211_hdr *)pos;
+       pos += hdrlen;
+-      pn64 = atomic64_inc_return(&key->conf.tx_pn);
++      pn64 = atomic64_inc_return_unchecked(&key->conf.tx_pn);
+       pn[5] = pn64;
+       pn[4] = pn64 >> 8;
+@@ -957,7 +957,7 @@ ieee80211_crypto_aes_cmac_encrypt(struct ieee80211_tx_data *tx)
+       mmie->key_id = cpu_to_le16(key->conf.keyidx);
+       /* PN = PN + 1 */
+-      pn64 = atomic64_inc_return(&key->conf.tx_pn);
++      pn64 = atomic64_inc_return_unchecked(&key->conf.tx_pn);
+       bip_ipn_set64(mmie->sequence_number, pn64);
+@@ -1001,7 +1001,7 @@ ieee80211_crypto_aes_cmac_256_encrypt(struct ieee80211_tx_data *tx)
+       mmie->key_id = cpu_to_le16(key->conf.keyidx);
+       /* PN = PN + 1 */
+-      pn64 = atomic64_inc_return(&key->conf.tx_pn);
++      pn64 = atomic64_inc_return_unchecked(&key->conf.tx_pn);
+       bip_ipn_set64(mmie->sequence_number, pn64);
+@@ -1146,7 +1146,7 @@ ieee80211_crypto_aes_gmac_encrypt(struct ieee80211_tx_data *tx)
+       mmie->key_id = cpu_to_le16(key->conf.keyidx);
+       /* PN = PN + 1 */
+-      pn64 = atomic64_inc_return(&key->conf.tx_pn);
++      pn64 = atomic64_inc_return_unchecked(&key->conf.tx_pn);
+       bip_ipn_set64(mmie->sequence_number, pn64);
+diff --git a/net/mac802154/iface.c b/net/mac802154/iface.c
+index 7079cd3..c299f08 100644
+--- a/net/mac802154/iface.c
++++ b/net/mac802154/iface.c
+@@ -386,7 +386,7 @@ static int ieee802154_header_create(struct sk_buff *skb,
+       hdr.fc.type = cb->type;
+       hdr.fc.security_enabled = cb->secen;
+       hdr.fc.ack_request = cb->ackreq;
+-      hdr.seq = atomic_inc_return(&dev->ieee802154_ptr->dsn) & 0xFF;
++      hdr.seq = atomic_inc_return_unchecked(&dev->ieee802154_ptr->dsn) & 0xFF;
+       if (mac802154_set_header_security(sdata, &hdr, cb) < 0)
+               return -EINVAL;
+@@ -451,7 +451,7 @@ static int mac802154_header_create(struct sk_buff *skb,
+       memset(&hdr.fc, 0, sizeof(hdr.fc));
+       hdr.fc.type = IEEE802154_FC_TYPE_DATA;
+       hdr.fc.ack_request = wpan_dev->ackreq;
+-      hdr.seq = atomic_inc_return(&dev->ieee802154_ptr->dsn) & 0xFF;
++      hdr.seq = atomic_inc_return_unchecked(&dev->ieee802154_ptr->dsn) & 0xFF;
+       /* TODO currently a workaround to give zero cb block to set
+        * security parameters defaults according MIB.
+@@ -576,7 +576,7 @@ ieee802154_setup_sdata(struct ieee802154_sub_if_data *sdata,
+       get_random_bytes(&tmp, sizeof(tmp));
+       atomic_set(&wpan_dev->bsn, tmp);
+       get_random_bytes(&tmp, sizeof(tmp));
+-      atomic_set(&wpan_dev->dsn, tmp);
++      atomic_set_unchecked(&wpan_dev->dsn, tmp);
+       /* defaults per 802.15.4-2011 */
+       wpan_dev->min_be = 3;
+diff --git a/net/mpls/af_mpls.c b/net/mpls/af_mpls.c
+index 5c161e7..7bb4eba 100644
+--- a/net/mpls/af_mpls.c
++++ b/net/mpls/af_mpls.c
+@@ -871,7 +871,7 @@ static int mpls_dev_sysctl_register(struct net_device *dev,
+                                   struct mpls_dev *mdev)
+ {
+       char path[sizeof("net/mpls/conf/") + IFNAMSIZ];
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       int i;
+       table = kmemdup(&mpls_dev_table, sizeof(mpls_dev_table), GFP_KERNEL);
+@@ -954,7 +954,7 @@ static void mpls_ifdown(struct net_device *dev, int event)
+                               /* fall through */
+                       case NETDEV_CHANGE:
+                               nh->nh_flags |= RTNH_F_LINKDOWN;
+-                              ACCESS_ONCE(rt->rt_nhn_alive) = rt->rt_nhn_alive - 1;
++                              ACCESS_ONCE_RW(rt->rt_nhn_alive) = rt->rt_nhn_alive - 1;
+                               break;
+                       }
+                       if (event == NETDEV_UNREGISTER)
+@@ -995,7 +995,7 @@ static void mpls_ifup(struct net_device *dev, unsigned int nh_flags)
+                       nh->nh_flags &= ~nh_flags;
+               } endfor_nexthops(rt);
+-              ACCESS_ONCE(rt->rt_nhn_alive) = alive;
++              ACCESS_ONCE_RW(rt->rt_nhn_alive) = alive;
+       }
+       return;
+@@ -1624,7 +1624,7 @@ static int mpls_platform_labels(struct ctl_table *table, int write,
+       struct net *net = table->data;
+       int platform_labels = net->mpls.platform_labels;
+       int ret;
+-      struct ctl_table tmp = {
++      ctl_table_no_const tmp = {
+               .procname       = table->procname,
+               .data           = &platform_labels,
+               .maxlen         = sizeof(int),
+@@ -1654,7 +1654,7 @@ static const struct ctl_table mpls_table[] = {
+ static int mpls_net_init(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       net->mpls.platform_labels = 0;
+       net->mpls.platform_label = NULL;
+diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig
+index 9266cee..767338c 100644
+--- a/net/netfilter/Kconfig
++++ b/net/netfilter/Kconfig
+@@ -1148,6 +1148,16 @@ config NETFILTER_XT_MATCH_ESP
+         To compile it as a module, choose M here.  If unsure, say N.
++config NETFILTER_XT_MATCH_GRADM
++      tristate '"gradm" match support'
++      depends on NETFILTER_XTABLES && NETFILTER_ADVANCED
++      depends on GRKERNSEC && !GRKERNSEC_NO_RBAC
++      ---help---
++        The gradm match allows to match on grsecurity RBAC being enabled.
++        It is useful when iptables rules are applied early on bootup to
++        prevent connections to the machine (except from a trusted host)
++        while the RBAC system is disabled.
++
+ config NETFILTER_XT_MATCH_HASHLIMIT
+       tristate '"hashlimit" match support'
+       depends on IP6_NF_IPTABLES || IP6_NF_IPTABLES=n
+diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile
+index 6913454..43686aa 100644
+--- a/net/netfilter/Makefile
++++ b/net/netfilter/Makefile
+@@ -145,6 +145,7 @@ obj-$(CONFIG_NETFILTER_XT_MATCH_DEVGROUP) += xt_devgroup.o
+ obj-$(CONFIG_NETFILTER_XT_MATCH_DSCP) += xt_dscp.o
+ obj-$(CONFIG_NETFILTER_XT_MATCH_ECN) += xt_ecn.o
+ obj-$(CONFIG_NETFILTER_XT_MATCH_ESP) += xt_esp.o
++obj-$(CONFIG_NETFILTER_XT_MATCH_GRADM) += xt_gradm.o
+ obj-$(CONFIG_NETFILTER_XT_MATCH_HASHLIMIT) += xt_hashlimit.o
+ obj-$(CONFIG_NETFILTER_XT_MATCH_HELPER) += xt_helper.o
+ obj-$(CONFIG_NETFILTER_XT_MATCH_HL) += xt_hl.o
+diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset/ip_set_core.c
+index a748b0c..90c1df6 100644
+--- a/net/netfilter/ipset/ip_set_core.c
++++ b/net/netfilter/ipset/ip_set_core.c
+@@ -324,7 +324,6 @@ ip_set_get_ipaddr6(struct nlattr *nla, union nf_inet_addr *ipaddr)
+ }
+ EXPORT_SYMBOL_GPL(ip_set_get_ipaddr6);
+-typedef void (*destroyer)(void *);
+ /* ipset data extension types, in size order */
+ const struct ip_set_ext_type ip_set_extensions[] = {
+@@ -350,7 +349,7 @@ const struct ip_set_ext_type ip_set_extensions[] = {
+               .flag    = IPSET_FLAG_WITH_COMMENT,
+               .len     = sizeof(struct ip_set_comment),
+               .align   = __alignof__(struct ip_set_comment),
+-              .destroy = (destroyer) ip_set_comment_free,
++              .destroy = ip_set_comment_free,
+       },
+ };
+ EXPORT_SYMBOL_GPL(ip_set_extensions);
+@@ -1440,7 +1439,7 @@ static int ip_set_dump(struct net *net, struct sock *ctnl, struct sk_buff *skb,
+               return -IPSET_ERR_PROTOCOL;
+       {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = ip_set_dump_start,
+                       .done = ip_set_dump_done,
+               };
+@@ -2009,7 +2008,7 @@ done:
+       return ret;
+ }
+-static struct nf_sockopt_ops so_set __read_mostly = {
++static struct nf_sockopt_ops so_set = {
+       .pf             = PF_INET,
+       .get_optmin     = SO_IP_SET,
+       .get_optmax     = SO_IP_SET + 1,
+diff --git a/net/netfilter/ipvs/ip_vs_conn.c b/net/netfilter/ipvs/ip_vs_conn.c
+index 096a451..c80bc59 100644
+--- a/net/netfilter/ipvs/ip_vs_conn.c
++++ b/net/netfilter/ipvs/ip_vs_conn.c
+@@ -591,7 +591,7 @@ ip_vs_bind_dest(struct ip_vs_conn *cp, struct ip_vs_dest *dest)
+       /* Increase the refcnt counter of the dest */
+       ip_vs_dest_hold(dest);
+-      conn_flags = atomic_read(&dest->conn_flags);
++      conn_flags = atomic_read_unchecked(&dest->conn_flags);
+       if (cp->protocol != IPPROTO_UDP)
+               conn_flags &= ~IP_VS_CONN_F_ONE_PACKET;
+       flags = cp->flags;
+@@ -945,7 +945,7 @@ ip_vs_conn_new(const struct ip_vs_conn_param *p, int dest_af,
+       cp->control = NULL;
+       atomic_set(&cp->n_control, 0);
+-      atomic_set(&cp->in_pkts, 0);
++      atomic_set_unchecked(&cp->in_pkts, 0);
+       cp->packet_xmit = NULL;
+       cp->app = NULL;
+@@ -1252,7 +1252,7 @@ static inline int todrop_entry(struct ip_vs_conn *cp)
+       /* Don't drop the entry if its number of incoming packets is not
+          located in [0, 8] */
+-      i = atomic_read(&cp->in_pkts);
++      i = atomic_read_unchecked(&cp->in_pkts);
+       if (i > 8 || i < 0) return 0;
+       if (!todrop_rate[i]) return 0;
+diff --git a/net/netfilter/ipvs/ip_vs_core.c b/net/netfilter/ipvs/ip_vs_core.c
+index 2c1b498..3bca85c 100644
+--- a/net/netfilter/ipvs/ip_vs_core.c
++++ b/net/netfilter/ipvs/ip_vs_core.c
+@@ -613,9 +613,9 @@ int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
+               /* do not touch skb anymore */
+               if ((cp->flags & IP_VS_CONN_F_ONE_PACKET) && cp->control)
+-                      atomic_inc(&cp->control->in_pkts);
++                      atomic_inc_unchecked(&cp->control->in_pkts);
+               else
+-                      atomic_inc(&cp->in_pkts);
++                      atomic_inc_unchecked(&cp->in_pkts);
+               ip_vs_conn_put(cp);
+               return ret;
+       }
+@@ -1991,13 +1991,13 @@ ip_vs_in(struct netns_ipvs *ipvs, unsigned int hooknum, struct sk_buff *skb, int
+       if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
+               pkts = sysctl_sync_threshold(ipvs);
+       else
+-              pkts = atomic_add_return(1, &cp->in_pkts);
++              pkts = atomic_add_return_unchecked(1, &cp->in_pkts);
+       if (ipvs->sync_state & IP_VS_STATE_MASTER)
+               ip_vs_sync_conn(ipvs, cp, pkts);
+       else if ((cp->flags & IP_VS_CONN_F_ONE_PACKET) && cp->control)
+               /* increment is done inside ip_vs_sync_conn too */
+-              atomic_inc(&cp->control->in_pkts);
++              atomic_inc_unchecked(&cp->control->in_pkts);
+       ip_vs_conn_put(cp);
+       return ret;
+diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c
+index c3c809b..fb97ee5 100644
+--- a/net/netfilter/ipvs/ip_vs_ctl.c
++++ b/net/netfilter/ipvs/ip_vs_ctl.c
+@@ -841,7 +841,7 @@ __ip_vs_update_dest(struct ip_vs_service *svc, struct ip_vs_dest *dest,
+                */
+               ip_vs_rs_hash(ipvs, dest);
+       }
+-      atomic_set(&dest->conn_flags, conn_flags);
++      atomic_set_unchecked(&dest->conn_flags, conn_flags);
+       /* bind the service */
+       old_svc = rcu_dereference_protected(dest->svc, 1);
+@@ -1728,7 +1728,7 @@ proc_do_sync_ports(struct ctl_table *table, int write,
+  *    align with netns init in ip_vs_control_net_init()
+  */
+-static struct ctl_table vs_vars[] = {
++static ctl_table_no_const vs_vars[] __read_only = {
+       {
+               .procname       = "amemthresh",
+               .maxlen         = sizeof(int),
+@@ -2083,7 +2083,7 @@ static int ip_vs_info_seq_show(struct seq_file *seq, void *v)
+                                          "      %-7s %-6d %-10d %-10d\n",
+                                          &dest->addr.in6,
+                                          ntohs(dest->port),
+-                                         ip_vs_fwd_name(atomic_read(&dest->conn_flags)),
++                                         ip_vs_fwd_name(atomic_read_unchecked(&dest->conn_flags)),
+                                          atomic_read(&dest->weight),
+                                          atomic_read(&dest->activeconns),
+                                          atomic_read(&dest->inactconns));
+@@ -2094,7 +2094,7 @@ static int ip_vs_info_seq_show(struct seq_file *seq, void *v)
+                                          "%-7s %-6d %-10d %-10d\n",
+                                          ntohl(dest->addr.ip),
+                                          ntohs(dest->port),
+-                                         ip_vs_fwd_name(atomic_read(&dest->conn_flags)),
++                                         ip_vs_fwd_name(atomic_read_unchecked(&dest->conn_flags)),
+                                          atomic_read(&dest->weight),
+                                          atomic_read(&dest->activeconns),
+                                          atomic_read(&dest->inactconns));
+@@ -2603,7 +2603,7 @@ __ip_vs_get_dest_entries(struct netns_ipvs *ipvs, const struct ip_vs_get_dests *
+                       entry.addr = dest->addr.ip;
+                       entry.port = dest->port;
+-                      entry.conn_flags = atomic_read(&dest->conn_flags);
++                      entry.conn_flags = atomic_read_unchecked(&dest->conn_flags);
+                       entry.weight = atomic_read(&dest->weight);
+                       entry.u_threshold = dest->u_threshold;
+                       entry.l_threshold = dest->l_threshold;
+@@ -3196,7 +3196,7 @@ static int ip_vs_genl_fill_dest(struct sk_buff *skb, struct ip_vs_dest *dest)
+       if (nla_put(skb, IPVS_DEST_ATTR_ADDR, sizeof(dest->addr), &dest->addr) ||
+           nla_put_be16(skb, IPVS_DEST_ATTR_PORT, dest->port) ||
+           nla_put_u32(skb, IPVS_DEST_ATTR_FWD_METHOD,
+-                      (atomic_read(&dest->conn_flags) &
++                      (atomic_read_unchecked(&dest->conn_flags) &
+                        IP_VS_CONN_F_FWD_MASK)) ||
+           nla_put_u32(skb, IPVS_DEST_ATTR_WEIGHT,
+                       atomic_read(&dest->weight)) ||
+@@ -3893,7 +3893,7 @@ static int __net_init ip_vs_control_net_init_sysctl(struct netns_ipvs *ipvs)
+ {
+       struct net *net = ipvs->net;
+       int idx;
+-      struct ctl_table *tbl;
++      ctl_table_no_const *tbl;
+       atomic_set(&ipvs->dropentry, 0);
+       spin_lock_init(&ipvs->dropentry_lock);
+diff --git a/net/netfilter/ipvs/ip_vs_lblc.c b/net/netfilter/ipvs/ip_vs_lblc.c
+index cccf4d6..8d60399 100644
+--- a/net/netfilter/ipvs/ip_vs_lblc.c
++++ b/net/netfilter/ipvs/ip_vs_lblc.c
+@@ -118,7 +118,7 @@ struct ip_vs_lblc_table {
+  *      IPVS LBLC sysctl table
+  */
+ #ifdef CONFIG_SYSCTL
+-static struct ctl_table vs_vars_table[] = {
++static ctl_table_no_const vs_vars_table[] __read_only = {
+       {
+               .procname       = "lblc_expiration",
+               .data           = NULL,
+diff --git a/net/netfilter/ipvs/ip_vs_lblcr.c b/net/netfilter/ipvs/ip_vs_lblcr.c
+index 796d70e..8458955 100644
+--- a/net/netfilter/ipvs/ip_vs_lblcr.c
++++ b/net/netfilter/ipvs/ip_vs_lblcr.c
+@@ -289,7 +289,7 @@ struct ip_vs_lblcr_table {
+  *      IPVS LBLCR sysctl table
+  */
+-static struct ctl_table vs_vars_table[] = {
++static ctl_table_no_const vs_vars_table[] __read_only = {
+       {
+               .procname       = "lblcr_expiration",
+               .data           = NULL,
+diff --git a/net/netfilter/ipvs/ip_vs_sync.c b/net/netfilter/ipvs/ip_vs_sync.c
+index 1b07578..36b88cb 100644
+--- a/net/netfilter/ipvs/ip_vs_sync.c
++++ b/net/netfilter/ipvs/ip_vs_sync.c
+@@ -611,7 +611,7 @@ static void ip_vs_sync_conn_v0(struct netns_ipvs *ipvs, struct ip_vs_conn *cp,
+       cp = cp->control;
+       if (cp) {
+               if (cp->flags & IP_VS_CONN_F_TEMPLATE)
+-                      pkts = atomic_add_return(1, &cp->in_pkts);
++                      pkts = atomic_add_return_unchecked(1, &cp->in_pkts);
+               else
+                       pkts = sysctl_sync_threshold(ipvs);
+               ip_vs_sync_conn(ipvs, cp, pkts);
+@@ -772,7 +772,7 @@ control:
+       if (!cp)
+               return;
+       if (cp->flags & IP_VS_CONN_F_TEMPLATE)
+-              pkts = atomic_add_return(1, &cp->in_pkts);
++              pkts = atomic_add_return_unchecked(1, &cp->in_pkts);
+       else
+               pkts = sysctl_sync_threshold(ipvs);
+       goto sloop;
+@@ -919,7 +919,7 @@ static void ip_vs_proc_conn(struct netns_ipvs *ipvs, struct ip_vs_conn_param *pa
+       if (opt)
+               memcpy(&cp->in_seq, opt, sizeof(*opt));
+-      atomic_set(&cp->in_pkts, sysctl_sync_threshold(ipvs));
++      atomic_set_unchecked(&cp->in_pkts, sysctl_sync_threshold(ipvs));
+       cp->state = state;
+       cp->old_state = cp->state;
+       /*
+diff --git a/net/netfilter/ipvs/ip_vs_xmit.c b/net/netfilter/ipvs/ip_vs_xmit.c
+index 01d3d89..fb0cd03 100644
+--- a/net/netfilter/ipvs/ip_vs_xmit.c
++++ b/net/netfilter/ipvs/ip_vs_xmit.c
+@@ -1255,7 +1255,7 @@ ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
+               else
+                       rc = NF_ACCEPT;
+               /* do not touch skb anymore */
+-              atomic_inc(&cp->in_pkts);
++              atomic_inc_unchecked(&cp->in_pkts);
+               goto out;
+       }
+@@ -1348,7 +1348,7 @@ ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
+               else
+                       rc = NF_ACCEPT;
+               /* do not touch skb anymore */
+-              atomic_inc(&cp->in_pkts);
++              atomic_inc_unchecked(&cp->in_pkts);
+               goto out;
+       }
+diff --git a/net/netfilter/nf_conntrack_acct.c b/net/netfilter/nf_conntrack_acct.c
+index 45da11a..ef3e5dc 100644
+--- a/net/netfilter/nf_conntrack_acct.c
++++ b/net/netfilter/nf_conntrack_acct.c
+@@ -64,7 +64,7 @@ static struct nf_ct_ext_type acct_extend __read_mostly = {
+ #ifdef CONFIG_SYSCTL
+ static int nf_conntrack_acct_init_sysctl(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       table = kmemdup(acct_sysctl_table, sizeof(acct_sysctl_table),
+                       GFP_KERNEL);
+diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c
+index 9934b0c..08efb98 100644
+--- a/net/netfilter/nf_conntrack_core.c
++++ b/net/netfilter/nf_conntrack_core.c
+@@ -1702,7 +1702,7 @@ int nf_conntrack_hash_resize(unsigned int hashsize)
+       return 0;
+ }
+-int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
++int nf_conntrack_set_hashsize(const char *val, const struct kernel_param *kp)
+ {
+       unsigned int hashsize;
+       int rc;
+diff --git a/net/netfilter/nf_conntrack_ecache.c b/net/netfilter/nf_conntrack_ecache.c
+index d28011b..04d5063 100644
+--- a/net/netfilter/nf_conntrack_ecache.c
++++ b/net/netfilter/nf_conntrack_ecache.c
+@@ -348,7 +348,7 @@ static struct nf_ct_ext_type event_extend __read_mostly = {
+ #ifdef CONFIG_SYSCTL
+ static int nf_conntrack_event_init_sysctl(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       table = kmemdup(event_sysctl_table, sizeof(event_sysctl_table),
+                       GFP_KERNEL);
+diff --git a/net/netfilter/nf_conntrack_helper.c b/net/netfilter/nf_conntrack_helper.c
+index b989b81..2335d60 100644
+--- a/net/netfilter/nf_conntrack_helper.c
++++ b/net/netfilter/nf_conntrack_helper.c
+@@ -57,7 +57,7 @@ static struct ctl_table helper_sysctl_table[] = {
+ static int nf_conntrack_helper_init_sysctl(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       table = kmemdup(helper_sysctl_table, sizeof(helper_sysctl_table),
+                       GFP_KERNEL);
+diff --git a/net/netfilter/nf_conntrack_netlink.c b/net/netfilter/nf_conntrack_netlink.c
+index fdfc71f..f47621a 100644
+--- a/net/netfilter/nf_conntrack_netlink.c
++++ b/net/netfilter/nf_conntrack_netlink.c
+@@ -1170,10 +1170,11 @@ static int ctnetlink_get_conntrack(struct net *net, struct sock *ctnl,
+       int err;
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = ctnetlink_dump_table,
+                       .done = ctnetlink_done,
+               };
++              void *data = NULL;
+               if (cda[CTA_MARK] && cda[CTA_MARK_MASK]) {
+                       struct ctnetlink_filter *filter;
+@@ -1182,9 +1183,9 @@ static int ctnetlink_get_conntrack(struct net *net, struct sock *ctnl,
+                       if (IS_ERR(filter))
+                               return PTR_ERR(filter);
+-                      c.data = filter;
++                      data = filter;
+               }
+-              return netlink_dump_start(ctnl, skb, nlh, &c);
++              return __netlink_dump_start(ctnl, skb, nlh, &c, data, THIS_MODULE);
+       }
+       err = ctnetlink_parse_zone(cda[CTA_ZONE], &zone);
+@@ -1322,7 +1323,7 @@ static int ctnetlink_get_ct_dying(struct net *net, struct sock *ctnl,
+                                 const struct nlattr * const cda[])
+ {
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = ctnetlink_dump_dying,
+                       .done = ctnetlink_done_list,
+               };
+@@ -1344,7 +1345,7 @@ static int ctnetlink_get_ct_unconfirmed(struct net *net, struct sock *ctnl,
+                                       const struct nlattr * const cda[])
+ {
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = ctnetlink_dump_unconfirmed,
+                       .done = ctnetlink_done_list,
+               };
+@@ -2027,7 +2028,7 @@ static int ctnetlink_stat_ct_cpu(struct net *net, struct sock *ctnl,
+                                const struct nlattr * const cda[])
+ {
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = ctnetlink_ct_stat_cpu_dump,
+               };
+               return netlink_dump_start(ctnl, skb, nlh, &c);
+@@ -2725,7 +2726,7 @@ static int ctnetlink_dump_exp_ct(struct net *net, struct sock *ctnl,
+       struct nf_conntrack_tuple_hash *h;
+       struct nf_conn *ct;
+       struct nf_conntrack_zone zone;
+-      struct netlink_dump_control c = {
++      static struct netlink_dump_control c = {
+               .dump = ctnetlink_exp_ct_dump_table,
+               .done = ctnetlink_exp_done,
+       };
+@@ -2744,9 +2745,8 @@ static int ctnetlink_dump_exp_ct(struct net *net, struct sock *ctnl,
+               return -ENOENT;
+       ct = nf_ct_tuplehash_to_ctrack(h);
+-      c.data = ct;
+-      err = netlink_dump_start(ctnl, skb, nlh, &c);
++      err = __netlink_dump_start(ctnl, skb, nlh, &c, ct, THIS_MODULE);
+       nf_ct_put(ct);
+       return err;
+@@ -2768,7 +2768,7 @@ static int ctnetlink_get_expect(struct net *net, struct sock *ctnl,
+               if (cda[CTA_EXPECT_MASTER])
+                       return ctnetlink_dump_exp_ct(net, ctnl, skb, nlh, cda);
+               else {
+-                      struct netlink_dump_control c = {
++                      static struct netlink_dump_control c = {
+                               .dump = ctnetlink_exp_dump_table,
+                               .done = ctnetlink_exp_done,
+                       };
+@@ -3234,7 +3234,7 @@ static int ctnetlink_stat_exp_cpu(struct net *net, struct sock *ctnl,
+                                 const struct nlattr * const cda[])
+ {
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = ctnetlink_exp_stat_cpu_dump,
+               };
+               return netlink_dump_start(ctnl, skb, nlh, &c);
+diff --git a/net/netfilter/nf_conntrack_proto.c b/net/netfilter/nf_conntrack_proto.c
+index b65d586..beec902 100644
+--- a/net/netfilter/nf_conntrack_proto.c
++++ b/net/netfilter/nf_conntrack_proto.c
+@@ -52,7 +52,7 @@ nf_ct_register_sysctl(struct net *net,
+ static void
+ nf_ct_unregister_sysctl(struct ctl_table_header **header,
+-                      struct ctl_table **table,
++                      ctl_table_no_const **table,
+                       unsigned int users)
+ {
+       if (users > 0)
+diff --git a/net/netfilter/nf_conntrack_standalone.c b/net/netfilter/nf_conntrack_standalone.c
+index 9f267c3..ca950e4 100644
+--- a/net/netfilter/nf_conntrack_standalone.c
++++ b/net/netfilter/nf_conntrack_standalone.c
+@@ -529,7 +529,7 @@ static struct ctl_table nf_ct_netfilter_table[] = {
+ static int nf_conntrack_standalone_init_sysctl(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       table = kmemdup(nf_ct_sysctl_table, sizeof(nf_ct_sysctl_table),
+                       GFP_KERNEL);
+diff --git a/net/netfilter/nf_conntrack_timestamp.c b/net/netfilter/nf_conntrack_timestamp.c
+index 7a394df..bd91a8a 100644
+--- a/net/netfilter/nf_conntrack_timestamp.c
++++ b/net/netfilter/nf_conntrack_timestamp.c
+@@ -42,7 +42,7 @@ static struct nf_ct_ext_type tstamp_extend __read_mostly = {
+ #ifdef CONFIG_SYSCTL
+ static int nf_conntrack_tstamp_init_sysctl(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       table = kmemdup(tstamp_sysctl_table, sizeof(tstamp_sysctl_table),
+                       GFP_KERNEL);
+diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c
+index aa5847a..763f663 100644
+--- a/net/netfilter/nf_log.c
++++ b/net/netfilter/nf_log.c
+@@ -411,7 +411,7 @@ static const struct file_operations nflog_file_ops = {
+ #ifdef CONFIG_SYSCTL
+ static char nf_log_sysctl_fnames[NFPROTO_NUMPROTO-NFPROTO_UNSPEC][3];
+-static struct ctl_table nf_log_sysctl_table[NFPROTO_NUMPROTO+1];
++static ctl_table_no_const nf_log_sysctl_table[NFPROTO_NUMPROTO+1] __read_only;
+ static int nf_log_proc_dostring(struct ctl_table *table, int write,
+                        void __user *buffer, size_t *lenp, loff_t *ppos)
+@@ -423,7 +423,7 @@ static int nf_log_proc_dostring(struct ctl_table *table, int write,
+       struct net *net = current->nsproxy->net_ns;
+       if (write) {
+-              struct ctl_table tmp = *table;
++              ctl_table_no_const tmp = *table;
+               tmp.data = buf;
+               r = proc_dostring(&tmp, write, buffer, lenp, ppos);
+@@ -443,13 +443,15 @@ static int nf_log_proc_dostring(struct ctl_table *table, int write,
+               rcu_assign_pointer(net->nf.nf_loggers[tindex], logger);
+               mutex_unlock(&nf_log_mutex);
+       } else {
++              ctl_table_no_const nf_log_table = *table;
++
+               mutex_lock(&nf_log_mutex);
+               logger = nft_log_dereference(net->nf.nf_loggers[tindex]);
+               if (!logger)
+-                      table->data = "NONE";
++                      nf_log_table.data = "NONE";
+               else
+-                      table->data = logger->name;
+-              r = proc_dostring(table, write, buffer, lenp, ppos);
++                      nf_log_table.data = logger->name;
++              r = proc_dostring(&nf_log_table, write, buffer, lenp, ppos);
+               mutex_unlock(&nf_log_mutex);
+       }
+diff --git a/net/netfilter/nf_nat_ftp.c b/net/netfilter/nf_nat_ftp.c
+index e84a578..d76afaf 100644
+--- a/net/netfilter/nf_nat_ftp.c
++++ b/net/netfilter/nf_nat_ftp.c
+@@ -134,7 +134,7 @@ static int __init nf_nat_ftp_init(void)
+ }
+ /* Prior to 2.6.11, we had a ports param.  No longer, but don't break users. */
+-static int warn_set(const char *val, struct kernel_param *kp)
++static int warn_set(const char *val, const struct kernel_param *kp)
+ {
+       printk(KERN_INFO KBUILD_MODNAME
+              ": kernel >= 2.6.10 only uses 'ports' for conntrack modules\n");
+diff --git a/net/netfilter/nf_nat_irc.c b/net/netfilter/nf_nat_irc.c
+index 1fb2258..8039bcd 100644
+--- a/net/netfilter/nf_nat_irc.c
++++ b/net/netfilter/nf_nat_irc.c
+@@ -107,7 +107,7 @@ static int __init nf_nat_irc_init(void)
+ }
+ /* Prior to 2.6.11, we had a ports param.  No longer, but don't break users. */
+-static int warn_set(const char *val, struct kernel_param *kp)
++static int warn_set(const char *val, const struct kernel_param *kp)
+ {
+       printk(KERN_INFO KBUILD_MODNAME
+              ": kernel >= 2.6.10 only uses 'ports' for conntrack modules\n");
+diff --git a/net/netfilter/nf_sockopt.c b/net/netfilter/nf_sockopt.c
+index c68c1e5..8b5d670 100644
+--- a/net/netfilter/nf_sockopt.c
++++ b/net/netfilter/nf_sockopt.c
+@@ -43,7 +43,7 @@ int nf_register_sockopt(struct nf_sockopt_ops *reg)
+               }
+       }
+-      list_add(&reg->list, &nf_sockopts);
++      pax_list_add((struct list_head *)&reg->list, &nf_sockopts);
+ out:
+       mutex_unlock(&nf_sockopt_mutex);
+       return ret;
+@@ -53,7 +53,7 @@ EXPORT_SYMBOL(nf_register_sockopt);
+ void nf_unregister_sockopt(struct nf_sockopt_ops *reg)
+ {
+       mutex_lock(&nf_sockopt_mutex);
+-      list_del(&reg->list);
++      pax_list_del((struct list_head *)&reg->list);
+       mutex_unlock(&nf_sockopt_mutex);
+ }
+ EXPORT_SYMBOL(nf_unregister_sockopt);
+diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
+index 7e1c876..9b9f9b3 100644
+--- a/net/netfilter/nf_tables_api.c
++++ b/net/netfilter/nf_tables_api.c
+@@ -506,7 +506,7 @@ static int nf_tables_gettable(struct net *net, struct sock *nlsk,
+       int err;
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = nf_tables_dump_tables,
+               };
+               return netlink_dump_start(nlsk, skb, nlh, &c);
+@@ -1092,7 +1092,7 @@ static int nf_tables_getchain(struct net *net, struct sock *nlsk,
+       int err;
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = nf_tables_dump_chains,
+               };
+               return netlink_dump_start(nlsk, skb, nlh, &c);
+@@ -1944,7 +1944,7 @@ static int nf_tables_getrule(struct net *net, struct sock *nlsk,
+       int err;
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              netlink_dump_control_no_const c = {
+                       .dump = nf_tables_dump_rules,
+                       .done = nf_tables_dump_rules_done,
+               };
+@@ -2666,20 +2666,17 @@ static int nf_tables_getset(struct net *net, struct sock *nlsk,
+               return err;
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = nf_tables_dump_sets,
+                       .done = nf_tables_dump_sets_done,
+               };
+               struct nft_ctx *ctx_dump;
+-              ctx_dump = kmalloc(sizeof(*ctx_dump), GFP_KERNEL);
++              ctx_dump = kmemdup(&ctx, sizeof(ctx), GFP_KERNEL);
+               if (ctx_dump == NULL)
+                       return -ENOMEM;
+-              *ctx_dump = ctx;
+-              c.data = ctx_dump;
+-
+-              return netlink_dump_start(nlsk, skb, nlh, &c);
++              return __netlink_dump_start(nlsk, skb, nlh, &c, ctx_dump, THIS_MODULE);
+       }
+       /* Only accept unspec with dump */
+@@ -3268,7 +3265,7 @@ static int nf_tables_getsetelem(struct net *net, struct sock *nlsk,
+               return PTR_ERR(set);
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = nf_tables_dump_set,
+               };
+               return netlink_dump_start(nlsk, skb, nlh, &c);
+diff --git a/net/netfilter/nfnetlink_acct.c b/net/netfilter/nfnetlink_acct.c
+index d44d89b..c834ed3 100644
+--- a/net/netfilter/nfnetlink_acct.c
++++ b/net/netfilter/nfnetlink_acct.c
+@@ -28,8 +28,8 @@ MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
+ MODULE_DESCRIPTION("nfacct: Extended Netfilter accounting infrastructure");
+ struct nf_acct {
+-      atomic64_t              pkts;
+-      atomic64_t              bytes;
++      atomic64_unchecked_t    pkts;
++      atomic64_unchecked_t    bytes;
+       unsigned long           flags;
+       struct list_head        head;
+       atomic_t                refcnt;
+@@ -76,8 +76,8 @@ static int nfnl_acct_new(struct net *net, struct sock *nfnl,
+       if (matching) {
+               if (nlh->nlmsg_flags & NLM_F_REPLACE) {
+                       /* reset counters if you request a replacement. */
+-                      atomic64_set(&matching->pkts, 0);
+-                      atomic64_set(&matching->bytes, 0);
++                      atomic64_set_unchecked(&matching->pkts, 0);
++                      atomic64_set_unchecked(&matching->bytes, 0);
+                       smp_mb__before_atomic();
+                       /* reset overquota flag if quota is enabled. */
+                       if ((matching->flags & NFACCT_F_QUOTA))
+@@ -116,11 +116,11 @@ static int nfnl_acct_new(struct net *net, struct sock *nfnl,
+       strncpy(nfacct->name, nla_data(tb[NFACCT_NAME]), NFACCT_NAME_MAX);
+       if (tb[NFACCT_BYTES]) {
+-              atomic64_set(&nfacct->bytes,
++              atomic64_set_unchecked(&nfacct->bytes,
+                            be64_to_cpu(nla_get_be64(tb[NFACCT_BYTES])));
+       }
+       if (tb[NFACCT_PKTS]) {
+-              atomic64_set(&nfacct->pkts,
++              atomic64_set_unchecked(&nfacct->pkts,
+                            be64_to_cpu(nla_get_be64(tb[NFACCT_PKTS])));
+       }
+       atomic_set(&nfacct->refcnt, 1);
+@@ -153,14 +153,14 @@ nfnl_acct_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
+       old_flags = acct->flags;
+       if (type == NFNL_MSG_ACCT_GET_CTRZERO) {
+-              pkts = atomic64_xchg(&acct->pkts, 0);
+-              bytes = atomic64_xchg(&acct->bytes, 0);
++              pkts = atomic64_xchg_unchecked(&acct->pkts, 0);
++              bytes = atomic64_xchg_unchecked(&acct->bytes, 0);
+               smp_mb__before_atomic();
+               if (acct->flags & NFACCT_F_QUOTA)
+                       clear_bit(NFACCT_OVERQUOTA_BIT, &acct->flags);
+       } else {
+-              pkts = atomic64_read(&acct->pkts);
+-              bytes = atomic64_read(&acct->bytes);
++              pkts = atomic64_read_unchecked(&acct->pkts);
++              bytes = atomic64_read_unchecked(&acct->bytes);
+       }
+       if (nla_put_be64(skb, NFACCT_PKTS, cpu_to_be64(pkts),
+                        NFACCT_PAD) ||
+@@ -269,10 +269,11 @@ static int nfnl_acct_get(struct net *net, struct sock *nfnl,
+       char *acct_name;
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = nfnl_acct_dump,
+                       .done = nfnl_acct_done,
+               };
++              void *data = NULL;
+               if (tb[NFACCT_FILTER]) {
+                       struct nfacct_filter *filter;
+@@ -281,9 +282,9 @@ static int nfnl_acct_get(struct net *net, struct sock *nfnl,
+                       if (IS_ERR(filter))
+                               return PTR_ERR(filter);
+-                      c.data = filter;
++                      data = filter;
+               }
+-              return netlink_dump_start(nfnl, skb, nlh, &c);
++              return __netlink_dump_start(nfnl, skb, nlh, &c, data, THIS_MODULE);
+       }
+       if (!tb[NFACCT_NAME])
+@@ -438,8 +439,8 @@ EXPORT_SYMBOL_GPL(nfnl_acct_put);
+ void nfnl_acct_update(const struct sk_buff *skb, struct nf_acct *nfacct)
+ {
+-      atomic64_inc(&nfacct->pkts);
+-      atomic64_add(skb->len, &nfacct->bytes);
++      atomic64_inc_unchecked(&nfacct->pkts);
++      atomic64_add_unchecked(skb->len, &nfacct->bytes);
+ }
+ EXPORT_SYMBOL_GPL(nfnl_acct_update);
+@@ -475,7 +476,7 @@ int nfnl_acct_overquota(struct net *net, const struct sk_buff *skb,
+       quota = (u64 *)nfacct->data;
+       now = (nfacct->flags & NFACCT_F_QUOTA_PKTS) ?
+-             atomic64_read(&nfacct->pkts) : atomic64_read(&nfacct->bytes);
++             atomic64_read_unchecked(&nfacct->pkts) : atomic64_read_unchecked(&nfacct->bytes);
+       ret = now > *quota;
+diff --git a/net/netfilter/nfnetlink_cthelper.c b/net/netfilter/nfnetlink_cthelper.c
+index e924e95..1e2e233 100644
+--- a/net/netfilter/nfnetlink_cthelper.c
++++ b/net/netfilter/nfnetlink_cthelper.c
+@@ -510,7 +510,7 @@ static int nfnl_cthelper_get(struct net *net, struct sock *nfnl,
+       bool tuple_set = false;
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = nfnl_cthelper_dump_table,
+               };
+               return netlink_dump_start(nfnl, skb, nlh, &c);
+diff --git a/net/netfilter/nfnetlink_cttimeout.c b/net/netfilter/nfnetlink_cttimeout.c
+index 139e086..73899bc 100644
+--- a/net/netfilter/nfnetlink_cttimeout.c
++++ b/net/netfilter/nfnetlink_cttimeout.c
+@@ -245,7 +245,7 @@ static int cttimeout_get_timeout(struct net *net, struct sock *ctnl,
+       struct ctnl_timeout *cur;
+       if (nlh->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = ctnl_timeout_dump,
+               };
+               return netlink_dump_start(ctnl, skb, nlh, &c);
+diff --git a/net/netfilter/nfnetlink_log.c b/net/netfilter/nfnetlink_log.c
+index 6577db5..1a45ef7 100644
+--- a/net/netfilter/nfnetlink_log.c
++++ b/net/netfilter/nfnetlink_log.c
+@@ -85,7 +85,7 @@ static int nfnl_log_net_id __read_mostly;
+ struct nfnl_log_net {
+       spinlock_t instances_lock;
+       struct hlist_head instance_table[INSTANCE_BUCKETS];
+-      atomic_t global_seq;
++      atomic_unchecked_t global_seq;
+ };
+ static struct nfnl_log_net *nfnl_log_pernet(struct net *net)
+@@ -570,7 +570,7 @@ __build_packet_message(struct nfnl_log_net *log,
+       /* global sequence number */
+       if ((inst->flags & NFULNL_CFG_F_SEQ_GLOBAL) &&
+           nla_put_be32(inst->skb, NFULA_SEQ_GLOBAL,
+-                       htonl(atomic_inc_return(&log->global_seq))))
++                       htonl(atomic_inc_return_unchecked(&log->global_seq))))
+               goto nla_put_failure;
+       if (ct && nfnl_ct->build(inst->skb, ct, ctinfo,
+diff --git a/net/netfilter/nft_compat.c b/net/netfilter/nft_compat.c
+index c21e7eb..79f6314 100644
+--- a/net/netfilter/nft_compat.c
++++ b/net/netfilter/nft_compat.c
+@@ -337,14 +337,7 @@ static void nft_match_eval(const struct nft_expr *expr,
+               return;
+       }
+-      switch (ret ? 1 : 0) {
+-      case 1:
+-              regs->verdict.code = NFT_CONTINUE;
+-              break;
+-      case 0:
+-              regs->verdict.code = NFT_BREAK;
+-              break;
+-      }
++      regs->verdict.code = ret ? NFT_CONTINUE : NFT_BREAK;
+ }
+ static const struct nla_policy nft_match_policy[NFTA_MATCH_MAX + 1] = {
+diff --git a/net/netfilter/xt_IDLETIMER.c b/net/netfilter/xt_IDLETIMER.c
+index daf45da..615f970 100644
+--- a/net/netfilter/xt_IDLETIMER.c
++++ b/net/netfilter/xt_IDLETIMER.c
+@@ -41,19 +41,13 @@
+ #include <linux/workqueue.h>
+ #include <linux/sysfs.h>
+-struct idletimer_tg_attr {
+-      struct attribute attr;
+-      ssize_t (*show)(struct kobject *kobj,
+-                      struct attribute *attr, char *buf);
+-};
+-
+ struct idletimer_tg {
+       struct list_head entry;
+       struct timer_list timer;
+       struct work_struct work;
+       struct kobject *kobj;
+-      struct idletimer_tg_attr attr;
++      struct device_attribute attr;
+       unsigned int refcnt;
+ };
+@@ -78,7 +72,7 @@ struct idletimer_tg *__idletimer_tg_find_by_label(const char *label)
+       return NULL;
+ }
+-static ssize_t idletimer_tg_show(struct kobject *kobj, struct attribute *attr,
++static ssize_t idletimer_tg_show(struct device *dev, struct device_attribute *attr,
+                                char *buf)
+ {
+       struct idletimer_tg *timer;
+@@ -86,7 +80,7 @@ static ssize_t idletimer_tg_show(struct kobject *kobj, struct attribute *attr,
+       mutex_lock(&list_mutex);
+-      timer = __idletimer_tg_find_by_label(attr->name);
++      timer = __idletimer_tg_find_by_label(attr->attr.name);
+       if (timer)
+               expires = timer->timer.expires;
+diff --git a/net/netfilter/xt_gradm.c b/net/netfilter/xt_gradm.c
+new file mode 100644
+index 0000000..a7cb915
+--- /dev/null
++++ b/net/netfilter/xt_gradm.c
+@@ -0,0 +1,51 @@
++/*
++ *    gradm match for netfilter
++ *    Copyright (c) Zbigniew Krzystolik, 2010
++ *
++ *    This program is free software; you can redistribute it and/or modify
++ *    it under the terms of the GNU General Public License; either version
++ *    2 or 3 as published by the Free Software Foundation.
++ */
++#include <linux/module.h>
++#include <linux/moduleparam.h>
++#include <linux/skbuff.h>
++#include <linux/netfilter/x_tables.h>
++#include <linux/grsecurity.h>
++#include <linux/netfilter/xt_gradm.h>
++
++static bool
++gradm_mt(const struct sk_buff *skb, struct xt_action_param *par)
++{
++      const struct xt_gradm_mtinfo *info = par->matchinfo;
++      bool retval = false;
++      if (gr_acl_is_enabled())
++              retval = true;
++      return retval ^ info->invflags;
++}
++
++static struct xt_match gradm_mt_reg __read_mostly = {
++              .name       = "gradm",
++              .revision   = 0,
++              .family     = NFPROTO_UNSPEC,
++              .match      = gradm_mt,
++              .matchsize  = XT_ALIGN(sizeof(struct xt_gradm_mtinfo)),
++              .me         = THIS_MODULE,
++};
++
++static int __init gradm_mt_init(void)
++{
++      return xt_register_match(&gradm_mt_reg);
++}
++
++static void __exit gradm_mt_exit(void)
++{
++      xt_unregister_match(&gradm_mt_reg);
++}
++
++module_init(gradm_mt_init);
++module_exit(gradm_mt_exit);
++MODULE_AUTHOR("Zbigniew Krzystolik <zbyniu@destrukcja.pl>");
++MODULE_DESCRIPTION("Xtables: Grsecurity RBAC match");
++MODULE_LICENSE("GPL");
++MODULE_ALIAS("ipt_gradm");
++MODULE_ALIAS("ip6t_gradm");
+diff --git a/net/netfilter/xt_hashlimit.c b/net/netfilter/xt_hashlimit.c
+index 1786968..1ec6dac 100644
+--- a/net/netfilter/xt_hashlimit.c
++++ b/net/netfilter/xt_hashlimit.c
+@@ -869,11 +869,11 @@ static int __net_init hashlimit_proc_net_init(struct net *net)
+ {
+       struct hashlimit_net *hashlimit_net = hashlimit_pernet(net);
+-      hashlimit_net->ipt_hashlimit = proc_mkdir("ipt_hashlimit", net->proc_net);
++      hashlimit_net->ipt_hashlimit = proc_mkdir_restrict("ipt_hashlimit", net->proc_net);
+       if (!hashlimit_net->ipt_hashlimit)
+               return -ENOMEM;
+ #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
+-      hashlimit_net->ip6t_hashlimit = proc_mkdir("ip6t_hashlimit", net->proc_net);
++      hashlimit_net->ip6t_hashlimit = proc_mkdir_restrict("ip6t_hashlimit", net->proc_net);
+       if (!hashlimit_net->ip6t_hashlimit) {
+               remove_proc_entry("ipt_hashlimit", net->proc_net);
+               return -ENOMEM;
+diff --git a/net/netfilter/xt_recent.c b/net/netfilter/xt_recent.c
+index d725a27..14b0c51 100644
+--- a/net/netfilter/xt_recent.c
++++ b/net/netfilter/xt_recent.c
+@@ -642,7 +642,7 @@ static int __net_init recent_proc_net_init(struct net *net)
+ {
+       struct recent_net *recent_net = recent_pernet(net);
+-      recent_net->xt_recent = proc_mkdir("xt_recent", net->proc_net);
++      recent_net->xt_recent = proc_mkdir_restrict("xt_recent", net->proc_net);
+       if (!recent_net->xt_recent)
+               return -ENOMEM;
+       return 0;
+diff --git a/net/netfilter/xt_statistic.c b/net/netfilter/xt_statistic.c
+index 11de55e..f25e448 100644
+--- a/net/netfilter/xt_statistic.c
++++ b/net/netfilter/xt_statistic.c
+@@ -19,7 +19,7 @@
+ #include <linux/module.h>
+ struct xt_statistic_priv {
+-      atomic_t count;
++      atomic_unchecked_t count;
+ } ____cacheline_aligned_in_smp;
+ MODULE_LICENSE("GPL");
+@@ -42,9 +42,9 @@ statistic_mt(const struct sk_buff *skb, struct xt_action_param *par)
+               break;
+       case XT_STATISTIC_MODE_NTH:
+               do {
+-                      oval = atomic_read(&info->master->count);
++                      oval = atomic_read_unchecked(&info->master->count);
+                       nval = (oval == info->u.nth.every) ? 0 : oval + 1;
+-              } while (atomic_cmpxchg(&info->master->count, oval, nval) != oval);
++              } while (atomic_cmpxchg_unchecked(&info->master->count, oval, nval) != oval);
+               if (nval == 0)
+                       ret = !ret;
+               break;
+@@ -64,7 +64,7 @@ static int statistic_mt_check(const struct xt_mtchk_param *par)
+       info->master = kzalloc(sizeof(*info->master), GFP_KERNEL);
+       if (info->master == NULL)
+               return -ENOMEM;
+-      atomic_set(&info->master->count, info->u.nth.count);
++      atomic_set_unchecked(&info->master->count, info->u.nth.count);
+       return 0;
+ }
+diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
+index 627f898c..32d06cc 100644
+--- a/net/netlink/af_netlink.c
++++ b/net/netlink/af_netlink.c
+@@ -287,7 +287,7 @@ static void netlink_overrun(struct sock *sk)
+                       sk->sk_error_report(sk);
+               }
+       }
+-      atomic_inc(&sk->sk_drops);
++      atomic_inc_unchecked(&sk->sk_drops);
+ }
+ static void netlink_rcv_wake(struct sock *sk)
+@@ -1703,11 +1703,12 @@ static void netlink_cmsg_recv_pktinfo(struct msghdr *msg, struct sk_buff *skb)
+ static void netlink_cmsg_listen_all_nsid(struct sock *sk, struct msghdr *msg,
+                                        struct sk_buff *skb)
+ {
++      int nsid = NETLINK_CB(skb).nsid;
++
+       if (!NETLINK_CB(skb).nsid_is_set)
+               return;
+-      put_cmsg(msg, SOL_NETLINK, NETLINK_LISTEN_ALL_NSID, sizeof(int),
+-               &NETLINK_CB(skb).nsid);
++      put_cmsg(msg, SOL_NETLINK, NETLINK_LISTEN_ALL_NSID, sizeof(nsid), &nsid);
+ }
+ static int netlink_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
+@@ -2150,7 +2151,9 @@ errout_skb:
+ int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
+                        const struct nlmsghdr *nlh,
+-                       struct netlink_dump_control *control)
++                       struct netlink_dump_control *control,
++                       void *data,
++                       struct module *module)
+ {
+       struct netlink_callback *cb;
+       struct sock *sk;
+@@ -2173,7 +2176,7 @@ int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
+               goto error_unlock;
+       }
+       /* add reference of module which cb->dump belongs to */
+-      if (!try_module_get(control->module)) {
++      if (!try_module_get(module)) {
+               ret = -EPROTONOSUPPORT;
+               goto error_unlock;
+       }
+@@ -2184,8 +2187,8 @@ int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
+       cb->dump = control->dump;
+       cb->done = control->done;
+       cb->nlh = nlh;
+-      cb->data = control->data;
+-      cb->module = control->module;
++      cb->data = data;
++      cb->module = module;
+       cb->min_dump_alloc = control->min_dump_alloc;
+       cb->skb = skb;
+@@ -2452,7 +2455,7 @@ static int netlink_seq_show(struct seq_file *seq, void *v)
+                          sk_wmem_alloc_get(s),
+                          nlk->cb_running,
+                          atomic_read(&s->sk_refcnt),
+-                         atomic_read(&s->sk_drops),
++                         atomic_read_unchecked(&s->sk_drops),
+                          sock_i_ino(s)
+                       );
+@@ -2559,7 +2562,7 @@ static void __init netlink_add_usersock_entry(void)
+       netlink_table_ungrab();
+ }
+-static struct pernet_operations __net_initdata netlink_net_ops = {
++static struct pernet_operations __net_initconst netlink_net_ops = {
+       .init = netlink_net_init,
+       .exit = netlink_net_exit,
+ };
+diff --git a/net/netlink/diag.c b/net/netlink/diag.c
+index 8dd836a..196d1cd 100644
+--- a/net/netlink/diag.c
++++ b/net/netlink/diag.c
+@@ -170,7 +170,7 @@ static int netlink_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
+               return -EINVAL;
+       if (h->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = netlink_diag_dump,
+               };
+               return netlink_dump_start(net->diag_nlsk, skb, h, &c);
+diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c
+index a09132a..75aa387 100644
+--- a/net/netlink/genetlink.c
++++ b/net/netlink/genetlink.c
+@@ -571,28 +571,26 @@ static int genl_family_rcv_msg(struct genl_family *family,
+                       return -EOPNOTSUPP;
+               if (!family->parallel_ops) {
+-                      struct netlink_dump_control c = {
+-                              .module = family->module,
+-                              /* we have const, but the netlink API doesn't */
+-                              .data = (void *)ops,
++                      static struct netlink_dump_control c = {
+                               .start = genl_lock_start,
+                               .dump = genl_lock_dumpit,
+                               .done = genl_lock_done,
+                       };
++                      /* we have const, but the netlink API doesn't */
++                      void *data = (void *)ops;
+                       genl_unlock();
+-                      rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
++                      rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c, data, family->module);
+                       genl_lock();
+               } else {
+-                      struct netlink_dump_control c = {
+-                              .module = family->module,
++                      netlink_dump_control_no_const c = {
+                               .start = ops->start,
+                               .dump = ops->dumpit,
+                               .done = ops->done,
+                       };
+-                      rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c);
++                      rc = __netlink_dump_start(net->genl_sock, skb, nlh, &c, NULL, family->module);
+               }
+               return rc;
+diff --git a/net/openvswitch/vport-geneve.c b/net/openvswitch/vport-geneve.c
+index 5aaf3ba..5080d01 100644
+--- a/net/openvswitch/vport-geneve.c
++++ b/net/openvswitch/vport-geneve.c
+@@ -118,12 +118,17 @@ static struct vport *geneve_create(const struct vport_parms *parms)
+       return ovs_netdev_link(vport, parms->name);
+ }
++static netdev_tx_t geneve_send(struct sk_buff *skb)
++{
++      return dev_queue_xmit(skb);
++}
++
+ static struct vport_ops ovs_geneve_vport_ops = {
+       .type           = OVS_VPORT_TYPE_GENEVE,
+       .create         = geneve_create,
+       .destroy        = ovs_netdev_tunnel_destroy,
+       .get_options    = geneve_get_options,
+-      .send           = dev_queue_xmit,
++      .send           = geneve_send,
+ };
+ static int __init ovs_geneve_tnl_init(void)
+diff --git a/net/openvswitch/vport-gre.c b/net/openvswitch/vport-gre.c
+index 0e72d95..c082af5 100644
+--- a/net/openvswitch/vport-gre.c
++++ b/net/openvswitch/vport-gre.c
+@@ -91,10 +91,15 @@ static struct vport *gre_create(const struct vport_parms *parms)
+       return ovs_netdev_link(vport, parms->name);
+ }
++static netdev_tx_t gre_send(struct sk_buff *skb)
++{
++      return dev_queue_xmit(skb);
++}
++
+ static struct vport_ops ovs_gre_vport_ops = {
+       .type           = OVS_VPORT_TYPE_GRE,
+       .create         = gre_create,
+-      .send           = dev_queue_xmit,
++      .send           = gre_send,
+       .destroy        = ovs_netdev_tunnel_destroy,
+ };
+diff --git a/net/openvswitch/vport-internal_dev.c b/net/openvswitch/vport-internal_dev.c
+index 95c3614..bfd4a19 100644
+--- a/net/openvswitch/vport-internal_dev.c
++++ b/net/openvswitch/vport-internal_dev.c
+@@ -44,7 +44,7 @@ static struct internal_dev *internal_dev_priv(struct net_device *netdev)
+ }
+ /* Called with rcu_read_lock_bh. */
+-static int internal_dev_xmit(struct sk_buff *skb, struct net_device *netdev)
++static netdev_tx_t internal_dev_xmit(struct sk_buff *skb, struct net_device *netdev)
+ {
+       int len, err;
+@@ -153,7 +153,7 @@ static const struct net_device_ops internal_dev_netdev_ops = {
+       .ndo_set_rx_headroom = internal_set_rx_headroom,
+ };
+-static struct rtnl_link_ops internal_dev_link_ops __read_mostly = {
++static struct rtnl_link_ops internal_dev_link_ops = {
+       .kind = "openvswitch",
+ };
+diff --git a/net/openvswitch/vport-netdev.c b/net/openvswitch/vport-netdev.c
+index 4e39723..50265d9 100644
+--- a/net/openvswitch/vport-netdev.c
++++ b/net/openvswitch/vport-netdev.c
+@@ -204,11 +204,16 @@ struct vport *ovs_netdev_get_vport(struct net_device *dev)
+               return NULL;
+ }
++static netdev_tx_t netdev_send(struct sk_buff *skb)
++{
++      return dev_queue_xmit(skb);
++}
++
+ static struct vport_ops ovs_netdev_vport_ops = {
+       .type           = OVS_VPORT_TYPE_NETDEV,
+       .create         = netdev_create,
+       .destroy        = netdev_destroy,
+-      .send           = dev_queue_xmit,
++      .send           = netdev_send,
+ };
+ int __init ovs_netdev_init(void)
+diff --git a/net/openvswitch/vport-vxlan.c b/net/openvswitch/vport-vxlan.c
+index 7eb955e..479c9a6 100644
+--- a/net/openvswitch/vport-vxlan.c
++++ b/net/openvswitch/vport-vxlan.c
+@@ -155,12 +155,17 @@ static struct vport *vxlan_create(const struct vport_parms *parms)
+       return ovs_netdev_link(vport, parms->name);
+ }
++static netdev_tx_t vxlan_send(struct sk_buff *skb)
++{
++      return dev_queue_xmit(skb);
++}
++
+ static struct vport_ops ovs_vxlan_netdev_vport_ops = {
+       .type                   = OVS_VPORT_TYPE_VXLAN,
+       .create                 = vxlan_create,
+       .destroy                = ovs_netdev_tunnel_destroy,
+       .get_options            = vxlan_get_options,
+-      .send                   = dev_queue_xmit,
++      .send                   = vxlan_send,
+ };
+ static int __init ovs_vxlan_tnl_init(void)
+diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
+index 33a4697..c3f149fb 100644
+--- a/net/packet/af_packet.c
++++ b/net/packet/af_packet.c
+@@ -279,7 +279,7 @@ static int packet_direct_xmit(struct sk_buff *skb)
+       return ret;
+ drop:
+-      atomic_long_inc(&dev->tx_dropped);
++      atomic_long_inc_unchecked(&dev->tx_dropped);
+       kfree_skb(skb);
+       return NET_XMIT_DROP;
+ }
+@@ -1392,9 +1392,9 @@ static unsigned int fanout_demux_rollover(struct packet_fanout *f,
+                   packet_rcv_has_room(po_next, skb) == ROOM_NORMAL) {
+                       if (i != j)
+                               po->rollover->sock = i;
+-                      atomic_long_inc(&po->rollover->num);
++                      atomic_long_inc_unchecked(&po->rollover->num);
+                       if (room == ROOM_LOW)
+-                              atomic_long_inc(&po->rollover->num_huge);
++                              atomic_long_inc_unchecked(&po->rollover->num_huge);
+                       return i;
+               }
+@@ -1402,7 +1402,7 @@ static unsigned int fanout_demux_rollover(struct packet_fanout *f,
+                       i = 0;
+       } while (i != j);
+-      atomic_long_inc(&po->rollover->num_failed);
++      atomic_long_inc_unchecked(&po->rollover->num_failed);
+       return idx;
+ }
+@@ -1653,9 +1653,9 @@ static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
+               po->rollover = kzalloc(sizeof(*po->rollover), GFP_KERNEL);
+               if (!po->rollover)
+                       return -ENOMEM;
+-              atomic_long_set(&po->rollover->num, 0);
+-              atomic_long_set(&po->rollover->num_huge, 0);
+-              atomic_long_set(&po->rollover->num_failed, 0);
++              atomic_long_set_unchecked(&po->rollover->num, 0);
++              atomic_long_set_unchecked(&po->rollover->num_huge, 0);
++              atomic_long_set_unchecked(&po->rollover->num_failed, 0);
+       }
+       mutex_lock(&fanout_mutex);
+@@ -2107,7 +2107,7 @@ drop_n_acct:
+       is_drop_n_account = true;
+       spin_lock(&sk->sk_receive_queue.lock);
+       po->stats.stats1.tp_drops++;
+-      atomic_inc(&sk->sk_drops);
++      atomic_inc_unchecked(&sk->sk_drops);
+       spin_unlock(&sk->sk_receive_queue.lock);
+ drop_n_restore:
+@@ -3842,7 +3842,7 @@ static int packet_getsockopt(struct socket *sock, int level, int optname,
+       case PACKET_HDRLEN:
+               if (len > sizeof(int))
+                       len = sizeof(int);
+-              if (copy_from_user(&val, optval, len))
++              if (len > sizeof(val) || copy_from_user(&val, optval, len))
+                       return -EFAULT;
+               switch (val) {
+               case TPACKET_V1:
+@@ -3877,9 +3877,9 @@ static int packet_getsockopt(struct socket *sock, int level, int optname,
+       case PACKET_ROLLOVER_STATS:
+               if (!po->rollover)
+                       return -EINVAL;
+-              rstats.tp_all = atomic_long_read(&po->rollover->num);
+-              rstats.tp_huge = atomic_long_read(&po->rollover->num_huge);
+-              rstats.tp_failed = atomic_long_read(&po->rollover->num_failed);
++              rstats.tp_all = atomic_long_read_unchecked(&po->rollover->num);
++              rstats.tp_huge = atomic_long_read_unchecked(&po->rollover->num_huge);
++              rstats.tp_failed = atomic_long_read_unchecked(&po->rollover->num_failed);
+               data = &rstats;
+               lv = sizeof(rstats);
+               break;
+@@ -3897,7 +3897,7 @@ static int packet_getsockopt(struct socket *sock, int level, int optname,
+               len = lv;
+       if (put_user(len, optlen))
+               return -EFAULT;
+-      if (copy_to_user(optval, data, len))
++      if (len > sizeof(st) || copy_to_user(optval, data, len))
+               return -EFAULT;
+       return 0;
+ }
+diff --git a/net/packet/diag.c b/net/packet/diag.c
+index 0ed68f0..54c1dbe 100644
+--- a/net/packet/diag.c
++++ b/net/packet/diag.c
+@@ -236,7 +236,7 @@ static int packet_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
+               return -EINVAL;
+       if (h->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = packet_diag_dump,
+               };
+               return netlink_dump_start(net->diag_nlsk, skb, h, &c);
+diff --git a/net/packet/internal.h b/net/packet/internal.h
+index 9ee4631..6b79352 100644
+--- a/net/packet/internal.h
++++ b/net/packet/internal.h
+@@ -93,9 +93,9 @@ struct packet_fanout {
+ struct packet_rollover {
+       int                     sock;
+       struct rcu_head         rcu;
+-      atomic_long_t           num;
+-      atomic_long_t           num_huge;
+-      atomic_long_t           num_failed;
++      atomic_long_unchecked_t num;
++      atomic_long_unchecked_t num_huge;
++      atomic_long_unchecked_t num_failed;
+ #define ROLLOVER_HLEN (L1_CACHE_BYTES / sizeof(u32))
+       u32                     history[ROLLOVER_HLEN] ____cacheline_aligned;
+ } ____cacheline_aligned_in_smp;
+diff --git a/net/phonet/pep.c b/net/phonet/pep.c
+index 850a86c..8884a37 100644
+--- a/net/phonet/pep.c
++++ b/net/phonet/pep.c
+@@ -388,7 +388,7 @@ static int pipe_do_rcv(struct sock *sk, struct sk_buff *skb)
+       case PNS_PEP_CTRL_REQ:
+               if (skb_queue_len(&pn->ctrlreq_queue) >= PNPIPE_CTRLREQ_MAX) {
+-                      atomic_inc(&sk->sk_drops);
++                      atomic_inc_unchecked(&sk->sk_drops);
+                       break;
+               }
+               __skb_pull(skb, 4);
+@@ -409,7 +409,7 @@ static int pipe_do_rcv(struct sock *sk, struct sk_buff *skb)
+               }
+               if (pn->rx_credits == 0) {
+-                      atomic_inc(&sk->sk_drops);
++                      atomic_inc_unchecked(&sk->sk_drops);
+                       err = -ENOBUFS;
+                       break;
+               }
+@@ -579,7 +579,7 @@ static int pipe_handler_do_rcv(struct sock *sk, struct sk_buff *skb)
+               }
+               if (pn->rx_credits == 0) {
+-                      atomic_inc(&sk->sk_drops);
++                      atomic_inc_unchecked(&sk->sk_drops);
+                       err = NET_RX_DROP;
+                       break;
+               }
+diff --git a/net/phonet/socket.c b/net/phonet/socket.c
+index ffd5f22..94a18ec 100644
+--- a/net/phonet/socket.c
++++ b/net/phonet/socket.c
+@@ -613,7 +613,7 @@ static int pn_sock_seq_show(struct seq_file *seq, void *v)
+                       from_kuid_munged(seq_user_ns(seq), sock_i_uid(sk)),
+                       sock_i_ino(sk),
+                       atomic_read(&sk->sk_refcnt), sk,
+-                      atomic_read(&sk->sk_drops));
++                      atomic_read_unchecked(&sk->sk_drops));
+       }
+       seq_pad(seq, '\n');
+       return 0;
+diff --git a/net/phonet/sysctl.c b/net/phonet/sysctl.c
+index c02a8c4..3c5b600 100644
+--- a/net/phonet/sysctl.c
++++ b/net/phonet/sysctl.c
+@@ -67,7 +67,7 @@ static int proc_local_port_range(struct ctl_table *table, int write,
+ {
+       int ret;
+       int range[2] = {local_port_range[0], local_port_range[1]};
+-      struct ctl_table tmp = {
++      ctl_table_no_const tmp = {
+               .data = &range,
+               .maxlen = sizeof(range),
+               .mode = table->mode,
+diff --git a/net/rds/cong.c b/net/rds/cong.c
+index 8398fee..80a1aca 100644
+--- a/net/rds/cong.c
++++ b/net/rds/cong.c
+@@ -78,7 +78,7 @@
+  * finds that the saved generation number is smaller than the global generation
+  * number, it wakes up the process.
+  */
+-static atomic_t               rds_cong_generation = ATOMIC_INIT(0);
++static atomic_unchecked_t             rds_cong_generation = ATOMIC_INIT(0);
+ /*
+  * Congestion monitoring
+@@ -248,7 +248,7 @@ void rds_cong_map_updated(struct rds_cong_map *map, uint64_t portmask)
+       rdsdebug("waking map %p for %pI4\n",
+         map, &map->m_addr);
+       rds_stats_inc(s_cong_update_received);
+-      atomic_inc(&rds_cong_generation);
++      atomic_inc_unchecked(&rds_cong_generation);
+       if (waitqueue_active(&map->m_waitq))
+               wake_up(&map->m_waitq);
+       if (waitqueue_active(&rds_poll_waitq))
+@@ -274,7 +274,7 @@ EXPORT_SYMBOL_GPL(rds_cong_map_updated);
+ int rds_cong_updated_since(unsigned long *recent)
+ {
+-      unsigned long gen = atomic_read(&rds_cong_generation);
++      unsigned long gen = atomic_read_unchecked(&rds_cong_generation);
+       if (likely(*recent == gen))
+               return 0;
+diff --git a/net/rds/ib.h b/net/rds/ib.h
+index 046f750..33fe942 100644
+--- a/net/rds/ib.h
++++ b/net/rds/ib.h
+@@ -153,7 +153,7 @@ struct rds_ib_connection {
+       /* sending acks */
+       unsigned long           i_ack_flags;
+ #ifdef KERNEL_HAS_ATOMIC64
+-      atomic64_t              i_ack_next;     /* next ACK to send */
++      atomic64_unchecked_t    i_ack_next;     /* next ACK to send */
+ #else
+       spinlock_t              i_ack_lock;     /* protect i_ack_next */
+       u64                     i_ack_next;     /* next ACK to send */
+diff --git a/net/rds/ib_cm.c b/net/rds/ib_cm.c
+index 5b2ab95..be81157 100644
+--- a/net/rds/ib_cm.c
++++ b/net/rds/ib_cm.c
+@@ -833,7 +833,7 @@ void rds_ib_conn_path_shutdown(struct rds_conn_path *cp)
+       /* Clear the ACK state */
+       clear_bit(IB_ACK_IN_FLIGHT, &ic->i_ack_flags);
+ #ifdef KERNEL_HAS_ATOMIC64
+-      atomic64_set(&ic->i_ack_next, 0);
++      atomic64_set_unchecked(&ic->i_ack_next, 0);
+ #else
+       ic->i_ack_next = 0;
+ #endif
+diff --git a/net/rds/ib_recv.c b/net/rds/ib_recv.c
+index 606a11f..4c55743 100644
+--- a/net/rds/ib_recv.c
++++ b/net/rds/ib_recv.c
+@@ -624,7 +624,7 @@ static u64 rds_ib_get_ack(struct rds_ib_connection *ic)
+ #else
+ void rds_ib_set_ack(struct rds_ib_connection *ic, u64 seq, int ack_required)
+ {
+-      atomic64_set(&ic->i_ack_next, seq);
++      atomic64_set_unchecked(&ic->i_ack_next, seq);
+       if (ack_required) {
+               smp_mb__before_atomic();
+               set_bit(IB_ACK_REQUESTED, &ic->i_ack_flags);
+@@ -636,7 +636,7 @@ static u64 rds_ib_get_ack(struct rds_ib_connection *ic)
+       clear_bit(IB_ACK_REQUESTED, &ic->i_ack_flags);
+       smp_mb__after_atomic();
+-      return atomic64_read(&ic->i_ack_next);
++      return atomic64_read_unchecked(&ic->i_ack_next);
+ }
+ #endif
+diff --git a/net/rds/rds.h b/net/rds/rds.h
+index b2d17f0f..42f94e2 100644
+--- a/net/rds/rds.h
++++ b/net/rds/rds.h
+@@ -500,7 +500,7 @@ struct rds_transport {
+       void (*sync_mr)(void *trans_private, int direction);
+       void (*free_mr)(void *trans_private, int invalidate);
+       void (*flush_mrs)(void);
+-};
++} __do_const;
+ struct rds_sock {
+       struct sock             rs_sk;
+diff --git a/net/rds/tcp.c b/net/rds/tcp.c
+index fcddacc..c6d3c35 100644
+--- a/net/rds/tcp.c
++++ b/net/rds/tcp.c
+@@ -59,7 +59,7 @@ static int rds_tcp_skbuf_handler(struct ctl_table *ctl, int write,
+ static int rds_tcp_min_sndbuf = SOCK_MIN_SNDBUF;
+ static int rds_tcp_min_rcvbuf = SOCK_MIN_RCVBUF;
+-static struct ctl_table rds_tcp_sysctl_table[] = {
++static ctl_table_no_const rds_tcp_sysctl_table[] = {
+ #define       RDS_TCP_SNDBUF  0
+       {
+               .procname       = "rds_tcp_sndbuf",
+@@ -88,7 +88,7 @@ void rds_tcp_nonagle(struct socket *sock)
+       int val = 1;
+       set_fs(KERNEL_DS);
+-      sock->ops->setsockopt(sock, SOL_TCP, TCP_NODELAY, (char __user *)&val,
++      sock->ops->setsockopt(sock, SOL_TCP, TCP_NODELAY, (char __force_user *)&val,
+                             sizeof(val));
+       set_fs(oldfs);
+ }
+@@ -415,7 +415,7 @@ void rds_tcp_accept_work(struct sock *sk)
+ static __net_init int rds_tcp_init_net(struct net *net)
+ {
+       struct rds_tcp_net *rtn = net_generic(net, rds_tcp_netid);
+-      struct ctl_table *tbl;
++      ctl_table_no_const *tbl;
+       int err = 0;
+       memset(rtn, 0, sizeof(*rtn));
+diff --git a/net/rds/tcp.h b/net/rds/tcp.h
+index 9a1cc89..d5eb68d 100644
+--- a/net/rds/tcp.h
++++ b/net/rds/tcp.h
+@@ -17,9 +17,9 @@ struct rds_tcp_connection {
+        */
+       struct mutex            t_conn_path_lock;
+       struct socket           *t_sock;
+-      void                    *t_orig_write_space;
+-      void                    *t_orig_data_ready;
+-      void                    *t_orig_state_change;
++      void                    (*t_orig_write_space)(struct sock *sk);
++      void                    (*t_orig_data_ready)(struct sock *sk);
++      void                    (*t_orig_state_change)(struct sock *sk);
+       struct rds_tcp_incoming *t_tinc;
+       size_t                  t_tinc_hdr_rem;
+diff --git a/net/rds/tcp_send.c b/net/rds/tcp_send.c
+index 89d09b4..1bc5525 100644
+--- a/net/rds/tcp_send.c
++++ b/net/rds/tcp_send.c
+@@ -44,7 +44,7 @@ static void rds_tcp_cork(struct socket *sock, int val)
+       oldfs = get_fs();
+       set_fs(KERNEL_DS);
+-      sock->ops->setsockopt(sock, SOL_TCP, TCP_CORK, (char __user *)&val,
++      sock->ops->setsockopt(sock, SOL_TCP, TCP_CORK, (char __force_user *)&val,
+                             sizeof(val));
+       set_fs(oldfs);
+ }
+diff --git a/net/rxrpc/af_rxrpc.c b/net/rxrpc/af_rxrpc.c
+index 88effad..5de1d9c 100644
+--- a/net/rxrpc/af_rxrpc.c
++++ b/net/rxrpc/af_rxrpc.c
+@@ -40,7 +40,7 @@ static const struct proto_ops rxrpc_rpc_ops;
+ u32 rxrpc_epoch;
+ /* current debugging ID */
+-atomic_t rxrpc_debug_id;
++atomic_unchecked_t rxrpc_debug_id;
+ /* count of skbs currently in use */
+ atomic_t rxrpc_n_skbs;
+diff --git a/net/rxrpc/ar-internal.h b/net/rxrpc/ar-internal.h
+index ff83fb1..1b148b0 100644
+--- a/net/rxrpc/ar-internal.h
++++ b/net/rxrpc/ar-internal.h
+@@ -85,7 +85,7 @@ struct rxrpc_host_header {
+       u32             epoch;          /* client boot timestamp */
+       u32             cid;            /* connection and channel ID */
+       u32             callNumber;     /* call ID (0 for connection-level packets) */
+-      u32             seq;            /* sequence number of pkt in call stream */
++      u32             seq __intentional_overflow(-1); /* sequence number of pkt in call stream */
+       u32             serial;         /* serial number of pkt sent to network */
+       u8              type;           /* packet type */
+       u8              flags;          /* packet flags */
+@@ -321,8 +321,8 @@ struct rxrpc_connection {
+       u32                     remote_abort;   /* remote abort code */
+       int                     error;          /* local error incurred */
+       int                     debug_id;       /* debug ID for printks */
+-      atomic_t                serial;         /* packet serial number counter */
+-      atomic_t                hi_serial;      /* highest serial number received */
++      atomic_unchecked_t      serial;         /* packet serial number counter */
++      atomic_unchecked_t      hi_serial;      /* highest serial number received */
+       atomic_t                avail_chans;    /* number of channels available */
+       u8                      size_align;     /* data size alignment (for security) */
+       u8                      header_size;    /* rxrpc + security header size */
+@@ -426,7 +426,7 @@ struct rxrpc_call {
+       rwlock_t                state_lock;     /* lock for state transition */
+       atomic_t                usage;
+       atomic_t                skb_count;      /* Outstanding packets on this call */
+-      atomic_t                sequence;       /* Tx data packet sequence counter */
++      atomic_unchecked_t      sequence;       /* Tx data packet sequence counter */
+       u32                     local_abort;    /* local abort code */
+       u32                     remote_abort;   /* remote abort code */
+       int                     error_report;   /* Network error (ICMP/local transport) */
+@@ -489,7 +489,7 @@ static inline void rxrpc_abort_call(struct rxrpc_call *call, u32 abort_code)
+  */
+ extern atomic_t rxrpc_n_skbs;
+ extern u32 rxrpc_epoch;
+-extern atomic_t rxrpc_debug_id;
++extern atomic_unchecked_t rxrpc_debug_id;
+ extern struct workqueue_struct *rxrpc_workqueue;
+ /*
+diff --git a/net/rxrpc/call_event.c b/net/rxrpc/call_event.c
+index e60cf65..e7fb167 100644
+--- a/net/rxrpc/call_event.c
++++ b/net/rxrpc/call_event.c
+@@ -157,7 +157,7 @@ static void rxrpc_resend(struct rxrpc_call *call)
+       _enter("{%d,%d,%d,%d},",
+              call->acks_hard, call->acks_unacked,
+-             atomic_read(&call->sequence),
++             atomic_read_unchecked(&call->sequence),
+              CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz));
+       stop = false;
+@@ -180,7 +180,7 @@ static void rxrpc_resend(struct rxrpc_call *call)
+                       sp->need_resend = false;
+                       /* each Tx packet has a new serial number */
+-                      sp->hdr.serial = atomic_inc_return(&call->conn->serial);
++                      sp->hdr.serial = atomic_inc_return_unchecked(&call->conn->serial);
+                       whdr = (struct rxrpc_wire_header *)txb->head;
+                       whdr->serial = htonl(sp->hdr.serial);
+@@ -384,7 +384,7 @@ static void rxrpc_rotate_tx_window(struct rxrpc_call *call, u32 hard)
+  */
+ static void rxrpc_clear_tx_window(struct rxrpc_call *call)
+ {
+-      rxrpc_rotate_tx_window(call, atomic_read(&call->sequence));
++      rxrpc_rotate_tx_window(call, atomic_read_unchecked(&call->sequence));
+ }
+ /*
+@@ -609,7 +609,7 @@ process_further:
+               latest = sp->hdr.serial;
+               hard = ntohl(ack.firstPacket);
+-              tx = atomic_read(&call->sequence);
++              tx = atomic_read_unchecked(&call->sequence);
+               _proto("Rx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
+                      latest,
+@@ -1155,7 +1155,7 @@ skip_msg_init:
+       goto maybe_reschedule;
+ send_ACK_with_skew:
+-      ack.maxSkew = htons(atomic_read(&call->conn->hi_serial) -
++      ack.maxSkew = htons(atomic_read_unchecked(&call->conn->hi_serial) -
+                           ntohl(ack.serial));
+ send_ACK:
+       mtu = call->conn->params.peer->if_mtu;
+@@ -1167,7 +1167,7 @@ send_ACK:
+       ackinfo.rxMTU   = htonl(rxrpc_rx_mtu);
+       ackinfo.jumbo_max = htonl(rxrpc_rx_jumbo_max);
+-      serial = atomic_inc_return(&call->conn->serial);
++      serial = atomic_inc_return_unchecked(&call->conn->serial);
+       whdr.serial = htonl(serial);
+       _proto("Tx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
+              serial,
+@@ -1186,7 +1186,7 @@ send_ACK:
+ send_message:
+       _debug("send message");
+-      serial = atomic_inc_return(&call->conn->serial);
++      serial = atomic_inc_return_unchecked(&call->conn->serial);
+       whdr.serial = htonl(serial);
+       _proto("Tx %s %%%u", rxrpc_pkts[whdr.type], serial);
+ send_message_2:
+diff --git a/net/rxrpc/call_object.c b/net/rxrpc/call_object.c
+index ae057e0..9cc546d 100644
+--- a/net/rxrpc/call_object.c
++++ b/net/rxrpc/call_object.c
+@@ -134,7 +134,7 @@ static struct rxrpc_call *rxrpc_alloc_call(gfp_t gfp)
+       spin_lock_init(&call->lock);
+       rwlock_init(&call->state_lock);
+       atomic_set(&call->usage, 1);
+-      call->debug_id = atomic_inc_return(&rxrpc_debug_id);
++      call->debug_id = atomic_inc_return_unchecked(&rxrpc_debug_id);
+       memset(&call->sock_node, 0xed, sizeof(call->sock_node));
+diff --git a/net/rxrpc/conn_event.c b/net/rxrpc/conn_event.c
+index cee0f35..2b9be7f 100644
+--- a/net/rxrpc/conn_event.c
++++ b/net/rxrpc/conn_event.c
+@@ -116,7 +116,7 @@ static int rxrpc_abort_connection(struct rxrpc_connection *conn,
+       len = iov[0].iov_len + iov[1].iov_len;
+-      serial = atomic_inc_return(&conn->serial);
++      serial = atomic_inc_return_unchecked(&conn->serial);
+       whdr.serial = htonl(serial);
+       _proto("Tx CONN ABORT %%%u { %d }", serial, conn->local_abort);
+diff --git a/net/rxrpc/conn_object.c b/net/rxrpc/conn_object.c
+index 896d844..ce1390a1 100644
+--- a/net/rxrpc/conn_object.c
++++ b/net/rxrpc/conn_object.c
+@@ -52,7 +52,7 @@ struct rxrpc_connection *rxrpc_alloc_connection(gfp_t gfp)
+                * on the rxrpc_connections list.
+                */
+               atomic_set(&conn->usage, 2);
+-              conn->debug_id = atomic_inc_return(&rxrpc_debug_id);
++              conn->debug_id = atomic_inc_return_unchecked(&rxrpc_debug_id);
+               atomic_set(&conn->avail_chans, RXRPC_MAXCALLS);
+               conn->size_align = 4;
+               conn->header_size = sizeof(struct rxrpc_wire_header);
+diff --git a/net/rxrpc/input.c b/net/rxrpc/input.c
+index 70bb778..8b3411c 100644
+--- a/net/rxrpc/input.c
++++ b/net/rxrpc/input.c
+@@ -323,9 +323,9 @@ void rxrpc_fast_process_packet(struct rxrpc_call *call, struct sk_buff *skb)
+       /* track the latest serial number on this connection for ACK packet
+        * information */
+-      hi_serial = atomic_read(&call->conn->hi_serial);
++      hi_serial = atomic_read_unchecked(&call->conn->hi_serial);
+       while (sp->hdr.serial > hi_serial)
+-              hi_serial = atomic_cmpxchg(&call->conn->hi_serial, hi_serial,
++              hi_serial = atomic_cmpxchg_unchecked(&call->conn->hi_serial, hi_serial,
+                                          sp->hdr.serial);
+       /* request ACK generation for any ACK or DATA packet that requests
+diff --git a/net/rxrpc/local_object.c b/net/rxrpc/local_object.c
+index a753796..7151cb1 100644
+--- a/net/rxrpc/local_object.c
++++ b/net/rxrpc/local_object.c
+@@ -84,7 +84,7 @@ static struct rxrpc_local *rxrpc_alloc_local(const struct sockaddr_rxrpc *srx)
+               spin_lock_init(&local->client_conns_lock);
+               spin_lock_init(&local->lock);
+               rwlock_init(&local->services_lock);
+-              local->debug_id = atomic_inc_return(&rxrpc_debug_id);
++              local->debug_id = atomic_inc_return_unchecked(&rxrpc_debug_id);
+               memcpy(&local->srx, srx, sizeof(*srx));
+       }
+diff --git a/net/rxrpc/output.c b/net/rxrpc/output.c
+index f4bda06..afdfbd2 100644
+--- a/net/rxrpc/output.c
++++ b/net/rxrpc/output.c
+@@ -657,13 +657,13 @@ static int rxrpc_send_data(struct rxrpc_sock *rx,
+                                       memset(skb_put(skb, pad), 0, pad);
+                       }
+-                      seq = atomic_inc_return(&call->sequence);
++                      seq = atomic_inc_return_unchecked(&call->sequence);
+                       sp->hdr.epoch   = conn->proto.epoch;
+                       sp->hdr.cid     = call->cid;
+                       sp->hdr.callNumber = call->call_id;
+                       sp->hdr.seq     = seq;
+-                      sp->hdr.serial  = atomic_inc_return(&conn->serial);
++                      sp->hdr.serial  = atomic_inc_return_unchecked(&conn->serial);
+                       sp->hdr.type    = RXRPC_PACKET_TYPE_DATA;
+                       sp->hdr.userStatus = 0;
+                       sp->hdr.securityIndex = conn->security_ix;
+diff --git a/net/rxrpc/peer_object.c b/net/rxrpc/peer_object.c
+index 538e983..854d3fb 100644
+--- a/net/rxrpc/peer_object.c
++++ b/net/rxrpc/peer_object.c
+@@ -191,7 +191,7 @@ struct rxrpc_peer *rxrpc_alloc_peer(struct rxrpc_local *local, gfp_t gfp)
+               peer->service_conns = RB_ROOT;
+               seqlock_init(&peer->service_conn_lock);
+               spin_lock_init(&peer->lock);
+-              peer->debug_id = atomic_inc_return(&rxrpc_debug_id);
++              peer->debug_id = atomic_inc_return_unchecked(&rxrpc_debug_id);
+       }
+       _leave(" = %p", peer);
+diff --git a/net/rxrpc/proc.c b/net/rxrpc/proc.c
+index ced5f07..26cd115 100644
+--- a/net/rxrpc/proc.c
++++ b/net/rxrpc/proc.c
+@@ -164,8 +164,8 @@ static int rxrpc_connection_seq_show(struct seq_file *seq, void *v)
+                  atomic_read(&conn->usage),
+                  rxrpc_conn_states[conn->state],
+                  key_serial(conn->params.key),
+-                 atomic_read(&conn->serial),
+-                 atomic_read(&conn->hi_serial));
++                 atomic_read_unchecked(&conn->serial),
++                 atomic_read_unchecked(&conn->hi_serial));
+       return 0;
+ }
+diff --git a/net/rxrpc/rxkad.c b/net/rxrpc/rxkad.c
+index 63afa9e..5931eae 100644
+--- a/net/rxrpc/rxkad.c
++++ b/net/rxrpc/rxkad.c
+@@ -599,7 +599,7 @@ static int rxkad_issue_challenge(struct rxrpc_connection *conn)
+       len = iov[0].iov_len + iov[1].iov_len;
+-      serial = atomic_inc_return(&conn->serial);
++      serial = atomic_inc_return_unchecked(&conn->serial);
+       whdr.serial = htonl(serial);
+       _proto("Tx CHALLENGE %%%u", serial);
+@@ -653,7 +653,7 @@ static int rxkad_send_response(struct rxrpc_connection *conn,
+       len = iov[0].iov_len + iov[1].iov_len + iov[2].iov_len;
+-      serial = atomic_inc_return(&conn->serial);
++      serial = atomic_inc_return_unchecked(&conn->serial);
+       whdr.serial = htonl(serial);
+       _proto("Tx RESPONSE %%%u", serial);
+diff --git a/net/sched/sch_generic.c b/net/sched/sch_generic.c
+index 657c133..756ac5e 100644
+--- a/net/sched/sch_generic.c
++++ b/net/sched/sch_generic.c
+@@ -362,7 +362,7 @@ void netif_carrier_on(struct net_device *dev)
+       if (test_and_clear_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
+               if (dev->reg_state == NETREG_UNINITIALIZED)
+                       return;
+-              atomic_inc(&dev->carrier_changes);
++              atomic_inc_unchecked(&dev->carrier_changes);
+               linkwatch_fire_event(dev);
+               if (netif_running(dev))
+                       __netdev_watchdog_up(dev);
+@@ -381,7 +381,7 @@ void netif_carrier_off(struct net_device *dev)
+       if (!test_and_set_bit(__LINK_STATE_NOCARRIER, &dev->state)) {
+               if (dev->reg_state == NETREG_UNINITIALIZED)
+                       return;
+-              atomic_inc(&dev->carrier_changes);
++              atomic_inc_unchecked(&dev->carrier_changes);
+               linkwatch_fire_event(dev);
+       }
+ }
+diff --git a/net/sched/sch_tbf.c b/net/sched/sch_tbf.c
+index 303355c..d6ce615 100644
+--- a/net/sched/sch_tbf.c
++++ b/net/sched/sch_tbf.c
+@@ -162,7 +162,8 @@ static int tbf_segment(struct sk_buff *skb, struct Qdisc *sch,
+       struct sk_buff *segs, *nskb;
+       netdev_features_t features = netif_skb_features(skb);
+       unsigned int len = 0, prev_len = qdisc_pkt_len(skb);
+-      int ret, nb;
++      int ret;
++      unsigned int nb;
+       segs = skb_gso_segment(skb, features & ~NETIF_F_GSO_MASK);
+@@ -185,8 +186,10 @@ static int tbf_segment(struct sk_buff *skb, struct Qdisc *sch,
+               segs = nskb;
+       }
+       sch->q.qlen += nb;
+-      if (nb > 1)
+-              qdisc_tree_reduce_backlog(sch, 1 - nb, prev_len - len);
++      if (nb > 1) {
++              nb--;
++              qdisc_tree_reduce_backlog(sch, -nb, prev_len - len);
++      }
+       consume_skb(skb);
+       return nb > 0 ? NET_XMIT_SUCCESS : NET_XMIT_DROP;
+ }
+diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c
+index f473779..ec2667c 100644
+--- a/net/sctp/ipv6.c
++++ b/net/sctp/ipv6.c
+@@ -990,7 +990,7 @@ static const struct inet6_protocol sctpv6_protocol = {
+       .flags        = INET6_PROTO_NOPOLICY | INET6_PROTO_FINAL,
+ };
+-static struct sctp_af sctp_af_inet6 = {
++static struct sctp_af sctp_af_inet6 __read_only = {
+       .sa_family         = AF_INET6,
+       .sctp_xmit         = sctp_v6_xmit,
+       .setsockopt        = ipv6_setsockopt,
+@@ -1047,7 +1047,7 @@ void sctp_v6_pf_init(void)
+ void sctp_v6_pf_exit(void)
+ {
+-      list_del(&sctp_af_inet6.list);
++      pax_list_del(&sctp_af_inet6.list);
+ }
+ /* Initialize IPv6 support and register with socket layer.  */
+diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c
+index 7b523e3..0fe6a38 100644
+--- a/net/sctp/protocol.c
++++ b/net/sctp/protocol.c
+@@ -860,8 +860,10 @@ int sctp_register_af(struct sctp_af *af)
+               return 0;
+       }
++      pax_open_kernel();
+       INIT_LIST_HEAD(&af->list);
+-      list_add_tail(&af->list, &sctp_address_families);
++      pax_close_kernel();
++      pax_list_add_tail(&af->list, &sctp_address_families);
+       return 1;
+ }
+@@ -1063,7 +1065,7 @@ static const struct net_protocol sctp_protocol = {
+ };
+ /* IPv4 address related functions.  */
+-static struct sctp_af sctp_af_inet = {
++static struct sctp_af sctp_af_inet __read_only = {
+       .sa_family         = AF_INET,
+       .sctp_xmit         = sctp_v4_xmit,
+       .setsockopt        = ip_setsockopt,
+@@ -1147,7 +1149,7 @@ static void sctp_v4_pf_init(void)
+ static void sctp_v4_pf_exit(void)
+ {
+-      list_del(&sctp_af_inet.list);
++      pax_list_del(&sctp_af_inet.list);
+ }
+ static int sctp_v4_protosw_init(void)
+diff --git a/net/sctp/sctp_diag.c b/net/sctp/sctp_diag.c
+index cef0cee..2058df7 100644
+--- a/net/sctp/sctp_diag.c
++++ b/net/sctp/sctp_diag.c
+@@ -156,7 +156,7 @@ static int inet_sctp_diag_fill(struct sock *sk, struct sctp_association *asoc,
+               mem[SK_MEMINFO_WMEM_QUEUED] = sk->sk_wmem_queued;
+               mem[SK_MEMINFO_OPTMEM] = atomic_read(&sk->sk_omem_alloc);
+               mem[SK_MEMINFO_BACKLOG] = sk->sk_backlog.len;
+-              mem[SK_MEMINFO_DROPS] = atomic_read(&sk->sk_drops);
++              mem[SK_MEMINFO_DROPS] = atomic_read_unchecked(&sk->sk_drops);
+               if (nla_put(skb, INET_DIAG_SKMEMINFO, sizeof(mem), &mem) < 0)
+                       goto errout;
+diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c
+index 12d4519..367dae4 100644
+--- a/net/sctp/sm_sideeffect.c
++++ b/net/sctp/sm_sideeffect.c
+@@ -444,7 +444,7 @@ static void sctp_generate_sack_event(unsigned long data)
+       sctp_generate_timeout_event(asoc, SCTP_EVENT_TIMEOUT_SACK);
+ }
+-sctp_timer_event_t *sctp_timer_events[SCTP_NUM_TIMEOUT_TYPES] = {
++sctp_timer_event_t * const sctp_timer_events[SCTP_NUM_TIMEOUT_TYPES] = {
+       NULL,
+       sctp_generate_t1_cookie_event,
+       sctp_generate_t1_init_event,
+@@ -1097,7 +1097,7 @@ int sctp_do_sm(struct net *net, sctp_event_t event_type, sctp_subtype_t subtype,
+       const sctp_sm_table_entry_t *state_fn;
+       sctp_disposition_t status;
+       int error = 0;
+-      typedef const char *(printfn_t)(sctp_subtype_t);
++      typedef const char *(printfn_t)(const sctp_subtype_t);
+       static printfn_t *table[] = {
+               NULL, sctp_cname, sctp_tname, sctp_oname, sctp_pname,
+       };
+diff --git a/net/sctp/socket.c b/net/sctp/socket.c
+index 8ed2d99..ac059f5 100644
+--- a/net/sctp/socket.c
++++ b/net/sctp/socket.c
+@@ -2199,11 +2199,13 @@ static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
+ {
+       struct sctp_association *asoc;
+       struct sctp_ulpevent *event;
++      struct sctp_event_subscribe subscribe;
+       if (optlen > sizeof(struct sctp_event_subscribe))
+               return -EINVAL;
+-      if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
++      if (copy_from_user(&subscribe, optval, optlen))
+               return -EFAULT;
++      sctp_sk(sk)->subscribe = subscribe;
+       /* At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
+        * if there is no data to be sent or retransmit, the stack will
+@@ -4683,13 +4685,16 @@ static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
+ static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
+                                 int __user *optlen)
+ {
++      struct sctp_event_subscribe subscribe;
++
+       if (len <= 0)
+               return -EINVAL;
+       if (len > sizeof(struct sctp_event_subscribe))
+               len = sizeof(struct sctp_event_subscribe);
+       if (put_user(len, optlen))
+               return -EFAULT;
+-      if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
++      subscribe = sctp_sk(sk)->subscribe;
++      if (copy_to_user(optval, &subscribe, len))
+               return -EFAULT;
+       return 0;
+ }
+@@ -4707,6 +4712,8 @@ static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
+  */
+ static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
+ {
++      __u32 autoclose;
++
+       /* Applicable to UDP-style socket only */
+       if (sctp_style(sk, TCP))
+               return -EOPNOTSUPP;
+@@ -4715,7 +4722,8 @@ static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optv
+       len = sizeof(int);
+       if (put_user(len, optlen))
+               return -EFAULT;
+-      if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
++      autoclose = sctp_sk(sk)->autoclose;
++      if (copy_to_user(optval, &autoclose, sizeof(int)))
+               return -EFAULT;
+       return 0;
+ }
+@@ -5089,12 +5097,15 @@ static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
+  */
+ static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
+ {
++      struct sctp_initmsg initmsg;
++
+       if (len < sizeof(struct sctp_initmsg))
+               return -EINVAL;
+       len = sizeof(struct sctp_initmsg);
+       if (put_user(len, optlen))
+               return -EFAULT;
+-      if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
++      initmsg = sctp_sk(sk)->initmsg;
++      if (copy_to_user(optval, &initmsg, len))
+               return -EFAULT;
+       return 0;
+ }
+@@ -5135,6 +5146,8 @@ static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
+                             ->addr_to_user(sp, &temp);
+               if (space_left < addrlen)
+                       return -ENOMEM;
++              if (addrlen > sizeof(temp) || addrlen < 0)
++                      return -EFAULT;
+               if (copy_to_user(to, &temp, addrlen))
+                       return -EFAULT;
+               to += addrlen;
+diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c
+index daf8554..4ab495b 100644
+--- a/net/sctp/sysctl.c
++++ b/net/sctp/sysctl.c
+@@ -324,7 +324,7 @@ static int proc_sctp_do_hmac_alg(struct ctl_table *ctl, int write,
+                               loff_t *ppos)
+ {
+       struct net *net = current->nsproxy->net_ns;
+-      struct ctl_table tbl;
++      ctl_table_no_const tbl;
+       bool changed = false;
+       char *none = "none";
+       char tmp[8] = {0};
+@@ -372,7 +372,7 @@ static int proc_sctp_do_rto_min(struct ctl_table *ctl, int write,
+       struct net *net = current->nsproxy->net_ns;
+       unsigned int min = *(unsigned int *) ctl->extra1;
+       unsigned int max = *(unsigned int *) ctl->extra2;
+-      struct ctl_table tbl;
++      ctl_table_no_const tbl;
+       int ret, new_value;
+       memset(&tbl, 0, sizeof(struct ctl_table));
+@@ -401,7 +401,7 @@ static int proc_sctp_do_rto_max(struct ctl_table *ctl, int write,
+       struct net *net = current->nsproxy->net_ns;
+       unsigned int min = *(unsigned int *) ctl->extra1;
+       unsigned int max = *(unsigned int *) ctl->extra2;
+-      struct ctl_table tbl;
++      ctl_table_no_const tbl;
+       int ret, new_value;
+       memset(&tbl, 0, sizeof(struct ctl_table));
+@@ -439,7 +439,7 @@ static int proc_sctp_do_auth(struct ctl_table *ctl, int write,
+                            loff_t *ppos)
+ {
+       struct net *net = current->nsproxy->net_ns;
+-      struct ctl_table tbl;
++      ctl_table_no_const tbl;
+       int new_value, ret;
+       memset(&tbl, 0, sizeof(struct ctl_table));
+@@ -466,7 +466,7 @@ static int proc_sctp_do_auth(struct ctl_table *ctl, int write,
+ int sctp_sysctl_net_register(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       int i;
+       table = kmemdup(sctp_net_table, sizeof(sctp_net_table), GFP_KERNEL);
+diff --git a/net/socket.c b/net/socket.c
+index a1bd161..b1f7508 100644
+--- a/net/socket.c
++++ b/net/socket.c
+@@ -89,6 +89,7 @@
+ #include <linux/magic.h>
+ #include <linux/slab.h>
+ #include <linux/xattr.h>
++#include <linux/in.h>
+ #include <asm/uaccess.h>
+ #include <asm/unistd.h>
+@@ -107,6 +108,7 @@
+ #include <linux/atalk.h>
+ #include <net/busy_poll.h>
+ #include <linux/errqueue.h>
++#include <linux/grsock.h>
+ #ifdef CONFIG_NET_RX_BUSY_POLL
+ unsigned int sysctl_net_busy_read __read_mostly;
+@@ -160,7 +162,7 @@ static const struct file_operations socket_file_ops = {
+  */
+ static DEFINE_SPINLOCK(net_family_lock);
+-static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
++const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
+ /*
+  *    Statistics counters of the socket lists
+@@ -327,7 +329,7 @@ static struct dentry *sockfs_mount(struct file_system_type *fs_type,
+               &sockfs_dentry_operations, SOCKFS_MAGIC);
+ }
+-static struct vfsmount *sock_mnt __read_mostly;
++struct vfsmount *sock_mnt __read_mostly;
+ static struct file_system_type sock_fs_type = {
+       .name =         "sockfs",
+@@ -1096,6 +1098,8 @@ int __sock_create(struct net *net, int family, int type, int protocol,
+               return -EAFNOSUPPORT;
+       if (type < 0 || type >= SOCK_MAX)
+               return -EINVAL;
++      if (protocol < 0)
++              return -EINVAL;
+       /* Compatibility.
+@@ -1112,6 +1116,20 @@ int __sock_create(struct net *net, int family, int type, int protocol,
+       if (err)
+               return err;
++      if(!kern && !gr_search_socket(family, type, protocol)) {
++              if (rcu_access_pointer(net_families[family]) == NULL)
++                      return -EAFNOSUPPORT;
++              else
++                      return -EACCES;
++      }
++
++      if (!kern && gr_handle_sock_all(family, type, protocol)) {
++              if (rcu_access_pointer(net_families[family]) == NULL)
++                      return -EAFNOSUPPORT;
++              else
++                      return -EACCES;
++      }
++
+       /*
+        *      Allocate the socket and allow the family to set things up. if
+        *      the protocol is 0, the family is instructed to select an appropriate
+@@ -1363,6 +1381,14 @@ SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
+       if (sock) {
+               err = move_addr_to_kernel(umyaddr, addrlen, &address);
+               if (err >= 0) {
++                      if (gr_handle_sock_server((struct sockaddr *)&address)) {
++                              err = -EACCES;
++                              goto error;
++                      }
++                      err = gr_search_bind(sock, (struct sockaddr_in *)&address);
++                      if (err)
++                              goto error;
++
+                       err = security_socket_bind(sock,
+                                                  (struct sockaddr *)&address,
+                                                  addrlen);
+@@ -1371,6 +1397,7 @@ SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
+                                                     (struct sockaddr *)
+                                                     &address, addrlen);
+               }
++error:
+               fput_light(sock->file, fput_needed);
+       }
+       return err;
+@@ -1394,10 +1421,20 @@ SYSCALL_DEFINE2(listen, int, fd, int, backlog)
+               if ((unsigned int)backlog > somaxconn)
+                       backlog = somaxconn;
++              if (gr_handle_sock_server_other(sock->sk)) {
++                      err = -EPERM;
++                      goto error;
++              }
++
++              err = gr_search_listen(sock);
++              if (err)
++                      goto error;
++
+               err = security_socket_listen(sock, backlog);
+               if (!err)
+                       err = sock->ops->listen(sock, backlog);
++error:
+               fput_light(sock->file, fput_needed);
+       }
+       return err;
+@@ -1441,6 +1478,18 @@ SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
+       newsock->type = sock->type;
+       newsock->ops = sock->ops;
++      if (gr_handle_sock_server_other(sock->sk)) {
++              err = -EPERM;
++              sock_release(newsock);
++              goto out_put;
++      }
++
++      err = gr_search_accept(sock);
++      if (err) {
++              sock_release(newsock);
++              goto out_put;
++      }
++
+       /*
+        * We don't need try_module_get here, as the listening socket (sock)
+        * has the protocol module (sock->ops->owner) held.
+@@ -1486,6 +1535,8 @@ SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
+       fd_install(newfd, newfile);
+       err = newfd;
++      gr_attach_curr_ip(newsock->sk);
++
+ out_put:
+       fput_light(sock->file, fput_needed);
+ out:
+@@ -1518,6 +1569,7 @@ SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
+               int, addrlen)
+ {
+       struct socket *sock;
++      struct sockaddr *sck;
+       struct sockaddr_storage address;
+       int err, fput_needed;
+@@ -1528,6 +1580,17 @@ SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
+       if (err < 0)
+               goto out_put;
++      sck = (struct sockaddr *)&address;
++
++      if (gr_handle_sock_client(sck)) {
++              err = -EACCES;
++              goto out_put;
++      }
++
++      err = gr_search_connect(sock, (struct sockaddr_in *)sck);
++      if (err)
++              goto out_put;
++
+       err =
+           security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
+       if (err)
+@@ -1550,7 +1613,7 @@ SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
+               int __user *, usockaddr_len)
+ {
+       struct socket *sock;
+-      struct sockaddr_storage address;
++      struct sockaddr_storage address = { };
+       int len, err, fput_needed;
+       sock = sockfd_lookup_light(fd, &err, &fput_needed);
+@@ -1581,7 +1644,7 @@ SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
+               int __user *, usockaddr_len)
+ {
+       struct socket *sock;
+-      struct sockaddr_storage address;
++      struct sockaddr_storage address = { };
+       int len, err, fput_needed;
+       sock = sockfd_lookup_light(fd, &err, &fput_needed);
+@@ -1609,6 +1672,8 @@ SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
+  *    the protocol.
+  */
++asmlinkage long sys_sendto(int, void __user *, size_t, unsigned, struct sockaddr __user *, int);
++
+ SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
+               unsigned int, flags, struct sockaddr __user *, addr,
+               int, addr_len)
+@@ -1672,7 +1737,7 @@ SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
+       struct socket *sock;
+       struct iovec iov;
+       struct msghdr msg;
+-      struct sockaddr_storage address;
++      struct sockaddr_storage address = { };
+       int err, err2;
+       int fput_needed;
+@@ -1917,7 +1982,7 @@ static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
+                * checking falls down on this.
+                */
+               if (copy_from_user(ctl_buf,
+-                                 (void __user __force *)msg_sys->msg_control,
++                                 (void __force_user *)msg_sys->msg_control,
+                                  ctl_len))
+                       goto out_freectl;
+               msg_sys->msg_control = ctl_buf;
+@@ -2073,7 +2138,7 @@ static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
+       ssize_t err;
+       /* kernel mode address */
+-      struct sockaddr_storage addr;
++      struct sockaddr_storage addr = { };
+       /* user mode address pointers */
+       struct sockaddr __user *uaddr;
+@@ -2719,7 +2784,7 @@ static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
+       ifr = compat_alloc_user_space(buf_size);
+       rxnfc = (void __user *)ifr + ALIGN(sizeof(struct ifreq), 8);
+-      if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
++      if (copy_in_user(ifr->ifr_name, ifr32->ifr_name, IFNAMSIZ))
+               return -EFAULT;
+       if (put_user(convert_in ? rxnfc : compat_ptr(data),
+@@ -2830,7 +2895,7 @@ static int bond_ioctl(struct net *net, unsigned int cmd,
+               old_fs = get_fs();
+               set_fs(KERNEL_DS);
+               err = dev_ioctl(net, cmd,
+-                              (struct ifreq __user __force *) &kifr);
++                              (struct ifreq __force_user *) &kifr);
+               set_fs(old_fs);
+               return err;
+@@ -2923,7 +2988,7 @@ static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
+       old_fs = get_fs();
+       set_fs(KERNEL_DS);
+-      err = dev_ioctl(net, cmd, (void  __user __force *)&ifr);
++      err = dev_ioctl(net, cmd, (void  __force_user *)&ifr);
+       set_fs(old_fs);
+       if (cmd == SIOCGIFMAP && !err) {
+@@ -3007,7 +3072,7 @@ static int routing_ioctl(struct net *net, struct socket *sock,
+               ret |= get_user(rtdev, &(ur4->rt_dev));
+               if (rtdev) {
+                       ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
+-                      r4.rt_dev = (char __user __force *)devname;
++                      r4.rt_dev = (char __force_user *)devname;
+                       devname[15] = 0;
+               } else
+                       r4.rt_dev = NULL;
+@@ -3234,8 +3299,8 @@ int kernel_getsockopt(struct socket *sock, int level, int optname,
+       int __user *uoptlen;
+       int err;
+-      uoptval = (char __user __force *) optval;
+-      uoptlen = (int __user __force *) optlen;
++      uoptval = (char __force_user *) optval;
++      uoptlen = (int __force_user *) optlen;
+       set_fs(KERNEL_DS);
+       if (level == SOL_SOCKET)
+@@ -3255,7 +3320,7 @@ int kernel_setsockopt(struct socket *sock, int level, int optname,
+       char __user *uoptval;
+       int err;
+-      uoptval = (char __user __force *) optval;
++      uoptval = (char __force_user *) optval;
+       set_fs(KERNEL_DS);
+       if (level == SOL_SOCKET)
+diff --git a/net/sunrpc/Kconfig b/net/sunrpc/Kconfig
+index 04ce2c0..b1dd1bd 100644
+--- a/net/sunrpc/Kconfig
++++ b/net/sunrpc/Kconfig
+@@ -38,6 +38,7 @@ config SUNRPC_DEBUG
+       bool "RPC: Enable dprintk debugging"
+       depends on SUNRPC && SYSCTL
+       select DEBUG_FS
++      depends on !GRKERNSEC_KMEM
+       help
+         This option enables a sysctl-based debugging interface
+         that is be used by the 'rpcdebug' utility to turn on or off
+diff --git a/net/sunrpc/auth_gss/gss_rpc_upcall.c b/net/sunrpc/auth_gss/gss_rpc_upcall.c
+index f0c6a8c..3acb459 100644
+--- a/net/sunrpc/auth_gss/gss_rpc_upcall.c
++++ b/net/sunrpc/auth_gss/gss_rpc_upcall.c
+@@ -55,8 +55,8 @@ enum {
+ #define PROC(proc, name)                              \
+ [GSSX_##proc] = {                                     \
+       .p_proc   = GSSX_##proc,                        \
+-      .p_encode = (kxdreproc_t)gssx_enc_##name,       \
+-      .p_decode = (kxdrdproc_t)gssx_dec_##name,       \
++      .p_encode = gssx_enc_##name,                    \
++      .p_decode = gssx_dec_##name,                    \
+       .p_arglen = GSSX_ARG_##name##_sz,               \
+       .p_replen = GSSX_RES_##name##_sz,               \
+       .p_statidx = GSSX_##proc,                       \
+diff --git a/net/sunrpc/auth_gss/gss_rpc_xdr.c b/net/sunrpc/auth_gss/gss_rpc_xdr.c
+index eeeba5a..c0d96a1 100644
+--- a/net/sunrpc/auth_gss/gss_rpc_xdr.c
++++ b/net/sunrpc/auth_gss/gss_rpc_xdr.c
+@@ -731,10 +731,12 @@ static int gssx_enc_cb(struct xdr_stream *xdr, struct gssx_cb *cb)
+       return err;
+ }
+-void gssx_enc_accept_sec_context(struct rpc_rqst *req,
++void gssx_enc_accept_sec_context(void *_req,
+                                struct xdr_stream *xdr,
+-                               struct gssx_arg_accept_sec_context *arg)
++                               void *_arg)
+ {
++      struct rpc_rqst *req = _req;
++      struct gssx_arg_accept_sec_context *arg = _arg;
+       int err;
+       err = gssx_enc_call_ctx(xdr, &arg->call_ctx);
+@@ -787,10 +789,11 @@ done:
+               dprintk("RPC:       gssx_enc_accept_sec_context: %d\n", err);
+ }
+-int gssx_dec_accept_sec_context(struct rpc_rqst *rqstp,
++int gssx_dec_accept_sec_context(void *rqstp,
+                               struct xdr_stream *xdr,
+-                              struct gssx_res_accept_sec_context *res)
++                              void *_res)
+ {
++      struct gssx_res_accept_sec_context *res = _res;
+       u32 value_follows;
+       int err;
+       struct page *scratch;
+diff --git a/net/sunrpc/auth_gss/gss_rpc_xdr.h b/net/sunrpc/auth_gss/gss_rpc_xdr.h
+index 9d88c62..53396b6 100644
+--- a/net/sunrpc/auth_gss/gss_rpc_xdr.h
++++ b/net/sunrpc/auth_gss/gss_rpc_xdr.h
+@@ -177,12 +177,12 @@ struct gssx_res_accept_sec_context {
+ #define gssx_dec_store_cred NULL
+ #define gssx_enc_init_sec_context NULL
+ #define gssx_dec_init_sec_context NULL
+-void gssx_enc_accept_sec_context(struct rpc_rqst *req,
++void gssx_enc_accept_sec_context(void *req,
+                                struct xdr_stream *xdr,
+-                               struct gssx_arg_accept_sec_context *args);
+-int gssx_dec_accept_sec_context(struct rpc_rqst *rqstp,
++                               void *args);
++int gssx_dec_accept_sec_context(void *rqstp,
+                               struct xdr_stream *xdr,
+-                              struct gssx_res_accept_sec_context *res);
++                              void *res);
+ #define gssx_enc_release_handle NULL
+ #define gssx_dec_release_handle NULL
+ #define gssx_enc_get_mic NULL
+diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c
+index d858202..307157b 100644
+--- a/net/sunrpc/auth_gss/svcauth_gss.c
++++ b/net/sunrpc/auth_gss/svcauth_gss.c
+@@ -1142,7 +1142,7 @@ static int gss_proxy_save_rsc(struct cache_detail *cd,
+                               uint64_t *handle)
+ {
+       struct rsc rsci, *rscp = NULL;
+-      static atomic64_t ctxhctr;
++      static atomic64_unchecked_t ctxhctr = ATOMIC64_INIT(0);
+       long long ctxh;
+       struct gss_api_mech *gm = NULL;
+       time_t expiry;
+@@ -1153,7 +1153,7 @@ static int gss_proxy_save_rsc(struct cache_detail *cd,
+       status = -ENOMEM;
+       /* the handle needs to be just a unique id,
+        * use a static counter */
+-      ctxh = atomic64_inc_return(&ctxhctr);
++      ctxh = atomic64_inc_return_unchecked(&ctxhctr);
+       /* make a copy for the caller */
+       *handle = ctxh;
+diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c
+index 4d8e11f..dcbf350 100644
+--- a/net/sunrpc/cache.c
++++ b/net/sunrpc/cache.c
+@@ -1623,7 +1623,7 @@ static int create_cache_proc_entries(struct cache_detail *cd, struct net *net)
+       struct sunrpc_net *sn;
+       sn = net_generic(net, sunrpc_net_id);
+-      cd->u.procfs.proc_ent = proc_mkdir(cd->name, sn->proc_net_rpc);
++      cd->u.procfs.proc_ent = proc_mkdir_restrict(cd->name, sn->proc_net_rpc);
+       if (cd->u.procfs.proc_ent == NULL)
+               goto out_nomem;
+       cd->u.procfs.channel_ent = NULL;
+diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
+index 66f23b3..84d4821 100644
+--- a/net/sunrpc/clnt.c
++++ b/net/sunrpc/clnt.c
+@@ -1544,7 +1544,9 @@ call_start(struct rpc_task *task)
+                       (RPC_IS_ASYNC(task) ? "async" : "sync"));
+       /* Increment call count */
+-      task->tk_msg.rpc_proc->p_count++;
++      pax_open_kernel();
++      (*(unsigned int *)&task->tk_msg.rpc_proc->p_count)++;
++      pax_close_kernel();
+       clnt->cl_stats->rpccnt++;
+       task->tk_action = call_reserve;
+ }
+diff --git a/net/sunrpc/rpcb_clnt.c b/net/sunrpc/rpcb_clnt.c
+index 5b30603..d49e23a 100644
+--- a/net/sunrpc/rpcb_clnt.c
++++ b/net/sunrpc/rpcb_clnt.c
+@@ -842,9 +842,11 @@ static void rpcb_getport_done(struct rpc_task *child, void *data)
+  * XDR functions for rpcbind
+  */
+-static void rpcb_enc_mapping(struct rpc_rqst *req, struct xdr_stream *xdr,
+-                           const struct rpcbind_args *rpcb)
++static void rpcb_enc_mapping(void *_req, struct xdr_stream *xdr,
++                           void *_rpcb)
+ {
++      struct rpc_rqst *req = _req;
++      const struct rpcbind_args *rpcb = _rpcb;
+       __be32 *p;
+       dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
+@@ -859,9 +861,11 @@ static void rpcb_enc_mapping(struct rpc_rqst *req, struct xdr_stream *xdr,
+       *p   = cpu_to_be32(rpcb->r_port);
+ }
+-static int rpcb_dec_getport(struct rpc_rqst *req, struct xdr_stream *xdr,
+-                          struct rpcbind_args *rpcb)
++static int rpcb_dec_getport(void *_req, struct xdr_stream *xdr,
++                          void *_rpcb)
+ {
++      struct rpc_rqst *req = _req;
++      struct rpcbind_args *rpcb = _rpcb;
+       unsigned long port;
+       __be32 *p;
+@@ -881,9 +885,11 @@ static int rpcb_dec_getport(struct rpc_rqst *req, struct xdr_stream *xdr,
+       return 0;
+ }
+-static int rpcb_dec_set(struct rpc_rqst *req, struct xdr_stream *xdr,
+-                      unsigned int *boolp)
++static int rpcb_dec_set(void *_req, struct xdr_stream *xdr,
++                      void *_boolp)
+ {
++      struct rpc_rqst *req = _req;
++      unsigned int *boolp = _boolp;
+       __be32 *p;
+       p = xdr_inline_decode(xdr, 4);
+@@ -916,9 +922,11 @@ static void encode_rpcb_string(struct xdr_stream *xdr, const char *string,
+       xdr_encode_opaque(p, string, len);
+ }
+-static void rpcb_enc_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
+-                           const struct rpcbind_args *rpcb)
++static void rpcb_enc_getaddr(void *_req, struct xdr_stream *xdr,
++                           void *_rpcb)
+ {
++      struct rpc_rqst *req = _req;
++      const struct rpcbind_args *rpcb = _rpcb;
+       __be32 *p;
+       dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
+@@ -936,9 +944,11 @@ static void rpcb_enc_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
+       encode_rpcb_string(xdr, rpcb->r_owner, RPCB_MAXOWNERLEN);
+ }
+-static int rpcb_dec_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
+-                          struct rpcbind_args *rpcb)
++static int rpcb_dec_getaddr(void *_req, struct xdr_stream *xdr,
++                          void *_rpcb)
+ {
++      struct rpc_rqst *req = _req;
++      struct rpcbind_args *rpcb = _rpcb;
+       struct sockaddr_storage address;
+       struct sockaddr *sap = (struct sockaddr *)&address;
+       __be32 *p;
+@@ -992,8 +1002,8 @@ out_fail:
+ static struct rpc_procinfo rpcb_procedures2[] = {
+       [RPCBPROC_SET] = {
+               .p_proc         = RPCBPROC_SET,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_mapping,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_set,
++              .p_encode       = rpcb_enc_mapping,
++              .p_decode       = rpcb_dec_set,
+               .p_arglen       = RPCB_mappingargs_sz,
+               .p_replen       = RPCB_setres_sz,
+               .p_statidx      = RPCBPROC_SET,
+@@ -1002,8 +1012,8 @@ static struct rpc_procinfo rpcb_procedures2[] = {
+       },
+       [RPCBPROC_UNSET] = {
+               .p_proc         = RPCBPROC_UNSET,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_mapping,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_set,
++              .p_encode       = rpcb_enc_mapping,
++              .p_decode       = rpcb_dec_set,
+               .p_arglen       = RPCB_mappingargs_sz,
+               .p_replen       = RPCB_setres_sz,
+               .p_statidx      = RPCBPROC_UNSET,
+@@ -1012,8 +1022,8 @@ static struct rpc_procinfo rpcb_procedures2[] = {
+       },
+       [RPCBPROC_GETPORT] = {
+               .p_proc         = RPCBPROC_GETPORT,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_mapping,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_getport,
++              .p_encode       = rpcb_enc_mapping,
++              .p_decode       = rpcb_dec_getport,
+               .p_arglen       = RPCB_mappingargs_sz,
+               .p_replen       = RPCB_getportres_sz,
+               .p_statidx      = RPCBPROC_GETPORT,
+@@ -1025,8 +1035,8 @@ static struct rpc_procinfo rpcb_procedures2[] = {
+ static struct rpc_procinfo rpcb_procedures3[] = {
+       [RPCBPROC_SET] = {
+               .p_proc         = RPCBPROC_SET,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_getaddr,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_set,
++              .p_encode       = rpcb_enc_getaddr,
++              .p_decode       = rpcb_dec_set,
+               .p_arglen       = RPCB_getaddrargs_sz,
+               .p_replen       = RPCB_setres_sz,
+               .p_statidx      = RPCBPROC_SET,
+@@ -1035,8 +1045,8 @@ static struct rpc_procinfo rpcb_procedures3[] = {
+       },
+       [RPCBPROC_UNSET] = {
+               .p_proc         = RPCBPROC_UNSET,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_getaddr,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_set,
++              .p_encode       = rpcb_enc_getaddr,
++              .p_decode       = rpcb_dec_set,
+               .p_arglen       = RPCB_getaddrargs_sz,
+               .p_replen       = RPCB_setres_sz,
+               .p_statidx      = RPCBPROC_UNSET,
+@@ -1045,8 +1055,8 @@ static struct rpc_procinfo rpcb_procedures3[] = {
+       },
+       [RPCBPROC_GETADDR] = {
+               .p_proc         = RPCBPROC_GETADDR,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_getaddr,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_getaddr,
++              .p_encode       = rpcb_enc_getaddr,
++              .p_decode       = rpcb_dec_getaddr,
+               .p_arglen       = RPCB_getaddrargs_sz,
+               .p_replen       = RPCB_getaddrres_sz,
+               .p_statidx      = RPCBPROC_GETADDR,
+@@ -1058,8 +1068,8 @@ static struct rpc_procinfo rpcb_procedures3[] = {
+ static struct rpc_procinfo rpcb_procedures4[] = {
+       [RPCBPROC_SET] = {
+               .p_proc         = RPCBPROC_SET,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_getaddr,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_set,
++              .p_encode       = rpcb_enc_getaddr,
++              .p_decode       = rpcb_dec_set,
+               .p_arglen       = RPCB_getaddrargs_sz,
+               .p_replen       = RPCB_setres_sz,
+               .p_statidx      = RPCBPROC_SET,
+@@ -1068,8 +1078,8 @@ static struct rpc_procinfo rpcb_procedures4[] = {
+       },
+       [RPCBPROC_UNSET] = {
+               .p_proc         = RPCBPROC_UNSET,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_getaddr,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_set,
++              .p_encode       = rpcb_enc_getaddr,
++              .p_decode       = rpcb_dec_set,
+               .p_arglen       = RPCB_getaddrargs_sz,
+               .p_replen       = RPCB_setres_sz,
+               .p_statidx      = RPCBPROC_UNSET,
+@@ -1078,8 +1088,8 @@ static struct rpc_procinfo rpcb_procedures4[] = {
+       },
+       [RPCBPROC_GETADDR] = {
+               .p_proc         = RPCBPROC_GETADDR,
+-              .p_encode       = (kxdreproc_t)rpcb_enc_getaddr,
+-              .p_decode       = (kxdrdproc_t)rpcb_dec_getaddr,
++              .p_encode       = rpcb_enc_getaddr,
++              .p_decode       = rpcb_dec_getaddr,
+               .p_arglen       = RPCB_getaddrargs_sz,
+               .p_replen       = RPCB_getaddrres_sz,
+               .p_statidx      = RPCBPROC_GETADDR,
+diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c
+index 9ae5885..3aa6335 100644
+--- a/net/sunrpc/sched.c
++++ b/net/sunrpc/sched.c
+@@ -262,9 +262,9 @@ static int rpc_wait_bit_killable(struct wait_bit_key *key, int mode)
+ #if IS_ENABLED(CONFIG_SUNRPC_DEBUG) || IS_ENABLED(CONFIG_TRACEPOINTS)
+ static void rpc_task_set_debuginfo(struct rpc_task *task)
+ {
+-      static atomic_t rpc_pid;
++      static atomic_unchecked_t rpc_pid;
+-      task->tk_pid = atomic_inc_return(&rpc_pid);
++      task->tk_pid = atomic_inc_return_unchecked(&rpc_pid);
+ }
+ #else
+ static inline void rpc_task_set_debuginfo(struct rpc_task *task)
+diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c
+index 2ecb994..5afb49f 100644
+--- a/net/sunrpc/stats.c
++++ b/net/sunrpc/stats.c
+@@ -290,7 +290,7 @@ int rpc_proc_init(struct net *net)
+       dprintk("RPC:       registering /proc/net/rpc\n");
+       sn = net_generic(net, sunrpc_net_id);
+-      sn->proc_net_rpc = proc_mkdir("rpc", net->proc_net);
++      sn->proc_net_rpc = proc_mkdir_restrict("rpc", net->proc_net);
+       if (sn->proc_net_rpc == NULL)
+               return -ENOMEM;
+diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c
+index c5b0cb4..8ef3bff 100644
+--- a/net/sunrpc/svc.c
++++ b/net/sunrpc/svc.c
+@@ -50,7 +50,7 @@ EXPORT_SYMBOL_GPL(svc_pool_map);
+ static DEFINE_MUTEX(svc_pool_map_mutex);/* protects svc_pool_map.count only */
+ static int
+-param_set_pool_mode(const char *val, struct kernel_param *kp)
++param_set_pool_mode(const char *val, const struct kernel_param *kp)
+ {
+       int *ip = (int *)kp->arg;
+       struct svc_pool_map *m = &svc_pool_map;
+@@ -80,7 +80,7 @@ out:
+ }
+ static int
+-param_get_pool_mode(char *buf, struct kernel_param *kp)
++param_get_pool_mode(char *buf, const struct kernel_param *kp)
+ {
+       int *ip = (int *)kp->arg;
+@@ -1166,7 +1166,9 @@ svc_process_common(struct svc_rqst *rqstp, struct kvec *argv, struct kvec *resv)
+       svc_putnl(resv, RPC_SUCCESS);
+       /* Bump per-procedure stats counter */
+-      procp->pc_count++;
++      pax_open_kernel();
++      (*(unsigned int *)&procp->pc_count)++;
++      pax_close_kernel();
+       /* Initialize storage for argp and resp */
+       memset(rqstp->rq_argp, 0, procp->pc_argsize);
+diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c
+index dfacdc9..3cb08de 100644
+--- a/net/sunrpc/svcauth_unix.c
++++ b/net/sunrpc/svcauth_unix.c
+@@ -470,7 +470,7 @@ static void unix_gid_request(struct cache_detail *cd,
+       (*bpp)[-1] = '\n';
+ }
+-static struct unix_gid *unix_gid_lookup(struct cache_detail *cd, kuid_t uid);
++static struct unix_gid * __intentional_overflow(-1) unix_gid_lookup(struct cache_detail *cd, kuid_t uid);
+ static int unix_gid_parse(struct cache_detail *cd,
+                       char *mesg, int mlen)
+diff --git a/net/sunrpc/xprtrdma/svc_rdma.c b/net/sunrpc/xprtrdma/svc_rdma.c
+index c846ca9..d5968b4 100644
+--- a/net/sunrpc/xprtrdma/svc_rdma.c
++++ b/net/sunrpc/xprtrdma/svc_rdma.c
+@@ -62,15 +62,15 @@ unsigned int svcrdma_max_req_size = RPCRDMA_MAX_REQ_SIZE;
+ static unsigned int min_max_inline = 4096;
+ static unsigned int max_max_inline = 65536;
+-atomic_t rdma_stat_recv;
+-atomic_t rdma_stat_read;
+-atomic_t rdma_stat_write;
+-atomic_t rdma_stat_sq_starve;
+-atomic_t rdma_stat_rq_starve;
+-atomic_t rdma_stat_rq_poll;
+-atomic_t rdma_stat_rq_prod;
+-atomic_t rdma_stat_sq_poll;
+-atomic_t rdma_stat_sq_prod;
++atomic_unchecked_t rdma_stat_recv;
++atomic_unchecked_t rdma_stat_read;
++atomic_unchecked_t rdma_stat_write;
++atomic_unchecked_t rdma_stat_sq_starve;
++atomic_unchecked_t rdma_stat_rq_starve;
++atomic_unchecked_t rdma_stat_rq_poll;
++atomic_unchecked_t rdma_stat_rq_prod;
++atomic_unchecked_t rdma_stat_sq_poll;
++atomic_unchecked_t rdma_stat_sq_prod;
+ struct workqueue_struct *svc_rdma_wq;
+@@ -84,17 +84,17 @@ static int read_reset_stat(struct ctl_table *table, int write,
+                          void __user *buffer, size_t *lenp,
+                          loff_t *ppos)
+ {
+-      atomic_t *stat = (atomic_t *)table->data;
++      atomic_unchecked_t *stat = (atomic_unchecked_t *)table->data;
+       if (!stat)
+               return -EINVAL;
+       if (write)
+-              atomic_set(stat, 0);
++              atomic_set_unchecked(stat, 0);
+       else {
+               char str_buf[32];
+               char *data;
+-              int len = snprintf(str_buf, 32, "%d\n", atomic_read(stat));
++              int len = snprintf(str_buf, 32, "%d\n", atomic_read_unchecked(stat));
+               if (len >= 32)
+                       return -EFAULT;
+               len = strlen(str_buf);
+@@ -106,7 +106,7 @@ static int read_reset_stat(struct ctl_table *table, int write,
+               len -= *ppos;
+               if (len > *lenp)
+                       len = *lenp;
+-              if (len && copy_to_user(buffer, str_buf, len))
++              if (len > sizeof str_buf || (len && copy_to_user(buffer, str_buf, len)))
+                       return -EFAULT;
+               *lenp = len;
+               *ppos += len;
+@@ -147,63 +147,63 @@ static struct ctl_table svcrdma_parm_table[] = {
+       {
+               .procname       = "rdma_stat_read",
+               .data           = &rdma_stat_read,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+       {
+               .procname       = "rdma_stat_recv",
+               .data           = &rdma_stat_recv,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+       {
+               .procname       = "rdma_stat_write",
+               .data           = &rdma_stat_write,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+       {
+               .procname       = "rdma_stat_sq_starve",
+               .data           = &rdma_stat_sq_starve,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+       {
+               .procname       = "rdma_stat_rq_starve",
+               .data           = &rdma_stat_rq_starve,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+       {
+               .procname       = "rdma_stat_rq_poll",
+               .data           = &rdma_stat_rq_poll,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+       {
+               .procname       = "rdma_stat_rq_prod",
+               .data           = &rdma_stat_rq_prod,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+       {
+               .procname       = "rdma_stat_sq_poll",
+               .data           = &rdma_stat_sq_poll,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+       {
+               .procname       = "rdma_stat_sq_prod",
+               .data           = &rdma_stat_sq_prod,
+-              .maxlen         = sizeof(atomic_t),
++              .maxlen         = sizeof(atomic_unchecked_t),
+               .mode           = 0644,
+               .proc_handler   = read_reset_stat,
+       },
+diff --git a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
+index 2c25606..521a8e0 100644
+--- a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
++++ b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
+@@ -200,7 +200,7 @@ int rdma_read_chunk_lcl(struct svcxprt_rdma *xprt,
+       *page_no = pg_no;
+       *page_offset = pg_off;
+       ret = read;
+-      atomic_inc(&rdma_stat_read);
++      atomic_inc_unchecked(&rdma_stat_read);
+       return ret;
+  err:
+       svc_rdma_unmap_dma(ctxt);
+@@ -345,7 +345,7 @@ int rdma_read_chunk_frmr(struct svcxprt_rdma *xprt,
+       *page_no = pg_no;
+       *page_offset = pg_off;
+       ret = read;
+-      atomic_inc(&rdma_stat_read);
++      atomic_inc_unchecked(&rdma_stat_read);
+       return ret;
+  err:
+       ib_dma_unmap_sg(xprt->sc_cm_id->device,
+@@ -612,7 +612,7 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp)
+                                 dto_q);
+               list_del_init(&ctxt->dto_q);
+       } else {
+-              atomic_inc(&rdma_stat_rq_starve);
++              atomic_inc_unchecked(&rdma_stat_rq_starve);
+               clear_bit(XPT_DATA, &xprt->xpt_flags);
+               ctxt = NULL;
+       }
+@@ -629,7 +629,7 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp)
+       }
+       dprintk("svcrdma: processing ctxt=%p on xprt=%p, rqstp=%p, status=%d\n",
+               ctxt, rdma_xprt, rqstp, ctxt->wc_status);
+-      atomic_inc(&rdma_stat_recv);
++      atomic_inc_unchecked(&rdma_stat_recv);
+       /* Build up the XDR from the receive buffers. */
+       rdma_build_arg_xdr(rqstp, ctxt, ctxt->byte_len);
+diff --git a/net/sunrpc/xprtrdma/svc_rdma_sendto.c b/net/sunrpc/xprtrdma/svc_rdma_sendto.c
+index 54d53330..fd6c4ac 100644
+--- a/net/sunrpc/xprtrdma/svc_rdma_sendto.c
++++ b/net/sunrpc/xprtrdma/svc_rdma_sendto.c
+@@ -307,7 +307,7 @@ static int send_write(struct svcxprt_rdma *xprt, struct svc_rqst *rqstp,
+       write_wr.remote_addr = to;
+       /* Post It */
+-      atomic_inc(&rdma_stat_write);
++      atomic_inc_unchecked(&rdma_stat_write);
+       if (svc_rdma_send(xprt, &write_wr.wr))
+               goto err;
+       return write_len - bc;
+diff --git a/net/sunrpc/xprtrdma/svc_rdma_transport.c b/net/sunrpc/xprtrdma/svc_rdma_transport.c
+index dd94401..9540398 100644
+--- a/net/sunrpc/xprtrdma/svc_rdma_transport.c
++++ b/net/sunrpc/xprtrdma/svc_rdma_transport.c
+@@ -1298,7 +1298,7 @@ int svc_rdma_send(struct svcxprt_rdma *xprt, struct ib_send_wr *wr)
+               spin_lock_bh(&xprt->sc_lock);
+               if (xprt->sc_sq_depth < atomic_read(&xprt->sc_sq_count) + wr_count) {
+                       spin_unlock_bh(&xprt->sc_lock);
+-                      atomic_inc(&rdma_stat_sq_starve);
++                      atomic_inc_unchecked(&rdma_stat_sq_starve);
+                       /* Wait until SQ WR available if SQ still full */
+                       wait_event(xprt->sc_send_wait,
+diff --git a/net/tipc/netlink_compat.c b/net/tipc/netlink_compat.c
+index 1fd4647..ebf12ff 100644
+--- a/net/tipc/netlink_compat.c
++++ b/net/tipc/netlink_compat.c
+@@ -65,13 +65,13 @@ struct tipc_nl_compat_cmd_dump {
+       int (*header)(struct tipc_nl_compat_msg *);
+       int (*dumpit)(struct sk_buff *, struct netlink_callback *);
+       int (*format)(struct tipc_nl_compat_msg *msg, struct nlattr **attrs);
+-};
++} __no_const;
+ struct tipc_nl_compat_cmd_doit {
+       int (*doit)(struct sk_buff *skb, struct genl_info *info);
+       int (*transcode)(struct tipc_nl_compat_cmd_doit *cmd,
+                        struct sk_buff *skb, struct tipc_nl_compat_msg *msg);
+-};
++} __no_const;
+ static int tipc_skb_tailroom(struct sk_buff *skb)
+ {
+@@ -885,7 +885,10 @@ static int tipc_nl_compat_publ_dump(struct tipc_nl_compat_msg *msg, u32 sock)
+       void *hdr;
+       struct nlattr *nest;
+       struct sk_buff *args;
+-      struct tipc_nl_compat_cmd_dump dump;
++      static struct tipc_nl_compat_cmd_dump dump = {
++              .dumpit = tipc_nl_publ_dump,
++              .format = __tipc_nl_compat_publ_dump,
++      };
+       args = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
+       if (!args)
+@@ -908,9 +911,6 @@ static int tipc_nl_compat_publ_dump(struct tipc_nl_compat_msg *msg, u32 sock)
+       nla_nest_end(args, nest);
+       genlmsg_end(args, hdr);
+-      dump.dumpit = tipc_nl_publ_dump;
+-      dump.format = __tipc_nl_compat_publ_dump;
+-
+       err = __tipc_nl_compat_dumpit(&dump, msg, args);
+       kfree_skb(args);
+diff --git a/net/tipc/subscr.c b/net/tipc/subscr.c
+index 0dd0224..36a22a0 100644
+--- a/net/tipc/subscr.c
++++ b/net/tipc/subscr.c
+@@ -75,7 +75,7 @@ static void tipc_subscrp_send_event(struct tipc_subscription *sub,
+       struct tipc_subscriber *subscriber = sub->subscriber;
+       struct kvec msg_sect;
+-      msg_sect.iov_base = (void *)&sub->evt;
++      msg_sect.iov_base = &sub->evt;
+       msg_sect.iov_len = sizeof(struct tipc_event);
+       sub->evt.event = htohl(event, sub->swap);
+       sub->evt.found_lower = htohl(found_lower, sub->swap);
+diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
+index 8309687..50b3b18 100644
+--- a/net/unix/af_unix.c
++++ b/net/unix/af_unix.c
+@@ -921,6 +921,12 @@ static struct sock *unix_find_other(struct net *net,
+               err = -ECONNREFUSED;
+               if (!S_ISSOCK(inode->i_mode))
+                       goto put_fail;
++
++              if (!gr_acl_handle_unix(path.dentry, path.mnt)) {
++                      err = -EACCES;
++                      goto put_fail;
++              }
++
+               u = unix_find_socket_byinode(inode);
+               if (!u)
+                       goto put_fail;
+@@ -941,6 +947,13 @@ static struct sock *unix_find_other(struct net *net,
+               if (u) {
+                       struct dentry *dentry;
+                       dentry = unix_sk(u)->path.dentry;
++
++                      if (!gr_handle_chroot_unix(pid_vnr(u->sk_peer_pid))) {
++                              err = -EPERM;
++                              sock_put(u);
++                              goto fail;
++                      }
++
+                       if (dentry)
+                               touch_atime(&unix_sk(u)->path);
+               } else
+@@ -974,12 +987,19 @@ static int unix_mknod(const char *sun_path, umode_t mode, struct path *res)
+        */
+       err = security_path_mknod(&path, dentry, mode, 0);
+       if (!err) {
++              if (!gr_acl_handle_mknod(dentry, path.dentry, path.mnt, mode)) {
++                      err = -EACCES;
++                      goto out;
++              }
+               err = vfs_mknod(d_inode(path.dentry), dentry, mode, 0);
+               if (!err) {
+                       res->mnt = mntget(path.mnt);
+                       res->dentry = dget(dentry);
++                      gr_handle_create(dentry, path.mnt);
+               }
+       }
++
++out:
+       done_path_create(&path, dentry);
+       return err;
+ }
+@@ -2799,9 +2819,13 @@ static int unix_seq_show(struct seq_file *seq, void *v)
+               seq_puts(seq, "Num       RefCount Protocol Flags    Type St "
+                        "Inode Path\n");
+       else {
+-              struct sock *s = v;
++              struct sock *s = v, *peer;
+               struct unix_sock *u = unix_sk(s);
+               unix_state_lock(s);
++              peer = unix_peer(s);
++              unix_state_unlock(s);
++
++              unix_state_double_lock(s, peer);
+               seq_printf(seq, "%pK: %08X %08X %08X %04X %02X %5lu",
+                       s,
+@@ -2826,10 +2850,29 @@ static int unix_seq_show(struct seq_file *seq, void *v)
+                               seq_putc(seq, '@');
+                               i++;
+                       }
+-                      for ( ; i < len; i++)
+-                              seq_putc(seq, u->addr->name->sun_path[i]);
+-              }
+-              unix_state_unlock(s);
++                      for ( ; i < len; i++) {
++                              char c = u->addr->name->sun_path[i];
++                              switch (c) {
++                              case '\n':
++                                      seq_putc(seq, '\\');
++                                      seq_putc(seq, 'n');
++                                      break;
++                              case '\t':
++                                      seq_putc(seq, '\\');
++                                      seq_putc(seq, 't');
++                                      break;
++                              case '\\':
++                                      seq_putc(seq, '\\');
++                                      seq_putc(seq, '\\');
++                                      break;
++                              default:
++                                      seq_putc(seq, c);
++                              }
++                      }
++              } else if (peer)
++                      seq_printf(seq, " P%lu", sock_i_ino(peer));
++
++              unix_state_double_unlock(s, peer);
+               seq_putc(seq, '\n');
+       }
+diff --git a/net/unix/diag.c b/net/unix/diag.c
+index 4d96797..ab6a813 100644
+--- a/net/unix/diag.c
++++ b/net/unix/diag.c
+@@ -299,7 +299,7 @@ static int unix_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
+               return -EINVAL;
+       if (h->nlmsg_flags & NLM_F_DUMP) {
+-              struct netlink_dump_control c = {
++              static struct netlink_dump_control c = {
+                       .dump = unix_diag_dump,
+               };
+               return netlink_dump_start(net->diag_nlsk, skb, h, &c);
+diff --git a/net/unix/sysctl_net_unix.c b/net/unix/sysctl_net_unix.c
+index b3d5150..ff3a837 100644
+--- a/net/unix/sysctl_net_unix.c
++++ b/net/unix/sysctl_net_unix.c
+@@ -28,7 +28,7 @@ static struct ctl_table unix_table[] = {
+ int __net_init unix_sysctl_register(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       table = kmemdup(unix_table, sizeof(unix_table), GFP_KERNEL);
+       if (table == NULL)
+diff --git a/net/vmw_vsock/vmci_transport_notify.c b/net/vmw_vsock/vmci_transport_notify.c
+index fd8cf02..1406db4 100644
+--- a/net/vmw_vsock/vmci_transport_notify.c
++++ b/net/vmw_vsock/vmci_transport_notify.c
+@@ -662,19 +662,19 @@ static void vmci_transport_notify_pkt_process_negotiate(struct sock *sk)
+ /* Socket control packet based operations. */
+ const struct vmci_transport_notify_ops vmci_transport_notify_pkt_ops = {
+-      vmci_transport_notify_pkt_socket_init,
+-      vmci_transport_notify_pkt_socket_destruct,
+-      vmci_transport_notify_pkt_poll_in,
+-      vmci_transport_notify_pkt_poll_out,
+-      vmci_transport_notify_pkt_handle_pkt,
+-      vmci_transport_notify_pkt_recv_init,
+-      vmci_transport_notify_pkt_recv_pre_block,
+-      vmci_transport_notify_pkt_recv_pre_dequeue,
+-      vmci_transport_notify_pkt_recv_post_dequeue,
+-      vmci_transport_notify_pkt_send_init,
+-      vmci_transport_notify_pkt_send_pre_block,
+-      vmci_transport_notify_pkt_send_pre_enqueue,
+-      vmci_transport_notify_pkt_send_post_enqueue,
+-      vmci_transport_notify_pkt_process_request,
+-      vmci_transport_notify_pkt_process_negotiate,
++      .socket_init = vmci_transport_notify_pkt_socket_init,
++      .socket_destruct = vmci_transport_notify_pkt_socket_destruct,
++      .poll_in = vmci_transport_notify_pkt_poll_in,
++      .poll_out = vmci_transport_notify_pkt_poll_out,
++      .handle_notify_pkt = vmci_transport_notify_pkt_handle_pkt,
++      .recv_init = vmci_transport_notify_pkt_recv_init,
++      .recv_pre_block = vmci_transport_notify_pkt_recv_pre_block,
++      .recv_pre_dequeue = vmci_transport_notify_pkt_recv_pre_dequeue,
++      .recv_post_dequeue = vmci_transport_notify_pkt_recv_post_dequeue,
++      .send_init = vmci_transport_notify_pkt_send_init,
++      .send_pre_block = vmci_transport_notify_pkt_send_pre_block,
++      .send_pre_enqueue = vmci_transport_notify_pkt_send_pre_enqueue,
++      .send_post_enqueue = vmci_transport_notify_pkt_send_post_enqueue,
++      .process_request = vmci_transport_notify_pkt_process_request,
++      .process_negotiate = vmci_transport_notify_pkt_process_negotiate,
+ };
+diff --git a/net/vmw_vsock/vmci_transport_notify_qstate.c b/net/vmw_vsock/vmci_transport_notify_qstate.c
+index 21e591d..f3a0afc 100644
+--- a/net/vmw_vsock/vmci_transport_notify_qstate.c
++++ b/net/vmw_vsock/vmci_transport_notify_qstate.c
+@@ -420,19 +420,19 @@ vmci_transport_notify_pkt_send_pre_enqueue(
+ /* Socket always on control packet based operations. */
+ const struct vmci_transport_notify_ops vmci_transport_notify_pkt_q_state_ops = {
+-      vmci_transport_notify_pkt_socket_init,
+-      vmci_transport_notify_pkt_socket_destruct,
+-      vmci_transport_notify_pkt_poll_in,
+-      vmci_transport_notify_pkt_poll_out,
+-      vmci_transport_notify_pkt_handle_pkt,
+-      vmci_transport_notify_pkt_recv_init,
+-      vmci_transport_notify_pkt_recv_pre_block,
+-      vmci_transport_notify_pkt_recv_pre_dequeue,
+-      vmci_transport_notify_pkt_recv_post_dequeue,
+-      vmci_transport_notify_pkt_send_init,
+-      vmci_transport_notify_pkt_send_pre_block,
+-      vmci_transport_notify_pkt_send_pre_enqueue,
+-      vmci_transport_notify_pkt_send_post_enqueue,
+-      vmci_transport_notify_pkt_process_request,
+-      vmci_transport_notify_pkt_process_negotiate,
++      .socket_init = vmci_transport_notify_pkt_socket_init,
++      .socket_destruct = vmci_transport_notify_pkt_socket_destruct,
++      .poll_in = vmci_transport_notify_pkt_poll_in,
++      .poll_out = vmci_transport_notify_pkt_poll_out,
++      .handle_notify_pkt = vmci_transport_notify_pkt_handle_pkt,
++      .recv_init = vmci_transport_notify_pkt_recv_init,
++      .recv_pre_block = vmci_transport_notify_pkt_recv_pre_block,
++      .recv_pre_dequeue = vmci_transport_notify_pkt_recv_pre_dequeue,
++      .recv_post_dequeue = vmci_transport_notify_pkt_recv_post_dequeue,
++      .send_init = vmci_transport_notify_pkt_send_init,
++      .send_pre_block = vmci_transport_notify_pkt_send_pre_block,
++      .send_pre_enqueue = vmci_transport_notify_pkt_send_pre_enqueue,
++      .send_post_enqueue = vmci_transport_notify_pkt_send_post_enqueue,
++      .process_request = vmci_transport_notify_pkt_process_request,
++      .process_negotiate = vmci_transport_notify_pkt_process_negotiate,
+ };
+diff --git a/net/wireless/scan.c b/net/wireless/scan.c
+index 0358e12..db46495 100644
+--- a/net/wireless/scan.c
++++ b/net/wireless/scan.c
+@@ -1663,8 +1663,9 @@ static int ieee80211_scan_results(struct cfg80211_registered_device *rdev,
+ int cfg80211_wext_giwscan(struct net_device *dev,
+                         struct iw_request_info *info,
+-                        struct iw_point *data, char *extra)
++                        union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_point *data = &wrqu->data;
+       struct cfg80211_registered_device *rdev;
+       int res;
+diff --git a/net/wireless/wext-compat.c b/net/wireless/wext-compat.c
+index 9f27221..031b0c4 100644
+--- a/net/wireless/wext-compat.c
++++ b/net/wireless/wext-compat.c
+@@ -23,16 +23,19 @@
+ int cfg80211_wext_giwname(struct net_device *dev,
+                         struct iw_request_info *info,
+-                        char *name, char *extra)
++                        union iwreq_data *wrqu, char *extra)
+ {
++      char *name = wrqu->name;
++
+       strcpy(name, "IEEE 802.11");
+       return 0;
+ }
+ EXPORT_WEXT_HANDLER(cfg80211_wext_giwname);
+ int cfg80211_wext_siwmode(struct net_device *dev, struct iw_request_info *info,
+-                        u32 *mode, char *extra)
++                        union iwreq_data *wrqu, char *extra)
+ {
++      u32 *mode = &wrqu->mode;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev;
+       struct vif_params vifparams;
+@@ -67,8 +70,9 @@ int cfg80211_wext_siwmode(struct net_device *dev, struct iw_request_info *info,
+ EXPORT_WEXT_HANDLER(cfg80211_wext_siwmode);
+ int cfg80211_wext_giwmode(struct net_device *dev, struct iw_request_info *info,
+-                        u32 *mode, char *extra)
++                        union iwreq_data *wrqu, char *extra)
+ {
++      u32 *mode = &wrqu->mode;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       if (!wdev)
+@@ -104,8 +108,9 @@ EXPORT_WEXT_HANDLER(cfg80211_wext_giwmode);
+ int cfg80211_wext_giwrange(struct net_device *dev,
+                          struct iw_request_info *info,
+-                         struct iw_point *data, char *extra)
++                         union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_point *data = &wrqu->data;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct iw_range *range = (struct iw_range *) extra;
+       enum nl80211_band band;
+@@ -248,8 +253,9 @@ int cfg80211_wext_freq(struct iw_freq *freq)
+ int cfg80211_wext_siwrts(struct net_device *dev,
+                        struct iw_request_info *info,
+-                       struct iw_param *rts, char *extra)
++                       union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *rts = &wrqu->rts;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       u32 orts = wdev->wiphy->rts_threshold;
+@@ -272,8 +278,9 @@ EXPORT_WEXT_HANDLER(cfg80211_wext_siwrts);
+ int cfg80211_wext_giwrts(struct net_device *dev,
+                        struct iw_request_info *info,
+-                       struct iw_param *rts, char *extra)
++                       union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *rts = &wrqu->rts;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       rts->value = wdev->wiphy->rts_threshold;
+@@ -286,8 +293,9 @@ EXPORT_WEXT_HANDLER(cfg80211_wext_giwrts);
+ int cfg80211_wext_siwfrag(struct net_device *dev,
+                         struct iw_request_info *info,
+-                        struct iw_param *frag, char *extra)
++                        union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *frag = &wrqu->frag;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       u32 ofrag = wdev->wiphy->frag_threshold;
+@@ -312,8 +320,9 @@ EXPORT_WEXT_HANDLER(cfg80211_wext_siwfrag);
+ int cfg80211_wext_giwfrag(struct net_device *dev,
+                         struct iw_request_info *info,
+-                        struct iw_param *frag, char *extra)
++                        union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *frag = &wrqu->frag;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       frag->value = wdev->wiphy->frag_threshold;
+@@ -326,8 +335,9 @@ EXPORT_WEXT_HANDLER(cfg80211_wext_giwfrag);
+ static int cfg80211_wext_siwretry(struct net_device *dev,
+                                 struct iw_request_info *info,
+-                                struct iw_param *retry, char *extra)
++                                union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *retry = &wrqu->retry;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       u32 changed = 0;
+@@ -366,8 +376,9 @@ static int cfg80211_wext_siwretry(struct net_device *dev,
+ int cfg80211_wext_giwretry(struct net_device *dev,
+                          struct iw_request_info *info,
+-                         struct iw_param *retry, char *extra)
++                         union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *retry = &wrqu->retry;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       retry->disabled = 0;
+@@ -551,8 +562,9 @@ static int cfg80211_set_encryption(struct cfg80211_registered_device *rdev,
+ static int cfg80211_wext_siwencode(struct net_device *dev,
+                                  struct iw_request_info *info,
+-                                 struct iw_point *erq, char *keybuf)
++                                 union iwreq_data *wrqu, char *keybuf)
+ {
++      struct iw_point *erq = &wrqu->encoding;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       int idx, err;
+@@ -611,8 +623,9 @@ static int cfg80211_wext_siwencode(struct net_device *dev,
+ static int cfg80211_wext_siwencodeext(struct net_device *dev,
+                                     struct iw_request_info *info,
+-                                    struct iw_point *erq, char *extra)
++                                    union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_point *erq = &wrqu->encoding;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       struct iw_encode_ext *ext = (struct iw_encode_ext *) extra;
+@@ -702,8 +715,9 @@ static int cfg80211_wext_siwencodeext(struct net_device *dev,
+ static int cfg80211_wext_giwencode(struct net_device *dev,
+                                  struct iw_request_info *info,
+-                                 struct iw_point *erq, char *keybuf)
++                                 union iwreq_data *wrqu, char *keybuf)
+ {
++      struct iw_point *erq = &wrqu->encoding;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       int idx;
+@@ -739,8 +753,9 @@ static int cfg80211_wext_giwencode(struct net_device *dev,
+ static int cfg80211_wext_siwfreq(struct net_device *dev,
+                                struct iw_request_info *info,
+-                               struct iw_freq *wextfreq, char *extra)
++                               union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_freq *wextfreq = &wrqu->freq;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       struct cfg80211_chan_def chandef = {
+@@ -782,8 +797,9 @@ static int cfg80211_wext_siwfreq(struct net_device *dev,
+ static int cfg80211_wext_giwfreq(struct net_device *dev,
+                                struct iw_request_info *info,
+-                               struct iw_freq *freq, char *extra)
++                               union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_freq *freq = &wrqu->freq;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       struct cfg80211_chan_def chandef;
+@@ -1041,8 +1057,9 @@ static int cfg80211_set_key_mgt(struct wireless_dev *wdev, u32 key_mgt)
+ static int cfg80211_wext_siwauth(struct net_device *dev,
+                                struct iw_request_info *info,
+-                               struct iw_param *data, char *extra)
++                               union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *data = &wrqu->param;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       if (wdev->iftype != NL80211_IFTYPE_STATION)
+@@ -1074,7 +1091,7 @@ static int cfg80211_wext_siwauth(struct net_device *dev,
+ static int cfg80211_wext_giwauth(struct net_device *dev,
+                                struct iw_request_info *info,
+-                               struct iw_param *data, char *extra)
++                               union iwreq_data *wrqu, char *extra)
+ {
+       /* XXX: what do we need? */
+@@ -1083,8 +1100,9 @@ static int cfg80211_wext_giwauth(struct net_device *dev,
+ static int cfg80211_wext_siwpower(struct net_device *dev,
+                                 struct iw_request_info *info,
+-                                struct iw_param *wrq, char *extra)
++                                union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *wrq = &wrqu->power;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       bool ps = wdev->ps;
+@@ -1130,8 +1148,9 @@ static int cfg80211_wext_siwpower(struct net_device *dev,
+ static int cfg80211_wext_giwpower(struct net_device *dev,
+                                 struct iw_request_info *info,
+-                                struct iw_param *wrq, char *extra)
++                                union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *wrq = &wrqu->power;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       wrq->disabled = !wdev->ps;
+@@ -1185,8 +1204,9 @@ static int cfg80211_wds_wext_giwap(struct net_device *dev,
+ static int cfg80211_wext_siwrate(struct net_device *dev,
+                                struct iw_request_info *info,
+-                               struct iw_param *rate, char *extra)
++                               union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *rate = &wrqu->bitrate;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       struct cfg80211_bitrate_mask mask;
+@@ -1236,8 +1256,9 @@ static int cfg80211_wext_siwrate(struct net_device *dev,
+ static int cfg80211_wext_giwrate(struct net_device *dev,
+                                struct iw_request_info *info,
+-                               struct iw_param *rate, char *extra)
++                               union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_param *rate = &wrqu->bitrate;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       /* we are under RTNL - globally locked - so can use a static struct */
+@@ -1344,8 +1365,9 @@ static struct iw_statistics *cfg80211_wireless_stats(struct net_device *dev)
+ static int cfg80211_wext_siwap(struct net_device *dev,
+                              struct iw_request_info *info,
+-                             struct sockaddr *ap_addr, char *extra)
++                             union iwreq_data *wrqu, char *extra)
+ {
++      struct sockaddr *ap_addr = &wrqu->ap_addr;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       switch (wdev->iftype) {
+@@ -1362,8 +1384,9 @@ static int cfg80211_wext_siwap(struct net_device *dev,
+ static int cfg80211_wext_giwap(struct net_device *dev,
+                              struct iw_request_info *info,
+-                             struct sockaddr *ap_addr, char *extra)
++                             union iwreq_data *wrqu, char *extra)
+ {
++      struct sockaddr *ap_addr = &wrqu->ap_addr;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       switch (wdev->iftype) {
+@@ -1380,8 +1403,9 @@ static int cfg80211_wext_giwap(struct net_device *dev,
+ static int cfg80211_wext_siwessid(struct net_device *dev,
+                                 struct iw_request_info *info,
+-                                struct iw_point *data, char *ssid)
++                                union iwreq_data *wrqu, char *ssid)
+ {
++      struct iw_point *data = &wrqu->data;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       switch (wdev->iftype) {
+@@ -1396,8 +1420,9 @@ static int cfg80211_wext_siwessid(struct net_device *dev,
+ static int cfg80211_wext_giwessid(struct net_device *dev,
+                                 struct iw_request_info *info,
+-                                struct iw_point *data, char *ssid)
++                                union iwreq_data *wrqu, char *ssid)
+ {
++      struct iw_point *data = &wrqu->data;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       data->flags = 0;
+@@ -1415,7 +1440,7 @@ static int cfg80211_wext_giwessid(struct net_device *dev,
+ static int cfg80211_wext_siwpmksa(struct net_device *dev,
+                                 struct iw_request_info *info,
+-                                struct iw_point *data, char *extra)
++                                union iwreq_data *wrqu, char *extra)
+ {
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+@@ -1455,38 +1480,38 @@ static int cfg80211_wext_siwpmksa(struct net_device *dev,
+ }
+ static const iw_handler cfg80211_handlers[] = {
+-      [IW_IOCTL_IDX(SIOCGIWNAME)]     = (iw_handler) cfg80211_wext_giwname,
+-      [IW_IOCTL_IDX(SIOCSIWFREQ)]     = (iw_handler) cfg80211_wext_siwfreq,
+-      [IW_IOCTL_IDX(SIOCGIWFREQ)]     = (iw_handler) cfg80211_wext_giwfreq,
+-      [IW_IOCTL_IDX(SIOCSIWMODE)]     = (iw_handler) cfg80211_wext_siwmode,
+-      [IW_IOCTL_IDX(SIOCGIWMODE)]     = (iw_handler) cfg80211_wext_giwmode,
+-      [IW_IOCTL_IDX(SIOCGIWRANGE)]    = (iw_handler) cfg80211_wext_giwrange,
+-      [IW_IOCTL_IDX(SIOCSIWAP)]       = (iw_handler) cfg80211_wext_siwap,
+-      [IW_IOCTL_IDX(SIOCGIWAP)]       = (iw_handler) cfg80211_wext_giwap,
+-      [IW_IOCTL_IDX(SIOCSIWMLME)]     = (iw_handler) cfg80211_wext_siwmlme,
+-      [IW_IOCTL_IDX(SIOCSIWSCAN)]     = (iw_handler) cfg80211_wext_siwscan,
+-      [IW_IOCTL_IDX(SIOCGIWSCAN)]     = (iw_handler) cfg80211_wext_giwscan,
+-      [IW_IOCTL_IDX(SIOCSIWESSID)]    = (iw_handler) cfg80211_wext_siwessid,
+-      [IW_IOCTL_IDX(SIOCGIWESSID)]    = (iw_handler) cfg80211_wext_giwessid,
+-      [IW_IOCTL_IDX(SIOCSIWRATE)]     = (iw_handler) cfg80211_wext_siwrate,
+-      [IW_IOCTL_IDX(SIOCGIWRATE)]     = (iw_handler) cfg80211_wext_giwrate,
+-      [IW_IOCTL_IDX(SIOCSIWRTS)]      = (iw_handler) cfg80211_wext_siwrts,
+-      [IW_IOCTL_IDX(SIOCGIWRTS)]      = (iw_handler) cfg80211_wext_giwrts,
+-      [IW_IOCTL_IDX(SIOCSIWFRAG)]     = (iw_handler) cfg80211_wext_siwfrag,
+-      [IW_IOCTL_IDX(SIOCGIWFRAG)]     = (iw_handler) cfg80211_wext_giwfrag,
+-      [IW_IOCTL_IDX(SIOCSIWTXPOW)]    = (iw_handler) cfg80211_wext_siwtxpower,
+-      [IW_IOCTL_IDX(SIOCGIWTXPOW)]    = (iw_handler) cfg80211_wext_giwtxpower,
+-      [IW_IOCTL_IDX(SIOCSIWRETRY)]    = (iw_handler) cfg80211_wext_siwretry,
+-      [IW_IOCTL_IDX(SIOCGIWRETRY)]    = (iw_handler) cfg80211_wext_giwretry,
+-      [IW_IOCTL_IDX(SIOCSIWENCODE)]   = (iw_handler) cfg80211_wext_siwencode,
+-      [IW_IOCTL_IDX(SIOCGIWENCODE)]   = (iw_handler) cfg80211_wext_giwencode,
+-      [IW_IOCTL_IDX(SIOCSIWPOWER)]    = (iw_handler) cfg80211_wext_siwpower,
+-      [IW_IOCTL_IDX(SIOCGIWPOWER)]    = (iw_handler) cfg80211_wext_giwpower,
+-      [IW_IOCTL_IDX(SIOCSIWGENIE)]    = (iw_handler) cfg80211_wext_siwgenie,
+-      [IW_IOCTL_IDX(SIOCSIWAUTH)]     = (iw_handler) cfg80211_wext_siwauth,
+-      [IW_IOCTL_IDX(SIOCGIWAUTH)]     = (iw_handler) cfg80211_wext_giwauth,
+-      [IW_IOCTL_IDX(SIOCSIWENCODEEXT)]= (iw_handler) cfg80211_wext_siwencodeext,
+-      [IW_IOCTL_IDX(SIOCSIWPMKSA)]    = (iw_handler) cfg80211_wext_siwpmksa,
++      [IW_IOCTL_IDX(SIOCGIWNAME)]     = cfg80211_wext_giwname,
++      [IW_IOCTL_IDX(SIOCSIWFREQ)]     = cfg80211_wext_siwfreq,
++      [IW_IOCTL_IDX(SIOCGIWFREQ)]     = cfg80211_wext_giwfreq,
++      [IW_IOCTL_IDX(SIOCSIWMODE)]     = cfg80211_wext_siwmode,
++      [IW_IOCTL_IDX(SIOCGIWMODE)]     = cfg80211_wext_giwmode,
++      [IW_IOCTL_IDX(SIOCGIWRANGE)]    = cfg80211_wext_giwrange,
++      [IW_IOCTL_IDX(SIOCSIWAP)]       = cfg80211_wext_siwap,
++      [IW_IOCTL_IDX(SIOCGIWAP)]       = cfg80211_wext_giwap,
++      [IW_IOCTL_IDX(SIOCSIWMLME)]     = cfg80211_wext_siwmlme,
++      [IW_IOCTL_IDX(SIOCSIWSCAN)]     = cfg80211_wext_siwscan,
++      [IW_IOCTL_IDX(SIOCGIWSCAN)]     = cfg80211_wext_giwscan,
++      [IW_IOCTL_IDX(SIOCSIWESSID)]    = cfg80211_wext_siwessid,
++      [IW_IOCTL_IDX(SIOCGIWESSID)]    = cfg80211_wext_giwessid,
++      [IW_IOCTL_IDX(SIOCSIWRATE)]     = cfg80211_wext_siwrate,
++      [IW_IOCTL_IDX(SIOCGIWRATE)]     = cfg80211_wext_giwrate,
++      [IW_IOCTL_IDX(SIOCSIWRTS)]      = cfg80211_wext_siwrts,
++      [IW_IOCTL_IDX(SIOCGIWRTS)]      = cfg80211_wext_giwrts,
++      [IW_IOCTL_IDX(SIOCSIWFRAG)]     = cfg80211_wext_siwfrag,
++      [IW_IOCTL_IDX(SIOCGIWFRAG)]     = cfg80211_wext_giwfrag,
++      [IW_IOCTL_IDX(SIOCSIWTXPOW)]    = cfg80211_wext_siwtxpower,
++      [IW_IOCTL_IDX(SIOCGIWTXPOW)]    = cfg80211_wext_giwtxpower,
++      [IW_IOCTL_IDX(SIOCSIWRETRY)]    = cfg80211_wext_siwretry,
++      [IW_IOCTL_IDX(SIOCGIWRETRY)]    = cfg80211_wext_giwretry,
++      [IW_IOCTL_IDX(SIOCSIWENCODE)]   = cfg80211_wext_siwencode,
++      [IW_IOCTL_IDX(SIOCGIWENCODE)]   = cfg80211_wext_giwencode,
++      [IW_IOCTL_IDX(SIOCSIWPOWER)]    = cfg80211_wext_siwpower,
++      [IW_IOCTL_IDX(SIOCGIWPOWER)]    = cfg80211_wext_giwpower,
++      [IW_IOCTL_IDX(SIOCSIWGENIE)]    = cfg80211_wext_siwgenie,
++      [IW_IOCTL_IDX(SIOCSIWAUTH)]     = cfg80211_wext_siwauth,
++      [IW_IOCTL_IDX(SIOCGIWAUTH)]     = cfg80211_wext_giwauth,
++      [IW_IOCTL_IDX(SIOCSIWENCODEEXT)]= cfg80211_wext_siwencodeext,
++      [IW_IOCTL_IDX(SIOCSIWPMKSA)]    = cfg80211_wext_siwpmksa,
+ };
+ const struct iw_handler_def cfg80211_wext_handler = {
+diff --git a/net/wireless/wext-compat.h b/net/wireless/wext-compat.h
+index 94c7405..499cca4 100644
+--- a/net/wireless/wext-compat.h
++++ b/net/wireless/wext-compat.h
+@@ -12,7 +12,7 @@
+ int cfg80211_ibss_wext_siwfreq(struct net_device *dev,
+                              struct iw_request_info *info,
+-                             struct iw_freq *freq, char *extra);
++                             struct iw_freq *wextfreq, char *extra);
+ int cfg80211_ibss_wext_giwfreq(struct net_device *dev,
+                              struct iw_request_info *info,
+                              struct iw_freq *freq, char *extra);
+@@ -31,7 +31,7 @@ int cfg80211_ibss_wext_giwessid(struct net_device *dev,
+ int cfg80211_mgd_wext_siwfreq(struct net_device *dev,
+                             struct iw_request_info *info,
+-                            struct iw_freq *freq, char *extra);
++                            struct iw_freq *wextfreq, char *extra);
+ int cfg80211_mgd_wext_giwfreq(struct net_device *dev,
+                             struct iw_request_info *info,
+                             struct iw_freq *freq, char *extra);
+@@ -50,10 +50,10 @@ int cfg80211_mgd_wext_giwessid(struct net_device *dev,
+ int cfg80211_wext_siwmlme(struct net_device *dev,
+                         struct iw_request_info *info,
+-                        struct iw_point *data, char *extra);
++                        union iwreq_data *wrqu, char *extra);
+ int cfg80211_wext_siwgenie(struct net_device *dev,
+                          struct iw_request_info *info,
+-                         struct iw_point *data, char *extra);
++                         union iwreq_data *wrqu, char *extra);
+ int cfg80211_wext_freq(struct iw_freq *freq);
+diff --git a/net/wireless/wext-core.c b/net/wireless/wext-core.c
+index 6250b1c..91c4bc4 100644
+--- a/net/wireless/wext-core.c
++++ b/net/wireless/wext-core.c
+@@ -781,8 +781,7 @@ static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
+                */
+               /* Support for very large requests */
+-              if ((descr->flags & IW_DESCR_FLAG_NOMAX) &&
+-                  (user_length > descr->max_tokens)) {
++              if (user_length > descr->max_tokens) {
+                       /* Allow userspace to GET more than max so
+                        * we can support any size GET requests.
+                        * There is still a limit : -ENOMEM.
+@@ -821,22 +820,6 @@ static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
+               }
+       }
+-      if (IW_IS_GET(cmd) && !(descr->flags & IW_DESCR_FLAG_NOMAX)) {
+-              /*
+-               * If this is a GET, but not NOMAX, it means that the extra
+-               * data is not bounded by userspace, but by max_tokens. Thus
+-               * set the length to max_tokens. This matches the extra data
+-               * allocation.
+-               * The driver should fill it with the number of tokens it
+-               * provided, and it may check iwp->length rather than having
+-               * knowledge of max_tokens. If the driver doesn't change the
+-               * iwp->length, this ioctl just copies back max_token tokens
+-               * filled with zeroes. Hopefully the driver isn't claiming
+-               * them to be valid data.
+-               */
+-              iwp->length = descr->max_tokens;
+-      }
+-
+       err = handler(dev, info, (union iwreq_data *) iwp, extra);
+       iwp->length += essid_compat;
+diff --git a/net/wireless/wext-sme.c b/net/wireless/wext-sme.c
+index a4e8af3..f8c0e76 100644
+--- a/net/wireless/wext-sme.c
++++ b/net/wireless/wext-sme.c
+@@ -330,8 +330,9 @@ int cfg80211_mgd_wext_giwap(struct net_device *dev,
+ int cfg80211_wext_siwgenie(struct net_device *dev,
+                          struct iw_request_info *info,
+-                         struct iw_point *data, char *extra)
++                         union iwreq_data *wrqu, char *extra)
+ {
++      struct iw_point *data = &wrqu->data;
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
+       u8 *ie = extra;
+@@ -380,7 +381,7 @@ int cfg80211_wext_siwgenie(struct net_device *dev,
+ int cfg80211_wext_siwmlme(struct net_device *dev,
+                         struct iw_request_info *info,
+-                        struct iw_point *data, char *extra)
++                        union iwreq_data *wrqu, char *extra)
+ {
+       struct wireless_dev *wdev = dev->ieee80211_ptr;
+       struct iw_mlme *mlme = (struct iw_mlme *)extra;
+diff --git a/net/x25/sysctl_net_x25.c b/net/x25/sysctl_net_x25.c
+index 4323952..a06dfe1 100644
+--- a/net/x25/sysctl_net_x25.c
++++ b/net/x25/sysctl_net_x25.c
+@@ -70,7 +70,7 @@ static struct ctl_table x25_table[] = {
+               .mode =         0644,
+               .proc_handler = proc_dointvec,
+       },
+-      { 0, },
++      { },
+ };
+ void __init x25_register_sysctl(void)
+diff --git a/net/x25/x25_proc.c b/net/x25/x25_proc.c
+index 0917f04..f4e3d8c 100644
+--- a/net/x25/x25_proc.c
++++ b/net/x25/x25_proc.c
+@@ -209,7 +209,7 @@ static const struct file_operations x25_seq_forward_fops = {
+ int __init x25_proc_init(void)
+ {
+-      if (!proc_mkdir("x25", init_net.proc_net))
++      if (!proc_mkdir_restrict("x25", init_net.proc_net))
+               return -ENOMEM;
+       if (!proc_create("x25/route", S_IRUGO, init_net.proc_net,
+diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c
+index 45f9cf9..73feea61 100644
+--- a/net/xfrm/xfrm_policy.c
++++ b/net/xfrm/xfrm_policy.c
+@@ -332,7 +332,7 @@ static void xfrm_policy_kill(struct xfrm_policy *policy)
+ {
+       policy->walk.dead = 1;
+-      atomic_inc(&policy->genid);
++      atomic_inc_unchecked(&policy->genid);
+       if (del_timer(&policy->polq.hold_timer))
+               xfrm_pol_put(policy);
+@@ -786,7 +786,7 @@ int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl)
+       else
+               hlist_add_head(&policy->bydst, chain);
+       __xfrm_policy_link(policy, dir);
+-      atomic_inc(&net->xfrm.flow_cache_genid);
++      atomic_inc_unchecked(&net->xfrm.flow_cache_genid);
+       /* After previous checking, family can either be AF_INET or AF_INET6 */
+       if (policy->family == AF_INET)
+@@ -1900,7 +1900,7 @@ xfrm_resolve_and_create_bundle(struct xfrm_policy **pols, int num_pols,
+       xdst->num_pols = num_pols;
+       memcpy(xdst->pols, pols, sizeof(struct xfrm_policy *) * num_pols);
+-      xdst->policy_genid = atomic_read(&pols[0]->genid);
++      xdst->policy_genid = atomic_read_unchecked(&pols[0]->genid);
+       return xdst;
+ }
+@@ -2714,10 +2714,11 @@ void xfrm_garbage_collect(struct net *net)
+ }
+ EXPORT_SYMBOL(xfrm_garbage_collect);
+-static void xfrm_garbage_collect_deferred(struct net *net)
++void xfrm_garbage_collect_deferred(struct net *net)
+ {
+       flow_cache_flush_deferred(net);
+ }
++EXPORT_SYMBOL(xfrm_garbage_collect_deferred);
+ static void xfrm_init_pmtu(struct dst_entry *dst)
+ {
+@@ -2767,7 +2768,7 @@ static int xfrm_bundle_ok(struct xfrm_dst *first)
+               if (xdst->xfrm_genid != dst->xfrm->genid)
+                       return 0;
+               if (xdst->num_pols > 0 &&
+-                  xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
++                  xdst->policy_genid != atomic_read_unchecked(&xdst->pols[0]->genid))
+                       return 0;
+               mtu = dst_mtu(dst->child);
+@@ -2854,8 +2855,6 @@ int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo)
+                       dst_ops->link_failure = xfrm_link_failure;
+               if (likely(dst_ops->neigh_lookup == NULL))
+                       dst_ops->neigh_lookup = xfrm_neigh_lookup;
+-              if (likely(afinfo->garbage_collect == NULL))
+-                      afinfo->garbage_collect = xfrm_garbage_collect_deferred;
+               rcu_assign_pointer(xfrm_policy_afinfo[afinfo->family], afinfo);
+       }
+       spin_unlock(&xfrm_policy_afinfo_lock);
+@@ -2889,7 +2888,6 @@ int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo)
+               dst_ops->check = NULL;
+               dst_ops->negative_advice = NULL;
+               dst_ops->link_failure = NULL;
+-              afinfo->garbage_collect = NULL;
+       }
+       return err;
+ }
+@@ -3078,7 +3076,7 @@ static void __net_exit xfrm_net_exit(struct net *net)
+       xfrm_statistics_fini(net);
+ }
+-static struct pernet_operations __net_initdata xfrm_net_ops = {
++static struct pernet_operations __net_initconst xfrm_net_ops = {
+       .init = xfrm_net_init,
+       .exit = xfrm_net_exit,
+ };
+@@ -3270,7 +3268,7 @@ static int xfrm_policy_migrate(struct xfrm_policy *pol,
+                              sizeof(pol->xfrm_vec[i].saddr));
+                       pol->xfrm_vec[i].encap_family = mp->new_family;
+                       /* flush bundles */
+-                      atomic_inc(&pol->genid);
++                      atomic_inc_unchecked(&pol->genid);
+               }
+       }
+diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
+index a30f898d..3930929 100644
+--- a/net/xfrm/xfrm_state.c
++++ b/net/xfrm/xfrm_state.c
+@@ -166,12 +166,14 @@ int xfrm_register_type(const struct xfrm_type *type, unsigned short family)
+       if (unlikely(afinfo == NULL))
+               return -EAFNOSUPPORT;
+-      typemap = afinfo->type_map;
++      typemap = (const struct xfrm_type **)afinfo->type_map;
+       spin_lock_bh(&xfrm_type_lock);
+-      if (likely(typemap[type->proto] == NULL))
++      if (likely(typemap[type->proto] == NULL)) {
++              pax_open_kernel();
+               typemap[type->proto] = type;
+-      else
++              pax_close_kernel();
++      } else
+               err = -EEXIST;
+       spin_unlock_bh(&xfrm_type_lock);
+       xfrm_state_put_afinfo(afinfo);
+@@ -187,13 +189,16 @@ int xfrm_unregister_type(const struct xfrm_type *type, unsigned short family)
+       if (unlikely(afinfo == NULL))
+               return -EAFNOSUPPORT;
+-      typemap = afinfo->type_map;
++      typemap = (const struct xfrm_type **)afinfo->type_map;
+       spin_lock_bh(&xfrm_type_lock);
+       if (unlikely(typemap[type->proto] != type))
+               err = -ENOENT;
+-      else
++      else {
++              pax_open_kernel();
+               typemap[type->proto] = NULL;
++              pax_close_kernel();
++      }
+       spin_unlock_bh(&xfrm_type_lock);
+       xfrm_state_put_afinfo(afinfo);
+       return err;
+@@ -203,7 +208,6 @@ EXPORT_SYMBOL(xfrm_unregister_type);
+ static const struct xfrm_type *xfrm_get_type(u8 proto, unsigned short family)
+ {
+       struct xfrm_state_afinfo *afinfo;
+-      const struct xfrm_type **typemap;
+       const struct xfrm_type *type;
+       int modload_attempted = 0;
+@@ -211,9 +215,8 @@ retry:
+       afinfo = xfrm_state_get_afinfo(family);
+       if (unlikely(afinfo == NULL))
+               return NULL;
+-      typemap = afinfo->type_map;
+-      type = typemap[proto];
++      type = afinfo->type_map[proto];
+       if (unlikely(type && !try_module_get(type->owner)))
+               type = NULL;
+       if (!type && !modload_attempted) {
+@@ -247,7 +250,7 @@ int xfrm_register_mode(struct xfrm_mode *mode, int family)
+               return -EAFNOSUPPORT;
+       err = -EEXIST;
+-      modemap = afinfo->mode_map;
++      modemap = (struct xfrm_mode **)afinfo->mode_map;
+       spin_lock_bh(&xfrm_mode_lock);
+       if (modemap[mode->encap])
+               goto out;
+@@ -256,8 +259,10 @@ int xfrm_register_mode(struct xfrm_mode *mode, int family)
+       if (!try_module_get(afinfo->owner))
+               goto out;
+-      mode->afinfo = afinfo;
++      pax_open_kernel();
++      const_cast(mode->afinfo) = afinfo;
+       modemap[mode->encap] = mode;
++      pax_close_kernel();
+       err = 0;
+ out:
+@@ -281,10 +286,12 @@ int xfrm_unregister_mode(struct xfrm_mode *mode, int family)
+               return -EAFNOSUPPORT;
+       err = -ENOENT;
+-      modemap = afinfo->mode_map;
++      modemap = (struct xfrm_mode **)afinfo->mode_map;
+       spin_lock_bh(&xfrm_mode_lock);
+       if (likely(modemap[mode->encap] == mode)) {
++              pax_open_kernel();
+               modemap[mode->encap] = NULL;
++              pax_close_kernel();
+               module_put(mode->afinfo->owner);
+               err = 0;
+       }
+@@ -1506,10 +1513,10 @@ EXPORT_SYMBOL(xfrm_find_acq_byseq);
+ u32 xfrm_get_acqseq(void)
+ {
+       u32 res;
+-      static atomic_t acqseq;
++      static atomic_unchecked_t acqseq;
+       do {
+-              res = atomic_inc_return(&acqseq);
++              res = atomic_inc_return_unchecked(&acqseq);
+       } while (!res);
+       return res;
+@@ -1884,7 +1891,7 @@ static DEFINE_SPINLOCK(xfrm_km_lock);
+ int xfrm_register_km(struct xfrm_mgr *km)
+ {
+       spin_lock_bh(&xfrm_km_lock);
+-      list_add_tail_rcu(&km->list, &xfrm_km_list);
++      pax_list_add_tail_rcu((struct list_head *)&km->list, &xfrm_km_list);
+       spin_unlock_bh(&xfrm_km_lock);
+       return 0;
+ }
+@@ -1893,7 +1900,7 @@ EXPORT_SYMBOL(xfrm_register_km);
+ int xfrm_unregister_km(struct xfrm_mgr *km)
+ {
+       spin_lock_bh(&xfrm_km_lock);
+-      list_del_rcu(&km->list);
++      pax_list_del_rcu((struct list_head *)&km->list);
+       spin_unlock_bh(&xfrm_km_lock);
+       synchronize_rcu();
+       return 0;
+diff --git a/net/xfrm/xfrm_sysctl.c b/net/xfrm/xfrm_sysctl.c
+index 05a6e3d..6716ec9 100644
+--- a/net/xfrm/xfrm_sysctl.c
++++ b/net/xfrm/xfrm_sysctl.c
+@@ -42,7 +42,7 @@ static struct ctl_table xfrm_table[] = {
+ int __net_init xfrm_sysctl_init(struct net *net)
+ {
+-      struct ctl_table *table;
++      ctl_table_no_const *table;
+       __xfrm_sysctl_init(net);
+diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c
+index 0889209..2645a49 100644
+--- a/net/xfrm/xfrm_user.c
++++ b/net/xfrm/xfrm_user.c
+@@ -2471,7 +2471,7 @@ static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
+                       return -EINVAL;
+               {
+-                      struct netlink_dump_control c = {
++                      netlink_dump_control_no_const c = {
+                               .dump = link->dump,
+                               .done = link->done,
+                       };
+diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include
+index 1792198..2620ac6 100644
+--- a/scripts/Kbuild.include
++++ b/scripts/Kbuild.include
+@@ -151,7 +151,7 @@ cc-ifversion = $(shell [ $(cc-version) $(1) $(2) ] && echo $(3) || echo $(4))
+ # cc-ldoption
+ # Usage: ldflags += $(call cc-ldoption, -Wl$(comma)--hash-style=both)
+ cc-ldoption = $(call try-run,\
+-      $(CC) $(1) -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2))
++      $(CC) $(1) -Wl,-r -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2))
+ # ld-option
+ # Usage: LDFLAGS += $(call ld-option, -X)
+diff --git a/scripts/Makefile.extrawarn b/scripts/Makefile.extrawarn
+index 53449a6..c1fd180 100644
+--- a/scripts/Makefile.extrawarn
++++ b/scripts/Makefile.extrawarn
+@@ -28,6 +28,10 @@ warning-1 += $(call cc-option, -Wunused-const-variable)
+ warning-1 += $(call cc-disable-warning, missing-field-initializers)
+ warning-1 += $(call cc-disable-warning, sign-compare)
++#warning-1 += $(call cc-option, -Wnull-dereference)
++warning-1 += $(call cc-option, -Wduplicated-cond)
++warning-1 += $(call cc-option, -Wlogical-op)
++
+ warning-2 := -Waggregate-return
+ warning-2 += -Wcast-align
+ warning-2 += -Wdisabled-optimization
+diff --git a/scripts/Makefile.gcc-plugins b/scripts/Makefile.gcc-plugins
+index 61f0e6d..5486c77 100644
+--- a/scripts/Makefile.gcc-plugins
++++ b/scripts/Makefile.gcc-plugins
+@@ -19,16 +19,84 @@ ifdef CONFIG_GCC_PLUGINS
+     endif
+   endif
+-  GCC_PLUGINS_CFLAGS := $(strip $(addprefix -fplugin=$(objtree)/scripts/gcc-plugins/, $(gcc-plugin-y)) $(gcc-plugin-cflags-y))
++  gcc-plugin-$(CONFIG_PAX_CONSTIFY_PLUGIN)            += constify_plugin.so
++  gcc-plugin-cflags-$(CONFIG_PAX_CONSTIFY_PLUGIN)     += -DCONSTIFY_PLUGIN
+-  export PLUGINCC GCC_PLUGINS_CFLAGS GCC_PLUGIN GCC_PLUGIN_SUBDIR SANCOV_PLUGIN
++  gcc-plugin-$(CONFIG_PAX_MEMORY_STACKLEAK)           += stackleak_plugin.so
++  gcc-plugin-cflags-$(CONFIG_PAX_MEMORY_STACKLEAK)    += -DSTACKLEAK_PLUGIN -fplugin-arg-stackleak_plugin-track-lowest-sp=100
++
++  gcc-plugin-$(CONFIG_KALLOCSTAT_PLUGIN)              += kallocstat_plugin.so
++
++  gcc-plugin-$(CONFIG_PAX_KERNEXEC_PLUGIN)            += kernexec_plugin.so
++  gcc-plugin-cflags-$(CONFIG_PAX_KERNEXEC_PLUGIN)     += -DKERNEXEC_PLUGIN
++  gcc-plugin-cflags-$(CONFIG_PAX_KERNEXEC_PLUGIN_METHOD_BTS)  += -fplugin-arg-kernexec_plugin-method=bts
++  gcc-plugin-cflags-$(CONFIG_PAX_KERNEXEC_PLUGIN_METHOD_OR)   += -fplugin-arg-kernexec_plugin-method=or
++  gcc-plugin-aflags-$(CONFIG_PAX_KERNEXEC_PLUGIN)     += -DKERNEXEC_PLUGIN
++
++  ifdef CONFIG_CHECKER_PLUGIN
++    ifeq ($(call cc-ifversion, -ge, 0406, y), y)
++      gcc-plugin-$(CONFIG_CHECKER_PLUGIN)             += checker_plugin.so
++      gcc-plugin-cflags-$(CONFIG_CHECKER_PLUGIN)      += -DCHECKER_PLUGIN
++      gcc-plugin-cflags-$(CONFIG_CHECKER_PLUGIN_USER) += -DCHECKER_PLUGIN_USER -fplugin-arg-checker_plugin-user
++      gcc-plugin-cflags-$(CONFIG_CHECKER_PLUGIN_CONTEXT)+= -DCHECKER_PLUGIN_CONTEXT -fplugin-arg-checker_plugin-context
++    endif
++  endif
++
++  gcc-plugin-y                                                += colorize_plugin.so
++
++  gcc-plugin-subdir-$(CONFIG_PAX_SIZE_OVERFLOW)               += size_overflow_plugin
++  gcc-plugin-$(CONFIG_PAX_SIZE_OVERFLOW)              += size_overflow_plugin/size_overflow_plugin.so
++  gcc-plugin-cflags-$(CONFIG_PAX_SIZE_OVERFLOW)               += -DSIZE_OVERFLOW_PLUGIN
++  gcc-plugin-cflags-$(CONFIG_PAX_SIZE_OVERFLOW)               += -fplugin-arg-size_overflow_plugin-check-fns
++  gcc-plugin-cflags-$(CONFIG_PAX_SIZE_OVERFLOW_EXTRA) += -fplugin-arg-size_overflow_plugin-check-fields
++  gcc-plugin-cflags-$(CONFIG_PAX_SIZE_OVERFLOW_EXTRA) += -fplugin-arg-size_overflow_plugin-check-fptrs
++  gcc-plugin-cflags-$(CONFIG_PAX_SIZE_OVERFLOW_EXTRA) += -fplugin-arg-size_overflow_plugin-check-vars
++
++  gcc-plugin-$(CONFIG_GRKERNSEC_RANDSTRUCT)           += randomize_layout_plugin.so
++  gcc-plugin-cflags-$(CONFIG_GRKERNSEC_RANDSTRUCT)    += -DRANDSTRUCT_PLUGIN
++  gcc-plugin-cflags-$(CONFIG_GRKERNSEC_RANDSTRUCT_PERFORMANCE) += -fplugin-arg-randomize_layout_plugin-performance-mode
++
++
++  gcc-plugin-$(CONFIG_PAX_LATENT_ENTROPY)             += latent_entropy_plugin.so
++  gcc-plugin-cflags-$(CONFIG_PAX_LATENT_ENTROPY)      += -DLATENT_ENTROPY_PLUGIN
++  ifdef CONFIG_PAX_LATENT_ENTROPY
++    DISABLE_LATENT_ENTROPY_PLUGIN                     += -fplugin-arg-latent_entropy_plugin-disable
++  endif
++
++  gcc-plugin-$(CONFIG_PAX_MEMORY_STRUCTLEAK)          += structleak_plugin.so
++  gcc-plugin-cflags-$(CONFIG_PAX_MEMORY_STRUCTLEAK)   += -DSTRUCTLEAK_PLUGIN
+   ifneq ($(PLUGINCC),)
+     # SANCOV_PLUGIN can be only in CFLAGS_KCOV because avoid duplication.
+     GCC_PLUGINS_CFLAGS := $(filter-out $(SANCOV_PLUGIN), $(GCC_PLUGINS_CFLAGS))
+   endif
++  gcc-plugin-$(CONFIG_PAX_INITIFY)                    += initify_plugin.so
++  gcc-plugin-cflags-$(CONFIG_PAX_INITIFY)             += -DINITIFY_PLUGIN -fplugin-arg-initify_plugin-search_init_exit_functions
++  gcc-plugin-cflags-$(CONFIG_PAX_INITIFY_VERBOSE)     += -fplugin-arg-initify_plugin-verbose -fplugin-arg-initify_plugin-print_missing_attr
++  gcc-plugin-cflags-$(CONFIG_PAX_INITIFY_INIT_EXIT)   += -fplugin-arg-initify_plugin-enable_init_to_exit_moves
++  ifdef CONFIG_PAX_INITIFY
++    INITIFY_DISABLE_VERIFY_NOCAPTURE_FUNCTIONS                += -fplugin-arg-initify_plugin-disable_verify_nocapture_functions
++  endif
++
++  gcc-plugin-subdir-$(CONFIG_PAX_RAP)                 += rap_plugin
++  gcc-plugin-$(CONFIG_PAX_RAP)                                += rap_plugin/rap_plugin.so
++  gcc-plugin-cflags-$(CONFIG_PAX_RAP)                 += -DRAP_PLUGIN -fplugin-arg-rap_plugin-check=call
++#  gcc-plugin-cflags-$(CONFIG_PAX_RAP)                        += -fplugin-arg-rap_plugin-report=func,fptr,abs
++  gcc-plugin-aflags-$(CONFIG_PAX_RAP)                 += -DRAP_PLUGIN
++  ifdef CONFIG_PAX_RAP
++    RAP_PLUGIN_ABS_CFLAGS                             := -fplugin-arg-rap_plugin-hash=abs-finish
++  endif
++  gcc-plugin-cflags-$(CONFIG_PAX_RAP)                 += $(RAP_PLUGIN_ABS_CFLAGS)
++
++  GCC_PLUGINS_CFLAGS := $(strip $(addprefix -fplugin=$(objtree)/scripts/gcc-plugins/, $(gcc-plugin-y)) $(gcc-plugin-cflags-y))
++  GCC_PLUGINS_AFLAGS := $(gcc-plugin-aflags-y)
++
++  export PLUGINCC GCC_PLUGIN GCC_PLUGIN_SUBDIR GCC_PLUGINS_CFLAGS GCC_PLUGINS_AFLAGS SANCOV_PLUGIN
++  export DISABLE_LATENT_ENTROPY_PLUGIN RAP_PLUGIN_ABS_CFLAGS INITIFY_DISABLE_VERIFY_NOCAPTURE_FUNCTIONS
++
+   KBUILD_CFLAGS += $(GCC_PLUGINS_CFLAGS)
++  KBUILD_AFLAGS += $(GCC_PLUGINS_AFLAGS)
+   GCC_PLUGIN := $(gcc-plugin-y)
+   GCC_PLUGIN_SUBDIR := $(gcc-plugin-subdir-y)
+ endif
+@@ -41,11 +109,12 @@ ifdef CONFIG_GCC_PLUGINS
+   ifeq ($(PLUGINCC),)
+     ifneq ($(GCC_PLUGINS_CFLAGS),)
+       ifeq ($(call cc-ifversion, -ge, 0405, y), y)
+-      $(Q)$(srctree)/scripts/gcc-plugin.sh --show-error "$(__PLUGINCC)" "$(HOSTCXX)" "$(CC)" || true
+-      @echo "Cannot use CONFIG_GCC_PLUGINS: your gcc installation does not support plugins, perhaps the necessary headers are missing?" >&2 && exit 1
++      $(Q)$(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-plugin.sh --show-error "$(__PLUGINCC)" "$(HOSTCXX)" "$(CC)" || true)
++      @echo "Cannot use CONFIG_GCC_PLUGINS: your gcc installation does not support plugins, perhaps the necessary headers are missing?" >&2
+       else
+-      @echo "Cannot use CONFIG_GCC_PLUGINS: your gcc version does not support plugins, you should upgrade it to at least gcc 4.5" >&2 && exit 1
++      @echo "Cannot use CONFIG_GCC_PLUGINS: your gcc version does not support plugins, you should upgrade it to at least gcc 4.5" >&2
+       endif
++      @echo "PAX_MEMORY_STACKLEAK and other features will be less secure" >&2 && exit 1
+     endif
+   endif
+ endif
+diff --git a/scripts/basic/fixdep.c b/scripts/basic/fixdep.c
+index 746ec1e..994846b 100644
+--- a/scripts/basic/fixdep.c
++++ b/scripts/basic/fixdep.c
+@@ -197,7 +197,7 @@ static unsigned int strhash(const char *str, unsigned int sz)
+ /*
+  * Lookup a value in the configuration string.
+  */
+-static int is_defined_config(const char *name, int len, unsigned int hash)
++static int is_defined_config(const char *name, unsigned int len, unsigned int hash)
+ {
+       struct item *aux;
+@@ -230,7 +230,7 @@ static void define_config(const char *name, int len, unsigned int hash)
+ /*
+  * Record the use of a CONFIG_* word.
+  */
+-static void use_config(const char *m, int slen)
++static void use_config(const char *m, unsigned int slen)
+ {
+       unsigned int hash = strhash(m, slen);
+@@ -243,9 +243,9 @@ static void use_config(const char *m, int slen)
+ static void parse_config_file(const char *map, size_t len)
+ {
+-      const int *end = (const int *) (map + len);
++      const unsigned int *end = (const unsigned int *) (map + len);
+       /* start at +1, so that p can never be < map */
+-      const int *m   = (const int *) map + 1;
++      const unsigned int *m   = (const unsigned int *) map + 1;
+       const char *p, *q;
+       for (; m < end; m++) {
+@@ -449,7 +449,7 @@ static void print_deps(void)
+ static void traps(void)
+ {
+       static char test[] __attribute__((aligned(sizeof(int)))) = "CONF";
+-      int *p = (int *)test;
++      unsigned int *p = (unsigned int *)test;
+       if (*p != INT_CONF) {
+               fprintf(stderr, "fixdep: sizeof(int) != 4 or wrong endianness? %#x\n",
+diff --git a/scripts/dtc/checks.c b/scripts/dtc/checks.c
+index 386f956..a3b3365 100644
+--- a/scripts/dtc/checks.c
++++ b/scripts/dtc/checks.c
+@@ -277,7 +277,7 @@ NODE_ERROR(duplicate_property_names, NULL);
+ static void check_node_name_chars(struct check *c, struct node *dt,
+                                 struct node *node)
+ {
+-      int n = strspn(node->name, c->data);
++      size_t n = strspn(node->name, c->data);
+       if (n < strlen(node->name))
+               FAIL(c, "Bad character '%c' in node %s",
+@@ -321,7 +321,7 @@ NODE_WARNING(unit_address_vs_reg, NULL);
+ static void check_property_name_chars(struct check *c, struct node *dt,
+                                     struct node *node, struct property *prop)
+ {
+-      int n = strspn(prop->name, c->data);
++      size_t n = strspn(prop->name, c->data);
+       if (n < strlen(prop->name))
+               FAIL(c, "Bad character '%c' in property name \"%s\", node %s",
+@@ -423,7 +423,7 @@ static void check_explicit_phandles(struct check *c, struct node *root,
+       phandle = propval_cell(prop);
+-      if ((phandle == 0) || (phandle == -1)) {
++      if ((phandle == 0) || (phandle == ~0U)) {
+               FAIL(c, "%s has bad value (0x%x) in %s property",
+                    node->fullpath, phandle, prop->name);
+               return;
+@@ -486,7 +486,7 @@ static void fixup_phandle_references(struct check *c, struct node *dt,
+       cell_t phandle;
+       for_each_marker_of_type(m, REF_PHANDLE) {
+-              assert(m->offset + sizeof(cell_t) <= prop->val.len);
++              assert(m->offset + (int)sizeof(cell_t) <= prop->val.len);
+               refnode = get_node_by_ref(dt, m->ref);
+               if (! refnode) {
+@@ -714,7 +714,7 @@ static void enable_warning_error(struct check *c, bool warn, bool error)
+ static void disable_warning_error(struct check *c, bool warn, bool error)
+ {
+-      int i;
++      size_t i;
+       /* Lowering level, also lower it for things this is the prereq
+        * for */
+@@ -735,7 +735,7 @@ static void disable_warning_error(struct check *c, bool warn, bool error)
+ void parse_checks_option(bool warn, bool error, const char *arg)
+ {
+-      int i;
++      size_t i;
+       const char *name = arg;
+       bool enable = true;
+@@ -763,7 +763,7 @@ void parse_checks_option(bool warn, bool error, const char *arg)
+ void process_checks(bool force, struct boot_info *bi)
+ {
+       struct node *dt = bi->dt;
+-      int i;
++      size_t i;
+       int error = 0;
+       for (i = 0; i < ARRAY_SIZE(check_table); i++) {
+diff --git a/scripts/dtc/data.c b/scripts/dtc/data.c
+index 8cae237..dcdab66 100644
+--- a/scripts/dtc/data.c
++++ b/scripts/dtc/data.c
+@@ -94,10 +94,10 @@ struct data data_copy_file(FILE *f, size_t maxlen)
+ {
+       struct data d = empty_data;
+-      while (!feof(f) && (d.len < maxlen)) {
++      while (!feof(f) && ((size_t)d.len < maxlen)) {
+               size_t chunksize, ret;
+-              if (maxlen == -1)
++              if (maxlen == ~0UL)
+                       chunksize = 4096;
+               else
+                       chunksize = maxlen - d.len;
+@@ -108,7 +108,7 @@ struct data data_copy_file(FILE *f, size_t maxlen)
+               if (ferror(f))
+                       die("Error reading file into data: %s", strerror(errno));
+-              if (d.len + ret < d.len)
++              if (d.len + ret < (size_t)d.len)
+                       die("Overflow reading file into data\n");
+               d.len += ret;
+diff --git a/scripts/dtc/flattree.c b/scripts/dtc/flattree.c
+index ec14954..dff184d 100644
+--- a/scripts/dtc/flattree.c
++++ b/scripts/dtc/flattree.c
+@@ -178,7 +178,7 @@ static void asm_emit_data(void *e, struct data d)
+       for_each_marker_of_type(m, LABEL)
+               emit_offset_label(f, m->ref, m->offset);
+-      while ((d.len - off) >= sizeof(uint32_t)) {
++      while ((d.len - off) >= (int)sizeof(uint32_t)) {
+               asm_emit_cell(e, fdt32_to_cpu(*((uint32_t *)(d.val+off))));
+               off += sizeof(uint32_t);
+       }
+@@ -369,7 +369,7 @@ static void make_fdt_header(struct fdt_header *fdt,
+ void dt_to_blob(FILE *f, struct boot_info *bi, int version)
+ {
+       struct version_info *vi = NULL;
+-      int i;
++      size_t i;
+       struct data blob       = empty_data;
+       struct data reservebuf = empty_data;
+       struct data dtbuf      = empty_data;
+@@ -463,7 +463,7 @@ static void dump_stringtable_asm(FILE *f, struct data strbuf)
+ void dt_to_asm(FILE *f, struct boot_info *bi, int version)
+ {
+       struct version_info *vi = NULL;
+-      int i;
++      size_t i;
+       struct data strbuf = empty_data;
+       struct reserve_info *re;
+       const char *symprefix = "dt";
+@@ -543,7 +543,7 @@ void dt_to_asm(FILE *f, struct boot_info *bi, int version)
+               ASM_EMIT_BELONG(f, "0x%08x", (unsigned int)(re->re.size >> 32));
+               ASM_EMIT_BELONG(f, "0x%08x", (unsigned int)(re->re.size & 0xffffffff));
+       }
+-      for (i = 0; i < reservenum; i++) {
++      for (i = 0; i < (size_t)reservenum; i++) {
+               fprintf(f, "\t.long\t0, 0\n\t.long\t0, 0\n");
+       }
+diff --git a/scripts/dtc/livetree.c b/scripts/dtc/livetree.c
+index e229b84..7141e8e 100644
+--- a/scripts/dtc/livetree.c
++++ b/scripts/dtc/livetree.c
+@@ -492,7 +492,7 @@ struct node *get_node_by_phandle(struct node *tree, cell_t phandle)
+ {
+       struct node *child, *node;
+-      assert((phandle != 0) && (phandle != -1));
++      assert((phandle != 0) && (phandle != ~0U));
+       if (tree->phandle == phandle) {
+               if (tree->deleted)
+@@ -523,7 +523,7 @@ cell_t get_node_phandle(struct node *root, struct node *node)
+ {
+       static cell_t phandle = 1; /* FIXME: ick, static local */
+-      if ((node->phandle != 0) && (node->phandle != -1))
++      if ((node->phandle != 0) && (node->phandle != ~0U))
+               return node->phandle;
+       while (get_node_by_phandle(root, phandle))
+diff --git a/scripts/gcc-plugins/.gitignore b/scripts/gcc-plugins/.gitignore
+new file mode 100644
+index 0000000..de92ed9
+--- /dev/null
++++ b/scripts/gcc-plugins/.gitignore
+@@ -0,0 +1 @@
++randomize_layout_seed.h
+diff --git a/scripts/gcc-plugins/Makefile b/scripts/gcc-plugins/Makefile
+index 8b29dc1..ec1516e 100644
+--- a/scripts/gcc-plugins/Makefile
++++ b/scripts/gcc-plugins/Makefile
+@@ -2,13 +2,17 @@ GCC_PLUGINS_DIR := $(shell $(CC) -print-file-name=plugin)
+ ifeq ($(PLUGINCC),$(HOSTCC))
+   HOSTLIBS := hostlibs
+-  HOST_EXTRACFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src) -std=gnu99 -ggdb
++  HOST_EXTRACFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src)
++  HOST_EXTRACFLAGS += -std=gnu99 -ggdb -fvisibility=hidden
++  HOST_EXTRACFLAGS += -Wall -W
+   export HOST_EXTRACFLAGS
+ else
+   HOSTLIBS := hostcxxlibs
+-  HOST_EXTRACXXFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src) -std=gnu++98 -fno-rtti
+-  HOST_EXTRACXXFLAGS += -fno-exceptions -fasynchronous-unwind-tables -ggdb
+-  HOST_EXTRACXXFLAGS += -Wno-narrowing -Wno-unused-variable
++  HOST_EXTRACXXFLAGS += -I$(GCC_PLUGINS_DIR)/include -I$(src)
++  HOST_EXTRACXXFLAGS += -std=gnu++98 -ggdb -fvisibility=hidden
++  HOST_EXTRACXXFLAGS += -fno-rtti -fno-exceptions -fasynchronous-unwind-tables
++  HOST_EXTRACXXFLAGS += -Wall -W
++  HOST_EXTRACXXFLAGS += -Wno-unused-parameter -Wno-narrowing -Wno-unused-variable
+   export HOST_EXTRACXXFLAGS
+ endif
+@@ -20,9 +24,18 @@ export HOSTLIBS
+ $(HOSTLIBS)-y := $(foreach p,$(GCC_PLUGIN),$(if $(findstring /,$(p)),,$(p)))
+ always := $($(HOSTLIBS)-y)
+-
+ $(foreach p,$($(HOSTLIBS)-y:%.so=%),$(eval $(p)-objs := $(p).o))
++$(obj)/randomize_layout_plugin.o: $(objtree)/$(obj)/randomize_layout_seed.h
++
++quiet_cmd_create_randomize_layout_seed = GENSEED  $@
++      cmd_create_randomize_layout_seed = \
++      $(CONFIG_SHELL) $(srctree)/$(src)/gen-random-seed.sh $@ $(objtree)/include/generated/randomize_layout_hash.h
++$(objtree)/$(obj)/randomize_layout_seed.h: FORCE
++      $(call if_changed,create_randomize_layout_seed)
++ 
++targets += randomize_layout_seed.h randomize_layout_hash.h
++
+ subdir-y := $(GCC_PLUGIN_SUBDIR)
+ subdir-  += $(GCC_PLUGIN_SUBDIR)
+diff --git a/scripts/gcc-plugins/checker_plugin.c b/scripts/gcc-plugins/checker_plugin.c
+new file mode 100644
+index 0000000..2b3c178
+--- /dev/null
++++ b/scripts/gcc-plugins/checker_plugin.c
+@@ -0,0 +1,496 @@
++/*
++ * Copyright 2011-2016 by the PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Note: the choice of the license means that the compilation process is
++ *       NOT 'eligible' as defined by gcc's library exception to the GPL v3,
++ *       but for the kernel it doesn't matter since it doesn't link against
++ *       any of the gcc libraries
++ *
++ * gcc plugin to implement various sparse (source code checker) features
++ *
++ * TODO:
++ * - define separate __iomem, __percpu and __rcu address spaces (lots of code to patch)
++ *
++ * BUGS:
++ * - none known
++ */
++
++#include "gcc-common.h"
++
++extern void c_register_addr_space (const char *str, addr_space_t as);
++extern enum machine_mode default_addr_space_pointer_mode (addr_space_t);
++extern enum machine_mode default_addr_space_address_mode (addr_space_t);
++extern bool default_addr_space_valid_pointer_mode(enum machine_mode mode, addr_space_t as);
++extern bool default_addr_space_legitimate_address_p(enum machine_mode mode, rtx mem, bool strict, addr_space_t as);
++extern rtx default_addr_space_legitimize_address(rtx x, rtx oldx, enum machine_mode mode, addr_space_t as);
++
++__visible int plugin_is_GPL_compatible;
++
++static struct plugin_info checker_plugin_info = {
++      .version        = "201602181345",
++      .help           = "user\tturn on user/kernel address space checking\n"
++                        "context\tturn on locking context checking\n"
++};
++
++#define ADDR_SPACE_KERNEL             0
++#define ADDR_SPACE_FORCE_KERNEL               1
++#define ADDR_SPACE_USER                       2
++#define ADDR_SPACE_FORCE_USER         3
++#define ADDR_SPACE_IOMEM              0
++#define ADDR_SPACE_FORCE_IOMEM                0
++#define ADDR_SPACE_PERCPU             0
++#define ADDR_SPACE_FORCE_PERCPU               0
++#define ADDR_SPACE_RCU                        0
++#define ADDR_SPACE_FORCE_RCU          0
++
++static enum machine_mode checker_addr_space_pointer_mode(addr_space_t addrspace)
++{
++      return default_addr_space_pointer_mode(ADDR_SPACE_GENERIC);
++}
++
++static enum machine_mode checker_addr_space_address_mode(addr_space_t addrspace)
++{
++      return default_addr_space_address_mode(ADDR_SPACE_GENERIC);
++}
++
++static bool checker_addr_space_valid_pointer_mode(enum machine_mode mode, addr_space_t as)
++{
++      return default_addr_space_valid_pointer_mode(mode, as);
++}
++
++static bool checker_addr_space_legitimate_address_p(enum machine_mode mode, rtx mem, bool strict, addr_space_t as)
++{
++      return default_addr_space_legitimate_address_p(mode, mem, strict, ADDR_SPACE_GENERIC);
++}
++
++static rtx checker_addr_space_legitimize_address(rtx x, rtx oldx, enum machine_mode mode, addr_space_t as)
++{
++      return default_addr_space_legitimize_address(x, oldx, mode, as);
++}
++
++static bool checker_addr_space_subset_p(addr_space_t subset, addr_space_t superset)
++{
++      if (subset == ADDR_SPACE_FORCE_KERNEL && superset == ADDR_SPACE_KERNEL)
++              return true;
++
++      if (subset == ADDR_SPACE_FORCE_USER && superset == ADDR_SPACE_USER)
++              return true;
++
++      if (subset == ADDR_SPACE_FORCE_IOMEM && superset == ADDR_SPACE_IOMEM)
++              return true;
++
++      if (subset == ADDR_SPACE_KERNEL && superset == ADDR_SPACE_FORCE_USER)
++              return true;
++
++      if (subset == ADDR_SPACE_KERNEL && superset == ADDR_SPACE_FORCE_IOMEM)
++              return true;
++
++      if (subset == ADDR_SPACE_USER && superset == ADDR_SPACE_FORCE_KERNEL)
++              return true;
++
++      if (subset == ADDR_SPACE_IOMEM && superset == ADDR_SPACE_FORCE_KERNEL)
++              return true;
++
++      return subset == superset;
++}
++
++static rtx checker_addr_space_convert(rtx op, tree from_type, tree to_type)
++{
++//    addr_space_t from_as = TYPE_ADDR_SPACE(TREE_TYPE(from_type));
++//    addr_space_t to_as = TYPE_ADDR_SPACE(TREE_TYPE(to_type));
++
++      return op;
++}
++
++static void register_checker_address_spaces(void *event_data, void *data)
++{
++      c_register_addr_space("__kernel", ADDR_SPACE_KERNEL);
++      c_register_addr_space("__force_kernel", ADDR_SPACE_FORCE_KERNEL);
++      c_register_addr_space("__user", ADDR_SPACE_USER);
++      c_register_addr_space("__force_user", ADDR_SPACE_FORCE_USER);
++//    c_register_addr_space("__iomem", ADDR_SPACE_IOMEM);
++//    c_register_addr_space("__force_iomem", ADDR_SPACE_FORCE_IOMEM);
++//    c_register_addr_space("__percpu", ADDR_SPACE_PERCPU);
++//    c_register_addr_space("__force_percpu", ADDR_SPACE_FORCE_PERCPU);
++//    c_register_addr_space("__rcu", ADDR_SPACE_RCU);
++//    c_register_addr_space("__force_rcu", ADDR_SPACE_FORCE_RCU);
++
++      targetm.addr_space.pointer_mode         = checker_addr_space_pointer_mode;
++      targetm.addr_space.address_mode         = checker_addr_space_address_mode;
++      targetm.addr_space.valid_pointer_mode   = checker_addr_space_valid_pointer_mode;
++      targetm.addr_space.legitimate_address_p = checker_addr_space_legitimate_address_p;
++//    targetm.addr_space.legitimize_address   = checker_addr_space_legitimize_address;
++      targetm.addr_space.subset_p             = checker_addr_space_subset_p;
++      targetm.addr_space.convert              = checker_addr_space_convert;
++}
++
++static bool split_context_attribute(tree args, tree *lock, tree *in, tree *out)
++{
++      *in = TREE_VALUE(args);
++
++      if (TREE_CODE(*in) != INTEGER_CST) {
++              *lock = *in;
++              args = TREE_CHAIN(args);
++              *in = TREE_VALUE(args);
++      } else
++              *lock = NULL_TREE;
++
++      args = TREE_CHAIN(args);
++      if (*lock && !args)
++              return false;
++
++      *out = TREE_VALUE(args);
++      return true;
++}
++
++static tree handle_context_attribute(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
++{
++      *no_add_attrs = true;
++      tree lock, in, out;
++
++      if (TREE_CODE(*node) != FUNCTION_DECL) {
++              error("%qE attribute applies to functions only (%qD)", name, *node);
++              return NULL_TREE;
++      }
++
++      if (!split_context_attribute(args, &lock, &in, &out)) {
++              error("%qE attribute needs two integers after the lock expression", name);
++              return NULL_TREE;
++      }
++
++      if (TREE_CODE(in) != INTEGER_CST) {
++              error("the 'in' argument of the %qE attribute must be an integer (%qE)", name, in);
++              return NULL_TREE;
++      }
++
++      if (TREE_CODE(out) != INTEGER_CST) {
++              error("the 'out' argument of the %qE attribute must be an integer (%qE)", name, out);
++              return NULL_TREE;
++      }
++
++      *no_add_attrs = false;
++      return NULL_TREE;
++}
++
++static struct attribute_spec context_attr = {
++      .name                   = "context",
++      .min_length             = 2,
++      .max_length             = 3,
++      .decl_required          = true,
++      .type_required          = false,
++      .function_type_required = false,
++      .handler                = handle_context_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity  = true
++#endif
++};
++
++static void register_attributes(void *event_data, void *data)
++{
++      register_attribute(&context_attr);
++}
++
++static const char context_function[] = "__context__";
++static GTY(()) tree context_function_decl;
++
++static const char context_error[] = "__context_error__";
++static GTY(()) tree context_error_decl;
++
++static void context_start_unit(void __unused *gcc_data, void __unused *user_data)
++{
++      tree fntype, attr;
++
++      // void __context__(void *, int);
++      fntype = build_function_type_list(void_type_node, ptr_type_node, integer_type_node, NULL_TREE);
++      context_function_decl = build_fn_decl(context_function, fntype);
++
++      TREE_PUBLIC(context_function_decl) = 1;
++      TREE_USED(context_function_decl) = 1;
++      DECL_EXTERNAL(context_function_decl) = 1;
++      DECL_ARTIFICIAL(context_function_decl) = 1;
++      DECL_PRESERVE_P(context_function_decl) = 1;
++//    TREE_NOTHROW(context_function_decl) = 1;
++//    DECL_UNINLINABLE(context_function_decl) = 1;
++      DECL_ASSEMBLER_NAME(context_function_decl); // for LTO
++      lang_hooks.decls.pushdecl(context_function_decl);
++
++      // void __context_error__(const void *, int) __attribute__((error("context error")));
++      fntype = build_function_type_list(void_type_node, const_ptr_type_node, integer_type_node, NULL_TREE);
++      context_error_decl = build_fn_decl(context_error, fntype);
++
++      TREE_PUBLIC(context_error_decl) = 1;
++      TREE_USED(context_error_decl) = 1;
++      DECL_EXTERNAL(context_error_decl) = 1;
++      DECL_ARTIFICIAL(context_error_decl) = 1;
++      DECL_PRESERVE_P(context_error_decl) = 1;
++//    TREE_NOTHROW(context_error_decl) = 1;
++//    DECL_UNINLINABLE(context_error_decl) = 1;
++      TREE_THIS_VOLATILE(context_error_decl) = 1;
++      DECL_ASSEMBLER_NAME(context_error_decl);
++
++      attr = tree_cons(NULL, build_string(14, "context error"), NULL);
++      attr = tree_cons(get_identifier("error"), attr, NULL);
++      decl_attributes(&context_error_decl, attr, 0);
++}
++
++static bool context_gate(void)
++{
++      tree context_attr;
++
++return true;
++
++      context_attr = lookup_attribute("context", DECL_ATTRIBUTES(current_function_decl));
++      return context_attr != NULL_TREE;
++}
++
++static basic_block verify_context_before(gimple_stmt_iterator *gsi, tree context, tree inout, tree error)
++{
++      gimple stmt;
++      basic_block cond_bb, join_bb, true_bb;
++      edge e;
++      location_t loc;
++      const char *file;
++      int line;
++      size_t len;
++      tree filename;
++
++      stmt = gsi_stmt(*gsi);
++      if (gimple_has_location(stmt)) {
++              loc = gimple_location(stmt);
++              file = gimple_filename(stmt);
++              line = gimple_lineno(stmt);
++      } else {
++              loc = DECL_SOURCE_LOCATION(current_function_decl);
++              file = DECL_SOURCE_FILE(current_function_decl);
++              line = DECL_SOURCE_LINE(current_function_decl);
++      }
++      gcc_assert(file);
++
++      // if (context != count) __context_error__(__FILE__, __LINE__);
++      stmt = gimple_build_cond(NE_EXPR, context, inout, NULL_TREE, NULL_TREE);
++      gimple_set_location(stmt, loc);
++      gsi_insert_before(gsi, stmt, GSI_NEW_STMT);
++
++      cond_bb = gsi_bb(*gsi);
++      gcc_assert(!gsi_end_p(*gsi));
++      gcc_assert(stmt == gsi_stmt(*gsi));
++
++      e = split_block(cond_bb, gsi_stmt(*gsi));
++      cond_bb = e->src;
++      join_bb = e->dest;
++      e->flags = EDGE_FALSE_VALUE;
++      e->probability = REG_BR_PROB_BASE;
++
++      true_bb = create_empty_bb(EXIT_BLOCK_PTR_FOR_FN(cfun)->prev_bb);
++      make_edge(cond_bb, true_bb, EDGE_TRUE_VALUE);
++      make_edge(true_bb, join_bb, EDGE_FALLTHRU);
++
++      set_immediate_dominator(CDI_DOMINATORS, true_bb, cond_bb);
++      set_immediate_dominator(CDI_DOMINATORS, join_bb, cond_bb);
++
++      gcc_assert(cond_bb->loop_father == join_bb->loop_father);
++      add_bb_to_loop(true_bb, cond_bb->loop_father);
++
++      // insert call to builtin_trap or __context_error__
++      *gsi = gsi_start_bb(true_bb);
++
++//    stmt = gimple_build_call(builtin_decl_implicit(BUILT_IN_TRAP), 0);
++      len = strlen(file) + 1;
++      filename = build_string(len, file);
++      TREE_TYPE(filename) = build_array_type(unsigned_char_type_node, build_index_type(size_int(len)));
++      filename = build1(ADDR_EXPR, const_ptr_type_node, filename);
++      stmt = gimple_build_call(error, 2, filename, build_int_cst(NULL_TREE, line));
++      gimple_set_location(stmt, loc);
++      gsi_insert_after(gsi, stmt, GSI_CONTINUE_LINKING);
++
++      *gsi = gsi_start_nondebug_bb(join_bb);
++      return join_bb;
++}
++
++static void update_context(gimple_stmt_iterator *gsi, tree context, int diff)
++{
++      gimple assign;
++      tree op;
++
++      op = fold_build2_loc(UNKNOWN_LOCATION, PLUS_EXPR, integer_type_node, context, build_int_cst(integer_type_node, diff));
++      assign = gimple_build_assign(context, op);
++      gsi_insert_after(gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++}
++
++static basic_block track_context(basic_block bb, tree context)
++{
++      gimple_stmt_iterator gsi;
++      gimple assign;
++
++      // adjust context according to the context information on any call stmt
++      for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++              gimple stmt = gsi_stmt(gsi);
++              tree fndecl, context_attr;
++              tree lock, in, out;
++              int incount, outcount;
++
++              if (!is_gimple_call(stmt))
++                      continue;
++
++              fndecl = gimple_call_fndecl(stmt);
++              if (!fndecl)
++                      continue;
++
++              if (fndecl == context_function_decl) {
++                      unsigned int num_ops = gimple_num_ops(stmt);
++                      int diff = tree_to_shwi(gimple_op(stmt, num_ops - 1));
++
++                      gcc_assert(diff);
++                      update_context(&gsi, context, diff);
++                      continue;
++              }
++
++              context_attr = lookup_attribute("context", DECL_ATTRIBUTES(fndecl));
++              if (!context_attr)
++                      continue;
++
++              gcc_assert(split_context_attribute(TREE_VALUE(context_attr), &lock, &in, &out));
++              incount = tree_to_shwi(in);
++              outcount = tree_to_shwi(out);
++              bb = verify_context_before(&gsi, context, in, context_error_decl);
++              update_context(&gsi, context, outcount - incount);
++      }
++
++      return bb;
++}
++
++static bool bb_any_loop(basic_block bb)
++{
++      return bb_loop_depth(bb) || (bb->flags & BB_IRREDUCIBLE_LOOP);
++}
++
++static unsigned int context_execute(void)
++{
++      basic_block bb;
++      gimple assign;
++      gimple_stmt_iterator gsi;
++      tree context_attr, context;
++      tree lock, in, out;
++
++      loop_optimizer_init(LOOPS_NORMAL | LOOPS_HAVE_RECORDED_EXITS);
++      gcc_assert(current_loops);
++
++      calculate_dominance_info(CDI_DOMINATORS);
++      calculate_dominance_info(CDI_POST_DOMINATORS);
++
++      context_attr = lookup_attribute("context", DECL_ATTRIBUTES(current_function_decl));
++      if (context_attr) {
++              gcc_assert(split_context_attribute(TREE_VALUE(context_attr), &lock, &in, &out));
++      } else {
++              in = out = integer_zero_node;
++      }
++
++      // 1. create local context variable
++      context = create_tmp_var(integer_type_node, "context");
++      add_referenced_var(context);
++      mark_sym_for_renaming(context);
++
++      // 2. initialize local context variable
++      gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++      bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
++      if (!single_pred_p(bb)) {
++              gcc_assert(bb_any_loop(bb));
++              split_edge(single_succ_edge(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++              bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
++      }
++      gsi = gsi_start_bb(bb);
++      assign = gimple_build_assign(context, in);
++      gsi_insert_before(&gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++
++      // 3. instrument each BB to track the local context variable
++      FOR_EACH_BB_FN(bb, cfun) {
++              bb = track_context(bb, context);
++      }
++
++      // 4. verify the local context variable against the expected state
++      if (EDGE_COUNT(EXIT_BLOCK_PTR_FOR_FN(cfun)->preds)) {
++              gcc_assert(single_pred_p(EXIT_BLOCK_PTR_FOR_FN(cfun)));
++              gsi = gsi_last_nondebug_bb(single_pred(EXIT_BLOCK_PTR_FOR_FN(cfun)));
++              verify_context_before(&gsi, context, out, context_error_decl);
++      }
++
++      free_dominance_info(CDI_DOMINATORS);
++      free_dominance_info(CDI_POST_DOMINATORS);
++      loop_optimizer_finalize();
++      return 0;
++}
++
++#define PASS_NAME context
++#define PROPERTIES_REQUIRED PROP_gimple_leh | PROP_cfg
++//#define TODO_FLAGS_START TODO_verify_ssa | TODO_verify_flow | TODO_verify_stmts
++#define TODO_FLAGS_FINISH TODO_verify_ssa | TODO_verify_stmts | TODO_dump_func | TODO_verify_flow | TODO_update_ssa
++#include "gcc-generate-gimple-pass.h"
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      int i;
++      bool enable_user, enable_context;
++      struct register_pass_info context_pass_info;
++
++      static const struct ggc_root_tab gt_ggc_r_gt_checker[] = {
++              {
++                      .base = &context_function_decl,
++                      .nelt = 1,
++                      .stride = sizeof(context_function_decl),
++                      .cb = &gt_ggc_mx_tree_node,
++                      .pchw = &gt_pch_nx_tree_node
++              },
++              {
++                      .base = &context_error_decl,
++                      .nelt = 1,
++                      .stride = sizeof(context_error_decl),
++                      .cb = &gt_ggc_mx_tree_node,
++                      .pchw = &gt_pch_nx_tree_node
++              },
++              LAST_GGC_ROOT_TAB
++      };
++
++      context_pass_info.pass                          = make_context_pass();
++//    context_pass_info.reference_pass_name           = "ssa";
++      context_pass_info.reference_pass_name           = "phiprop";
++      context_pass_info.ref_pass_instance_number      = 1;
++      context_pass_info.pos_op                        = PASS_POS_INSERT_AFTER;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &checker_plugin_info);
++
++      enable_user = false;
++      enable_context = false;
++      for (i = 0; i < argc; ++i) {
++              if (!strcmp(argv[i].key, "user")) {
++                      enable_user = true;
++                      continue;
++              }
++              if (!strcmp(argv[i].key, "context")) {
++                      enable_context = true;
++                      continue;
++              }
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      if (enable_user)
++              register_callback(plugin_name, PLUGIN_PRAGMAS, register_checker_address_spaces, NULL);
++      if (enable_context) {
++              register_callback(plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL);
++              register_callback(plugin_name, PLUGIN_START_UNIT, context_start_unit, NULL);
++              register_callback(plugin_name, PLUGIN_REGISTER_GGC_ROOTS, NULL, (void *)&gt_ggc_r_gt_checker);
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &context_pass_info);
++      }
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/colorize_plugin.c b/scripts/gcc-plugins/colorize_plugin.c
+new file mode 100644
+index 0000000..31fd196
+--- /dev/null
++++ b/scripts/gcc-plugins/colorize_plugin.c
+@@ -0,0 +1,162 @@
++/*
++ * Copyright 2012-2016 by PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Note: the choice of the license means that the compilation process is
++ *       NOT 'eligible' as defined by gcc's library exception to the GPL v3,
++ *       but for the kernel it doesn't matter since it doesn't link against
++ *       any of the gcc libraries
++ *
++ * gcc plugin to colorize diagnostic output
++ *
++ */
++
++#include "gcc-common.h"
++
++__visible int plugin_is_GPL_compatible;
++
++static struct plugin_info colorize_plugin_info = {
++      .version        = "201602181345",
++      .help           = "color=[never|always|auto]\tdetermine when to colorize\n",
++};
++
++#define GREEN         "\033[32m\033[K"
++#define LIGHTGREEN    "\033[1;32m\033[K"
++#define YELLOW                "\033[33m\033[K"
++#define LIGHTYELLOW   "\033[1;33m\033[K"
++#define RED           "\033[31m\033[K"
++#define LIGHTRED      "\033[1;31m\033[K"
++#define BLUE          "\033[34m\033[K"
++#define LIGHTBLUE     "\033[1;34m\033[K"
++#define BRIGHT                "\033[1;m\033[K"
++#define NORMAL                "\033[m\033[K"
++
++static diagnostic_starter_fn old_starter;
++static diagnostic_finalizer_fn old_finalizer;
++
++static void start_colorize(diagnostic_context *context, diagnostic_info *diagnostic)
++{
++      const char *color;
++      char *newprefix;
++
++      switch (diagnostic->kind) {
++      case DK_NOTE:
++              color = LIGHTBLUE;
++              break;
++
++      case DK_PEDWARN:
++      case DK_WARNING:
++              color = LIGHTYELLOW;
++              break;
++
++      case DK_ERROR:
++      case DK_FATAL:
++      case DK_ICE:
++      case DK_PERMERROR:
++      case DK_SORRY:
++              color = LIGHTRED;
++              break;
++
++      default:
++              color = NORMAL;
++      }
++
++      old_starter(context, diagnostic);
++      if (-1 == asprintf(&newprefix, "%s%s" NORMAL, color, context->printer->prefix))
++              return;
++      pp_destroy_prefix(context->printer);
++      pp_set_prefix(context->printer, newprefix);
++}
++
++static void finalize_colorize(diagnostic_context *context, diagnostic_info *diagnostic)
++{
++      old_finalizer(context, diagnostic);
++}
++
++static void colorize_arm(void)
++{
++      old_starter = diagnostic_starter(global_dc);
++      old_finalizer = diagnostic_finalizer(global_dc);
++
++      diagnostic_starter(global_dc) = start_colorize;
++      diagnostic_finalizer(global_dc) = finalize_colorize;
++}
++
++static unsigned int colorize_rearm_execute(void)
++{
++      if (diagnostic_starter(global_dc) == start_colorize)
++              return 0;
++
++      colorize_arm();
++      return 0;
++}
++
++#define PASS_NAME colorize_rearm
++#define NO_GATE
++#include "gcc-generate-simple_ipa-pass.h"
++
++static void colorize_start_unit(void *gcc_data, void *user_data)
++{
++      colorize_arm();
++}
++
++static bool should_colorize(void)
++{
++#if BUILDING_GCC_VERSION >= 4009
++      return false;
++#else
++      char const *t = getenv("TERM");
++
++      return t && strcmp(t, "dumb") && isatty(STDERR_FILENO);
++#endif
++}
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      int i;
++      struct register_pass_info colorize_rearm_pass_info;
++      bool colorize;
++
++      colorize_rearm_pass_info.pass                           = make_colorize_rearm_pass();
++      colorize_rearm_pass_info.reference_pass_name            = "*free_lang_data";
++      colorize_rearm_pass_info.ref_pass_instance_number       = 1;
++      colorize_rearm_pass_info.pos_op                         = PASS_POS_INSERT_AFTER;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &colorize_plugin_info);
++
++      colorize = getenv("GCC_COLORS") ? should_colorize() : false;
++
++      for (i = 0; i < argc; ++i) {
++              if (!strcmp(argv[i].key, "color")) {
++                      if (!argv[i].value) {
++                              error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++                              continue;
++                      }
++                      if (!strcmp(argv[i].value, "always"))
++                              colorize = true;
++                      else if (!strcmp(argv[i].value, "never"))
++                              colorize = false;
++                      else if (!strcmp(argv[i].value, "auto"))
++                              colorize = should_colorize();
++                      else
++                              error(G_("invalid option argument '-fplugin-arg-%s-%s=%s'"), plugin_name, argv[i].key, argv[i].value);
++                      continue;
++              }
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      if (colorize) {
++              // TODO: parse GCC_COLORS as used by gcc 4.9+
++              register_callback(plugin_name, PLUGIN_START_UNIT, &colorize_start_unit, NULL);
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &colorize_rearm_pass_info);
++      }
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/constify_plugin.c b/scripts/gcc-plugins/constify_plugin.c
+new file mode 100644
+index 0000000..5287631c
+--- /dev/null
++++ b/scripts/gcc-plugins/constify_plugin.c
+@@ -0,0 +1,582 @@
++/*
++ * Copyright 2011 by Emese Revfy <re.emese@gmail.com>
++ * Copyright 2011-2016 by PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2, or (at your option) v3
++ *
++ * This gcc plugin constifies all structures which contain only function pointers or are explicitly marked for constification.
++ *
++ * Homepage:
++ * http://www.grsecurity.net/~ephox/const_plugin/
++ *
++ * Usage:
++ * $ gcc -I`gcc -print-file-name=plugin`/include -fPIC -shared -O2 -o constify_plugin.so constify_plugin.c
++ * $ gcc -fplugin=constify_plugin.so test.c -O2
++ */
++
++#include "gcc-common.h"
++
++// unused C type flag in all versions 4.5-6
++#define TYPE_CONSTIFY_VISITED(TYPE) TYPE_LANG_FLAG_4(TYPE)
++
++__visible int plugin_is_GPL_compatible;
++
++static bool enabled = true;
++
++static struct plugin_info const_plugin_info = {
++      .version        = "201607241840",
++      .help           = "disable\tturn off constification\n",
++};
++
++static struct {
++      const char *name;
++      const char *asm_op;
++} const_sections[] = {
++      {".init.rodata",     "\t.section\t.init.rodata,\"a\""},
++      {".ref.rodata",      "\t.section\t.ref.rodata,\"a\""},
++      {".devinit.rodata",  "\t.section\t.devinit.rodata,\"a\""},
++      {".devexit.rodata",  "\t.section\t.devexit.rodata,\"a\""},
++      {".cpuinit.rodata",  "\t.section\t.cpuinit.rodata,\"a\""},
++      {".cpuexit.rodata",  "\t.section\t.cpuexit.rodata,\"a\""},
++      {".meminit.rodata",  "\t.section\t.meminit.rodata,\"a\""},
++      {".memexit.rodata",  "\t.section\t.memexit.rodata,\"a\""},
++      {".data..read_only", "\t.section\t.data..read_only,\"a\""},
++};
++
++typedef struct {
++      bool has_fptr_field;
++      bool has_writable_field;
++      bool has_do_const_field;
++      bool has_no_const_field;
++} constify_info;
++
++static const_tree get_field_type(const_tree field)
++{
++      return strip_array_types(TREE_TYPE(field));
++}
++
++static bool is_fptr(const_tree field)
++{
++      const_tree ptr = get_field_type(field);
++
++      if (TREE_CODE(ptr) != POINTER_TYPE)
++              return false;
++
++      return TREE_CODE(TREE_TYPE(ptr)) == FUNCTION_TYPE;
++}
++
++/*
++ * determine whether the given structure type meets the requirements for automatic constification,
++ * including the constification attributes on nested structure types
++ */
++static void constifiable(const_tree node, constify_info *cinfo)
++{
++      const_tree field;
++
++      gcc_assert(TREE_CODE(node) == RECORD_TYPE || TREE_CODE(node) == UNION_TYPE);
++
++      // e.g., pointer to structure fields while still constructing the structure type
++      if (TYPE_FIELDS(node) == NULL_TREE)
++              return;
++
++      for (field = TYPE_FIELDS(node); field; field = TREE_CHAIN(field)) {
++              const_tree type = get_field_type(field);
++              enum tree_code code = TREE_CODE(type);
++
++              if (node == type)
++                      continue;
++
++              if (is_fptr(field))
++                      cinfo->has_fptr_field = true;
++              else if (code == RECORD_TYPE || code == UNION_TYPE) {
++                      if (lookup_attribute("do_const", TYPE_ATTRIBUTES(type)))
++                              cinfo->has_do_const_field = true;
++                      else if (lookup_attribute("no_const", TYPE_ATTRIBUTES(type)))
++                              cinfo->has_no_const_field = true;
++                      else
++                              constifiable(type, cinfo);
++              } else if (!TREE_READONLY(field))
++                      cinfo->has_writable_field = true;
++      }
++}
++
++static bool constified(const_tree node)
++{
++      constify_info cinfo = {
++              .has_fptr_field = false,
++              .has_writable_field = false,
++              .has_do_const_field = false,
++              .has_no_const_field = false
++      };
++
++      gcc_assert(TREE_CODE(node) == RECORD_TYPE || TREE_CODE(node) == UNION_TYPE);
++
++      if (lookup_attribute("no_const", TYPE_ATTRIBUTES(node))) {
++//            gcc_assert(!TYPE_READONLY(node));
++              return false;
++      }
++
++      if (lookup_attribute("do_const", TYPE_ATTRIBUTES(node))) {
++              gcc_assert(TYPE_READONLY(node));
++              return true;
++      }
++
++      constifiable(node, &cinfo);
++      if ((!cinfo.has_fptr_field || cinfo.has_writable_field || cinfo.has_no_const_field) && !cinfo.has_do_const_field)
++              return false;
++
++      return TYPE_READONLY(node);
++}
++
++static void deconstify_tree(tree node);
++
++static void deconstify_type(tree type)
++{
++      tree field;
++
++      gcc_assert(TREE_CODE(type) == RECORD_TYPE || TREE_CODE(type) == UNION_TYPE);
++
++      for (field = TYPE_FIELDS(type); field; field = TREE_CHAIN(field)) {
++              const_tree fieldtype = get_field_type(field);
++
++              // special case handling of simple ptr-to-same-array-type members
++              if (TREE_CODE(TREE_TYPE(field)) == POINTER_TYPE) {
++                      tree ptrtype = TREE_TYPE(TREE_TYPE(field));
++
++                      if (TREE_TYPE(TREE_TYPE(field)) == type)
++                              continue;
++                      if (TREE_CODE(ptrtype) != RECORD_TYPE && TREE_CODE(ptrtype) != UNION_TYPE)
++                              continue;
++                      if (!constified(ptrtype))
++                              continue;
++                      if (TYPE_MAIN_VARIANT(ptrtype) == TYPE_MAIN_VARIANT(type))
++                              TREE_TYPE(field) = build_pointer_type(build_qualified_type(type, TYPE_QUALS(ptrtype) & ~TYPE_QUAL_CONST));
++                      continue;
++              }
++              if (TREE_CODE(fieldtype) != RECORD_TYPE && TREE_CODE(fieldtype) != UNION_TYPE)
++                      continue;
++              if (!constified(fieldtype))
++                      continue;
++
++              deconstify_tree(field);
++              TREE_READONLY(field) = 0;
++      }
++      TYPE_READONLY(type) = 0;
++      C_TYPE_FIELDS_READONLY(type) = 0;
++      if (lookup_attribute("do_const", TYPE_ATTRIBUTES(type))) {
++              TYPE_ATTRIBUTES(type) = copy_list(TYPE_ATTRIBUTES(type));
++              TYPE_ATTRIBUTES(type) = remove_attribute("do_const", TYPE_ATTRIBUTES(type));
++      }
++}
++
++static void deconstify_tree(tree node)
++{
++      tree old_type, new_type, field;
++
++      old_type = TREE_TYPE(node);
++      while (TREE_CODE(old_type) == ARRAY_TYPE && TREE_CODE(TREE_TYPE(old_type)) != ARRAY_TYPE) {
++              node = TREE_TYPE(node) = copy_node(old_type);
++              old_type = TREE_TYPE(old_type);
++      }
++
++      gcc_assert(TREE_CODE(old_type) == RECORD_TYPE || TREE_CODE(old_type) == UNION_TYPE);
++      gcc_assert(TYPE_READONLY(old_type) && (TYPE_QUALS(old_type) & TYPE_QUAL_CONST));
++
++      new_type = build_qualified_type(old_type, TYPE_QUALS(old_type) & ~TYPE_QUAL_CONST);
++      TYPE_FIELDS(new_type) = copy_list(TYPE_FIELDS(new_type));
++      for (field = TYPE_FIELDS(new_type); field; field = TREE_CHAIN(field))
++              DECL_FIELD_CONTEXT(field) = new_type;
++
++      deconstify_type(new_type);
++
++      TREE_TYPE(node) = new_type;
++}
++
++static tree handle_no_const_attribute(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
++{
++      tree type;
++      constify_info cinfo = {
++              .has_fptr_field = false,
++              .has_writable_field = false,
++              .has_do_const_field = false,
++              .has_no_const_field = false
++      };
++
++      *no_add_attrs = true;
++      if (TREE_CODE(*node) == FUNCTION_DECL) {
++              error("%qE attribute does not apply to functions (%qF)", name, *node);
++              return NULL_TREE;
++      }
++
++      if (TREE_CODE(*node) == PARM_DECL) {
++              error("%qE attribute does not apply to function parameters (%qD)", name, *node);
++              return NULL_TREE;
++      }
++
++      if (TREE_CODE(*node) == VAR_DECL) {
++              error("%qE attribute does not apply to variables (%qD)", name, *node);
++              return NULL_TREE;
++      }
++
++      if (TYPE_P(*node)) {
++              type = *node;
++      } else {
++              if (TREE_CODE(*node) != TYPE_DECL) {
++                      error("%qE attribute does not apply to %qD (%qT)", name, *node, TREE_TYPE(*node));
++                      return NULL_TREE;
++              }
++              type = TREE_TYPE(*node);
++      }
++
++      if (TREE_CODE(type) != RECORD_TYPE && TREE_CODE(type) != UNION_TYPE) {
++              error("%qE attribute used on %qT applies to struct and union types only", name, type);
++              return NULL_TREE;
++      }
++
++      if (lookup_attribute(IDENTIFIER_POINTER(name), TYPE_ATTRIBUTES(type))) {
++              error("%qE attribute is already applied to the type %qT", name, type);
++              return NULL_TREE;
++      }
++
++      if (TYPE_P(*node)) {
++              if (lookup_attribute("do_const", TYPE_ATTRIBUTES(type)))
++                      error("%qE attribute used on type %qT is incompatible with 'do_const'", name, type);
++              else
++                      *no_add_attrs = false;
++              return NULL_TREE;
++      }
++
++      constifiable(type, &cinfo);
++      if ((cinfo.has_fptr_field && !cinfo.has_writable_field && !cinfo.has_no_const_field) || lookup_attribute("do_const", TYPE_ATTRIBUTES(type))) {
++              if (enabled) {
++                      if TYPE_P(*node)
++                              deconstify_type(*node);
++                      else
++                              deconstify_tree(*node);
++              }
++              if (TYPE_P(*node))
++                      TYPE_CONSTIFY_VISITED(*node) = 1;
++              else
++                      TYPE_CONSTIFY_VISITED(TREE_TYPE(*node)) = 1;
++              return NULL_TREE;
++      }
++
++      if (enabled && TYPE_FIELDS(type))
++              error("%qE attribute used on type %qT that is not constified", name, type);
++      return NULL_TREE;
++}
++
++static void constify_type(tree type)
++{
++      gcc_assert(type == TYPE_MAIN_VARIANT(type));
++      TYPE_READONLY(type) = 1;
++      C_TYPE_FIELDS_READONLY(type) = 1;
++      TYPE_CONSTIFY_VISITED(type) = 1;
++//    TYPE_ATTRIBUTES(type) = copy_list(TYPE_ATTRIBUTES(type));
++//    TYPE_ATTRIBUTES(type) = tree_cons(get_identifier("do_const"), NULL_TREE, TYPE_ATTRIBUTES(type));
++}
++
++static tree handle_do_const_attribute(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
++{
++      *no_add_attrs = true;
++      if (!TYPE_P(*node)) {
++              error("%qE attribute applies to types only (%qD)", name, *node);
++              return NULL_TREE;
++      }
++
++      if (TREE_CODE(*node) != RECORD_TYPE && TREE_CODE(*node) != UNION_TYPE) {
++              error("%qE attribute used on %qT applies to struct and union types only", name, *node);
++              return NULL_TREE;
++      }
++
++      if (lookup_attribute(IDENTIFIER_POINTER(name), TYPE_ATTRIBUTES(*node))) {
++              error("%qE attribute used on %qT is already applied to the type", name, *node);
++              return NULL_TREE;
++      }
++
++      if (lookup_attribute("no_const", TYPE_ATTRIBUTES(*node))) {
++              error("%qE attribute used on %qT is incompatible with 'no_const'", name, *node);
++              return NULL_TREE;
++      }
++
++      *no_add_attrs = false;
++      return NULL_TREE;
++}
++
++static struct attribute_spec no_const_attr = {
++      .name                   = "no_const",
++      .min_length             = 0,
++      .max_length             = 0,
++      .decl_required          = false,
++      .type_required          = false,
++      .function_type_required = false,
++      .handler                = handle_no_const_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity  = true
++#endif
++};
++
++static struct attribute_spec do_const_attr = {
++      .name                   = "do_const",
++      .min_length             = 0,
++      .max_length             = 0,
++      .decl_required          = false,
++      .type_required          = false,
++      .function_type_required = false,
++      .handler                = handle_do_const_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity  = true
++#endif
++};
++
++static void register_attributes(void *event_data, void *data)
++{
++      register_attribute(&no_const_attr);
++      register_attribute(&do_const_attr);
++}
++
++static void finish_type(void *event_data, void *data)
++{
++      tree type = (tree)event_data;
++      constify_info cinfo = {
++              .has_fptr_field = false,
++              .has_writable_field = false,
++              .has_do_const_field = false,
++              .has_no_const_field = false
++      };
++
++      if (type == NULL_TREE || type == error_mark_node)
++              return;
++
++#if BUILDING_GCC_VERSION >= 5000
++      if (TREE_CODE(type) == ENUMERAL_TYPE)
++              return;
++#endif
++
++      if (TYPE_FIELDS(type) == NULL_TREE || TYPE_CONSTIFY_VISITED(type))
++              return;
++
++      constifiable(type, &cinfo);
++
++      if (lookup_attribute("no_const", TYPE_ATTRIBUTES(type))) {
++              if ((cinfo.has_fptr_field && !cinfo.has_writable_field && !cinfo.has_no_const_field) || cinfo.has_do_const_field) {
++                      deconstify_type(type);
++                      TYPE_CONSTIFY_VISITED(type) = 1;
++              } else
++                      error("'no_const' attribute used on type %qT that is not constified", type);
++              return;
++      }
++
++      if (lookup_attribute("do_const", TYPE_ATTRIBUTES(type))) {
++              if (!cinfo.has_writable_field && !cinfo.has_no_const_field) {
++                      error("'do_const' attribute used on type %qT that is%sconstified", type, cinfo.has_fptr_field ? " " : " not ");
++                      return;
++              }
++              constify_type(type);
++              return;
++      }
++
++      if (cinfo.has_fptr_field && !cinfo.has_writable_field && !cinfo.has_no_const_field) {
++              if (lookup_attribute("do_const", TYPE_ATTRIBUTES(type))) {
++                      error("'do_const' attribute used on type %qT that is constified", type);
++                      return;
++              }
++              constify_type(type);
++              return;
++      }
++
++      deconstify_type(type);
++      TYPE_CONSTIFY_VISITED(type) = 1;
++}
++
++static bool is_constified_var(varpool_node_ptr node)
++{
++      tree var = NODE_DECL(node);
++      tree type = TREE_TYPE(var);
++
++      if (node->alias)
++              return false;
++
++      if (DECL_EXTERNAL(var))
++              return false;
++
++      // XXX handle more complex nesting of arrays/structs
++      if (TREE_CODE(type) == ARRAY_TYPE)
++              type = TREE_TYPE(type);
++
++      if (TREE_CODE(type) != RECORD_TYPE && TREE_CODE(type) != UNION_TYPE)
++              return false;
++
++      if (!TYPE_READONLY(type) || !C_TYPE_FIELDS_READONLY(type))
++              return false;
++
++      if (!TYPE_CONSTIFY_VISITED(type))
++              return false;
++
++      return true;
++}
++
++static void check_section_mismatch(varpool_node_ptr node)
++{
++      tree var, section;
++      size_t i;
++      const char *name;
++
++      var = NODE_DECL(node);
++      name = get_decl_section_name(var);
++      section = lookup_attribute("section", DECL_ATTRIBUTES(var));
++      if (!section) {
++              if (name) {
++                      fprintf(stderr, "DECL_SECTION [%s] ", name);
++                      dump_varpool_node(stderr, node);
++                      gcc_unreachable();
++              }
++              return;
++      } else
++              gcc_assert(name);
++
++//fprintf(stderr, "SECTIONAME: [%s] ", get_decl_section_name(var));
++//debug_tree(var);
++
++      gcc_assert(!TREE_CHAIN(section));
++      gcc_assert(TREE_VALUE(section));
++
++      section = TREE_VALUE(TREE_VALUE(section));
++      gcc_assert(!strcmp(TREE_STRING_POINTER(section), name));
++//debug_tree(section);
++
++      for (i = 0; i < ARRAY_SIZE(const_sections); i++)
++              if (!strcmp(const_sections[i].name, name))
++                      return;
++
++      error_at(DECL_SOURCE_LOCATION(var), "constified variable %qD placed into writable section %E", var, section);
++}
++
++// this works around a gcc bug/feature where uninitialized globals
++// are moved into the .bss section regardless of any constification
++// see gcc/varasm.c:bss_initializer_p()
++static void fix_initializer(varpool_node_ptr node)
++{
++      tree var = NODE_DECL(node);
++      tree type = TREE_TYPE(var);
++
++      if (DECL_INITIAL(var))
++              return;
++
++      DECL_INITIAL(var) = build_constructor(type, NULL);
++//    inform(DECL_SOURCE_LOCATION(var), "constified variable %qE moved into .rodata", var);
++}
++
++static void check_global_variables(void *event_data, void *data)
++{
++      varpool_node_ptr node;
++
++      FOR_EACH_VARIABLE(node) {
++              if (!is_constified_var(node))
++                      continue;
++
++              check_section_mismatch(node);
++              fix_initializer(node);
++      }
++}
++
++static unsigned int check_local_variables_execute(void)
++{
++      unsigned int ret = 0;
++      tree var;
++
++      unsigned int i;
++
++      FOR_EACH_LOCAL_DECL(cfun, i, var) {
++              tree type = TREE_TYPE(var);
++
++              gcc_assert(DECL_P(var));
++              if (is_global_var(var))
++                      continue;
++
++              if (TREE_CODE(type) != RECORD_TYPE && TREE_CODE(type) != UNION_TYPE)
++                      continue;
++
++              if (!TYPE_READONLY(type) || !C_TYPE_FIELDS_READONLY(type))
++                      continue;
++
++              if (!TYPE_CONSTIFY_VISITED(type))
++                      continue;
++
++              error_at(DECL_SOURCE_LOCATION(var), "constified variable %qE cannot be local", var);
++              ret = 1;
++      }
++      return ret;
++}
++
++#define PASS_NAME check_local_variables
++#define NO_GATE
++#include "gcc-generate-gimple-pass.h"
++
++static unsigned int (*old_section_type_flags)(tree decl, const char *name, int reloc);
++
++static unsigned int constify_section_type_flags(tree decl, const char *name, int reloc)
++{
++      size_t i;
++
++      for (i = 0; i < ARRAY_SIZE(const_sections); i++)
++              if (!strcmp(const_sections[i].name, name))
++                      return 0;
++
++      return old_section_type_flags(decl, name, reloc);
++}
++
++static void constify_start_unit(void *gcc_data, void *user_data)
++{
++//    size_t i;
++
++//    for (i = 0; i < ARRAY_SIZE(const_sections); i++)
++//            const_sections[i].section = get_unnamed_section(0, output_section_asm_op, const_sections[i].asm_op);
++//            const_sections[i].section = get_section(const_sections[i].name, 0, NULL);
++
++      old_section_type_flags = targetm.section_type_flags;
++      targetm.section_type_flags = constify_section_type_flags;
++}
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      int i;
++
++      struct register_pass_info check_local_variables_pass_info;
++
++      check_local_variables_pass_info.pass                            = make_check_local_variables_pass();
++      check_local_variables_pass_info.reference_pass_name             = "ssa";
++      check_local_variables_pass_info.ref_pass_instance_number        = 1;
++      check_local_variables_pass_info.pos_op                          = PASS_POS_INSERT_BEFORE;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      for (i = 0; i < argc; ++i) {
++              if (!(strcmp(argv[i].key, "disable"))) {
++                      enabled = false;
++                      continue;
++              }
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      if (strncmp(lang_hooks.name, "GNU C", 5) && !strncmp(lang_hooks.name, "GNU C+", 6)) {
++              inform(UNKNOWN_LOCATION, G_("%s supports C only, not %s"), plugin_name, lang_hooks.name);
++              enabled = false;
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &const_plugin_info);
++      if (enabled) {
++              register_callback(plugin_name, PLUGIN_ALL_IPA_PASSES_START, check_global_variables, NULL);
++              register_callback(plugin_name, PLUGIN_FINISH_TYPE, finish_type, NULL);
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &check_local_variables_pass_info);
++              register_callback(plugin_name, PLUGIN_START_UNIT, constify_start_unit, NULL);
++      }
++      register_callback(plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL);
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/cyc_complexity_plugin.c b/scripts/gcc-plugins/cyc_complexity_plugin.c
+index 34df974..8af7db0 100644
+--- a/scripts/gcc-plugins/cyc_complexity_plugin.c
++++ b/scripts/gcc-plugins/cyc_complexity_plugin.c
+@@ -20,7 +20,7 @@
+ #include "gcc-common.h"
+-int plugin_is_GPL_compatible;
++__visible int plugin_is_GPL_compatible;
+ static struct plugin_info cyc_complexity_plugin_info = {
+       .version        = "20160225",
+@@ -49,7 +49,7 @@ static unsigned int cyc_complexity_execute(void)
+ #include "gcc-generate-gimple-pass.h"
+-int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
+ {
+       const char * const plugin_name = plugin_info->base_name;
+       struct register_pass_info cyc_complexity_pass_info;
+diff --git a/scripts/gcc-plugins/gcc-common.h b/scripts/gcc-plugins/gcc-common.h
+index 172850b..a4e216d 100644
+--- a/scripts/gcc-plugins/gcc-common.h
++++ b/scripts/gcc-plugins/gcc-common.h
+@@ -21,14 +21,20 @@
+ #include "rtl.h"
+ #include "tm_p.h"
+ #include "flags.h"
++//#include "insn-attr.h"
++//#include "insn-config.h"
++//#include "insn-flags.h"
+ #include "hard-reg-set.h"
++//#include "recog.h"
+ #include "output.h"
+ #include "except.h"
+ #include "function.h"
+ #include "toplev.h"
++//#include "expr.h"
+ #include "basic-block.h"
+ #include "intl.h"
+ #include "ggc.h"
++//#include "regs.h"
+ #include "timevar.h"
+ #include "params.h"
+@@ -40,12 +46,18 @@
+ #endif
+ #include "emit-rtl.h"
++//#include "reload.h"
++//#include "ira.h"
++//#include "dwarf2asm.h"
+ #include "debug.h"
+ #include "target.h"
+ #include "langhooks.h"
+ #include "cfgloop.h"
++//#include "hosthooks.h"
+ #include "cgraph.h"
+ #include "opts.h"
++//#include "coverage.h"
++//#include "value-prof.h"
+ #if BUILDING_GCC_VERSION == 4005
+ #include <sys/mman.h>
+@@ -57,6 +69,8 @@
+ #endif
+ #if BUILDING_GCC_VERSION >= 4006
++//#include "c-tree.h"
++//#include "cp/cp-tree.h"
+ #include "c-family/c-common.h"
+ #else
+ #include "c-common.h"
+@@ -75,8 +89,10 @@
+ #endif
+ #include "diagnostic.h"
++//#include "tree-diagnostic.h"
+ #include "tree-dump.h"
+ #include "tree-pass.h"
++//#include "df.h"
+ #include "predict.h"
+ #include "ipa-utils.h"
+@@ -87,6 +103,7 @@
+ #include "internal-fn.h"
+ #include "gimple-expr.h"
+ #include "gimple-fold.h"
++//#include "diagnostic-color.h"
+ #include "context.h"
+ #include "tree-ssa-alias.h"
+ #include "tree-ssa.h"
+@@ -109,7 +126,15 @@
+ #include "ssa-iterators.h"
+ #endif
++//#include "lto/lto.h"
++#if BUILDING_GCC_VERSION >= 4007
++//#include "data-streamer.h"
++#else
++//#include "lto-streamer.h"
++#endif
++//#include "lto-compress.h"
+ #if BUILDING_GCC_VERSION >= 5000
++//#include "lto-section-names.h"
+ #include "builtins.h"
+ #endif
+@@ -130,6 +155,7 @@ extern void dump_gimple_stmt(pretty_printer *, gimple, int, int);
+ #endif
+ #define __unused __attribute__((__unused__))
++#define __visible __attribute__((visibility("default")))
+ #define DECL_NAME_POINTER(node) IDENTIFIER_POINTER(DECL_NAME(node))
+ #define DECL_NAME_LENGTH(node) IDENTIFIER_LENGTH(DECL_NAME(node))
+@@ -165,6 +191,7 @@ static inline bool gimple_call_builtin_p(gimple stmt, enum built_in_function cod
+       fndecl = gimple_call_fndecl(stmt);
+       if (!fndecl || DECL_BUILT_IN_CLASS(fndecl) != BUILT_IN_NORMAL)
+               return false;
++//    print_node(stderr, "pax", fndecl, 4);
+       return DECL_FUNCTION_CODE(fndecl) == code;
+ }
+@@ -286,6 +313,22 @@ static inline struct cgraph_node *cgraph_next_function_with_gimple_body(struct c
+       return NULL;
+ }
++static inline bool cgraph_for_node_and_aliases(cgraph_node_ptr node, bool (*callback)(cgraph_node_ptr, void *), void *data, bool include_overwritable)
++{
++      cgraph_node_ptr alias;
++
++      if (callback(node, data))
++              return true;
++
++      for (alias = node->same_body; alias; alias = alias->next) {
++              if (include_overwritable || cgraph_function_body_availability(alias) > AVAIL_OVERWRITABLE)
++                      if (cgraph_for_node_and_aliases(alias, callback, data, include_overwritable))
++                              return true;
++      }
++
++      return false;
++}
++
+ #define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
+       for ((node) = cgraph_first_function_with_gimple_body(); (node); \
+               (node) = cgraph_next_function_with_gimple_body(node))
+@@ -495,6 +538,14 @@ static inline const greturn *as_a_const_greturn(const_gimple stmt)
+ typedef struct rtx_def rtx_insn;
++static inline const char *get_decl_section_name(const_tree decl)
++{
++      if (DECL_SECTION_NAME(decl) == NULL_TREE)
++              return NULL;
++
++      return TREE_STRING_POINTER(DECL_SECTION_NAME(decl));
++}
++
+ static inline void set_decl_section_name(tree node, const char *value)
+ {
+       if (value)
+@@ -608,8 +659,15 @@ inline bool is_a_helper<const gassign *>::test(const_gimple gs)
+ #define TODO_verify_stmts TODO_verify_il
+ #define TODO_verify_rtl_sharing TODO_verify_il
++//#define TREE_INT_CST_HIGH(NODE) ({ TREE_INT_CST_EXT_NUNITS(NODE) > 1 ? (unsigned HOST_WIDE_INT)TREE_INT_CST_ELT(NODE, 1) : 0; })
++
+ #define INSN_DELETED_P(insn) (insn)->deleted()
++static inline const char *get_decl_section_name(const_tree decl)
++{
++      return DECL_SECTION_NAME(decl);
++}
++
+ /* symtab/cgraph related */
+ #define debug_cgraph_node(node) (node)->debug()
+ #define cgraph_get_node(decl) cgraph_node::get(decl)
+@@ -618,6 +676,7 @@ inline bool is_a_helper<const gassign *>::test(const_gimple gs)
+ #define cgraph_n_nodes symtab->cgraph_count
+ #define cgraph_max_uid symtab->cgraph_max_uid
+ #define varpool_get_node(decl) varpool_node::get(decl)
++#define dump_varpool_node(file, node) (node)->dump(file)
+ #define cgraph_create_edge(caller, callee, call_stmt, count, freq, nest) \
+       (caller)->create_edge((callee), (call_stmt), (count), (freq))
+@@ -673,6 +732,11 @@ static inline cgraph_node_ptr cgraph_alias_target(cgraph_node_ptr node)
+       return node->get_alias_target();
+ }
++static inline bool cgraph_for_node_and_aliases(cgraph_node_ptr node, bool (*callback)(cgraph_node_ptr, void *), void *data, bool include_overwritable)
++{
++      return node->call_for_symbol_thunks_and_aliases(callback, data, include_overwritable);
++}
++
+ static inline struct cgraph_node_hook_list *cgraph_add_function_insertion_hook(cgraph_node_hook hook, void *data)
+ {
+       return symtab->add_cgraph_insertion_hook(hook, data);
+diff --git a/scripts/gcc-plugins/gcc-generate-gimple-pass.h b/scripts/gcc-plugins/gcc-generate-gimple-pass.h
+index 526c3c7..0b081fe 100644
+--- a/scripts/gcc-plugins/gcc-generate-gimple-pass.h
++++ b/scripts/gcc-plugins/gcc-generate-gimple-pass.h
+@@ -119,7 +119,7 @@ public:
+ #endif
+ #endif
+-      virtual opt_pass * clone () { return new _PASS_NAME_PASS(); }
++      virtual opt_pass *clone() { return new _PASS_NAME_PASS(); }
+ #ifndef NO_EXECUTE
+ #if BUILDING_GCC_VERSION >= 5000
+diff --git a/scripts/gcc-plugins/gen-random-seed.sh b/scripts/gcc-plugins/gen-random-seed.sh
+new file mode 100644
+index 0000000..7514850
+--- /dev/null
++++ b/scripts/gcc-plugins/gen-random-seed.sh
+@@ -0,0 +1,8 @@
++#!/bin/sh
++
++if [ ! -f "$1" ]; then
++      SEED=`od -A n -t x8 -N 32 /dev/urandom | tr -d ' \n'`
++      echo "const char *randstruct_seed = \"$SEED\";" > "$1"
++      HASH=`echo -n "$SEED" | sha256sum | cut -d" " -f1 | tr -d ' \n'`
++      echo "#define RANDSTRUCT_HASHED_SEED \"$HASH\"" > "$2"
++fi
+diff --git a/scripts/gcc-plugins/initify_plugin.c b/scripts/gcc-plugins/initify_plugin.c
+new file mode 100644
+index 0000000..0c0cf81
+--- /dev/null
++++ b/scripts/gcc-plugins/initify_plugin.c
+@@ -0,0 +1,1804 @@
++/*
++ * Copyright 2015-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/initify
++ *
++ * This plugin has two passes. The first one tries to find all functions that
++ * can be become __init/__exit. The second one moves string constants
++ * (local variables and function string arguments marked by
++ * the nocapture attribute) only referenced in __init/__exit functions
++ * to __initconst/__exitconst sections.
++ * Based on an idea from Mathias Krause <minipli@ld-linux.so>.
++ *
++ * The instrumentation pass of the latent_entropy plugin must run after
++ * the initify plugin to increase coverage.
++ *
++ * Options:
++ * -fplugin-arg-initify_plugin-disable
++ * -fplugin-arg-initify_plugin-verbose
++ * -fplugin-arg-initify_plugin-print_missing_attr
++ * -fplugin-arg-initify_plugin-search_init_exit_functions
++ * -fplugin-arg-initify_plugin-enable_init_to_exit_moves
++ * -fplugin-arg-initify_plugin-disable_verify_nocapture_functions
++ *
++ * Attribute: __attribute__((nocapture(x, y ...)))
++ *  The nocapture gcc attribute can be on functions only.
++ *  The attribute takes one or more unsigned integer constants as parameters
++ *  that specify the function argument(s) of const char* type to initify.
++ *  If the marked argument is a vararg then the plugin initifies
++ *  all vararg arguments.
++ *  There can be one negative value which means that the return of the function
++ *  will be followed to find it is a nocapture attribute or not.
++ *
++ * Attribute: __attribute__((unverified_nocapture(x, y ...)))
++ *  This attribute disables the compile data flow verification of the designated
++ *  nocapture parameters of the function. Use it only on function parameters
++ *  that are difficult for the plugin to analyze.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "gcc-common.h"
++
++__visible int plugin_is_GPL_compatible;
++
++static struct plugin_info initify_plugin_info = {
++      .version        =       "20160929",
++      .help           =       "disable\tturn off the initify plugin\n"
++                              "verbose\tprint all initified strings and all"
++                              " functions which should be __init/__exit\n"
++                              "print_missing_attr\tprint functions which"
++                              " can be marked by nocapture attribute\n"
++                              "search_init_exit_functions\tfind functions"
++                              " which should be marked by __init or __exit"
++                              " attribute\n"
++                              "enable_init_to_exit_moves\tmove a function"
++                              " to the exit section if it is called by __init"
++                              " and __exit functions too\n"
++                              "disable_verify_nocapture_functions\tdisable"
++                              " the search of capture uses in nocapture"
++                              " functions\n"
++};
++
++#define ARGNUM_NONE 0
++static bool verbose, print_missing_attr, search_init_exit_functions;
++static bool enable_init_to_exit_moves, disable_verify_nocapture_functions;
++
++enum section_type {
++      INIT, EXIT, BOTH, NONE
++};
++
++enum attribute_type {
++      UNVERIFIED, NOCAPTURE, PRINTF, BUILTINS, SYSCALL, NONE_ATTRIBUTE
++};
++
++
++#if BUILDING_GCC_VERSION >= 5000
++typedef struct hash_set<const_gimple> gimple_set;
++
++static inline bool pointer_set_insert(gimple_set *visited, const_gimple stmt)
++{
++      return visited->add(stmt);
++}
++
++static inline bool pointer_set_contains(gimple_set *visited, const_gimple stmt)
++{
++      return visited->contains(stmt);
++}
++
++static inline gimple_set* pointer_set_create(void)
++{
++      return new hash_set<const_gimple>;
++}
++
++static inline void pointer_set_destroy(gimple_set *visited)
++{
++      delete visited;
++}
++
++typedef struct hash_set<const_tree> tree_set;
++
++static inline bool pointer_set_insert(tree_set *visited, const_tree node)
++{
++      return visited->add(node);
++}
++
++static inline tree_set* tree_pointer_set_create(void)
++{
++      return new hash_set<const_tree>;
++}
++
++static inline void pointer_set_destroy(tree_set *visited)
++{
++      delete visited;
++}
++#else
++typedef struct pointer_set_t gimple_set;
++typedef struct pointer_set_t tree_set;
++
++static inline tree_set *tree_pointer_set_create(void)
++{
++      return pointer_set_create();
++}
++#endif
++
++static gimple initify_get_def_stmt(const_tree node)
++{
++      gcc_assert(node != NULL_TREE);
++
++      if (TREE_CODE(node) != SSA_NAME)
++              return NULL;
++      return SSA_NAME_DEF_STMT(node);
++}
++
++static void search_constant_strings(bool *has_str_cst, gimple_set *visited, tree node);
++static bool has_capture_use_local_var(const_tree vardecl);
++static bool search_capture_ssa_use(gimple_set *visited_defs, tree node);
++
++#define FUNCTION_PTR_P(node) \
++      (TREE_CODE(TREE_TYPE(node)) == POINTER_TYPE && \
++      (TREE_CODE(TREE_TYPE(TREE_TYPE(node))) == FUNCTION_TYPE || \
++      TREE_CODE(TREE_TYPE(TREE_TYPE(node))) == METHOD_TYPE))
++
++static bool is_vararg_arg(tree arg_list, unsigned int num)
++{
++      if (tree_last(arg_list) == void_list_node)
++              return false;
++
++      return num >= (unsigned int)list_length(arg_list);
++}
++
++static const_tree get_ptr_type(const_tree type)
++{
++      gcc_assert(type != NULL_TREE);
++
++      if (TREE_CODE(type) != POINTER_TYPE)
++              return type;
++      return get_ptr_type(TREE_TYPE(type));
++}
++
++static bool check_parameter(tree *node, tree type_args, int idx)
++{
++      const_tree type_arg, type, type_type, type_name, ptr_type;
++
++      if (is_vararg_arg(type_args, idx))
++              return true;
++
++      type_arg = chain_index(idx - 1, type_args);
++      type = TREE_VALUE(type_arg);
++      gcc_assert(type != NULL_TREE);
++      type_type = TREE_TYPE(type);
++      gcc_assert(type_type != NULL_TREE);
++
++      type_name = TYPE_NAME(type_type);
++      if (type_name != NULL_TREE && TREE_CODE(type_name) == IDENTIFIER_NODE && !strcmp(TYPE_NAME_POINTER(type_type), "va_format"))
++              return true;
++
++      if (TREE_CODE(type) != POINTER_TYPE) {
++              error("%u. parameter of the %qE function must be a pointer", idx, *node);
++              return false;
++      }
++
++      ptr_type = get_ptr_type(type_type);
++      if (!TYPE_READONLY(ptr_type)) {
++              error("%u. parameter of the %qE function must be readonly", idx, *node);
++              return false;
++      }
++
++      if (TREE_THIS_VOLATILE(ptr_type)) {
++              error("%u. parameter of the %qE function can't be volatile", idx, *node);
++              return false;
++      }
++
++      return true;
++}
++
++static bool check_marked_parameters(tree *node, tree type_args, const_tree args, const_tree name)
++{
++      const_tree arg;
++      bool negative_val;
++
++      negative_val = false;
++      for (arg = args; arg; arg = TREE_CHAIN(arg)) {
++              int idx;
++              unsigned int abs_idx;
++              tree position = TREE_VALUE(arg);
++
++              if (TREE_CODE(position) != INTEGER_CST) {
++                      error("%qE parameter of the %qE attribute isn't an integer (fn: %qE)", position, name, *node);
++                      return false;
++              }
++
++              idx = (int)tree_to_shwi(position);
++              if (negative_val && idx < 0) {
++                      error("Only one negative attribute value is supported (attribute: %qE fn: %qE)", name, *node);
++                      return false;
++              }
++
++              if (idx < 0)
++                      negative_val = true;
++
++              abs_idx = abs(idx);
++              if (abs_idx == 0)
++                      continue;
++
++              if (!check_parameter(node, type_args, abs_idx))
++                      return false;
++      }
++      return true;
++}
++
++static bool check_all_parameters(tree *node, tree type_args)
++{
++      int arg, len = list_length(type_args);
++
++      if (tree_last(type_args) == void_list_node)
++              len -= 1;
++
++      for (arg = 1; arg <= len; arg++) {
++              if (!check_parameter(node, type_args, arg))
++                      return false;
++      }
++      return true;
++}
++
++/* nocapture attribute:
++ *  * to mark nocapture function arguments. If used on a vararg argument
++ *    it applies to all of them that have no other uses.
++ *  * attribute value 0 is ignored to allow reusing print attribute arguments
++ */
++static bool handle_initify_attributes(tree *node, tree name, tree args)
++{
++      tree type_args = NULL_TREE;
++
++      switch (TREE_CODE(*node)) {
++      case FUNCTION_DECL:
++              type_args = TYPE_ARG_TYPES(TREE_TYPE(*node));
++              break;
++
++      case FUNCTION_TYPE:
++      case METHOD_TYPE:
++              type_args = TYPE_ARG_TYPES(*node);
++              break;
++
++      case TYPE_DECL: {
++              enum tree_code fn_code;
++              const_tree fntype = TREE_TYPE(*node);
++
++              fn_code = TREE_CODE(fntype);
++              if (fn_code == POINTER_TYPE)
++                      fntype = TREE_TYPE(fntype);
++              fn_code = TREE_CODE(fntype);
++              if (fn_code == FUNCTION_TYPE || fn_code == METHOD_TYPE) {
++                      type_args = TYPE_ARG_TYPES(fntype);
++                      break;
++              }
++              /* FALLTHROUGH */
++      }
++
++      default:
++              debug_tree(*node);
++              error("%s: %qE attribute only applies to functions", __func__, name);
++              return false;
++      }
++
++      gcc_assert(type_args != NULL_TREE);
++
++      if (!check_marked_parameters(node, type_args, args, name))
++              return false;
++      return args != NULL_TREE || check_all_parameters(node, type_args);
++}
++
++static tree handle_nocapture_attribute(tree *node, tree name, tree args, int __unused flags, bool *no_add_attrs)
++{
++      tree nocapture_attr;
++
++      *no_add_attrs = true;
++
++      if (!handle_initify_attributes(node, name, args))
++              return NULL_TREE;
++
++      nocapture_attr = lookup_attribute("nocapture", DECL_ATTRIBUTES(*node));
++      if (nocapture_attr)
++              chainon(TREE_VALUE(nocapture_attr), args);
++      else
++              *no_add_attrs = false;
++
++      return NULL_TREE;
++}
++
++static tree handle_unverified_nocapture_attribute(tree *node, tree name, tree args, int __unused flags, bool *no_add_attrs)
++{
++      tree unverified_attr;
++
++      *no_add_attrs = true;
++
++      if (!handle_initify_attributes(node, name, args))
++              return NULL_TREE;
++
++      unverified_attr = lookup_attribute("unverified_nocapture", DECL_ATTRIBUTES(*node));
++      if (unverified_attr)
++              chainon(TREE_VALUE(unverified_attr), args);
++      else
++              *no_add_attrs = false;
++
++      return NULL_TREE;
++}
++
++static struct attribute_spec nocapture_attr = {
++      .name                           = "nocapture",
++      .min_length                     = 0,
++      .max_length                     = -1,
++      .decl_required                  = true,
++      .type_required                  = false,
++      .function_type_required         = false,
++      .handler                        = handle_nocapture_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity          = false
++#endif
++};
++
++static struct attribute_spec unverified_nocapture_attr = {
++      .name                           = "unverified_nocapture",
++      .min_length                     = 0,
++      .max_length                     = -1,
++      .decl_required                  = true,
++      .type_required                  = false,
++      .function_type_required         = false,
++      .handler                        = handle_unverified_nocapture_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity          = false
++#endif
++};
++
++static void register_attributes(void __unused *event_data, void __unused *data)
++{
++      register_attribute(&nocapture_attr);
++      register_attribute(&unverified_nocapture_attr);
++}
++
++/* Determine whether the function is in the init or exit sections. */
++static enum section_type get_init_exit_section(const_tree decl)
++{
++      const char *str;
++      const_tree section, attr_value;
++
++      section = lookup_attribute("section", DECL_ATTRIBUTES(decl));
++      if (!section)
++              return NONE;
++
++      attr_value = TREE_VALUE(section);
++      gcc_assert(attr_value != NULL_TREE);
++      gcc_assert(list_length(attr_value) == 1);
++
++      str = TREE_STRING_POINTER(TREE_VALUE(attr_value));
++
++      if (!strncmp(str, ".init.", 6))
++              return INIT;
++      if (!strncmp(str, ".exit.", 6))
++              return EXIT;
++      return NONE;
++}
++
++static tree get_string_cst(tree var)
++{
++      if (var == NULL_TREE)
++              return NULL_TREE;
++
++      if (TREE_CODE(var) == STRING_CST)
++              return var;
++
++      switch (TREE_CODE_CLASS(TREE_CODE(var))) {
++      case tcc_expression:
++      case tcc_reference: {
++              int i;
++
++              for (i = 0; i < TREE_OPERAND_LENGTH(var); i++) {
++                      tree ret = get_string_cst(TREE_OPERAND(var, i));
++                      if (ret != NULL_TREE)
++                              return ret;
++              }
++              break;
++      }
++
++      default:
++              break;
++      }
++
++      return NULL_TREE;
++}
++
++static bool set_init_exit_section(tree decl)
++{
++      gcc_assert(DECL_P(decl));
++
++      if (get_init_exit_section(decl) != NONE)
++              return false;
++
++      if (get_init_exit_section(current_function_decl) == INIT)
++              set_decl_section_name(decl, ".init.rodata.str");
++      else
++              set_decl_section_name(decl, ".exit.rodata.str");
++      return true;
++}
++
++/* Syscalls are always nocapture functions. */
++static bool is_syscall(const_tree fn)
++{
++      const char *name = DECL_NAME_POINTER(fn);
++
++      if (!strncmp(name, "sys_", 4))
++              return true;
++
++      if (!strncmp(name, "sys32_", 6))
++              return true;
++
++      if (!strncmp(name, "compat_sys_", 11))
++              return true;
++
++      return false;
++}
++
++/* These builtins are nocapture functions. */
++static bool allowed_builtins(const_tree fn)
++{
++      const char *name = DECL_NAME_POINTER(fn);
++
++      if (!strcmp(name, "__builtin_va_start"))
++              return true;
++      if (!strcmp(name, "__builtin_expect"))
++              return true;
++      if (!strcmp(name, "__builtin_memcpy"))
++              return true;
++      return false;
++}
++
++static enum attribute_type search_argnum_in_attribute_params(const_tree attr, int fn_arg_num, int fntype_arg_len)
++{
++      const_tree attr_val;
++
++      for (attr_val = TREE_VALUE(attr); attr_val; attr_val = TREE_CHAIN(attr_val)) {
++              int attr_arg_val;
++
++              if (TREE_CODE(TREE_VALUE(attr_val)) == IDENTIFIER_NODE)
++                      continue;
++
++              attr_arg_val = (int)abs(tree_to_shwi(TREE_VALUE(attr_val)));
++              if (attr_arg_val == fn_arg_num)
++                      return NOCAPTURE;
++              if (attr_arg_val > fntype_arg_len && fn_arg_num >= attr_arg_val)
++                      return NOCAPTURE;
++      }
++      return NONE_ATTRIBUTE;
++}
++
++/* Check that fn_arg_num is a nocapture argument, handle cloned functions too. */
++static enum attribute_type lookup_nocapture_argument(const_tree fndecl, const_tree attr, int fn_arg_num, int fntype_arg_len)
++{
++      const_tree orig_decl, clone_arg, orig_arg;
++      tree decl_list, orig_decl_list;
++      enum attribute_type orig_attribute;
++      struct cgraph_node *node = cgraph_get_node(fndecl);
++
++      orig_attribute = search_argnum_in_attribute_params(attr, fn_arg_num, fntype_arg_len);
++      if (orig_attribute == NONE_ATTRIBUTE)
++              return orig_attribute;
++
++      gcc_assert(node);
++      if (node->clone_of && node->clone.tree_map)
++              gcc_assert(!node->clone.args_to_skip);
++
++      if (!DECL_ARTIFICIAL(fndecl) && DECL_ABSTRACT_ORIGIN(fndecl) == NULL_TREE)
++              return orig_attribute;
++
++      orig_decl = DECL_ABSTRACT_ORIGIN(fndecl);
++      gcc_assert(orig_decl != NULL_TREE);
++
++      decl_list = DECL_ARGUMENTS(fndecl);
++      orig_decl_list = DECL_ARGUMENTS(orig_decl);
++
++      if (decl_list == NULL_TREE || orig_decl_list == NULL_TREE)
++              return NONE_ATTRIBUTE;
++
++      if (list_length(decl_list) == list_length(orig_decl_list))
++              return orig_attribute;
++
++      clone_arg = chain_index(fn_arg_num - 1, decl_list);
++      gcc_assert(clone_arg != NULL_TREE);
++
++      orig_arg = chain_index(fn_arg_num - 1, orig_decl_list);
++      gcc_assert(orig_arg != NULL_TREE);
++
++      if (!strcmp(DECL_NAME_POINTER(clone_arg), DECL_NAME_POINTER(orig_arg)))
++              return orig_attribute;
++      return NONE_ATTRIBUTE;
++}
++
++/* Check whether the function argument is nocapture. */
++static enum attribute_type is_fndecl_nocapture_arg(const_tree fndecl, int fn_arg_num)
++{
++      int fntype_arg_len;
++      const_tree type, attr = NULL_TREE;
++      bool fnptr = FUNCTION_PTR_P(fndecl);
++
++      if (!fnptr && is_syscall(fndecl))
++              return SYSCALL;
++
++      if (!fnptr && DECL_BUILT_IN(fndecl) && allowed_builtins(fndecl))
++              return BUILTINS;
++
++      if (fnptr)
++              type = TREE_TYPE(TREE_TYPE(fndecl));
++      else
++              type = TREE_TYPE(fndecl);
++
++      fntype_arg_len = type_num_arguments(type);
++
++      if (!fnptr)
++              attr = lookup_attribute("unverified_nocapture", DECL_ATTRIBUTES(fndecl));
++      if (attr != NULL_TREE && lookup_nocapture_argument(fndecl, attr, fn_arg_num, fntype_arg_len) != NONE_ATTRIBUTE)
++              return UNVERIFIED;
++
++      attr = lookup_attribute("format", TYPE_ATTRIBUTES(type));
++      if (attr != NULL_TREE && lookup_nocapture_argument(fndecl, attr, fn_arg_num, fntype_arg_len) != NONE_ATTRIBUTE)
++              return PRINTF;
++
++      if (fnptr)
++              return NONE_ATTRIBUTE;
++
++      attr = lookup_attribute("nocapture", DECL_ATTRIBUTES(fndecl));
++      if (attr == NULL_TREE)
++              return NONE_ATTRIBUTE;
++
++      if (TREE_VALUE(attr) == NULL_TREE)
++              return NOCAPTURE;
++
++      return lookup_nocapture_argument(fndecl, attr, fn_arg_num, fntype_arg_len);
++}
++
++/* Check whether arg_num is a nocapture argument that can be returned. */
++static bool is_negative_nocapture_arg(const_tree fndecl, int arg_num)
++{
++      const_tree attr, attr_val;
++
++      gcc_assert(arg_num <= 0);
++
++      if (FUNCTION_PTR_P(fndecl))
++              return false;
++
++      attr = lookup_attribute("nocapture", DECL_ATTRIBUTES(fndecl));
++      if (attr == NULL_TREE)
++              return false;
++
++      for (attr_val = TREE_VALUE(attr); attr_val; attr_val = TREE_CHAIN(attr_val)) {
++              int attr_arg_val;
++
++              if (arg_num == 0 && tree_int_cst_lt(TREE_VALUE(attr_val), integer_zero_node))
++                      return true;
++
++              attr_arg_val = (int)tree_to_shwi(TREE_VALUE(attr_val));
++              if (attr_arg_val == arg_num)
++                      return true;
++      }
++
++      return false;
++}
++
++static bool is_same_vardecl(const_tree op, const_tree vardecl)
++{
++      const_tree decl;
++
++      if (op == vardecl)
++              return true;
++      if (TREE_CODE(op) == SSA_NAME)
++              decl = SSA_NAME_VAR(op);
++      else
++              decl = op;
++
++      if (decl == NULL_TREE || !DECL_P(decl))
++              return false;
++
++      if (TREE_CODE(decl) != TREE_CODE(vardecl))
++              return false;
++
++      return DECL_NAME(decl) && !strcmp(DECL_NAME_POINTER(decl), DECL_NAME_POINTER(vardecl));
++}
++
++static bool search_same_vardecl(const_tree value, const_tree vardecl)
++{
++      int i;
++
++      for (i = 0; i < TREE_OPERAND_LENGTH(value); i++) {
++              const_tree op = TREE_OPERAND(value, i);
++
++              if (op == NULL_TREE)
++                      continue;
++              if (is_same_vardecl(op, vardecl))
++                      return true;
++              if (search_same_vardecl(op, vardecl))
++                      return true;
++      }
++      return false;
++}
++
++static bool check_constructor(const_tree constructor, const_tree vardecl)
++{
++      unsigned HOST_WIDE_INT cnt __unused;
++      tree value;
++
++      FOR_EACH_CONSTRUCTOR_VALUE(CONSTRUCTOR_ELTS(constructor), cnt, value) {
++              if (TREE_CODE(value) == CONSTRUCTOR)
++                      return check_constructor(value, vardecl);
++              if (is_gimple_constant(value))
++                      continue;
++
++              gcc_assert(TREE_OPERAND_LENGTH(value) > 0);
++              if (search_same_vardecl(value, vardecl))
++                      return true;
++      }
++      return false;
++}
++
++static bool compare_ops(const_tree vardecl, tree op)
++{
++      if (TREE_CODE(op) == TREE_LIST)
++              op = TREE_VALUE(op);
++      if (TREE_CODE(op) == SSA_NAME)
++              op = SSA_NAME_VAR(op);
++      if (op == NULL_TREE)
++              return false;
++
++      switch (TREE_CODE_CLASS(TREE_CODE(op))) {
++      case tcc_declaration:
++              return is_same_vardecl(op, vardecl);
++
++      case tcc_exceptional:
++              return check_constructor(op, vardecl);
++
++      case tcc_constant:
++      case tcc_statement:
++      case tcc_comparison:
++              return false;
++
++      default:
++              break;
++      }
++
++      gcc_assert(TREE_OPERAND_LENGTH(op) > 0);
++      return search_same_vardecl(op, vardecl);
++}
++
++static bool is_stmt_nocapture_arg(const gcall *stmt, int arg_num)
++{
++      tree fndecl;
++
++      fndecl = gimple_call_fndecl(stmt);
++      if (fndecl == NULL_TREE)
++              fndecl = gimple_call_fn(stmt);
++
++      gcc_assert(fndecl != NULL_TREE);
++      if (is_fndecl_nocapture_arg(fndecl, arg_num) != NONE_ATTRIBUTE)
++              return true;
++
++      /*
++       * These are potentially nocapture functions that must be checked
++       *  manually.
++       */
++      if (print_missing_attr)
++              inform(gimple_location(stmt), "nocapture attribute is missing (fn: %E, arg: %u)\n", fndecl, arg_num);
++      return false;
++}
++
++/* Find the argument position of arg. */
++static int get_arg_num(const gcall *call, const_tree arg)
++{
++      int idx;
++
++      for (idx = 0; idx < (int)gimple_call_num_args(call); idx++) {
++              const_tree cur_arg = gimple_call_arg(call, idx);
++
++              if (cur_arg == arg)
++                      return idx + 1;
++      }
++
++      debug_tree(arg);
++      debug_gimple_stmt(call);
++      gcc_unreachable();
++}
++
++/* Determine if the variable uses are only in nocapture functions. */
++static bool only_nocapture_call(const_tree decl)
++{
++      struct cgraph_edge *e;
++      struct cgraph_node *caller;
++      bool has_call = false;
++
++      gcc_assert(TREE_CODE(decl) == VAR_DECL);
++
++      caller = cgraph_get_node(current_function_decl);
++      for (e = caller->callees; e; e = e->next_callee) {
++              int idx;
++              const gcall *call = as_a_const_gcall(e->call_stmt);
++
++              for (idx = 0; idx < (int)gimple_call_num_args(call); idx++) {
++                      const_tree arg = gimple_call_arg(call, idx);
++
++                      if (TREE_CODE(arg) != ADDR_EXPR)
++                              continue;
++                      if (TREE_OPERAND(arg, 0) != decl)
++                              continue;
++
++                      has_call = true;
++                      if (!is_stmt_nocapture_arg(call, idx + 1))
++                              return false;
++              }
++      }
++
++      gcc_assert(has_call);
++      return has_call;
++}
++
++/* Determine if all uses of a va_format typed variable are nocapture. */
++static bool is_va_format_use_nocapture(const_tree node)
++{
++      const_tree decl, type;
++
++      if (TREE_CODE(node) != COMPONENT_REF)
++              return false;
++
++      decl = TREE_OPERAND(node, 0);
++      type = TREE_TYPE(decl);
++      gcc_assert(TREE_CODE(type) == RECORD_TYPE);
++
++      if (!TYPE_NAME(type) || strcmp(TYPE_NAME_POINTER(type), "va_format"))
++              return false;
++
++      return only_nocapture_call(decl);
++}
++
++/* If there is a cast to integer (from const char) then it is a nocapture data flow */
++static bool is_cast_to_integer_type(gassign *assign)
++{
++      const_tree lhs_type, lhs;
++
++      if (!gimple_assign_cast_p(assign))
++              return false;
++
++      lhs = gimple_assign_rhs1(assign);
++      lhs_type = TREE_TYPE(lhs);
++      return TYPE_MODE(lhs_type) != QImode;
++}
++
++/* Search the uses of a return value. */
++static bool is_return_value_captured(gimple_set *visited_defs, const gcall *call)
++{
++      tree ret = gimple_call_lhs(call);
++
++      gcc_assert(ret != NULL_TREE);
++      return search_capture_ssa_use(visited_defs, ret);
++}
++
++/* Check if arg_num is a nocapture argument. */
++static bool is_call_arg_nocapture(gimple_set *visited_defs, const gcall *call, int arg_num)
++{
++      tree fndecl = gimple_call_fndecl(call);
++
++      if (fndecl == NULL_TREE)
++              fndecl = gimple_call_fn(call);
++      gcc_assert(fndecl != NULL_TREE);
++
++      if (is_negative_nocapture_arg(fndecl, -arg_num) && is_return_value_captured(visited_defs, call))
++              return false;
++
++      return is_stmt_nocapture_arg(call, arg_num);
++}
++
++/* Determine whether the function has at least one nocapture argument. */
++static bool has_nocapture_param(const_tree fndecl)
++{
++      const_tree attr;
++
++      if (fndecl == NULL_TREE)
++              return false;
++
++      if (is_syscall(fndecl))
++              return true;
++
++      attr = lookup_attribute("nocapture", DECL_ATTRIBUTES(fndecl));
++      if (attr == NULL_TREE)
++              attr = lookup_attribute("format", TYPE_ATTRIBUTES(TREE_TYPE(fndecl)));
++      return attr != NULL_TREE;
++}
++
++static void walk_def_stmt(bool *has_capture_use, gimple_set *visited, tree node)
++{
++      gimple def_stmt;
++      const_tree parm_decl;
++
++      if (*has_capture_use)
++              return;
++
++      if (TREE_CODE(node) != SSA_NAME)
++              goto true_out;
++
++      parm_decl = SSA_NAME_VAR(node);
++      if (parm_decl != NULL_TREE && TREE_CODE(parm_decl) == PARM_DECL)
++              return;
++
++      def_stmt = initify_get_def_stmt(node);
++      if (pointer_set_insert(visited, def_stmt))
++              return;
++
++      switch (gimple_code(def_stmt)) {
++      case GIMPLE_CALL: {
++              tree fndecl = gimple_call_fndecl(def_stmt);
++
++              if (fndecl == NULL_TREE)
++                      fndecl = gimple_call_fn(def_stmt);
++
++              gcc_assert(fndecl != NULL_TREE);
++              if (has_nocapture_param(fndecl))
++                      goto true_out;
++              return;
++      }
++
++      case GIMPLE_ASM:
++      case GIMPLE_ASSIGN:
++              goto true_out;
++
++      case GIMPLE_NOP:
++              return;
++
++      case GIMPLE_PHI: {
++              unsigned int i;
++
++              for (i = 0; i < gimple_phi_num_args(def_stmt); i++) {
++                      tree arg = gimple_phi_arg_def(def_stmt, i);
++
++                      walk_def_stmt(has_capture_use, visited, arg);
++              }
++              return;
++      }
++
++      default:
++              debug_gimple_stmt(def_stmt);
++              error("%s: unknown gimple code", __func__);
++              gcc_unreachable();
++      }
++      gcc_unreachable();
++
++true_out:
++      *has_capture_use = true;
++}
++
++static bool search_return_capture_use(const greturn *ret_stmt)
++{
++      gimple_set *def_visited;
++      tree ret;
++      bool has_capture_use;
++
++      if (is_negative_nocapture_arg(current_function_decl, 0))
++              return false;
++
++      def_visited = pointer_set_create();
++      ret = gimple_return_retval(ret_stmt);
++      has_capture_use = false;
++      walk_def_stmt(&has_capture_use, def_visited, ret);
++      pointer_set_destroy(def_visited);
++
++      return has_capture_use;
++}
++
++static bool lhs_is_a_nocapture_parm_decl(const_tree lhs)
++{
++      int arg_idx, len;
++      tree arg_list;
++
++      if (TREE_CODE(lhs) != PARM_DECL)
++              return false;
++
++      arg_list = DECL_ARGUMENTS(current_function_decl);
++      len = list_length(arg_list);
++
++      for (arg_idx = 0; arg_idx < len; arg_idx++) {
++              const_tree arg = chain_index(arg_idx, arg_list);
++
++              if (arg == lhs)
++                      return is_fndecl_nocapture_arg(current_function_decl, arg_idx + 1) != NONE_ATTRIBUTE;
++      }
++
++      debug_tree(current_function_decl);
++      debug_tree(lhs);
++      gcc_unreachable();
++}
++
++static void has_capture_use_ssa_var(bool *has_capture_use, gimple_set *visited_defs, tree_set *use_visited, tree node)
++{
++      imm_use_iterator imm_iter;
++      use_operand_p use_p;
++
++      if (pointer_set_insert(use_visited, node))
++              return;
++
++      if (*has_capture_use)
++              return;
++
++      if (is_va_format_use_nocapture(node))
++              return;
++
++      if (lhs_is_a_nocapture_parm_decl(node))
++              return;
++
++      if (TREE_CODE(node) != SSA_NAME)
++              goto true_out;
++
++      FOR_EACH_IMM_USE_FAST(use_p, imm_iter, node) {
++              gimple use_stmt = USE_STMT(use_p);
++
++              if (use_stmt == NULL)
++                      return;
++              if (is_gimple_debug(use_stmt))
++                      continue;
++
++              if (pointer_set_contains(visited_defs, use_stmt))
++                      continue;
++
++              switch (gimple_code(use_stmt)) {
++              case GIMPLE_COND:
++              case GIMPLE_SWITCH:
++                      return;
++
++              case GIMPLE_ASM:
++                      goto true_out;
++
++              case GIMPLE_CALL: {
++                      const gcall *call = as_a_const_gcall(use_stmt);
++                      int arg_num = get_arg_num(call, node);
++
++                      if (is_call_arg_nocapture(visited_defs, call, arg_num))
++                              return;
++                      goto true_out;
++              }
++
++              case GIMPLE_ASSIGN: {
++                      tree lhs;
++                      gassign *assign = as_a_gassign(use_stmt);
++                      const_tree rhs = gimple_assign_rhs1(assign);
++
++                      if (TREE_CODE(rhs) == MEM_REF)
++                              return;
++
++                      if (is_cast_to_integer_type(assign))
++                              return;
++
++                      lhs = gimple_assign_lhs(assign);
++                      has_capture_use_ssa_var(has_capture_use, visited_defs, use_visited, lhs);
++                      return;
++              }
++
++              case GIMPLE_PHI: {
++                      tree result = gimple_phi_result(use_stmt);
++
++                      has_capture_use_ssa_var(has_capture_use, visited_defs, use_visited, result);
++                      return;
++              }
++
++              case GIMPLE_RETURN:
++                      if (search_return_capture_use(as_a_const_greturn(use_stmt)))
++                              goto true_out;
++                      return;
++
++              default:
++                      debug_tree(node);
++                      debug_gimple_stmt(use_stmt);
++                      gcc_unreachable();
++              }
++      }
++      return;
++
++true_out:
++      *has_capture_use = true;
++}
++
++static bool search_capture_ssa_use(gimple_set *visited_defs, tree node)
++{
++      tree_set *use_visited;
++      bool has_capture_use = false;
++
++      use_visited = tree_pointer_set_create();
++      has_capture_use_ssa_var(&has_capture_use, visited_defs, use_visited, node);
++      pointer_set_destroy(use_visited);
++
++      return has_capture_use;
++}
++
++static bool search_capture_use(const_tree vardecl, gimple stmt)
++{
++      unsigned int i;
++      gimple_set *visited_defs = pointer_set_create();
++
++      for (i = 0; i < gimple_num_ops(stmt); i++) {
++              int arg_num;
++              tree op = *(gimple_op_ptr(stmt, i));
++
++              if (op == NULL_TREE)
++                      continue;
++              if (is_gimple_constant(op))
++                      continue;
++
++              if (!compare_ops(vardecl, op))
++                      continue;
++
++              switch (gimple_code(stmt)) {
++              case GIMPLE_COND:
++                      break;
++
++              case GIMPLE_ASM:
++                      gcc_assert(get_init_exit_section(vardecl) == NONE);
++                      goto true_out;
++
++              case GIMPLE_CALL:
++                      if (i == 0)
++                              break;
++                      /* return, fndecl */
++                      gcc_assert(i >= 3);
++                      arg_num = i - 2;
++
++                      if (is_call_arg_nocapture(visited_defs, as_a_const_gcall(stmt), arg_num))
++                              break;
++                      goto true_out;
++
++              case GIMPLE_ASSIGN: {
++                      tree lhs;
++                      const_tree rhs = gimple_assign_rhs1(stmt);
++
++                      if (TREE_CODE(rhs) == MEM_REF)
++                              break;
++
++                      lhs = gimple_assign_lhs(stmt);
++                      if (lhs_is_a_nocapture_parm_decl(lhs))
++                              break;
++
++                      if (!search_capture_ssa_use(visited_defs, lhs))
++                              break;
++                      gcc_assert(get_init_exit_section(vardecl) == NONE);
++                      goto true_out;
++              }
++
++              case GIMPLE_RETURN:
++                      if (search_return_capture_use(as_a_const_greturn(stmt)))
++                              goto true_out;
++                      break;
++              default:
++                      debug_tree(vardecl);
++                      debug_gimple_stmt(stmt);
++                      gcc_unreachable();
++              }
++      }
++
++      pointer_set_destroy(visited_defs);
++      return false;
++
++true_out:
++      pointer_set_destroy(visited_defs);
++      return true;
++
++}
++
++/* Check all initialized local variables for nocapture uses. */
++static bool is_in_capture_init(const_tree vardecl)
++{
++      unsigned int i __unused;
++      tree var;
++
++      if (TREE_CODE(vardecl) == PARM_DECL)
++              return false;
++
++      FOR_EACH_LOCAL_DECL(cfun, i, var) {
++              const_tree type, initial = DECL_INITIAL(var);
++
++              if (DECL_EXTERNAL(var))
++                      continue;
++              if (initial == NULL_TREE)
++                      continue;
++              if (TREE_CODE(initial) != CONSTRUCTOR)
++                      continue;
++
++              type = TREE_TYPE(var);
++              gcc_assert(TREE_CODE(type) == RECORD_TYPE || DECL_P(var));
++              if (check_constructor(initial, vardecl))
++                      return true;
++      }
++      return false;
++}
++
++static bool has_capture_use_local_var(const_tree vardecl)
++{
++      basic_block bb;
++      enum tree_code code = TREE_CODE(vardecl);
++
++      gcc_assert(code == VAR_DECL || code == PARM_DECL);
++
++      if (is_in_capture_init(vardecl))
++              return true;
++
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      if (search_capture_use(vardecl, gsi_stmt(gsi)))
++                              return true;
++              }
++      }
++
++      return false;
++}
++
++/* Search local variables that have only nocapture uses. */
++static void find_local_str(void)
++{
++      unsigned int i __unused;
++      tree var;
++
++      FOR_EACH_LOCAL_DECL(cfun, i, var) {
++              tree str, init_val;
++
++              if (TREE_CODE(TREE_TYPE(var)) != ARRAY_TYPE)
++                      continue;
++
++              init_val = DECL_INITIAL(var);
++              if (init_val == NULL_TREE || init_val == error_mark_node)
++                      continue;
++              if (TREE_CODE(init_val) != STRING_CST)
++                      continue;
++
++              if (has_capture_use_local_var(var))
++                      continue;
++
++              str = get_string_cst(init_val);
++              gcc_assert(str);
++
++              if (set_init_exit_section(var) && verbose)
++                      inform(DECL_SOURCE_LOCATION(var), "initified local var: %s: %s", DECL_NAME_POINTER(current_function_decl), TREE_STRING_POINTER(str));
++      }
++}
++
++static tree create_decl(tree node)
++{
++      tree str, decl, type, name, type_type;
++      location_t loc;
++
++      str = get_string_cst(node);
++      type = TREE_TYPE(str);
++      gcc_assert(TREE_CODE(type) == ARRAY_TYPE);
++
++      type_type = TREE_TYPE(type);
++      gcc_assert(type_type != NULL_TREE && TREE_CODE(type_type) == INTEGER_TYPE);
++
++      name = create_tmp_var_name("initify");
++      loc = DECL_SOURCE_LOCATION(current_function_decl);
++      decl = build_decl(loc, VAR_DECL, name, type);
++
++      DECL_INITIAL(decl) = str;
++      DECL_CONTEXT(decl) = current_function_decl;
++      DECL_ARTIFICIAL(decl) = 1;
++
++      TREE_STATIC(decl) = 1;
++      TREE_READONLY(decl) = 1;
++      TREE_ADDRESSABLE(decl) = 1;
++      TREE_USED(decl) = 1;
++
++      add_referenced_var(decl);
++      add_local_decl(cfun, decl);
++
++      varpool_add_new_variable(decl);
++      varpool_mark_needed_node(varpool_node(decl));
++
++      DECL_CHAIN(decl) = BLOCK_VARS(DECL_INITIAL(current_function_decl));
++      BLOCK_VARS(DECL_INITIAL(current_function_decl)) = decl;
++
++      return build_fold_addr_expr_loc(loc, decl);
++}
++
++static void set_section_call_assign(gimple stmt, tree node, unsigned int num)
++{
++      tree decl;
++
++      decl = create_decl(node);
++
++      switch (gimple_code(stmt)) {
++      case GIMPLE_ASSIGN:
++              gcc_assert(gimple_num_ops(stmt) == 2);
++              gimple_assign_set_rhs1(stmt, decl);
++              break;
++
++      case GIMPLE_CALL:
++              gimple_call_set_arg(stmt, num, decl);
++              break;
++
++      default:
++              debug_gimple_stmt(stmt);
++              error("%s: unknown gimple code", __func__);
++              gcc_unreachable();
++      }
++
++      update_stmt(stmt);
++
++      if (set_init_exit_section(TREE_OPERAND(decl, 0)) && verbose)
++              inform(gimple_location(stmt), "initified function arg: %E: [%E]", current_function_decl, get_string_cst(node));
++}
++
++static tree initify_create_new_var(tree type)
++{
++      tree new_var = create_tmp_var(type, "initify");
++
++      add_referenced_var(new_var);
++      mark_sym_for_renaming(new_var);
++      return new_var;
++}
++
++static void initify_create_new_phi_arg(gimple_set *visited_defs, tree ssa_var, gphi *stmt, unsigned int i)
++{
++      gassign *assign;
++      gimple_stmt_iterator gsi;
++      basic_block arg_bb;
++      tree decl, arg;
++      const_tree str;
++      location_t loc;
++
++      arg = gimple_phi_arg_def(stmt, i);
++
++      if (search_capture_ssa_use(visited_defs, arg))
++              return;
++
++      decl = create_decl(arg);
++
++      assign = gimple_build_assign(ssa_var, decl);
++
++      arg_bb = gimple_phi_arg_edge(stmt, i)->src;
++      gcc_assert(arg_bb->index != 0);
++
++      gsi = gsi_after_labels(arg_bb);
++      gsi_insert_before(&gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++
++      if (!set_init_exit_section(TREE_OPERAND(decl, 0)) || !verbose)
++              return;
++
++      loc = gimple_location(stmt);
++      str = get_string_cst(arg);
++      inform(loc, "initified local var, phi arg: %E: [%E]", current_function_decl, str);
++}
++
++static void set_section_phi(bool *has_str_cst, gimple_set *visited, gphi *stmt)
++{
++      tree result, ssa_var;
++      unsigned int i;
++
++      result = gimple_phi_result(stmt);
++      ssa_var = initify_create_new_var(TREE_TYPE(result));
++
++      for (i = 0; i < gimple_phi_num_args(stmt); i++) {
++              tree arg = gimple_phi_arg_def(stmt, i);
++
++              if (get_string_cst(arg) == NULL_TREE)
++                      search_constant_strings(has_str_cst, visited, arg);
++              else
++                      initify_create_new_phi_arg(visited, ssa_var, stmt, i);
++      }
++}
++
++static void search_constant_strings(bool *has_str_cst, gimple_set *visited, tree node)
++{
++      gimple def_stmt;
++      const_tree parm_decl;
++
++      if (!*has_str_cst)
++              return;
++
++      if (TREE_CODE(node) != SSA_NAME)
++              goto false_out;
++
++      parm_decl = SSA_NAME_VAR(node);
++      if (parm_decl != NULL_TREE && TREE_CODE(parm_decl) == PARM_DECL)
++              goto false_out;
++
++      def_stmt = initify_get_def_stmt(node);
++      if (pointer_set_insert(visited, def_stmt))
++              return;
++
++      switch (gimple_code(def_stmt)) {
++      case GIMPLE_NOP:
++      case GIMPLE_CALL:
++      case GIMPLE_ASM:
++      case GIMPLE_RETURN:
++              goto false_out;
++
++      case GIMPLE_PHI:
++              set_section_phi(has_str_cst, visited, as_a_gphi(def_stmt));
++              return;
++
++      case GIMPLE_ASSIGN: {
++              tree rhs1, str;
++
++              if (gimple_num_ops(def_stmt) != 2)
++                      goto false_out;
++
++              rhs1 = gimple_assign_rhs1(def_stmt);
++              search_constant_strings(has_str_cst, visited, rhs1);
++              if (!*has_str_cst)
++                      return;
++
++              if (search_capture_ssa_use(visited, node))
++                      goto false_out;
++
++              str = get_string_cst(rhs1);
++              gcc_assert(str != NULL_TREE);
++              set_section_call_assign(def_stmt, rhs1, 0);
++              return;
++      }
++
++      default:
++              debug_gimple_stmt(def_stmt);
++              error("%s: unknown gimple code", __func__);
++              gcc_unreachable();
++      }
++      gcc_unreachable();
++
++false_out:
++      *has_str_cst = false;
++}
++
++/* Search constant strings assigned to variables. */
++static void search_var_param(gcall *stmt)
++{
++      int num;
++      gimple_set *visited = pointer_set_create();
++
++      pointer_set_insert(visited, stmt);
++
++      for (num = 0; num < (int)gimple_call_num_args(stmt); num++) {
++              const_tree type, fndecl;
++              bool has_str_cst = true;
++              tree str, arg = gimple_call_arg(stmt, num);
++
++              str = get_string_cst(arg);
++              if (str != NULL_TREE)
++                      continue;
++
++              if (TREE_CODE(TREE_TYPE(arg)) != POINTER_TYPE)
++                      continue;
++              type = TREE_TYPE(TREE_TYPE(arg));
++              if (!TYPE_STRING_FLAG(type))
++                      continue;
++
++              fndecl = gimple_call_fndecl(stmt);
++              if (is_negative_nocapture_arg(fndecl, -(num + 1)) && is_return_value_captured(visited, stmt))
++                      continue;
++
++              if (is_fndecl_nocapture_arg(fndecl, num + 1) != NONE_ATTRIBUTE)
++                      search_constant_strings(&has_str_cst, visited, arg);
++      }
++
++      pointer_set_destroy(visited);
++}
++
++/* Search constant strings passed as arguments. */
++static void search_str_param(gcall *stmt)
++{
++      int num;
++      gimple_set *visited = pointer_set_create();
++
++      pointer_set_insert(visited, stmt);
++
++      for (num = 0; num < (int)gimple_call_num_args(stmt); num++) {
++              const_tree fndecl;
++              tree str, arg = gimple_call_arg(stmt, num);
++
++              str = get_string_cst(arg);
++              if (str == NULL_TREE)
++                      continue;
++
++              fndecl = gimple_call_fndecl(stmt);
++              if (is_negative_nocapture_arg(fndecl, -(num + 1)) && is_return_value_captured(visited, stmt))
++                      continue;
++
++              if (is_fndecl_nocapture_arg(fndecl, num + 1) != NONE_ATTRIBUTE)
++                      set_section_call_assign(stmt, arg, num);
++      }
++
++      pointer_set_destroy(visited);
++}
++
++/* Search constant strings in arguments of nocapture functions. */
++static void search_const_strs(void)
++{
++      basic_block bb;
++
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      gcall *call_stmt;
++                      gimple stmt = gsi_stmt(gsi);
++
++                      if (!is_gimple_call(stmt))
++                              continue;
++
++                      call_stmt = as_a_gcall(stmt);
++                      if (!has_nocapture_param(gimple_call_fndecl(call_stmt)))
++                              continue;
++                      search_str_param(call_stmt);
++                      search_var_param(call_stmt);
++              }
++      }
++}
++
++/*
++ * Verify the data flows of the uses of function arguments marked by the nocapture attribute.
++ * The printf attribute is ignored temporarily.
++ */
++static void verify_nocapture_functions(void)
++{
++      int i, len;
++      tree arg_list;
++
++      if (disable_verify_nocapture_functions)
++              return;
++
++      if (is_syscall(current_function_decl))
++              return;
++
++      if (!has_nocapture_param(current_function_decl))
++              return;
++
++      arg_list = DECL_ARGUMENTS(current_function_decl);
++      len = list_length(arg_list);
++      for (i = 0; i < len; i++) {
++              const_tree arg;
++
++              if (is_fndecl_nocapture_arg(current_function_decl, i + 1) != NOCAPTURE)
++                      continue;
++
++              arg = chain_index(i, arg_list);
++              gcc_assert(arg != NULL_TREE);
++
++              if (has_capture_use_local_var(arg)) {
++                      error("%qE captures its %u (%qD) parameter, please remove it from the nocapture attribute.", current_function_decl, i + 1, arg);
++                      gcc_unreachable();
++              }
++      }
++}
++
++/* Find and move constant strings to the proper init or exit read-only data section. */
++static unsigned int initify_function_transform(struct cgraph_node *node __unused)
++{
++      verify_nocapture_functions();
++
++      if (get_init_exit_section(current_function_decl) == NONE)
++              return 0;
++
++      find_local_str();
++      search_const_strs();
++
++      return TODO_dump_func | TODO_verify_ssa | TODO_verify_stmts
++              | TODO_remove_unused_locals | TODO_cleanup_cfg
++              | TODO_ggc_collect | TODO_verify_flow | TODO_update_ssa;
++}
++
++static void __unused debug_print_section_type(struct cgraph_node *node)
++{
++      enum section_type section;
++
++      section = (enum section_type)(unsigned long)NODE_SYMBOL(node)->aux;
++      switch (section) {
++      case INIT:
++              fprintf(stderr, "init\n");
++              break;
++
++      case EXIT:
++              fprintf(stderr, "exit\n");
++              break;
++
++      case BOTH:
++              fprintf(stderr, "init and exit\n");
++              break;
++
++      case NONE:
++              fprintf(stderr, "none\n");
++              break;
++      }
++}
++
++/*
++ * If the function is called by only __init/__exit functions then it can become
++ * an __init/__exit function as well.
++ */
++static bool should_init_exit(struct cgraph_node *callee)
++{
++      struct cgraph_edge *e;
++      bool only_init_callers;
++      const_tree callee_decl = NODE_DECL(callee);
++
++      if (NODE_SYMBOL(callee)->aux != (void *)NONE)
++              return false;
++      if (get_init_exit_section(callee_decl) != NONE)
++              return false;
++
++      /* If gcc isn't in LTO mode then we can handle only static functions. */
++      if (!in_lto_p && TREE_PUBLIC(callee_decl))
++              return false;
++
++      if (NODE_SYMBOL(callee)->address_taken)
++              return false;
++
++      e = callee->callers;
++      if (!e)
++              return false;
++
++      only_init_callers = true;
++      for (; e; e = e->next_caller) {
++              enum section_type caller_section;
++              struct cgraph_node *caller = e->caller;
++
++              caller_section = get_init_exit_section(NODE_DECL(caller));
++              if (caller_section == NONE && NODE_SYMBOL(caller)->aux == (void *)NONE)
++                      only_init_callers = false;
++      }
++
++      return only_init_callers;
++}
++
++static bool inherit_section(struct cgraph_node *callee, struct cgraph_node *caller, enum section_type curfn_section)
++{
++      if (curfn_section == NONE)
++              curfn_section = (enum section_type)(unsigned long)NODE_SYMBOL(caller)->aux;
++
++      if (curfn_section == INIT && NODE_SYMBOL(callee)->aux == (void *)EXIT)
++              goto both_section;
++
++      if (curfn_section == EXIT && NODE_SYMBOL(callee)->aux == (void *)INIT)
++              goto both_section;
++
++      if (!should_init_exit(callee))
++              return false;
++
++      gcc_assert(NODE_SYMBOL(callee)->aux == (void *)NONE);
++      NODE_SYMBOL(callee)->aux = (void *)curfn_section;
++      return true;
++
++both_section:
++      NODE_SYMBOL(callee)->aux = (void *)BOTH;
++      return true;
++}
++
++/*
++ * Try to propagate __init/__exit to callees in __init/__exit functions.
++ * If a function is called by __init and __exit functions as well then it can be
++ * an __exit function at most.
++ */
++static bool search_init_exit_callers(void)
++{
++      struct cgraph_node *node;
++      bool change = false;
++
++      FOR_EACH_FUNCTION(node) {
++              struct cgraph_edge *e;
++              enum section_type section;
++              const_tree cur_fndecl = NODE_DECL(node);
++
++              if (DECL_BUILT_IN(cur_fndecl))
++                      continue;
++
++              section = get_init_exit_section(cur_fndecl);
++              if (section == NONE && NODE_SYMBOL(node)->aux == (void *)NONE)
++                      continue;
++
++              for (e = node->callees; e; e = e->next_callee) {
++                      if (e->callee->global.inlined_to)
++                              continue;
++
++                      if (inherit_section(e->callee, node, section))
++                              change = true;
++              }
++      }
++
++      return change;
++}
++
++/* We can't move functions to the init/exit sections from certain sections. */
++static bool can_move_to_init_exit(const_tree fndecl)
++{
++      const char *section_name = get_decl_section_name(fndecl);
++
++      if (!section_name)
++              return true;
++
++      if (!strcmp(section_name, ".ref.text\000"))
++              return true;
++
++      if (!strcmp(section_name, ".meminit.text\000"))
++              return false;
++
++      inform(DECL_SOURCE_LOCATION(fndecl), "Section of %qE: %s\n", fndecl, section_name);
++      gcc_unreachable();
++}
++
++static void move_function_to_init_exit_text(struct cgraph_node *node)
++{
++      const char *section_name;
++      tree id, attr;
++      tree section_str, attr_args, fndecl = NODE_DECL(node);
++
++      /*
++       * If the function is a candidate for both __init and __exit and enable_init_to_exit_moves is false
++       * then these functions arent't moved to the exit section.
++       */
++      if (NODE_SYMBOL(node)->aux == (void *)BOTH) {
++              if (enable_init_to_exit_moves)
++                      NODE_SYMBOL(node)->aux = (void *)EXIT;
++              else
++                      return;
++      }
++
++      if (NODE_SYMBOL(node)->aux == (void *)NONE)
++              return;
++
++      if (!can_move_to_init_exit(fndecl))
++              return;
++
++      if (verbose) {
++              const char *attr_name;
++              location_t loc = DECL_SOURCE_LOCATION(fndecl);
++
++              attr_name = NODE_SYMBOL(node)->aux == (void *)INIT ? "__init" : "__exit";
++
++              if (in_lto_p && TREE_PUBLIC(fndecl))
++                      inform(loc, "%s attribute is missing from the %qE function (public)", attr_name, fndecl);
++
++              if (!in_lto_p && !TREE_PUBLIC(fndecl))
++                      inform(loc, "%s attribute is missing from the %qE function (static)", attr_name, fndecl);
++      }
++
++      if (in_lto_p)
++              return;
++
++      /* Add the init/exit section attribute to the function declaration. */
++      DECL_ATTRIBUTES(fndecl) = copy_list(DECL_ATTRIBUTES(fndecl));
++
++      section_name = NODE_SYMBOL(node)->aux == (void *)INIT ? ".init.text" : ".exit.text";
++      section_str = build_string(strlen(section_name) + 1, section_name);
++      TREE_READONLY(section_str) = 1;
++      TREE_STATIC(section_str) = 1;
++      attr_args = build_tree_list(NULL_TREE, section_str);
++
++      id = get_identifier("__section__");
++      attr = DECL_ATTRIBUTES(fndecl);
++      DECL_ATTRIBUTES(fndecl) = tree_cons(id, attr_args, attr);
++
++#if BUILDING_GCC_VERSION < 5000
++      DECL_SECTION_NAME(fndecl) = section_str;
++#endif
++      set_decl_section_name(fndecl, section_name);
++}
++
++/* Find all functions that can become __init/__exit functions */
++static unsigned int initify_execute(void)
++{
++      struct cgraph_node *node;
++
++      if (!search_init_exit_functions)
++              return 0;
++
++      if (flag_lto && !in_lto_p)
++              return 0;
++
++      FOR_EACH_FUNCTION(node)
++              NODE_SYMBOL(node)->aux = (void *)NONE;
++
++      while (search_init_exit_callers()) {};
++
++      FOR_EACH_FUNCTION(node) {
++              move_function_to_init_exit_text(node);
++
++              NODE_SYMBOL(node)->aux = NULL;
++      }
++
++      return 0;
++}
++
++#define PASS_NAME initify
++#define NO_WRITE_SUMMARY
++#define NO_GENERATE_SUMMARY
++#define NO_READ_SUMMARY
++#define NO_READ_OPTIMIZATION_SUMMARY
++#define NO_WRITE_OPTIMIZATION_SUMMARY
++#define NO_STMT_FIXUP
++#define NO_VARIABLE_TRANSFORM
++#define NO_GATE
++
++#include "gcc-generate-ipa-pass.h"
++
++static unsigned int (*old_section_type_flags)(tree decl, const char *name, int reloc);
++
++static unsigned int initify_section_type_flags(tree decl, const char *name, int reloc)
++{
++      if (!strcmp(name, ".init.rodata.str") || !strcmp(name, ".exit.rodata.str")) {
++              gcc_assert(TREE_CODE(decl) == VAR_DECL);
++              gcc_assert(DECL_INITIAL(decl));
++              gcc_assert(TREE_CODE(DECL_INITIAL(decl)) == STRING_CST);
++
++              return 1 | SECTION_MERGE | SECTION_STRINGS;
++      }
++
++      return old_section_type_flags(decl, name, reloc);
++}
++
++static void initify_start_unit(void __unused *gcc_data, void __unused *user_data)
++{
++      old_section_type_flags = targetm.section_type_flags;
++      targetm.section_type_flags = initify_section_type_flags;
++}
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      struct register_pass_info initify_info;
++      int i;
++      const int argc = plugin_info->argc;
++      bool enabled = true;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      const char * const plugin_name = plugin_info->base_name;
++
++      initify_info.pass                               = make_initify_pass();
++      initify_info.reference_pass_name                = "inline";
++      initify_info.ref_pass_instance_number           = 1;
++      initify_info.pos_op                             = PASS_POS_INSERT_AFTER;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      for (i = 0; i < argc; ++i) {
++              if (!(strcmp(argv[i].key, "disable"))) {
++                      enabled = false;
++                      continue;
++              }
++              if (!strcmp(argv[i].key, "verbose")) {
++                      verbose = true;
++                      continue;
++              }
++              if (!strcmp(argv[i].key, "print_missing_attr")) {
++                      print_missing_attr = true;
++                      continue;
++              }
++              if (!strcmp(argv[i].key, "search_init_exit_functions")) {
++                      search_init_exit_functions = true;
++                      continue;
++              }
++              if (!strcmp(argv[i].key, "enable_init_to_exit_moves")) {
++                      enable_init_to_exit_moves = true;
++                      continue;
++              }
++
++              if (!strcmp(argv[i].key, "disable_verify_nocapture_functions")) {
++                      disable_verify_nocapture_functions = true;
++                      continue;
++              }
++
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &initify_plugin_info);
++      if (enabled) {
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &initify_info);
++              register_callback(plugin_name, PLUGIN_START_UNIT, initify_start_unit, NULL);
++      }
++      register_callback(plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL);
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/kallocstat_plugin.c b/scripts/gcc-plugins/kallocstat_plugin.c
+new file mode 100644
+index 0000000..3bd3089
+--- /dev/null
++++ b/scripts/gcc-plugins/kallocstat_plugin.c
+@@ -0,0 +1,135 @@
++/*
++ * Copyright 2011-2016 by the PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Note: the choice of the license means that the compilation process is
++ *       NOT 'eligible' as defined by gcc's library exception to the GPL v3,
++ *       but for the kernel it doesn't matter since it doesn't link against
++ *       any of the gcc libraries
++ *
++ * gcc plugin to find the distribution of k*alloc sizes
++ *
++ * TODO:
++ *
++ * BUGS:
++ * - none known
++ */
++
++#include "gcc-common.h"
++
++__visible int plugin_is_GPL_compatible;
++
++static struct plugin_info kallocstat_plugin_info = {
++      .version        = "201602181345",
++      .help           = NULL
++};
++
++static const char * const kalloc_functions[] = {
++      "__kmalloc",
++      "kmalloc",
++      "kmalloc_large",
++      "kmalloc_node",
++      "kmalloc_order",
++      "kmalloc_order_trace",
++      "kmalloc_slab",
++      "kzalloc",
++      "kzalloc_node",
++};
++
++static bool is_kalloc(const char *fnname)
++{
++      size_t i;
++
++      for (i = 0; i < ARRAY_SIZE(kalloc_functions); i++)
++              if (!strcmp(fnname, kalloc_functions[i]))
++                      return true;
++      return false;
++}
++
++static unsigned int kallocstat_execute(void)
++{
++      basic_block bb;
++
++      // 1. loop through BBs and GIMPLE statements
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      // gimple match: 
++                      tree fndecl, size;
++                      gimple stmt;
++                      const char *fnname;
++
++                      // is it a call
++                      stmt = gsi_stmt(gsi);
++                      if (!is_gimple_call(stmt))
++                              continue;
++                      fndecl = gimple_call_fndecl(stmt);
++                      if (fndecl == NULL_TREE)
++                              continue;
++                      if (TREE_CODE(fndecl) != FUNCTION_DECL)
++                              continue;
++
++                      // is it a call to k*alloc
++                      fnname = DECL_NAME_POINTER(fndecl);
++                      if (!is_kalloc(fnname))
++                              continue;
++
++                      // is the size arg const or the result of a simple const assignment
++                      size = gimple_call_arg(stmt, 0);
++                      while (true) {
++                              expanded_location xloc;
++                              size_t size_val;
++
++                              if (TREE_CONSTANT(size)) {
++                                      xloc = expand_location(gimple_location(stmt));
++                                      if (!xloc.file)
++                                              xloc = expand_location(DECL_SOURCE_LOCATION(current_function_decl));
++                                      size_val = TREE_INT_CST_LOW(size);
++                                      fprintf(stderr, "kallocsize: %8zu %8zx %s %s:%u\n", size_val, size_val, fnname, xloc.file, xloc.line);
++                                      break;
++                              }
++
++                              if (TREE_CODE(size) != SSA_NAME)
++                                      break;
++                              stmt = SSA_NAME_DEF_STMT(size);
++//debug_gimple_stmt(stmt);
++//debug_tree(size);
++                              if (!stmt || !is_gimple_assign(stmt))
++                                      break;
++                              if (gimple_num_ops(stmt) != 2)
++                                      break;
++                              size = gimple_assign_rhs1(stmt);
++                      }
++//print_gimple_stmt(stderr, call_stmt, 0, TDF_LINENO);
++//debug_tree(gimple_call_fn(call_stmt));
++//print_node(stderr, "pax", fndecl, 4);
++              }
++      }
++
++      return 0;
++}
++
++#define PASS_NAME kallocstat
++#define NO_GATE
++#include "gcc-generate-gimple-pass.h"
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      const char * const plugin_name = plugin_info->base_name;
++      struct register_pass_info kallocstat_pass_info;
++
++      kallocstat_pass_info.pass                       = make_kallocstat_pass();
++      kallocstat_pass_info.reference_pass_name        = "ssa";
++      kallocstat_pass_info.ref_pass_instance_number   = 1;
++      kallocstat_pass_info.pos_op                     = PASS_POS_INSERT_AFTER;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &kallocstat_plugin_info);
++      register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &kallocstat_pass_info);
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/kernexec_plugin.c b/scripts/gcc-plugins/kernexec_plugin.c
+new file mode 100644
+index 0000000..a213367
+--- /dev/null
++++ b/scripts/gcc-plugins/kernexec_plugin.c
+@@ -0,0 +1,407 @@
++/*
++ * Copyright 2011-2016 by the PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Note: the choice of the license means that the compilation process is
++ *       NOT 'eligible' as defined by gcc's library exception to the GPL v3,
++ *       but for the kernel it doesn't matter since it doesn't link against
++ *       any of the gcc libraries
++ *
++ * gcc plugin to make KERNEXEC/amd64 almost as good as it is on i386
++ *
++ * TODO:
++ *
++ * BUGS:
++ * - none known
++ */
++
++#include "gcc-common.h"
++
++__visible int plugin_is_GPL_compatible;
++
++static struct plugin_info kernexec_plugin_info = {
++      .version        = "201607271510",
++      .help           = "method=[bts|or]\tinstrumentation method\n"
++};
++
++static void (*kernexec_instrument_fptr)(gimple_stmt_iterator *);
++static void (*kernexec_instrument_retaddr)(rtx);
++
++/*
++ * add special KERNEXEC instrumentation: reload %r12 after it has been clobbered
++ */
++static void kernexec_reload_fptr_mask(gimple_stmt_iterator *gsi)
++{
++      gimple stmt;
++      gasm *asm_movabs_stmt;
++
++      // build asm volatile("movabs $0x8000000000000000, %%r12\n\t" : : : );
++      stmt = gimple_build_asm_vec("movabs $0x8000000000000000, %%r12\n\t", NULL, NULL, NULL, NULL);
++      asm_movabs_stmt = as_a_gasm(stmt);
++      gimple_asm_set_volatile(asm_movabs_stmt, true);
++      gsi_insert_after(gsi, asm_movabs_stmt, GSI_CONTINUE_LINKING);
++      update_stmt(asm_movabs_stmt);
++}
++
++/*
++ * find all asm() stmts that clobber r12 and add a reload of r12
++ */
++static unsigned int kernexec_reload_execute(void)
++{
++      basic_block bb;
++
++      // 1. loop through BBs and GIMPLE statements
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      // gimple match: __asm__ ("" :  :  : "r12");
++                      gimple stmt;
++                      gasm *asm_stmt;
++                      size_t nclobbers;
++
++                      // is it an asm ...
++                      stmt = gsi_stmt(gsi);
++                      if (gimple_code(stmt) != GIMPLE_ASM)
++                              continue;
++
++                      asm_stmt = as_a_gasm(stmt);
++
++                      // ... clobbering r12
++                      nclobbers = gimple_asm_nclobbers(asm_stmt);
++                      while (nclobbers--) {
++                              tree op = gimple_asm_clobber_op(asm_stmt, nclobbers);
++                              if (strcmp(TREE_STRING_POINTER(TREE_VALUE(op)), "r12"))
++                                      continue;
++                              kernexec_reload_fptr_mask(&gsi);
++//print_gimple_stmt(stderr, asm_stmt, 0, TDF_LINENO);
++                              break;
++                      }
++              }
++      }
++
++      return 0;
++}
++
++/*
++ * add special KERNEXEC instrumentation: force MSB of fptr to 1, which will produce
++ * a non-canonical address from a userland ptr and will just trigger a GPF on dereference
++ */
++static void kernexec_instrument_fptr_bts(gimple_stmt_iterator *gsi)
++{
++      gimple assign_intptr, assign_new_fptr;
++      gcall *call_stmt;
++      tree intptr, orptr, old_fptr, new_fptr, kernexec_mask;
++
++      call_stmt = as_a_gcall(gsi_stmt(*gsi));
++      old_fptr = gimple_call_fn(call_stmt);
++
++      // create temporary unsigned long variable used for bitops and cast fptr to it
++      intptr = create_tmp_var(long_unsigned_type_node, "kernexec_bts");
++      add_referenced_var(intptr);
++      intptr = make_ssa_name(intptr, NULL);
++      assign_intptr = gimple_build_assign(intptr, fold_convert(long_unsigned_type_node, old_fptr));
++      SSA_NAME_DEF_STMT(intptr) = assign_intptr;
++      gsi_insert_before(gsi, assign_intptr, GSI_SAME_STMT);
++      update_stmt(assign_intptr);
++
++      // apply logical or to temporary unsigned long and bitmask
++      kernexec_mask = build_int_cstu(long_long_unsigned_type_node, 0x8000000000000000LL);
++//    kernexec_mask = build_int_cstu(long_long_unsigned_type_node, 0xffffffff80000000LL);
++      orptr = fold_build2(BIT_IOR_EXPR, long_long_unsigned_type_node, intptr, kernexec_mask);
++      intptr = make_ssa_name(SSA_NAME_VAR(intptr), NULL);
++      assign_intptr = gimple_build_assign(intptr, orptr);
++      SSA_NAME_DEF_STMT(intptr) = assign_intptr;
++      gsi_insert_before(gsi, assign_intptr, GSI_SAME_STMT);
++      update_stmt(assign_intptr);
++
++      // cast temporary unsigned long back to a temporary fptr variable
++      new_fptr = create_tmp_var(TREE_TYPE(old_fptr), "kernexec_fptr");
++      add_referenced_var(new_fptr);
++      new_fptr = make_ssa_name(new_fptr, NULL);
++      assign_new_fptr = gimple_build_assign(new_fptr, fold_convert(TREE_TYPE(old_fptr), intptr));
++      SSA_NAME_DEF_STMT(new_fptr) = assign_new_fptr;
++      gsi_insert_before(gsi, assign_new_fptr, GSI_SAME_STMT);
++      update_stmt(assign_new_fptr);
++
++      // replace call stmt fn with the new fptr
++      gimple_call_set_fn(call_stmt, new_fptr);
++      update_stmt(call_stmt);
++}
++
++static void kernexec_instrument_fptr_or(gimple_stmt_iterator *gsi)
++{
++      gimple stmt;
++      gasm *asm_or_stmt;
++      gcall *call_stmt;
++      tree old_fptr, new_fptr, input, output;
++#if BUILDING_GCC_VERSION <= 4007
++      VEC(tree, gc) *inputs = NULL;
++      VEC(tree, gc) *outputs = NULL;
++#else
++      vec<tree, va_gc> *inputs = NULL;
++      vec<tree, va_gc> *outputs = NULL;
++#endif
++
++      call_stmt = as_a_gcall(gsi_stmt(*gsi));
++      old_fptr = gimple_call_fn(call_stmt);
++
++      // create temporary fptr variable
++      new_fptr = create_tmp_var(TREE_TYPE(old_fptr), "kernexec_or");
++      add_referenced_var(new_fptr);
++      new_fptr = make_ssa_name(new_fptr, NULL);
++
++      // build asm volatile("orq %%r12, %0\n\t" : "=r"(new_fptr) : "0"(old_fptr));
++      input = build_tree_list(NULL_TREE, build_string(2, "0"));
++      input = chainon(NULL_TREE, build_tree_list(input, old_fptr));
++      output = build_tree_list(NULL_TREE, build_string(3, "=r"));
++      output = chainon(NULL_TREE, build_tree_list(output, new_fptr));
++#if BUILDING_GCC_VERSION <= 4007
++      VEC_safe_push(tree, gc, inputs, input);
++      VEC_safe_push(tree, gc, outputs, output);
++#else
++      vec_safe_push(inputs, input);
++      vec_safe_push(outputs, output);
++#endif
++      stmt = gimple_build_asm_vec("orq %%r12, %0\n\t", inputs, outputs, NULL, NULL);
++      asm_or_stmt = as_a_gasm(stmt);
++      SSA_NAME_DEF_STMT(new_fptr) = asm_or_stmt;
++      gimple_asm_set_volatile(asm_or_stmt, true);
++      gsi_insert_before(gsi, asm_or_stmt, GSI_SAME_STMT);
++      update_stmt(asm_or_stmt);
++
++      // replace call stmt fn with the new fptr
++      gimple_call_set_fn(call_stmt, new_fptr);
++      update_stmt(call_stmt);
++}
++
++/*
++ * find all C level function pointer dereferences and forcibly set the highest bit of the pointer
++ */
++static unsigned int kernexec_fptr_execute(void)
++{
++      basic_block bb;
++
++      // 1. loop through BBs and GIMPLE statements
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      // gimple match: h_1 = get_fptr (); D.2709_3 = h_1 (x_2(D));
++                      tree fn;
++                      gimple stmt;
++                      gcall *call_stmt;
++
++                      // is it a call ...
++                      stmt = gsi_stmt(gsi);
++                      if (!is_gimple_call(stmt))
++                              continue;
++                      call_stmt = as_a_gcall(stmt);
++                      fn = gimple_call_fn(call_stmt);
++                      if (!fn)
++                              continue;
++                      if (TREE_CODE(fn) == ADDR_EXPR)
++                              continue;
++                      if (TREE_CODE(fn) != SSA_NAME)
++                              gcc_unreachable();
++
++                      // ... through a function pointer
++                      if (SSA_NAME_VAR(fn) != NULL_TREE) {
++                              fn = SSA_NAME_VAR(fn);
++                              if (TREE_CODE(fn) != VAR_DECL && TREE_CODE(fn) != PARM_DECL) {
++                                      debug_tree(fn);
++                                      gcc_unreachable();
++                              }
++                      }
++                      fn = TREE_TYPE(fn);
++                      if (TREE_CODE(fn) != POINTER_TYPE)
++                              continue;
++                      fn = TREE_TYPE(fn);
++                      if (TREE_CODE(fn) != FUNCTION_TYPE)
++                              continue;
++
++                      kernexec_instrument_fptr(&gsi);
++
++//debug_tree(gimple_call_fn(call_stmt));
++//print_gimple_stmt(stderr, call_stmt, 0, TDF_LINENO);
++              }
++      }
++
++      return 0;
++}
++
++// add special KERNEXEC instrumentation: btsq $63,(%rsp) just before retn
++static void kernexec_instrument_retaddr_bts(rtx insn)
++{
++      rtx btsq;
++      rtvec argvec, constraintvec, labelvec;
++
++      // create asm volatile("btsq $63,(%%rsp)":::)
++      argvec = rtvec_alloc(0);
++      constraintvec = rtvec_alloc(0);
++      labelvec = rtvec_alloc(0);
++      btsq = gen_rtx_ASM_OPERANDS(VOIDmode, "btsq $63,(%%rsp)", empty_string, 0, argvec, constraintvec, labelvec, RTL_LOCATION(insn));
++      MEM_VOLATILE_P(btsq) = 1;
++//    RTX_FRAME_RELATED_P(btsq) = 1; // not for ASM_OPERANDS
++      emit_insn_before(btsq, insn);
++}
++
++// add special KERNEXEC instrumentation: orq %r12,(%rsp) just before retn
++static void kernexec_instrument_retaddr_or(rtx insn)
++{
++      rtx orq;
++      rtvec argvec, constraintvec, labelvec;
++
++      // create asm volatile("orq %%r12,(%%rsp)":::)
++      argvec = rtvec_alloc(0);
++      constraintvec = rtvec_alloc(0);
++      labelvec = rtvec_alloc(0);
++      orq = gen_rtx_ASM_OPERANDS(VOIDmode, "orq %%r12,(%%rsp)", empty_string, 0, argvec, constraintvec, labelvec, RTL_LOCATION(insn));
++      MEM_VOLATILE_P(orq) = 1;
++//    RTX_FRAME_RELATED_P(orq) = 1; // not for ASM_OPERANDS
++      emit_insn_before(orq, insn);
++}
++
++/*
++ * find all asm level function returns and forcibly set the highest bit of the return address
++ */
++static unsigned int kernexec_retaddr_execute(void)
++{
++      rtx_insn *insn;
++
++//    if (stack_realign_drap)
++//            inform(DECL_SOURCE_LOCATION(current_function_decl), "drap detected in %s\n", IDENTIFIER_POINTER(DECL_NAME(current_function_decl)));
++
++      // 1. find function returns
++      for (insn = get_insns(); insn; insn = NEXT_INSN(insn)) {
++              // rtl match: (jump_insn 41 40 42 2 (return) fptr.c:42 634 {return_internal} (nil))
++              //            (jump_insn 12 9 11 2 (parallel [ (return) (unspec [ (0) ] UNSPEC_REP) ]) fptr.c:46 635 {return_internal_long} (nil))
++              //            (jump_insn 97 96 98 6 (simple_return) fptr.c:50 -1 (nil) -> simple_return)
++              rtx body;
++
++              // is it a retn
++              if (!JUMP_P(insn))
++                      continue;
++              body = PATTERN(insn);
++              if (GET_CODE(body) == PARALLEL)
++                      body = XVECEXP(body, 0, 0);
++              if (!ANY_RETURN_P(body))
++                      continue;
++              kernexec_instrument_retaddr(insn);
++      }
++
++//    print_simple_rtl(stderr, get_insns());
++//    print_rtl(stderr, get_insns());
++
++      return 0;
++}
++
++static bool kernexec_cmodel_check(void)
++{
++      tree section;
++
++      if (ix86_cmodel != CM_KERNEL)
++              return false;
++
++      section = lookup_attribute("section", DECL_ATTRIBUTES(current_function_decl));
++      if (!section || !TREE_VALUE(section))
++              return true;
++
++      section = TREE_VALUE(TREE_VALUE(section));
++      if (strncmp(TREE_STRING_POINTER(section), ".vsyscall_", 10))
++              return true;
++
++      return false;
++}
++
++static bool kernexec_reload_gate(void)
++{
++      return kernexec_cmodel_check();
++}
++
++#define PASS_NAME kernexec_reload
++#define TODO_FLAGS_FINISH TODO_verify_ssa | TODO_verify_stmts | TODO_dump_func | TODO_remove_unused_locals | TODO_update_ssa_no_phi
++#include "gcc-generate-gimple-pass.h"
++
++static bool kernexec_fptr_gate(void)
++{
++      return kernexec_cmodel_check();
++}
++
++#define PASS_NAME kernexec_fptr
++#define TODO_FLAGS_FINISH TODO_verify_ssa | TODO_verify_stmts | TODO_dump_func | TODO_remove_unused_locals | TODO_update_ssa_no_phi
++#include "gcc-generate-gimple-pass.h"
++
++static bool kernexec_retaddr_gate(void)
++{
++      return kernexec_cmodel_check();
++}
++
++#define PASS_NAME kernexec_retaddr
++#define TODO_FLAGS_FINISH TODO_dump_func | TODO_ggc_collect
++#include "gcc-generate-rtl-pass.h"
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      int i;
++      struct register_pass_info kernexec_reload_pass_info;
++      struct register_pass_info kernexec_fptr_pass_info;
++      struct register_pass_info kernexec_retaddr_pass_info;
++
++      kernexec_reload_pass_info.pass                          = make_kernexec_reload_pass();
++      kernexec_reload_pass_info.reference_pass_name           = "early_optimizations";
++      kernexec_reload_pass_info.ref_pass_instance_number      = 1;
++      kernexec_reload_pass_info.pos_op                        = PASS_POS_INSERT_BEFORE;
++
++      kernexec_fptr_pass_info.pass                            = make_kernexec_fptr_pass();
++      kernexec_fptr_pass_info.reference_pass_name             = "early_optimizations";
++      kernexec_fptr_pass_info.ref_pass_instance_number        = 1;
++      kernexec_fptr_pass_info.pos_op                          = PASS_POS_INSERT_BEFORE;
++
++      kernexec_retaddr_pass_info.pass                         = make_kernexec_retaddr_pass();
++      kernexec_retaddr_pass_info.reference_pass_name          = "pro_and_epilogue";
++      kernexec_retaddr_pass_info.ref_pass_instance_number     = 1;
++      kernexec_retaddr_pass_info.pos_op                       = PASS_POS_INSERT_AFTER;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &kernexec_plugin_info);
++
++      if (TARGET_64BIT == 0)
++              return 0;
++
++      for (i = 0; i < argc; ++i) {
++              if (!strcmp(argv[i].key, "method")) {
++                      if (!argv[i].value) {
++                              error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++                              continue;
++                      }
++                      if (!strcmp(argv[i].value, "bts") || !strcmp(argv[i].value, "\"bts\"")) {
++                              kernexec_instrument_fptr = kernexec_instrument_fptr_bts;
++                              kernexec_instrument_retaddr = kernexec_instrument_retaddr_bts;
++                      } else if (!strcmp(argv[i].value, "or") || !strcmp(argv[i].value, "\"or\"")) {
++                              kernexec_instrument_fptr = kernexec_instrument_fptr_or;
++                              kernexec_instrument_retaddr = kernexec_instrument_retaddr_or;
++                              fix_register("r12", 1, 1);
++                      } else
++                              error(G_("invalid option argument '-fplugin-arg-%s-%s=%s'"), plugin_name, argv[i].key, argv[i].value);
++                      continue;
++              }
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++      if (!kernexec_instrument_fptr || !kernexec_instrument_retaddr)
++              error(G_("no instrumentation method was selected via '-fplugin-arg-%s-method'"), plugin_name);
++
++      if (kernexec_instrument_fptr == kernexec_instrument_fptr_or)
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &kernexec_reload_pass_info);
++      register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &kernexec_fptr_pass_info);
++      register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &kernexec_retaddr_pass_info);
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/latent_entropy_plugin.c b/scripts/gcc-plugins/latent_entropy_plugin.c
+new file mode 100644
+index 0000000..4ff5389
+--- /dev/null
++++ b/scripts/gcc-plugins/latent_entropy_plugin.c
+@@ -0,0 +1,613 @@
++/*
++ * Copyright 2012-2016 by the PaX Team <pageexec@freemail.hu>
++ * Copyright 2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Note: the choice of the license means that the compilation process is
++ *       NOT 'eligible' as defined by gcc's library exception to the GPL v3,
++ *       but for the kernel it doesn't matter since it doesn't link against
++ *       any of the gcc libraries
++ *
++ * This gcc plugin helps generate a little bit of entropy from program state,
++ * used throughout the uptime of the kernel. Here is an instrumentation example:
++ *
++ * before:
++ * void __latent_entropy test(int argc, char *argv[])
++ * {
++ *    printf("%u %s\n", argc, *argv);
++ * }
++ *
++ * after:
++ * void __latent_entropy test(int argc, char *argv[])
++ * {
++ *    // latent_entropy_execute() 1.
++ *    unsigned long local_entropy;
++ *    // init_local_entropy() 1.
++ *    void *local_entropy_frame_addr;
++ *    // init_local_entropy() 3.
++ *    unsigned long temp_latent_entropy;
++ *
++ *    // init_local_entropy() 2.
++ *    local_entropy_frame_addr = __builtin_frame_address(0);
++ *    local_entropy = (unsigned long) local_entropy_frame_addr;
++ *
++ *    // init_local_entropy() 4.
++ *    temp_latent_entropy = latent_entropy;
++ *    // init_local_entropy() 5.
++ *    local_entropy ^= temp_latent_entropy;
++ *
++ *    // latent_entropy_execute() 3.
++ *    local_entropy += 4623067384293424948;
++ *
++ *    printf("%u %s\n", argc, *argv);
++ *
++ *    // latent_entropy_execute() 4.
++ *    temp_latent_entropy = rol(temp_latent_entropy, local_entropy);
++ *    latent_entropy = temp_latent_entropy;
++ * }
++ *
++ * It would look like this in C:
++ *
++ * unsigned long local_entropy = latent_entropy;
++ * local_entropy ^= 1234567890;
++ * local_entropy ^= (unsigned long)__builtin_frame_address(0);
++ * local_entropy += 9876543210;
++ * latent_entropy = rol(local_entropy, 1234509876);
++ *
++ * TODO:
++ * - add ipa pass to identify not explicitly marked candidate functions
++ * - mix in more program state (function arguments/return values,
++ *   loop variables, etc)
++ * - more instrumentation control via attribute parameters
++ *
++ * BUGS:
++ * - none known
++ *
++ * Options:
++ * -fplugin-arg-latent_entropy_plugin-disable
++ *
++ * Attribute: __attribute__((latent_entropy))
++ *  The latent_entropy gcc attribute can be only on functions and variables.
++ *  If it is on a function then the plugin will instrument it. If the attribute
++ *  is on a variable then the plugin will initialize it with a random value.
++ *  The variable must be an integer, an integer array type or a structure
++ *  with integer fields.
++ */
++
++#include "gcc-common.h"
++
++__visible int plugin_is_GPL_compatible;
++
++static GTY(()) tree latent_entropy_decl;
++
++static struct plugin_info latent_entropy_plugin_info = {
++      .version        = "201610182310",
++      .help           = "disable\tturn off latent entropy instrumentation\n",
++};
++
++static unsigned HOST_WIDE_INT seed;
++
++/*
++ * get_random_seed() (this is a GCC function) generates the seed.
++ * This is a simple random generator without any cryptographic security because
++ * the entropy doesn't come from here.
++ */
++static unsigned HOST_WIDE_INT get_random_const(void)
++{
++      unsigned int i;
++      unsigned HOST_WIDE_INT ret = 0;
++
++      for (i = 0; i < 8 * sizeof ret; i++) {
++              ret = (ret << 1) | (seed & 1);
++              seed >>= 1;
++              if (ret & 1)
++                      seed ^= 0xD800000000000000ULL;
++      }
++
++      return ret;
++}
++
++static tree tree_get_random_const(tree type)
++{
++      unsigned long long mask;
++
++      mask = 1ULL << (TREE_INT_CST_LOW(TYPE_SIZE(type)) - 1);
++      mask = 2 * (mask - 1) + 1;
++
++      if (TYPE_UNSIGNED(type))
++              return build_int_cstu(type, mask & get_random_const());
++      return build_int_cst(type, mask & get_random_const());
++}
++
++static tree handle_latent_entropy_attribute(tree *node, tree name, tree args __unused, int flags __unused, bool *no_add_attrs)
++{
++      tree type;
++#if BUILDING_GCC_VERSION <= 4007
++      VEC(constructor_elt, gc) *vals;
++#else
++      vec<constructor_elt, va_gc> *vals;
++#endif
++
++      switch (TREE_CODE(*node)) {
++      default:
++              *no_add_attrs = true;
++              error("%qE attribute only applies to functions and variables", name);
++              break;
++
++      case VAR_DECL:
++              if (DECL_INITIAL(*node)) {
++                      *no_add_attrs = true;
++                      error("variable %qD with %qE attribute must not be initialized", *node, name);
++                      break;
++              }
++
++              if (!TREE_STATIC(*node)) {
++                      *no_add_attrs = true;
++                      error("variable %qD with %qE attribute must not be local", *node, name);
++                      break;
++              }
++
++              type = TREE_TYPE(*node);
++              switch (TREE_CODE(type)) {
++              default:
++                      *no_add_attrs = true;
++                      error("variable %qD with %qE attribute must be an integer"
++                              " or a fixed length integer array type"
++                              " or a fixed sized structure with integer fields", *node, name);
++                      break;
++
++              case RECORD_TYPE: {
++                      tree field;
++                      unsigned int nelt = 0;
++
++                      for (field = TYPE_FIELDS(type); field; nelt++, field = TREE_CHAIN(field)) {
++                              tree fieldtype;
++
++                              fieldtype = TREE_TYPE(field);
++                              if (TREE_CODE(fieldtype) == INTEGER_TYPE)
++                                      continue;
++
++                              *no_add_attrs = true;
++                              error("structure variable %qD with %qE attribute has"
++                                      " a non-integer field %qE", *node, name, field);
++                              break;
++                      }
++
++                      if (field)
++                              break;
++
++#if BUILDING_GCC_VERSION <= 4007
++                      vals = VEC_alloc(constructor_elt, gc, nelt);
++#else
++                      vec_alloc(vals, nelt);
++#endif
++
++                      for (field = TYPE_FIELDS(type); field; field = TREE_CHAIN(field)) {
++                              tree random_const;
++
++                              random_const = tree_get_random_const(TREE_TYPE(field));
++                              CONSTRUCTOR_APPEND_ELT(vals, field, random_const);
++                      }
++
++                      /* Initialize the fields with random constants */
++                      DECL_INITIAL(*node) = build_constructor(type, vals);
++//debug_tree(DECL_INITIAL(*node));
++                      break;
++              }
++
++              /* Initialize the variable with a random constant */
++              case INTEGER_TYPE:
++                      DECL_INITIAL(*node) = tree_get_random_const(type);
++                      break;
++
++              case ARRAY_TYPE: {
++                      tree elt_type, array_size, elt_size;
++                      unsigned int i, nelt;
++
++                      elt_type = TREE_TYPE(type);
++                      elt_size = TYPE_SIZE_UNIT(TREE_TYPE(type));
++                      array_size = TYPE_SIZE_UNIT(type);
++
++                      if (TREE_CODE(elt_type) != INTEGER_TYPE || !array_size || TREE_CODE(array_size) != INTEGER_CST) {
++                              *no_add_attrs = true;
++                              error("array variable %qD with %qE attribute must be"
++                                      " a fixed length integer array type", *node, name);
++                              break;
++                      }
++
++                      nelt = TREE_INT_CST_LOW(array_size) / TREE_INT_CST_LOW(elt_size);
++#if BUILDING_GCC_VERSION <= 4007
++                      vals = VEC_alloc(constructor_elt, gc, nelt);
++#else
++                      vec_alloc(vals, nelt);
++#endif
++
++                      for (i = 0; i < nelt; i++) {
++                              tree random_const = tree_get_random_const(elt_type);
++
++                              CONSTRUCTOR_APPEND_ELT(vals, size_int(i), random_const);
++                      }
++
++                      /* Initialize the elements of the array with random constants */
++                      DECL_INITIAL(*node) = build_constructor(type, vals);
++//debug_tree(DECL_INITIAL(*node));
++                      break;
++              }
++              }
++              break;
++
++      case FUNCTION_DECL:
++              break;
++      }
++
++      return NULL_TREE;
++}
++
++static struct attribute_spec latent_entropy_attr = {
++      .name                           = "latent_entropy",
++      .min_length                     = 0,
++      .max_length                     = 0,
++      .decl_required                  = true,
++      .type_required                  = false,
++      .function_type_required         = false,
++      .handler                        = handle_latent_entropy_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity          = false
++#endif
++};
++
++static void register_attributes(void *event_data __unused, void *data __unused)
++{
++      register_attribute(&latent_entropy_attr);
++}
++
++static bool latent_entropy_gate(void)
++{
++      /* don't bother with noreturn functions for now */
++      if (TREE_THIS_VOLATILE(current_function_decl))
++              return false;
++
++      /* gcc-4.5 doesn't discover some trivial noreturn functions */
++      if (EDGE_COUNT(EXIT_BLOCK_PTR_FOR_FN(cfun)->preds) == 0)
++              return false;
++
++      return lookup_attribute("latent_entropy", DECL_ATTRIBUTES(current_function_decl)) != NULL_TREE;
++}
++
++static tree create_a_tmp_var(tree type, const char *name)
++{
++      tree var;
++
++      var = create_tmp_var(type, name);
++      add_referenced_var(var);
++      mark_sym_for_renaming(var);
++      return var;
++}
++
++/*
++ * Set up the next operation and its constant operand to use in the latent
++ * entropy PRNG. When RHS is specified, the request is for perturbing the
++ * local latent entropy variable, otherwise it is for perturbing the global
++ * latent entropy variable where the two operands are already given by the
++ * local and global latent entropy variables themselves.
++ *
++ * The operation is one of add/xor/rol when instrumenting the local entropy
++ * variable and one of add/xor when perturbing the global entropy variable.
++ * Rotation is not used for the latter case because it would transmit less
++ * entropy to the global variable than the other two operations.
++ */
++static enum tree_code get_op(tree *rhs)
++{
++      static enum tree_code op;
++      unsigned HOST_WIDE_INT random_const;
++
++      random_const = get_random_const();
++
++      switch (op) {
++      case BIT_XOR_EXPR:
++              op = PLUS_EXPR;
++              break;
++
++      case PLUS_EXPR:
++              if (rhs) {
++                      op = LROTATE_EXPR;
++                      /*
++                       * This code limits the value of random_const to
++                       * the size of a long for the rotation
++                       */
++                      random_const %= TYPE_PRECISION(long_unsigned_type_node);
++                      break;
++              }
++
++      case LROTATE_EXPR:
++      default:
++              op = BIT_XOR_EXPR;
++              break;
++      }
++      if (rhs)
++              *rhs = build_int_cstu(long_unsigned_type_node, random_const);
++      return op;
++}
++
++static void perturb_local_entropy(basic_block bb, tree local_entropy)
++{
++      gimple_stmt_iterator gsi;
++      gimple assign;
++      tree rhs;
++      enum tree_code op;
++
++      op = get_op(&rhs);
++      assign = gimple_build_assign_with_ops(op, local_entropy, local_entropy, rhs);
++      gsi = gsi_after_labels(bb);
++      gsi_insert_before(&gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++//debug_bb(bb);
++}
++
++static void __perturb_latent_entropy(gimple_stmt_iterator *gsi, tree local_entropy)
++{
++      gimple assign;
++      tree temp;
++      enum tree_code op;
++
++      /* 1. create temporary copy of latent_entropy */
++      temp = create_a_tmp_var(long_unsigned_type_node, "temp_latent_entropy");
++
++      /* 2. read... */
++      add_referenced_var(latent_entropy_decl);
++      mark_sym_for_renaming(latent_entropy_decl);
++      assign = gimple_build_assign(temp, latent_entropy_decl);
++      gsi_insert_before(gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++
++      /* 3. ...modify... */
++      op = get_op(NULL);
++      assign = gimple_build_assign_with_ops(op, temp, temp, local_entropy);
++      gsi_insert_after(gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++
++      /* 4. ...write latent_entropy */
++      assign = gimple_build_assign(latent_entropy_decl, temp);
++      gsi_insert_after(gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++}
++
++static bool handle_tail_calls(basic_block bb, tree local_entropy)
++{
++      gimple_stmt_iterator gsi;
++
++      for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++              gcall *call;
++              gimple stmt = gsi_stmt(gsi);
++
++              if (!is_gimple_call(stmt))
++                      continue;
++
++              call = as_a_gcall(stmt);
++              if (!gimple_call_tail_p(call))
++                      continue;
++
++              __perturb_latent_entropy(&gsi, local_entropy);
++              return true;
++      }
++
++      return false;
++}
++
++static void perturb_latent_entropy(tree local_entropy)
++{
++      edge_iterator ei;
++      edge e, last_bb_e;
++      basic_block last_bb;
++
++      gcc_assert(single_pred_p(EXIT_BLOCK_PTR_FOR_FN(cfun)));
++      last_bb_e = single_pred_edge(EXIT_BLOCK_PTR_FOR_FN(cfun));
++
++      FOR_EACH_EDGE(e, ei, last_bb_e->src->preds) {
++              if (ENTRY_BLOCK_PTR_FOR_FN(cfun) == e->src)
++                      continue;
++              if (EXIT_BLOCK_PTR_FOR_FN(cfun) == e->src)
++                      continue;
++
++              handle_tail_calls(e->src, local_entropy);
++      }
++
++      last_bb = single_pred(EXIT_BLOCK_PTR_FOR_FN(cfun));
++      if (!handle_tail_calls(last_bb, local_entropy)) {
++              gimple_stmt_iterator gsi = gsi_last_bb(last_bb);
++
++              __perturb_latent_entropy(&gsi, local_entropy);
++      }
++//debug_bb(single_pred(EXIT_BLOCK_PTR_FOR_FN(cfun)));
++}
++
++static void init_local_entropy(basic_block bb, tree local_entropy)
++{
++      gimple assign, call;
++      tree frame_addr, rand_const, temp, fndecl, udi_frame_addr;
++      enum tree_code op;
++      gimple_stmt_iterator gsi = gsi_after_labels(bb);
++
++      /* 1. create local_entropy_frame_addr */
++      frame_addr = create_a_tmp_var(ptr_type_node, "local_entropy_frame_addr");
++
++      /* 2. local_entropy_frame_addr = __builtin_frame_address() */
++      fndecl = builtin_decl_implicit(BUILT_IN_FRAME_ADDRESS);
++      call = gimple_build_call(fndecl, 1, integer_zero_node);
++      gimple_call_set_lhs(call, frame_addr);
++      gsi_insert_before(&gsi, call, GSI_NEW_STMT);
++      update_stmt(call);
++
++      udi_frame_addr = fold_convert(long_unsigned_type_node, frame_addr);
++      assign = gimple_build_assign(local_entropy, udi_frame_addr);
++      gsi_insert_after(&gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++
++      /* 3. create temporary copy of latent_entropy */
++      temp = create_a_tmp_var(long_unsigned_type_node, "temp_latent_entropy");
++
++      /* 4. read the global entropy variable into local entropy */
++      add_referenced_var(latent_entropy_decl);
++      mark_sym_for_renaming(latent_entropy_decl);
++      assign = gimple_build_assign(temp, latent_entropy_decl);
++      gsi_insert_after(&gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++
++      /* 5. mix local_entropy_frame_addr into local entropy */
++      assign = gimple_build_assign_with_ops(BIT_XOR_EXPR, local_entropy, local_entropy, temp);
++      gsi_insert_after(&gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++
++      rand_const = build_int_cstu(long_unsigned_type_node, get_random_const());
++      op = get_op(NULL);
++      assign = gimple_build_assign_with_ops(op, local_entropy, local_entropy, rand_const);
++      gsi_insert_after(&gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++//debug_bb(bb);
++}
++
++static bool create_latent_entropy_decl(void)
++{
++      varpool_node_ptr node;
++
++      if (latent_entropy_decl != NULL_TREE)
++              return true;
++
++      FOR_EACH_VARIABLE(node) {
++              tree var = NODE_DECL(node);
++
++              if (DECL_NAME_LENGTH(var) < sizeof("latent_entropy") - 1)
++                      continue;
++              if (strcmp(IDENTIFIER_POINTER(DECL_NAME(var)), "latent_entropy"))
++                      continue;
++
++              latent_entropy_decl = var;
++//            debug_tree(var);
++              break;
++      }
++
++      return latent_entropy_decl != NULL_TREE;
++}
++
++static unsigned int latent_entropy_execute(void)
++{
++      basic_block bb;
++      tree local_entropy;
++
++      if (!create_latent_entropy_decl()) {
++//            debug_tree(current_function_decl);
++              return 0;
++      }
++
++//fprintf(stderr, "latent_entropy: %s\n", IDENTIFIER_POINTER(DECL_NAME(current_function_decl)));
++
++      /* 2. initialize local entropy variable */
++      gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++      bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
++      if (!single_pred_p(bb)) {
++//            gcc_assert(bb_loop_depth(bb) || (bb->flags & BB_IRREDUCIBLE_LOOP));
++              split_edge(single_succ_edge(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++              gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++              bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
++      }
++
++      /* 1. create the local entropy variable */
++      local_entropy = create_a_tmp_var(long_unsigned_type_node, "local_entropy");
++
++      /* 2. initialize the local entropy variable */
++      init_local_entropy(bb, local_entropy);
++
++      bb = bb->next_bb;
++
++      /* 3. instrument each BB with an operation on the local entropy variable */
++      while (bb != EXIT_BLOCK_PTR_FOR_FN(cfun)) {
++              perturb_local_entropy(bb, local_entropy);
++//debug_bb(bb);
++              bb = bb->next_bb;
++      };
++
++      /* 4. mix local entropy into the global entropy variable */
++      perturb_latent_entropy(local_entropy);
++      return 0;
++}
++
++static void latent_entropy_start_unit(void *gcc_data __unused, void *user_data __unused)
++{
++      tree latent_entropy_type;
++
++      seed = get_random_seed(false);
++
++      if (in_lto_p)
++              return;
++
++      /* extern volatile unsigned long latent_entropy */
++      latent_entropy_type = build_qualified_type(long_unsigned_type_node, TYPE_QUALS(long_unsigned_type_node) | TYPE_QUAL_VOLATILE);
++      latent_entropy_decl = build_decl(UNKNOWN_LOCATION, VAR_DECL, get_identifier("latent_entropy"), latent_entropy_type);
++
++      TREE_STATIC(latent_entropy_decl) = 1;
++      TREE_PUBLIC(latent_entropy_decl) = 1;
++      TREE_USED(latent_entropy_decl) = 1;
++      DECL_PRESERVE_P(latent_entropy_decl) = 1;
++      TREE_THIS_VOLATILE(latent_entropy_decl) = 1;
++      DECL_EXTERNAL(latent_entropy_decl) = 1;
++      DECL_ARTIFICIAL(latent_entropy_decl) = 1;
++      lang_hooks.decls.pushdecl(latent_entropy_decl);
++//    DECL_ASSEMBLER_NAME(latent_entropy_decl);
++//    varpool_finalize_decl(latent_entropy_decl);
++//    varpool_mark_needed_node(latent_entropy_decl);
++}
++
++#define PASS_NAME latent_entropy
++#define PROPERTIES_REQUIRED PROP_gimple_leh | PROP_cfg
++//#define TODO_FLAGS_START TODO_verify_ssa | TODO_verify_flow | TODO_verify_stmts
++#define TODO_FLAGS_FINISH TODO_verify_ssa | TODO_verify_stmts | TODO_dump_func | TODO_update_ssa
++#include "gcc-generate-gimple-pass.h"
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      bool enabled = true;
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      int i;
++
++      struct register_pass_info latent_entropy_pass_info;
++
++      latent_entropy_pass_info.pass                           = make_latent_entropy_pass();
++      latent_entropy_pass_info.reference_pass_name            = "optimized";
++      latent_entropy_pass_info.ref_pass_instance_number       = 1;
++      latent_entropy_pass_info.pos_op                         = PASS_POS_INSERT_BEFORE;
++      static const struct ggc_root_tab gt_ggc_r_gt_latent_entropy[] = {
++              {
++                      .base = &latent_entropy_decl,
++                      .nelt = 1,
++                      .stride = sizeof(latent_entropy_decl),
++                      .cb = &gt_ggc_mx_tree_node,
++                      .pchw = &gt_pch_nx_tree_node
++              },
++              LAST_GGC_ROOT_TAB
++      };
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      for (i = 0; i < argc; ++i) {
++              if (!(strcmp(argv[i].key, "disable"))) {
++                      enabled = false;
++                      continue;
++              }
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &latent_entropy_plugin_info);
++      if (enabled) {
++              register_callback(plugin_name, PLUGIN_START_UNIT, &latent_entropy_start_unit, NULL);
++              register_callback(plugin_name, PLUGIN_REGISTER_GGC_ROOTS, NULL, (void *)&gt_ggc_r_gt_latent_entropy);
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &latent_entropy_pass_info);
++      }
++      register_callback(plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL);
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/randomize_layout_plugin.c b/scripts/gcc-plugins/randomize_layout_plugin.c
+new file mode 100644
+index 0000000..2ca34f1
+--- /dev/null
++++ b/scripts/gcc-plugins/randomize_layout_plugin.c
+@@ -0,0 +1,940 @@
++/*
++ * Copyright 2014-2016 by Open Source Security, Inc., Brad Spengler <spender@grsecurity.net>
++ *                   and PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Note: the choice of the license means that the compilation process is
++ *       NOT 'eligible' as defined by gcc's library exception to the GPL v3,
++ *       but for the kernel it doesn't matter since it doesn't link against
++ *       any of the gcc libraries
++ *
++ * Usage:
++ * $ # for 4.5/4.6/C based 4.7
++ * $ gcc -I`gcc -print-file-name=plugin`/include -I`gcc -print-file-name=plugin`/include/c-family -fPIC -shared -O2 -o randomize_layout_plugin.so randomize_layout_plugin.c
++ * $ # for C++ based 4.7/4.8+
++ * $ g++ -I`g++ -print-file-name=plugin`/include -I`g++ -print-file-name=plugin`/include/c-family -fPIC -shared -O2 -o randomize_layout_plugin.so randomize_layout_plugin.c
++ * $ gcc -fplugin=./randomize_layout_plugin.so test.c -O2
++ */
++
++#include "gcc-common.h"
++#include "randomize_layout_seed.h"
++
++#if BUILDING_GCC_MAJOR < 4 || (BUILDING_GCC_MAJOR == 4 && BUILDING_GCC_MINOR < 6) || \
++   (BUILDING_GCC_MAJOR == 4 && BUILDING_GCC_MINOR == 6 && BUILDING_GCC_PATCHLEVEL < 4)
++#error "The RANDSTRUCT plugin requires GCC 4.6.4 or newer."
++#endif
++
++#define ORIG_TYPE_NAME(node) \
++      (TYPE_NAME(TYPE_MAIN_VARIANT(node)) != NULL_TREE ? ((const unsigned char *)IDENTIFIER_POINTER(TYPE_NAME(TYPE_MAIN_VARIANT(node)))) : (const unsigned char *)"anonymous")
++
++__visible int plugin_is_GPL_compatible;
++
++static int performance_mode;
++
++static struct plugin_info randomize_layout_plugin_info = {
++      .version        = "201402201816",
++      .help           = "disable\t\t\tdo not activate plugin\n"
++                        "performance-mode\tenable cacheline-aware layout randomization\n"
++};
++
++/* from old Linux dcache.h */
++static inline unsigned long
++partial_name_hash(unsigned long c, unsigned long prevhash)
++{
++      return (prevhash + (c << 4) + (c >> 4)) * 11;
++}
++static inline unsigned int
++name_hash(const unsigned char *name)
++{
++      unsigned long hash = 0;
++      unsigned int len = strlen((const char *)name);
++      while (len--)
++              hash = partial_name_hash(*name++, hash);
++      return (unsigned int)hash;
++}
++
++static tree handle_randomize_layout_attr(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
++{
++      tree type;
++
++      *no_add_attrs = true;
++      if (TREE_CODE(*node) == FUNCTION_DECL) {
++              error("%qE attribute does not apply to functions (%qF)", name, *node);
++              return NULL_TREE;
++      }
++
++      if (TREE_CODE(*node) == PARM_DECL) {
++              error("%qE attribute does not apply to function parameters (%qD)", name, *node);
++              return NULL_TREE;
++      }
++
++      if (TREE_CODE(*node) == VAR_DECL) {
++              error("%qE attribute does not apply to variables (%qD)", name, *node);
++              return NULL_TREE;
++      }
++
++      if (TYPE_P(*node)) {
++              type = *node;
++      } else {
++              gcc_assert(TREE_CODE(*node) == TYPE_DECL);
++              type = TREE_TYPE(*node);
++      }
++
++      if (TREE_CODE(type) != RECORD_TYPE) {
++              error("%qE attribute used on %qT applies to struct types only", name, type);
++              return NULL_TREE;
++      }
++
++      if (lookup_attribute(IDENTIFIER_POINTER(name), TYPE_ATTRIBUTES(type))) {
++              error("%qE attribute is already applied to the type %qT", name, type);
++              return NULL_TREE;
++      }
++
++      *no_add_attrs = false;
++
++      return NULL_TREE;
++}
++
++/* set on complete types that we don't need to inspect further at all */
++static tree handle_randomize_considered_attr(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
++{
++      *no_add_attrs = false;
++      return NULL_TREE;
++}
++
++/*
++ * set on types that we've performed a shuffle on, to prevent re-shuffling
++ * this does not preclude us from inspecting its fields for potential shuffles
++ */
++static tree handle_randomize_performed_attr(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
++{
++      *no_add_attrs = false;
++      return NULL_TREE;
++}
++
++/*
++ * 64bit variant of Bob Jenkins' public domain PRNG
++ * 256 bits of internal state
++ */
++
++typedef unsigned long long u64;
++
++typedef struct ranctx { u64 a; u64 b; u64 c; u64 d; } ranctx;
++
++#define rot(x,k) (((x)<<(k))|((x)>>(64-(k))))
++static u64 ranval(ranctx *x) {
++      u64 e = x->a - rot(x->b, 7);
++      x->a = x->b ^ rot(x->c, 13);
++      x->b = x->c + rot(x->d, 37);
++      x->c = x->d + e;
++      x->d = e + x->a;
++      return x->d;
++}
++
++static void raninit(ranctx *x, u64 *seed) {
++      int i;
++
++      x->a = seed[0];
++      x->b = seed[1];
++      x->c = seed[2];
++      x->d = seed[3];
++
++      for (i=0; i < 30; ++i)
++              (void)ranval(x);
++}
++
++static u64 shuffle_seed[4];
++
++struct partition_group {
++      tree tree_start;
++      unsigned long start;
++      unsigned long length;
++};
++
++static void partition_struct(tree *fields, unsigned long length, struct partition_group *size_groups, unsigned long *num_groups)
++{
++      unsigned long i;
++      unsigned long accum_size = 0;
++      unsigned long accum_length = 0;
++      unsigned long group_idx = 0;
++
++      gcc_assert(length < INT_MAX);
++
++      memset(size_groups, 0, sizeof(struct partition_group) * length);
++
++      for (i = 0; i < length; i++) {
++              if (size_groups[group_idx].tree_start == NULL_TREE) {
++                      size_groups[group_idx].tree_start = fields[i];
++                      size_groups[group_idx].start = i;
++                      accum_length = 0;
++                      accum_size = 0;
++              }
++              accum_size += (unsigned long)int_size_in_bytes(TREE_TYPE(fields[i]));
++              accum_length++;
++              if (accum_size >= 64) {
++                      size_groups[group_idx].length = accum_length;
++                      accum_length = 0;
++                      group_idx++;
++              }
++      }
++
++      if (size_groups[group_idx].tree_start != NULL_TREE &&
++          !size_groups[group_idx].length) {
++              size_groups[group_idx].length = accum_length;
++              group_idx++;
++      }
++
++      *num_groups = group_idx;
++}
++
++static void performance_shuffle(tree *newtree, unsigned long length, ranctx *prng_state)
++{
++      unsigned long i, x;
++      struct partition_group size_group[length];
++      unsigned long num_groups = 0;
++      unsigned long randnum;
++
++      partition_struct(newtree, length, (struct partition_group *)&size_group, &num_groups);
++      for (i = num_groups - 1; i > 0; i--) {
++              struct partition_group tmp;
++              randnum = ranval(prng_state) % (i + 1);
++              tmp = size_group[i];
++              size_group[i] = size_group[randnum];
++              size_group[randnum] = tmp;
++      }
++
++      for (x = 0; x < num_groups; x++) {
++              for (i = size_group[x].start + size_group[x].length - 1; i > size_group[x].start; i--) {
++                      tree tmp;
++                      if (DECL_BIT_FIELD_TYPE(newtree[i]))
++                              continue;
++                      randnum = ranval(prng_state) % (i + 1);
++                      // we could handle this case differently if desired
++                      if (DECL_BIT_FIELD_TYPE(newtree[randnum]))
++                              continue;
++                      tmp = newtree[i];
++                      newtree[i] = newtree[randnum];
++                      newtree[randnum] = tmp;
++              }
++      }
++}
++
++static void full_shuffle(tree *newtree, unsigned long length, ranctx *prng_state)
++{
++      unsigned long i, randnum;
++
++      for (i = length - 1; i > 0; i--) {
++              tree tmp;
++              randnum = ranval(prng_state) % (i + 1);
++              tmp = newtree[i];
++              newtree[i] = newtree[randnum];
++              newtree[randnum] = tmp;
++      }
++}
++
++/* modern in-place Fisher-Yates shuffle */
++static void shuffle(const_tree type, tree *newtree, unsigned long length)
++{
++      unsigned long i;
++      u64 seed[4];
++      ranctx prng_state;
++      const unsigned char *structname;
++
++      if (length == 0)
++              return;
++
++      gcc_assert(TREE_CODE(type) == RECORD_TYPE);
++
++      structname = ORIG_TYPE_NAME(type);
++
++#ifdef __DEBUG_PLUGIN
++      fprintf(stderr, "Shuffling struct %s %p\n", (const char *)structname, type);
++#ifdef __DEBUG_VERBOSE
++      debug_tree((tree)type);
++#endif
++#endif
++
++      for (i = 0; i < 4; i++) {
++              seed[i] = shuffle_seed[i];
++              seed[i] ^= name_hash(structname);
++      }
++
++      raninit(&prng_state, (u64 *)&seed);
++
++      if (performance_mode)
++              performance_shuffle(newtree, length, &prng_state);
++      else
++              full_shuffle(newtree, length, &prng_state);
++}
++
++static bool is_flexible_array(const_tree field)
++{
++      const_tree fieldtype;
++      const_tree typesize;
++      const_tree elemtype;
++      const_tree elemsize;
++
++      fieldtype = TREE_TYPE(field);
++      typesize = TYPE_SIZE(fieldtype);
++
++      if (TREE_CODE(fieldtype) != ARRAY_TYPE)
++              return false;
++
++      elemtype = TREE_TYPE(fieldtype);
++      elemsize = TYPE_SIZE(elemtype);
++
++      /* size of type is represented in bits */
++
++      if (typesize == NULL_TREE && TYPE_DOMAIN(fieldtype) != NULL_TREE &&
++          TYPE_MAX_VALUE(TYPE_DOMAIN(fieldtype)) == NULL_TREE)
++              return true;
++
++      if (typesize != NULL_TREE && 
++          (TREE_CONSTANT(typesize) && (!tree_to_uhwi(typesize) ||
++           tree_to_uhwi(typesize) == tree_to_uhwi(elemsize))))
++              return true;
++
++      return false;
++}
++
++static int relayout_struct(tree type)
++{
++      unsigned long num_fields = (unsigned long)list_length(TYPE_FIELDS(type));
++      unsigned long shuffle_length = num_fields;
++      tree field;
++      tree newtree[num_fields];
++      unsigned long i;
++      tree list;
++      tree variant;
++      tree main_variant;
++      expanded_location xloc;
++      bool has_flexarray = false;
++
++      if (TYPE_FIELDS(type) == NULL_TREE)
++              return 0;
++
++      if (num_fields < 2)
++              return 0;
++
++      gcc_assert(TREE_CODE(type) == RECORD_TYPE);
++
++      gcc_assert(num_fields < INT_MAX);
++
++      if (lookup_attribute("randomize_performed", TYPE_ATTRIBUTES(type)) ||
++          lookup_attribute("no_randomize_layout", TYPE_ATTRIBUTES(TYPE_MAIN_VARIANT(type))))
++              return 0;
++
++      /* Workaround for 3rd-party VirtualBox source that we can't modify ourselves */
++      if (!strcmp((const char *)ORIG_TYPE_NAME(type), "INTNETTRUNKFACTORY") ||
++          !strcmp((const char *)ORIG_TYPE_NAME(type), "RAWPCIFACTORY"))
++              return 0;
++
++      /* throw out any structs in uapi */
++      xloc = expand_location(DECL_SOURCE_LOCATION(TYPE_FIELDS(type)));
++
++      if (strstr(xloc.file, "/uapi/"))
++              error(G_("attempted to randomize userland API struct %s"), ORIG_TYPE_NAME(type));
++
++      for (field = TYPE_FIELDS(type), i = 0; field; field = TREE_CHAIN(field), i++) {
++              gcc_assert(TREE_CODE(field) == FIELD_DECL);
++              newtree[i] = field;
++      }
++
++      /*
++       * enforce that we don't randomize the layout of the last
++       * element of a struct if it's a 0 or 1-length array
++       * or a proper flexible array
++       */
++      if (is_flexible_array(newtree[num_fields - 1])) {
++              has_flexarray = true;
++              shuffle_length--;
++      }
++
++      shuffle(type, (tree *)newtree, shuffle_length);
++
++      /*
++       * set up a bogus anonymous struct field designed to error out on unnamed struct initializers
++       * as gcc provides no other way to detect such code
++       */
++      list = make_node(FIELD_DECL);
++      TREE_CHAIN(list) = newtree[0];
++      TREE_TYPE(list) = void_type_node;
++      DECL_SIZE(list) = bitsize_zero_node;
++      DECL_NONADDRESSABLE_P(list) = 1;
++      DECL_FIELD_BIT_OFFSET(list) = bitsize_zero_node;
++      DECL_SIZE_UNIT(list) = size_zero_node;
++      DECL_FIELD_OFFSET(list) = size_zero_node;
++      DECL_CONTEXT(list) = type;
++      // to satisfy the constify plugin
++      TREE_READONLY(list) = 1;
++
++      for (i = 0; i < num_fields - 1; i++)
++              TREE_CHAIN(newtree[i]) = newtree[i+1];
++      TREE_CHAIN(newtree[num_fields - 1]) = NULL_TREE;
++
++      main_variant = TYPE_MAIN_VARIANT(type);
++      for (variant = main_variant; variant; variant = TYPE_NEXT_VARIANT(variant)) {
++              TYPE_FIELDS(variant) = list;
++              TYPE_ATTRIBUTES(variant) = copy_list(TYPE_ATTRIBUTES(variant));
++              TYPE_ATTRIBUTES(variant) = tree_cons(get_identifier("randomize_performed"), NULL_TREE, TYPE_ATTRIBUTES(variant));
++              if (has_flexarray)
++                      TYPE_ATTRIBUTES(type) = tree_cons(get_identifier("has_flexarray"), NULL_TREE, TYPE_ATTRIBUTES(type));
++      }
++
++      /*
++       * force a re-layout of the main variant
++       * the TYPE_SIZE for all variants will be recomputed
++       * by finalize_type_size()
++       */
++      TYPE_SIZE(main_variant) = NULL_TREE;
++      layout_type(main_variant);
++      gcc_assert(TYPE_SIZE(main_variant) != NULL_TREE);
++
++      return 1;
++}
++
++/* from constify plugin */
++static const_tree get_field_type(const_tree field)
++{
++      return strip_array_types(TREE_TYPE(field));
++}
++
++/* from constify plugin */
++static bool is_fptr(const_tree fieldtype)
++{
++      if (TREE_CODE(fieldtype) != POINTER_TYPE)
++              return false;
++
++      return TREE_CODE(TREE_TYPE(fieldtype)) == FUNCTION_TYPE;
++}
++
++/* derived from constify plugin */
++static int is_pure_ops_struct(const_tree node)
++{
++      const_tree field;
++
++      gcc_assert(TREE_CODE(node) == RECORD_TYPE || TREE_CODE(node) == UNION_TYPE);
++
++      for (field = TYPE_FIELDS(node); field; field = TREE_CHAIN(field)) {
++              const_tree fieldtype = get_field_type(field);
++              enum tree_code code = TREE_CODE(fieldtype);
++
++              if (node == fieldtype)
++                      continue;
++
++              if (!is_fptr(fieldtype))
++                      return 0;
++
++              if (code != RECORD_TYPE && code != UNION_TYPE)
++                      continue;
++
++              if (!is_pure_ops_struct(fieldtype))
++                      return 0;
++      }
++
++      return 1;
++}
++
++static void randomize_type(tree type)
++{
++      tree variant;
++
++      gcc_assert(TREE_CODE(type) == RECORD_TYPE);
++
++      if (lookup_attribute("randomize_considered", TYPE_ATTRIBUTES(type)))
++              return;
++
++      if (lookup_attribute("randomize_layout", TYPE_ATTRIBUTES(TYPE_MAIN_VARIANT(type))) || is_pure_ops_struct(type))
++              relayout_struct(type);
++
++      for (variant = TYPE_MAIN_VARIANT(type); variant; variant = TYPE_NEXT_VARIANT(variant)) {
++              TYPE_ATTRIBUTES(type) = copy_list(TYPE_ATTRIBUTES(type));
++              TYPE_ATTRIBUTES(type) = tree_cons(get_identifier("randomize_considered"), NULL_TREE, TYPE_ATTRIBUTES(type));
++      }
++#ifdef __DEBUG_PLUGIN
++      fprintf(stderr, "Marking randomize_considered on struct %s\n", ORIG_TYPE_NAME(type));
++#ifdef __DEBUG_VERBOSE
++      debug_tree(type);
++#endif
++#endif
++}
++
++static void update_decl_size(tree decl)
++{
++      tree lastval, lastidx, field, init, type, flexsize;
++      unsigned HOST_WIDE_INT len;
++
++      type = TREE_TYPE(decl);
++
++      if (!lookup_attribute("has_flexarray", TYPE_ATTRIBUTES(type)))
++              return;
++
++      init = DECL_INITIAL(decl);
++      if (init == NULL_TREE || init == error_mark_node)
++              return;
++
++      if (TREE_CODE(init) != CONSTRUCTOR)
++              return;
++
++      len = CONSTRUCTOR_NELTS(init);
++        if (!len)
++              return;
++
++      lastval = CONSTRUCTOR_ELT(init, CONSTRUCTOR_NELTS(init) - 1)->value;
++      lastidx = CONSTRUCTOR_ELT(init, CONSTRUCTOR_NELTS(init) - 1)->index;
++
++      for (field = TYPE_FIELDS(TREE_TYPE(decl)); TREE_CHAIN(field); field = TREE_CHAIN(field))
++              ;
++
++      if (lastidx != field)
++              return;
++
++      if (TREE_CODE(lastval) != STRING_CST) {
++              error("Only string constants are supported as initializers "
++                    "for randomized structures with flexible arrays");
++              return;
++      }
++
++      flexsize = bitsize_int(TREE_STRING_LENGTH(lastval) *
++              tree_to_uhwi(TYPE_SIZE(TREE_TYPE(TREE_TYPE(lastval)))));
++
++      DECL_SIZE(decl) = size_binop(PLUS_EXPR, TYPE_SIZE(type), flexsize);
++
++      return;
++}
++
++
++static void randomize_layout_finish_decl(void *event_data, void *data)
++{
++      tree decl = (tree)event_data;
++      tree type;
++
++      if (decl == NULL_TREE || decl == error_mark_node)
++              return;
++
++      type = TREE_TYPE(decl);
++
++      if (TREE_CODE(decl) != VAR_DECL)
++              return;
++
++      if (TREE_CODE(type) != RECORD_TYPE && TREE_CODE(type) != UNION_TYPE)
++              return;
++
++      if (!lookup_attribute("randomize_performed", TYPE_ATTRIBUTES(type)))
++              return;
++
++      DECL_SIZE(decl) = 0;
++      DECL_SIZE_UNIT(decl) = 0;
++      DECL_ALIGN(decl) = 0;
++      DECL_MODE (decl) = VOIDmode;
++      SET_DECL_RTL(decl, 0);
++      update_decl_size(decl);
++      layout_decl(decl, 0);
++}
++
++static void finish_type(void *event_data, void *data)
++{
++      tree type = (tree)event_data;
++
++      if (type == NULL_TREE || type == error_mark_node)
++              return;
++
++      if (TREE_CODE(type) != RECORD_TYPE)
++              return;
++
++      if (TYPE_FIELDS(type) == NULL_TREE)
++              return;
++
++      if (lookup_attribute("randomize_considered", TYPE_ATTRIBUTES(type)))
++              return;
++
++#ifdef __DEBUG_PLUGIN
++      fprintf(stderr, "Calling randomize_type on %s\n", ORIG_TYPE_NAME(type));
++#endif
++#ifdef __DEBUG_VERBOSE
++      debug_tree(type);
++#endif
++      randomize_type(type);
++
++      return;
++}
++
++static struct attribute_spec randomize_layout_attr = {
++      .name           = "randomize_layout",
++      // related to args
++      .min_length     = 0,
++      .max_length     = 0,
++      .decl_required  = false,
++      // need type declaration
++      .type_required  = true,
++      .function_type_required = false,
++      .handler                = handle_randomize_layout_attr,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity  = true
++#endif
++};
++
++static struct attribute_spec no_randomize_layout_attr = {
++      .name           = "no_randomize_layout",
++      // related to args
++      .min_length     = 0,
++      .max_length     = 0,
++      .decl_required  = false,
++      // need type declaration
++      .type_required  = true,
++      .function_type_required = false,
++      .handler                = handle_randomize_layout_attr,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity  = true
++#endif
++};
++
++static struct attribute_spec randomize_considered_attr = {
++      .name           = "randomize_considered",
++      // related to args
++      .min_length     = 0,
++      .max_length     = 0,
++      .decl_required  = false,
++      // need type declaration
++      .type_required  = true,
++      .function_type_required = false,
++      .handler                = handle_randomize_considered_attr,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity  = false
++#endif
++};
++
++static struct attribute_spec randomize_performed_attr = {
++      .name           = "randomize_performed",
++      // related to args
++      .min_length     = 0,
++      .max_length     = 0,
++      .decl_required  = false,
++      // need type declaration
++      .type_required  = true,
++      .function_type_required = false,
++      .handler                = handle_randomize_performed_attr,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity  = false
++#endif
++};
++
++static void register_attributes(void *event_data, void *data)
++{
++      register_attribute(&randomize_layout_attr);
++      register_attribute(&no_randomize_layout_attr);
++      register_attribute(&randomize_considered_attr);
++      register_attribute(&randomize_performed_attr);
++}
++
++static void check_bad_casts_in_constructor(tree var, tree init)
++{
++      unsigned HOST_WIDE_INT idx;
++      tree field, val;
++      tree field_type, val_type;
++
++      FOR_EACH_CONSTRUCTOR_ELT(CONSTRUCTOR_ELTS(init), idx, field, val) {
++              if (TREE_CODE(val) == CONSTRUCTOR) {
++                      check_bad_casts_in_constructor(var, val);
++                      continue;
++              }
++
++              /* pipacs' plugin creates franken-arrays that differ from those produced by
++                 normal code which all have valid 'field' trees. work around this */
++              if (field == NULL_TREE)
++                      continue;
++              field_type = TREE_TYPE(field);
++              val_type = TREE_TYPE(val);
++
++              if (TREE_CODE(field_type) != POINTER_TYPE || TREE_CODE(val_type) != POINTER_TYPE)
++                      continue;
++
++              if (field_type == val_type)
++                      continue;
++
++              field_type = TYPE_MAIN_VARIANT(strip_array_types(TYPE_MAIN_VARIANT(TREE_TYPE(field_type))));
++              val_type = TYPE_MAIN_VARIANT(strip_array_types(TYPE_MAIN_VARIANT(TREE_TYPE(val_type))));
++
++              if (field_type == void_type_node)
++                      continue;
++              if (field_type == val_type)
++                      continue;
++              if (TREE_CODE(val_type) != RECORD_TYPE)
++                      continue;
++
++              if (!lookup_attribute("randomize_performed", TYPE_ATTRIBUTES(val_type)))
++                      continue;
++              inform(DECL_SOURCE_LOCATION(var), "found mismatched struct pointer types: %qT and %qT\n", TYPE_MAIN_VARIANT(field_type), TYPE_MAIN_VARIANT(val_type));
++      }
++}
++
++/* derived from the constify plugin */
++static void check_global_variables(void *event_data, void *data)
++{
++      struct varpool_node *node;
++      tree init;
++
++      FOR_EACH_VARIABLE(node) {
++              tree var = NODE_DECL(node);
++              init = DECL_INITIAL(var);
++              if (init == NULL_TREE)
++                      continue;
++
++              if (TREE_CODE(init) != CONSTRUCTOR)
++                      continue;
++
++              check_bad_casts_in_constructor(var, init);
++      }
++}
++
++static bool dominated_by_is_err(const_tree rhs, basic_block bb)
++{
++      basic_block dom;
++      gimple dom_stmt;
++      gimple call_stmt;
++      const_tree dom_lhs;
++      const_tree poss_is_err_cond;
++      const_tree poss_is_err_func;
++      const_tree is_err_arg;
++
++      dom = get_immediate_dominator(CDI_DOMINATORS, bb);
++      if (!dom)
++              return false;
++
++      dom_stmt = last_stmt(dom);
++      if (!dom_stmt)
++              return false;
++
++      if (gimple_code(dom_stmt) != GIMPLE_COND)
++              return false;
++
++      if (gimple_cond_code(dom_stmt) != NE_EXPR)
++              return false;
++
++      if (!integer_zerop(gimple_cond_rhs(dom_stmt)))
++              return false;
++
++      poss_is_err_cond = gimple_cond_lhs(dom_stmt);
++
++      if (TREE_CODE(poss_is_err_cond) != SSA_NAME)
++              return false;
++
++      call_stmt = SSA_NAME_DEF_STMT(poss_is_err_cond);
++
++      if (gimple_code(call_stmt) != GIMPLE_CALL)
++              return false;
++
++      dom_lhs = gimple_get_lhs(call_stmt);
++      poss_is_err_func = gimple_call_fndecl(call_stmt);
++      if (!poss_is_err_func)
++              return false;
++      if (dom_lhs != poss_is_err_cond)
++              return false;
++      if (strcmp(DECL_NAME_POINTER(poss_is_err_func), "IS_ERR"))
++              return false;
++
++      is_err_arg = gimple_call_arg(call_stmt, 0);
++      if (!is_err_arg)
++              return false;
++
++      if (is_err_arg != rhs)
++              return false;
++
++      return true;
++}
++
++static void handle_local_var_initializers(void)
++{
++      tree var;
++      unsigned int i;
++
++      FOR_EACH_LOCAL_DECL(cfun, i, var) {
++              tree init = DECL_INITIAL(var);
++              if (!init)
++                      continue;
++              if (TREE_CODE(init) != CONSTRUCTOR)
++                      continue;
++              check_bad_casts_in_constructor(var, init);
++      }
++}
++
++/*
++ * iterate over all statements to find "bad" casts:
++ * those where the address of the start of a structure is cast
++ * to a pointer of a structure of a different type, or a
++ * structure pointer type is cast to a different structure pointer type
++ */
++static unsigned int find_bad_casts_execute(void)
++{
++      basic_block bb;
++
++      handle_local_var_initializers();
++
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      gimple stmt;
++                      const_tree lhs;
++                      const_tree lhs_type;
++                      const_tree rhs1;
++                      const_tree rhs_type;
++                      const_tree ptr_lhs_type;
++                      const_tree ptr_rhs_type;
++                      const_tree op0;
++                      const_tree op0_type;
++                      enum tree_code rhs_code;
++
++                      stmt = gsi_stmt(gsi);
++
++#ifdef __DEBUG_PLUGIN
++#ifdef __DEBUG_VERBOSE
++                      debug_gimple_stmt(stmt);
++                      debug_tree(gimple_get_lhs(stmt));
++#endif
++#endif
++
++                      if (gimple_code(stmt) != GIMPLE_ASSIGN)
++                              continue;
++
++#ifdef __DEBUG_PLUGIN
++#ifdef __DEBUG_VERBOSE
++                      debug_tree(gimple_assign_rhs1(stmt));
++#endif
++#endif
++
++                      rhs_code = gimple_assign_rhs_code(stmt);
++
++                      if (rhs_code != ADDR_EXPR && rhs_code != SSA_NAME)
++                              continue;
++
++                      lhs = gimple_get_lhs(stmt);
++                      lhs_type = TREE_TYPE(lhs);
++                      rhs1 = gimple_assign_rhs1(stmt);
++                      rhs_type = TREE_TYPE(rhs1);
++
++                      if (TREE_CODE(rhs_type) != POINTER_TYPE ||
++                          TREE_CODE(lhs_type) != POINTER_TYPE)
++                              continue;
++
++                      ptr_lhs_type = TYPE_MAIN_VARIANT(strip_array_types(TYPE_MAIN_VARIANT(TREE_TYPE(lhs_type))));
++                      ptr_rhs_type = TYPE_MAIN_VARIANT(strip_array_types(TYPE_MAIN_VARIANT(TREE_TYPE(rhs_type))));
++
++                      if (ptr_rhs_type == void_type_node)
++                              continue;
++
++                      if (ptr_lhs_type == void_type_node)
++                              continue;
++
++                      if (dominated_by_is_err(rhs1, bb))
++                              continue;
++
++                      if (TREE_CODE(ptr_rhs_type) != RECORD_TYPE) {
++#ifndef __DEBUG_PLUGIN
++                              if (lookup_attribute("randomize_performed", TYPE_ATTRIBUTES(ptr_lhs_type)))
++#endif
++                              inform(gimple_location(stmt), "found mismatched struct pointer types: %qT and %qT\n", ptr_lhs_type, ptr_rhs_type);
++                              continue;
++                      }
++
++                      if (rhs_code == SSA_NAME && ptr_lhs_type == ptr_rhs_type)
++                              continue;
++
++                      if (rhs_code == ADDR_EXPR) {
++                              op0 = TREE_OPERAND(rhs1, 0);
++
++                              if (op0 == NULL_TREE)
++                                      continue;
++
++                              if (TREE_CODE(op0) != VAR_DECL)
++                                      continue;
++
++                              op0_type = TYPE_MAIN_VARIANT(strip_array_types(TYPE_MAIN_VARIANT(TREE_TYPE(op0))));
++                              if (op0_type == ptr_lhs_type)
++                                      continue;
++
++#ifndef __DEBUG_PLUGIN
++                              if (lookup_attribute("randomize_performed", TYPE_ATTRIBUTES(op0_type)))
++#endif
++                              inform(gimple_location(stmt), "found mismatched struct pointer types: %qT and %qT\n", ptr_lhs_type, op0_type);
++                      } else {
++                              const_tree ssa_name_var = SSA_NAME_VAR(rhs1);
++                              /* skip bogus type casts introduced by container_of */
++                              if (ssa_name_var != NULL_TREE && DECL_NAME(ssa_name_var) && 
++                                  !strcmp((const char *)DECL_NAME_POINTER(ssa_name_var), "__mptr"))
++                                      continue;
++#ifndef __DEBUG_PLUGIN
++                              if (lookup_attribute("randomize_performed", TYPE_ATTRIBUTES(ptr_rhs_type)))
++#endif
++                              inform(gimple_location(stmt), "found mismatched struct pointer types: %qT and %qT\n", ptr_lhs_type, ptr_rhs_type);
++                      }
++
++              }
++      }
++      return 0;
++}
++
++#define PASS_NAME find_bad_casts
++#define NO_GATE
++#define TODO_FLAGS_FINISH TODO_dump_func
++#include "gcc-generate-gimple-pass.h"
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      int i;
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      bool enable = true;
++      int obtained_seed = 0;
++      struct register_pass_info find_bad_casts_pass_info;
++
++      find_bad_casts_pass_info.pass                   = make_find_bad_casts_pass();
++      find_bad_casts_pass_info.reference_pass_name    = "ssa";
++      find_bad_casts_pass_info.ref_pass_instance_number       = 1;
++      find_bad_casts_pass_info.pos_op                 = PASS_POS_INSERT_AFTER;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      if (strncmp(lang_hooks.name, "GNU C", 5) && !strncmp(lang_hooks.name, "GNU C+", 6)) {
++              inform(UNKNOWN_LOCATION, G_("%s supports C only, not %s"), plugin_name, lang_hooks.name);
++              enable = false;
++      }
++
++      for (i = 0; i < argc; ++i) {
++              if (!strcmp(argv[i].key, "disable")) {
++                      enable = false;
++                      continue;
++              }
++              if (!strcmp(argv[i].key, "performance-mode")) {
++                      performance_mode = 1;
++                      continue;
++              }
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      if (strlen(randstruct_seed) != 64) {
++              error(G_("invalid seed value supplied for %s plugin"), plugin_name);
++              return 1;
++      }
++      obtained_seed = sscanf(randstruct_seed, "%016llx%016llx%016llx%016llx",
++              &shuffle_seed[0], &shuffle_seed[1], &shuffle_seed[2], &shuffle_seed[3]);
++      if (obtained_seed != 4) {
++              error(G_("Invalid seed supplied for %s plugin"), plugin_name);
++              return 1;
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &randomize_layout_plugin_info);
++      if (enable) {
++              register_callback(plugin_name, PLUGIN_ALL_IPA_PASSES_START, check_global_variables, NULL);
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &find_bad_casts_pass_info);
++              register_callback(plugin_name, PLUGIN_FINISH_TYPE, finish_type, NULL);
++              register_callback(plugin_name, PLUGIN_FINISH_DECL, randomize_layout_finish_decl, NULL);
++      }
++      register_callback(plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL);
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/rap_plugin/Makefile b/scripts/gcc-plugins/rap_plugin/Makefile
+new file mode 100644
+index 0000000..f2a0a03
+--- /dev/null
++++ b/scripts/gcc-plugins/rap_plugin/Makefile
+@@ -0,0 +1,6 @@
++$(HOSTLIBS)-$(CONFIG_PAX_RAP) += rap_plugin.so
++always := $($(HOSTLIBS)-y)
++
++rap_plugin-objs := $(patsubst $(srctree)/$(src)/%.c,%.o,$(wildcard $(srctree)/$(src)/*.c))
++
++clean-files += *.so
+diff --git a/scripts/gcc-plugins/rap_plugin/rap.h b/scripts/gcc-plugins/rap_plugin/rap.h
+new file mode 100644
+index 0000000..f6a284d
+--- /dev/null
++++ b/scripts/gcc-plugins/rap_plugin/rap.h
+@@ -0,0 +1,36 @@
++#ifndef RAP_H_INCLUDED
++#define RAP_H_INCLUDED
++
++#include "gcc-common.h"
++
++typedef struct {
++      int hash; // will be sign extended to long in reality
++} rap_hash_t;
++
++typedef struct {
++      unsigned int qual_const:1;
++      unsigned int qual_volatile:1;
++} rap_hash_flags_t;
++extern rap_hash_flags_t imprecise_rap_hash_flags;
++
++extern bool report_fptr_hash;
++
++extern GTY(()) tree rap_hash_type_node;
++
++void siphash24fold(unsigned char *out, const unsigned char *in, unsigned long long inlen, const unsigned char *k);
++void rap_calculate_func_hashes(void *event_data, void *data);
++rap_hash_t rap_hash_function_type(const_tree fntype, rap_hash_flags_t flags);
++rap_hash_t rap_hash_function_decl(const_tree fndecl, rap_hash_flags_t flags);
++rap_hash_t rap_hash_function_node_imprecise(cgraph_node_ptr node);
++const_tree type_name(const_tree type);
++tree create_new_var(tree type, const char *name);
++
++gimple barrier(tree var, bool full);
++
++#if BUILDING_GCC_VERSION >= 4009
++opt_pass *make_rap_fptr_pass(void);
++#else
++struct opt_pass *make_rap_fptr_pass(void);
++#endif
++
++#endif
+diff --git a/scripts/gcc-plugins/rap_plugin/rap_fptr_pass.c b/scripts/gcc-plugins/rap_plugin/rap_fptr_pass.c
+new file mode 100644
+index 0000000..2f53f14
+--- /dev/null
++++ b/scripts/gcc-plugins/rap_plugin/rap_fptr_pass.c
+@@ -0,0 +1,220 @@
++/*
++ * Copyright 2012-2016 by PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Homepage: http://pax.grsecurity.net/
++ */
++
++#include "rap.h"
++
++bool report_fptr_hash;
++
++static bool rap_fptr_gate(void)
++{
++#ifdef TARGET_386
++      tree section;
++
++      if (!TARGET_64BIT || ix86_cmodel != CM_KERNEL)
++              return true;
++
++      section = lookup_attribute("section", DECL_ATTRIBUTES(current_function_decl));
++      if (!section || !TREE_VALUE(section))
++              return true;
++
++      section = TREE_VALUE(TREE_VALUE(section));
++      return strncmp(TREE_STRING_POINTER(section), ".vsyscall_", 10);
++#else
++#error unsupported target
++#endif
++}
++
++static tree build_rap_hash(gimple call_stmt, tree fntype)
++{
++      rap_hash_t hash;
++
++      hash = rap_hash_function_type(fntype, imprecise_rap_hash_flags);
++      if (report_fptr_hash)
++              inform(gimple_location(call_stmt), "fptr rap_hash: %x", hash.hash);
++      return build_int_cst_type(rap_hash_type_node, hash.hash);
++}
++
++// check the function hash of the target of the fptr
++static basic_block rap_instrument_fptr(gimple_stmt_iterator *gsi)
++{
++      gimple assign_hash, check_hash, call_stmt, stmt;
++      location_t loc;
++      tree computed_hash, target_hash, fptr, fntype;
++#if BUILDING_GCC_VERSION == 4005
++      tree fptr2;
++#endif
++      basic_block cond_bb, join_bb, true_bb;
++      edge e;
++      const HOST_WIDE_INT rap_hash_offset = TARGET_64BIT ? 2 * sizeof(rap_hash_t) : sizeof(rap_hash_t);
++
++      call_stmt = gsi_stmt(*gsi);
++      loc = gimple_location(call_stmt);
++      fptr = gimple_call_fn(call_stmt);
++      fntype = TREE_TYPE(TREE_TYPE(fptr));
++
++      if (TREE_CODE(fntype) == FUNCTION_TYPE) {
++              computed_hash = build_rap_hash(call_stmt, fntype);
++      } else {
++              debug_tree(fntype);
++              gcc_unreachable();
++      }
++
++      // target_hash = ((s64*)fptr)[-rap_hash_offset]
++      target_hash = create_tmp_var(rap_hash_type_node, "rap_hash");
++      add_referenced_var(target_hash);
++      target_hash = make_ssa_name(target_hash, NULL);
++#if BUILDING_GCC_VERSION == 4005
++      fptr2 = create_tmp_var(ptr_type_node, "rap_fptr2");
++      fptr2 = make_ssa_name(fptr2, NULL);
++      assign_hash = gimple_build_assign(fptr2, build2(POINTER_PLUS_EXPR, ptr_type_node, fptr, build_int_cst_type(sizetype, -rap_hash_offset)));
++      gimple_set_location(assign_hash, loc);
++      SSA_NAME_DEF_STMT(fptr2) = assign_hash;
++      gsi_insert_before(gsi, assign_hash, GSI_SAME_STMT);
++      update_stmt(assign_hash);
++      fptr = gimple_get_lhs(assign_hash);
++
++      fptr2 = create_tmp_var(build_pointer_type(rap_hash_type_node), "rap_fptr2");
++      fptr2 = make_ssa_name(fptr2, NULL);
++      assign_hash = gimple_build_assign(fptr2, fold_convert(build_pointer_type(TREE_TYPE(target_hash)), fptr));
++      gimple_set_location(assign_hash, loc);
++      SSA_NAME_DEF_STMT(fptr2) = assign_hash;
++      gsi_insert_before(gsi, assign_hash, GSI_SAME_STMT);
++      update_stmt(assign_hash);
++      fptr = gimple_get_lhs(assign_hash);
++
++      assign_hash = gimple_build_assign(target_hash, build1(INDIRECT_REF, rap_hash_type_node, fptr));
++#else
++      assign_hash = gimple_build_assign(target_hash, build2(MEM_REF, rap_hash_type_node, fptr, build_int_cst_type(build_pointer_type(rap_hash_type_node), -rap_hash_offset)));
++#endif
++      gimple_set_location(assign_hash, loc);
++      SSA_NAME_DEF_STMT(target_hash) = assign_hash;
++      gsi_insert_before(gsi, assign_hash, GSI_NEW_STMT);
++      update_stmt(assign_hash);
++
++      // compare target_hash against computed function hash
++      // bail out on mismatch
++      check_hash = gimple_build_cond(NE_EXPR, target_hash, computed_hash, NULL_TREE, NULL_TREE);
++      gimple_set_location(check_hash, loc);
++      gsi_insert_after(gsi, check_hash, GSI_NEW_STMT);
++
++      cond_bb = gimple_bb(gsi_stmt(*gsi));
++      gcc_assert(!gsi_end_p(*gsi));
++      gcc_assert(check_hash == gsi_stmt(*gsi));
++
++      e = split_block(cond_bb, gsi_stmt(*gsi));
++      cond_bb = e->src;
++      join_bb = e->dest;
++      e->flags = EDGE_FALSE_VALUE;
++      e->probability = REG_BR_PROB_BASE;
++
++      true_bb = create_empty_bb(EXIT_BLOCK_PTR_FOR_FN(cfun)->prev_bb);
++      make_edge(cond_bb, true_bb, EDGE_TRUE_VALUE | EDGE_PRESERVE);
++
++      gcc_assert(dom_info_available_p(CDI_DOMINATORS));
++      set_immediate_dominator(CDI_DOMINATORS, true_bb, cond_bb);
++      set_immediate_dominator(CDI_DOMINATORS, join_bb, cond_bb);
++
++      gcc_assert(cond_bb->loop_father == join_bb->loop_father);
++      add_bb_to_loop(true_bb, cond_bb->loop_father);
++
++      *gsi = gsi_start_bb(true_bb);
++
++      // this fake dependency is to prevent PRE from merging this BB with others of the same kind
++      stmt = barrier(fptr, false);
++      gimple_set_location(stmt, loc);
++      gsi_insert_after(gsi, stmt, GSI_CONTINUE_LINKING);
++
++      stmt = gimple_build_call(builtin_decl_implicit(BUILT_IN_TRAP), 0);
++      gimple_set_location(stmt, loc);
++      gsi_insert_after(gsi, stmt, GSI_CONTINUE_LINKING);
++
++      return join_bb;
++}
++
++// find all language level function pointer dereferences and verify the target function
++static unsigned int rap_fptr_execute(void)
++{
++      basic_block bb;
++
++      loop_optimizer_init(LOOPS_NORMAL | LOOPS_HAVE_RECORDED_EXITS);
++      gcc_assert(current_loops);
++
++      calculate_dominance_info(CDI_DOMINATORS);
++      calculate_dominance_info(CDI_POST_DOMINATORS);
++
++      // 1. loop through BBs and GIMPLE statements
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      // gimple match: h_1 = get_fptr (); D.2709_3 = h_1 (x_2(D));
++                      tree fptr, fntype;
++                      gimple call_stmt;
++
++                      // is it a call ...
++                      call_stmt = gsi_stmt(gsi);
++                      if (!is_gimple_call(call_stmt))
++                              continue;
++
++                      fptr = gimple_call_fn(call_stmt);
++                      if (!fptr)
++                              continue;
++
++                      switch (TREE_CODE(fptr)) {
++                      default:
++                              debug_gimple_stmt(call_stmt);
++                              debug_tree(fptr);
++                              debug_tree(TREE_TYPE(fptr));
++                              gcc_unreachable();
++
++                      case ADDR_EXPR:
++                              continue;
++
++                      case SSA_NAME:
++                              if (SSA_NAME_VAR(fptr) == NULL_TREE)
++                                      break;
++
++                              switch (TREE_CODE(SSA_NAME_VAR(fptr))) {
++                              default:
++                                      debug_gimple_stmt(call_stmt);
++                                      debug_tree(fptr);
++                                      gcc_unreachable();
++
++                              case VAR_DECL:
++                              case PARM_DECL:
++                                      break;
++                              }
++                              break;
++
++                      case INTEGER_CST:
++                      case OBJ_TYPE_REF:
++                              break;
++                      }
++
++                      // ... through a function pointer
++                      fntype = TREE_TYPE(fptr);
++                      if (TREE_CODE(fntype) != POINTER_TYPE)
++                              continue;
++
++                      fntype = TREE_TYPE(fntype);
++                      gcc_assert(TREE_CODE(fntype) == FUNCTION_TYPE || TREE_CODE(fntype) == METHOD_TYPE);
++
++                      bb = rap_instrument_fptr(&gsi);
++                      gsi = gsi_start_bb(bb);
++              }
++      }
++
++      free_dominance_info(CDI_DOMINATORS);
++      free_dominance_info(CDI_POST_DOMINATORS);
++      loop_optimizer_finalize();
++
++      return 0;
++}
++
++#define PASS_NAME rap_fptr
++#define TODO_FLAGS_FINISH TODO_verify_ssa | TODO_verify_stmts | TODO_dump_func | TODO_remove_unused_locals | TODO_update_ssa | TODO_cleanup_cfg | TODO_rebuild_cgraph_edges | TODO_verify_flow
++#include "gcc-generate-gimple-pass.h"
+diff --git a/scripts/gcc-plugins/rap_plugin/rap_hash.c b/scripts/gcc-plugins/rap_plugin/rap_hash.c
+new file mode 100644
+index 0000000..7c59f38
+--- /dev/null
++++ b/scripts/gcc-plugins/rap_plugin/rap_hash.c
+@@ -0,0 +1,382 @@
++/*
++ * Copyright 2012-2016 by PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Homepage: http://pax.grsecurity.net/
++ */
++
++#include "rap.h"
++
++static rap_hash_t *rap_imprecise_hashes;
++static int rap_cgraph_max_uid;
++
++static void rap_hash_function(const_tree fntype, rap_hash_flags_t flags, unsigned char sip_hash[8]);
++
++static const unsigned char rap_hash_tree_code[MAX_TREE_CODES] = {
++      [0] = 0,
++      [1] = 0,
++      [2] = 0,
++      [3] = 0,
++      [4] = 0,
++      [OFFSET_TYPE] = 10,
++      [ENUMERAL_TYPE] = 20,
++      [BOOLEAN_TYPE] = 30,
++      [INTEGER_TYPE] = 40,
++      [REAL_TYPE] = 50,
++      [POINTER_TYPE] = 60,
++      [REFERENCE_TYPE] = 70,
++#if BUILDING_GCC_VERSION >= 4006
++      [NULLPTR_TYPE] = 80,
++#endif
++      [FIXED_POINT_TYPE] = 0,
++      [COMPLEX_TYPE] = 100,
++      [VECTOR_TYPE] = 110,
++      [ARRAY_TYPE] = 120,
++      [RECORD_TYPE] = 130,
++      [UNION_TYPE] = 140,
++      [QUAL_UNION_TYPE] = 0,
++      [VOID_TYPE] = 160,
++#if BUILDING_GCC_VERSION >= 5000
++      [POINTER_BOUNDS_TYPE] = 170,
++#endif
++      [FUNCTION_TYPE] = 180,
++      [METHOD_TYPE] = 0,
++      [LANG_TYPE] = 0,
++};
++
++static void rap_fold_hash(unsigned char *out, const unsigned char *in, unsigned long long inlen)
++{
++      static const unsigned char rap_sip_key[16] = {
++              'P', 'a', 'X', ' ', 'T', 'e', 'a', 'm',
++              'R', 'A', 'P', ' ', 'H', 'A', 'S', 'H',
++      };
++
++      siphash24fold(out, in, inlen, rap_sip_key);
++}
++
++// compute the final hash value in the range [1,INT_MAX]
++// the % and +1 trick leaves the value 0 available for marking non-indirectly callable functions
++// and INT_MIN (0x80000000) for longjmp targets (sign extended)
++// return places will use the (sign extended) range [INT_MIN+1,-1] ([0x8000001,0xffffffff])
++static rap_hash_t rap_extract_hash(const unsigned char sip_hash[8])
++{
++      rap_hash_t hash;
++      unsigned long long dividend, divisor;
++
++      memcpy(&dividend, sip_hash, sizeof dividend);
++//    divisor = 1ULL << (sizeof hash * 8 - 1);
++//    divisor |= divisor - 1;
++      divisor = 0x7fffffffUL;
++      hash.hash = dividend % divisor + 1;
++      return hash;
++}
++
++static void rap_hash_type_name(const_tree type, unsigned char sip_hash[8])
++{
++      const_tree name = type_name(TYPE_MAIN_VARIANT(type));
++
++      // handle typedefs of anonymous structs/unions
++      if (name == NULL_TREE)
++              name = type_name(type);
++
++      if (name == NULL_TREE)
++              return;
++
++      gcc_assert(TREE_CODE(name) == IDENTIFIER_NODE);
++      rap_fold_hash(sip_hash, (const unsigned char *)IDENTIFIER_POINTER(name), IDENTIFIER_LENGTH(name));
++}
++
++static void rap_hash_type_precision(const_tree type, unsigned char sip_hash[8])
++{
++      unsigned HOST_WIDE_INT size;
++
++      gcc_assert(TYPE_PRECISION(type));
++
++      size = TYPE_PRECISION(type);
++      rap_fold_hash(sip_hash, (const unsigned char *)&size, sizeof size);
++}
++
++const_tree type_name(const_tree type)
++{
++      const_tree name;
++
++      name = TYPE_NAME(type);
++      if (!name)
++              return NULL_TREE;
++
++      switch (TREE_CODE(name)) {
++      case IDENTIFIER_NODE:
++              return name;
++
++      case TYPE_DECL:
++              gcc_assert(DECL_NAME(name));
++              return DECL_NAME(name);
++
++      default:
++              gcc_unreachable();
++      }
++}
++
++__attribute__((weak)) tree c_global_trees[CTI_MAX];
++
++// the core computation of the rap hash
++// the first piece is a (hopefully) compiler independent encondig of the type, derived from the gcc tree code
++// the second piece is type specific information, such as the size, qualifiers, (recursively) referenced types, etc
++static void rap_hash_tree(const_tree type, rap_hash_flags_t flags, unsigned char sip_hash[8])
++{
++      enum tree_code code;
++      unsigned int attrs;
++
++      code = TREE_CODE(type);
++      attrs = rap_hash_tree_code[code];
++      if (!attrs) {
++              fprintf(stderr, "unhandled tree_code %s %d\n", get_tree_code_name(code), code);
++              debug_tree(type);
++              gcc_unreachable();
++      }
++      rap_fold_hash(sip_hash, (const unsigned char *)&attrs, sizeof attrs);
++
++      enum {
++      // attrs layout for
++              // - all types:
++              RAP_HASH_VOLATILE               = 1U << 31,
++              RAP_HASH_NOT_VOLATILE           = 1U << 30,
++              RAP_HASH_CONST                  = 1U << 29,
++              RAP_HASH_NOT_CONST              = 1U << 28,
++
++              // - pointer types:
++              RAP_HASH_RESTRICT               = 1U << 27,
++              RAP_HASH_NOT_RESTRICT           = 1U << 26,
++
++              // - C integer types:
++              RAP_HASH_UNSIGNED               = 1U << 25,
++              RAP_HASH_SIGNED                 = 1U << 24,
++
++              RAP_HASH_UNQUALIFIED_CHAR       = 1U << 23,
++              RAP_HASH_CHAR                   = 1U << 22,
++              RAP_HASH_SHORT                  = 1U << 21,
++              RAP_HASH_INT                    = 1U << 20,
++              RAP_HASH_LONG                   = 1U << 19,
++              RAP_HASH_LONG_LONG              = 1U << 18,
++              RAP_HASH_WCHAR                  = 1U << 17,
++              RAP_HASH_CHAR16                 = 1U << 16,
++              RAP_HASH_CHAR32                 = 1U << 15,
++
++              // - C float types
++              RAP_HASH_FLOAT                  = 1U << 14,
++              RAP_HASH_DOUBLE                 = 1U << 13,
++              RAP_HASH_LONG_DOUBLE            = 1U << 12,
++              RAP_HASH_DFLOAT32               = 1U << 11,
++              RAP_HASH_DFLOAT64               = 1U << 10,
++              RAP_HASH_DFLOAT128              = 1U << 9,
++      };
++
++      attrs = 0;
++      if (flags.qual_volatile)
++              attrs |= TYPE_VOLATILE(type) ? RAP_HASH_VOLATILE : RAP_HASH_NOT_VOLATILE;
++      if (flags.qual_const)
++              attrs |= TYPE_READONLY(type) ? RAP_HASH_CONST : RAP_HASH_NOT_CONST;
++
++      switch (code) {
++      default:
++              debug_tree(type);
++              gcc_unreachable();
++              break;
++
++      case VOID_TYPE:
++              break;
++
++      case OFFSET_TYPE:
++              rap_hash_tree(TREE_TYPE(type), flags, sip_hash);
++              rap_hash_tree(TYPE_OFFSET_BASETYPE(type), flags, sip_hash);
++              break;
++
++      case FUNCTION_TYPE:
++              rap_hash_function(type, flags, sip_hash);
++              break;
++
++      case RECORD_TYPE:
++              rap_hash_type_name(type, sip_hash);
++              break;
++
++      case UNION_TYPE:
++              rap_hash_type_name(type, sip_hash);
++              break;
++
++      case POINTER_TYPE:
++      case REFERENCE_TYPE:
++              rap_hash_tree(TREE_TYPE(type), flags, sip_hash);
++              break;
++
++      case VECTOR_TYPE:
++              rap_hash_tree(TREE_TYPE(type), flags, sip_hash);
++              rap_hash_type_precision(TREE_TYPE(type), sip_hash);
++              break;
++
++      case ARRAY_TYPE:
++              rap_hash_tree(TREE_TYPE(type), flags, sip_hash);
++              break;
++
++      case REAL_TYPE: {
++              const_tree main_variant = TYPE_MAIN_VARIANT(type);
++
++              switch (TYPE_PRECISION(main_variant)) {
++              default:
++                      debug_tree(type);
++                      debug_tree(TYPE_MAIN_VARIANT(type));
++                      gcc_unreachable();
++
++              case 32:
++//                    attrs |= RAP_HASH_FLOAT;
++                      break;
++
++              case 64:
++//                    attrs |= RAP_HASH_DOUBLE;
++                      break;
++
++              case 80:
++              case 128:
++                      attrs |= RAP_HASH_LONG_DOUBLE;
++                      break;
++              }
++              rap_hash_type_precision(main_variant, sip_hash);
++              break;
++      }
++
++      case ENUMERAL_TYPE:
++              rap_hash_type_name(type, sip_hash);
++      case BOOLEAN_TYPE:
++              rap_hash_type_precision(type, sip_hash);
++              break;
++
++      case INTEGER_TYPE: {
++              attrs |= TYPE_UNSIGNED(type) ? RAP_HASH_UNSIGNED : RAP_HASH_SIGNED;
++              rap_hash_type_precision(type, sip_hash);
++              break;
++      }
++      }
++
++      rap_fold_hash(sip_hash, (const unsigned char *)&attrs, sizeof attrs);
++}
++
++static const_tree rap_dequal_argtype(const_tree argtype)
++{
++      // since gcc/tree.c:free_lang_data_in_type removes const/volatile from the top level param decl
++      // we have to simulate it here as this can be called earlier from the frontend as well
++      if (TYPE_READONLY(argtype) || TYPE_VOLATILE(argtype)) {
++              int quals;
++
++              quals = TYPE_QUALS(argtype) & ~TYPE_QUAL_CONST & ~TYPE_QUAL_VOLATILE;
++              argtype = build_qualified_type(CONST_CAST_TREE(argtype), quals);
++      }
++
++      return argtype;
++}
++
++// main function to compute the rap hash for function types
++// while virtual class methods are always replaced with their ancestor,
++// callers can decide whether to fully utilize that information via flags.method_ancestor
++static void rap_hash_function(const_tree fntype, rap_hash_flags_t flags, unsigned char sip_hash[8])
++{
++      function_args_iterator args_iter;
++      const_tree arg;
++
++      switch (TREE_CODE(fntype)) {
++      default:
++              debug_tree(fntype);
++              gcc_unreachable();
++
++      case FUNCTION_TYPE:
++              // 1. hash the result
++              rap_hash_tree(TREE_TYPE(fntype), flags, sip_hash);
++
++              // 2. hash the function parameters
++              FOREACH_FUNCTION_ARGS(fntype, arg, args_iter) {
++                      const_tree argtype = arg;
++
++                      argtype = rap_dequal_argtype(argtype);
++                      rap_hash_tree(argtype, flags, sip_hash);
++              }
++              break;
++      }
++}
++
++rap_hash_t rap_hash_function_type(const_tree fntype, rap_hash_flags_t flags)
++{
++      unsigned char sip_hash[8] = { };
++      rap_hash_t hash;
++
++      rap_hash_function(fntype, flags, sip_hash);
++      hash = rap_extract_hash(sip_hash);
++
++      gcc_assert(hash.hash);
++      return hash;
++}
++
++rap_hash_t rap_hash_function_decl(const_tree fndecl, rap_hash_flags_t flags)
++{
++      tree fntype;
++
++      gcc_assert(TREE_CODE(fndecl) == FUNCTION_DECL);
++      fntype = TREE_TYPE(fndecl);
++
++      switch (TREE_CODE(fntype)) {
++      default:
++              debug_tree(fndecl);
++              gcc_unreachable();
++
++      case FUNCTION_TYPE:
++              return rap_hash_function_type(fntype, flags);
++      }
++}
++
++rap_hash_t rap_hash_function_node_imprecise(cgraph_node_ptr node)
++{
++      rap_hash_t hash;
++      tree fndecl;
++
++      gcc_assert(rap_imprecise_hashes);
++
++      hash.hash = 0;
++      if (node->uid < rap_cgraph_max_uid)
++              hash = rap_imprecise_hashes[node->uid];
++
++      if (hash.hash)
++              return hash;
++
++      fndecl = NODE_DECL(node);
++      if (TREE_CODE(TREE_TYPE(fndecl)) == FUNCTION_TYPE)
++              return rap_hash_function_decl(fndecl, imprecise_rap_hash_flags);
++
++      debug_cgraph_node(node);
++      debug_tree(fndecl);
++      error("indirect call to function %qD with a reserved hash value", fndecl);
++      return hash;
++}
++
++void rap_calculate_func_hashes(void *event_data __unused, void *data __unused)
++{
++      cgraph_node_ptr node;
++      int uid;
++
++      gcc_assert(!rap_imprecise_hashes);
++
++      rap_imprecise_hashes = (rap_hash_t *)xcalloc(cgraph_max_uid, sizeof(*rap_imprecise_hashes));
++      rap_cgraph_max_uid = cgraph_max_uid;
++
++      FOR_EACH_FUNCTION(node) {
++              const_tree fndecl;
++
++              uid = node->uid;
++              gcc_assert(uid < rap_cgraph_max_uid);
++
++              if (node->global.inlined_to)
++                      continue;
++
++              fndecl = NODE_DECL(node);
++              gcc_assert(fndecl);
++
++              rap_imprecise_hashes[uid] = rap_hash_function_decl(fndecl, imprecise_rap_hash_flags);
++              gcc_assert(rap_imprecise_hashes[uid].hash);
++      }
++}
+diff --git a/scripts/gcc-plugins/rap_plugin/rap_plugin.c b/scripts/gcc-plugins/rap_plugin/rap_plugin.c
+new file mode 100644
+index 0000000..e42b7e5
+--- /dev/null
++++ b/scripts/gcc-plugins/rap_plugin/rap_plugin.c
+@@ -0,0 +1,515 @@
++/*
++ * Copyright 2012-2016 by PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Homepage: http://pax.grsecurity.net/
++ *
++ * Usage:
++ * $ # for 4.5/4.6/C based 4.7
++ * $ gcc -I`gcc -print-file-name=plugin`/include -I`gcc -print-file-name=plugin`/include/c-family -fPIC -shared -O2 -o rap_plugin.so rap_plugin.c
++ * $ # for C++ based 4.7/4.8+
++ * $ g++ -I`g++ -print-file-name=plugin`/include -I`g++ -print-file-name=plugin`/include/c-family -fPIC -shared -O2 -o rap_plugin.so rap_plugin.c
++ * $ gcc -fplugin=./rap_plugin.so -fplugin-arg-rap_plugin-check=call test.c -O2
++ */
++
++#include "rap.h"
++
++__visible int plugin_is_GPL_compatible;
++
++static struct plugin_info rap_plugin_info = {
++      .version        = "201604272100",
++      .help           = "check=call\tenable the corresponding features\n"
++                        "hash=abs,abs-finish,const,volatile\n"
++                        "report=func,fptr,abs\n"
++};
++
++rap_hash_flags_t imprecise_rap_hash_flags = {
++      .qual_const     = 1,
++      .qual_volatile  = 1,
++};
++
++tree rap_hash_type_node;
++
++static bool report_func_hash, report_abs_hash;
++
++// create the equivalent of
++// asm volatile("" : : : "memory");
++// or
++// asm("" : "+rm"(var));
++// or
++// asm("" : : "rm"(var));
++gimple barrier(tree var, bool full)
++{
++      gimple stmt;
++      gasm *asm_stmt;
++#if BUILDING_GCC_VERSION <= 4007
++      VEC(tree, gc) *inputs = NULL;
++      VEC(tree, gc) *outputs = NULL;
++      VEC(tree, gc) *clobbers = NULL;
++#else
++      vec<tree, va_gc> *inputs = NULL;
++      vec<tree, va_gc> *outputs = NULL;
++      vec<tree, va_gc> *clobbers = NULL;
++#endif
++
++      if (!var && full) {
++              tree clobber;
++
++              clobber = build_tree_list(NULL_TREE, build_string(7, "memory"));
++#if BUILDING_GCC_VERSION <= 4007
++              VEC_safe_push(tree, gc, clobbers, clobber);
++#else
++              vec_safe_push(clobbers, clobber);
++#endif
++      } else if (full) {
++              tree input, output;
++
++              input = build_tree_list(NULL_TREE, build_string(2, "0"));
++              input = chainon(NULL_TREE, build_tree_list(input, var));
++#if BUILDING_GCC_VERSION <= 4007
++              VEC_safe_push(tree, gc, inputs, input);
++#else
++              vec_safe_push(inputs, input);
++#endif
++
++              output = build_tree_list(NULL_TREE, build_string(4, "=rm"));
++              gcc_assert(SSA_NAME_VAR(var));
++              var = make_ssa_name(SSA_NAME_VAR(var), NULL);
++              output = chainon(NULL_TREE, build_tree_list(output, var));
++#if BUILDING_GCC_VERSION <= 4007
++              VEC_safe_push(tree, gc, outputs, output);
++#else
++              vec_safe_push(outputs, output);
++#endif
++      } else {
++              tree input;
++
++              input = build_tree_list(NULL_TREE, build_string(3, "rm"));
++              input = chainon(NULL_TREE, build_tree_list(input, var));
++#if BUILDING_GCC_VERSION <= 4007
++              VEC_safe_push(tree, gc, inputs, input);
++#else
++              vec_safe_push(inputs, input);
++#endif
++      }
++
++      stmt = gimple_build_asm_vec("", inputs, outputs, clobbers, NULL);
++      asm_stmt = as_a_gasm(stmt);
++      if (!var && full)
++              gimple_asm_set_volatile(asm_stmt, true);
++      else if (full)
++              SSA_NAME_DEF_STMT(var) = stmt;
++      return stmt;
++}
++
++static const struct gcc_debug_hooks *old_debug_hooks;
++static struct gcc_debug_hooks rap_debug_hooks;
++
++static bool __rap_cgraph_indirectly_callable(cgraph_node_ptr node, void *data)
++{
++#if BUILDING_GCC_VERSION >= 4008
++      if (NODE_SYMBOL(node)->externally_visible)
++#else
++      if (node->local.externally_visible)
++#endif
++              return true;
++
++      if (NODE_SYMBOL(node)->address_taken)
++              return true;
++
++      return false;
++}
++
++static bool rap_cgraph_indirectly_callable(cgraph_node_ptr node)
++{
++      return cgraph_for_node_and_aliases(node, __rap_cgraph_indirectly_callable, NULL, true);
++}
++
++static void rap_hash_align(tree decl)
++{
++      const unsigned HOST_WIDE_INT rap_hash_offset = TARGET_64BIT ? 2 * sizeof(rap_hash_t) : sizeof(rap_hash_t);
++      unsigned HOST_WIDE_INT skip;
++
++      skip = 1ULL << align_functions_log;
++      if (DECL_USER_ALIGN(decl))
++              return;
++
++      if (!optimize_function_for_speed_p(cfun))
++              return;
++
++      if (skip <= rap_hash_offset)
++              return;
++
++#ifdef TARGET_386
++      {
++              char padding[skip - rap_hash_offset];
++
++              // this byte sequence helps disassemblers not trip up on the following rap hash
++              memset(padding, 0xcc, sizeof padding - 1);
++              padding[sizeof padding - 1] = 0xb8;
++              if (TARGET_64BIT && sizeof padding > 1)
++                      padding[sizeof padding - 2] = 0x48;
++              ASM_OUTPUT_ASCII(asm_out_file, padding, sizeof padding);
++      }
++#else
++      ASM_OUTPUT_SKIP(asm_out_file, skip - rap_hash_offset);
++#endif
++}
++
++static void rap_begin_function(tree decl)
++{
++      cgraph_node_ptr node;
++      rap_hash_t imprecise_rap_hash;
++
++      gcc_assert(debug_hooks == &rap_debug_hooks);
++
++      // chain to previous callback
++      if (old_debug_hooks && old_debug_hooks->begin_function)
++              old_debug_hooks->begin_function(decl);
++
++      // align the rap hash if necessary
++      rap_hash_align(decl);
++
++      // don't compute hash for functions called only directly
++      node = cgraph_get_node(decl);
++      gcc_assert(node);
++      if (!rap_cgraph_indirectly_callable(node)) {
++              imprecise_rap_hash.hash = 0;
++      } else {
++              imprecise_rap_hash = rap_hash_function_node_imprecise(node);
++      }
++
++      if (report_func_hash)
++              inform(DECL_SOURCE_LOCATION(decl), "func rap_hash: %x %s", imprecise_rap_hash.hash, IDENTIFIER_POINTER(DECL_ASSEMBLER_NAME(decl)));
++
++      if (TARGET_64BIT)
++              fprintf(asm_out_file, "\t.quad %#lx\t%s __rap_hash_%s\n", (long)imprecise_rap_hash.hash, ASM_COMMENT_START, IDENTIFIER_POINTER(DECL_ASSEMBLER_NAME(decl)));
++      else
++              fprintf(asm_out_file, "\t.long %#x\t%s __rap_hash_%s\n", imprecise_rap_hash.hash, ASM_COMMENT_START, IDENTIFIER_POINTER(DECL_ASSEMBLER_NAME(decl)));
++}
++
++static void rap_start_unit_common(void *gcc_data __unused, void *user_data __unused)
++{
++      rap_hash_type_node = long_integer_type_node;
++
++      if (debug_hooks)
++              rap_debug_hooks = *debug_hooks;
++      rap_debug_hooks.begin_function = rap_begin_function;
++      old_debug_hooks = debug_hooks;
++      debug_hooks = &rap_debug_hooks;
++}
++
++/*
++   emit an absolute symbol for each function that may be referenced through the plt
++     - all externs
++     - non-static functions
++       - use visibility instead?
++
++   .globl __rap_hash_func
++   .offset 0xhash_for_func
++   .type __rap_hash_func, @object
++   __rap_hash_func:
++   .previous
++*/
++static void rap_finish_unit(void *gcc_data __unused, void *user_data __unused)
++{
++      cgraph_node_ptr node;
++      rap_hash_t hash;
++
++      gcc_assert(debug_hooks == &rap_debug_hooks);
++
++      hash.hash = 0;
++      FOR_EACH_FUNCTION(node) {
++              tree fndecl;
++              const char *asmname;
++              char *name = NULL;
++
++              if (cgraph_function_body_availability(node) >= AVAIL_INTERPOSABLE) {
++                      if (node->thunk.thunk_p || node->alias)
++                              continue;
++                      if (!rap_cgraph_indirectly_callable(node))
++                              continue;
++              }
++
++#if BUILDING_GCC_VERSION >= 4007
++              gcc_assert(cgraph_function_or_thunk_node(node, NULL) == node);
++#endif
++
++              fndecl = NODE_DECL(node);
++              gcc_assert(fndecl);
++              if (DECL_IS_BUILTIN(fndecl) && DECL_BUILT_IN_CLASS(fndecl) == BUILT_IN_NORMAL)
++                      continue;
++
++              if (!TREE_PUBLIC(fndecl))
++                      continue;
++
++              if (DECL_ARTIFICIAL(fndecl))
++                      continue;
++
++              if (DECL_ABSTRACT_ORIGIN(fndecl) && DECL_ABSTRACT_ORIGIN(fndecl) != fndecl)
++                      continue;
++
++              gcc_assert(DECL_ASSEMBLER_NAME(fndecl));
++              asmname = IDENTIFIER_POINTER(DECL_ASSEMBLER_NAME(fndecl));
++              if (strchr(asmname, '.'))
++                      continue;
++
++              if (asmname[0] == '*')
++                      asmname++;
++
++              gcc_assert(asmname[0]);
++              gcc_assert(asprintf(&name, "__rap_hash_%s", asmname) != -1);
++
++              hash = rap_hash_function_node_imprecise(node);
++              if (report_abs_hash)
++                      inform(DECL_SOURCE_LOCATION(fndecl), "abs rap_hash: %x %s", hash.hash, IDENTIFIER_POINTER(DECL_ASSEMBLER_NAME(fndecl)));
++
++              fprintf(asm_out_file, GLOBAL_ASM_OP " %s\n", name);
++              if (TARGET_64BIT)
++                      fprintf(asm_out_file, "\t.offset %#lx\n", (long)hash.hash);
++              else
++                      fprintf(asm_out_file, "\t.offset %#x\n", hash.hash);
++              ASM_OUTPUT_TYPE_DIRECTIVE(asm_out_file, name, "object");
++              ASM_OUTPUT_LABEL(asm_out_file, name);
++              free(name);
++      }
++
++      if (hash.hash)
++              fprintf(asm_out_file, "\t.previous\n");
++}
++
++#if BUILDING_GCC_VERSION >= 4007
++// emit the rap hash as an absolute symbol for all functions seen in the frontend
++// this is necessary as later unreferenced nodes will be removed yet we'd like to emit as many hashes as possible
++static void rap_finish_decl(void *event_data, void *data __unused)
++{
++      tree fndecl = (tree)event_data;
++      rap_hash_t hash;
++      const char *asmname;
++      char *name = NULL;
++
++      if (fndecl == error_mark_node)
++              return;
++
++      if (TREE_CODE(fndecl) != FUNCTION_DECL)
++              return;
++
++      if (!TREE_PUBLIC(fndecl))
++              return;
++
++      if (DECL_ARTIFICIAL(fndecl))
++              return;
++
++      if (DECL_ABSTRACT_ORIGIN(fndecl) && DECL_ABSTRACT_ORIGIN(fndecl) != fndecl)
++              return;
++
++      asmname = DECL_NAME_POINTER(fndecl);
++      gcc_assert(asmname[0]);
++
++      if (strchr(asmname, '.'))
++              return;
++
++      gcc_assert(asprintf(&name, "__rap_hash_%s", asmname) != -1);
++
++      hash = rap_hash_function_decl(fndecl, imprecise_rap_hash_flags);
++
++      if (report_abs_hash)
++              inform(DECL_SOURCE_LOCATION(fndecl), "abs rap_hash: %x %s", hash.hash, asmname);
++
++      fprintf(asm_out_file, GLOBAL_ASM_OP " %s\n", name);
++      if (TARGET_64BIT)
++              fprintf(asm_out_file, "\t.offset %#lx\n", (long)hash.hash);
++      else
++              fprintf(asm_out_file, "\t.offset %#x\n", hash.hash);
++      ASM_OUTPUT_TYPE_DIRECTIVE(asm_out_file, name, "object");
++      ASM_OUTPUT_LABEL(asm_out_file, name);
++      free(name);
++
++      fprintf(asm_out_file, "\t.previous\n");
++}
++#endif
++
++static bool rap_unignore_gate(void)
++{
++      if (!DECL_IGNORED_P(current_function_decl))
++              return false;
++
++      inform(DECL_SOURCE_LOCATION(current_function_decl), "DECL_IGNORED fixed");
++
++      DECL_IGNORED_P(current_function_decl) = 0;
++      return false;
++}
++
++#define PASS_NAME rap_unignore
++#define NO_EXECUTE
++#define TODO_FLAGS_FINISH TODO_dump_func
++#include "gcc-generate-rtl-pass.h"
++
++static bool rap_version_check(struct plugin_gcc_version *gcc_version, struct plugin_gcc_version *plugin_version)
++{
++      if (!gcc_version || !plugin_version)
++              return false;
++
++#if BUILDING_GCC_VERSION >= 5000
++      if (strncmp(gcc_version->basever, plugin_version->basever, 4))
++#else
++      if (strcmp(gcc_version->basever, plugin_version->basever))
++#endif
++              return false;
++      if (strcmp(gcc_version->datestamp, plugin_version->datestamp))
++              return false;
++      if (strcmp(gcc_version->devphase, plugin_version->devphase))
++              return false;
++      if (strcmp(gcc_version->revision, plugin_version->revision))
++              return false;
++//    if (strcmp(gcc_version->configuration_arguments, plugin_version->configuration_arguments))
++//            return false;
++      return true;
++}
++
++EXPORTED_CONST struct ggc_root_tab gt_ggc_r_gt_rap[] = {
++      {
++              .base = &rap_hash_type_node,
++              .nelt = 1,
++              .stride = sizeof(rap_hash_type_node),
++              .cb = &gt_ggc_mx_tree_node,
++              .pchw = &gt_pch_nx_tree_node
++      },
++      LAST_GGC_ROOT_TAB
++};
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      int i;
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      bool enable_call = false;
++      bool enable_abs = false, enable_abs_finish = false;
++
++      struct register_pass_info rap_fptr_pass_info;
++      struct register_pass_info rap_unignore_pass_info;
++
++      rap_fptr_pass_info.pass                                         = make_rap_fptr_pass();
++      rap_fptr_pass_info.reference_pass_name                          = "nrv";
++      rap_fptr_pass_info.ref_pass_instance_number                     = 1;
++      rap_fptr_pass_info.pos_op                                       = PASS_POS_INSERT_AFTER;
++
++      rap_unignore_pass_info.pass                                     = make_rap_unignore_pass();
++      rap_unignore_pass_info.reference_pass_name                      = "final";
++      rap_unignore_pass_info.ref_pass_instance_number                 = 1;
++      rap_unignore_pass_info.pos_op                                   = PASS_POS_INSERT_BEFORE;
++
++      if (!rap_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++#if BUILDING_GCC_VERSION >= 5000
++      if (flag_ipa_icf_functions) {
++//            warning_at(UNKNOWN_LOCATION, 0, G_("-fipa-icf is incompatible with %s, disabling..."), plugin_name);
++//            inform(UNKNOWN_LOCATION, G_("-fipa-icf is incompatible with %s, disabling..."), plugin_name);
++              flag_ipa_icf_functions = 0;
++      }
++#endif
++
++      for (i = 0; i < argc; ++i) {
++              if (!strcmp(argv[i].key, "disable"))
++                      continue;
++
++              if (!strcmp(argv[i].key, "check")) {
++                      char *values, *value, *saveptr;
++
++                      if (!argv[i].value) {
++                              error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++                              continue;
++                      }
++
++                      values = xstrdup(argv[i].value);
++                      value = strtok_r(values, ",", &saveptr);
++                      while (value) {
++                              if (!strcmp(value, "call"))
++                                      enable_call = true;
++                              else
++                                      error(G_("unknown value supplied for option '-fplugin-arg-%s-%s=%s'"), plugin_name, argv[i].key, value);
++                              value = strtok_r(NULL, ",", &saveptr);
++                      }
++                      free(values);
++                      continue;
++              }
++
++              if (!strcmp(argv[i].key, "hash")) {
++                      char *values, *value, *saveptr;
++
++                      if (!argv[i].value) {
++                              error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++                              continue;
++                      }
++
++                      values = xstrdup(argv[i].value);
++                      value = strtok_r(values, ",", &saveptr);
++                      while (value) {
++                              if (!strcmp(value, "abs"))
++                                      enable_abs = enable_abs_finish = true;
++                              else if (!strcmp(value, "abs-finish"))
++                                      enable_abs_finish = true;
++//                            else if (!strcmp(value, "const"))
++//                                    imprecise_rap_hash_flags.qual_const = 1;
++//                            else if (!strcmp(value, "volatile"))
++//                                    imprecise_rap_hash_flags.qual_volatile = 1;
++                              else
++                                      error(G_("unknown value supplied for option '-fplugin-arg-%s-%s=%s'"), plugin_name, argv[i].key, value);
++                              value = strtok_r(NULL, ",", &saveptr);
++                      }
++                      free(values);
++                      continue;
++              }
++
++              if (!strcmp(argv[i].key, "report")) {
++                      char *values, *value, *saveptr;
++
++                      if (!argv[i].value) {
++                              error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++                              continue;
++                      }
++
++                      values = xstrdup(argv[i].value);
++                      value = strtok_r(values, ",", &saveptr);
++                      while (value) {
++                              if (!strcmp(value, "func"))
++                                      report_func_hash = true;
++                              else if (!strcmp(value, "fptr"))
++                                      report_fptr_hash = true;
++                              else if (!strcmp(value, "abs"))
++                                      report_abs_hash = true;
++                              else
++                                      error(G_("unknown value supplied for option '-fplugin-arg-%s-%s=%s'"), plugin_name, argv[i].key, value);
++                              value = strtok_r(NULL, ",", &saveptr);
++                      }
++                      free(values);
++                      continue;
++              }
++
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &rap_plugin_info);
++
++      if (enable_call) {
++#if BUILDING_GCC_VERSION >= 4007
++              if (enable_abs)
++                      register_callback(plugin_name, PLUGIN_FINISH_DECL, rap_finish_decl, NULL);
++#else
++#warning TODO
++#endif
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &rap_unignore_pass_info);
++              register_callback(plugin_name, PLUGIN_START_UNIT, rap_start_unit_common, NULL);
++              register_callback(plugin_name, PLUGIN_REGISTER_GGC_ROOTS, NULL, (void *)&gt_ggc_r_gt_rap);
++              if (enable_abs_finish)
++                      register_callback(plugin_name, PLUGIN_FINISH_UNIT, rap_finish_unit, NULL);
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &rap_fptr_pass_info);
++              register_callback(plugin_name, PLUGIN_ALL_IPA_PASSES_START, rap_calculate_func_hashes, NULL);
++      }
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/rap_plugin/sip.c b/scripts/gcc-plugins/rap_plugin/sip.c
+new file mode 100644
+index 0000000..65bc1cd
+--- /dev/null
++++ b/scripts/gcc-plugins/rap_plugin/sip.c
+@@ -0,0 +1,96 @@
++// SipHash-2-4 adapted by the PaX Team from the public domain version written by
++//   Jean-Philippe Aumasson <jeanphilippe.aumasson@gmail.com>
++//   Daniel J. Bernstein <djb@cr.yp.to>
++
++#include <stdint.h>
++
++#define ROTL(x, b) (u64)(((x) << (b)) | ((x) >> (64 - (b))))
++
++#define U32TO8_LE(p, v)                                               \
++      (p)[0] = (u8)((v)      ); (p)[1] = (u8)((v) >>  8);     \
++      (p)[2] = (u8)((v) >> 16); (p)[3] = (u8)((v) >> 24);
++
++#define U64TO8_LE(p, v)                               \
++      U32TO8_LE((p),     (u32)((v)      ));   \
++      U32TO8_LE((p) + 4, (u32)((v) >> 32));
++
++#define U8TO64_LE(p)  (       \
++      ((u64)((p)[0])      ) | \
++      ((u64)((p)[1]) <<  8) | \
++      ((u64)((p)[2]) << 16) | \
++      ((u64)((p)[3]) << 24) | \
++      ((u64)((p)[4]) << 32) | \
++      ((u64)((p)[5]) << 40) | \
++      ((u64)((p)[6]) << 48) | \
++      ((u64)((p)[7]) << 56))
++
++#define SIPROUND                                                      \
++do {                                                                  \
++      v0 += v1; v1 = ROTL(v1, 13); v1 ^= v0; v0 = ROTL(v0, 32);       \
++      v2 += v3; v3 = ROTL(v3, 16); v3 ^= v2;                          \
++      v0 += v3; v3 = ROTL(v3, 21); v3 ^= v0;                          \
++      v2 += v1; v1 = ROTL(v1, 17); v1 ^= v2; v2 = ROTL(v2, 32);       \
++} while(0)
++
++typedef uint64_t u64;
++typedef uint32_t u32;
++typedef uint8_t u8;
++
++/* SipHash-2-4 with previous output folding, a poor man's streaming interface */
++void siphash24fold(unsigned char *out, const unsigned char *in, unsigned long long inlen, const unsigned char *k);
++
++void siphash24fold(unsigned char *out, const unsigned char *in, unsigned long long inlen, const unsigned char *k)
++{
++      u64 k0 = U8TO64_LE(k);
++      u64 k1 = U8TO64_LE(k + 8);
++      /* "somepseudorandomlygeneratedbytes" */
++      u64 v0 = 0x736f6d6570736575ULL ^ k0;
++      u64 v1 = 0x646f72616e646f6dULL ^ k1;
++      u64 v2 = 0x6c7967656e657261ULL ^ k0;
++      u64 v3 = 0x7465646279746573ULL ^ k1;
++      u64 b, m;
++      const u8 * const end = in + inlen - (inlen % sizeof(u64));
++      const int left = inlen & 7;
++      b = ((u64)inlen) << 56;
++
++      // fold in the previous output
++      m = U8TO64_LE(out);
++      v3 ^= m;
++      SIPROUND;
++      SIPROUND;
++      v0 ^= m;
++
++      // consume full input blocks
++      for (; in != end; in += 8) {
++              m = U8TO64_LE(in);
++              v3 ^= m;
++              SIPROUND;
++              SIPROUND;
++              v0 ^= m;
++      }
++
++      // consume the last potentially partial block
++      switch (left) {
++      case 7: b |= ((u64)in[6]) << 48;
++      case 6: b |= ((u64)in[5]) << 40;
++      case 5: b |= ((u64)in[4]) << 32;
++      case 4: b |= ((u64)in[3]) << 24;
++      case 3: b |= ((u64)in[2]) << 16;
++      case 2: b |= ((u64)in[1]) <<  8;
++      case 1: b |= ((u64)in[0]); break;
++      case 0: break;
++      }
++
++      // finalize
++      v3 ^= b;
++      SIPROUND;
++      SIPROUND;
++      v0 ^= b;
++      v2 ^= 0xff;
++      SIPROUND;
++      SIPROUND;
++      SIPROUND;
++      SIPROUND;
++      b = v0 ^ v1 ^ v2 ^ v3;
++      U64TO8_LE(out, b);
++}
+diff --git a/scripts/gcc-plugins/sancov_plugin.c b/scripts/gcc-plugins/sancov_plugin.c
+index aedd611..7ea0b3f 100644
+--- a/scripts/gcc-plugins/sancov_plugin.c
++++ b/scripts/gcc-plugins/sancov_plugin.c
+@@ -21,7 +21,7 @@
+ #include "gcc-common.h"
+-int plugin_is_GPL_compatible;
++__visible int plugin_is_GPL_compatible;
+ tree sancov_fndecl;
+@@ -86,7 +86,7 @@ static void sancov_start_unit(void __unused *gcc_data, void __unused *user_data)
+ #endif
+ }
+-int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
+ {
+       int i;
+       struct register_pass_info sancov_plugin_pass_info;
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/.gitignore b/scripts/gcc-plugins/size_overflow_plugin/.gitignore
+new file mode 100644
+index 0000000..36211fb
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/.gitignore
+@@ -0,0 +1,2 @@
++disable.h
++e_*.h
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/Makefile b/scripts/gcc-plugins/size_overflow_plugin/Makefile
+new file mode 100644
+index 0000000..62c26c9
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/Makefile
+@@ -0,0 +1,22 @@
++HOST_EXTRACXXFLAGS += $(call hostcc-option, -fno-ipa-icf)
++
++$(HOSTLIBS)-$(CONFIG_PAX_SIZE_OVERFLOW) += size_overflow_plugin.so
++always := $($(HOSTLIBS)-y)
++
++size_overflow_plugin-objs := $(patsubst $(srctree)/$(src)/%.c,%.o,$(wildcard $(srctree)/$(src)/*.c))
++
++quiet_cmd_build_size_overflow_hash = GENHASH  $@
++      cmd_build_size_overflow_hash = \
++      $(CONFIG_SHELL) $(srctree)/$(src)/generate_size_overflow_hash.sh -s $(patsubst e_%,%,$(patsubst $(obj)/%.h,%,$@))_hash -d $< -o $@
++
++define build_size_overflow_hash
++targets += $(addsuffix .h,$(1))
++$(srctree)/$(src)/size_overflow_plugin_hash.c: $(addprefix $(objtree)/$(obj)/,$(addsuffix .h,$(1)))
++$(addprefix $(objtree)/$(obj)/,$(addsuffix .h,$(1))): $(addprefix $(src)/,$(addsuffix .data,$(1)))
++      $$(call if_changed,build_size_overflow_hash)
++endef
++
++size_overflow_hash_tables := e_fns e_fields e_fptrs e_vars e_aux disable
++$(foreach h,$(size_overflow_hash_tables),$(eval $(call build_size_overflow_hash,$(h))))
++
++clean-files += *.so
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/disable.data b/scripts/gcc-plugins/size_overflow_plugin/disable.data
+new file mode 100644
+index 0000000..925b27a
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/disable.data
+@@ -0,0 +1,12471 @@
++disable_so_interrupt_pnode_gru_message_queue_desc_4 interrupt_pnode gru_message_queue_desc 0 4 NULL
++disable_so_bch_btree_insert_fndecl_12 bch_btree_insert fndecl 0 12 NULL
++disable_so_macvlan_sync_address_fndecl_22 macvlan_sync_address fndecl 0 22 NULL nohasharray
++disable_so_sil_iowrite8_fndecl_22 sil_iowrite8 fndecl 3-2 22 &disable_so_macvlan_sync_address_fndecl_22
++disable_so_addr_to_user_sctp_pf_23 addr_to_user sctp_pf 0 23 NULL nohasharray
++disable_so_signalquality_rtl_stats_23 signalquality rtl_stats 0 23 &disable_so_addr_to_user_sctp_pf_23
++disable_so_sem_otime_semid64_ds_29 sem_otime semid64_ds 0 29 NULL
++disable_so_rec8b_ide_timing_33 rec8b ide_timing 0 33 NULL
++disable_so_stime_task_struct_41 stime task_struct 0 41 NULL nohasharray
++disable_so_ulist_rbtree_search_fndecl_41 ulist_rbtree_search fndecl 2 41 &disable_so_stime_task_struct_41
++disable_so_pfuze100_set_ramp_delay_fndecl_52 pfuze100_set_ramp_delay fndecl 0-2 52 NULL
++disable_so_make_sockaddr_fndecl_54 make_sockaddr fndecl 2 54 NULL
++disable_so_mmap_min_addr_vardecl_56 mmap_min_addr vardecl 0 56 NULL nohasharray
++disable_so_mwl8k_cmd_get_watchdog_bitmap_fndecl_56 mwl8k_cmd_get_watchdog_bitmap fndecl 0 56 &disable_so_mmap_min_addr_vardecl_56
++disable_so_panel_power_down_delay_cdv_intel_dp_59 panel_power_down_delay cdv_intel_dp 0 59 NULL
++disable_so_max_ref_div_radeon_pll_60 max_ref_div radeon_pll 0 60 NULL
++disable_so_penirq_recheck_delay_usecs_ads7846_81 penirq_recheck_delay_usecs ads7846 0 81 NULL
++disable_so_cobalt_query_dv_timings_fndecl_82 cobalt_query_dv_timings fndecl 0 82 NULL
++disable_so_timeout_slgt_info_83 timeout slgt_info 0 83 NULL
++disable_so_radio_syn_reserved_addr28_b43_nphy_channeltab_entry_rev3_92 radio_syn_reserved_addr28 b43_nphy_channeltab_entry_rev3 0 92 NULL
++disable_so_vsc824x_ack_interrupt_fndecl_109 vsc824x_ack_interrupt fndecl 0 109 NULL
++disable_so_scan_timing_sh_keysc_info_117 scan_timing sh_keysc_info 0 117 NULL
++disable_so_cp_table_gpu_addr_radeon_rlc_124 cp_table_gpu_addr radeon_rlc 0 124 NULL
++disable_so_mpihelp_mul_karatsuba_case_fndecl_125 mpihelp_mul_karatsuba_case fndecl 3-5 125 NULL nohasharray
++disable_so_g84_cipher_object_ctor_fndecl_125 g84_cipher_object_ctor fndecl 0 125 &disable_so_mpihelp_mul_karatsuba_case_fndecl_125
++disable_so_current_nat_addr_fndecl_130 current_nat_addr fndecl 0-2 130 NULL
++disable_so_qla2x00_gid_pt_rsp_size_fndecl_134 qla2x00_gid_pt_rsp_size fndecl 0 134 NULL
++disable_so_zd_check_signal_fndecl_139 zd_check_signal fndecl 0-2 139 NULL
++disable_so_qlcnic_83xx_interrupt_test_fndecl_160 qlcnic_83xx_interrupt_test fndecl 0 160 NULL
++disable_so_show_cpu_clock_sel_fndecl_161 show_cpu_clock_sel fndecl 0 161 NULL
++disable_so_zd_usb_iowrite16v_async_fndecl_163 zd_usb_iowrite16v_async fndecl 3 163 NULL
++disable_so_si_get_mclk_frequency_ratio_fndecl_169 si_get_mclk_frequency_ratio fndecl 0-1 169 NULL
++disable_so_vactive_vblank_hi_detailed_pixel_timing_173 vactive_vblank_hi detailed_pixel_timing 0 173 NULL
++disable_so_ecryptfs_hash_bits_vardecl_messaging_c_174 ecryptfs_hash_bits vardecl_messaging.c 0 174 NULL
++disable_so_addr_efx_endpoint_page_189 addr efx_endpoint_page 0 189 NULL
++disable_so_uptime_proc_open_fndecl_190 uptime_proc_open fndecl 0 190 NULL
++disable_so_mtrr_tom2_vardecl_198 mtrr_tom2 vardecl 0 198 NULL
++disable_so_addr_sh_eth_txdesc_201 addr sh_eth_txdesc 0 201 NULL
++disable_so_ocfs2_info_handle_uuid_fndecl_202 ocfs2_info_handle_uuid fndecl 0 202 NULL
++disable_so_nf_oaktrail_hdmi_clock_216 nf oaktrail_hdmi_clock 0 216 NULL
++disable_so_cpufreq_p4_setdc_fndecl_226 cpufreq_p4_setdc fndecl 1-2 226 NULL
++disable_so_ieee80211_aes_ccm_decrypt_fndecl_227 ieee80211_aes_ccm_decrypt fndecl 0-5-7 227 NULL
++disable_so_l1oip_4bit_to_law_fndecl_247 l1oip_4bit_to_law fndecl 0-2 247 NULL
++disable_so_tune_timeout_vardecl_radio_si470x_common_c_250 tune_timeout vardecl_radio-si470x-common.c 0 250 NULL
++disable_so_ieee80211_aes_cmac_key_setup_fndecl_254 ieee80211_aes_cmac_key_setup fndecl 2 254 NULL
++disable_so_padlock_sha1_finup_fndecl_258 padlock_sha1_finup fndecl 0 258 NULL
++disable_so_iwl_dbgfs_interrupt_read_fndecl_261 iwl_dbgfs_interrupt_read fndecl 3-0 261 NULL
++disable_so_c2_del_addr_fndecl_280 c2_del_addr fndecl 2-3 280 NULL
++disable_so_get_systime_stmmac_hwtimestamp_281 get_systime stmmac_hwtimestamp 0 281 NULL
++disable_so_xfrm_flowi_saddr_fndecl_287 xfrm_flowi_saddr fndecl 2 287 NULL
++disable_so_lifetime_route_info_291 lifetime route_info 0 291 NULL
++disable_so_mtime_cifs_unix_set_info_args_293 mtime cifs_unix_set_info_args 0 293 NULL
++disable_so_sense_addr_mscp_296 sense_addr mscp 0 296 NULL
++disable_so_module_addr_max_rx_vardecl_module_c_304 module_addr_max_rx vardecl_module.c 0 304 NULL
++disable_so_cy8ctmg110_set_sleepmode_fndecl_309 cy8ctmg110_set_sleepmode fndecl 0 309 NULL
++disable_so_signal_cck_phy_hdr_312 signal cck_phy_hdr 0 312 NULL
++disable_so_i915_ring_freq_table_fndecl_313 i915_ring_freq_table fndecl 0 313 NULL
++disable_so_vga16fb_clock_chip_fndecl_316 vga16fb_clock_chip fndecl 2 316 NULL
++disable_so_abituguru_send_address_fndecl_319 abituguru_send_address fndecl 3 319 NULL
++disable_so_err_hci_request_321 err hci_request 0 321 NULL
++disable_so_timeout_sg_io_hdr_322 timeout sg_io_hdr 0 322 NULL
++disable_so_crypto_aead_maxauthsize_fndecl_331 crypto_aead_maxauthsize fndecl 0 331 NULL
++disable_so_gru_first_node_paddr_vardecl_x2apic_uv_x_c_335 gru_first_node_paddr vardecl_x2apic_uv_x.c 0 335 NULL
++disable_so_bitmap_subset_fndecl_340 bitmap_subset fndecl 3 340 NULL
++disable_so_intr_timer_vnic_fc_config_342 intr_timer vnic_fc_config 0 342 NULL
++disable_so_abort_timeout_iscsi_session_343 abort_timeout iscsi_session 0 343 NULL
++disable_so_crypto_authenc_esn_verify_fndecl_345 crypto_authenc_esn_verify fndecl 0 345 NULL
++disable_so_dn_hash_dump_zone_fndecl_347 dn_hash_dump_zone fndecl 0 347 NULL
++disable_so_new_center_freq_seg0_ieee80211_wide_bw_chansw_ie_350 new_center_freq_seg0 ieee80211_wide_bw_chansw_ie 0 350 NULL
++disable_so_ata_probe_timeout_vardecl_libata_core_c_353 ata_probe_timeout vardecl_libata-core.c 0 353 NULL
++disable_so_posix_cpu_clock_get_fndecl_354 posix_cpu_clock_get fndecl 1 354 NULL
++disable_so_ivtv_msleep_timeout_fndecl_356 ivtv_msleep_timeout fndecl 1 356 NULL nohasharray
++disable_so_wrmsrl_amd_safe_fndecl_356 wrmsrl_amd_safe fndecl 0 356 &disable_so_ivtv_msleep_timeout_fndecl_356
++disable_so_bp_tss_segment_16_362 bp tss_segment_16 0 362 NULL
++disable_so_btree_level_jset_372 btree_level jset 0 372 NULL
++disable_so_addr_mlx5_wqe_data_seg_376 addr mlx5_wqe_data_seg 0 376 NULL
++disable_so_pos_encryptor_desc_380 pos encryptor_desc 0 380 NULL
++disable_so_des4_idmac_desc_64addr_382 des4 idmac_desc_64addr 0 382 NULL
++disable_so_huptimer_isdn_net_local_s_386 huptimer isdn_net_local_s 0 386 NULL
++disable_so_ali_settimer_fndecl_390 ali_settimer fndecl 1 390 NULL
++disable_so_show_constraint_time_window_us_fndecl_393 show_constraint_time_window_us fndecl 0 393 NULL nohasharray
++disable_so_queue_con_delay_fndecl_393 queue_con_delay fndecl 2 393 &disable_so_show_constraint_time_window_us_fndecl_393
++disable_so_btrfs_insert_delayed_item_fndecl_394 btrfs_insert_delayed_item fndecl 0 394 NULL nohasharray
++disable_so_reg_w_fndecl_394 reg_w fndecl 3 394 &disable_so_btrfs_insert_delayed_item_fndecl_394
++disable_so_liquidio_ptp_adjfreq_fndecl_396 liquidio_ptp_adjfreq fndecl 2 396 NULL
++disable_so_freq_dvbt_set_parameters_msg_404 freq dvbt_set_parameters_msg 0 404 NULL
++disable_so_uid_btrfs_inode_item_419 uid btrfs_inode_item 0 419 NULL
++disable_so_cuid_ipc64_perm_421 cuid ipc64_perm 0 421 NULL
++disable_so_addr_nvkm_fb_tile_430 addr nvkm_fb_tile 0 430 NULL
++disable_so_st_ctime_nsec_stat_435 st_ctime_nsec stat 0 435 NULL nohasharray
++disable_so_end_seq_tcp_skb_cb_435 end_seq tcp_skb_cb 0 435 &disable_so_st_ctime_nsec_stat_435
++disable_so_ttime_samples_cfq_ttime_442 ttime_samples cfq_ttime 0 442 NULL
++disable_so_snd_timer_interrupt_fndecl_465 snd_timer_interrupt fndecl 2 465 NULL
++disable_so_min_img_ir_timing_range_466 min img_ir_timing_range 0 466 NULL
++disable_so_freq_wmi_cancel_remain_on_chnl_event_472 freq wmi_cancel_remain_on_chnl_event 0 472 NULL
++disable_so_prism54_set_mac_address_fndecl_477 prism54_set_mac_address fndecl 0 477 NULL
++disable_so_ccp_run_xts_aes_cmd_fndecl_481 ccp_run_xts_aes_cmd fndecl 0 481 NULL
++disable_so_queue_time_cqm_rmid_entry_485 queue_time cqm_rmid_entry 0 485 NULL
++disable_so_hpi_sample_clock_query_local_rate_fndecl_487 hpi_sample_clock_query_local_rate fndecl 1-0 487 NULL
++disable_so_bcma_chipco_get_alp_clock_fndecl_488 bcma_chipco_get_alp_clock fndecl 0 488 NULL
++disable_so_musb_read_txhubaddr_fndecl_495 musb_read_txhubaddr fndecl 2-0 495 NULL
++disable_so_timestamp_discovery_state_508 timestamp discovery_state 0 508 NULL
++disable_so_autosleep_show_fndecl_509 autosleep_show fndecl 0 509 NULL
++disable_so_dx_major_hash_ocfs2_dx_entry_517 dx_major_hash ocfs2_dx_entry 0 517 NULL
++disable_so_rhashtable_insert_slow_fndecl_525 rhashtable_insert_slow fndecl 0 525 NULL
++disable_so_vaddr_page_fndecl_526 vaddr_page fndecl 0 526 NULL
++disable_so_apei_check_mce_fndecl_561 apei_check_mce fndecl 0 561 NULL
++disable_so_cifs_convert_address_fndecl_567 cifs_convert_address fndecl 3 567 NULL
++disable_so_nla_put_be32_fndecl_572 nla_put_be32 fndecl 0-3 572 NULL
++disable_so_dn_username2sockaddr_fndecl_573 dn_username2sockaddr fndecl 0-2 573 NULL
++disable_so_compat_sys_timer_settime_fndecl_577 compat_sys_timer_settime fndecl 1 577 NULL
++disable_so_hash_extent_data_ref_fndecl_581 hash_extent_data_ref fndecl 0-1-2-3 581 NULL
++disable_so_addr_buffer1_cmd_desc_type0_591 addr_buffer1 cmd_desc_type0 0 591 NULL
++disable_so_acpi_os_prepare_extended_sleep_fndecl_597 acpi_os_prepare_extended_sleep fndecl 0-2 597 NULL
++disable_so_mdio_addr_port_info_608 mdio_addr port_info 0 608 NULL
++disable_so_dl_runtime_dl_bandwidth_609 dl_runtime dl_bandwidth 0 609 NULL
++disable_so_sense_addr_asc_scsiq_1_628 sense_addr asc_scsiq_1 0 628 NULL
++disable_so_x86_cache_max_rmid_cpuinfo_x86_631 x86_cache_max_rmid cpuinfo_x86 0 631 NULL
++disable_so_wm8978_set_dai_clkdiv_fndecl_638 wm8978_set_dai_clkdiv fndecl 3-0 638 NULL
++disable_so_new_cpufreq_freqs_646 new cpufreq_freqs 0 646 NULL
++disable_so_max_offchan_duration_iwl_tdls_channel_switch_timing_649 max_offchan_duration iwl_tdls_channel_switch_timing 0 649 NULL
++disable_so_i_ctime_nsec_ocfs2_dinode_657 i_ctime_nsec ocfs2_dinode 0 657 NULL
++disable_so_req_dma_addr_generic_pdu_resc_661 req_dma_addr generic_pdu_resc 0 661 NULL
++disable_so_minor_hash_fname_673 minor_hash fname 0 673 NULL
++disable_so_sprintf_temp_from_reg_fndecl_675 sprintf_temp_from_reg fndecl 0-3 675 NULL
++disable_so_cpu_freq_to_power_fndecl_677 cpu_freq_to_power fndecl 0-2 677 NULL
++disable_so_timbradio_vidioc_s_frequency_fndecl_688 timbradio_vidioc_s_frequency fndecl 0 688 NULL
++disable_so_target_bfa_bsg_rport_scsi_addr_s_690 target bfa_bsg_rport_scsi_addr_s 0 690 NULL
++disable_so_cs_addr_snd_ak4xxx_private_693 cs_addr snd_ak4xxx_private 0 693 NULL
++disable_so_s3_set_pixclock_fndecl_694 s3_set_pixclock fndecl 2 694 NULL
++disable_so_write_gracetime_fndecl_705 write_gracetime fndecl 0 705 NULL
++disable_so_smack_task_getpgid_fndecl_708 smack_task_getpgid fndecl 0 708 NULL
++disable_so_wl1251_acx_service_period_timeout_fndecl_709 wl1251_acx_service_period_timeout fndecl 0 709 NULL
++disable_so_gid_ubifs_ino_node_712 gid ubifs_ino_node 0 712 NULL
++disable_so___sony_nc_kbd_backlight_timeout_set_fndecl_713 __sony_nc_kbd_backlight_timeout_set fndecl 1 713 NULL
++disable_so_watchdog_init_timeout_fndecl_721 watchdog_init_timeout fndecl 2 721 NULL
++disable_so_led_on_time_adp8870_backlight_platform_data_723 led_on_time adp8870_backlight_platform_data 0 723 NULL
++disable_so_txhubaddr_musb_csr_regs_727 txhubaddr musb_csr_regs 0 727 NULL
++disable_so_flexonenand_addr_fndecl_731 flexonenand_addr fndecl 0-2 731 NULL
++disable_so_scan_timestamp_local_info_733 scan_timestamp local_info 0 733 NULL
++disable_so_brcmf_dongle_scantime_fndecl_735 brcmf_dongle_scantime fndecl 2-3-4-0 735 NULL
++disable_so_pg_delay_d_vardecl_pktgen_c_748 pg_delay_d vardecl_pktgen.c 0 748 NULL
++disable_so_current_sit_addr_fndecl_752 current_sit_addr fndecl 0-2 752 NULL
++disable_so_mix_msr_src_node_conf_t_769 mix_msr src_node_conf_t 0 769 NULL
++disable_so_sha1_mb_async_final_fndecl_780 sha1_mb_async_final fndecl 0 780 NULL
++disable_so_dma_addr_ipw2100_rx_packet_785 dma_addr ipw2100_rx_packet 0 785 NULL
++disable_so_addrHigh_lpfc_pde7_802 addrHigh lpfc_pde7 0 802 NULL
++disable_so_frequency_cpufreq_frequency_table_805 frequency cpufreq_frequency_table 0 805 NULL
++disable_so_timer_int_req_nes_device_806 timer_int_req nes_device 0 806 NULL
++disable_so_if_freq_mxl5005s_config_819 if_freq mxl5005s_config 0 819 NULL
++disable_so_radix_tree_lookup_fndecl_821 radix_tree_lookup fndecl 2 821 NULL
++disable_so_subdivision_dma_buffparms_826 subdivision dma_buffparms 0 826 NULL
++disable_so_HYPERVISOR_event_channel_op_fndecl_838 HYPERVISOR_event_channel_op fndecl 0 838 NULL
++disable_so_dm_jiffies_to_msec64_fndecl_843 dm_jiffies_to_msec64 fndecl 1-0 843 NULL
++disable_so_trim_bitmaps_fndecl_845 trim_bitmaps fndecl 0-3-4-5 845 NULL
++disable_so_cg_spll_spread_spectrum_2_ni_clock_registers_846 cg_spll_spread_spectrum_2 ni_clock_registers 0 846 NULL
++disable_so_xfs_btree_increment_fndecl_856 xfs_btree_increment fndecl 0 856 NULL nohasharray
++disable_so_xfs_btree_ptr_offset_fndecl_856 xfs_btree_ptr_offset fndecl 0-2 856 &disable_so_xfs_btree_increment_fndecl_856
++disable_so_put_unaligned_be32_fndecl_861 put_unaligned_be32 fndecl 1 861 NULL
++disable_so_acpi_os_map_generic_address_fndecl_862 acpi_os_map_generic_address fndecl 0 862 NULL
++disable_so_mpll_func_cntl_1_ci_clock_registers_864 mpll_func_cntl_1 ci_clock_registers 0 864 NULL
++disable_so_buffer_warning_time_budget_870 buffer_warning_time budget 0 870 NULL
++disable_so_imr_sourceaddr_ip_mreq_source_875 imr_sourceaddr ip_mreq_source 0 875 NULL
++disable_so_msi2500_s_frequency_fndecl_879 msi2500_s_frequency fndecl 0 879 NULL
++disable_so_tx_bd_haddr_hi_bnx2_tx_bd_881 tx_bd_haddr_hi bnx2_tx_bd 0 881 NULL
++disable_so_wmi_addr_fndecl_882 wmi_addr fndecl 2 882 NULL
++disable_so_rt6_info_hash_nhsfn_fndecl_886 rt6_info_hash_nhsfn fndecl 0-1 886 NULL
++disable_so_snd_seq_oss_timer_stop_fndecl_904 snd_seq_oss_timer_stop fndecl 0 904 NULL
++disable_so_addr_lo_rx_desc_909 addr_lo rx_desc 0 909 NULL
++disable_so_bx_tss_segment_16_926 bx tss_segment_16 0 926 NULL
++disable_so_inactive_time_station_info_927 inactive_time station_info 0 927 NULL
++disable_so_last_reset_jiffies_iwl_rf_reset_931 last_reset_jiffies iwl_rf_reset 0 931 NULL
++disable_so_shm_dtime_shmid64_ds_943 shm_dtime shmid64_ds 0 943 NULL
++disable_so_autosleep_store_fndecl_949 autosleep_store fndecl 0-4 949 NULL nohasharray
++disable_so_sit_base_addr_sit_info_949 sit_base_addr sit_info 0 949 &disable_so_autosleep_store_fndecl_949
++disable_so_ageing_time_net_bridge_957 ageing_time net_bridge 0 957 NULL
++disable_so_set_frequency_shifter_fndecl_959 set_frequency_shifter fndecl 0-2-3 959 NULL
++disable_so_pci_bus_vardecl_bkm_a8_c_960 pci_bus vardecl_bkm_a8.c 0 960 NULL
++disable_so_i_uid_ext2_inode_963 i_uid ext2_inode 0 963 NULL
++disable_so_cpufreq_cpu_get_fndecl_965 cpufreq_cpu_get fndecl 1 965 NULL
++disable_so_tsc_offset_vmcb_control_area_968 tsc_offset vmcb_control_area 0 968 NULL
++disable_so_read_addr_qla8044_minidump_entry_rdmem_977 read_addr qla8044_minidump_entry_rdmem 0 977 NULL
++disable_so_addr1_nphy_rf_control_override_rev2_978 addr1 nphy_rf_control_override_rev2 0 978 NULL
++disable_so_qdisc_class_hash_fndecl_982 qdisc_class_hash fndecl 0-1-2 982 NULL
++disable_so_crypto_register_ahash_fndecl_984 crypto_register_ahash fndecl 0 984 NULL
++disable_so_addr_unlock2_cfi_private_989 addr_unlock2 cfi_private 0 989 NULL
++disable_so_calc_baud_rate_divisor_fndecl_995 calc_baud_rate_divisor fndecl 2 995 NULL
++disable_so_scsi_runtime_suspend_fndecl_1008 scsi_runtime_suspend fndecl 0 1008 NULL
++disable_so_gran_sizek_var_mtrr_state_1012 gran_sizek var_mtrr_state 0 1012 NULL
++disable_so_ax25_uid_info_open_fndecl_1028 ax25_uid_info_open fndecl 0 1028 NULL
++disable_so_sh_mmcif_clock_control_fndecl_1029 sh_mmcif_clock_control fndecl 2 1029 NULL
++disable_so_SYSC_setresgid_fndecl_1032 SYSC_setresgid fndecl 0 1032 NULL
++disable_so_f1x_lookup_addr_in_dct_fndecl_1033 f1x_lookup_addr_in_dct fndecl 0-1-2-3 1033 NULL
++disable_so_ufshcd_pci_runtime_suspend_fndecl_1044 ufshcd_pci_runtime_suspend fndecl 0 1044 NULL
++disable_so_rme9652_set_interrupt_interval_fndecl_1049 rme9652_set_interrupt_interval fndecl 2 1049 NULL
++disable_so_kgdb_validate_break_address_fndecl_1055 kgdb_validate_break_address fndecl 0 1055 NULL
++disable_so_cp_mqd_base_addr_hi_hqd_registers_1058 cp_mqd_base_addr_hi hqd_registers 0 1058 NULL
++disable_so_serial8250_get_divisor_fndecl_1063 serial8250_get_divisor fndecl 2-0 1063 NULL
++disable_so_mpll_func_cntl_ci_clock_registers_1072 mpll_func_cntl ci_clock_registers 0 1072 NULL
++disable_so_dma_addr_iser_tx_desc_1074 dma_addr iser_tx_desc 0 1074 NULL nohasharray
++disable_so_fail_addr_erase_info_1074 fail_addr erase_info 0 1074 &disable_so_dma_addr_iser_tx_desc_1074
++disable_so_timeout_static_key_deferred_1078 timeout static_key_deferred 0 1078 NULL
++disable_so_uid_vardecl_initramfs_c_1083 uid vardecl_initramfs.c 0 1083 NULL
++disable_so_amdgpu_mm_rreg_fndecl_1084 amdgpu_mm_rreg fndecl 0-2 1084 NULL
++disable_so_hash_ip6_expire_fndecl_1088 hash_ip6_expire fndecl 4 1088 NULL
++disable_so_addr_buffer4_cmd_desc_type0_1089 addr_buffer4 cmd_desc_type0 0 1089 NULL
++disable_so__snd_hdac_read_parm_fndecl_1100 _snd_hdac_read_parm fndecl 3-2-0 1100 NULL
++disable_so_mlx5_query_mad_ifc_gids_fndecl_1101 mlx5_query_mad_ifc_gids fndecl 0 1101 NULL
++disable_so_dbgfs_prph_reg_addr_iwl_mvm_1102 dbgfs_prph_reg_addr iwl_mvm 0 1102 NULL
++disable_so_cttimeout_default_fill_info_fndecl_1107 cttimeout_default_fill_info fndecl 4-3-6-0 1107 NULL
++disable_so_expiry_time_cache_head_1108 expiry_time cache_head 0 1108 NULL
++disable_so_dma_desc_set_addr_fndecl_1139 dma_desc_set_addr fndecl 3 1139 NULL
++disable_so_addr_crb_addr_pair_1140 addr crb_addr_pair 0 1140 NULL
++disable_so_sleep_dvb_tuner_ops_1155 sleep dvb_tuner_ops 0 1155 NULL
++disable_so_info_for_irq_fndecl_1159 info_for_irq fndecl 1 1159 NULL
++disable_so_mlx4_ib_find_real_gid_fndecl_1163 mlx4_ib_find_real_gid fndecl 2 1163 NULL
++disable_so_timestamp_perf_cgroup_info_1168 timestamp perf_cgroup_info 0 1168 NULL
++disable_so_mthca_QUERY_FW_fndecl_1176 mthca_QUERY_FW fndecl 0 1176 NULL
++disable_so_fc_exch_set_addr_fndecl_1180 fc_exch_set_addr fndecl 2-3 1180 NULL
++disable_so_rhashtable_rehash_chain_fndecl_1192 rhashtable_rehash_chain fndecl 2 1192 NULL
++disable_so_own_addr_tipc_net_1206 own_addr tipc_net 0 1206 NULL
++disable_so_ip6addrlbl_alloc_fndecl_1212 ip6addrlbl_alloc fndecl 4 1212 NULL
++disable_so_nft_hash_init_fndecl_1216 nft_hash_init fndecl 0 1216 NULL
++disable_so_max_freq_cpufreq_cpuinfo_1219 max_freq cpufreq_cpuinfo 0 1219 NULL
++disable_so_spi_port_rcvhdr_tailaddr_ipath_base_info_1223 spi_port_rcvhdr_tailaddr ipath_base_info 0 1223 NULL
++disable_so_ceph_vxattrcb_dir_rctime_fndecl_1240 ceph_vxattrcb_dir_rctime fndecl 3-0 1240 NULL
++disable_so_cas_interrupt_fndecl_1242 cas_interrupt fndecl 1 1242 NULL nohasharray
++disable_so_set_msr_hyperv_fndecl_1242 set_msr_hyperv fndecl 3 1242 &disable_so_cas_interrupt_fndecl_1242
++disable_so_mmc_rescan_try_freq_fndecl_1249 mmc_rescan_try_freq fndecl 2 1249 NULL
++disable_so_rtsx_pci_write_be32_fndecl_1251 rtsx_pci_write_be32 fndecl 2-3 1251 NULL
++disable_so_sum_sleep_runtime_sched_statistics_1253 sum_sleep_runtime sched_statistics 0 1253 NULL
++disable_so_flags_pt_regs_1254 flags pt_regs 0 1254 NULL
++disable_so_bug10934_timer_txc43128_data_1290 bug10934_timer txc43128_data 0 1290 NULL nohasharray
++disable_so_rq_size_log2_t3_wq_1290 rq_size_log2 t3_wq 0 1290 &disable_so_bug10934_timer_txc43128_data_1290
++disable_so_do_sched_rt_period_timer_fndecl_1292 do_sched_rt_period_timer fndecl 2 1292 NULL
++disable_so_db_dma_address_skd_special_context_1295 db_dma_address skd_special_context 0 1295 NULL
++disable_so_time_stamp_hbq_dmabuf_1300 time_stamp hbq_dmabuf 0 1300 NULL
++disable_so_print_vma_addr_fndecl_1312 print_vma_addr fndecl 2 1312 NULL
++disable_so_max_acl_mac_addrs_wiphy_1316 max_acl_mac_addrs wiphy 0 1316 NULL
++disable_so_shash_async_update_fndecl_1319 shash_async_update fndecl 0 1319 NULL
++disable_so_programm_delay_vardecl_nandsim_c_1320 programm_delay vardecl_nandsim.c 0 1320 NULL
++disable_so_stimescaled_task_struct_1330 stimescaled task_struct 0 1330 NULL nohasharray
++disable_so_p_gma_clock_t_1330 p gma_clock_t 0 1330 &disable_so_stimescaled_task_struct_1330
++disable_so_bitmap_bytes_fndecl_1338 bitmap_bytes fndecl 0-1-2 1338 NULL
++disable_so_max8649_enable_time_fndecl_1340 max8649_enable_time fndecl 0 1340 NULL
++disable_so_sg_set_timeout_fndecl_1360 sg_set_timeout fndecl 0 1360 NULL
++disable_so_mrp_join_time_vardecl_mrp_c_1361 mrp_join_time vardecl_mrp.c 0 1361 NULL
++disable_so_queue_address_queue_properties_1364 queue_address queue_properties 0 1364 NULL
++disable_so_adfs_unix2adfs_time_fndecl_1365 adfs_unix2adfs_time fndecl 2 1365 NULL nohasharray
++disable_so_start_rmt_timer2_fndecl_1365 start_rmt_timer2 fndecl 2 1365 &disable_so_adfs_unix2adfs_time_fndecl_1365
++disable_so_qla2x00_gid_list_size_fndecl_1367 qla2x00_gid_list_size fndecl 0 1367 NULL nohasharray
++disable_so_sr_get_phy_addr_fndecl_1367 sr_get_phy_addr fndecl 0 1367 &disable_so_qla2x00_gid_list_size_fndecl_1367
++disable_so_rb_subtree_last_anon_vma_chain_1370 rb_subtree_last anon_vma_chain 0 1370 NULL
++disable_so_snd_soc_runtime_activate_fndecl_1372 snd_soc_runtime_activate fndecl 2 1372 NULL nohasharray
++disable_so_gateway_ctrl_address_wil_fw_record_gateway_data4_1372 gateway_ctrl_address wil_fw_record_gateway_data4 0 1372 &disable_so_snd_soc_runtime_activate_fndecl_1372
++disable_so_timer_elsa_hw_1375 timer elsa_hw 0 1375 NULL nohasharray
++disable_so_sched_setscheduler_fndecl_1375 sched_setscheduler fndecl 2-0 1375 &disable_so_timer_elsa_hw_1375 nohasharray
++disable_so_bitmap_check_fndecl_1375 bitmap_check fndecl 3 1375 &disable_so_sched_setscheduler_fndecl_1375
++disable_so_pwr_wake_on_timer_exp_read_fndecl_1379 pwr_wake_on_timer_exp_read fndecl 3-0 1379 NULL
++disable_so_prev_input_time_vardecl_sequencer_c_1380 prev_input_time vardecl_sequencer.c 0 1380 NULL
++disable_so_mii_phy_addr_gem_1381 mii_phy_addr gem 0 1381 NULL
++disable_so_snd_seq_queue_timer_set_tempo_fndecl_1388 snd_seq_queue_timer_set_tempo fndecl 1-2 1388 NULL
++disable_so_efx_ef10_rx_enable_timestamping_fndecl_1394 efx_ef10_rx_enable_timestamping fndecl 0 1394 NULL
++disable_so_xfrm_src_hash_fndecl_1398 xfrm_src_hash fndecl 0-4 1398 NULL
++disable_so_set_pixclock_fndecl_1401 set_pixclock fndecl 2 1401 NULL
++disable_so_start_dma_addr_vardecl_swiotlb_xen_c_1402 start_dma_addr vardecl_swiotlb-xen.c 0 1402 NULL
++disable_so_pcm512x_set_dividers_fndecl_1412 pcm512x_set_dividers fndecl 0 1412 NULL
++disable_so_frequency_tea5761_priv_1416 frequency tea5761_priv 0 1416 NULL
++disable_so_ifa_flags_ifaddrmsg_1431 ifa_flags ifaddrmsg 0 1431 NULL
++disable_so_last_queue_full_time_scsi_device_1432 last_queue_full_time scsi_device 0 1432 NULL
++disable_so_dma_ops_reserve_addresses_fndecl_1438 dma_ops_reserve_addresses fndecl 2-3 1438 NULL
++disable_so_reg_w_fndecl_1440 reg_w fndecl 4-0 1440 NULL
++disable_so_tomoyo_check_inet_address_fndecl_1442 tomoyo_check_inet_address fndecl 0-2-3 1442 NULL
++disable_so_is_oldclock_fndecl_1444 is_oldclock fndecl 1 1444 NULL
++disable_so_width_latch_addr_flash_data_1448 width latch_addr_flash_data 0 1448 NULL
++disable_so_tuner_address_ix2505v_config_1466 tuner_address ix2505v_config 0 1466 NULL
++disable_so_alarm_setitimer_fndecl_1477 alarm_setitimer fndecl 1-0 1477 NULL
++disable_so_enc28j60_rx_interrupt_fndecl_1478 enc28j60_rx_interrupt fndecl 0 1478 NULL
++disable_so_i2c_address_xc4000_config_1488 i2c_address xc4000_config 0 1488 NULL
++disable_so_dx_runtime_sc_1503 dx runtime_sc 0 1503 NULL
++disable_so_tda827x_addr_tda8290_priv_1514 tda827x_addr tda8290_priv 0 1514 NULL
++disable_so_addr_sym_tblmove_1540 addr sym_tblmove 0 1540 NULL
++disable_so_cs_tss_segment_16_1560 cs tss_segment_16 0 1560 NULL
++disable_so_demod_address_drxk_state_1562 demod_address drxk_state 0 1562 NULL
++disable_so_enable_time_regulation_constraints_1573 enable_time regulation_constraints 0 1573 NULL nohasharray
++disable_so_dma_addr_flexcop_usb_1573 dma_addr flexcop_usb 0 1573 &disable_so_enable_time_regulation_constraints_1573
++disable_so_dma_addr_cas_page_1575 dma_addr cas_page 0 1575 NULL
++disable_so_start_read_delay_c_1578 start_read delay_c 0 1578 NULL
++disable_so_complete_crypto_async_request_1579 complete crypto_async_request 2 1579 NULL
++disable_so_cycles_2_us_fndecl_1583 cycles_2_us fndecl 0-1 1583 NULL
++disable_so_pd_timeout_vardecl_pd_c_1584 pd_timeout vardecl_pd.c 0 1584 NULL
++disable_so_last_end_request_cfq_ttime_1591 last_end_request cfq_ttime 0 1591 NULL
++disable_so_addr_sky2_rx_le_1593 addr sky2_rx_le 0 1593 NULL
++disable_so_tick_raw_sched_clock_data_1597 tick_raw sched_clock_data 0 1597 NULL
++disable_so_if_freq_khz_pll_tab_1599 if_freq_khz pll_tab 0 1599 NULL
++disable_so_set_clock_info_fndecl_1600 set_clock_info fndecl 0 1600 NULL
++disable_so_bs_delay_cx24113_state_1602 bs_delay cx24113_state 0 1602 NULL
++disable_so_address_atto_physical_region_description_1608 address atto_physical_region_description 0 1608 NULL
++disable_so_jiffies_force_qs_rcu_state_1611 jiffies_force_qs rcu_state 0 1611 NULL
++disable_so_mpll_ad_func_cntl_si_clock_registers_1615 mpll_ad_func_cntl si_clock_registers 0 1615 NULL
++disable_so___new_c_uuid_parms_from_attrs_fndecl_1628 __new_c_uuid_parms_from_attrs fndecl 0 1628 NULL
++disable_so___btree_sort_fndecl_1629 __btree_sort fndecl 4 1629 NULL
++disable_so_crypto_authenc_encrypt_done_fndecl_1634 crypto_authenc_encrypt_done fndecl 2 1634 NULL
++disable_so_uhci_submit_interrupt_fndecl_1635 uhci_submit_interrupt fndecl 0 1635 NULL
++disable_so_es_tss_segment_16_1639 es tss_segment_16 0 1639 NULL
++disable_so_addrHigh_sge_ieee1212_1649 addrHigh sge_ieee1212 0 1649 NULL
++disable_so_btree_insert_level_fndecl_1651 btree_insert_level fndecl 6 1651 NULL
++disable_so_calc_gus_envelope_time_fndecl_1653 calc_gus_envelope_time fndecl 1-2-3-0 1653 NULL
++disable_so_rhashtable_shrink_fndecl_1657 rhashtable_shrink fndecl 0 1657 NULL
++disable_so_jiffies_next_msi2500_state_1659 jiffies_next msi2500_state 0 1659 NULL
++disable_so_di_gid_dinode_1663 di_gid dinode 0 1663 NULL
++disable_so_address_drm_radeon_surface_alloc_1665 address drm_radeon_surface_alloc 0 1665 NULL
++disable_so_nsec_btrfs_ioctl_timespec_1668 nsec btrfs_ioctl_timespec 0 1668 NULL
++disable_so_uptime_sysinfo_1669 uptime sysinfo 0 1669 NULL
++disable_so_timeout_mgmt_cp_add_advertising_1685 timeout mgmt_cp_add_advertising 0 1685 NULL nohasharray
++disable_so_systime_fndecl_1685 systime fndecl 0 1685 &disable_so_timeout_mgmt_cp_add_advertising_1685 nohasharray
++disable_so_addr0_ulptx_sgl_1685 addr0 ulptx_sgl 0 1685 &disable_so_systime_fndecl_1685
++disable_so_poll_timeout_irlap_cb_1688 poll_timeout irlap_cb 0 1688 NULL nohasharray
++disable_so_tsc_irq_max8925_chip_1688 tsc_irq max8925_chip 0 1688 &disable_so_poll_timeout_irlap_cb_1688
++disable_so_pbl_addr_t3_swrq_1691 pbl_addr t3_swrq 0 1691 NULL
++disable_so_ar_addr_qlc_83xx_quad_entry_1699 ar_addr qlc_83xx_quad_entry 0 1699 NULL
++disable_so_min_freq_softlimit_intel_gen6_power_mgmt_1704 min_freq_softlimit intel_gen6_power_mgmt 0 1704 NULL
++disable_so_spkt_family_sockaddr_pkt_1712 spkt_family sockaddr_pkt 0 1712 NULL
++disable_so_timeout_vardecl_w83877f_wdt_c_1721 timeout vardecl_w83877f_wdt.c 0 1721 NULL
++disable_so_nfs_map_gid_to_group_fndecl_1724 nfs_map_gid_to_group fndecl 4-0 1724 NULL
++disable_so_iram_offset_sst_addr_1727 iram_offset sst_addr 0 1727 NULL
++disable_so_mp_lapic_addr_vardecl_1729 mp_lapic_addr vardecl 0 1729 NULL
++disable_so_apei_write_mce_fndecl_1731 apei_write_mce fndecl 0 1731 NULL
++disable_so_spectrum_stv0900_signal_info_1736 spectrum stv0900_signal_info 0 1736 NULL
++disable_so_hash_ipmark6_expire_fndecl_1741 hash_ipmark6_expire fndecl 4 1741 NULL
++disable_so_r100_mm_rreg_slow_fndecl_1751 r100_mm_rreg_slow fndecl 2-0 1751 NULL
++disable_so_gntdev_ioctl_get_offset_for_vaddr_fndecl_1754 gntdev_ioctl_get_offset_for_vaddr fndecl 0 1754 NULL
++disable_so_cm36651_write_int_time_fndecl_1774 cm36651_write_int_time fndecl 0 1774 NULL
++disable_so_dp_clock_radeon_connector_atom_dig_1775 dp_clock radeon_connector_atom_dig 0 1775 NULL nohasharray
++disable_so_am79c_ack_interrupt_fndecl_1775 am79c_ack_interrupt fndecl 0 1775 &disable_so_dp_clock_radeon_connector_atom_dig_1775
++disable_so_phys_addr_qlcnic_host_tx_ring_1780 phys_addr qlcnic_host_tx_ring 0 1780 NULL nohasharray
++disable_so_read_addr_qla83xx_minidump_entry_rdmux2_1780 read_addr qla83xx_minidump_entry_rdmux2 0 1780 &disable_so_phys_addr_qlcnic_host_tx_ring_1780
++disable_so_select_addr_1_qla83xx_minidump_entry_rdmux2_1790 select_addr_1 qla83xx_minidump_entry_rdmux2 0 1790 NULL
++disable_so___padata_set_cpumasks_fndecl_1793 __padata_set_cpumasks fndecl 0 1793 NULL
++disable_so_padlock_sha_init_fndecl_1815 padlock_sha_init fndecl 0 1815 NULL
++disable_so_acpi_cpufreq_early_init_fndecl_1824 acpi_cpufreq_early_init fndecl 0 1824 NULL
++disable_so_dst_addr_ioat_xor_descriptor_1835 dst_addr ioat_xor_descriptor 0 1835 NULL
++disable_so_sadb_lifetime_bytes_sadb_lifetime_1836 sadb_lifetime_bytes sadb_lifetime 0 1836 NULL
++disable_so_event_box_addr_wl1251_1839 event_box_addr wl1251 0 1839 NULL
++disable_so_addr_ahci_sg_1848 addr ahci_sg 0 1848 NULL
++disable_so_acct_timexpd_task_struct_1854 acct_timexpd task_struct 0 1854 NULL
++disable_so_mkey_lease_timeout_ipath_ibdev_1856 mkey_lease_timeout ipath_ibdev 0 1856 NULL nohasharray
++disable_so_paddr_idt77252_skb_prv_1856 paddr idt77252_skb_prv 0 1856 &disable_so_mkey_lease_timeout_ipath_ibdev_1856
++disable_so_timeout_dmatest_params_1857 timeout dmatest_params 0 1857 NULL
++disable_so_cipso_v4_bitmap_setbit_fndecl_1861 cipso_v4_bitmap_setbit fndecl 2 1861 NULL
++disable_so_sun6i_spi_runtime_resume_fndecl_1869 sun6i_spi_runtime_resume fndecl 0 1869 NULL
++disable_so_shash_ahash_update_fndecl_1877 shash_ahash_update fndecl 0 1877 NULL
++disable_so_ss_family___kernel_sockaddr_storage_1886 ss_family __kernel_sockaddr_storage 0 1886 NULL
++disable_so_swap_time_bloom_pair_1898 swap_time bloom_pair 0 1898 NULL nohasharray
++disable_so_blank_time_dce6_wm_params_1898 blank_time dce6_wm_params 0 1898 &disable_so_swap_time_bloom_pair_1898
++disable_so_btree_order_fndecl_1901 btree_order fndecl 0 1901 NULL
++disable_so_sil_iowrite16_fndecl_1906 sil_iowrite16 fndecl 3-2 1906 NULL
++disable_so_service_timer_period_i40e_pf_1923 service_timer_period i40e_pf 0 1923 NULL nohasharray
++disable_so_address_acpi_resource_fixed_memory32_1923 address acpi_resource_fixed_memory32 0 1923 &disable_so_service_timer_period_i40e_pf_1923
++disable_so_paddr_dw_spi_1926 paddr dw_spi 0 1926 NULL
++disable_so___audit_sockaddr_fndecl_1929 __audit_sockaddr fndecl 1 1929 NULL
++disable_so_ieee80211_aes_gcm_key_setup_encrypt_fndecl_1936 ieee80211_aes_gcm_key_setup_encrypt fndecl 2 1936 NULL
++disable_so_mce_chrdev_open_fndecl_1937 mce_chrdev_open fndecl 0 1937 NULL
++disable_so_shadow_reg_phy_addr_ql3_adapter_1940 shadow_reg_phy_addr ql3_adapter 0 1940 NULL
++disable_so_dma_addr_t3_cq_1953 dma_addr t3_cq 0 1953 NULL
++disable_so_crypto_pcbc_decrypt_inplace_fndecl_1957 crypto_pcbc_decrypt_inplace fndecl 0 1957 NULL
++disable_so_sw_reset_and_clock_fndecl_1963 sw_reset_and_clock fndecl 0 1963 NULL
++disable_so_wp_next_time_fndecl_1967 wp_next_time fndecl 0-1 1967 NULL
++disable_so_timer_expires_dev_pm_info_1979 timer_expires dev_pm_info 0 1979 NULL
++disable_so_dll_cntl_si_clock_registers_1988 dll_cntl si_clock_registers 0 1988 NULL
++disable_so_sysctl_x25_clear_request_timeout_vardecl_2007 sysctl_x25_clear_request_timeout vardecl 0 2007 NULL
++disable_so___skb_complete_tx_timestamp_fndecl_2011 __skb_complete_tx_timestamp fndecl 3 2011 NULL
++disable_so_st_ctime_compat_stat_2020 st_ctime compat_stat 0 2020 NULL
++disable_so_ns_nongc_ctime_the_nilfs_2021 ns_nongc_ctime the_nilfs 0 2021 NULL
++disable_so_slave_address_cp2112_write_read_req_report_2022 slave_address cp2112_write_read_req_report 0 2022 NULL
++disable_so_beacon_timeout_ms_show_fndecl_2029 beacon_timeout_ms_show fndecl 0 2029 NULL
++disable_so_daddr_lap_cb_2033 daddr lap_cb 0 2033 NULL
++disable_so_next_txd_phys_addr_mwl8k_tx_desc_2040 next_txd_phys_addr mwl8k_tx_desc 0 2040 NULL
++disable_so_tps65910_rtc_set_time_fndecl_2042 tps65910_rtc_set_time fndecl 0 2042 NULL
++disable_so_address_sg_list_2047 address sg_list 0 2047 NULL
++disable_so_r62_val_fc2580_freq_regs_2052 r62_val fc2580_freq_regs 0 2052 NULL
++disable_so_atomic64_cmpxchg_fndecl_2053 atomic64_cmpxchg fndecl 0-2-3 2053 NULL
++disable_so_delay_cfg80211_coalesce_rules_2055 delay cfg80211_coalesce_rules 0 2055 NULL
++disable_so_addrconf_sysctl_register_fndecl_2065 addrconf_sysctl_register fndecl 0 2065 NULL nohasharray
++disable_so_max_timeout_watchdog_device_2065 max_timeout watchdog_device 0 2065 &disable_so_addrconf_sysctl_register_fndecl_2065
++disable_so_gid_autofs_v5_packet_2071 gid autofs_v5_packet 0 2071 NULL
++disable_so_ratio_t_rj54n1_clock_div_2081 ratio_t rj54n1_clock_div 0 2081 NULL
++disable_so_compat_sys_signalfd4_fndecl_2082 compat_sys_signalfd4 fndecl 0-4 2082 NULL
++disable_so_demod_address_ds3000_config_2084 demod_address ds3000_config 0 2084 NULL
++disable_so_xfrm_flowi_addr_get_fndecl_2087 xfrm_flowi_addr_get fndecl 4 2087 NULL
++disable_so_ts_delay_vardecl_ucb1400_ts_c_2088 ts_delay vardecl_ucb1400_ts.c 0 2088 NULL
++disable_so_get_cpu_iowait_time_us_fndecl_2097 get_cpu_iowait_time_us fndecl 0-1 2097 NULL
++disable_so_crypto_sha1_finup_fndecl_2101 crypto_sha1_finup fndecl 3 2101 NULL
++disable_so_wlc_phy_chan2freq_nphy_fndecl_2103 wlc_phy_chan2freq_nphy fndecl 2 2103 NULL
++disable_so_palmas_smps_set_ramp_delay_fndecl_2110 palmas_smps_set_ramp_delay fndecl 0 2110 NULL
++disable_so_ncp_add_be32_fndecl_2114 ncp_add_be32 fndecl 2 2114 NULL
++disable_so_fast_div_bias_ath_hw_antcomb_conf_2119 fast_div_bias ath_hw_antcomb_conf 0 2119 NULL
++disable_so_memconsole_baseaddr_vardecl_memconsole_c_2130 memconsole_baseaddr vardecl_memconsole.c 0 2130 NULL
++disable_so_max8907_rtc_read_time_fndecl_2134 max8907_rtc_read_time fndecl 0 2134 NULL
++disable_so_cur_daddr_pktgen_dev_2141 cur_daddr pktgen_dev 0 2141 NULL
++disable_so_mapped_loc_addr_nes_cm_listener_2153 mapped_loc_addr nes_cm_listener 0 2153 NULL
++disable_so_index_ath_gen_timer_2154 index ath_gen_timer 0 2154 NULL
++disable_so_brcms_c_duty_cycle_set_fndecl_2162 brcms_c_duty_cycle_set fndecl 2 2162 NULL
++disable_so_rx_addr_happy_meal_rxd_2164 rx_addr happy_meal_rxd 0 2164 NULL
++disable_so_cp_dma_addr_mscp_2187 cp_dma_addr mscp 0 2187 NULL
++disable_so_address_hi_be_bus_address32_2192 address_hi be_bus_address32 0 2192 NULL nohasharray
++disable_so_parse_sockaddr_pair_fndecl_2192 parse_sockaddr_pair fndecl 0-2 2192 &disable_so_address_hi_be_bus_address32_2192
++disable_so_channel_sockaddr_mISDN_2193 channel sockaddr_mISDN 0 2193 NULL
++disable_so_channel_time_mwl8k_priv_2196 channel_time mwl8k_priv 0 2196 NULL
++disable_so_saddr_min_pktgen_dev_2198 saddr_min pktgen_dev 0 2198 NULL
++disable_so_cirrus_set_start_address_fndecl_2201 cirrus_set_start_address fndecl 2 2201 NULL
++disable_so_exp_time_rmc_entry_2203 exp_time rmc_entry 0 2203 NULL
++disable_so_acpi_os_get_timer_fndecl_2213 acpi_os_get_timer fndecl 0 2213 NULL nohasharray
++disable_so_to_addr_efx_memcpy_req_2213 to_addr efx_memcpy_req 0 2213 &disable_so_acpi_os_get_timer_fndecl_2213
++disable_so_gather_bitmaps_fndecl_2219 gather_bitmaps fndecl 0 2219 NULL
++disable_so_timeout_ms_rdma_ucm_resolve_ip_2231 timeout_ms rdma_ucm_resolve_ip 0 2231 NULL
++disable_so_ui_birthtime_ufs2_inode_2238 ui_birthtime ufs2_inode 0 2238 NULL
++disable_so_security_mmap_addr_fndecl_2241 security_mmap_addr fndecl 0-1 2241 NULL
++disable_so_atl1c_hash_mc_addr_fndecl_2245 atl1c_hash_mc_addr fndecl 0 2245 NULL
++disable_so_isl1208_i2c_read_time_fndecl_2247 isl1208_i2c_read_time fndecl 0 2247 NULL
++disable_so_stats_reset_time_bfa_fcport_s_2251 stats_reset_time bfa_fcport_s 0 2251 NULL
++disable_so_uid_mcontroller_2253 uid mcontroller 0 2253 NULL
++disable_so_daddr_iriap_cb_2262 daddr iriap_cb 0 2262 NULL
++disable_so_rtl2832_sdr_set_tuner_freq_fndecl_2267 rtl2832_sdr_set_tuner_freq fndecl 0 2267 NULL
++disable_so_chipio_write_address_fndecl_2270 chipio_write_address fndecl 0-2 2270 NULL
++disable_so_small_buf_q_phy_addr_ql3_adapter_2279 small_buf_q_phy_addr ql3_adapter 0 2279 NULL
++disable_so_sys_utime_fndecl_2283 sys_utime fndecl 0 2283 NULL nohasharray
++disable_so_muldiv32_fndecl_2283 muldiv32 fndecl 0-1-2-3 2283 &disable_so_sys_utime_fndecl_2283
++disable_so_bd_list_addr_hi_bnx2i_nop_out_request_2284 bd_list_addr_hi bnx2i_nop_out_request 0 2284 NULL
++disable_so_show_trans_timeout_fndecl_2286 show_trans_timeout fndecl 0 2286 NULL
++disable_so_il4965_tx_queue_stop_scheduler_fndecl_2292 il4965_tx_queue_stop_scheduler fndecl 2 2292 NULL
++disable_so_demod_address_ves1820_config_2298 demod_address ves1820_config 0 2298 NULL
++disable_so_backlight_on_delay_cdv_intel_dp_2301 backlight_on_delay cdv_intel_dp 0 2301 NULL
++disable_so_ip_vs_lblcr_hashkey_fndecl_2305 ip_vs_lblcr_hashkey fndecl 1 2305 NULL
++disable_so_tulip_interrupt_fndecl_2323 tulip_interrupt fndecl 1 2323 NULL
++disable_so_m_ts_clockk_strength_drxk_state_2324 m_ts_clockk_strength drxk_state 0 2324 NULL
++disable_so_carl9170_debugfs_hw_iowrite32_write_fndecl_2330 carl9170_debugfs_hw_iowrite32_write fndecl 0-3 2330 NULL
++disable_so_iclock_count_vardecl_clock_c_2334 iclock_count vardecl_clock.c 0 2334 NULL
++disable_so_eop_gpu_addr_kernel_queue_2339 eop_gpu_addr kernel_queue 0 2339 NULL
++disable_so___insert_inode_hash_fndecl_2341 __insert_inode_hash fndecl 2 2341 NULL
++disable_so_lasttime_vardecl_serial_u16550_c_2348 lasttime vardecl_serial-u16550.c 0 2348 NULL
++disable_so_custom_divisor_ftdi_private_2356 custom_divisor ftdi_private 0 2356 NULL nohasharray
++disable_so_bma150_set_any_motion_interrupt_fndecl_2356 bma150_set_any_motion_interrupt fndecl 3-4-0 2356 &disable_so_custom_divisor_ftdi_private_2356
++disable_so_cdrom_get_random_writable_fndecl_2357 cdrom_get_random_writable fndecl 0 2357 NULL
++disable_so_delay_vardecl_wm9713_c_2358 delay vardecl_wm9713.c 0 2358 NULL
++disable_so_usc_enable_async_clock_fndecl_2361 usc_enable_async_clock fndecl 2 2361 NULL
++disable_so___cpu_to_virtio64_fndecl_2365 __cpu_to_virtio64 fndecl 0-2 2365 NULL
++disable_so_freq_offset_xc5000_priv_2385 freq_offset xc5000_priv 0 2385 NULL
++disable_so_decompressed_size_regcache_lzo_ctx_2401 decompressed_size regcache_lzo_ctx 0 2401 NULL
++disable_so_tps65910_sleepinit_fndecl_2406 tps65910_sleepinit fndecl 0 2406 NULL
++disable_so_i2c_address_dib0090_config_2410 i2c_address dib0090_config 0 2410 NULL
++disable_so_paddr_nes_fast_mr_wqe_pbl_2411 paddr nes_fast_mr_wqe_pbl 0 2411 NULL
++disable_so_time_fcoe_fcf_2412 time fcoe_fcf 0 2412 NULL
++disable_so_ndisc_addr_option_pad_fndecl_2413 ndisc_addr_option_pad fndecl 0 2413 NULL
++disable_so_next_cpu_uv_rtc_timer_head_2424 next_cpu uv_rtc_timer_head 0 2424 NULL
++disable_so_buffer_addr_fm10k_tx_desc_2425 buffer_addr fm10k_tx_desc 0 2425 NULL
++disable_so_ahci_init_interrupts_fndecl_2426 ahci_init_interrupts fndecl 2-0 2426 NULL
++disable_so_cp_interrupt_fndecl_2429 cp_interrupt fndecl 1 2429 NULL
++disable_so_sha1_mb_update_fndecl_2431 sha1_mb_update fndecl 0 2431 NULL
++disable_so_mii_bmsr1_bnx2_2432 mii_bmsr1 bnx2 0 2432 NULL
++disable_so_i2c_addr_lnbp21_2433 i2c_addr lnbp21 0 2433 NULL
++disable_so_dmadesc_set_addr_fndecl_2434 dmadesc_set_addr fndecl 3 2434 NULL
++disable_so___irq_alloc_descs_fndecl_2452 __irq_alloc_descs fndecl 0-3-2-1-4 2452 NULL
++disable_so_efx_ptp_process_times_fndecl_2453 efx_ptp_process_times fndecl 0 2453 NULL
++disable_so_SiS_SetReg_fndecl_2455 SiS_SetReg fndecl 2-3-4 2455 NULL
++disable_so_hashlimit_byte_cost_fndecl_2456 hashlimit_byte_cost fndecl 0-1 2456 NULL
++disable_so_sd_mtime_stat_data_v1_2460 sd_mtime stat_data_v1 0 2460 NULL
++disable_so_string_addr_inc_fndecl_2472 string_addr_inc fndecl 2 2472 NULL
++disable_so_set_mc_hash_fndecl_2473 set_mc_hash fndecl 0 2473 NULL
++disable_so_height_psb_intel_sdvo_preferred_input_timing_args_2479 height psb_intel_sdvo_preferred_input_timing_args 0 2479 NULL
++disable_so_seq_netlbl_unlhsh_walk_arg_2483 seq netlbl_unlhsh_walk_arg 0 2483 NULL
++disable_so_set_cpu_itimer_fndecl_2486 set_cpu_itimer fndecl 2 2486 NULL
++disable_so_reqoff_crypto_authenc_ctx_2490 reqoff crypto_authenc_ctx 0 2490 NULL
++disable_so_i_gid_ocfs2_dinode_2496 i_gid ocfs2_dinode 0 2496 NULL
++disable_so_bind_mcastif_addr_fndecl_2497 bind_mcastif_addr fndecl 0 2497 NULL
++disable_so_pm_runtime_put_autosuspend_fndecl_2498 pm_runtime_put_autosuspend fndecl 0 2498 NULL
++disable_so_xfs_btree_insert_fndecl_2499 xfs_btree_insert fndecl 0 2499 NULL
++disable_so_update_time_fndecl_2500 update_time fndecl 0 2500 NULL
++disable_so_fill_mtrr_var_range_fndecl_2523 fill_mtrr_var_range fndecl 2-3-4-5 2523 NULL
++disable_so_of_cpufreq_power_cooling_register_fndecl_2525 of_cpufreq_power_cooling_register fndecl 3 2525 NULL
++disable_so_addr_genwqe_mem_2530 addr genwqe_mem 0 2530 NULL
++disable_so_rtr_solicit_delay_ipv6_devconf_2532 rtr_solicit_delay ipv6_devconf 0 2532 NULL nohasharray
++disable_so_num_of_cycles_in_period_igp_power_info_2532 num_of_cycles_in_period igp_power_info 0 2532 &disable_so_rtr_solicit_delay_ipv6_devconf_2532
++disable_so_vhost16_to_cpu_fndecl_2533 vhost16_to_cpu fndecl 0 2533 NULL
++disable_so_clock_adj_k_clock_2534 clock_adj k_clock 1 2534 NULL
++disable_so_global_default_fn_cipher_key_bytes_ecryptfs_mount_crypt_stat_2536 global_default_fn_cipher_key_bytes ecryptfs_mount_crypt_stat 0 2536 NULL
++disable_so_clock_fc2580_config_2541 clock fc2580_config 0 2541 NULL
++disable_so_sb_bitmaps_hpfs_sb_info_2542 sb_bitmaps hpfs_sb_info 0 2542 NULL
++disable_so_devfreq_event_get_edev_by_phandle_fndecl_2550 devfreq_event_get_edev_by_phandle fndecl 2 2550 NULL
++disable_so_reiserfs_allocate_list_bitmaps_fndecl_2551 reiserfs_allocate_list_bitmaps fndecl 3 2551 NULL
++disable_so_nr_set_mac_address_fndecl_2555 nr_set_mac_address fndecl 0 2555 NULL
++disable_so_SYSC_setuid_fndecl_2561 SYSC_setuid fndecl 0 2561 NULL
++disable_so_shadow_ctx_time_perf_event_2574 shadow_ctx_time perf_event 0 2574 NULL nohasharray
++disable_so_kernel_text_address_fndecl_2574 kernel_text_address fndecl 1 2574 &disable_so_shadow_ctx_time_perf_event_2574
++disable_so_msb_bna_dma_addr_2580 msb bna_dma_addr 0 2580 NULL
++disable_so_ipmi_get_my_address_fndecl_2581 ipmi_get_my_address fndecl 0 2581 NULL
++disable_so_scan_sleep_millisecs_show_fndecl_2585 scan_sleep_millisecs_show fndecl 0 2585 NULL
++disable_so_l2tp_scope_id_sockaddr_l2tpip6_2587 l2tp_scope_id sockaddr_l2tpip6 0 2587 NULL
++disable_so_freq_to_idx_fndecl_2591 freq_to_idx fndecl 2 2591 NULL
++disable_so_tps65910_set_ext_sleep_config_fndecl_2597 tps65910_set_ext_sleep_config fndecl 0-2 2597 NULL
++disable_so_try_write_address_fndecl_2599 try_write_address fndecl 0 2599 NULL
++disable_so_ifa_mask_in_ifaddr_2609 ifa_mask in_ifaddr 0 2609 NULL
++disable_so_phys_addr_nx_host_tx_ring_2615 phys_addr nx_host_tx_ring 0 2615 NULL
++disable_so_usb_wait_anchor_empty_timeout_fndecl_2618 usb_wait_anchor_empty_timeout fndecl 2-0 2618 NULL nohasharray
++disable_so_p2_gma_clock_t_2618 p2 gma_clock_t 0 2618 &disable_so_usb_wait_anchor_empty_timeout_fndecl_2618 nohasharray
++disable_so_cra_blocksize_crypto_alg_2618 cra_blocksize crypto_alg 0 2618 &disable_so_p2_gma_clock_t_2618
++disable_so_b1_setinterrupt_fndecl_2626 b1_setinterrupt fndecl 1-2 2626 NULL
++disable_so_flsh_addr_esas2r_flash_context_2628 flsh_addr esas2r_flash_context 0 2628 NULL
++disable_so_bClockID_uac_clock_source_descriptor_2629 bClockID uac_clock_source_descriptor 0 2629 NULL
++disable_so_free_dma_map_ops_2636 free dma_map_ops 4 2636 NULL
++disable_so_apds990x_set_atime_fndecl_2647 apds990x_set_atime fndecl 2 2647 NULL
++disable_so_jiffies_sdr_cap_vivid_dev_2650 jiffies_sdr_cap vivid_dev 0 2650 NULL
++disable_so_rf_mux_ploy_r820t_freq_range_2652 rf_mux_ploy r820t_freq_range 0 2652 NULL nohasharray
++disable_so_policy_hash_direct_fndecl_2652 policy_hash_direct fndecl 4 2652 &disable_so_rf_mux_ploy_r820t_freq_range_2652
++disable_so_base_addr_sudmac_regs_2655 base_addr sudmac_regs 0 2655 NULL
++disable_so_id_rdma_ucm_resolve_addr_2656 id rdma_ucm_resolve_addr 0 2656 NULL
++disable_so_demod_address_stv0367_config_2659 demod_address stv0367_config 0 2659 NULL
++disable_so_get_if_frequency_dvb_tuner_ops_2660 get_if_frequency dvb_tuner_ops 0 2660 NULL
++disable_so_r_idx_addr_brcmf_pcie_ringbuf_2666 r_idx_addr brcmf_pcie_ringbuf 0 2666 NULL
++disable_so_address_sisusb_packet_2668 address sisusb_packet 0 2668 NULL
++disable_so_cia_min_keysize_cipher_alg_2682 cia_min_keysize cipher_alg 0 2682 NULL
++disable_so_snd_timer_start_fndecl_2702 snd_timer_start fndecl 2-0 2702 NULL
++disable_so_erst_exec_set_src_address_base_fndecl_2703 erst_exec_set_src_address_base fndecl 0 2703 NULL
++disable_so_end_seq_tcp_sack_block_wire_2708 end_seq tcp_sack_block_wire 0 2708 NULL nohasharray
++disable_so__abb5zes3_rtc_read_timer_fndecl_2708 _abb5zes3_rtc_read_timer fndecl 0 2708 &disable_so_end_seq_tcp_sack_block_wire_2708
++disable_so_rn5t618_wdt_set_timeout_fndecl_2711 rn5t618_wdt_set_timeout fndecl 2-0 2711 NULL nohasharray
++disable_so_hsync_off_hi_lvds_dvo_timing_2711 hsync_off_hi lvds_dvo_timing 0 2711 &disable_so_rn5t618_wdt_set_timeout_fndecl_2711
++disable_so_hdelayx1_bttv_tvnorm_2714 hdelayx1 bttv_tvnorm 0 2714 NULL
++disable_so_raw_interval_timekeeper_2728 raw_interval timekeeper 0 2728 NULL
++disable_so___vxge_hw_ring_item_dma_addr_fndecl_2731 __vxge_hw_ring_item_dma_addr fndecl 0 2731 NULL
++disable_so_mlx5_query_hca_vport_gid_fndecl_2744 mlx5_query_hca_vport_gid fndecl 0 2744 NULL
++disable_so_period_ptr_atmel_runtime_data_2748 period_ptr atmel_runtime_data 0 2748 NULL
++disable_so_buf_addr_lo_fcoe_bd_ctx_2755 buf_addr_lo fcoe_bd_ctx 0 2755 NULL nohasharray
++disable_so_cycles_2_ns_fndecl_2755 cycles_2_ns fndecl 0-1 2755 &disable_so_buf_addr_lo_fcoe_bd_ctx_2755
++disable_so_md5_parse_tcp_sock_af_ops_2765 md5_parse tcp_sock_af_ops 3-0 2765 NULL
++disable_so_nbytes_ablkcipher_walk_2767 nbytes ablkcipher_walk 0 2767 NULL
++disable_so_crypto_hash_setkey_fndecl_2770 crypto_hash_setkey fndecl 0-3 2770 NULL
++disable_so_addr_gf100_gr_init_2776 addr gf100_gr_init 0 2776 NULL
++disable_so_auth_hashbits_vardecl_auth_c_2783 auth_hashbits vardecl_auth.c 0 2783 NULL
++disable_so_ipr_reset_start_timer_fndecl_2784 ipr_reset_start_timer fndecl 2 2784 NULL nohasharray
++disable_so_tv_sec_compat_timeval_2784 tv_sec compat_timeval 0 2784 &disable_so_ipr_reset_start_timer_fndecl_2784 nohasharray
++disable_so_addr_vring_desc_2784 addr vring_desc 0 2784 &disable_so_tv_sec_compat_timeval_2784
++disable_so_addr_initio_host_2790 addr initio_host 0 2790 NULL
++disable_so_i2c_addr_dib7000p_state_2791 i2c_addr dib7000p_state 0 2791 NULL
++disable_so_trim_no_bitmap_fndecl_2799 trim_no_bitmap fndecl 0-3-4-5 2799 NULL nohasharray
++disable_so_imp_msr_src_node_conf_t_2799 imp_msr src_node_conf_t 0 2799 &disable_so_trim_no_bitmap_fndecl_2799
++disable_so_phys_addr_pch_udc_dev_2801 phys_addr pch_udc_dev 0 2801 NULL
++disable_so_mpll_ss2_ci_clock_registers_2804 mpll_ss2 ci_clock_registers 0 2804 NULL
++disable_so_mutex_lock_interruptible_fndecl_2810 mutex_lock_interruptible fndecl 0 2810 NULL
++disable_so___btrfs_add_delayed_item_fndecl_2812 __btrfs_add_delayed_item fndecl 0 2812 NULL
++disable_so_physaddr_map_node_2828 physaddr map_node 0 2828 NULL
++disable_so_fault_mutex_hash_fndecl_2829 fault_mutex_hash fndecl 0-5-6 2829 NULL
++disable_so_tsi721_imsg_interrupt_enable_fndecl_2832 tsi721_imsg_interrupt_enable fndecl 2-3 2832 NULL
++disable_so_ocfs2_reserve_cluster_bitmap_bits_fndecl_2835 ocfs2_reserve_cluster_bitmap_bits fndecl 0 2835 NULL
++disable_so_address_lcnphy_radio_regs_2840 address lcnphy_radio_regs 0 2840 NULL
++disable_so_write_timeout_vardecl_at24_c_2843 write_timeout vardecl_at24.c 0 2843 NULL nohasharray
++disable_so_rdma_bind_addr_fndecl_2843 rdma_bind_addr fndecl 0 2843 &disable_so_write_timeout_vardecl_at24_c_2843
++disable_so_x86_schedule_events_fndecl_2848 x86_schedule_events fndecl 2 2848 NULL
++disable_so_acpi_ut_status_exit_fndecl_2850 acpi_ut_status_exit fndecl 5 2850 NULL
++disable_so_wlcore_read_hwaddr_fndecl_2853 wlcore_read_hwaddr fndecl 0-4 2853 NULL
++disable_so_apicaddr_mpc_ioapic_2859 apicaddr mpc_ioapic 0 2859 NULL
++disable_so_msec_dwell_time_host_cmd_ds_chan_rpt_req_2868 msec_dwell_time host_cmd_ds_chan_rpt_req 0 2868 NULL
++disable_so_hpsa_find_cfg_addrs_fndecl_2876 hpsa_find_cfg_addrs fndecl 0 2876 NULL
++disable_so_sched_clock_cpu_fndecl_2881 sched_clock_cpu fndecl 0-1 2881 NULL
++disable_so_qs_itimelimit_fs_quota_stat_2888 qs_itimelimit fs_quota_stat 0 2888 NULL
++disable_so_bitmap_set_pending_fndecl_2892 bitmap_set_pending fndecl 2 2892 NULL
++disable_so_rt2x00debug_read_crypto_stats_fndecl_2894 rt2x00debug_read_crypto_stats fndecl 0-3 2894 NULL
++disable_so_calibrate_tsc_x86_platform_ops_2895 calibrate_tsc x86_platform_ops 0 2895 NULL
++disable_so_timeout_show_fndecl_2898 timeout_show fndecl 0 2898 NULL
++disable_so_snd_hda_codec_read_fndecl_2913 snd_hda_codec_read fndecl 0-2-4-5 2913 NULL
++disable_so___bitmap_size_fndecl_2921 __bitmap_size fndecl 0 2921 NULL
++disable_so_snd_pcm_ioctl_delay_compat_fndecl_2923 snd_pcm_ioctl_delay_compat fndecl 0 2923 NULL nohasharray
++disable_so_addr_abituguru_data_2923 addr abituguru_data 0 2923 &disable_so_snd_pcm_ioctl_delay_compat_fndecl_2923
++disable_so_amdgpu_atombios_set_engine_dram_timings_fndecl_2927 amdgpu_atombios_set_engine_dram_timings fndecl 2-3 2927 NULL
++disable_so_i2c_address_mt2060_config_2931 i2c_address mt2060_config 0 2931 NULL
++disable_so_time_msdos_dir_entry_2939 time msdos_dir_entry 0 2939 NULL
++disable_so_acpi_install_address_space_handler_fndecl_2940 acpi_install_address_space_handler fndecl 0-2 2940 NULL nohasharray
++disable_so_addr_genwqe_reg_2940 addr genwqe_reg 0 2940 &disable_so_acpi_install_address_space_handler_fndecl_2940
++disable_so_addr_max77693_reg_data_2945 addr max77693_reg_data 0 2945 NULL nohasharray
++disable_so_addrconf_set_dstaddr_fndecl_2945 addrconf_set_dstaddr fndecl 0 2945 &disable_so_addr_max77693_reg_data_2945
++disable_so_gcm_hash_init_done_fndecl_2957 gcm_hash_init_done fndecl 2 2957 NULL
++disable_so_mwifiex_pcie_alloc_sleep_cookie_buf_fndecl_2961 mwifiex_pcie_alloc_sleep_cookie_buf fndecl 0 2961 NULL
++disable_so_ip_list_gid_vardecl_xt_recent_c_2969 ip_list_gid vardecl_xt_recent.c 0 2969 NULL
++disable_so_ieee80211_calculate_rx_timestamp_fndecl_2979 ieee80211_calculate_rx_timestamp fndecl 3-4-0 2979 NULL
++disable_so_jiffies_at_last_reset_qla_statistics_2982 jiffies_at_last_reset qla_statistics 0 2982 NULL
++disable_so_read_magic_time_fndecl_3002 read_magic_time fndecl 0 3002 NULL
++disable_so_node_addr_mdc_hw_list_desc_3006 node_addr mdc_hw_list_desc 0 3006 NULL
++disable_so_bitmap_clear_bits_fndecl_3008 bitmap_clear_bits fndecl 3-4 3008 NULL
++disable_so_cipher_offset_icp_qat_fw_la_cipher_req_params_3009 cipher_offset icp_qat_fw_la_cipher_req_params 0 3009 NULL
++disable_so_local_addr_c2wr_ep_listen_create_req_3021 local_addr c2wr_ep_listen_create_req 0 3021 NULL nohasharray
++disable_so_bitmap_end_sync_fndecl_3021 bitmap_end_sync fndecl 2 3021 &disable_so_local_addr_c2wr_ep_listen_create_req_3021
++disable_so___xfrm6_daddr_saddr_hash_fndecl_3024 __xfrm6_daddr_saddr_hash fndecl 0 3024 NULL
++disable_so_port_name_fcgs_gidpn_req_s_3037 port_name fcgs_gidpn_req_s 0 3037 NULL
++disable_so___pm_runtime_set_status_fndecl_3040 __pm_runtime_set_status fndecl 0 3040 NULL nohasharray
++disable_so_inactivity_time_adxl34x_platform_data_3040 inactivity_time adxl34x_platform_data 0 3040 &disable_so___pm_runtime_set_status_fndecl_3040
++disable_so_bm_dev_capacity_drbd_bitmap_3043 bm_dev_capacity drbd_bitmap 0 3043 NULL
++disable_so_arp_hash_fndecl_3046 arp_hash fndecl 2 3046 NULL
++disable_so_setkey_ablkcipher_alg_3056 setkey ablkcipher_alg 3 3056 NULL
++disable_so_display_delay_s5p_mfc_ctx_3062 display_delay s5p_mfc_ctx 0 3062 NULL
++disable_so_power_jiffies_hda_codec_3064 power_jiffies hda_codec 0 3064 NULL
++disable_so_dw_mci_exynos_adjust_clock_fndecl_3069 dw_mci_exynos_adjust_clock fndecl 2 3069 NULL
++disable_so_set_var_mtrr_msr_fndecl_3073 set_var_mtrr_msr fndecl 3 3073 NULL
++disable_so_pm860x_rtc_read_time_fndecl_3079 pm860x_rtc_read_time fndecl 0 3079 NULL nohasharray
++disable_so_buffer_haddr_rbd_3079 buffer_haddr rbd 0 3079 &disable_so_pm860x_rtc_read_time_fndecl_3079
++disable_so_snd_usb_find_clock_source_fndecl_3080 snd_usb_find_clock_source fndecl 2 3080 NULL
++disable_so_response_buffer_address_on_dsp_hpi_hw_obj_3083 response_buffer_address_on_dsp hpi_hw_obj 0 3083 NULL
++disable_so_valid_mmap_phys_addr_range_fndecl_3090 valid_mmap_phys_addr_range fndecl 1-2 3090 NULL
++disable_so_mc_addr_count_s2io_nic_3095 mc_addr_count s2io_nic 0 3095 NULL
++disable_so_si4713_g_frequency_fndecl_3096 si4713_g_frequency fndecl 0 3096 NULL
++disable_so_rtl_bb_delay_fndecl_3097 rtl_bb_delay fndecl 2-3 3097 NULL
++disable_so_nla_put_u16_fndecl_3101 nla_put_u16 fndecl 3-0 3101 NULL
++disable_so_enet_addr_rst_fndecl_3111 enet_addr_rst fndecl 1 3111 NULL
++disable_so_xtime_interval_timekeeper_3116 xtime_interval timekeeper 0 3116 NULL
++disable_so_atomic_set_prop_fndecl_3117 atomic_set_prop fndecl 4-0 3117 NULL
++disable_so_read_timeout_vardecl_legousbtower_c_3118 read_timeout vardecl_legousbtower.c 0 3118 NULL nohasharray
++disable_so_netmask_c2_netaddr_3118 netmask c2_netaddr 0 3118 &disable_so_read_timeout_vardecl_legousbtower_c_3118 nohasharray
++disable_so_hashlo_smsc911x_data_3118 hashlo smsc911x_data 0 3118 &disable_so_netmask_c2_netaddr_3118 nohasharray
++disable_so_q_hash_irda_queue_3118 q_hash irda_queue 0 3118 &disable_so_hashlo_smsc911x_data_3118
++disable_so_rpc_get_timeout_fndecl_3124 rpc_get_timeout fndecl 0 3124 NULL
++disable_so_ctime_fuse_attr_3128 ctime fuse_attr 0 3128 NULL
++disable_so_dl_time_nfs4_delegation_3130 dl_time nfs4_delegation 0 3130 NULL
++disable_so_tx_packet_ring_addr_acx_data_path_params_resp_3132 tx_packet_ring_addr acx_data_path_params_resp 0 3132 NULL
++disable_so__div_round_fndecl_3134 _div_round fndecl 2-3-0 3134 NULL
++disable_so_power_up_frequency_adf4350_platform_data_3140 power_up_frequency adf4350_platform_data 0 3140 NULL
++disable_so_bytes_xfrm_lifetime_cur_3145 bytes xfrm_lifetime_cur 0 3145 NULL
++disable_so_show_nguid_fndecl_3155 show_nguid fndecl 0 3155 NULL nohasharray
++disable_so_svm_read_tsc_offset_fndecl_3155 svm_read_tsc_offset fndecl 0 3155 &disable_so_show_nguid_fndecl_3155
++disable_so_shash_ahash_finup_fndecl_3156 shash_ahash_finup fndecl 0 3156 NULL
++disable_so_adjtime_ptp_clock_info_3161 adjtime ptp_clock_info 2 3161 NULL
++disable_so_read_addr___mux2_3162 read_addr __mux2 0 3162 NULL
++disable_so_mem_type_mtrr_iter_3164 mem_type mtrr_iter 0 3164 NULL
++disable_so_cg_spll_func_cntl_ni_clock_registers_3176 cg_spll_func_cntl ni_clock_registers 0 3176 NULL
++disable_so_schedule_hrtimeout_range_clock_fndecl_3178 schedule_hrtimeout_range_clock fndecl 4-2 3178 NULL nohasharray
++disable_so_bitmap_copy_fndecl_3178 bitmap_copy fndecl 3 3178 &disable_so_schedule_hrtimeout_range_clock_fndecl_3178
++disable_so__is_valid_table_div_fndecl_3179 _is_valid_table_div fndecl 2 3179 NULL
++disable_so_addr_2_qla83xx_minidump_entry_pollrdmwr_3183 addr_2 qla83xx_minidump_entry_pollrdmwr 0 3183 NULL
++disable_so_via_clock_vardecl_via82cxxx_c_3195 via_clock vardecl_via82cxxx.c 0 3195 NULL
++disable_so_timeout_reader_dev_3196 timeout reader_dev 0 3196 NULL
++disable_so_delay_palmas_clk32k_desc_3198 delay palmas_clk32k_desc 0 3198 NULL nohasharray
++disable_so_freq_if_hz_tda10048_state_3198 freq_if_hz tda10048_state 0 3198 &disable_so_delay_palmas_clk32k_desc_3198
++disable_so_i2c_address_tda18218_config_3199 i2c_address tda18218_config 0 3199 NULL nohasharray
++disable_so_bot_freq_region_info_3199 bot_freq region_info 0 3199 &disable_so_i2c_address_tda18218_config_3199
++disable_so_sdr_adc_freq_vivid_dev_3202 sdr_adc_freq vivid_dev 0 3202 NULL
++disable_so_wlc_phy_cal_perical_mphase_schedule_fndecl_3220 wlc_phy_cal_perical_mphase_schedule fndecl 2 3220 NULL
++disable_so_uid_ceph_mds_reply_inode_3222 uid ceph_mds_reply_inode 0 3222 NULL nohasharray
++disable_so_mapped_rem_addr_nes_cm_node_3222 mapped_rem_addr nes_cm_node 0 3222 &disable_so_uid_ceph_mds_reply_inode_3222
++disable_so_txq_addr_vf_pf_txq_params_3223 txq_addr vf_pf_txq_params 0 3223 NULL
++disable_so_dma_addr_ksz_shared_mem_3226 dma_addr ksz_shared_mem 0 3226 NULL
++disable_so_smb_timer_atl1_hw_3230 smb_timer atl1_hw 0 3230 NULL
++disable_so_nilfs_btree_node_set_key_fndecl_3231 nilfs_btree_node_set_key fndecl 2-3 3231 NULL
++disable_so_finish_output_interrupt_fndecl_3255 finish_output_interrupt fndecl 1 3255 NULL
++disable_so_command_block_agent_address_sbp2_logical_unit_3261 command_block_agent_address sbp2_logical_unit 0 3261 NULL
++disable_so_st21nfca_get_iso14443_3_uid_fndecl_3264 st21nfca_get_iso14443_3_uid fndecl 0 3264 NULL
++disable_so_db_rec_addr_mlx5_qp_context_3265 db_rec_addr mlx5_qp_context 0 3265 NULL
++disable_so_rssi_jiffies_mwifiex_auto_tdls_peer_3275 rssi_jiffies mwifiex_auto_tdls_peer 0 3275 NULL
++disable_so_random_read_wakeup_bits_vardecl_random_c_3284 random_read_wakeup_bits vardecl_random.c 0 3284 NULL
++disable_so_time_busy_survey_info_3291 time_busy survey_info 0 3291 NULL
++disable_so_platform_pci_sleep_wake_fndecl_3293 platform_pci_sleep_wake fndecl 0 3293 NULL nohasharray
++disable_so_walk_blocksize_blkcipher_walk_3293 walk_blocksize blkcipher_walk 0 3293 &disable_so_platform_pci_sleep_wake_fndecl_3293
++disable_so_addr_kvm_shadow_walk_iterator_3297 addr kvm_shadow_walk_iterator 0 3297 NULL
++disable_so_r6e_val_fc2580_freq_regs_3300 r6e_val fc2580_freq_regs 0 3300 NULL
++disable_so_clock_speed_ov7670_info_3304 clock_speed ov7670_info 0 3304 NULL
++disable_so_bank_base_effect_addr_snd_ymfpci_3311 bank_base_effect_addr snd_ymfpci 0 3311 NULL
++disable_so_nfs_map_name_to_uid_fndecl_3313 nfs_map_name_to_uid fndecl 0-3 3313 NULL
++disable_so_read_block_bitmap_fndecl_3319 read_block_bitmap fndecl 0-3-4 3319 NULL
++disable_so_sis190_get_mac_addr_from_apc_fndecl_3325 sis190_get_mac_addr_from_apc fndecl 0 3325 NULL
++disable_so_head_uvc_clock_3340 head uvc_clock 0 3340 NULL
++disable_so_amd_clock_vardecl_amd74xx_c_3344 amd_clock vardecl_amd74xx.c 0 3344 NULL nohasharray
++disable_so_host_cmds_addr_rtsx_pcr_3344 host_cmds_addr rtsx_pcr 0 3344 &disable_so_amd_clock_vardecl_amd74xx_c_3344
++disable_so_xp_cpu_to_nasid_uv_fndecl_3353 xp_cpu_to_nasid_uv fndecl 0 3353 NULL
++disable_so_last_join_time_local_info_3359 last_join_time local_info 0 3359 NULL
++disable_so_tcf_hash_release_fndecl_3369 tcf_hash_release fndecl 0 3369 NULL
++disable_so_carl9170_set_slot_time_fndecl_3372 carl9170_set_slot_time fndecl 0 3372 NULL
++disable_so_mmc_schedule_delayed_work_fndecl_3376 mmc_schedule_delayed_work fndecl 2 3376 NULL
++disable_so_m_mt9t112_pll_divider_3397 m mt9t112_pll_divider 0 3397 NULL nohasharray
++disable_so__rtl92c_phy_calculate_bit_shift_fndecl_3397 _rtl92c_phy_calculate_bit_shift fndecl 0-1 3397 &disable_so_m_mt9t112_pll_divider_3397
++disable_so_irlap_generate_rand_time_slot_fndecl_3415 irlap_generate_rand_time_slot fndecl 0-1-2 3415 NULL
++disable_so_via_set_secondary_address_fndecl_3417 via_set_secondary_address fndecl 1 3417 NULL
++disable_so___timekeeping_set_tai_offset_fndecl_3425 __timekeeping_set_tai_offset fndecl 2 3425 NULL
++disable_so_apic_access_addr_vmcs12_3427 apic_access_addr vmcs12 0 3427 NULL
++disable_so_prod_idx_addr_cqicb_3435 prod_idx_addr cqicb 0 3435 NULL
++disable_so_uwb_rc_dev_addr_mgmt_fndecl_3445 uwb_rc_dev_addr_mgmt fndecl 0 3445 NULL
++disable_so_sg_bus_addr_ScsiReqBlk_3447 sg_bus_addr ScsiReqBlk 0 3447 NULL
++disable_so_i2c_addr_lgdt3306a_config_3452 i2c_addr lgdt3306a_config 0 3452 NULL
++disable_so_sym_selectclock_fndecl_3453 sym_selectclock fndecl 2 3453 NULL
++disable_so_timestamp_wl1251_rx_descriptor_3475 timestamp wl1251_rx_descriptor 0 3475 NULL
++disable_so_hw_cons_phys_addr_qlcnic_host_tx_ring_3481 hw_cons_phys_addr qlcnic_host_tx_ring 0 3481 NULL
++disable_so_last_jiffies_snd_timer_system_private_3482 last_jiffies snd_timer_system_private 0 3482 NULL
++disable_so_r_min_rnr_timer_qib_qp_3487 r_min_rnr_timer qib_qp 0 3487 NULL
++disable_so_ata_wait_register_fndecl_3494 ata_wait_register fndecl 0 3494 NULL
++disable_so_time_adjust_vardecl_ntp_c_3504 time_adjust vardecl_ntp.c 0 3504 NULL
++disable_so_cursor_addr_intel_crtc_3508 cursor_addr intel_crtc 0 3508 NULL
++disable_so_trf7970a_pm_runtime_suspend_fndecl_3511 trf7970a_pm_runtime_suspend fndecl 0 3511 NULL
++disable_so_oops_timestamp_vardecl_printk_c_3515 oops_timestamp vardecl_printk.c 0 3515 NULL
++disable_so_data_blkaddr_dnode_of_data_3521 data_blkaddr dnode_of_data 0 3521 NULL
++disable_so_SYSC_set_tid_address_fndecl_3523 SYSC_set_tid_address fndecl 0 3523 NULL
++disable_so_ftdi_232am_baud_base_to_divisor_fndecl_3525 ftdi_232am_baud_base_to_divisor fndecl 0-1-2 3525 NULL nohasharray
++disable_so_fll_ratio__fll_div_3525 fll_ratio _fll_div 0 3525 &disable_so_ftdi_232am_baud_base_to_divisor_fndecl_3525 nohasharray
++disable_so_xpcs_reg_addr_write_fndecl_3525 xpcs_reg_addr_write fndecl 3-0 3525 &disable_so_fll_ratio__fll_div_3525
++disable_so_init_crypto_ahash_3526 init crypto_ahash 0 3526 NULL
++disable_so_sit_blkaddr_f2fs_super_block_3531 sit_blkaddr f2fs_super_block 0 3531 NULL
++disable_so_uuid_io_fndecl_3533 uuid_io fndecl 2 3533 NULL
++disable_so_bufs_dma_addr_slgt_info_3534 bufs_dma_addr slgt_info 0 3534 NULL
++disable_so_cpumask_size_fndecl_3544 cpumask_size fndecl 0 3544 NULL
++disable_so_ocfs2_load_local_quota_bitmaps_fndecl_3551 ocfs2_load_local_quota_bitmaps fndecl 0 3551 NULL
++disable_so_ghash_mod_init_fndecl_3557 ghash_mod_init fndecl 0 3557 NULL
++disable_so_ath5k_hw_init_beacon_timers_fndecl_3558 ath5k_hw_init_beacon_timers fndecl 2-3 3558 NULL
++disable_so_addr_h_qla2xxx_fce_chain_3560 addr_h qla2xxx_fce_chain 0 3560 NULL
++disable_so_acpi_pci_sleep_wake_fndecl_3562 acpi_pci_sleep_wake fndecl 0 3562 NULL
++disable_so_sd_set_timing_fndecl_3566 sd_set_timing fndecl 0 3566 NULL
++disable_so_hpt3x2n_pci_clock_fndecl_3568 hpt3x2n_pci_clock fndecl 0 3568 NULL
++disable_so_ata_sff_busy_sleep_fndecl_3571 ata_sff_busy_sleep fndecl 2-3 3571 NULL
++disable_so_min_freq_cpufreq_cpuinfo_3592 min_freq cpufreq_cpuinfo 0 3592 NULL
++disable_so_ver_blank_start_via_display_timing_3593 ver_blank_start via_display_timing 0 3593 NULL
++disable_so_last_tsc_khz_kvm_arch_3596 last_tsc_khz kvm_arch 0 3596 NULL
++disable_so_addrconf_sysctl_stable_secret_fndecl_3602 addrconf_sysctl_stable_secret fndecl 0 3602 NULL
++disable_so_rxq_addr_vf_pf_rxq_params_3624 rxq_addr vf_pf_rxq_params 0 3624 NULL
++disable_so_go7007_usb_ezusb_write_interrupt_fndecl_3625 go7007_usb_ezusb_write_interrupt fndecl 3-2 3625 NULL
++disable_so_zd_write_mac_addr_fndecl_3635 zd_write_mac_addr fndecl 0 3635 NULL
++disable_so_rt2x00crypto_tx_insert_iv_fndecl_3640 rt2x00crypto_tx_insert_iv fndecl 2 3640 NULL
++disable_so_lvb_imtime_packed_ocfs2_meta_lvb_3641 lvb_imtime_packed ocfs2_meta_lvb 0 3641 NULL
++disable_so_base_address_acpi_srat_mem_affinity_3662 base_address acpi_srat_mem_affinity 0 3662 NULL
++disable_so_time_ksz_counter_info_3667 time ksz_counter_info 0 3667 NULL
++disable_so_phys_addr_qlcnic_host_sds_ring_3676 phys_addr qlcnic_host_sds_ring 0 3676 NULL
++disable_so_addr_ipcm_cookie_3680 addr ipcm_cookie 0 3680 NULL
++disable_so_timestamp_nfs4_renewdata_3698 timestamp nfs4_renewdata 0 3698 NULL
++disable_so_ocfs2_find_subtree_root_fndecl_3700 ocfs2_find_subtree_root fndecl 0 3700 NULL
++disable_so_azx_get_delay_from_lpib_fndecl_3703 azx_get_delay_from_lpib fndecl 0-3 3703 NULL
++disable_so_ieee80211_frequency_to_channel_fndecl_3709 ieee80211_frequency_to_channel fndecl 0-1 3709 NULL
++disable_so_rx8025_sysfs_show_clock_adjust_fndecl_3720 rx8025_sysfs_show_clock_adjust fndecl 0 3720 NULL nohasharray
++disable_so_vtotal___fb_timings_3720 vtotal __fb_timings 0 3720 &disable_so_rx8025_sysfs_show_clock_adjust_fndecl_3720
++disable_so_autofs4_compat_get_set_timeout_fndecl_3726 autofs4_compat_get_set_timeout fndecl 0 3726 NULL
++disable_so_paddr_ath10k_mem_chunk_3729 paddr ath10k_mem_chunk 0 3729 NULL
++disable_so_interrupt_serio_driver_3738 interrupt serio_driver 2 3738 NULL
++disable_so_m2_gma_clock_t_3742 m2 gma_clock_t 0 3742 NULL
++disable_so_n_mt9t112_pll_divider_3743 n mt9t112_pll_divider 0 3743 NULL
++disable_so_gcm_hash_crypt_done_fndecl_3746 gcm_hash_crypt_done fndecl 2 3746 NULL
++disable_so_addr_i915_wa_reg_3751 addr i915_wa_reg 0 3751 NULL
++disable_so_r12_kvm_regs_3771 r12 kvm_regs 0 3771 NULL
++disable_so_sw_addr_dsa_chip_data_3785 sw_addr dsa_chip_data 0 3785 NULL
++disable_so_t_sec_xfs_ictimestamp_3790 t_sec xfs_ictimestamp 0 3790 NULL
++disable_so_ext4_block_bitmap_csum_set_fndecl_3795 ext4_block_bitmap_csum_set fndecl 2 3795 NULL
++disable_so_pud_page_vaddr_fndecl_3809 pud_page_vaddr fndecl 0 3809 NULL
++disable_so_coalescing_timeout_bfi_enet_ib_cfg_3813 coalescing_timeout bfi_enet_ib_cfg 0 3813 NULL
++disable_so_sg_list_dma_address_skd_command_header_3825 sg_list_dma_address skd_command_header 0 3825 NULL
++disable_so_ax25_display_timer_fndecl_3831 ax25_display_timer fndecl 0 3831 NULL
++disable_so_tsi721_imsg_interrupt_disable_fndecl_3835 tsi721_imsg_interrupt_disable fndecl 2-3 3835 NULL
++disable_so_irlap_start_mbusy_timer_fndecl_3852 irlap_start_mbusy_timer fndecl 2 3852 NULL
++disable_so_size_log2_iwch_create_cq_resp_3861 size_log2 iwch_create_cq_resp 0 3861 NULL
++disable_so_cttimeout_get_timeout_fndecl_3867 cttimeout_get_timeout fndecl 0 3867 NULL
++disable_so_ioadl_bus_addr_pmcraid_ioarcb_3871 ioadl_bus_addr pmcraid_ioarcb 0 3871 NULL
++disable_so___clocksource_register_scale_fndecl_3879 __clocksource_register_scale fndecl 2-3-0 3879 NULL
++disable_so_tx_lsndtime_ccid2_hc_tx_sock_3890 tx_lsndtime ccid2_hc_tx_sock 0 3890 NULL
++disable_so_xfs_btree_new_root_fndecl_3895 xfs_btree_new_root fndecl 0 3895 NULL
++disable_so_freq_p54_channel_entry_3897 freq p54_channel_entry 0 3897 NULL
++disable_so_xen_poll_irq_timeout_fndecl_3900 xen_poll_irq_timeout fndecl 1-2 3900 NULL
++disable_so_nilfs_btree_propagate_v_fndecl_3902 nilfs_btree_propagate_v fndecl 0 3902 NULL
++disable_so_max8907_rtc_set_time_fndecl_3905 max8907_rtc_set_time fndecl 0 3905 NULL
++disable_so_alps_command_mode_set_addr_fndecl_3910 alps_command_mode_set_addr fndecl 2 3910 NULL
++disable_so_ltimer_val_vxge_hw_tim_intr_config_3911 ltimer_val vxge_hw_tim_intr_config 0 3911 NULL
++disable_so_dqb_btime_v1_disk_dqblk_3914 dqb_btime v1_disk_dqblk 0 3914 NULL nohasharray
++disable_so_rsp_dmaaddr_fw_scsi_read_wr_3914 rsp_dmaaddr fw_scsi_read_wr 0 3914 &disable_so_dqb_btime_v1_disk_dqblk_3914
++disable_so_ieee802154_hdr_push_addr_fndecl_3915 ieee802154_hdr_push_addr fndecl 0 3915 NULL
++disable_so_blk_mq_init_bitmap_tags_fndecl_3929 blk_mq_init_bitmap_tags fndecl 2 3929 NULL
++disable_so_mtimensec_fuse_attr_3937 mtimensec fuse_attr 0 3937 NULL
++disable_so_cpu_clock_sample_group_fndecl_3939 cpu_clock_sample_group fndecl 1 3939 NULL
++disable_so_min_bit_val_anatop_regulator_3947 min_bit_val anatop_regulator 0 3947 NULL
++disable_so_warmup_time_sfb_sched_data_3959 warmup_time sfb_sched_data 0 3959 NULL
++disable_so_zd_write_mac_addr_common_fndecl_3965 zd_write_mac_addr_common fndecl 0 3965 NULL
++disable_so_ext2_valid_block_bitmap_fndecl_3966 ext2_valid_block_bitmap fndecl 3 3966 NULL
++disable_so_ctnetlink_change_timeout_fndecl_3973 ctnetlink_change_timeout fndecl 0 3973 NULL
++disable_so_root_nfs_parse_addr_fndecl_3974 root_nfs_parse_addr fndecl 0 3974 NULL
++disable_so_zalloc_cpumask_var_fndecl_3979 zalloc_cpumask_var fndecl 2 3979 NULL
++disable_so_sta_addr_hash_fndecl_3982 sta_addr_hash fndecl 0-3 3982 NULL
++disable_so_address_ins_format3_3983 address ins_format3 0 3983 NULL
++disable_so___nfsd4_write_time_fndecl_3999 __nfsd4_write_time fndecl 0 3999 NULL
++disable_so_disc_start_time_esas2r_adapter_4010 disc_start_time esas2r_adapter 0 4010 NULL
++disable_so_scroll_jiffies_magicmouse_sc_4034 scroll_jiffies magicmouse_sc 0 4034 NULL
++disable_so_add_input_randomness_fndecl_4036 add_input_randomness fndecl 3-1-2 4036 NULL
++disable_so_rc5t583_regulator_enable_time_fndecl_4047 rc5t583_regulator_enable_time fndecl 0 4047 NULL
++disable_so_s_log2sharesize_adfs_sb_info_4052 s_log2sharesize adfs_sb_info 0 4052 NULL
++disable_so___bitmap_or_fndecl_4055 __bitmap_or fndecl 4 4055 NULL
++disable_so_clockevents_config_and_register_fndecl_4078 clockevents_config_and_register fndecl 2-3-4 4078 NULL
++disable_so_db_addr_mlx5_ib_create_qp_4086 db_addr mlx5_ib_create_qp 0 4086 NULL
++disable_so_t4_wr_mbox_meat_fndecl_4090 t4_wr_mbox_meat fndecl 0-2 4090 NULL
++disable_so_debounce_time_lm8333_platform_data_4097 debounce_time lm8333_platform_data 0 4097 NULL
++disable_so_di_atime_logfs_disk_inode_4115 di_atime logfs_disk_inode 0 4115 NULL
++disable_so_slave_address_cp2112_read_req_report_4116 slave_address cp2112_read_req_report 0 4116 NULL
++disable_so_sleep_functions_on_battery_store_fndecl_4126 sleep_functions_on_battery_store fndecl 0-4 4126 NULL
++disable_so_neigh_rand_reach_time_fndecl_4142 neigh_rand_reach_time fndecl 0-1 4142 NULL
++disable_so_fib_devindex_hashfn_fndecl_4150 fib_devindex_hashfn fndecl 0-1 4150 NULL
++disable_so_compat_sys_clock_adjtime_fndecl_4152 compat_sys_clock_adjtime fndecl 1 4152 NULL nohasharray
++disable_so_addr_sh_eth_rxdesc_4152 addr sh_eth_rxdesc 0 4152 &disable_so_compat_sys_clock_adjtime_fndecl_4152
++disable_so_throttled_clock_task_time_cfs_rq_4161 throttled_clock_task_time cfs_rq 0 4161 NULL
++disable_so_usb_set_lpm_timeout_fndecl_4163 usb_set_lpm_timeout fndecl 3 4163 NULL
++disable_so_delay_multi_eq_delay_info_4167 delay_multi eq_delay_info 0 4167 NULL nohasharray
++disable_so_reg_w_fndecl_4167 reg_w fndecl 2 4167 &disable_so_delay_multi_eq_delay_info_4167
++disable_so_btree_migratepage_fndecl_4171 btree_migratepage fndecl 0 4171 NULL
++disable_so_vpfe_set_sdr_addr_fndecl_4178 vpfe_set_sdr_addr fndecl 2 4178 NULL
++disable_so_rx_beacon_signal_avg_station_info_4180 rx_beacon_signal_avg station_info 0 4180 NULL
++disable_so_put_time_rxrpc_connection_4183 put_time rxrpc_connection 0 4183 NULL
++disable_so_demod_address_nxt200x_config_4185 demod_address nxt200x_config 0 4185 NULL
++disable_so_addr_lo_cmdQ_e_4186 addr_lo cmdQ_e 0 4186 NULL
++disable_so_addr_lo_eth_tx_next_bd_4188 addr_lo eth_tx_next_bd 0 4188 NULL
++disable_so_timeout_kbd_backlight_4193 timeout kbd_backlight 0 4193 NULL
++disable_so_hw_ptr_buffer_jiffies_snd_pcm_runtime_4199 hw_ptr_buffer_jiffies snd_pcm_runtime 0 4199 NULL
++disable_so_hash_walk_new_entry_fndecl_4203 hash_walk_new_entry fndecl 0 4203 NULL
++disable_so_time_of_death_afs_server_4206 time_of_death afs_server 0 4206 NULL
++disable_so_rtl2832_sdr_s_frequency_fndecl_4208 rtl2832_sdr_s_frequency fndecl 0 4208 NULL
++disable_so_si476x_radio_g_frequency_fndecl_4218 si476x_radio_g_frequency fndecl 0 4218 NULL
++disable_so_ahc_delay_fndecl_4220 ahc_delay fndecl 1 4220 NULL
++disable_so_mounted_time_sit_info_4228 mounted_time sit_info 0 4228 NULL
++disable_so_ahash_register_instance_fndecl_4229 ahash_register_instance fndecl 0 4229 NULL
++disable_so_f_frequency_e4000_dev_4236 f_frequency e4000_dev 0 4236 NULL
++disable_so_timekeeping_adjust_fndecl_4243 timekeeping_adjust fndecl 2 4243 NULL
++disable_so_sis190_mac_addr_fndecl_4248 sis190_mac_addr fndecl 0 4248 NULL nohasharray
++disable_so_vma_interval_tree_subtree_search_fndecl_4248 vma_interval_tree_subtree_search fndecl 2-3 4248 &disable_so_sis190_mac_addr_fndecl_4248
++disable_so_xhci_enable_usb3_lpm_timeout_fndecl_4278 xhci_enable_usb3_lpm_timeout fndecl 0 4278 NULL
++disable_so_address_be_bus_address64_4299 address be_bus_address64 0 4299 NULL
++disable_so_freq_tef6862_state_4304 freq tef6862_state 0 4304 NULL
++disable_so_aes_decrypt_interrupt_read_fndecl_4309 aes_decrypt_interrupt_read fndecl 3-0 4309 NULL
++disable_so_lm3533_set_boost_freq_fndecl_4311 lm3533_set_boost_freq fndecl 0-2 4311 NULL
++disable_so_adis16400_set_freq_fndecl_4314 adis16400_set_freq fndecl 0 4314 NULL
++disable_so_vsync_offset_pulse_width_lo_detailed_pixel_timing_4318 vsync_offset_pulse_width_lo detailed_pixel_timing 0 4318 NULL
++disable_so_time_atkbd_4320 time atkbd 0 4320 NULL nohasharray
++disable_so_make_kuid_fndecl_4320 make_kuid fndecl 2 4320 &disable_so_time_atkbd_4320
++disable_so_lookup_scsi3addr_fndecl_4332 lookup_scsi3addr fndecl 2-3-4 4332 NULL
++disable_so_bf_buf_addr_ath_rxbuf_4337 bf_buf_addr ath_rxbuf 0 4337 NULL
++disable_so_kbd_backlight_timeout_vardecl_sony_laptop_c_4340 kbd_backlight_timeout vardecl_sony-laptop.c 0 4340 NULL
++disable_so_tomoyo_addprintf_fndecl_4352 tomoyo_addprintf fndecl 2 4352 NULL
++disable_so_ab3100_get_register_interruptible_fndecl_4353 ab3100_get_register_interruptible fndecl 0 4353 NULL
++disable_so_cpufreq_add_dev_interface_fndecl_4356 cpufreq_add_dev_interface fndecl 0 4356 NULL
++disable_so_upper_addr_ufshcd_sg_entry_4364 upper_addr ufshcd_sg_entry 0 4364 NULL
++disable_so_linear_address_kvm_translation_4366 linear_address kvm_translation 0 4366 NULL
++disable_so_n_tty_receive_signal_char_fndecl_4373 n_tty_receive_signal_char fndecl 2 4373 NULL
++disable_so_proc_uid_vardecl_airo_c_4387 proc_uid vardecl_airo.c 0 4387 NULL nohasharray
++disable_so_dequeue_signal_fndecl_4387 dequeue_signal fndecl 0 4387 &disable_so_proc_uid_vardecl_airo_c_4387
++disable_so_nilfs_btree_root_broken_fndecl_4403 nilfs_btree_root_broken fndecl 2 4403 NULL
++disable_so_kstrtoll_from_user_fndecl_4415 kstrtoll_from_user fndecl 2 4415 NULL
++disable_so_timestamp_fw_packet_4416 timestamp fw_packet 0 4416 NULL
++disable_so_hhf_reset_timeout_hhf_sched_data_4417 hhf_reset_timeout hhf_sched_data 0 4417 NULL
++disable_so_timeout_mpt3_ioctl_command_4422 timeout mpt3_ioctl_command 0 4422 NULL
++disable_so_reg_write_fndecl_4433 reg_write fndecl 0-2-3 4433 NULL
++disable_so_et0phyaddr_ssb_sprom_4448 et0phyaddr ssb_sprom 0 4448 NULL
++disable_so_prev_steal_time_rq_4451 prev_steal_time rq 0 4451 NULL
++disable_so_master_init_timer_mipi_config_4453 master_init_timer mipi_config 0 4453 NULL
++disable_so_find_eth_addr_in_vpd_fndecl_4457 find_eth_addr_in_vpd fndecl 3 4457 NULL
++disable_so_ccca_start_addr_snd_emu10k1_pcm_4459 ccca_start_addr snd_emu10k1_pcm 0 4459 NULL
++disable_so_freq_offset_khz_vhf_dib0090_config_4461 freq_offset_khz_vhf dib0090_config 0 4461 NULL
++disable_so_rxqueue_timer_velocity_opt_4470 rxqueue_timer velocity_opt 0 4470 NULL
++disable_so_sysctl_rose_link_fail_timeout_vardecl_4477 sysctl_rose_link_fail_timeout vardecl 0 4477 NULL
++disable_so_ablkcipher_walk_first_fndecl_4483 ablkcipher_walk_first fndecl 0 4483 NULL
++disable_so_get_cached_alias_guid_fndecl_4490 get_cached_alias_guid fndecl 2-3 4490 NULL
++disable_so_cfg80211_chandef_dfs_cac_time_fndecl_4493 cfg80211_chandef_dfs_cac_time fndecl 0 4493 NULL
++disable_so_mclk_div2_cs42l56_private_4499 mclk_div2 cs42l56_private 0 4499 NULL
++disable_so_snd_timer_user_ioctl_fndecl_4500 snd_timer_user_ioctl fndecl 0 4500 NULL nohasharray
++disable_so_s5p_mfc_clock_on_fndecl_4500 s5p_mfc_clock_on fndecl 0 4500 &disable_so_snd_timer_user_ioctl_fndecl_4500
++disable_so_boundary_snd_pcm_runtime_4504 boundary snd_pcm_runtime 0 4504 NULL nohasharray
++disable_so_show_message_age_timer_fndecl_4504 show_message_age_timer fndecl 0 4504 &disable_so_boundary_snd_pcm_runtime_4504
++disable_so_tn_smc_wreg_fndecl_4512 tn_smc_wreg fndecl 2-3 4512 NULL
++disable_so_ip_perf_sample_data_4515 ip perf_sample_data 0 4515 NULL nohasharray
++disable_so_intel_gpu_freq_fndecl_4515 intel_gpu_freq fndecl 0-2 4515 &disable_so_ip_perf_sample_data_4515
++disable_so_clk_delay_mmc_host_4517 clk_delay mmc_host 0 4517 NULL
++disable_so_addr_atiixp_modem_4521 addr atiixp_modem 0 4521 NULL
++disable_so_rsp_dmaaddr_fw_scsi_write_wr_4522 rsp_dmaaddr fw_scsi_write_wr 0 4522 NULL
++disable_so_last_sum_exec_runtime_task_struct_4531 last_sum_exec_runtime task_struct 0 4531 NULL
++disable_so_buf_addr_mlx5_ib_create_qp_4533 buf_addr mlx5_ib_create_qp 0 4533 NULL
++disable_so_set_h245_addr_fndecl_4538 set_h245_addr fndecl 2-4 4538 NULL
++disable_so_sleep_reg_fan53555_device_info_4552 sleep_reg fan53555_device_info 0 4552 NULL
++disable_so_freqmode__pll_div_4562 freqmode _pll_div 0 4562 NULL
++disable_so_buffer_addr_i40e_tx_desc_4570 buffer_addr i40e_tx_desc 0 4570 NULL
++disable_so_ctime_cifs_unix_set_info_args_4572 ctime cifs_unix_set_info_args 0 4572 NULL
++disable_so_pci_bus_saa7164_dev_4576 pci_bus saa7164_dev 0 4576 NULL
++disable_so_addr_vhost_log_4579 addr vhost_log 0 4579 NULL
++disable_so_store_fan_div_fndecl_4585 store_fan_div fndecl 0-4 4585 NULL
++disable_so_timeout__mgslpc_info_4586 timeout _mgslpc_info 0 4586 NULL
++disable_so_posix_timer_add_fndecl_4591 posix_timer_add fndecl 0 4591 NULL
++disable_so_system_timestamp_iwl_rx_phy_info_4592 system_timestamp iwl_rx_phy_info 0 4592 NULL
++disable_so_guid_ib_dm_ioc_profile_4593 guid ib_dm_ioc_profile 0 4593 NULL
++disable_so_qat_alg_ablkcipher_init_com_fndecl_4596 qat_alg_ablkcipher_init_com fndecl 5 4596 NULL
++disable_so_irlan_client_start_kick_timer_fndecl_4618 irlan_client_start_kick_timer fndecl 2 4618 NULL
++disable_so_kvm_apic_match_physical_addr_fndecl_4632 kvm_apic_match_physical_addr fndecl 2 4632 NULL
++disable_so_task_fix_setuid_security_operations_4637 task_fix_setuid security_operations 0 4637 NULL
++disable_so_nla_put_labels_fndecl_4639 nla_put_labels fndecl 3 4639 NULL
++disable_so_xen_pcibk_guest_interrupt_fndecl_4644 xen_pcibk_guest_interrupt fndecl 1 4644 NULL
++disable_so_phys_addr_qlcnic_fw_dump_4650 phys_addr qlcnic_fw_dump 0 4650 NULL
++disable_so_daddr_ath5k_buf_4651 daddr ath5k_buf 0 4651 NULL
++disable_so_phase_delay_atom_voltage_table_4655 phase_delay atom_voltage_table 0 4655 NULL
++disable_so_nl80211_send_auth_timeout_fndecl_4657 nl80211_send_auth_timeout fndecl 4 4657 NULL
++disable_so_af9013_statistics_signal_strength_fndecl_4658 af9013_statistics_signal_strength fndecl 0 4658 NULL
++disable_so_kbd_led_timeout_store_fndecl_4659 kbd_led_timeout_store fndecl 0-4 4659 NULL
++disable_so_byte_align_snd_pcm_runtime_4661 byte_align snd_pcm_runtime 0 4661 NULL
++disable_so_stv0900_get_timing_offst_fndecl_4670 stv0900_get_timing_offst fndecl 0-2 4670 NULL
++disable_so_clk_frequency_imx_sgtl5000_data_4671 clk_frequency imx_sgtl5000_data 0 4671 NULL
++disable_so_sys_image_guid_ib_device_attr_4674 sys_image_guid ib_device_attr 0 4674 NULL
++disable_so_timestamp_usec_rt2x00dump_hdr_4680 timestamp_usec rt2x00dump_hdr 0 4680 NULL
++disable_so_ieee80211_aes_cmac_fndecl_4693 ieee80211_aes_cmac fndecl 4 4693 NULL
++disable_so_hpi_handle_indexes_fndecl_4704 hpi_handle_indexes fndecl 1 4704 NULL
++disable_so_runtime_suspend_mmc_bus_ops_4709 runtime_suspend mmc_bus_ops 0 4709 NULL
++disable_so_i_atime_bfs_inode_4710 i_atime bfs_inode 0 4710 NULL
++disable_so_tsf_timestamp_rx_ppdu_end_common_4717 tsf_timestamp rx_ppdu_end_common 0 4717 NULL
++disable_so_register_blkdev_fndecl_4723 register_blkdev fndecl 0-1 4723 NULL
++disable_so_clockevents_unbind_fndecl_4727 clockevents_unbind fndecl 2 4727 NULL
++disable_so_dma_addr_vmxnet3_rx_buf_info_4730 dma_addr vmxnet3_rx_buf_info 0 4730 NULL
++disable_so_ip_idents_reserve_fndecl_4731 ip_idents_reserve fndecl 0-1-2 4731 NULL
++disable_so_atomic64_sub_and_test_fndecl_4733 atomic64_sub_and_test fndecl 1 4733 NULL nohasharray
++disable_so_hsync_offset_lo_detailed_pixel_timing_4733 hsync_offset_lo detailed_pixel_timing 0 4733 &disable_so_atomic64_sub_and_test_fndecl_4733
++disable_so_wakeup_total_time_show_fndecl_4745 wakeup_total_time_show fndecl 0 4745 NULL
++disable_so_kv_get_sleep_divider_id_from_clock_fndecl_4756 kv_get_sleep_divider_id_from_clock fndecl 2 4756 NULL
++disable_so_delay_fn_vardecl_delay_c_4772 delay_fn vardecl_delay.c 1 4772 NULL
++disable_so_do_sched_cfs_period_timer_fndecl_4778 do_sched_cfs_period_timer fndecl 2 4778 NULL
++disable_so_gid_index_mlx4_av_4786 gid_index mlx4_av 0 4786 NULL
++disable_so_rq_addr_high_nes_qp_context_4796 rq_addr_high nes_qp_context 0 4796 NULL
++disable_so_last_commit_jiffies_cache_4801 last_commit_jiffies cache 0 4801 NULL
++disable_so_frequency_sst_hsw_audio_data_format_ipc_4811 frequency sst_hsw_audio_data_format_ipc 0 4811 NULL
++disable_so_dev_sleep_time_cyapa_4825 dev_sleep_time cyapa 0 4825 NULL nohasharray
++disable_so_si570_update_rfreq_fndecl_4825 si570_update_rfreq fndecl 0 4825 &disable_so_dev_sleep_time_cyapa_4825
++disable_so_reply_dma_max_address_MPT2SAS_ADAPTER_4826 reply_dma_max_address MPT2SAS_ADAPTER 0 4826 NULL
++disable_so_freq_nvkm_ram_data_4838 freq nvkm_ram_data 0 4838 NULL
++disable_so_ata_timing_find_mode_fndecl_4841 ata_timing_find_mode fndecl 1 4841 NULL
++disable_so_hci_bdaddr_list_del_fndecl_4856 hci_bdaddr_list_del fndecl 0 4856 NULL
++disable_so_challenge_timestamp_vardecl_tcp_input_c_4859 challenge_timestamp vardecl_tcp_input.c 0 4859 NULL
++disable_so_bar2_address_fndecl_4862 bar2_address fndecl 2 4862 NULL
++disable_so_time_pardevice_4872 time pardevice 0 4872 NULL
++disable_so_open_posix_clock_operations_4876 open posix_clock_operations 2 4876 NULL
++disable_so_buf2_addr_xgmac_dma_desc_4877 buf2_addr xgmac_dma_desc 0 4877 NULL
++disable_so_mixart_set_clock_fndecl_4878 mixart_set_clock fndecl 3 4878 NULL nohasharray
++disable_so_adis16480_get_filter_freq_fndecl_4878 adis16480_get_filter_freq fndecl 0 4878 &disable_so_mixart_set_clock_fndecl_4878
++disable_so_ssb_chipco_watchdog_get_max_timer_fndecl_4885 ssb_chipco_watchdog_get_max_timer fndecl 0 4885 NULL
++disable_so_sys_timerfd_gettime_fndecl_4888 sys_timerfd_gettime fndecl 1 4888 NULL nohasharray
++disable_so_regcache_rbtree_read_fndecl_4888 regcache_rbtree_read fndecl 2 4888 &disable_so_sys_timerfd_gettime_fndecl_4888
++disable_so_reiserfs_read_bitmap_block_fndecl_4892 reiserfs_read_bitmap_block fndecl 2 4892 NULL
++disable_so_mapaddr_bq_desc_4896 mapaddr bq_desc 0 4896 NULL
++disable_so_sec_tomoyo_time_4898 sec tomoyo_time 0 4898 NULL
++disable_so_nvkm_timer_wait_ne_fndecl_4904 nvkm_timer_wait_ne fndecl 3-5 4904 NULL
++disable_so_ehash_locks_mask_inet_hashinfo_4906 ehash_locks_mask inet_hashinfo 0 4906 NULL
++disable_so_split_scan_timeout_read_fndecl_4910 split_scan_timeout_read fndecl 3-0 4910 NULL
++disable_so_rdmsr_safe_regs_on_cpu_fndecl_4918 rdmsr_safe_regs_on_cpu fndecl 0-1 4918 NULL
++disable_so_data_addr_pmu_nvbios_pmuR_4930 data_addr_pmu nvbios_pmuR 0 4930 NULL
++disable_so_fs_overflowgid_vardecl_4952 fs_overflowgid vardecl 0 4952 NULL
++disable_so_crypto_authenc_esn_encrypt_done_fndecl_4953 crypto_authenc_esn_encrypt_done fndecl 2 4953 NULL
++disable_so_addr_lo_sdhci_adma2_64_desc_4956 addr_lo sdhci_adma2_64_desc 0 4956 NULL
++disable_so_hc_erase_timeout_mmc_ext_csd_4958 hc_erase_timeout mmc_ext_csd 0 4958 NULL nohasharray
++disable_so_translation_offset_acpi_address64_attribute_4958 translation_offset acpi_address64_attribute 0 4958 &disable_so_hc_erase_timeout_mmc_ext_csd_4958
++disable_so_address_acpi_object_region_4962 address acpi_object_region 0 4962 NULL
++disable_so_nlmsvc_timeout_vardecl_4968 nlmsvc_timeout vardecl 0 4968 NULL
++disable_so_icmpv6_time_netns_sysctl_ipv6_4971 icmpv6_time netns_sysctl_ipv6 0 4971 NULL
++disable_so_rhashtable_walk_init_fndecl_4975 rhashtable_walk_init fndecl 0 4975 NULL
++disable_so_tm_wday_rtc_time_4991 tm_wday rtc_time 0 4991 NULL
++disable_so_pre_event_timeout_seq_oss_readq_4996 pre_event_timeout seq_oss_readq 0 4996 NULL
++disable_so_m_sys_clock_freq_drxk_state_5005 m_sys_clock_freq drxk_state 0 5005 NULL
++disable_so_btree_merge_fndecl_5007 btree_merge fndecl 4 5007 NULL
++disable_so_addr_snd_dma_buffer_5022 addr snd_dma_buffer 0 5022 NULL
++disable_so_mlx4_get_slave_num_gids_fndecl_5024 mlx4_get_slave_num_gids fndecl 0-2-3 5024 NULL
++disable_so_time_nfc_llcp_sdp_tlv_5037 time nfc_llcp_sdp_tlv 0 5037 NULL
++disable_so_hangcheck_tsc_margin_vardecl_hangcheck_timer_c_5043 hangcheck_tsc_margin vardecl_hangcheck-timer.c 0 5043 NULL
++disable_so_fill_node_footer_blkaddr_fndecl_5053 fill_node_footer_blkaddr fndecl 2 5053 NULL
++disable_so_sc_lseg_stime_nilfs_sc_info_5054 sc_lseg_stime nilfs_sc_info 0 5054 NULL
++disable_so_kstrtou8_fndecl_5058 kstrtou8 fndecl 0 5058 NULL
++disable_so_RF_SYN_pll_refdiv_chan_info_nphy_radio205x_5063 RF_SYN_pll_refdiv chan_info_nphy_radio205x 0 5063 NULL
++disable_so_addr_lo_tx_desc_5065 addr_lo tx_desc 0 5065 NULL
++disable_so_mos7840_calc_baud_rate_divisor_fndecl_5067 mos7840_calc_baud_rate_divisor fndecl 2 5067 NULL nohasharray
++disable_so_addr_iwch_mm_entry_5067 addr iwch_mm_entry 0 5067 &disable_so_mos7840_calc_baud_rate_divisor_fndecl_5067
++disable_so_freq_wmi_send_mgmt_cmd_5080 freq wmi_send_mgmt_cmd 0 5080 NULL
++disable_so_wep_addr_key_count_read_fndecl_5085 wep_addr_key_count_read fndecl 3-0 5085 NULL
++disable_so_bitmap_find_next_zero_area_off_fndecl_5088 bitmap_find_next_zero_area_off fndecl 0-2-3-4-5-6 5088 NULL
++disable_so_udf_bitmap_new_block_fndecl_5093 udf_bitmap_new_block fndecl 0-4 5093 NULL
++disable_so_ds1343_read_time_fndecl_5094 ds1343_read_time fndecl 0 5094 NULL nohasharray
++disable_so_panel_blon_delay_radeon_encoder_lvds_5094 panel_blon_delay radeon_encoder_lvds 0 5094 &disable_so_ds1343_read_time_fndecl_5094
++disable_so_hpi_cobranet_set_ip_address_fndecl_5106 hpi_cobranet_set_ip_address fndecl 1 5106 NULL
++disable_so_rx_bidx_addr_bnx2_rx_ring_info_5107 rx_bidx_addr bnx2_rx_ring_info 0 5107 NULL nohasharray
++disable_so_bitmap_andnot_fndecl_5107 bitmap_andnot fndecl 4 5107 &disable_so_rx_bidx_addr_bnx2_rx_ring_info_5107
++disable_so_end_seq_illinois_5111 end_seq illinois 0 5111 NULL
++disable_so_in_progress_block_addr_flchip_5114 in_progress_block_addr flchip 0 5114 NULL
++disable_so_xmit_timestamp_cw1200_queue_item_5121 xmit_timestamp cw1200_queue_item 0 5121 NULL
++disable_so_snd_ymfpci_timer_fndecl_5137 snd_ymfpci_timer fndecl 2-0 5137 NULL
++disable_so_sysctl_rose_no_activity_timeout_vardecl_5143 sysctl_rose_no_activity_timeout vardecl 0 5143 NULL
++disable_so_mtime_p9_wstat_5152 mtime p9_wstat 0 5152 NULL nohasharray
++disable_so_addr_mvs_prd_5152 addr mvs_prd 0 5152 &disable_so_mtime_p9_wstat_5152
++disable_so_pcan_usb_pro_set_bittiming_fndecl_5169 pcan_usb_pro_set_bittiming fndecl 0 5169 NULL
++disable_so_phy_addr_e1000_hw_5196 phy_addr e1000_hw 0 5196 NULL
++disable_so_cpufreq_p4_init_fndecl_5201 cpufreq_p4_init fndecl 0 5201 NULL
++disable_so_iscsit_na_dataout_timeout_retries_fndecl_5205 iscsit_na_dataout_timeout_retries fndecl 0 5205 NULL
++disable_so_ata_sff_queue_delayed_work_fndecl_5217 ata_sff_queue_delayed_work fndecl 2 5217 NULL
++disable_so_post_div_atom_mpll_param_5225 post_div atom_mpll_param 0 5225 NULL
++disable_so_cfg80211_wext_freq_fndecl_5229 cfg80211_wext_freq fndecl 0 5229 NULL
++disable_so_poll_timer_vardecl_hfcmulti_c_5232 poll_timer vardecl_hfcmulti.c 0 5232 NULL
++disable_so_antdiv_ctl1_modal_eep_4k_header_5248 antdiv_ctl1 modal_eep_4k_header 0 5248 NULL
++disable_so_snd_efw_command_get_clock_source_fndecl_5253 snd_efw_command_get_clock_source fndecl 0 5253 NULL
++disable_so_img_ir_free_timing_dynamic_fndecl_5255 img_ir_free_timing_dynamic fndecl 0-1 5255 NULL
++disable_so_iscsi_nacl_attrib_store_dataout_timeout_retries_fndecl_5267 iscsi_nacl_attrib_store_dataout_timeout_retries fndecl 0-3 5267 NULL
++disable_so_st_mtime_nsec_compat_stat_5268 st_mtime_nsec compat_stat 0 5268 NULL nohasharray
++disable_so_mpll_dq_func_cntl_2_rv770_clock_registers_5268 mpll_dq_func_cntl_2 rv770_clock_registers 0 5268 &disable_so_st_mtime_nsec_compat_stat_5268
++disable_so_selinux_task_setpgid_fndecl_5275 selinux_task_setpgid fndecl 0 5275 NULL
++disable_so_target_addr_sg_entry_5281 target_addr sg_entry 0 5281 NULL nohasharray
++disable_so_range_start_fixed_mtrr_segment_5281 range_start fixed_mtrr_segment 0 5281 &disable_so_target_addr_sg_entry_5281
++disable_so_interrupt_offset_vnic_cq_5300 interrupt_offset vnic_cq 0 5300 NULL
++disable_so_usb_calc_bus_time_fndecl_5306 usb_calc_bus_time fndecl 0-4-2 5306 NULL
++disable_so_cypress_calculate_burst_time_fndecl_5314 cypress_calculate_burst_time fndecl 2-3-0 5314 NULL nohasharray
++disable_so_ds_num_nfs4_file_layout_dsaddr_5314 ds_num nfs4_file_layout_dsaddr 0 5314 &disable_so_cypress_calculate_burst_time_fndecl_5314
++disable_so_nilfs_btree_assign_v_fndecl_5317 nilfs_btree_assign_v fndecl 0-5 5317 NULL
++disable_so_seq_tipc_nl_msg_5321 seq tipc_nl_msg 0 5321 NULL
++disable_so_dr_addr_qlc_83xx_quad_entry_5328 dr_addr qlc_83xx_quad_entry 0 5328 NULL
++disable_so_lzo_decompress_fndecl_5329 lzo_decompress fndecl 3 5329 NULL
++disable_so_get_phys_addr_esas2r_sg_context_5331 get_phys_addr esas2r_sg_context 0 5331 NULL
++disable_so_i2c_udelay_vardecl_bttv_i2c_c_5339 i2c_udelay vardecl_bttv-i2c.c 0 5339 NULL
++disable_so_msr_src_desc_5345 msr src_desc 0 5345 NULL
++disable_so_put_time_rxrpc_transport_5355 put_time rxrpc_transport 0 5355 NULL
++disable_so_mtrr_del_fndecl_5356 mtrr_del fndecl 2-3 5356 NULL
++disable_so_d_itimer_fs_disk_quota_5358 d_itimer fs_disk_quota 0 5358 NULL
++disable_so_buf_phy_addr_high_ql_rcv_buf_cb_5366 buf_phy_addr_high ql_rcv_buf_cb 0 5366 NULL
++disable_so_cpufreq_get_cur_state_fndecl_5369 cpufreq_get_cur_state fndecl 1 5369 NULL
++disable_so_hi_cfg_bridge_delay_drxj_data_5374 hi_cfg_bridge_delay drxj_data 0 5374 NULL
++disable_so_btrfs_uuid_tree_lookup_fndecl_5376 btrfs_uuid_tree_lookup fndecl 0-3-4 5376 NULL
++disable_so_ds1347_read_time_fndecl_5383 ds1347_read_time fndecl 0 5383 NULL nohasharray
++disable_so_uv_nmi_slave_delay_vardecl_uv_nmi_c_5383 uv_nmi_slave_delay vardecl_uv_nmi.c 0 5383 &disable_so_ds1347_read_time_fndecl_5383
++disable_so_nvm_start_addr_code_entry_5390 nvm_start_addr code_entry 0 5390 NULL
++disable_so_bna_tx_coalescing_timeo_set_fndecl_5397 bna_tx_coalescing_timeo_set fndecl 2 5397 NULL
++disable_so_ptp_pch_adjtime_fndecl_5406 ptp_pch_adjtime fndecl 2 5406 NULL nohasharray
++disable_so_setkey_blkcipher_tfm_5406 setkey blkcipher_tfm 0-3 5406 &disable_so_ptp_pch_adjtime_fndecl_5406
++disable_so_poll_time_plat_max3100_5416 poll_time plat_max3100 0 5416 NULL
++disable_so_xfrm_hash_free_fndecl_5437 xfrm_hash_free fndecl 2 5437 NULL
++disable_so_sh_cmt_register_clockevent_fndecl_5438 sh_cmt_register_clockevent fndecl 0 5438 NULL
++disable_so_wake_cnt_blk_mq_bitmap_tags_5442 wake_cnt blk_mq_bitmap_tags 0 5442 NULL
++disable_so_ping_clear_saddr_fndecl_5445 ping_clear_saddr fndecl 2 5445 NULL
++disable_so_address_dummy_5460 address dummy 0 5460 NULL
++disable_so_rtl_signal_scale_mapping_fndecl_5462 rtl_signal_scale_mapping fndecl 0-2 5462 NULL
++disable_so_nfs_cache_getent_timeout_vardecl_cache_lib_c_5468 nfs_cache_getent_timeout vardecl_cache_lib.c 0 5468 NULL
++disable_so_wmi_addr_remap_fndecl_5469 wmi_addr_remap fndecl 0-1 5469 NULL
++disable_so_hash_mem_fndecl_5475 hash_mem fndecl 2 5475 NULL
++disable_so_mpll_ss1_ni_clock_registers_5476 mpll_ss1 ni_clock_registers 0 5476 NULL
++disable_so_cg_spll_spread_spectrum_rv730_clock_registers_5480 cg_spll_spread_spectrum rv730_clock_registers 0 5480 NULL
++disable_so_data_shared_msr_entry_5484 data shared_msr_entry 0 5484 NULL
++disable_so_bitmap_count_page_fndecl_5494 bitmap_count_page fndecl 2 5494 NULL
++disable_so_write_radio_reg_fndecl_5497 write_radio_reg fndecl 2-3 5497 NULL nohasharray
++disable_so_skcipher_recvmsg_async_fndecl_5497 skcipher_recvmsg_async fndecl 0 5497 &disable_so_write_radio_reg_fndecl_5497
++disable_so_i2c_address_stv6110_priv_5499 i2c_address stv6110_priv 0 5499 NULL
++disable_so_sh_cmt_clocksource_enable_fndecl_5501 sh_cmt_clocksource_enable fndecl 0 5501 NULL
++disable_so_effhash_fndecl_5510 effhash fndecl 0-1 5510 NULL
++disable_so_kswapd_try_to_sleep_fndecl_5521 kswapd_try_to_sleep fndecl 2 5521 NULL
++disable_so_oublock_signal_struct_5525 oublock signal_struct 0 5525 NULL
++disable_so_intel_bios_ssc_frequency_fndecl_5528 intel_bios_ssc_frequency fndecl 0 5528 NULL
++disable_so_ioasa_bus_addr_pmcraid_ioarcb_5540 ioasa_bus_addr pmcraid_ioarcb 0 5540 NULL
++disable_so_addr_req_t_5548 addr req_t 0 5548 NULL
++disable_so_xfs_btree_read_bufl_fndecl_5558 xfs_btree_read_bufl fndecl 0-3 5558 NULL
++disable_so_csa_expire_time_mwifiex_private_5561 csa_expire_time mwifiex_private 0 5561 NULL
++disable_so_hpi_cobranet_set_static_ip_address_fndecl_5564 hpi_cobranet_set_static_ip_address fndecl 1 5564 NULL
++disable_so_crypto_sha256_update_fndecl_5571 crypto_sha256_update fndecl 3 5571 NULL
++disable_so_pixclock_vardecl_matroxfb_base_c_5573 pixclock vardecl_matroxfb_base.c 0 5573 NULL
++disable_so_crypto_inc_byte_fndecl_5578 crypto_inc_byte fndecl 2 5578 NULL
++disable_so_duration_iwl_time_event_cmd_5595 duration iwl_time_event_cmd 0 5595 NULL
++disable_so_ddcb_daddr_ddcb_queue_5599 ddcb_daddr ddcb_queue 0 5599 NULL
++disable_so_sst_handle_vb_timer_fndecl_5602 sst_handle_vb_timer fndecl 0 5602 NULL
++disable_so_comp_resp_timeout_reg_pch_phub_reg_5604 comp_resp_timeout_reg pch_phub_reg 0 5604 NULL
++disable_so_sys_getegid_fndecl_5608 sys_getegid fndecl 0 5608 NULL
++disable_so_st_gid___old_kernel_stat_5613 st_gid __old_kernel_stat 0 5613 NULL
++disable_so_daddr_iphdr_5614 daddr iphdr 0 5614 NULL
++disable_so_desc_set_buf_addr_and_size_fndecl_5618 desc_set_buf_addr_and_size fndecl 2-3 5618 NULL
++disable_so_pch_udc_enable_ep_interrupts_fndecl_5624 pch_udc_enable_ep_interrupts fndecl 2 5624 NULL
++disable_so_physaddr_brcmf_msgbuf_pktid_5642 physaddr brcmf_msgbuf_pktid 0 5642 NULL
++disable_so_usb_timeout_vardecl_radio_si470x_usb_c_5648 usb_timeout vardecl_radio-si470x-usb.c 0 5648 NULL
++disable_so_show_sys_image_guid_fndecl_5652 show_sys_image_guid fndecl 0 5652 NULL
++disable_so_mtask_addr_beiscsi_io_task_5654 mtask_addr beiscsi_io_task 0 5654 NULL
++disable_so_no_addr_gfs2_inum_host_5660 no_addr gfs2_inum_host 0 5660 NULL
++disable_so___sw_hweight64_fndecl_5663 __sw_hweight64 fndecl 1-0 5663 NULL
++disable_so_aca_tstamp_ifacaddr6_5678 aca_tstamp ifacaddr6 0 5678 NULL
++disable_so_fill_in_addresses_op_x86_model_spec_5684 fill_in_addresses op_x86_model_spec 0 5684 NULL
++disable_so_root_hfs_btree_5692 root hfs_btree 0 5692 NULL
++disable_so_update_time_saa7164_histogram_bucket_5697 update_time saa7164_histogram_bucket 0 5697 NULL
++disable_so_hw_ptr_base_snd_pcm_runtime_5698 hw_ptr_base snd_pcm_runtime 0 5698 NULL
++disable_so_snd_emu10k1_timer_fndecl_5702 snd_emu10k1_timer fndecl 2-0 5702 NULL
++disable_so_bmap_hash_id_fndecl_5706 bmap_hash_id fndecl 0-2 5706 NULL
++disable_so_timeout_abs_ns_vcpu_set_singleshot_timer_5711 timeout_abs_ns vcpu_set_singleshot_timer 0 5711 NULL
++disable_so_timestamp_discovery_t_5725 timestamp discovery_t 0 5725 NULL nohasharray
++disable_so_uid_fuse_setattr_in_5725 uid fuse_setattr_in 0 5725 &disable_so_timestamp_discovery_t_5725 nohasharray
++disable_so_SYSC_setreuid_fndecl_5725 SYSC_setreuid fndecl 0 5725 &disable_so_uid_fuse_setattr_in_5725
++disable_so_r10_kvm_regs_5730 r10 kvm_regs 0 5730 NULL
++disable_so_bulk_in_epaddr_sur40_state_5741 bulk_in_epaddr sur40_state 0 5741 NULL
++disable_so_rt2x00lib_rxdone_read_signal_fndecl_5747 rt2x00lib_rxdone_read_signal fndecl 0 5747 NULL
++disable_so_ti_tscadc_driver_init_fndecl_5771 ti_tscadc_driver_init fndecl 0 5771 NULL
++disable_so_iowrite8_fndecl_5781 iowrite8 fndecl 1 5781 NULL
++disable_so_mthca_resize_cq_fndecl_5782 mthca_resize_cq fndecl 0 5782 NULL
++disable_so_lbs_host_sleep_write_fndecl_5783 lbs_host_sleep_write fndecl 0-3 5783 NULL
++disable_so_addr_tx_buf_desc_5787 addr tx_buf_desc 0 5787 NULL
++disable_so_tcn_timer_value___bridge_info_5789 tcn_timer_value __bridge_info 0 5789 NULL
++disable_so_old_jiffies_ati_remote_5798 old_jiffies ati_remote 0 5798 NULL
++disable_so_timeout_sched_poll_5810 timeout sched_poll 0 5810 NULL
++disable_so_addr_doit_fndecl_5813 addr_doit fndecl 0 5813 NULL
++disable_so_enic_dev_del_addr_fndecl_5814 enic_dev_del_addr fndecl 0 5814 NULL
++disable_so_start_addr_gen_pool_chunk_5822 start_addr gen_pool_chunk 0 5822 NULL
++disable_so_smsc75xx_enable_phy_wakeup_interrupts_fndecl_5824 smsc75xx_enable_phy_wakeup_interrupts fndecl 2-0 5824 NULL
++disable_so_ieee802154_hdr_peek_addrs_fndecl_5825 ieee802154_hdr_peek_addrs fndecl 0 5825 NULL
++disable_so_dsp_dram_offset_sst_addr_5830 dsp_dram_offset sst_addr 0 5830 NULL
++disable_so_mwifiex_read_reg_fndecl_5832 mwifiex_read_reg fndecl 2 5832 NULL
++disable_so_process_tgid_comm_proc_event_5834 process_tgid comm_proc_event 0 5834 NULL
++disable_so_idedisk_read_native_max_address_fndecl_5836 idedisk_read_native_max_address fndecl 0 5836 NULL
++disable_so_bus_time_fw_ohci_5838 bus_time fw_ohci 0 5838 NULL
++disable_so_demod_address_nxt6000_config_5841 demod_address nxt6000_config 0 5841 NULL
++disable_so_recover_timer_write_fndecl_5848 recover_timer_write fndecl 3-0 5848 NULL
++disable_so_next_jiffies_tick_sched_5856 next_jiffies tick_sched 0 5856 NULL
++disable_so_addr_asc_sg_list_5863 addr asc_sg_list 0 5863 NULL
++disable_so_schedule_delayed_work_fndecl_5873 schedule_delayed_work fndecl 2 5873 NULL
++disable_so_allow_utime_fat_mount_options_5877 allow_utime fat_mount_options 0 5877 NULL
++disable_so_irlap_start_query_timer_fndecl_5881 irlap_start_query_timer fndecl 3-2 5881 NULL
++disable_so_nent_kvm_cpuid2_5883 nent kvm_cpuid2 0 5883 NULL
++disable_so_delay_pcm_irq_snd_emu10k1_5885 delay_pcm_irq snd_emu10k1 0 5885 NULL
++disable_so_DAC1064_calcclock_fndecl_5888 DAC1064_calcclock fndecl 2-3 5888 NULL
++disable_so_ep_address_ath6kl_usb_pipe_5905 ep_address ath6kl_usb_pipe 0 5905 NULL nohasharray
++disable_so_set_bit_le_fndecl_5905 set_bit_le fndecl 1 5905 &disable_so_ep_address_ath6kl_usb_pipe_5905
++disable_so_last_force_reset_jiffies_il_force_reset_5911 last_force_reset_jiffies il_force_reset 0 5911 NULL
++disable_so_evclk_radeon_vce_clock_voltage_dependency_entry_5913 evclk radeon_vce_clock_voltage_dependency_entry 0 5913 NULL
++disable_so_status_address_card_5915 status_address card 0 5915 NULL
++disable_so_ifal_index_ifaddrlblmsg_5916 ifal_index ifaddrlblmsg 0 5916 NULL
++disable_so_validate_add_page_mtrr_ops_5922 validate_add_page mtrr_ops 1-2 5922 NULL
++disable_so_fm10k_ptp_adjtime_fndecl_5923 fm10k_ptp_adjtime fndecl 2 5923 NULL
++disable_so_addrtype_ip6addrlbl_entry_5927 addrtype ip6addrlbl_entry 0 5927 NULL
++disable_so_packet_life_time_ib_sa_path_rec_5929 packet_life_time ib_sa_path_rec 0 5929 NULL
++disable_so_open_time_local_info_5930 open_time local_info 0 5930 NULL
++disable_so_apply_time_iwl_time_event_cmd_5933 apply_time iwl_time_event_cmd 0 5933 NULL
++disable_so_default_address_sc520_par_table_5941 default_address sc520_par_table 0 5941 NULL
++disable_so_btrfs_hash_init_fndecl_5945 btrfs_hash_init fndecl 0 5945 NULL
++disable_so_tsc_khz_ref_vardecl_tsc_c_5951 tsc_khz_ref vardecl_tsc.c 0 5951 NULL
++disable_so_init_hrtimers_cpu_fndecl_5954 init_hrtimers_cpu fndecl 1 5954 NULL
++disable_so_dma_address_scatterlist_5955 dma_address scatterlist 0 5955 NULL
++disable_so_vsi_id_i40e_virtchnl_ether_addr_list_5963 vsi_id i40e_virtchnl_ether_addr_list 0 5963 NULL
++disable_so_i_mtime_sysv_inode_5967 i_mtime sysv_inode 0 5967 NULL
++disable_so_mult_clock_event_device_5973 mult clock_event_device 0 5973 NULL nohasharray
++disable_so_schedule_internal_copy_fndecl_5973 schedule_internal_copy fndecl 2-3-4 5973 &disable_so_mult_clock_event_device_5973
++disable_so_hash_netport6_expire_fndecl_5974 hash_netport6_expire fndecl 4 5974 NULL
++disable_so_tap_time_vardecl_mousedev_c_5990 tap_time vardecl_mousedev.c 0 5990 NULL
++disable_so_write_reg_fndecl_5992 write_reg fndecl 3 5992 NULL
++disable_so_clk_divider_round_rate_fndecl_6000 clk_divider_round_rate fndecl 2-0 6000 NULL
++disable_so_hor_sync_end_via_display_timing_6001 hor_sync_end via_display_timing 0 6001 NULL
++disable_so_xe_name_hash_ocfs2_xattr_entry_6006 xe_name_hash ocfs2_xattr_entry 0 6006 NULL
++disable_so_blkcipher_next_fast_fndecl_6013 blkcipher_next_fast fndecl 0 6013 NULL
++disable_so_gcm_dec_hash_continue_fndecl_6014 gcm_dec_hash_continue fndecl 0 6014 NULL
++disable_so_x_qxl_bitmap_6015 x qxl_bitmap 0 6015 NULL
++disable_so__rtl92s_phy_calculate_bit_shift_fndecl_6019 _rtl92s_phy_calculate_bit_shift fndecl 0-1 6019 NULL
++disable_so_snd_pcm_oss_get_odelay_fndecl_6033 snd_pcm_oss_get_odelay fndecl 0 6033 NULL
++disable_so_remote_addr_c2wr_qp_connect_req_6036 remote_addr c2wr_qp_connect_req 0 6036 NULL
++disable_so_set_time_rtc_class_ops_6037 set_time rtc_class_ops 0 6037 NULL
++disable_so_kvm_lapic_set_vapic_addr_fndecl_6040 kvm_lapic_set_vapic_addr fndecl 2 6040 NULL
++disable_so_netlink_hash_fndecl_6041 netlink_hash fndecl 0 6041 NULL
++disable_so_delay_edac_device_ctl_info_6043 delay edac_device_ctl_info 0 6043 NULL
++disable_so_hash_src_fndecl_6045 hash_src fndecl 0 6045 NULL
++disable_so_addrconf_add_ifaddr_fndecl_6046 addrconf_add_ifaddr fndecl 0 6046 NULL
++disable_so_abx500_get_register_interruptible_fndecl_6047 abx500_get_register_interruptible fndecl 0 6047 NULL
++disable_so_uac_clock_source_is_valid_fndecl_6049 uac_clock_source_is_valid fndecl 2 6049 NULL
++disable_so_max_keysize_crypto_report_cipher_6050 max_keysize crypto_report_cipher 0 6050 NULL
++disable_so_hit_timestamp_hh_flow_state_6053 hit_timestamp hh_flow_state 0 6053 NULL
++disable_so_crypto_fpu_setkey_fndecl_6067 crypto_fpu_setkey fndecl 0-3 6067 NULL
++disable_so_ticks_snd_timer_instance_6068 ticks snd_timer_instance 0 6068 NULL nohasharray
++disable_so_dev_mem_address_mlx4_cable_info_6068 dev_mem_address mlx4_cable_info 0 6068 &disable_so_ticks_snd_timer_instance_6068
++disable_so_start_time_ieee80211_measurement_params_6073 start_time ieee80211_measurement_params 0 6073 NULL
++disable_so_i_ino_timelimit_qc_info_6082 i_ino_timelimit qc_info 0 6082 NULL
++disable_so_sll_ifindex_sockaddr_ll_6083 sll_ifindex sockaddr_ll 0 6083 NULL
++disable_so_sleep_auth_read_fndecl_6084 sleep_auth_read fndecl 3-0 6084 NULL
++disable_so_btrfs_run_delayed_refs_fndecl_6098 btrfs_run_delayed_refs fndecl 0 6098 NULL
++disable_so_blocksize_crypto_report_aead_6103 blocksize crypto_report_aead 0 6103 NULL
++disable_so_periods_snd_pcm_runtime_6104 periods snd_pcm_runtime 0 6104 NULL
++disable_so_wait_for_completion_io_timeout_fndecl_6120 wait_for_completion_io_timeout fndecl 2-0 6120 NULL
++disable_so_rsi_cmd52readbyte_fndecl_6123 rsi_cmd52readbyte fndecl 0-2 6123 NULL
++disable_so_jiffies_io_6127 jiffies io 0 6127 NULL
++disable_so_ac97_clock_vardecl_atiixp_c_6132 ac97_clock vardecl_atiixp.c 0 6132 NULL
++disable_so_vmap_block_vaddr_fndecl_6152 vmap_block_vaddr fndecl 1-2 6152 NULL
++disable_so_depth_blk_mq_bitmap_tags_6153 depth blk_mq_bitmap_tags 0 6153 NULL
++disable_so_mul_vnic_intr_coal_timer_info_6154 mul vnic_intr_coal_timer_info 0 6154 NULL
++disable_so_ctrl_freq_au0828_dev_6155 ctrl_freq au0828_dev 0 6155 NULL
++disable_so_hrtimer_get_res_fndecl_6170 hrtimer_get_res fndecl 1 6170 NULL
++disable_so_nlm_hash_address_fndecl_6174 nlm_hash_address fndecl 0 6174 NULL
++disable_so_vaddr_vfio_iommu_type1_dma_map_6175 vaddr vfio_iommu_type1_dma_map 0 6175 NULL
++disable_so_cpuidle_register_device_fndecl_6179 cpuidle_register_device fndecl 0 6179 NULL
++disable_so_wl18xx_set_host_cfg_bitmap_fndecl_6180 wl18xx_set_host_cfg_bitmap fndecl 0 6180 NULL
++disable_so_daddr_ircomm_tty_cb_6187 daddr ircomm_tty_cb 0 6187 NULL
++disable_so_address_iio_chan_spec_6188 address iio_chan_spec 0 6188 NULL
++disable_so_gem_interrupt_fndecl_6193 gem_interrupt fndecl 1 6193 NULL
++disable_so_test_steal_space_from_bitmap_to_extent_fndecl_6197 test_steal_space_from_bitmap_to_extent fndecl 0 6197 NULL
++disable_so_write8_async_rtl_io_6212 write8_async rtl_io 2-3 6212 NULL
++disable_so_gpio_request_fndecl_6213 gpio_request fndecl 0-1 6213 NULL
++disable_so_max_cmds_mthca_cmd_6222 max_cmds mthca_cmd 0 6222 NULL
++disable_so_rhashtable_rehash_one_fndecl_6224 rhashtable_rehash_one fndecl 2 6224 NULL
++disable_so_addr_hi_sli4_sge_6229 addr_hi sli4_sge 0 6229 NULL
++disable_so_bnx2x_set_iscsi_eth_mac_addr_fndecl_6234 bnx2x_set_iscsi_eth_mac_addr fndecl 0 6234 NULL
++disable_so___ipv6_addr_label_fndecl_6235 __ipv6_addr_label fndecl 3-4 6235 NULL
++disable_so_chnl_freq_wil6210_rtap_6236 chnl_freq wil6210_rtap 0 6236 NULL
++disable_so_mv88e6xxx_port_to_phy_addr_fndecl_6239 mv88e6xxx_port_to_phy_addr fndecl 0-2 6239 NULL
++disable_so_phy_pm_runtime_get_sync_fndecl_6245 phy_pm_runtime_get_sync fndecl 0 6245 NULL
++disable_so_kempld_wdt_set_pretimeout_fndecl_6258 kempld_wdt_set_pretimeout fndecl 2 6258 NULL
++disable_so_sq_page_table_addr_lo_iscsi_kwqe_conn_offload1_6259 sq_page_table_addr_lo iscsi_kwqe_conn_offload1 0 6259 NULL
++disable_so_async_chainiv_schedule_work_fndecl_6271 async_chainiv_schedule_work fndecl 0 6271 NULL
++disable_so_bus_clock_khz_ocores_i2c_6290 bus_clock_khz ocores_i2c 0 6290 NULL
++disable_so_cttimeout_default_get_fndecl_6297 cttimeout_default_get fndecl 0 6297 NULL
++disable_so_show_pci_clock_sel_fndecl_6300 show_pci_clock_sel fndecl 0 6300 NULL nohasharray
++disable_so_addr_w83627ehf_data_6300 addr w83627ehf_data 0 6300 &disable_so_show_pci_clock_sel_fndecl_6300
++disable_so_base_addr_pmc_dev_6305 base_addr pmc_dev 0 6305 NULL
++disable_so_max_post_div_radeon_pll_6315 max_post_div radeon_pll 0 6315 NULL
++disable_so_mmc_sd_erase_timeout_fndecl_6317 mmc_sd_erase_timeout fndecl 0-3 6317 NULL
++disable_so_get_time_sound_timer_operations_6318 get_time sound_timer_operations 0 6318 NULL
++disable_so_runtime_reg_sch311x_pdev_data_6324 runtime_reg sch311x_pdev_data 0 6324 NULL
++disable_so_hscx_interrupt_fndecl_6328 hscx_interrupt fndecl 2 6328 NULL
++disable_so_hangcheck_margin_vardecl_hangcheck_timer_c_6346 hangcheck_margin vardecl_hangcheck-timer.c 0 6346 NULL nohasharray
++disable_so___hrtimer_start_range_ns_fndecl_6346 __hrtimer_start_range_ns fndecl 3 6346 &disable_so_hangcheck_margin_vardecl_hangcheck_timer_c_6346
++disable_so_force_addr_vardecl_i2c_ali15x3_c_6378 force_addr vardecl_i2c-ali15x3.c 0 6378 NULL
++disable_so_usb_interrupt_msg_fndecl_6387 usb_interrupt_msg fndecl 4-2-6-0 6387 NULL
++disable_so_bitmap_file_test_bit_fndecl_6390 bitmap_file_test_bit fndecl 2 6390 NULL
++disable_so_access_delay_vardecl_nandsim_c_6394 access_delay vardecl_nandsim.c 0 6394 NULL
++disable_so_snd_ice1712_interrupt_fndecl_6396 snd_ice1712_interrupt fndecl 1 6396 NULL
++disable_so_i2c_addr_isl6421_6399 i2c_addr isl6421 0 6399 NULL
++disable_so_sta_connected_time_read_fndecl_6408 sta_connected_time_read fndecl 3 6408 NULL
++disable_so_dbg_uidn_show_fndecl_6415 dbg_uidn_show fndecl 3 6415 NULL
++disable_so_timeout_fib6_gc_args_6417 timeout fib6_gc_args 0 6417 NULL
++disable_so_max_pixelclock_v4l2_bt_timings_cap_6421 max_pixelclock v4l2_bt_timings_cap 0 6421 NULL nohasharray
++disable_so_vlv_clock_fndecl_6421 vlv_clock fndecl 1 6421 &disable_so_max_pixelclock_v4l2_bt_timings_cap_6421
++disable_so_hold_timer_value___port_info_6426 hold_timer_value __port_info 0 6426 NULL
++disable_so_plllocktime_psb_s_6428 plllocktime psb_s 0 6428 NULL nohasharray
++disable_so_channel2freq_lp_fndecl_6428 channel2freq_lp fndecl 0-1 6428 &disable_so_plllocktime_psb_s_6428
++disable_so_base_addr_fpoint_info_6432 base_addr fpoint_info 0 6432 NULL
++disable_so_paravirt_write_msr_fndecl_6445 paravirt_write_msr fndecl 0-1-2-3 6445 NULL
++disable_so_bnx2x_eee_nvram_to_time_fndecl_6450 bnx2x_eee_nvram_to_time fndecl 1 6450 NULL
++disable_so_dn_nl_deladdr_fndecl_6451 dn_nl_deladdr fndecl 0 6451 NULL
++disable_so_mpll_ss_rv730_clock_registers_6456 mpll_ss rv730_clock_registers 0 6456 NULL nohasharray
++disable_so_buffer_addr_atl1e_tpd_desc_6456 buffer_addr atl1e_tpd_desc 0 6456 &disable_so_mpll_ss_rv730_clock_registers_6456
++disable_so_xfs_btree_lshift_fndecl_6459 xfs_btree_lshift fndecl 0 6459 NULL
++disable_so_tomoyo_check_unix_address_fndecl_6464 tomoyo_check_unix_address fndecl 0-2 6464 NULL
++disable_so_bitmap_pos_to_ord_fndecl_6476 bitmap_pos_to_ord fndecl 3-2 6476 NULL
++disable_so_bql_set_hold_time_fndecl_6478 bql_set_hold_time fndecl 0-4 6478 NULL
++disable_so_range_shift_fixed_mtrr_segment_6484 range_shift fixed_mtrr_segment 0 6484 NULL
++disable_so___clocksource_update_freq_scale_fndecl_6485 __clocksource_update_freq_scale fndecl 2-3 6485 NULL
++disable_so_freq_pmu1_plltab_entry_6497 freq pmu1_plltab_entry 0 6497 NULL
++disable_so___btrfs_abort_transaction_fndecl_6516 __btrfs_abort_transaction fndecl 5 6516 NULL
++disable_so_timeout_clks_mmc_data_6527 timeout_clks mmc_data 0 6527 NULL
++disable_so_set_tss_addr_kvm_x86_ops_6529 set_tss_addr kvm_x86_ops 2 6529 NULL
++disable_so_acpi_device_sleep_wake_fndecl_6537 acpi_device_sleep_wake fndecl 0-2-3 6537 NULL nohasharray
++disable_so_rtsc_x2y_fndecl_6537 rtsc_x2y fndecl 0-2 6537 &disable_so_acpi_device_sleep_wake_fndecl_6537
++disable_so_msr_saved_flags_uart_8250_port_6538 msr_saved_flags uart_8250_port 0 6538 NULL
++disable_so_next_blk_mq_timeout_data_6556 next blk_mq_timeout_data 0 6556 NULL nohasharray
++disable_so_sumo_set_uvd_clocks_fndecl_6556 sumo_set_uvd_clocks fndecl 2-3-0 6556 &disable_so_next_blk_mq_timeout_data_6556
++disable_so_ovs_flow_used_time_fndecl_6571 ovs_flow_used_time fndecl 1-0 6571 NULL
++disable_so_orinoco_ioctl_setfreq_fndecl_6577 orinoco_ioctl_setfreq fndecl 0 6577 NULL
++disable_so_hash_netport4_expire_fndecl_6582 hash_netport4_expire fndecl 4 6582 NULL
++disable_so_rpwwn_bfa_bsg_rport_scsi_addr_s_6584 rpwwn bfa_bsg_rport_scsi_addr_s 0 6584 NULL
++disable_so_gid_ncp_mount_data_v4_6586 gid ncp_mount_data_v4 0 6586 NULL
++disable_so_set_input_clock_fndecl_6599 set_input_clock fndecl 0 6599 NULL
++disable_so_mmap_bytes_snd_pcm_oss_runtime_6600 mmap_bytes snd_pcm_oss_runtime 0 6600 NULL
++disable_so_do_sys_settimeofday_fndecl_6601 do_sys_settimeofday fndecl 0 6601 NULL
++disable_so_tv_sec_ufs_timeval_6608 tv_sec ufs_timeval 0 6608 NULL
++disable_so_tk_debug_sleep_time_open_fndecl_6625 tk_debug_sleep_time_open fndecl 0 6625 NULL
++disable_so_bmg160_convert_freq_to_bit_fndecl_6628 bmg160_convert_freq_to_bit fndecl 0 6628 NULL
++disable_so_sis_ata133_program_timings_fndecl_6633 sis_ata133_program_timings fndecl 2 6633 NULL
++disable_so_timestamp_nvkm_alarm_6635 timestamp nvkm_alarm 0 6635 NULL nohasharray
++disable_so_offset_crypto_hash_walk_6635 offset crypto_hash_walk 0 6635 &disable_so_timestamp_nvkm_alarm_6635
++disable_so_ocfs2_rotate_subtree_left_fndecl_6641 ocfs2_rotate_subtree_left fndecl 0-5 6641 NULL
++disable_so_vactive_lo_detailed_pixel_timing_6644 vactive_lo detailed_pixel_timing 0 6644 NULL
++disable_so_givencrypt_ablkcipher_tfm_6647 givencrypt ablkcipher_tfm 0 6647 NULL
++disable_so_fill_in_real_sgid_index_fndecl_6648 fill_in_real_sgid_index fndecl 2-3 6648 NULL
++disable_so_i_gid_read_fndecl_6650 i_gid_read fndecl 0 6650 NULL
++disable_so_uniq_time_smt_values_6653 uniq_time smt_values 0 6653 NULL nohasharray
++disable_so_missvaddr_gru_tlb_fault_handle_6653 missvaddr gru_tlb_fault_handle 0 6653 &disable_so_uniq_time_smt_values_6653
++disable_so_rq_timeout_request_queue_6657 rq_timeout request_queue 0 6657 NULL
++disable_so_resp_bd_list_addr_hi_bnx2i_login_request_6658 resp_bd_list_addr_hi bnx2i_login_request 0 6658 NULL
++disable_so_ebp_tss_segment_32_6659 ebp tss_segment_32 0 6659 NULL
++disable_so_sha_complete_job_fndecl_6679 sha_complete_job fndecl 3 6679 NULL
++disable_so_cursor_vram_addr_viafb_shared_6684 cursor_vram_addr viafb_shared 0 6684 NULL
++disable_so_si_set_smc_sram_address_fndecl_6696 si_set_smc_sram_address fndecl 0-2 6696 NULL
++disable_so_ocfs2_divide_leaf_refcount_block_fndecl_6709 ocfs2_divide_leaf_refcount_block fndecl 0 6709 NULL
++disable_so_smp_base_set_mtrr_data_6722 smp_base set_mtrr_data 0 6722 NULL
++disable_so_titsc_parse_dt_fndecl_6744 titsc_parse_dt fndecl 0 6744 NULL
++disable_so_driver_timestamp_netxen_minidump_template_hdr_6745 driver_timestamp netxen_minidump_template_hdr 0 6745 NULL
++disable_so_end_address_dmar_rmrr_unit_6748 end_address dmar_rmrr_unit 0 6748 NULL
++disable_so_std_signal_mode_vivid_dev_6752 std_signal_mode vivid_dev 0 6752 NULL
++disable_so_part_timeout_show_fndecl_6761 part_timeout_show fndecl 0 6761 NULL
++disable_so_tx_coal_timer_stmmac_priv_6772 tx_coal_timer stmmac_priv 0 6772 NULL
++disable_so_kvm_clock_read_fndecl_6779 kvm_clock_read fndecl 0 6779 NULL
++disable_so_alarm_clock_get_fndecl_6780 alarm_clock_get fndecl 1 6780 NULL
++disable_so_rcar_i2c_clock_calculate_fndecl_6789 rcar_i2c_clock_calculate fndecl 0 6789 NULL
++disable_so_timeout_vardecl_sbc60xxwdt_c_6807 timeout vardecl_sbc60xxwdt.c 0 6807 NULL
++disable_so_rp_uid_ubifs_sb_node_6810 rp_uid ubifs_sb_node 0 6810 NULL
++disable_so_wm8940_set_dai_clkdiv_fndecl_6811 wm8940_set_dai_clkdiv fndecl 3-0 6811 NULL
++disable_so_shift_clk_divider_6812 shift clk_divider 0 6812 NULL nohasharray
++disable_so_gateway_addr_addr_wil_fw_record_gateway_data_6812 gateway_addr_addr wil_fw_record_gateway_data 0 6812 &disable_so_shift_clk_divider_6812 nohasharray
++disable_so_snd_bebob_stream_get_clock_src_fndecl_6812 snd_bebob_stream_get_clock_src fndecl 0 6812 &disable_so_gateway_addr_addr_wil_fw_record_gateway_data_6812
++disable_so_io_profile_start_time_bfa_fcpim_s_6814 io_profile_start_time bfa_fcpim_s 0 6814 NULL
++disable_so_tsc_timestamp_pvclock_vcpu_time_info_6819 tsc_timestamp pvclock_vcpu_time_info 0 6819 NULL
++disable_so_paddr_ath10k_skb_rxcb_6820 paddr ath10k_skb_rxcb 0 6820 NULL
++disable_so_src_addr_ioat_dma_descriptor_6823 src_addr ioat_dma_descriptor 0 6823 NULL
++disable_so_ivsize_ablkcipher_tfm_6824 ivsize ablkcipher_tfm 0 6824 NULL
++disable_so_p_val_aic32x4_rate_divs_6838 p_val aic32x4_rate_divs 0 6838 NULL nohasharray
++disable_so_bit_putcs_unaligned_fndecl_6838 bit_putcs_unaligned fndecl 5-6-7-8 6838 &disable_so_p_val_aic32x4_rate_divs_6838
++disable_so_iaddr2blockno_fndecl_6842 iaddr2blockno fndecl 0 6842 NULL nohasharray
++disable_so_reserved_top_mlx4_bitmap_6842 reserved_top mlx4_bitmap 0 6842 &disable_so_iaddr2blockno_fndecl_6842
++disable_so_address_acpi_object_processor_6844 address acpi_object_processor 0 6844 NULL nohasharray
++disable_so_top_freq_region_info_6844 top_freq region_info 0 6844 &disable_so_address_acpi_object_processor_6844
++disable_so_phys_addr_sge_txq_6851 phys_addr sge_txq 0 6851 NULL
++disable_so_irq_find_mapping_fndecl_6855 irq_find_mapping fndecl 0-2 6855 NULL
++disable_so_ipaddr_rds_ib_ipaddr_6865 ipaddr rds_ib_ipaddr 0 6865 NULL
++disable_so_cdv_intel_clock_recovery_ok_fndecl_6866 cdv_intel_clock_recovery_ok fndecl 2 6866 NULL
++disable_so_rmw_ath_ops_6869 rmw ath_ops 2-3-4 6869 NULL
++disable_so_last_jiffies_ivtv_api_cache_6880 last_jiffies ivtv_api_cache 0 6880 NULL
++disable_so_ui_atimensec_ufs2_inode_6881 ui_atimensec ufs2_inode 0 6881 NULL
++disable_so_gether_get_host_addr_cdc_fndecl_6888 gether_get_host_addr_cdc fndecl 0 6888 NULL
++disable_so_wmi_add_cipher_key_fndecl_6891 wmi_add_cipher_key fndecl 0-2-4 6891 NULL
++disable_so_ppp_gidle_fndecl_6898 ppp_gidle fndecl 0-1 6898 NULL
++disable_so_dialtimeout_isdn_net_local_s_6908 dialtimeout isdn_net_local_s 0 6908 NULL
++disable_so_conf_printf2_fndecl_6910 conf_printf2 fndecl 2-4-5 6910 NULL
++disable_so_pilot_stv0900_signal_info_6915 pilot stv0900_signal_info 0 6915 NULL
++disable_so_size_log2_t3_wq_6928 size_log2 t3_wq 0 6928 NULL
++disable_so_s35390a_set_datetime_fndecl_6935 s35390a_set_datetime fndecl 0 6935 NULL
++disable_so_sys_setfsgid_fndecl_6945 sys_setfsgid fndecl 0-1 6945 NULL
++disable_so_triflex_load_timing_fndecl_6946 triflex_load_timing fndecl 3 6946 NULL
++disable_so_ps2mult_interrupt_fndecl_6951 ps2mult_interrupt fndecl 2 6951 NULL
++disable_so_hpi_sample_clock_query_source_fndecl_6959 hpi_sample_clock_query_source fndecl 1-0 6959 NULL
++disable_so_tseg2_max_can_bittiming_const_6963 tseg2_max can_bittiming_const 0 6963 NULL
++disable_so_rec8b_ata_timing_6977 rec8b ata_timing 0 6977 NULL
++disable_so_vactive___fb_timings_6978 vactive __fb_timings 0 6978 NULL
++disable_so_mgid_index_mlx4_qp_path_6990 mgid_index mlx4_qp_path 0 6990 NULL
++disable_so_log_start_addr_server_hdr_7000 log_start_addr server_hdr 0 7000 NULL
++disable_so_t2timer_ax25_info_struct_7019 t2timer ax25_info_struct 0 7019 NULL
++disable_so_start_address_mxt_object_7033 start_address mxt_object 0 7033 NULL
++disable_so_cpufreq_add_dev_symlink_fndecl_7039 cpufreq_add_dev_symlink fndecl 0 7039 NULL
++disable_so_fm10k_systime_read_fndecl_7040 fm10k_systime_read fndecl 0 7040 NULL
++disable_so_dv_timings_signal_mode_vivid_dev_7046 dv_timings_signal_mode vivid_dev 0 7046 NULL
++disable_so_set_expect_timeout_fndecl_7051 set_expect_timeout fndecl 2 7051 NULL
++disable_so_ts_dev_2_peak_time_ref_7055 ts_dev_2 peak_time_ref 0 7055 NULL
++disable_so_pci_lat_timer_tg3_7056 pci_lat_timer tg3 0 7056 NULL
++disable_so_ioarcb_bus_addr_pmcraid_ioarcb_7057 ioarcb_bus_addr pmcraid_ioarcb 0 7057 NULL
++disable_so_tbl_addr_ahci_cmd_hdr_7060 tbl_addr ahci_cmd_hdr 0 7060 NULL
++disable_so_total_i915_address_space_7088 total i915_address_space 0 7088 NULL
++disable_so_nfs_mountpoint_expiry_timeout_vardecl_7089 nfs_mountpoint_expiry_timeout vardecl 0 7089 NULL
++disable_so_rx_control_addr_acx_data_path_params_resp_7090 rx_control_addr acx_data_path_params_resp 0 7090 NULL
++disable_so_qs_btimelimit_fs_quota_stat_7091 qs_btimelimit fs_quota_stat 0 7091 NULL
++disable_so_SYSC_semtimedop_fndecl_7096 SYSC_semtimedop fndecl 1-3 7096 NULL
++disable_so_lm8323_pwm_show_time_fndecl_7100 lm8323_pwm_show_time fndecl 0 7100 NULL
++disable_so_start_time_btrfs_transaction_7107 start_time btrfs_transaction 0 7107 NULL
++disable_so_dma_bytes_snd_pcm_runtime_7108 dma_bytes snd_pcm_runtime 0 7108 NULL
++disable_so_sr__coeff_div_7109 sr _coeff_div 0 7109 NULL
++disable_so_assert_pio_clocks_7119 assert pio_clocks 0 7119 NULL
++disable_so_sctp_bind_addr_copy_fndecl_7122 sctp_bind_addr_copy fndecl 0-5 7122 NULL
++disable_so_irq_domain_get_irq_data_fndecl_7132 irq_domain_get_irq_data fndecl 2 7132 NULL
++disable_so_cur_freq_intel_gen6_power_mgmt_7134 cur_freq intel_gen6_power_mgmt 0 7134 NULL nohasharray
++disable_so_address_mask_fndecl_7134 address_mask fndecl 0-2 7134 &disable_so_cur_freq_intel_gen6_power_mgmt_7134
++disable_so_timeout_md_thread_7138 timeout md_thread 0 7138 NULL
++disable_so_nicvf_register_interrupts_fndecl_7143 nicvf_register_interrupts fndecl 0 7143 NULL
++disable_so_logical_drive_info_dma_addr_ips_ha_7146 logical_drive_info_dma_addr ips_ha 0 7146 NULL
++disable_so_ai_slowclk_freq_fndecl_7147 ai_slowclk_freq fndecl 0 7147 NULL
++disable_so_addr_play_vals_7151 addr play_vals 0 7151 NULL
++disable_so_enc_addr_low_ssp_ini_io_start_req_7153 enc_addr_low ssp_ini_io_start_req 0 7153 NULL
++disable_so_dev_sockaddr_mISDN_7154 dev sockaddr_mISDN 0 7154 NULL
++disable_so_scan_start_time_ath_ant_comb_7155 scan_start_time ath_ant_comb 0 7155 NULL nohasharray
++disable_so_mcryptd_hash_final_fndecl_7155 mcryptd_hash_final fndecl 2 7155 &disable_so_scan_start_time_ath_ant_comb_7155
++disable_so_ack_time_minstrel_rate_7156 ack_time minstrel_rate 0 7156 NULL
++disable_so_start_time_fscache_retrieval_7166 start_time fscache_retrieval 0 7166 NULL
++disable_so_timetosend_nes_timer_entry_7169 timetosend nes_timer_entry 0 7169 NULL
++disable_so_autofs4_get_set_timeout_fndecl_7185 autofs4_get_set_timeout fndecl 0 7185 NULL
++disable_so_list_voltage_regulator_ops_7194 list_voltage regulator_ops 0-2 7194 NULL
++disable_so_round_jiffies_fndecl_7204 round_jiffies fndecl 0-1 7204 NULL nohasharray
++disable_so_address_lo_be_bus_address32_7204 address_lo be_bus_address32 0 7204 &disable_so_round_jiffies_fndecl_7204
++disable_so_efx_recycle_rx_pages_fndecl_7206 efx_recycle_rx_pages fndecl 3 7206 NULL
++disable_so_ssb_chipco_watchdog_timer_set_fndecl_7210 ssb_chipco_watchdog_timer_set fndecl 2-0 7210 NULL
++disable_so_ebitmap_netlbl_export_fndecl_7212 ebitmap_netlbl_export fndecl 0 7212 NULL
++disable_so_charge_timeout_wm8350_charger_policy_7222 charge_timeout wm8350_charger_policy 0 7222 NULL
++disable_so_tf_c_r820t_freq_range_7225 tf_c r820t_freq_range 0 7225 NULL
++disable_so_hpi_read_words_le16_fndecl_7226 hpi_read_words_le16 fndecl 2-4 7226 NULL
++disable_so_ip6addrlbl_newdel_fndecl_7230 ip6addrlbl_newdel fndecl 0 7230 NULL
++disable_so_seq_default_timer_card_vardecl_7233 seq_default_timer_card vardecl 0 7233 NULL
++disable_so_ip6_route_get_saddr_fndecl_7240 ip6_route_get_saddr fndecl 0 7240 NULL
++disable_so_packet_timeout_vardecl_legousbtower_c_7247 packet_timeout vardecl_legousbtower.c 0 7247 NULL
++disable_so_base_clockid_alarm_base_7253 base_clockid alarm_base 0 7253 NULL
++disable_so_pll_time_modem_state_ser12_7269 pll_time modem_state_ser12 0 7269 NULL
++disable_so_phyaddr_fe_priv_7272 phyaddr fe_priv 0 7272 NULL
++disable_so_xfs_btree_copy_keys_fndecl_7274 xfs_btree_copy_keys fndecl 4 7274 NULL
++disable_so_lzo_uncompress_fndecl_7276 lzo_uncompress fndecl 6 7276 NULL
++disable_so_spc_assoc_id_sctp_paddr_change_7283 spc_assoc_id sctp_paddr_change 0 7283 NULL
++disable_so_min_interrupt_out_interval_vardecl_ldusb_c_7293 min_interrupt_out_interval vardecl_ldusb.c 0 7293 NULL
++disable_so_phys_addr_qlcnic_host_rds_ring_7298 phys_addr qlcnic_host_rds_ring 0 7298 NULL
++disable_so_ethoc_interrupt_fndecl_7299 ethoc_interrupt fndecl 1 7299 NULL
++disable_so_wintime_si_dyn_powertune_data_7305 wintime si_dyn_powertune_data 0 7305 NULL
++disable_so_timestamp_cnic_context_7309 timestamp cnic_context 0 7309 NULL nohasharray
++disable_so_rx8025_set_clock_adjust_fndecl_7309 rx8025_set_clock_adjust fndecl 2-0 7309 &disable_so_timestamp_cnic_context_7309
++disable_so_read_mac_address_dvb_usb_device_properties_7321 read_mac_address dvb_usb_device_properties 0 7321 NULL
++disable_so_pm_runtime_set_active_fndecl_7330 pm_runtime_set_active fndecl 0 7330 NULL
++disable_so_snd_seq_oss_synth_addr_fndecl_7331 snd_seq_oss_synth_addr fndecl 0 7331 NULL
++disable_so_netlbl_unlabel_addrinfo_get_fndecl_7332 netlbl_unlabel_addrinfo_get fndecl 0 7332 NULL nohasharray
++disable_so_transport_type_sockaddr_rxrpc_7332 transport_type sockaddr_rxrpc 0 7332 &disable_so_netlbl_unlabel_addrinfo_get_fndecl_7332
++disable_so_tx_control_addr_acx_data_path_params_resp_7345 tx_control_addr acx_data_path_params_resp 0 7345 NULL
++disable_so_intel_runtime_suspend_fndecl_7354 intel_runtime_suspend fndecl 0 7354 NULL nohasharray
++disable_so_arb_timeout_pca9541_7354 arb_timeout pca9541 0 7354 &disable_so_intel_runtime_suspend_fndecl_7354
++disable_so_authenc_esn_geniv_ahash_done_fndecl_7357 authenc_esn_geniv_ahash_done fndecl 2 7357 NULL
++disable_so_total_blkcipher_walk_7358 total blkcipher_walk 0 7358 NULL
++disable_so_mtime_fuse_attr_7361 mtime fuse_attr 0 7361 NULL
++disable_so_gtt_phys_addr__intel_private_7365 gtt_phys_addr _intel_private 0 7365 NULL
++disable_so_btree_lookup_raw_fndecl_7367 btree_lookup_raw fndecl 0-2-7 7367 NULL
++disable_so_show_imon_clock_fndecl_7376 show_imon_clock fndecl 0 7376 NULL
++disable_so_acpi_cpufreq_guess_freq_fndecl_7383 acpi_cpufreq_guess_freq fndecl 0 7383 NULL
++disable_so_pch_udc_ep_bit_set_fndecl_7386 pch_udc_ep_bit_set fndecl 3 7386 NULL
++disable_so_tv_nsec_compat_timespec_7389 tv_nsec compat_timespec 0 7389 NULL
++disable_so_try_msr_calibrate_tsc_fndecl_7392 try_msr_calibrate_tsc fndecl 0 7392 NULL
++disable_so_msi001_s_frequency_fndecl_7396 msi001_s_frequency fndecl 0 7396 NULL
++disable_so_lxt971_ack_interrupt_fndecl_7397 lxt971_ack_interrupt fndecl 0 7397 NULL nohasharray
++disable_so_i40e_get_mac_addr_fndecl_7397 i40e_get_mac_addr fndecl 0 7397 &disable_so_lxt971_ack_interrupt_fndecl_7397
++disable_so_conn_db_addr_lo_fcoe_kwqe_conn_offload2_7408 conn_db_addr_lo fcoe_kwqe_conn_offload2 0 7408 NULL
++disable_so_spcp8x5_get_msr_fndecl_7409 spcp8x5_get_msr fndecl 0 7409 NULL
++disable_so_signal_det_fndecl_7411 signal_det fndecl 2 7411 NULL
++disable_so_vclk_fb_div_pll_ct_7423 vclk_fb_div pll_ct 0 7423 NULL
++disable_so_crypto_ahash_final_fndecl_7433 crypto_ahash_final fndecl 0 7433 NULL
++disable_so_vidioc_s_hw_freq_seek_fndecl_7439 vidioc_s_hw_freq_seek fndecl 0 7439 NULL
++disable_so_aa_calc_profile_hash_fndecl_7443 aa_calc_profile_hash fndecl 0-4 7443 NULL
++disable_so_count_sha1_state_7456 count sha1_state 0 7456 NULL
++disable_so_full_name_hash_fndecl_7466 full_name_hash fndecl 0-2 7466 NULL
++disable_so_serial8250_set_divisor_fndecl_7469 serial8250_set_divisor fndecl 4-3 7469 NULL
++disable_so_add_hwgenerator_randomness_fndecl_7471 add_hwgenerator_randomness fndecl 2-3 7471 NULL
++disable_so_xfs_btree_check_block_fndecl_7472 xfs_btree_check_block fndecl 0 7472 NULL
++disable_so_f1x_get_norm_dct_addr_fndecl_7473 f1x_get_norm_dct_addr fndecl 0-3-5 7473 NULL
++disable_so_timeout_tid_ampdu_rx_7484 timeout tid_ampdu_rx 0 7484 NULL
++disable_so_uv_rtc_find_next_timer_fndecl_7494 uv_rtc_find_next_timer fndecl 2 7494 NULL
++disable_so_mmc_erase_timeout_fndecl_7496 mmc_erase_timeout fndecl 0-3-2 7496 NULL
++disable_so_interrupt_in_endpoint_edgeport_serial_7513 interrupt_in_endpoint edgeport_serial 0 7513 NULL
++disable_so_start_asd_ha_addrspace_7515 start asd_ha_addrspace 0 7515 NULL
++disable_so_ccp_register_aes_alg_fndecl_7517 ccp_register_aes_alg fndecl 0 7517 NULL
++disable_so_addr_ptr_drm_i915_gem_mmap_7520 addr_ptr drm_i915_gem_mmap 0 7520 NULL
++disable_so_ecryptfs_get_tfm_and_mutex_for_cipher_name_fndecl_7524 ecryptfs_get_tfm_and_mutex_for_cipher_name fndecl 0 7524 NULL
++disable_so_async_schedule_fndecl_7528 async_schedule fndecl 0 7528 NULL nohasharray
++disable_so_crypto_ctr_crypt_inplace_fndecl_7528 crypto_ctr_crypt_inplace fndecl 0 7528 &disable_so_async_schedule_fndecl_7528
++disable_so_snd_mpu401_uart_interrupt_fndecl_7536 snd_mpu401_uart_interrupt fndecl 1 7536 NULL
++disable_so_cfg_max_scsicmpl_time_lpfc_vport_7541 cfg_max_scsicmpl_time lpfc_vport 0 7541 NULL
++disable_so_blkcipher_done_slow_fndecl_7555 blkcipher_done_slow fndecl 0-2 7555 NULL
++disable_so_cg_spll_spread_spectrum_si_clock_registers_7557 cg_spll_spread_spectrum si_clock_registers 0 7557 NULL
++disable_so_dev_addr_mv_udc_7559 dev_addr mv_udc 0 7559 NULL
++disable_so___restart_timer_fndecl_7572 __restart_timer fndecl 2 7572 NULL
++disable_so_phy_interrupt_fndecl_7576 phy_interrupt fndecl 1 7576 NULL
++disable_so_pending_auth_reply_time_wl12xx_vif_7583 pending_auth_reply_time wl12xx_vif 0 7583 NULL
++disable_so_kempld_wdt_set_stage_timeout_fndecl_7592 kempld_wdt_set_stage_timeout fndecl 3 7592 NULL
++disable_so_mwifiex_ret_802_11_mac_address_fndecl_7598 mwifiex_ret_802_11_mac_address fndecl 0 7598 NULL
++disable_so_ad799x_write_frequency_fndecl_7606 ad799x_write_frequency fndecl 0-4 7606 NULL
++disable_so_htab_map_hash_fndecl_7622 htab_map_hash fndecl 0-2 7622 NULL
++disable_so_smack_task_getscheduler_fndecl_7629 smack_task_getscheduler fndecl 0 7629 NULL
++disable_so_atomic64_sub_fndecl_7638 atomic64_sub fndecl 1 7638 NULL
++disable_so___mcheck_cpu_cap_init_fndecl_7640 __mcheck_cpu_cap_init fndecl 0 7640 NULL
++disable_so_sq_dma_addr_nvme_queue_7641 sq_dma_addr nvme_queue 0 7641 NULL
++disable_so_data_address_mscp_7645 data_address mscp 0 7645 NULL
++disable_so_block_address_ms_param_register_7651 block_address ms_param_register 0 7651 NULL
++disable_so___wait_on_bit_lock_fndecl_7653 __wait_on_bit_lock fndecl 0 7653 NULL
++disable_so_dma_addr_qla2_sgx_7667 dma_addr qla2_sgx 0 7667 NULL
++disable_so_ba1_addr_cs4281_7670 ba1_addr cs4281 0 7670 NULL
++disable_so_addr_nv50_disp_mthd_list_7671 addr nv50_disp_mthd_list 0 7671 NULL
++disable_so_address_stv090x_config_7672 address stv090x_config 0 7672 NULL
++disable_so_addr_oxygen_7675 addr oxygen 0 7675 NULL
++disable_so_mei_wd_ops_set_timeout_fndecl_7696 mei_wd_ops_set_timeout fndecl 2 7696 NULL
++disable_so_clock_getres_k_clock_7708 clock_getres k_clock 1 7708 NULL
++disable_so_hash_shift_neigh_hash_table_7714 hash_shift neigh_hash_table 0 7714 NULL
++disable_so_pmu_fast_powerup_delay_fndecl_7721 pmu_fast_powerup_delay fndecl 0 7721 NULL
++disable_so_dst_addr_rds_info_rdma_connection_7722 dst_addr rds_info_rdma_connection 0 7722 NULL
++disable_so_period_timeriomem_rng_private_data_7730 period timeriomem_rng_private_data 0 7730 NULL
++disable_so_ocfs2_flock_handle_signal_fndecl_7734 ocfs2_flock_handle_signal fndecl 0 7734 NULL
++disable_so_seq_rds_info_message_7735 seq rds_info_message 0 7735 NULL
++disable_so_base_addr_net_device_7745 base_addr net_device 0 7745 NULL
++disable_so_sense_addr_fcpio_icmnd_16_7746 sense_addr fcpio_icmnd_16 0 7746 NULL
++disable_so_clocks_calc_mult_shift_fndecl_7747 clocks_calc_mult_shift fndecl 3-4-5 7747 NULL
++disable_so_monotonic_time_coarse_sec_vsyscall_gtod_data_7749 monotonic_time_coarse_sec vsyscall_gtod_data 0 7749 NULL
++disable_so_remote_ca_guid_cm_timewait_info_7768 remote_ca_guid cm_timewait_info 0 7768 NULL
++disable_so_tsf_timestamp_wmi_phyerr_7783 tsf_timestamp wmi_phyerr 0 7783 NULL
++disable_so_fullbatt_vchk_jiffies_at_charger_manager_7786 fullbatt_vchk_jiffies_at charger_manager 0 7786 NULL
++disable_so_st_mtime_nsec_p9_stat_dotl_7787 st_mtime_nsec p9_stat_dotl 0 7787 NULL
++disable_so_hmac_sha256_fndecl_7789 hmac_sha256 fndecl 0-2-4 7789 NULL
++disable_so_writeback_delay_fndecl_7808 writeback_delay fndecl 0-2 7808 NULL
++disable_so_offset_ioctl_gntdev_get_offset_for_vaddr_7812 offset ioctl_gntdev_get_offset_for_vaddr 0 7812 NULL
++disable_so_tuner_frequency_stv0288_state_7823 tuner_frequency stv0288_state 0 7823 NULL
++disable_so_neigh_hash_grow_fndecl_7824 neigh_hash_grow fndecl 2 7824 NULL
++disable_so_timeout_sh_mmcif_host_7836 timeout sh_mmcif_host 0 7836 NULL
++disable_so_cpuid_eax_fndecl_7845 cpuid_eax fndecl 0 7845 NULL
++disable_so_mclk_pwrmgt_cntl_si_clock_registers_7850 mclk_pwrmgt_cntl si_clock_registers 0 7850 NULL
++disable_so_mgt_update_addr_fndecl_7857 mgt_update_addr fndecl 0 7857 NULL nohasharray
++disable_so_regmap_bulk_read_fndecl_7857 regmap_bulk_read fndecl 4-0-2 7857 &disable_so_mgt_update_addr_fndecl_7857
++disable_so_cpufreq_governor_init_fndecl_7864 cpufreq_governor_init fndecl 0 7864 NULL
++disable_so_sync_freq_arizona_fll_7868 sync_freq arizona_fll 0 7868 NULL
++disable_so_channel_switch_time_ath_chanctx_sched_7869 channel_switch_time ath_chanctx_sched 0 7869 NULL nohasharray
++disable_so_isp1760_udc_set_address_fndecl_7869 isp1760_udc_set_address fndecl 2 7869 &disable_so_channel_switch_time_ath_chanctx_sched_7869
++disable_so_n_hw_addrs_iwl_nvm_data_7872 n_hw_addrs iwl_nvm_data 0 7872 NULL
++disable_so_rcu_jiffies_till_stall_check_fndecl_7874 rcu_jiffies_till_stall_check fndecl 0 7874 NULL
++disable_so_seq_b43legacy_txstatus_7880 seq b43legacy_txstatus 0 7880 NULL
++disable_so_hpi_tuner_query_frequency_fndecl_7881 hpi_tuner_query_frequency fndecl 0-1 7881 NULL
++disable_so_data_address_descriptor_7886 data_address descriptor 0 7886 NULL
++disable_so_mpll_dq_func_cntl_ci_clock_registers_7890 mpll_dq_func_cntl ci_clock_registers 0 7890 NULL
++disable_so_hpfs_load_bitmap_directory_fndecl_7892 hpfs_load_bitmap_directory fndecl 2 7892 NULL
++disable_so_hour_tomoyo_time_7893 hour tomoyo_time 0 7893 NULL
++disable_so_dx_pt_regs_7894 dx pt_regs 0 7894 NULL
++disable_so_mthca_SW2HW_EQ_fndecl_7906 mthca_SW2HW_EQ fndecl 3-0 7906 NULL
++disable_so_megasas_start_timer_fndecl_7920 megasas_start_timer fndecl 4 7920 NULL
++disable_so_Memhscx_interrupt_fndecl_7925 Memhscx_interrupt fndecl 2 7925 NULL
++disable_so_ena_gpio_regulator_config_7927 ena_gpio regulator_config 0 7927 NULL
++disable_so_tda827x_initial_sleep_fndecl_7929 tda827x_initial_sleep fndecl 0 7929 NULL
++disable_so_hfrontporch_v4l2_bt_timings_7935 hfrontporch v4l2_bt_timings 0 7935 NULL
++disable_so_xfrm_flowi_daddr_fndecl_7937 xfrm_flowi_daddr fndecl 2 7937 NULL
++disable_so_fw_schedule_device_work_fndecl_7962 fw_schedule_device_work fndecl 2 7962 NULL
++disable_so_xfs_btree_get_bufl_fndecl_7965 xfs_btree_get_bufl fndecl 3 7965 NULL
++disable_so_cpu_to_macvtap16_fndecl_7976 cpu_to_macvtap16 fndecl 0-2 7976 NULL nohasharray
++disable_so_evm_calc_hmac_or_hash_fndecl_7976 evm_calc_hmac_or_hash fndecl 0-4 7976 &disable_so_cpu_to_macvtap16_fndecl_7976
++disable_so_first_port_bitmap_port_7981 first_port bitmap_port 0 7981 NULL
++disable_so_compat_get_bitmap_fndecl_7984 compat_get_bitmap fndecl 0-3 7984 NULL
++disable_so_dma_addr_iser_rx_desc_7996 dma_addr iser_rx_desc 0 7996 NULL
++disable_so_channel2freq_a_fndecl_7997 channel2freq_a fndecl 0-1 7997 NULL
++disable_so_card_snd_timer_info_8007 card snd_timer_info 0 8007 NULL nohasharray
++disable_so_svga_set_timings_fndecl_8007 svga_set_timings fndecl 4-5-6-7-8-9 8007 &disable_so_card_snd_timer_info_8007
++disable_so_apanel_addr_vardecl_i2c_i801_c_8018 apanel_addr vardecl_i2c-i801.c 0 8018 NULL
++disable_so_bcma_pmu_pll_clock_fndecl_8024 bcma_pmu_pll_clock fndecl 2-3-0 8024 NULL
++disable_so_sha1_transform_asm_vardecl_sha1_ssse3_glue_c_8028 sha1_transform_asm vardecl_sha1_ssse3_glue.c 3 8028 NULL
++disable_so_add_timer_randomness_fndecl_8030 add_timer_randomness fndecl 2 8030 NULL
++disable_so_hash_mask_mesh_table_8031 hash_mask mesh_table 0 8031 NULL
++disable_so_show_dgid_fndecl_8032 show_dgid fndecl 0 8032 NULL
++disable_so_div_cfg_dib8000_config_8034 div_cfg dib8000_config 0 8034 NULL
++disable_so_demod_address_l64781_config_8035 demod_address l64781_config 0 8035 NULL
++disable_so_uid_cramfs_inode_8037 uid cramfs_inode 0 8037 NULL
++disable_so_recover_timer_read_fndecl_8053 recover_timer_read fndecl 0 8053 NULL
++disable_so_usb_sleep_music_show_fndecl_8055 usb_sleep_music_show fndecl 0 8055 NULL
++disable_so_hw_ptr_interrupt_snd_pcm_runtime_8061 hw_ptr_interrupt snd_pcm_runtime 0 8061 NULL
++disable_so_reset_delay_us_e1000_phy_info_8066 reset_delay_us e1000_phy_info 0 8066 NULL
++disable_so_timeout_packet_command_8072 timeout packet_command 0 8072 NULL
++disable_so_jiffies_a_sl811_8074 jiffies_a sl811 0 8074 NULL nohasharray
++disable_so_idedisk_set_max_address_fndecl_8074 idedisk_set_max_address fndecl 0-2 8074 &disable_so_jiffies_a_sl811_8074
++disable_so_base_addr_TAG_TW_Device_Extension_8076 base_addr TAG_TW_Device_Extension 0 8076 NULL
++disable_so_gateway_cmd_addr_wil_fw_record_gateway_data4_8080 gateway_cmd_addr wil_fw_record_gateway_data4 0 8080 NULL
++disable_so_snd_cmipci_interrupt_fndecl_8083 snd_cmipci_interrupt fndecl 1 8083 NULL
++disable_so_ivsize_blkcipher_alg_8085 ivsize blkcipher_alg 0 8085 NULL
++disable_so_mlx5e_add_eth_addr_rule_fndecl_8090 mlx5e_add_eth_addr_rule fndecl 0 8090 NULL
++disable_so_sysctl_rose_call_request_timeout_vardecl_8095 sysctl_rose_call_request_timeout vardecl 0 8095 NULL nohasharray
++disable_so_b43_phy_maskset_fndecl_8095 b43_phy_maskset fndecl 2-3-4 8095 &disable_so_sysctl_rose_call_request_timeout_vardecl_8095
++disable_so_dma_addr_mraid_pci_blk_8116 dma_addr mraid_pci_blk 0 8116 NULL
++disable_so___arch_hweight32_fndecl_8119 __arch_hweight32 fndecl 0-1 8119 NULL
++disable_so_lvds_downclock_drm_i915_private_8128 lvds_downclock drm_i915_private 0 8128 NULL
++disable_so_calgary_set_split_completion_timeout_fndecl_8129 calgary_set_split_completion_timeout fndecl 2 8129 NULL
++disable_so_i_atime_minix2_inode_8131 i_atime minix2_inode 0 8131 NULL
++disable_so_xclk_post_div_pll_ct_8137 xclk_post_div pll_ct 0 8137 NULL
++disable_so_legacy_display_base_addr_radeon_crtc_8144 legacy_display_base_addr radeon_crtc 0 8144 NULL
++disable_so_rv6xx_memory_clock_entry_set_reference_divider_fndecl_8149 rv6xx_memory_clock_entry_set_reference_divider fndecl 3 8149 NULL
++disable_so_x86_phys_bits_cpuinfo_x86_8154 x86_phys_bits cpuinfo_x86 0 8154 NULL
++disable_so_vmx_get_preemption_timer_value_fndecl_8155 vmx_get_preemption_timer_value fndecl 0 8155 NULL
++disable_so_delayed_set_value_led_classdev_8162 delayed_set_value led_classdev 0 8162 NULL
++disable_so_link_timeout_fe_priv_8170 link_timeout fe_priv 0 8170 NULL nohasharray
++disable_so_snd_ice1712_pro_internal_clock_info_fndecl_8170 snd_ice1712_pro_internal_clock_info fndecl 0 8170 &disable_so_link_timeout_fe_priv_8170
++disable_so___jhash_nwords_fndecl_8180 __jhash_nwords fndecl 0-1-2-3 8180 NULL
++disable_so_buffer_addr_e1000_rx_desc_8186 buffer_addr e1000_rx_desc 0 8186 NULL
++disable_so_s_wtime_ext2_super_block_8189 s_wtime ext2_super_block 0 8189 NULL nohasharray
++disable_so_sel_addr1___mux2_8189 sel_addr1 __mux2 0 8189 &disable_so_s_wtime_ext2_super_block_8189
++disable_so_elan_smbus_sleep_control_fndecl_8190 elan_smbus_sleep_control fndecl 0 8190 NULL
++disable_so_hscale_timing_8195 hscale timing 0 8195 NULL
++disable_so_mem_addr_sms_data_download_8196 mem_addr sms_data_download 0 8196 NULL
++disable_so_last_time2_intel_ilk_power_mgmt_8197 last_time2 intel_ilk_power_mgmt 0 8197 NULL
++disable_so_end_point_addr_cx231xx_video_mode_8198 end_point_addr cx231xx_video_mode 0 8198 NULL
++disable_so_cmx_delay_dsp_8202 cmx_delay dsp 0 8202 NULL
++disable_so_inet6_rtm_deladdr_fndecl_8203 inet6_rtm_deladdr fndecl 0 8203 NULL
++disable_so_local_ca_guid_cm_rep_msg_8210 local_ca_guid cm_rep_msg 0 8210 NULL
++disable_so_address_r8a66597_device_8227 address r8a66597_device 0 8227 NULL
++disable_so_idle_jiffies_tick_sched_8241 idle_jiffies tick_sched 0 8241 NULL nohasharray
++disable_so_ver_addr_via_display_timing_8241 ver_addr via_display_timing 0 8241 &disable_so_idle_jiffies_tick_sched_8241
++disable_so_addr_hamachi_desc_8244 addr hamachi_desc 0 8244 NULL nohasharray
++disable_so_addr_snd_dmaengine_dai_dma_data_8244 addr snd_dmaengine_dai_dma_data 0 8244 &disable_so_addr_hamachi_desc_8244
++disable_so_ip6addrlbl_add_fndecl_8251 ip6addrlbl_add fndecl 0-4 8251 NULL
++disable_so_transtime_vim2m_ctx_8252 transtime vim2m_ctx 0 8252 NULL
++disable_so_seq_prism2_frag_entry_8262 seq prism2_frag_entry 0 8262 NULL
++disable_so_uid_args_requester_8263 uid args_requester 0 8263 NULL
++disable_so_bfa_fcs_lport_ns_sm_gid_ft_retry_fndecl_8264 bfa_fcs_lport_ns_sm_gid_ft_retry fndecl 2 8264 NULL
++disable_so_jffs2_lzo_decompress_fndecl_8274 jffs2_lzo_decompress fndecl 3 8274 NULL
++disable_so_fb_start_aligned_physaddr_osd_info_8300 fb_start_aligned_physaddr osd_info 0 8300 NULL
++disable_so_latch_addr_flash_driver_init_fndecl_8304 latch_addr_flash_driver_init fndecl 0 8304 NULL
++disable_so_ab3100_rtc_read_time_fndecl_8312 ab3100_rtc_read_time fndecl 0 8312 NULL
++disable_so_set_addr_fndecl_8318 set_addr fndecl 2-4-5 8318 NULL
++disable_so_bit_width_acpi_pct_register_8319 bit_width acpi_pct_register 0 8319 NULL
++disable_so_cpu_core_id_cpuinfo_x86_8323 cpu_core_id cpuinfo_x86 0 8323 NULL
++disable_so_hash_rem_ccp_aes_cmac_req_ctx_8330 hash_rem ccp_aes_cmac_req_ctx 0 8330 NULL
++disable_so_ps_timeout_wireless_dev_8334 ps_timeout wireless_dev 0 8334 NULL
++disable_so_next_address_dma_ops_domain_8335 next_address dma_ops_domain 0 8335 NULL
++disable_so_skcipher_pull_sgl_fndecl_8337 skcipher_pull_sgl fndecl 2 8337 NULL
++disable_so_create_impulse_test_signal_fndecl_8361 create_impulse_test_signal fndecl 3 8361 NULL
++disable_so_mod_timer_pending_fndecl_8362 mod_timer_pending fndecl 2-0 8362 NULL nohasharray
++disable_so_ep0_trb_addr_dwc3_8362 ep0_trb_addr dwc3 0 8362 &disable_so_mod_timer_pending_fndecl_8362
++disable_so_mtt_base_addr_h_mlx4_cq_context_8364 mtt_base_addr_h mlx4_cq_context 0 8364 NULL
++disable_so_i2c_smbus_write_byte_data_fndecl_8369 i2c_smbus_write_byte_data fndecl 0-2-3 8369 NULL
++disable_so_tpg_hscale_div_fndecl_8382 tpg_hscale_div fndecl 0-3 8382 NULL
++disable_so_timestamp_bnx2i_endpoint_8390 timestamp bnx2i_endpoint 0 8390 NULL
++disable_so_audit_backlog_wait_time_vardecl_audit_c_8393 audit_backlog_wait_time vardecl_audit.c 0 8393 NULL
++disable_so_compat_put_timeval_fndecl_8394 compat_put_timeval fndecl 0 8394 NULL
++disable_so_btree_remove128_fndecl_8408 btree_remove128 fndecl 2 8408 NULL
++disable_so_pcxhr_hardware_timer_fndecl_8413 pcxhr_hardware_timer fndecl 0 8413 NULL
++disable_so_ixgbe_atr_compute_sig_hash_82599_fndecl_8416 ixgbe_atr_compute_sig_hash_82599 fndecl 0 8416 NULL
++disable_so_space_id_acpi_generic_address_8425 space_id acpi_generic_address 0 8425 NULL
++disable_so_befs_btree_read_fndecl_8444 befs_btree_read fndecl 3 8444 NULL
++disable_so_cttimeout_default_set_fndecl_8445 cttimeout_default_set fndecl 0 8445 NULL
++disable_so_set_bdaddr_hci_dev_8450 set_bdaddr hci_dev 0 8450 NULL
++disable_so_select_addr_qla82xx_md_entry_queue_8457 select_addr qla82xx_md_entry_queue 0 8457 NULL
++disable_so_crypto_register_alg_fndecl_8460 crypto_register_alg fndecl 0 8460 NULL
++disable_so_inet6_fill_ifmcaddr_fndecl_8465 inet6_fill_ifmcaddr fndecl 0-3-5 8465 NULL
++disable_so_image_address_acpi_table_bgrt_8468 image_address acpi_table_bgrt 0 8468 NULL
++disable_so_cmd_lock_addr_ulp_mem_io_8484 cmd_lock_addr ulp_mem_io 0 8484 NULL
++disable_so_r600_engine_clock_entry_set_step_time_fndecl_8486 r600_engine_clock_entry_set_step_time fndecl 3 8486 NULL
++disable_so_cxd2820r_sleep_t2_fndecl_8488 cxd2820r_sleep_t2 fndecl 0 8488 NULL
++disable_so_si_get_cu_active_bitmap_fndecl_8498 si_get_cu_active_bitmap fndecl 0-2-3 8498 NULL
++disable_so_clock_drxd_config_8500 clock drxd_config 0 8500 NULL nohasharray
++disable_so_i2c_addr_zl10039_state_8500 i2c_addr zl10039_state 0 8500 &disable_so_clock_drxd_config_8500 nohasharray
++disable_so_map_sg_dma_map_ops_8500 map_sg dma_map_ops 0-3 8500 &disable_so_i2c_addr_zl10039_state_8500
++disable_so_addr_vt1211_data_8504 addr vt1211_data 0 8504 NULL
++disable_so_vsync_pulse_width_lvds_dvo_timing_8520 vsync_pulse_width lvds_dvo_timing 0 8520 NULL
++disable_so_set_frequency_fndecl_8523 set_frequency fndecl 0-3 8523 NULL
++disable_so_lola_enable_clock_events_fndecl_8528 lola_enable_clock_events fndecl 0 8528 NULL
++disable_so_pci_prepare_to_sleep_fndecl_8531 pci_prepare_to_sleep fndecl 0 8531 NULL
++disable_so_valleyview_rps_max_freq_fndecl_8541 valleyview_rps_max_freq fndecl 0 8541 NULL
++disable_so_wm8350_set_clkdiv_fndecl_8547 wm8350_set_clkdiv fndecl 3 8547 NULL
++disable_so_scope_inet6_ifaddr_8569 scope inet6_ifaddr 0 8569 NULL
++disable_so_hci_update_random_address_fndecl_8570 hci_update_random_address fndecl 0 8570 NULL nohasharray
++disable_so_level_btrfs_delayed_extent_op_8570 level btrfs_delayed_extent_op 0 8570 &disable_so_hci_update_random_address_fndecl_8570
++disable_so_p5_mt9t112_pll_divider_8582 p5 mt9t112_pll_divider 0 8582 NULL
++disable_so_period_frames_snd_pcm_oss_runtime_8583 period_frames snd_pcm_oss_runtime 0 8583 NULL nohasharray
++disable_so_sgtl5000_set_clock_fndecl_8583 sgtl5000_set_clock fndecl 2 8583 &disable_so_period_frames_snd_pcm_oss_runtime_8583
++disable_so_ns_to_timespec_fndecl_8584 ns_to_timespec fndecl 1 8584 NULL
++disable_so_mmc_test_random_perf_fndecl_8591 mmc_test_random_perf fndecl 0 8591 NULL
++disable_so_ac_sleep_before_get_state_ms_vardecl_ac_c_8592 ac_sleep_before_get_state_ms vardecl_ac.c 0 8592 NULL
++disable_so_s5h1420_getfreqoffset_fndecl_8597 s5h1420_getfreqoffset fndecl 0 8597 NULL
++disable_so_pll_j_aic32x4_rate_divs_8598 pll_j aic32x4_rate_divs 0 8598 NULL
++disable_so_freq_stb0899_params_8606 freq stb0899_params 0 8606 NULL
++disable_so_vblank_hi_oaktrail_timing_info_8607 vblank_hi oaktrail_timing_info 0 8607 NULL
++disable_so_subnet_timeout_ipath_ibdev_8613 subnet_timeout ipath_ibdev 0 8613 NULL nohasharray
++disable_so_demod_address_or51211_config_8613 demod_address or51211_config 0 8613 &disable_so_subnet_timeout_ipath_ibdev_8613
++disable_so___compat_put_timespec_fndecl_8625 __compat_put_timespec fndecl 0 8625 NULL
++disable_so_sq_addr_hi_fcoe_kwqe_conn_offload1_8631 sq_addr_hi fcoe_kwqe_conn_offload1 0 8631 NULL
++disable_so_compat_sock_get_timestamp_fndecl_8635 compat_sock_get_timestamp fndecl 0 8635 NULL
++disable_so_next_sit_addr_fndecl_8639 next_sit_addr fndecl 0-2 8639 NULL
++disable_so_update_mc_addr_fm10k_mac_ops_8643 update_mc_addr fm10k_mac_ops 4 8643 NULL
++disable_so_img_ir_timing_range_convert_fndecl_8648 img_ir_timing_range_convert fndecl 3-4-5 8648 NULL
++disable_so_adc_clock_ratio_dib0090_io_config_8649 adc_clock_ratio dib0090_io_config 0 8649 NULL
++disable_so_regcache_rbtree_sync_fndecl_8655 regcache_rbtree_sync fndecl 0-2-3 8655 NULL
++disable_so_nilfs_btree_gather_data_fndecl_8666 nilfs_btree_gather_data fndecl 0-4 8666 NULL
++disable_so__scsih_get_sas_address_fndecl_8674 _scsih_get_sas_address fndecl 2 8674 NULL
++disable_so_mul_u64_u32_shr_fndecl_8675 mul_u64_u32_shr fndecl 0-1-2-3 8675 NULL
++disable_so_find_next_zero_bit_fndecl_8677 find_next_zero_bit fndecl 0-2-3 8677 NULL
++disable_so_generic_set_freq_fndecl_8678 generic_set_freq fndecl 0-2 8678 NULL
++disable_so_time_in_irq_usb_usbvision_8687 time_in_irq usb_usbvision 0 8687 NULL
++disable_so_data_addr_asc_scsiq_1_8688 data_addr asc_scsiq_1 0 8688 NULL
++disable_so_nl80211_parse_random_mac_fndecl_8702 nl80211_parse_random_mac fndecl 0 8702 NULL
++disable_so_hpi_compander_set_attack_time_constant_fndecl_8705 hpi_compander_set_attack_time_constant fndecl 1-0 8705 NULL
++disable_so_qla2x00_sns_gid_pt_fndecl_8706 qla2x00_sns_gid_pt fndecl 0 8706 NULL
++disable_so_tipc_own_addr_fndecl_8707 tipc_own_addr fndecl 0 8707 NULL
++disable_so_da9055_rtc_read_time_fndecl_8709 da9055_rtc_read_time fndecl 0 8709 NULL
++disable_so_theta__fll_div_8710 theta _fll_div 0 8710 NULL nohasharray
++disable_so_size_genwqe_bitstream_8710 size genwqe_bitstream 0 8710 &disable_so_theta__fll_div_8710
++disable_so_cpu_to_virtio64_fndecl_8714 cpu_to_virtio64 fndecl 0-2 8714 NULL
++disable_so_sleep_reg_bma180_part_info_8720 sleep_reg bma180_part_info 0 8720 NULL
++disable_so_via_clock_init_fndecl_8721 via_clock_init fndecl 2 8721 NULL
++disable_so_time_reftime_vardecl_ntp_c_8722 time_reftime vardecl_ntp.c 0 8722 NULL
++disable_so_sysfs_set_reg_fndecl_8723 sysfs_set_reg fndecl 5 8723 NULL
++disable_so_rport_del_timeout_vardecl_8725 rport_del_timeout vardecl 0 8725 NULL
++disable_so_rb_subtree_gap_vm_area_struct_8729 rb_subtree_gap vm_area_struct 0 8729 NULL
++disable_so_mipi_dsi_dcs_set_column_address_fndecl_8732 mipi_dsi_dcs_set_column_address fndecl 0 8732 NULL
++disable_so_aes_encrypt_fail_read_fndecl_8737 aes_encrypt_fail_read fndecl 0-3 8737 NULL
++disable_so_sumo_set_uvd_clock_fndecl_8742 sumo_set_uvd_clock fndecl 0-2-3-4 8742 NULL
++disable_so_daddr_irlap_cb_8752 daddr irlap_cb 0 8752 NULL
++disable_so_skcipher_sendpage_fndecl_8759 skcipher_sendpage fndecl 0-3-4-5 8759 NULL
++disable_so_bitmap_store_fndecl_8764 bitmap_store fndecl 0-3 8764 NULL
++disable_so_outdiv_arizona_fll_cfg_8765 outdiv arizona_fll_cfg 0 8765 NULL
++disable_so_mce_start_timer_fndecl_8772 mce_start_timer fndecl 1 8772 NULL nohasharray
++disable_so_kxcjk1013_runtime_resume_fndecl_8772 kxcjk1013_runtime_resume fndecl 0 8772 &disable_so_mce_start_timer_fndecl_8772
++disable_so_p_addr_fw_desc_8777 p_addr fw_desc 0 8777 NULL
++disable_so_count_uid_gid_extent_8799 count uid_gid_extent 0 8799 NULL
++disable_so_ring_base_address_kfd_ioctl_create_queue_args_8811 ring_base_address kfd_ioctl_create_queue_args 0 8811 NULL
++disable_so_start_addr_mlx5_mkey_seg_8817 start_addr mlx5_mkey_seg 0 8817 NULL
++disable_so_ui_gid_ufs2_inode_8825 ui_gid ufs2_inode 0 8825 NULL
++disable_so_addr_idx_tx_sw_desc_8827 addr_idx tx_sw_desc 0 8827 NULL
++disable_so_cookie_init_timestamp_fndecl_8835 cookie_init_timestamp fndecl 0 8835 NULL
++disable_so_f2fs_crypto_initialize_fndecl_8839 f2fs_crypto_initialize fndecl 0 8839 NULL
++disable_so_timeout_ib_mad_send_wr_private_8841 timeout ib_mad_send_wr_private 0 8841 NULL nohasharray
++disable_so_ddiv_gf100_clk_info_8841 ddiv gf100_clk_info 0 8841 &disable_so_timeout_ib_mad_send_wr_private_8841
++disable_so_start_time_ieee80211_p2p_noa_desc_8844 start_time ieee80211_p2p_noa_desc 0 8844 NULL
++disable_so__isl12057_rtc_read_time_fndecl_8850 _isl12057_rtc_read_time fndecl 0 8850 NULL
++disable_so_read_addr_qla8xxx_minidump_entry_cache_8859 read_addr qla8xxx_minidump_entry_cache 0 8859 NULL
++disable_so_b43legacy_get_txgain_freq_power_amp_fndecl_8866 b43legacy_get_txgain_freq_power_amp fndecl 0-1 8866 NULL
++disable_so_ldelay_codel_vars_8872 ldelay codel_vars 0 8872 NULL
++disable_so_mode_addr_ath_gen_timer_configuration_8875 mode_addr ath_gen_timer_configuration 0 8875 NULL
++disable_so_move_addr_to_kernel_fndecl_8882 move_addr_to_kernel fndecl 0-2 8882 NULL
++disable_so_last_time_cpufreq_stats_8891 last_time cpufreq_stats 0 8891 NULL
++disable_so_di_uid_xfs_icdinode_8897 di_uid xfs_icdinode 0 8897 NULL
++disable_so_g84_cipher_init_fndecl_8909 g84_cipher_init fndecl 0 8909 NULL
++disable_so_slave_addr_intel_dvo_device_8910 slave_addr intel_dvo_device 0 8910 NULL
++disable_so_avg_time_ide_tape_obj_8917 avg_time ide_tape_obj 0 8917 NULL
++disable_so_ticks_timerfd_ctx_8928 ticks timerfd_ctx 0 8928 NULL
++disable_so_st_atime_compat_stat_8936 st_atime compat_stat 0 8936 NULL
++disable_so_addrconf_init_net_fndecl_8938 addrconf_init_net fndecl 0 8938 NULL
++disable_so_qla4xxx_start_timer_fndecl_8945 qla4xxx_start_timer fndecl 3 8945 NULL
++disable_so_crypto_blkcipher_decrypt_fndecl_8955 crypto_blkcipher_decrypt fndecl 0-4 8955 NULL
++disable_so_guest_physical_address_vmcs12_8957 guest_physical_address vmcs12 0 8957 NULL
++disable_so_acpi_lpss_runtime_resume_fndecl_8958 acpi_lpss_runtime_resume fndecl 0 8958 NULL nohasharray
++disable_so_tegra_spi_runtime_resume_fndecl_8958 tegra_spi_runtime_resume fndecl 0 8958 &disable_so_acpi_lpss_runtime_resume_fndecl_8958
++disable_so_runtime_resume_fndecl_8969 runtime_resume fndecl 0 8969 NULL
++disable_so_hpi_tuner_set_hd_radio_signal_blend_fndecl_8970 hpi_tuner_set_hd_radio_signal_blend fndecl 0-1 8970 NULL
++disable_so_wait_isoch_resource_delay_after_bus_reset_fndecl_8971 wait_isoch_resource_delay_after_bus_reset fndecl 0 8971 NULL
++disable_so_end_fw_address_region_8972 end fw_address_region 0 8972 NULL
++disable_so_sel_time_fcoe_ctlr_8977 sel_time fcoe_ctlr 0 8977 NULL
++disable_so_unmap_addr_tso_state_8980 unmap_addr tso_state 0 8980 NULL
++disable_so_v_freq_adv76xx_video_standards_8995 v_freq adv76xx_video_standards 0 8995 NULL
++disable_so_p3_mt9t112_pll_divider_8996 p3 mt9t112_pll_divider 0 8996 NULL
++disable_so_si476x_cmd_tune_seek_freq_fndecl_8997 si476x_cmd_tune_seek_freq fndecl 0-4-6 8997 NULL
++disable_so_lzo1x_1_do_compress_fndecl_9000 lzo1x_1_do_compress fndecl 2 9000 NULL
++disable_so_data_ramfuc_reg_9003 data ramfuc_reg 0 9003 NULL
++disable_so_uid_drm_client_9005 uid drm_client 0 9005 NULL nohasharray
++disable_so_size_pfn_var_mtrr_range_state_9005 size_pfn var_mtrr_range_state 0 9005 &disable_so_uid_drm_client_9005
++disable_so_decode_attr_time_modify_fndecl_9006 decode_attr_time_modify fndecl 0 9006 NULL nohasharray
++disable_so_last_jiffies_debug_vals_9006 last_jiffies debug_vals 0 9006 &disable_so_decode_attr_time_modify_fndecl_9006
++disable_so_i2c_address_tua6100_priv_9007 i2c_address tua6100_priv 0 9007 NULL nohasharray
++disable_so_end_mtrr_iter_9007 end mtrr_iter 0 9007 &disable_so_i2c_address_tua6100_priv_9007
++disable_so_sin6_flowinfo_sockaddr_in6_9019 sin6_flowinfo sockaddr_in6 0 9019 NULL nohasharray
++disable_so_device_destroy_fndecl_9019 device_destroy fndecl 2 9019 &disable_so_sin6_flowinfo_sockaddr_in6_9019
++disable_so_si_tss_segment_16_9021 si tss_segment_16 0 9021 NULL
++disable_so_parport_ieee1284_epp_write_addr_fndecl_9024 parport_ieee1284_epp_write_addr fndecl 0 9024 NULL
++disable_so_esi_user_regs_struct32_9028 esi user_regs_struct32 0 9028 NULL
++disable_so_clockevents_unbind_device_fndecl_9035 clockevents_unbind_device fndecl 2 9035 NULL nohasharray
++disable_so_t1_interrupt_fndecl_9035 t1_interrupt fndecl 1 9035 &disable_so_clockevents_unbind_device_fndecl_9035 nohasharray
++disable_so_randomize_stack_top_fndecl_9035 randomize_stack_top fndecl 0-1 9035 &disable_so_t1_interrupt_fndecl_9035
++disable_so_mv88e6xxx_set_addr_direct_fndecl_9045 mv88e6xxx_set_addr_direct fndecl 0 9045 NULL
++disable_so_phy_addr_cas_9051 phy_addr cas 0 9051 NULL
++disable_so_usnic_transport_sock_get_addr_fndecl_9083 usnic_transport_sock_get_addr fndecl 0 9083 NULL
++disable_so_debug_dma_free_coherent_fndecl_9087 debug_dma_free_coherent fndecl 4 9087 NULL nohasharray
++disable_so_hashtab_insert_fndecl_9087 hashtab_insert fndecl 0 9087 &disable_so_debug_dma_free_coherent_fndecl_9087
++disable_so_kblockd_schedule_delayed_work_on_fndecl_9095 kblockd_schedule_delayed_work_on fndecl 3-1 9095 NULL nohasharray
++disable_so_lbs_host_sleep_cfg_fndecl_9095 lbs_host_sleep_cfg fndecl 0 9095 &disable_so_kblockd_schedule_delayed_work_on_fndecl_9095
++disable_so_q_ctime_msg_queue_9100 q_ctime msg_queue 0 9100 NULL
++disable_so_start_time_il_spectrum_cmd_9104 start_time il_spectrum_cmd 0 9104 NULL
++disable_so_local_clock_fndecl_9106 local_clock fndecl 0 9106 NULL
++disable_so_addr_xtsplit_9109 addr xtsplit 0 9109 NULL
++disable_so_runtime_suspend_fndecl_9118 runtime_suspend fndecl 0 9118 NULL
++disable_so_pch_src_uuid_lo_read_fndecl_9120 pch_src_uuid_lo_read fndecl 0 9120 NULL nohasharray
++disable_so_freq_is_chan_12_13_14_fndecl_9120 freq_is_chan_12_13_14 fndecl 1 9120 &disable_so_pch_src_uuid_lo_read_fndecl_9120
++disable_so_addr1___pollrdmwr_9145 addr1 __pollrdmwr 0 9145 NULL
++disable_so_iowrite16_rep_fndecl_9149 iowrite16_rep fndecl 3 9149 NULL
++disable_so_rss_hash_result_eth_fast_path_rx_cqe_9151 rss_hash_result eth_fast_path_rx_cqe 0 9151 NULL
++disable_so_ieee80211_fill_mesh_addresses_fndecl_9154 ieee80211_fill_mesh_addresses fndecl 0 9154 NULL
++disable_so_dequeue_signal_lock_fndecl_9161 dequeue_signal_lock fndecl 0 9161 NULL
++disable_so_min_tomoyo_time_9165 min tomoyo_time 0 9165 NULL
++disable_so_hash_kernfs_node_9177 hash kernfs_node 0 9177 NULL
++disable_so_get_subaddr_fndecl_9183 get_subaddr fndecl 0-3 9183 NULL
++disable_so_tms_stime_tms_9187 tms_stime tms 0 9187 NULL
++disable_so_shash_async_final_fndecl_9193 shash_async_final fndecl 0 9193 NULL
++disable_so_sksg_dma_address_skd_request_context_9194 sksg_dma_address skd_request_context 0 9194 NULL
++disable_so_rss_hash_val_rss_header_9205 rss_hash_val rss_header 0 9205 NULL
++disable_so_actual_clock_mmc_host_9217 actual_clock mmc_host 0 9217 NULL
++disable_so_xt_cluster_is_multicast_addr_fndecl_9218 xt_cluster_is_multicast_addr fndecl 2 9218 NULL
++disable_so_ww_mutex_lock_interruptible_fndecl_9222 ww_mutex_lock_interruptible fndecl 0 9222 NULL
++disable_so_twake_snd_pcm_runtime_9229 twake snd_pcm_runtime 0 9229 NULL
++disable_so_read_file_bt_ant_diversity_fndecl_9236 read_file_bt_ant_diversity fndecl 0 9236 NULL
++disable_so_tx_complete_addr_acx_data_path_params_resp_9246 tx_complete_addr acx_data_path_params_resp 0 9246 NULL
++disable_so_pbn_div_drm_dp_mst_topology_mgr_9251 pbn_div drm_dp_mst_topology_mgr 0 9251 NULL
++disable_so_num_address_p54_group_address_table_9258 num_address p54_group_address_table 0 9258 NULL
++disable_so_ks108_set_xaddr_fndecl_9262 ks108_set_xaddr fndecl 2-3 9262 NULL
++disable_so_xtal_freq_qm1d1c0042_config_9263 xtal_freq qm1d1c0042_config 0 9263 NULL
++disable_so_lbs_host_sleep_read_fndecl_9270 lbs_host_sleep_read fndecl 3-0 9270 NULL
++disable_so_fdiv_it913x_dev_9273 fdiv it913x_dev 0 9273 NULL nohasharray
++disable_so_oom_score_adj_signal_struct_9273 oom_score_adj signal_struct 0 9273 &disable_so_fdiv_it913x_dev_9273
++disable_so_compat_sys_mq_timedsend_fndecl_9287 compat_sys_mq_timedsend fndecl 3-1 9287 NULL
++disable_so_snd_tea575x_val_to_freq_fndecl_9302 snd_tea575x_val_to_freq fndecl 0-2 9302 NULL
++disable_so_addr_resolve_fndecl_9304 addr_resolve fndecl 0 9304 NULL
++disable_so_address_mic_vqconfig_9306 address mic_vqconfig 0 9306 NULL nohasharray
++disable_so_stat_params_addr_lo_fcoe_kwqe_stat_9306 stat_params_addr_lo fcoe_kwqe_stat 0 9306 &disable_so_address_mic_vqconfig_9306
++disable_so_trace_clock_local_fndecl_9318 trace_clock_local fndecl 0 9318 NULL nohasharray
++disable_so_proc_gid_map_write_fndecl_9318 proc_gid_map_write fndecl 0-3 9318 &disable_so_trace_clock_local_fndecl_9318
++disable_so_discovery_timeout_mpath_info_9320 discovery_timeout mpath_info 0 9320 NULL
++disable_so_xmit_timeout_nbd_device_9323 xmit_timeout nbd_device 0 9323 NULL
++disable_so_timer_irq_vardecl_cs5535_clockevt_c_9326 timer_irq vardecl_cs5535-clockevt.c 0 9326 NULL
++disable_so_kblockd_schedule_delayed_work_fndecl_9328 kblockd_schedule_delayed_work fndecl 2 9328 NULL
++disable_so_utimes_common_fndecl_9330 utimes_common fndecl 0 9330 NULL
++disable_so_di_gid_qnx4_inode_entry_9346 di_gid qnx4_inode_entry 0 9346 NULL nohasharray
++disable_so_rpc_localaddr_fndecl_9346 rpc_localaddr fndecl 0 9346 &disable_so_di_gid_qnx4_inode_entry_9346
++disable_so_ibits_pll_freq_tbl_9354 ibits pll_freq_tbl 0 9354 NULL
++disable_so_addr_nct6683_data_9356 addr nct6683_data 0 9356 NULL
++disable_so_l2_fhdr_hash_l2_fhdr_9360 l2_fhdr_hash l2_fhdr 0 9360 NULL
++disable_so_hpfs_count_one_bitmap_fndecl_9362 hpfs_count_one_bitmap fndecl 0-2 9362 NULL
++disable_so_ax25_uid_ioctl_fndecl_9367 ax25_uid_ioctl fndecl 0 9367 NULL
++disable_so_last_rebuild_jiffies_inet_frags_9369 last_rebuild_jiffies inet_frags 0 9369 NULL
++disable_so_hash_ipportnet6_expire_fndecl_9373 hash_ipportnet6_expire fndecl 4 9373 NULL
++disable_so_uuid_count_mgmt_cp_start_service_discovery_9374 uuid_count mgmt_cp_start_service_discovery 0 9374 NULL
++disable_so_ixgbe_set_vf_mac_addr_fndecl_9376 ixgbe_set_vf_mac_addr fndecl 3 9376 NULL
++disable_so_addr_dma_desc_9383 addr dma_desc 0 9383 NULL
++disable_so_ilk_get_aux_clock_divider_fndecl_9386 ilk_get_aux_clock_divider fndecl 0 9386 NULL
++disable_so_host_bfa_bsg_rport_scsi_addr_s_9387 host bfa_bsg_rport_scsi_addr_s 0 9387 NULL
++disable_so_xfs_btree_init_block_int_fndecl_9393 xfs_btree_init_block_int fndecl 3-7 9393 NULL
++disable_so_dutycycle_pwm_voltages_9394 dutycycle pwm_voltages 0 9394 NULL
++disable_so_max_timer_ms_ssb_chipcommon_9403 max_timer_ms ssb_chipcommon 0 9403 NULL
++disable_so_demod_address_jdvbt90502_config_9412 demod_address jdvbt90502_config 0 9412 NULL nohasharray
++disable_so_inet_dev_addr_type_fndecl_9412 inet_dev_addr_type fndecl 3 9412 &disable_so_demod_address_jdvbt90502_config_9412
++disable_so_bit_offset_acpi_generic_address_9413 bit_offset acpi_generic_address 0 9413 NULL
++disable_so_crypto_hash_update_fndecl_9415 crypto_hash_update fndecl 0-3 9415 NULL
++disable_so_ftdi_2232h_baud_to_divisor_fndecl_9425 ftdi_2232h_baud_to_divisor fndecl 0-1 9425 NULL
++disable_so_blk_post_runtime_resume_fndecl_9432 blk_post_runtime_resume fndecl 2 9432 NULL
++disable_so_parent_btrfs_delayed_data_ref_9437 parent btrfs_delayed_data_ref 0 9437 NULL nohasharray
++disable_so_netxen_get_interrupt_mode_fndecl_9437 netxen_get_interrupt_mode fndecl 0 9437 &disable_so_parent_btrfs_delayed_data_ref_9437
++disable_so_entry_attr_timeout_fndecl_9441 entry_attr_timeout fndecl 0 9441 NULL
++disable_so_wall_time_snsec_vsyscall_gtod_data_9445 wall_time_snsec vsyscall_gtod_data 0 9445 NULL
++disable_so_atm_get_addr_fndecl_9446 atm_get_addr fndecl 3 9446 NULL
++disable_so_address_efx_farch_register_test_9448 address efx_farch_register_test 0 9448 NULL
++disable_so_rx_errors_net_device_stats_9453 rx_errors net_device_stats 0 9453 NULL
++disable_so_crypto_sha1_update_fndecl_9455 crypto_sha1_update fndecl 3 9455 NULL
++disable_so_bm_set_drbd_bitmap_9457 bm_set drbd_bitmap 0 9457 NULL
++disable_so_mb86a16_write_fndecl_9462 mb86a16_write fndecl 3 9462 NULL
++disable_so_cycle_delay_radeon_dpm_fan_9463 cycle_delay radeon_dpm_fan 0 9463 NULL
++disable_so_value_vmx_msr_entry_9464 value vmx_msr_entry 0 9464 NULL
++disable_so_io_bitmap_b_vmcs12_9472 io_bitmap_b vmcs12 0 9472 NULL
++disable_so_brtime_id_seeprom_config_9474 brtime_id seeprom_config 0 9474 NULL
++disable_so_frequency_stv0367ter_state_9481 frequency stv0367ter_state 0 9481 NULL
++disable_so_ccp_aes_cmac_setkey_fndecl_9503 ccp_aes_cmac_setkey fndecl 0-3 9503 NULL
++disable_so_tsc_ratio_vcpu_svm_9506 tsc_ratio vcpu_svm 0 9506 NULL
++disable_so_crypto_cts_setkey_fndecl_9507 crypto_cts_setkey fndecl 0-3 9507 NULL
++disable_so_clock_t_to_compat_clock_t_fndecl_9510 clock_t_to_compat_clock_t fndecl 1-0 9510 NULL
++disable_so_xcan_err_interrupt_fndecl_9511 xcan_err_interrupt fndecl 2 9511 NULL nohasharray
++disable_so_gru_start_paddr_vardecl_x2apic_uv_x_c_9511 gru_start_paddr vardecl_x2apic_uv_x.c 0 9511 &disable_so_xcan_err_interrupt_fndecl_9511
++disable_so_nilfs_btree_check_delete_fndecl_9514 nilfs_btree_check_delete fndecl 0 9514 NULL
++disable_so_debug_dma_sync_single_for_device_fndecl_9517 debug_dma_sync_single_for_device fndecl 3-2 9517 NULL
++disable_so_single_bit_error_correct_fndecl_9520 single_bit_error_correct fndecl 4 9520 NULL
++disable_so_data_busaddr_ips_scb_9530 data_busaddr ips_scb 0 9530 NULL
++disable_so_diversity_delay_dib8000_config_9533 diversity_delay dib8000_config 0 9533 NULL
++disable_so_ems_usb_set_bittiming_fndecl_9537 ems_usb_set_bittiming fndecl 0 9537 NULL
++disable_so_port_update_gid_work_9549 port update_gid_work 0 9549 NULL
++disable_so_cryptomgr_schedule_test_fndecl_9550 cryptomgr_schedule_test fndecl 0 9550 NULL
++disable_so_hpd_eop_gpu_addr_radeon_mec_9554 hpd_eop_gpu_addr radeon_mec 0 9554 NULL
++disable_so_cluster_slot_bitmap_9571 cluster_slot bitmap 0 9571 NULL
++disable_so_address_space_cmos_rtc_board_info_9586 address_space cmos_rtc_board_info 0 9586 NULL
++disable_so_regcache_rbtree_set_register_fndecl_9588 regcache_rbtree_set_register fndecl 3-4 9588 NULL
++disable_so_gen8_xcs_signal_fndecl_9591 gen8_xcs_signal fndecl 0-2 9591 NULL
++disable_so_time_stamp_il_tx_queue_9592 time_stamp il_tx_queue 0 9592 NULL
++disable_so_first_dev_address_fndecl_9599 first_dev_address fndecl 0-1 9599 NULL
++disable_so_lpfc_max_scsicmpl_time_show_fndecl_9604 lpfc_max_scsicmpl_time_show fndecl 0 9604 NULL
++disable_so_efx_ef10_get_sysclk_freq_fndecl_9605 efx_ef10_get_sysclk_freq fndecl 0 9605 NULL
++disable_so_utime_signal_struct_9619 utime signal_struct 0 9619 NULL nohasharray
++disable_so_connected_time_station_info_9619 connected_time station_info 0 9619 &disable_so_utime_signal_struct_9619
++disable_so_elapsed_time_f2fs_checkpoint_9631 elapsed_time f2fs_checkpoint 0 9631 NULL
++disable_so_read_addr_qla8044_minidump_entry_pollrd_9634 read_addr qla8044_minidump_entry_pollrd 0 9634 NULL
++disable_so_time_stamp_sec_TAG_TW_Event_9639 time_stamp_sec TAG_TW_Event 0 9639 NULL
++disable_so_blk_pre_runtime_suspend_fndecl_9640 blk_pre_runtime_suspend fndecl 0 9640 NULL
++disable_so_ds_divider_index_sumo_pl_9644 ds_divider_index sumo_pl 0 9644 NULL
++disable_so_out_of_line_wait_on_bit_timeout_fndecl_9648 out_of_line_wait_on_bit_timeout fndecl 5-0 9648 NULL
++disable_so_sys_getuid16_fndecl_9653 sys_getuid16 fndecl 0 9653 NULL
++disable_so_smc_interrupt_fndecl_9659 smc_interrupt fndecl 1 9659 NULL
++disable_so_pld_clock_kempld_device_data_9670 pld_clock kempld_device_data 0 9670 NULL
++disable_so_hello_time_show_fndecl_9675 hello_time_show fndecl 0 9675 NULL
++disable_so_paddr_tsq_info_9680 paddr tsq_info 0 9680 NULL
++disable_so_fifo_addr_fwnet_packet_task_9682 fifo_addr fwnet_packet_task 0 9682 NULL
++disable_so_uaddr_ivtv_dma_page_info_9683 uaddr ivtv_dma_page_info 0 9683 NULL
++disable_so_lp872x_regulator_enable_time_fndecl_9684 lp872x_regulator_enable_time fndecl 0 9684 NULL
++disable_so_r67_val_fc2580_freq_regs_9685 r67_val fc2580_freq_regs 0 9685 NULL
++disable_so_mclk_freq_rj54n1_pdata_9727 mclk_freq rj54n1_pdata 0 9727 NULL
++disable_so_qdelay_pie_vars_9735 qdelay pie_vars 0 9735 NULL
++disable_so_uncore_msr_fixed_ctl_fndecl_9740 uncore_msr_fixed_ctl fndecl 0 9740 NULL
++disable_so_ifa_preferred_lft_in_ifaddr_9744 ifa_preferred_lft in_ifaddr 0 9744 NULL
++disable_so_cpuid_device_create_fndecl_9746 cpuid_device_create fndecl 1 9746 NULL
++disable_so_musb_write_rxhubaddr_fndecl_9750 musb_write_rxhubaddr fndecl 2-3 9750 NULL
++disable_so_moddelay_soundfont_voice_parm_9752 moddelay soundfont_voice_parm 0 9752 NULL
++disable_so_uwb_rc_mac_addr_setup_fndecl_9754 uwb_rc_mac_addr_setup fndecl 0 9754 NULL
++disable_so_kv_convert_2bit_index_to_voltage_fndecl_9759 kv_convert_2bit_index_to_voltage fndecl 0-2 9759 NULL
++disable_so_timeout_interval_bau_control_9762 timeout_interval bau_control 0 9762 NULL
++disable_so_acpi_ut_check_address_range_fndecl_9782 acpi_ut_check_address_range fndecl 1-2-3 9782 NULL
++disable_so_signal_rtl8187_priv_9785 signal rtl8187_priv 0 9785 NULL
++disable_so_usb__coeff_div_9793 usb _coeff_div 0 9793 NULL
++disable_so_dspaddr_offset_intel_crtc_9795 dspaddr_offset intel_crtc 0 9795 NULL
++disable_so_demod_address_mt352_config_9806 demod_address mt352_config 0 9806 NULL
++disable_so_ntfs_bitmap_set_bits_in_run_fndecl_9807 ntfs_bitmap_set_bits_in_run fndecl 2-3 9807 NULL
++disable_so_vaddr_ioctl_gntdev_get_offset_for_vaddr_9810 vaddr ioctl_gntdev_get_offset_for_vaddr 0 9810 NULL
++disable_so_mtime_fuse_setattr_in_9811 mtime fuse_setattr_in 0 9811 NULL nohasharray
++disable_so_r10_pt_regs_9811 r10 pt_regs 0 9811 &disable_so_mtime_fuse_setattr_in_9811
++disable_so_ath6kl_wmi_bmisstime_cmd_fndecl_9818 ath6kl_wmi_bmisstime_cmd fndecl 2-0 9818 NULL
++disable_so_addr_lp55xx_reg_9819 addr lp55xx_reg 0 9819 NULL
++disable_so_rq_pbl_addr_hi_fcoe_kwqe_conn_offload1_9838 rq_pbl_addr_hi fcoe_kwqe_conn_offload1 0 9838 NULL
++disable_so___bitmap_shift_right_fndecl_9852 __bitmap_shift_right fndecl 3-4 9852 NULL
++disable_so_set_ramp_delay_regulator_ops_9853 set_ramp_delay regulator_ops 0 9853 NULL
++disable_so_delay_qla8044_reset_entry_hdr_9861 delay qla8044_reset_entry_hdr 0 9861 NULL
++disable_so_dn_nl_dump_ifaddr_fndecl_9864 dn_nl_dump_ifaddr fndecl 0 9864 NULL
++disable_so_cryptd_blkcipher_decrypt_enqueue_fndecl_9865 cryptd_blkcipher_decrypt_enqueue fndecl 0 9865 NULL
++disable_so_dma_addr_vnic_rq_buf_9867 dma_addr vnic_rq_buf 0 9867 NULL
++disable_so_atomic_pte_lookup_fndecl_9877 atomic_pte_lookup fndecl 2 9877 NULL
++disable_so_init_freq_pt3_adap_config_9886 init_freq pt3_adap_config 0 9886 NULL nohasharray
++disable_so_tq_can_bittiming_9886 tq can_bittiming 0 9886 &disable_so_init_freq_pt3_adap_config_9886
++disable_so_base_addr_tg3_firmware_hdr_9887 base_addr tg3_firmware_hdr 0 9887 NULL
++disable_so_execaddr_object_info_9888 execaddr object_info 0 9888 NULL
++disable_so_freq_r3A_value_fndecl_9891 freq_r3A_value fndecl 0-1 9891 NULL
++disable_so_xfs_btree_shift_ptrs_fndecl_9894 xfs_btree_shift_ptrs fndecl 4 9894 NULL
++disable_so_rsp_producer_index_phy_addr_low_ql3_adapter_9895 rsp_producer_index_phy_addr_low ql3_adapter 0 9895 NULL
++disable_so_n_voltages_regulator_desc_9911 n_voltages regulator_desc 0 9911 NULL
++disable_so_reset_gid_table_fndecl_9912 reset_gid_table fndecl 2 9912 NULL
++disable_so_dentist_vco_freq_trinity_sys_info_9922 dentist_vco_freq trinity_sys_info 0 9922 NULL
++disable_so_mactime_linux_wlan_ng_cap_hdr_9926 mactime linux_wlan_ng_cap_hdr 0 9926 NULL nohasharray
++disable_so_address_hi_ht_irq_msg_9926 address_hi ht_irq_msg 0 9926 &disable_so_mactime_linux_wlan_ng_cap_hdr_9926
++disable_so_mdac_aic31xx_rate_divs_9931 mdac aic31xx_rate_divs 0 9931 NULL
++disable_so_si2168_sleep_fndecl_9938 si2168_sleep fndecl 0 9938 NULL
++disable_so_spp_assoc_id_sctp_paddrparams_9958 spp_assoc_id sctp_paddrparams 0 9958 NULL
++disable_so_skcipher_wait_for_data_fndecl_9959 skcipher_wait_for_data fndecl 0 9959 NULL
++disable_so_c_delay_target_disk_conf_9960 c_delay_target disk_conf 0 9960 NULL
++disable_so_p1div_pmu1_plltab_entry_9962 p1div pmu1_plltab_entry 0 9962 NULL
++disable_so_extract_clock_fndecl_9973 extract_clock fndecl 1-2-0 9973 NULL
++disable_so_addr_hi_rx_desc_9978 addr_hi rx_desc 0 9978 NULL
++disable_so_sin_family_sockaddr_in_9981 sin_family sockaddr_in 0 9981 NULL
++disable_so_ticks_snd_timer_user_9987 ticks snd_timer_user 0 9987 NULL
++disable_so_address_musb_9992 address musb 0 9992 NULL
++disable_so_invalidate_guid_record_fndecl_9996 invalidate_guid_record fndecl 2 9996 NULL
++disable_so_request_daddr_isci_request_10008 request_daddr isci_request 0 10008 NULL
++disable_so_addr_sec_info_di_buf_entry_10016 addr_sec_info di_buf_entry 0 10016 NULL
++disable_so_hash_netportnet4_expire_fndecl_10025 hash_netportnet4_expire fndecl 4 10025 NULL
++disable_so_hid_time_value_fndecl_10028 hid_time_value fndecl 0 10028 NULL
++disable_so_ts_jiffies_uwb_beca_e_10039 ts_jiffies uwb_beca_e 0 10039 NULL
++disable_so_hpi_sample_clock_get_source_fndecl_10048 hpi_sample_clock_get_source fndecl 1-0 10048 NULL
++disable_so_hfsplus_btree_open_fndecl_10055 hfsplus_btree_open fndecl 2 10055 NULL
++disable_so_rx_drain_timeout_msecs_vardecl_10061 rx_drain_timeout_msecs vardecl 0 10061 NULL
++disable_so_start_seq_tcp_sack_block_wire_10072 start_seq tcp_sack_block_wire 0 10072 NULL
++disable_so_sha1_mb_finup_fndecl_10074 sha1_mb_finup fndecl 0 10074 NULL
++disable_so_flow_get_skuid_fndecl_10095 flow_get_skuid fndecl 0 10095 NULL
++disable_so_i_atime_ext4_inode_10096 i_atime ext4_inode 0 10096 NULL
++disable_so_wd_timeout_iwl_txq_10106 wd_timeout iwl_txq 0 10106 NULL
++disable_so_tx_lpi_timer_ethtool_eee_10108 tx_lpi_timer ethtool_eee 0 10108 NULL
++disable_so_cpumask_clear_cpu_fndecl_10109 cpumask_clear_cpu fndecl 1 10109 NULL
++disable_so_apply_time_iwl_hs20_roc_req_10117 apply_time iwl_hs20_roc_req 0 10117 NULL
++disable_so_pos2min_hash_fndecl_10123 pos2min_hash fndecl 0-2 10123 NULL
++disable_so_mode_mask_ath_gen_timer_configuration_10124 mode_mask ath_gen_timer_configuration 0 10124 NULL
++disable_so_del_timer_sync_fndecl_10133 del_timer_sync fndecl 0 10133 NULL
++disable_so_res_toss_time_dlm_rsb_10135 res_toss_time dlm_rsb 0 10135 NULL nohasharray
++disable_so_vblank___fb_timings_10135 vblank __fb_timings 0 10135 &disable_so_res_toss_time_dlm_rsb_10135
++disable_so_phase_seg1_can_bittiming_10141 phase_seg1 can_bittiming 0 10141 NULL
++disable_so_fixed_mtrr_seg_end_range_index_fndecl_10143 fixed_mtrr_seg_end_range_index fndecl 0 10143 NULL
++disable_so_xgene_enet_set_mac_address_fndecl_10148 xgene_enet_set_mac_address fndecl 0 10148 NULL
++disable_so_rtl_rfreg_delay_fndecl_10149 rtl_rfreg_delay fndecl 3-5 10149 NULL
++disable_so_channel_of_freq_fndecl_10152 channel_of_freq fndecl 0-1 10152 NULL nohasharray
++disable_so_gpio_set_value_cansleep_fndecl_10152 gpio_set_value_cansleep fndecl 1-2 10152 &disable_so_channel_of_freq_fndecl_10152
++disable_so_em_sti_clocksource_read_fndecl_10153 em_sti_clocksource_read fndecl 0 10153 NULL
++disable_so_tc90522_sleep_fndecl_10162 tc90522_sleep fndecl 0 10162 NULL
++disable_so_discovery_timeout_mesh_path_10170 discovery_timeout mesh_path 0 10170 NULL
++disable_so_pcf8563_rtc_read_time_fndecl_10175 pcf8563_rtc_read_time fndecl 0 10175 NULL
++disable_so_ixgb_mc_addr_list_update_fndecl_10187 ixgb_mc_addr_list_update fndecl 3 10187 NULL
++disable_so_rng_gen_random_rng_tfm_10199 rng_gen_random rng_tfm 3-0 10199 NULL
++disable_so_db_rec_addr_mlx4_qp_context_10204 db_rec_addr mlx4_qp_context 0 10204 NULL nohasharray
++disable_so_sgl_pg0_addr_lo_sgl_page_pairs_10204 sgl_pg0_addr_lo sgl_page_pairs 0 10204 &disable_so_db_rec_addr_mlx4_qp_context_10204
++disable_so_pgid_coda_in_hdr_10212 pgid coda_in_hdr 0 10212 NULL
++disable_so_xfs_btree_get_numrecs_fndecl_10214 xfs_btree_get_numrecs fndecl 0 10214 NULL
++disable_so_txLifetime_ConfigRid_10224 txLifetime ConfigRid 0 10224 NULL
++disable_so_active_time_dce8_wm_params_10231 active_time dce8_wm_params 0 10231 NULL
++disable_so_spi_imx_clkdiv_1_fndecl_10237 spi_imx_clkdiv_1 fndecl 1-2 10237 NULL
++disable_so_vlv_force_gfx_clock_fndecl_10238 vlv_force_gfx_clock fndecl 0 10238 NULL
++disable_so_prism54_get_freq_fndecl_10256 prism54_get_freq fndecl 0 10256 NULL
++disable_so_ath6kl_wmi_disctimeout_cmd_fndecl_10259 ath6kl_wmi_disctimeout_cmd fndecl 2-0 10259 NULL
++disable_so_dma_addr_snd_pcm_runtime_10260 dma_addr snd_pcm_runtime 0 10260 NULL
++disable_so_p7_mt9t112_pll_divider_10261 p7 mt9t112_pll_divider 0 10261 NULL
++disable_so_start_pid_timer_list_10264 start_pid timer_list 0 10264 NULL
++disable_so_gateway_ctrl_address_wil_fw_record_gateway_data_10268 gateway_ctrl_address wil_fw_record_gateway_data 0 10268 NULL
++disable_so_btree_insert128_fndecl_10277 btree_insert128 fndecl 2-3-5 10277 NULL
++disable_so_i_dtime_ext2_inode_info_10287 i_dtime ext2_inode_info 0 10287 NULL
++disable_so_mcryptd_hash_init_fndecl_10290 mcryptd_hash_init fndecl 2 10290 NULL
++disable_so_freq_bfa_diag_ledtest_s_10293 freq bfa_diag_ledtest_s 0 10293 NULL
++disable_so_TSS_sha1_fndecl_10297 TSS_sha1 fndecl 2 10297 NULL
++disable_so_ccp_aes_cmac_init_fndecl_10298 ccp_aes_cmac_init fndecl 0 10298 NULL
++disable_so_fc_fcp_timer_set_fndecl_10312 fc_fcp_timer_set fndecl 2 10312 NULL
++disable_so_blkcipher_walk_next_fndecl_10321 blkcipher_walk_next fndecl 0 10321 NULL
++disable_so_pwm_clock_nvkm_therm_10336 pwm_clock nvkm_therm 2-0 10336 NULL nohasharray
++disable_so_ecryptfs_code_for_cipher_string_fndecl_10336 ecryptfs_code_for_cipher_string fndecl 2 10336 &disable_so_pwm_clock_nvkm_therm_10336
++disable_so_smc_wreg_amdgpu_device_10339 smc_wreg amdgpu_device 2-3 10339 NULL
++disable_so_symlink_hash_fndecl_10341 symlink_hash fndecl 1 10341 NULL
++disable_so_eax_smm_regs_10346 eax smm_regs 0 10346 NULL
++disable_so_sctp_setsockopt_nodelay_fndecl_10349 sctp_setsockopt_nodelay fndecl 0-3 10349 NULL
++disable_so_min_vdisktime_cfq_rb_root_10355 min_vdisktime cfq_rb_root 0 10355 NULL
++disable_so_address_lo_msi_msg_10356 address_lo msi_msg 0 10356 NULL
++disable_so_unmapped_addr_srp_map_state_10359 unmapped_addr srp_map_state 0 10359 NULL
++disable_so_buff_addr_ixgb_tx_desc_10366 buff_addr ixgb_tx_desc 0 10366 NULL
++disable_so_i_ctime_sysv_inode_10368 i_ctime sysv_inode 0 10368 NULL
++disable_so_avg_signal_local_info_10389 avg_signal local_info 0 10389 NULL
++disable_so_sctp_bind_addrs_to_raw_fndecl_10390 sctp_bind_addrs_to_raw fndecl 3 10390 NULL
++disable_so_xfs_btree_reada_bufs_fndecl_10403 xfs_btree_reada_bufs fndecl 2-3-4 10403 NULL
++disable_so_cx_tss_segment_16_10404 cx tss_segment_16 0 10404 NULL
++disable_so_cryptd_hash_update_enqueue_fndecl_10406 cryptd_hash_update_enqueue fndecl 0 10406 NULL
++disable_so_log2sharesize_adfs_discrecord_10408 log2sharesize adfs_discrecord 0 10408 NULL
++disable_so_eqaddr_csio_eq_params_10412 eqaddr csio_eq_params 0 10412 NULL
++disable_so_dad_probes_inet6_ifaddr_10417 dad_probes inet6_ifaddr 0 10417 NULL
++disable_so_ath5k_iowrite32_fndecl_10429 ath5k_iowrite32 fndecl 2 10429 NULL
++disable_so_timeout_proto_10448 timeout proto 0 10448 NULL
++disable_so_recycle_rx_buf_fndecl_10456 recycle_rx_buf fndecl 3 10456 NULL
++disable_so_zero_scatter_daddr_isci_request_10458 zero_scatter_daddr isci_request 0 10458 NULL nohasharray
++disable_so_cryptd_hash_digest_enqueue_fndecl_10458 cryptd_hash_digest_enqueue fndecl 0 10458 &disable_so_zero_scatter_daddr_isci_request_10458
++disable_so_snd_pcm_hw_rule_muldivk_fndecl_10469 snd_pcm_hw_rule_muldivk fndecl 0 10469 NULL
++disable_so_nilfs_btree_assign_fndecl_10473 nilfs_btree_assign fndecl 0-3 10473 NULL
++disable_so_base_addr_ce_space_unaligned_ath10k_ce_ring_10487 base_addr_ce_space_unaligned ath10k_ce_ring 0 10487 NULL
++disable_so_bch_btree_map_leaf_nodes_fndecl_10499 bch_btree_map_leaf_nodes fndecl 0 10499 NULL
++disable_so_periods_snd_pcm_oss_runtime_10500 periods snd_pcm_oss_runtime 0 10500 NULL
++disable_so_uvc_video_clock_decode_fndecl_10502 uvc_video_clock_decode fndecl 4 10502 NULL
++disable_so_t3timer_ax25_info_struct_10512 t3timer ax25_info_struct 0 10512 NULL
++disable_so_sq_page_table_addr_hi_iscsi_kwqe_conn_offload1_10520 sq_page_table_addr_hi iscsi_kwqe_conn_offload1 0 10520 NULL
++disable_so_phys_addr_nx_host_sds_ring_10525 phys_addr nx_host_sds_ring 0 10525 NULL nohasharray
++disable_so_current_pixclock_sis_video_info_10525 current_pixclock sis_video_info 0 10525 &disable_so_phys_addr_nx_host_sds_ring_10525
++disable_so_ccp_aes_crypt_fndecl_10531 ccp_aes_crypt fndecl 0 10531 NULL
++disable_so_clock_speed_MGSL_PARAMS32_10537 clock_speed MGSL_PARAMS32 0 10537 NULL
++disable_so_sense_paddr_gdth_cmndinfo_10539 sense_paddr gdth_cmndinfo 0 10539 NULL
++disable_so_lasttime_batadv_bla_claim_10544 lasttime batadv_bla_claim 0 10544 NULL
++disable_so_tv_sec_timespec_10551 tv_sec timespec 0 10551 NULL
++disable_so_cmb_tx_timer_atl1_hw_10553 cmb_tx_timer atl1_hw 0 10553 NULL nohasharray
++disable_so_bm_bit_to_page_idx_fndecl_10553 bm_bit_to_page_idx fndecl 0-2 10553 &disable_so_cmb_tx_timer_atl1_hw_10553
++disable_so_xfs_btree_read_buf_block_fndecl_10555 xfs_btree_read_buf_block fndecl 0 10555 NULL
++disable_so_hash_dx_hash_info_10563 hash dx_hash_info 0 10563 NULL
++disable_so_be16_to_cpu_n_fndecl_10566 be16_to_cpu_n fndecl 3 10566 NULL nohasharray
++disable_so_ip_vs_bind_scheduler_fndecl_10566 ip_vs_bind_scheduler fndecl 0 10566 &disable_so_be16_to_cpu_n_fndecl_10566
++disable_so_di_ctime_gfs2_dinode_10570 di_ctime gfs2_dinode 0 10570 NULL
++disable_so_adjust_tsc_offset_kvm_x86_ops_10575 adjust_tsc_offset kvm_x86_ops 2 10575 NULL
++disable_so_num_timeout_request_sock_10577 num_timeout request_sock 0 10577 NULL
++disable_so___const_udelay_fndecl_10578 __const_udelay fndecl 1 10578 NULL
++disable_so_wsm_ba_timeout_indication_fndecl_10580 wsm_ba_timeout_indication fndecl 0 10580 NULL
++disable_so_tsc_connect_fndecl_10581 tsc_connect fndecl 0 10581 NULL
++disable_so_recover_ata_timing_10582 recover ata_timing 0 10582 NULL
++disable_so_addr_sch56xx_watchdog_data_10589 addr sch56xx_watchdog_data 0 10589 NULL
++disable_so_phys_proc_id_cpuinfo_x86_10590 phys_proc_id cpuinfo_x86 0 10590 NULL
++disable_so_gtime_signal_struct_10597 gtime signal_struct 0 10597 NULL
++disable_so_clk_radeon_clock_voltage_dependency_entry_10605 clk radeon_clock_voltage_dependency_entry 0 10605 NULL
++disable_so___oprofile_hrtimer_stop_fndecl_10609 __oprofile_hrtimer_stop fndecl 1 10609 NULL
++disable_so_psched_get_time_fndecl_10619 psched_get_time fndecl 0 10619 NULL
++disable_so_min_sleep_time_f2fs_gc_kthread_10623 min_sleep_time f2fs_gc_kthread 0 10623 NULL
++disable_so_runtime_cfs_bandwidth_10624 runtime cfs_bandwidth 0 10624 NULL
++disable_so_parse_timing_property_fndecl_10626 parse_timing_property fndecl 0 10626 NULL
++disable_so_scan_bitmap_block_fndecl_10627 scan_bitmap_block fndecl 0-2-4-6 10627 NULL
++disable_so_e1000e_pm_runtime_resume_fndecl_10638 e1000e_pm_runtime_resume fndecl 0 10638 NULL
++disable_so_spi_nor_read_dummy_cycles_fndecl_10639 spi_nor_read_dummy_cycles fndecl 0 10639 NULL nohasharray
++disable_so_sha_finish_walk_fndecl_10639 sha_finish_walk fndecl 0 10639 &disable_so_spi_nor_read_dummy_cycles_fndecl_10639
++disable_so_address_gsm_mux_10640 address gsm_mux 0 10640 NULL
++disable_so__rtl92ee_phy_calculate_bit_shift_fndecl_10643 _rtl92ee_phy_calculate_bit_shift fndecl 0-1 10643 NULL
++disable_so_lasttime_batadv_bla_backbone_gw_10651 lasttime batadv_bla_backbone_gw 0 10651 NULL
++disable_so_addr___crb_10654 addr __crb 0 10654 NULL
++disable_so_stv0297_set_tv_freq_fndecl_10665 stv0297_set_tv_freq fndecl 2 10665 NULL
++disable_so_txlo_dma_addr_typhoon_10667 txlo_dma_addr typhoon 0 10667 NULL
++disable_so_ip_vs_dh_hashkey_fndecl_10670 ip_vs_dh_hashkey fndecl 1 10670 NULL
++disable_so_setup_clocks_ufs_hba_variant_ops_10681 setup_clocks ufs_hba_variant_ops 0 10681 NULL
++disable_so_decode_attr_time_access_fndecl_10682 decode_attr_time_access fndecl 0 10682 NULL
++disable_so_pci_back_from_sleep_fndecl_10685 pci_back_from_sleep fndecl 0 10685 NULL
++disable_so_ath9k_hw_init_macaddr_fndecl_10686 ath9k_hw_init_macaddr fndecl 0 10686 NULL nohasharray
++disable_so_dma_buffer_atmel_runtime_data_10686 dma_buffer atmel_runtime_data 0 10686 &disable_so_ath9k_hw_init_macaddr_fndecl_10686
++disable_so_timer_resolution_snd_pcm_runtime_10688 timer_resolution snd_pcm_runtime 0 10688 NULL
++disable_so_snd_pcm_hw_rule_mul_fndecl_10689 snd_pcm_hw_rule_mul fndecl 0 10689 NULL
++disable_so_subdivision_snd_pcm_oss_runtime_10697 subdivision snd_pcm_oss_runtime 0 10697 NULL
++disable_so_split_huge_page_address_fndecl_10699 split_huge_page_address fndecl 2 10699 NULL
++disable_so_bound_dev_if_rdma_dev_addr_10707 bound_dev_if rdma_dev_addr 0 10707 NULL
++disable_so_gyro_3d_adjust_channel_bit_mask_fndecl_10717 gyro_3d_adjust_channel_bit_mask fndecl 3 10717 NULL
++disable_so_ahash_prepare_alg_fndecl_10721 ahash_prepare_alg fndecl 0 10721 NULL
++disable_so_st_mtime_sec_p9_stat_dotl_10725 st_mtime_sec p9_stat_dotl 0 10725 NULL
++disable_so_num_timings_display_timings_10728 num_timings display_timings 0 10728 NULL
++disable_so_clock_rq_10733 clock rq 0 10733 NULL
++disable_so_sys_signalfd_fndecl_10740 sys_signalfd fndecl 0 10740 NULL
++disable_so_last_tick_time_esas2r_adapter_10742 last_tick_time esas2r_adapter 0 10742 NULL
++disable_so_low_addr_msgbuf_buf_addr_10746 low_addr msgbuf_buf_addr 0 10746 NULL
++disable_so_mlx4_ib_invalidate_all_guid_record_fndecl_10755 mlx4_ib_invalidate_all_guid_record fndecl 2 10755 NULL
++disable_so_crypto_gcm_verify_fndecl_10762 crypto_gcm_verify fndecl 0 10762 NULL
++disable_so_devt_from_partuuid_fndecl_10763 devt_from_partuuid fndecl 0 10763 NULL nohasharray
++disable_so_demod_address_or51132_config_10763 demod_address or51132_config 0 10763 &disable_so_devt_from_partuuid_fndecl_10763
++disable_so_rv770_program_interrupt_vectors_fndecl_10768 rv770_program_interrupt_vectors fndecl 0 10768 NULL
++disable_so_i915_mutex_lock_interruptible_fndecl_10777 i915_mutex_lock_interruptible fndecl 0 10777 NULL
++disable_so_addr_il3945_tfd_tb_10790 addr il3945_tfd_tb 0 10790 NULL
++disable_so_pr_gid_elf_prpsinfo_10803 pr_gid elf_prpsinfo 0 10803 NULL
++disable_so_ism2_runtime_sc_10805 ism2 runtime_sc 0 10805 NULL
++disable_so_sumo_get_sleep_divider_id_from_clock_fndecl_10823 sumo_get_sleep_divider_id_from_clock fndecl 2-0 10823 NULL nohasharray
++disable_so_consumer_index_phys_addr_lo_megasas_init_queue_info_10823 consumer_index_phys_addr_lo megasas_init_queue_info 0 10823 &disable_so_sumo_get_sleep_divider_id_from_clock_fndecl_10823
++disable_so__mv88e6xxx_reg_write_fndecl_10825 _mv88e6xxx_reg_write fndecl 0-2-3-4 10825 NULL
++disable_so_flush_timeout_ath_chanctx_10828 flush_timeout ath_chanctx 0 10828 NULL nohasharray
++disable_so_rxaddr_starfire_rx_desc_10828 rxaddr starfire_rx_desc 0 10828 &disable_so_flush_timeout_ath_chanctx_10828 nohasharray
++disable_so_nla_get_u64_fndecl_10828 nla_get_u64 fndecl 0 10828 &disable_so_rxaddr_starfire_rx_desc_10828
++disable_so_r600_get_gpu_clock_counter_fndecl_10836 r600_get_gpu_clock_counter fndecl 0 10836 NULL
++disable_so_sys_timer_settime_fndecl_10837 sys_timer_settime fndecl 1 10837 NULL
++disable_so_cmp_next_hrtimer_event_fndecl_10846 cmp_next_hrtimer_event fndecl 0-1-2 10846 NULL
++disable_so_ac97_clock_via82xx_10850 ac97_clock via82xx 0 10850 NULL
++disable_so_ageing_timer_value___fdb_entry_10853 ageing_timer_value __fdb_entry 0 10853 NULL
++disable_so_dv_timings_cap_v4l2_subdev_pad_ops_10860 dv_timings_cap v4l2_subdev_pad_ops 0 10860 NULL
++disable_so_cpufreq_get_global_kobject_fndecl_10881 cpufreq_get_global_kobject fndecl 0 10881 NULL
++disable_so_freq_ath5k_rate_pcal_info_10883 freq ath5k_rate_pcal_info 0 10883 NULL
++disable_so_shm_ctime_shmid64_ds_10884 shm_ctime shmid64_ds 0 10884 NULL nohasharray
++disable_so_mt2050_set_if_freq_fndecl_10884 mt2050_set_if_freq fndecl 2 10884 &disable_so_shm_ctime_shmid64_ds_10884
++disable_so_d_itimer_xfs_disk_dquot_10893 d_itimer xfs_disk_dquot 0 10893 NULL nohasharray
++disable_so_saddr_irda_sock_10893 saddr irda_sock 0 10893 &disable_so_d_itimer_xfs_disk_dquot_10893
++disable_so_doorbell_preserve_vardecl_pcc_cpufreq_c_10898 doorbell_preserve vardecl_pcc-cpufreq.c 0 10898 NULL
++disable_so_signal_nr_nvkm_perfdom_10899 signal_nr nvkm_perfdom 0 10899 NULL
++disable_so_cg_spll_func_cntl_2_ni_clock_registers_10900 cg_spll_func_cntl_2 ni_clock_registers 0 10900 NULL
++disable_so_ac_utime_acct_v3_10901 ac_utime acct_v3 0 10901 NULL
++disable_so_mclk_prediv_cs42l56_private_10907 mclk_prediv cs42l56_private 0 10907 NULL
++disable_so_SYSC_mq_timedreceive_fndecl_10921 SYSC_mq_timedreceive fndecl 1-3 10921 NULL
++disable_so_vpm_write_address_fndecl_10930 vpm_write_address fndecl 2 10930 NULL
++disable_so_i_iw_freq_10939 i iw_freq 0 10939 NULL nohasharray
++disable_so_ia32_tsc_adjust_msr_kvm_vcpu_arch_10939 ia32_tsc_adjust_msr kvm_vcpu_arch 0 10939 &disable_so_i_iw_freq_10939
++disable_so_rv3029c2_i2c_read_time_fndecl_10942 rv3029c2_i2c_read_time fndecl 0 10942 NULL nohasharray
++disable_so_txok_interrupt_mask_ath_hw_10942 txok_interrupt_mask ath_hw 0 10942 &disable_so_rv3029c2_i2c_read_time_fndecl_10942
++disable_so_err_time_ip6_tnl_10945 err_time ip6_tnl 0 10945 NULL
++disable_so_free_nodes_hfs_btree_10954 free_nodes hfs_btree 0 10954 NULL
++disable_so_dwell_time_delta_per_probe_conf_sched_scan_settings_10955 dwell_time_delta_per_probe conf_sched_scan_settings 0 10955 NULL
++disable_so_blkcipher_walk_virt_block_fndecl_10958 blkcipher_walk_virt_block fndecl 0-3 10958 NULL
++disable_so_bnx2x_change_mac_addr_fndecl_10964 bnx2x_change_mac_addr fndecl 0 10964 NULL
++disable_so_sh_tmu_clocksource_enable_fndecl_10968 sh_tmu_clocksource_enable fndecl 0 10968 NULL
++disable_so_pdiv_b43_phy_lp_10974 pdiv b43_phy_lp 0 10974 NULL
++disable_so_br2684_mac_addr_fndecl_10977 br2684_mac_addr fndecl 0 10977 NULL
++disable_so___hrtimer_init_fndecl_10979 __hrtimer_init fndecl 2 10979 NULL
++disable_so_cisco_timer_fndecl_10984 cisco_timer fndecl 1 10984 NULL
++disable_so_desc_address_fndecl_10998 desc_address fndecl 2-3 10998 NULL
++disable_so_padlock_sha256_update_nano_fndecl_11008 padlock_sha256_update_nano fndecl 3 11008 NULL
++disable_so_end_addr_gen_pool_chunk_11013 end_addr gen_pool_chunk 0 11013 NULL
++disable_so_bitmap_file_set_bit_fndecl_11015 bitmap_file_set_bit fndecl 2 11015 NULL
++disable_so_em28xx_write_reg_fndecl_11020 em28xx_write_reg fndecl 2-0-3 11020 NULL
++disable_so_ocfs2_info_freefrag_scan_bitmap_fndecl_11032 ocfs2_info_freefrag_scan_bitmap fndecl 0-3 11032 NULL
++disable_so_xen_teardown_timer_fndecl_11036 xen_teardown_timer fndecl 1 11036 NULL
++disable_so_get_physaddr_fm_api_fndecl_11037 get_physaddr_fm_api fndecl 0 11037 NULL
++disable_so_nfs_direct_read_schedule_iovec_fndecl_11039 nfs_direct_read_schedule_iovec fndecl 0-3 11039 NULL
++disable_so_ocfs2_group_bitmap_size_fndecl_11043 ocfs2_group_bitmap_size fndecl 0 11043 NULL
++disable_so_hsw_pcm_runtime_suspend_fndecl_11046 hsw_pcm_runtime_suspend fndecl 0 11046 NULL
++disable_so_bi_start_gfs2_bitmap_11049 bi_start gfs2_bitmap 0 11049 NULL
++disable_so_src_addr_hi_dmae_command_11052 src_addr_hi dmae_command 0 11052 NULL
++disable_so_lsb_bna_dma_addr_11059 lsb bna_dma_addr 0 11059 NULL
++disable_so_cb_s5p_jpeg_addr_11062 cb s5p_jpeg_addr 0 11062 NULL
++disable_so_plink_timeout_sta_info_11094 plink_timeout sta_info 0 11094 NULL
++disable_so_crypto_blkcipher_set_iv_fndecl_11098 crypto_blkcipher_set_iv fndecl 3 11098 NULL
++disable_so_custom_divisor_mxser_port_11109 custom_divisor mxser_port 0 11109 NULL
++disable_so_raw_cell_paddr_idt77252_dev_11112 raw_cell_paddr idt77252_dev 0 11112 NULL
++disable_so_acpi_lpss_runtime_suspend_fndecl_11116 acpi_lpss_runtime_suspend fndecl 0 11116 NULL nohasharray
++disable_so_addr_creg_cmd_11116 addr creg_cmd 0 11116 &disable_so_acpi_lpss_runtime_suspend_fndecl_11116
++disable_so_dev_type_rdma_dev_addr_11123 dev_type rdma_dev_addr 0 11123 NULL
++disable_so_signal_hermes_rx_descriptor_11147 signal hermes_rx_descriptor 0 11147 NULL
++disable_so_phys_addr_nx_host_rds_ring_11168 phys_addr nx_host_rds_ring 0 11168 NULL
++disable_so_addr1_de_desc_11170 addr1 de_desc 0 11170 NULL nohasharray
++disable_so_ci_populate_mc_reg_addresses_fndecl_11170 ci_populate_mc_reg_addresses fndecl 0 11170 &disable_so_addr1_de_desc_11170
++disable_so_addr__ioeventfd_11180 addr _ioeventfd 0 11180 NULL
++disable_so_vx_change_frequency_fndecl_11184 vx_change_frequency fndecl 0 11184 NULL
++disable_so_unbind_from_irq_fndecl_11196 unbind_from_irq fndecl 1 11196 NULL
++disable_so_wext_cipher2level_fndecl_11197 wext_cipher2level fndecl 1 11197 NULL
++disable_so_demod_address_cx24117_priv_11199 demod_address cx24117_priv 0 11199 NULL
++disable_so_local_pkt_addr_dle_11206 local_pkt_addr dle 0 11206 NULL
++disable_so_timewarn_cs_write_fndecl_11208 timewarn_cs_write fndecl 3-0 11208 NULL nohasharray
++disable_so_prescale__pll_div_11208 prescale _pll_div 0 11208 &disable_so_timewarn_cs_write_fndecl_11208
++disable_so_i2400m_read_mac_addr_fndecl_11209 i2400m_read_mac_addr fndecl 0 11209 NULL
++disable_so__drbd_bm_find_next_zero_fndecl_11228 _drbd_bm_find_next_zero fndecl 0-2 11228 NULL
++disable_so_printfbuf_aac_init_11236 printfbuf aac_init 0 11236 NULL nohasharray
++disable_so_crypto_ablkcipher_ctxsize_fndecl_11236 crypto_ablkcipher_ctxsize fndecl 0 11236 &disable_so_printfbuf_aac_init_11236
++disable_so_k__pll_div_11239 k _pll_div 0 11239 NULL
++disable_so_qdiv_ratio_skl_wrpll_params_11242 qdiv_ratio skl_wrpll_params 0 11242 NULL
++disable_so_dma_addr___vxge_hw_fifo_txdl_priv_11244 dma_addr __vxge_hw_fifo_txdl_priv 0 11244 NULL
++disable_so_urandom_read_fndecl_11245 urandom_read fndecl 0-3 11245 NULL
++disable_so_crypto_notify_fndecl_11249 crypto_notify fndecl 1 11249 NULL
++disable_so_sd_gid_stat_data_v1_11250 sd_gid stat_data_v1 0 11250 NULL
++disable_so_xlog_find_cycle_start_fndecl_11263 xlog_find_cycle_start fndecl 0-3 11263 NULL
++disable_so_unbind_from_irqhandler_fndecl_11274 unbind_from_irqhandler fndecl 1 11274 NULL
++disable_so_ref_divider_panel_info_11279 ref_divider panel_info 0 11279 NULL nohasharray
++disable_so_nfs_wait_bit_killable_fndecl_11279 nfs_wait_bit_killable fndecl 0 11279 &disable_so_ref_divider_panel_info_11279
++disable_so_freq_p54_scan_head_11280 freq p54_scan_head 0 11280 NULL
++disable_so_it_overrun_k_itimer_11284 it_overrun k_itimer 0 11284 NULL
++disable_so_txbd_addr_lo_host_cmd_ds_pcie_details_11288 txbd_addr_lo host_cmd_ds_pcie_details 0 11288 NULL
++disable_so_calc_baud_divisor_fndecl_11290 calc_baud_divisor fndecl 0-1 11290 NULL
++disable_so_hash_net6_expire_fndecl_11296 hash_net6_expire fndecl 4 11296 NULL
++disable_so_ax25_addr_build_fndecl_11299 ax25_addr_build fndecl 0 11299 NULL
++disable_so_vnic_dev_del_addr_fndecl_11303 vnic_dev_del_addr fndecl 0 11303 NULL
++disable_so_wrmsrl_safe_fndecl_11305 wrmsrl_safe fndecl 0-2 11305 NULL
++disable_so_jiffies_last_vardecl_intel_powerclamp_c_11307 jiffies_last vardecl_intel_powerclamp.c 0 11307 NULL
++disable_so_mmc_select_timing_fndecl_11311 mmc_select_timing fndecl 0 11311 NULL
++disable_so_crypto_cbc_encrypt_inplace_fndecl_11315 crypto_cbc_encrypt_inplace fndecl 0 11315 NULL
++disable_so_cma_translate_addr_fndecl_11326 cma_translate_addr fndecl 0 11326 NULL
++disable_so_period_bytes_snd_pcm_oss_runtime_11332 period_bytes snd_pcm_oss_runtime 0 11332 NULL
++disable_so_board_addr_ath6kl_hw_11334 board_addr ath6kl_hw 0 11334 NULL
++disable_so_shash_ahash_mcryptd_digest_fndecl_11335 shash_ahash_mcryptd_digest fndecl 0 11335 NULL
++disable_so_crypto_gcm_encrypt_fndecl_11338 crypto_gcm_encrypt fndecl 0 11338 NULL
++disable_so_btrfs_wq_run_delayed_node_fndecl_11342 btrfs_wq_run_delayed_node fndecl 0 11342 NULL
++disable_so_pch_udc_ep_bit_clr_fndecl_11345 pch_udc_ep_bit_clr fndecl 3 11345 NULL nohasharray
++enable_so_rcv_tsecr_tcp_options_received_11345 rcv_tsecr tcp_options_received 0 11345 &disable_so_pch_udc_ep_bit_clr_fndecl_11345
++disable_so_bin_uuid_fndecl_11348 bin_uuid fndecl 3-0 11348 NULL
++disable_so_offset_to_bitmap_fndecl_11359 offset_to_bitmap fndecl 0-2 11359 NULL
++disable_so_default_tv_freq_vardecl_pvrusb2_hdw_c_11362 default_tv_freq vardecl_pvrusb2-hdw.c 0 11362 NULL
++disable_so_SiS_SetReg_fndecl_11366 SiS_SetReg fndecl 1-3 11366 NULL
++disable_so_sec_btrfs_ioctl_timespec_11375 sec btrfs_ioctl_timespec 0 11375 NULL
++disable_so_dn_nl_newaddr_fndecl_11380 dn_nl_newaddr fndecl 0 11380 NULL
++disable_so_DAC1064_calcclock_fndecl_11385 DAC1064_calcclock fndecl 1-2 11385 NULL
++disable_so_trinity_set_divider_value_fndecl_11387 trinity_set_divider_value fndecl 3 11387 NULL
++disable_so_ac_utime_taskstats_11391 ac_utime taskstats 0 11391 NULL nohasharray
++disable_so_zd_iowrite32_locked_fndecl_11391 zd_iowrite32_locked fndecl 0-2 11391 &disable_so_ac_utime_taskstats_11391
++disable_so_crypto_rfc4309_setkey_fndecl_11398 crypto_rfc4309_setkey fndecl 0-3 11398 NULL
++disable_so_lvb_igid_ocfs2_meta_lvb_11400 lvb_igid ocfs2_meta_lvb 0 11400 NULL nohasharray
++disable_so_buffer_list_dma_addr_mgsl_struct_11400 buffer_list_dma_addr mgsl_struct 0 11400 &disable_so_lvb_igid_ocfs2_meta_lvb_11400
++disable_so_si_pmu_fast_pwrup_delay_fndecl_11409 si_pmu_fast_pwrup_delay fndecl 0 11409 NULL
++disable_so_tps6586x_rtc_read_time_fndecl_11415 tps6586x_rtc_read_time fndecl 0 11415 NULL
++disable_so_hash_rem_ccp_sha_req_ctx_11427 hash_rem ccp_sha_req_ctx 0 11427 NULL
++disable_so_phys_addr_udc_11429 phys_addr udc 0 11429 NULL
++disable_so_center_freq2_cfg80211_chan_def_11433 center_freq2 cfg80211_chan_def 0 11433 NULL
++disable_so_lock_btree_op_11443 lock btree_op 0 11443 NULL
++disable_so_freq_mt7601u_freq_cal_11461 freq mt7601u_freq_cal 0 11461 NULL
++disable_so_pm860x_reg_write_fndecl_11462 pm860x_reg_write fndecl 0-2-3 11462 NULL
++disable_so_crypto_hash_walk_first_fndecl_11464 crypto_hash_walk_first fndecl 0 11464 NULL
++disable_so_mlx4_ib_init_alias_guid_work_fndecl_11465 mlx4_ib_init_alias_guid_work fndecl 2 11465 NULL
++disable_so_uid_fuse_attr_11471 uid fuse_attr 0 11471 NULL nohasharray
++disable_so_l2addrsize_fndecl_11471 l2addrsize fndecl 0 11471 &disable_so_uid_fuse_attr_11471
++disable_so_snprintf_fndecl_11478 snprintf fndecl 0-2 11478 NULL
++disable_so_ath9k_hw_set_ack_timeout_fndecl_11491 ath9k_hw_set_ack_timeout fndecl 2 11491 NULL
++disable_so_eq_delay_to_mult_fndecl_11493 eq_delay_to_mult fndecl 0-1 11493 NULL
++disable_so_bit_length_acpi_object_field_common_11503 bit_length acpi_object_field_common 0 11503 NULL
++disable_so_di_mtime_qnx6_inode_entry_11506 di_mtime qnx6_inode_entry 0 11506 NULL
++disable_so_prism54_set_freq_fndecl_11509 prism54_set_freq fndecl 0 11509 NULL
++disable_so_resp_bd_list_addr_lo_bnx2i_text_request_11511 resp_bd_list_addr_lo bnx2i_text_request 0 11511 NULL
++disable_so_gid_ipc64_perm_11519 gid ipc64_perm 0 11519 NULL
++disable_so_offset_delta_bnx2x_func_set_timesync_params_11542 offset_delta bnx2x_func_set_timesync_params 0 11542 NULL
++disable_so_local_clock_us_fndecl_11549 local_clock_us fndecl 0 11549 NULL
++disable_so_seq_tnl_ptk_info_11554 seq tnl_ptk_info 0 11554 NULL
++disable_so_carl9170_set_freq_cal_data_fndecl_11578 carl9170_set_freq_cal_data fndecl 0 11578 NULL
++disable_so_pmcraid_enable_interrupts_fndecl_11580 pmcraid_enable_interrupts fndecl 2 11580 NULL nohasharray
++disable_so_get_free_region_mtrr_ops_11580 get_free_region mtrr_ops 1-2 11580 &disable_so_pmcraid_enable_interrupts_fndecl_11580
++disable_so_mclkdiv2_cs42l52_clk_para_11588 mclkdiv2 cs42l52_clk_para 0 11588 NULL
++disable_so_secid_netlbl_unlhsh_addr6_11595 secid netlbl_unlhsh_addr6 0 11595 NULL
++disable_so_opaque_hashval_fndecl_11605 opaque_hashval fndecl 2 11605 NULL
++disable_so_bcma_chipco_watchdog_get_max_timer_fndecl_11606 bcma_chipco_watchdog_get_max_timer fndecl 0 11606 NULL
++disable_so_security_settime_fndecl_11608 security_settime fndecl 0 11608 NULL
++disable_so_hash_tomoyo_path_info_11611 hash tomoyo_path_info 0 11611 NULL
++disable_so_sllc_family_sockaddr_llc_11612 sllc_family sockaddr_llc 0 11612 NULL
++disable_so_get_physaddr_from_sgc_fndecl_11613 get_physaddr_from_sgc fndecl 0 11613 NULL
++disable_so_compat_sock_get_timestampns_fndecl_11614 compat_sock_get_timestampns fndecl 0 11614 NULL
++disable_so_div2_pll_div_11630 div2 pll_div 0 11630 NULL
++disable_so_dot_gma_clock_t_11632 dot gma_clock_t 0 11632 NULL
++disable_so_addr_smsc47b397_data_11633 addr smsc47b397_data 0 11633 NULL nohasharray
++disable_so_cpufreq_power2state_fndecl_11633 cpufreq_power2state fndecl 3 11633 &disable_so_addr_smsc47b397_data_11633 nohasharray
++disable_so_cia_setkey_cipher_alg_11633 cia_setkey cipher_alg 0-3 11633 &disable_so_cpufreq_power2state_fndecl_11633
++disable_so_log2P_nvkm_pll_vals_11639 log2P nvkm_pll_vals 0 11639 NULL
++disable_so_timeout_tipc_subscription_11656 timeout tipc_subscription 0 11656 NULL
++disable_so_sem_addr_mm_dma_desc_11658 sem_addr mm_dma_desc 0 11658 NULL
++disable_so_adis16334_get_freq_fndecl_11667 adis16334_get_freq fndecl 0 11667 NULL
++disable_so_register_address_dif_settings_11668 register_address dif_settings 0 11668 NULL
++disable_so_cpufreq_p4_get_frequency_fndecl_11672 cpufreq_p4_get_frequency fndecl 0 11672 NULL
++disable_so_sysctl_tcp_keepalive_time_vardecl_11678 sysctl_tcp_keepalive_time vardecl 0 11678 NULL nohasharray
++disable_so_paddr_rsq_info_11678 paddr rsq_info 0 11678 &disable_so_sysctl_tcp_keepalive_time_vardecl_11678
++disable_so_gc_timer_show_fndecl_11691 gc_timer_show fndecl 0 11691 NULL
++disable_so_udp6_portaddr_hash_fndecl_11698 udp6_portaddr_hash fndecl 0-3 11698 NULL
++disable_so_ablkcipher_walk_done_fndecl_11708 ablkcipher_walk_done fndecl 0-3 11708 NULL
++disable_so_ahci_exec_polled_cmd_fndecl_11713 ahci_exec_polled_cmd fndecl 6-2-5 11713 NULL
++disable_so_fb_addr_drm_via_dmablit_11717 fb_addr drm_via_dmablit 0 11717 NULL
++disable_so_pci_bus_cx23885_dev_11720 pci_bus cx23885_dev 0 11720 NULL
++disable_so_spacing_v4l2_hw_freq_seek_11726 spacing v4l2_hw_freq_seek 0 11726 NULL
++disable_so_ncp_obtain_mtime_fndecl_11732 ncp_obtain_mtime fndecl 0 11732 NULL
++disable_so_timer_index_at_state_t_11751 timer_index at_state_t 0 11751 NULL nohasharray
++disable_so_sctp_copy_laddrs_fndecl_11751 sctp_copy_laddrs fndecl 2-4 11751 &disable_so_timer_index_at_state_t_11751
++disable_so_max_freq_omap_hsmmc_platform_data_11755 max_freq omap_hsmmc_platform_data 0 11755 NULL nohasharray
++disable_so_tcp_md5_do_add_fndecl_11755 tcp_md5_do_add fndecl 5-6 11755 &disable_so_max_freq_omap_hsmmc_platform_data_11755
++disable_so_iio_interrupt_trigger_driver_init_fndecl_11758 iio_interrupt_trigger_driver_init fndecl 0 11758 NULL nohasharray
++disable_so_iwl_dbgfs_sleep_level_override_write_fndecl_11758 iwl_dbgfs_sleep_level_override_write fndecl 0-3 11758 &disable_so_iio_interrupt_trigger_driver_init_fndecl_11758
++disable_so_ps_upsd_timeouts_read_fndecl_11759 ps_upsd_timeouts_read fndecl 3-0 11759 NULL nohasharray
++disable_so_bus_frequency_vardecl_i2c_kempld_c_11759 bus_frequency vardecl_i2c-kempld.c 0 11759 &disable_so_ps_upsd_timeouts_read_fndecl_11759
++disable_so_nm_uid_nl_mmap_hdr_11761 nm_uid nl_mmap_hdr 0 11761 NULL
++disable_so_s_wtime_ext3_super_block_11765 s_wtime ext3_super_block 0 11765 NULL
++disable_so_gr_fhash_fndecl_11768 gr_fhash fndecl 1-2 11768 NULL
++disable_so_orig_ax_pt_regs_11775 orig_ax pt_regs 0 11775 NULL
++disable_so_validate_scan_freqs_fndecl_11781 validate_scan_freqs fndecl 0 11781 NULL
++disable_so_sbq_addr_cqicb_11782 sbq_addr cqicb 0 11782 NULL nohasharray
++disable_so_irq_i2c_client_11782 irq i2c_client 0 11782 &disable_so_sbq_addr_cqicb_11782
++disable_so_ip_addr_rocker_neigh_tbl_entry_11785 ip_addr rocker_neigh_tbl_entry 0 11785 NULL
++disable_so_timestamp_mwifiex_bssdescriptor_11788 timestamp mwifiex_bssdescriptor 0 11788 NULL
++disable_so_bg_block_bitmap_ext3_group_desc_11791 bg_block_bitmap ext3_group_desc 0 11791 NULL
++disable_so_crystal_freq_saa711x_state_11797 crystal_freq saa711x_state 0 11797 NULL
++disable_so_dqb_itime_mem_dqblk_11799 dqb_itime mem_dqblk 0 11799 NULL nohasharray
++disable_so_get_journal_hash_dev_fndecl_11799 get_journal_hash_dev fndecl 3 11799 &disable_so_dqb_itime_mem_dqblk_11799
++disable_so_addr_domain_fndecl_11807 addr_domain fndecl 2 11807 NULL
++disable_so_get_time_window_fndecl_11808 get_time_window fndecl 0 11808 NULL
++disable_so_chargetime_isdn_net_local_s_11812 chargetime isdn_net_local_s 0 11812 NULL
++disable_so_sched_clock_local_fndecl_11817 sched_clock_local fndecl 0 11817 NULL
++disable_so_address_ehci_iso_stream_11822 address ehci_iso_stream 0 11822 NULL
++disable_so_simple_strtoul_fndecl_11835 simple_strtoul fndecl 0 11835 NULL
++disable_so_i9xx_get_aux_clock_divider_fndecl_11841 i9xx_get_aux_clock_divider fndecl 0 11841 NULL
++disable_so_emulator_set_msr_fndecl_11853 emulator_set_msr fndecl 3 11853 NULL
++disable_so_sst_module_runtime_alloc_blocks_fndecl_11854 sst_module_runtime_alloc_blocks fndecl 2-0 11854 NULL
++disable_so_msr_sum_desc_11862 msr sum_desc 0 11862 NULL
++disable_so_rs780_set_engine_clock_scaling_fndecl_11864 rs780_set_engine_clock_scaling fndecl 0 11864 NULL
++disable_so_write_file_regidx_fndecl_11870 write_file_regidx fndecl 3 11870 NULL
++disable_so_task_sched_runtime_fndecl_11884 task_sched_runtime fndecl 0 11884 NULL
++disable_so_hash_dst_fndecl_11898 hash_dst fndecl 0 11898 NULL
++disable_so_xtal_cap10p_r820t_freq_range_11904 xtal_cap10p r820t_freq_range 0 11904 NULL
++disable_so_ath6kl_cfg80211_deepsleep_resume_fndecl_11915 ath6kl_cfg80211_deepsleep_resume fndecl 0 11915 NULL
++disable_so_count_qce_sha_reqctx_11921 count qce_sha_reqctx 0 11921 NULL
++disable_so_hashlimit_mt_init_fndecl_11925 hashlimit_mt_init fndecl 0 11925 NULL
++disable_so_time_remaining_msec_TAG_TW_Lock_11931 time_remaining_msec TAG_TW_Lock 0 11931 NULL
++disable_so_extcpu_mce_11945 extcpu mce 0 11945 NULL
++disable_so_hci_bdaddr_list_add_fndecl_11954 hci_bdaddr_list_add fndecl 0 11954 NULL
++disable_so_task_list_pbl_addr_hi_fcoe_kwqe_init1_11965 task_list_pbl_addr_hi fcoe_kwqe_init1 0 11965 NULL
++disable_so_time_blocked_kvm_spinlock_stats_11970 time_blocked kvm_spinlock_stats 0 11970 NULL
++disable_so_mapaddr_c2_element_11974 mapaddr c2_element 0 11974 NULL
++disable_so_uwb_rc_mac_addr_show_fndecl_11979 uwb_rc_mac_addr_show fndecl 0 11979 NULL
++disable_so_ccp_run_rsa_cmd_fndecl_11983 ccp_run_rsa_cmd fndecl 0 11983 NULL
++disable_so_cc770_rtr_interrupt_fndecl_11989 cc770_rtr_interrupt fndecl 2 11989 NULL
++disable_so_bitmap_create_fndecl_12000 bitmap_create fndecl 2 12000 NULL
++disable_so_maximum_acpi_address64_attribute_12007 maximum acpi_address64_attribute 0 12007 NULL
++disable_so_i2c_addr_stv090x_internal_12008 i2c_addr stv090x_internal 0 12008 NULL
++disable_so_s_time_ptc_stats_12018 s_time ptc_stats 0 12018 NULL
++disable_so_disc_timeout_hci_conn_12021 disc_timeout hci_conn 0 12021 NULL
++disable_so_proc_dointvec_jiffies_fndecl_12024 proc_dointvec_jiffies fndecl 0 12024 NULL
++disable_so_wm8350_wdt_set_timeout_fndecl_12039 wm8350_wdt_set_timeout fndecl 2-0 12039 NULL
++disable_so_sys_geteuid16_fndecl_12045 sys_geteuid16 fndecl 0 12045 NULL
++disable_so_parse_strtoull_fndecl_12065 parse_strtoull fndecl 0 12065 NULL
++disable_so_bp_index_nilfs_btree_path_12067 bp_index nilfs_btree_path 0 12067 NULL
++disable_so_max_signal_ieee80211_hw_12078 max_signal ieee80211_hw 0 12078 NULL
++disable_so_rx_timeout_vardecl_men_z135_uart_c_12080 rx_timeout vardecl_men_z135_uart.c 0 12080 NULL
++disable_so_sws_timer_config_nes_adapter_12081 sws_timer_config nes_adapter 0 12081 NULL
++disable_so_ic_myaddr_vardecl_12088 ic_myaddr vardecl 0 12088 NULL
++disable_so_bitmap_ord_to_pos_fndecl_12108 bitmap_ord_to_pos fndecl 3-0 12108 NULL
++disable_so_debounce_jiffies_lp8727_chg_12115 debounce_jiffies lp8727_chg 0 12115 NULL
++disable_so_hashval1_2_rx_pkt_hdr1_12125 hashval1_2 rx_pkt_hdr1 0 12125 NULL
++disable_so_acpi_ut_divide_fndecl_12126 acpi_ut_divide fndecl 0-1-2 12126 NULL
++disable_so_irst_store_wakeup_time_fndecl_12127 irst_store_wakeup_time fndecl 0-4 12127 NULL
++disable_so_xfs_bmap_btree_to_extents_fndecl_12130 xfs_bmap_btree_to_extents fndecl 0 12130 NULL
++disable_so_addrconf_notify_fndecl_12132 addrconf_notify fndecl 0 12132 NULL
++disable_so_ath5k_beacon_update_timers_fndecl_12135 ath5k_beacon_update_timers fndecl 2 12135 NULL
++disable_so_pid_pppol2tpv3in6_addr_12136 pid pppol2tpv3in6_addr 0 12136 NULL
++disable_so__abb5zes3_rtc_set_timer_fndecl_12149 _abb5zes3_rtc_set_timer fndecl 0 12149 NULL
++disable_so_remote_ca_guid_ib_cm_req_event_param_12150 remote_ca_guid ib_cm_req_event_param 0 12150 NULL
++disable_so_grcan_reset_timer_fndecl_12158 grcan_reset_timer fndecl 2 12158 NULL
++disable_so_sctp_sockaddr_af_fndecl_12166 sctp_sockaddr_af fndecl 3 12166 NULL
++disable_so_di_ctime_efs_dinode_12170 di_ctime efs_dinode 0 12170 NULL
++disable_so_bitmap_fill_fndecl_12173 bitmap_fill fndecl 2 12173 NULL
++disable_so_clock_mga_i2c_chan_12185 clock mga_i2c_chan 0 12185 NULL
++disable_so_physaddr_pau_fpdu_frag_12193 physaddr pau_fpdu_frag 0 12193 NULL
++disable_so_adm9240_write_fan_div_fndecl_12196 adm9240_write_fan_div fndecl 3-2 12196 NULL
++disable_so_addr_privcmd_mmapbatch_v2_12199 addr privcmd_mmapbatch_v2 0 12199 NULL
++disable_so_start_freq_khz_ieee80211_freq_range_12202 start_freq_khz ieee80211_freq_range 0 12202 NULL nohasharray
++disable_so_total_ablkcipher_walk_12202 total ablkcipher_walk 0 12202 &disable_so_start_freq_khz_ieee80211_freq_range_12202
++disable_so_ktime_us_delta_fndecl_12204 ktime_us_delta fndecl 0 12204 NULL
++disable_so_hmark_addr_mask_fndecl_12206 hmark_addr_mask fndecl 1 12206 NULL
++disable_so_force_addr_vardecl_i2c_viapro_c_12216 force_addr vardecl_i2c-viapro.c 0 12216 NULL nohasharray
++disable_so_next_hash_dir_private_info_12216 next_hash dir_private_info 0 12216 &disable_so_force_addr_vardecl_i2c_viapro_c_12216
++disable_so_i40e_aq_mac_address_write_fndecl_12217 i40e_aq_mac_address_write fndecl 0 12217 NULL
++disable_so_sys_set_tid_address_fndecl_12219 sys_set_tid_address fndecl 0 12219 NULL
++disable_so_ebitmap_contains_fndecl_12231 ebitmap_contains fndecl 3 12231 NULL
++disable_so_bfa_timer_begin_fndecl_12232 bfa_timer_begin fndecl 5 12232 NULL
++disable_so_sst_hsw_dsp_runtime_resume_fndecl_12234 sst_hsw_dsp_runtime_resume fndecl 0 12234 NULL
++disable_so_crypto_rfc4543_encrypt_fndecl_12243 crypto_rfc4543_encrypt fndecl 0 12243 NULL
++disable_so_addr_ib_phys_buf_12245 addr ib_phys_buf 0 12245 NULL
++disable_so_rhashtable_jhash2_fndecl_12249 rhashtable_jhash2 fndecl 0 12249 NULL
++disable_so_highbit_ebitmap_12260 highbit ebitmap 0 12260 NULL
++disable_so_btrfs_run_delayed_items_fndecl_12263 btrfs_run_delayed_items fndecl 0 12263 NULL
++disable_so_security_task_setscheduler_fndecl_12267 security_task_setscheduler fndecl 0 12267 NULL
++disable_so_sense_phys_addr_megasas_cmd_fusion_12272 sense_phys_addr megasas_cmd_fusion 0 12272 NULL
++disable_so_devid_ptp_clock_12277 devid ptp_clock 0 12277 NULL
++disable_so_pwwn_bfa_bsg_rport_scsi_addr_s_12278 pwwn bfa_bsg_rport_scsi_addr_s 0 12278 NULL nohasharray
++disable_so_ihash_entries_vardecl_inode_c_12278 ihash_entries vardecl_inode.c 0 12278 &disable_so_pwwn_bfa_bsg_rport_scsi_addr_s_12278
++disable_so_gid_ncp_mount_data_12282 gid ncp_mount_data 0 12282 NULL
++disable_so_qla2x00_zio_timer_show_fndecl_12290 qla2x00_zio_timer_show fndecl 0 12290 NULL
++disable_so_mlx4_hca_core_clock_update_fndecl_12300 mlx4_hca_core_clock_update fndecl 0 12300 NULL
++disable_so_accel_3d_adjust_channel_bit_mask_fndecl_12308 accel_3d_adjust_channel_bit_mask fndecl 3 12308 NULL
++disable_so_dtt200u_fe_sleep_fndecl_12311 dtt200u_fe_sleep fndecl 0 12311 NULL
++disable_so_asix_read_phy_addr_fndecl_12320 asix_read_phy_addr fndecl 0 12320 NULL
++disable_so_viafb_load_reg_fndecl_12323 viafb_load_reg fndecl 1 12323 NULL nohasharray
++disable_so_bm_bits_drbd_bitmap_12323 bm_bits drbd_bitmap 0 12323 &disable_so_viafb_load_reg_fndecl_12323
++disable_so_ixgbe_write_mc_addr_list_fndecl_12325 ixgbe_write_mc_addr_list fndecl 0 12325 NULL
++disable_so_gid_max_xt_owner_match_info_12332 gid_max xt_owner_match_info 0 12332 NULL
++disable_so_duty_cycle_pwm_device_12334 duty_cycle pwm_device 0 12334 NULL
++disable_so_get_nohz_timer_target_fndecl_12336 get_nohz_timer_target fndecl 0 12336 NULL
++disable_so_pte_encode_i915_address_space_12340 pte_encode i915_address_space 0-1 12340 NULL
++disable_so_mdac_aic32x4_rate_divs_12367 mdac aic32x4_rate_divs 0 12367 NULL
++disable_so_tipc_media_addr_printf_fndecl_12368 tipc_media_addr_printf fndecl 2 12368 NULL
++disable_so_i_atime_ext3_inode_12370 i_atime ext3_inode 0 12370 NULL
++disable_so_bitmap_ip_gc_test_fndecl_12372 bitmap_ip_gc_test fndecl 3 12372 NULL
++disable_so_vlv_gpu_freq_div_fndecl_12377 vlv_gpu_freq_div fndecl 0 12377 NULL nohasharray
++disable_so_nilfs_btree_get_new_block_fndecl_12377 nilfs_btree_get_new_block fndecl 0-2 12377 &disable_so_vlv_gpu_freq_div_fndecl_12377
++disable_so_schedule_hrtimeout_range_fndecl_12390 schedule_hrtimeout_range fndecl 2 12390 NULL
++disable_so_btrfs_init_delayed_node_fndecl_12401 btrfs_init_delayed_node fndecl 3 12401 NULL
++disable_so_connect_time_stamp_skd_device_12406 connect_time_stamp skd_device 0 12406 NULL
++disable_so_gcm_hash_remain_fndecl_12408 gcm_hash_remain fndecl 0-2 12408 NULL
++disable_so_kasprintf_fndecl_12414 kasprintf fndecl 1 12414 NULL
++disable_so_iTCO_wdt_set_timeout_fndecl_12423 iTCO_wdt_set_timeout fndecl 2 12423 NULL
++disable_so_queue_ixgbe_mac_addr_12436 queue ixgbe_mac_addr 0 12436 NULL
++disable_so_i_atime_extra_ext4_inode_12438 i_atime_extra ext4_inode 0 12438 NULL
++disable_so_bts_interrupt_threshold_debug_store_12439 bts_interrupt_threshold debug_store 0 12439 NULL
++disable_so_erase_delay_vardecl_nandsim_c_12453 erase_delay vardecl_nandsim.c 0 12453 NULL
++disable_so__rx_page_addr_iwl_host_cmd_12457 _rx_page_addr iwl_host_cmd 0 12457 NULL
++disable_so_fandiv1_w83627ehf_data_12459 fandiv1 w83627ehf_data 0 12459 NULL
++disable_so_affs_hash_name_fndecl_12465 affs_hash_name fndecl 0-3 12465 NULL
++disable_so_timeout_tipc_subscr_12467 timeout tipc_subscr 0 12467 NULL
++disable_so_decrypt_msdu_lib80211_crypto_ops_12475 decrypt_msdu lib80211_crypto_ops 3 12475 NULL
++disable_so_ext4_read_block_bitmap_nowait_fndecl_12477 ext4_read_block_bitmap_nowait fndecl 2 12477 NULL
++disable_so_i40e_rx_hash_fndecl_12482 i40e_rx_hash fndecl 0 12482 NULL
++disable_so_padata_set_cpumasks_fndecl_12492 padata_set_cpumasks fndecl 0 12492 NULL
++disable_so_dm_btree_empty_fndecl_12493 dm_btree_empty fndecl 0 12493 NULL
++disable_so_nv_do_interrupt_fndecl_12501 nv_do_interrupt fndecl 2 12501 NULL
++disable_so_max8997_set_voltage_buck_time_sel_fndecl_12503 max8997_set_voltage_buck_time_sel fndecl 0-2-3 12503 NULL
++disable_so_div_factor_fine_fndecl_12505 div_factor_fine fndecl 0-1 12505 NULL
++disable_so_r820t_sysfreq_sel_fndecl_12506 r820t_sysfreq_sel fndecl 0-2 12506 NULL
++disable_so_msleep_xc2028_ctrl_12512 msleep xc2028_ctrl 0 12512 NULL nohasharray
++disable_so_get_maxrecs_xfs_btree_ops_12512 get_maxrecs xfs_btree_ops 0 12512 &disable_so_msleep_xc2028_ctrl_12512
++disable_so_test_rhashtable_fndecl_12513 test_rhashtable fndecl 0 12513 NULL
++disable_so_i2c_address_mt2131_config_12514 i2c_address mt2131_config 0 12514 NULL
++disable_so_rapl_compute_time_window_core_fndecl_12519 rapl_compute_time_window_core fndecl 0-2 12519 NULL
++disable_so_mi1_wr_addr_fndecl_12527 mi1_wr_addr fndecl 0 12527 NULL nohasharray
++disable_so_write_reg_fndecl_12527 write_reg fndecl 1 12527 &disable_so_mi1_wr_addr_fndecl_12527
++disable_so_mce_adjust_timer_default_fndecl_12530 mce_adjust_timer_default fndecl 0-1 12530 NULL
++disable_so_low_bkey_12536 low bkey 0 12536 NULL
++disable_so_arcmsr_alloc_sysfs_attr_fndecl_12547 arcmsr_alloc_sysfs_attr fndecl 0 12547 NULL
++disable_so_data_qxl_bitmap_12551 data qxl_bitmap 0 12551 NULL
++disable_so_imsf_multiaddr_ip_msfilter_12556 imsf_multiaddr ip_msfilter 0 12556 NULL
++disable_so_qa_indx_sdebug_hrtimer_12577 qa_indx sdebug_hrtimer 0 12577 NULL
++disable_so_shash_compat_digest_fndecl_12579 shash_compat_digest fndecl 0-3 12579 NULL
++disable_so_max8998_rtc_set_time_fndecl_12607 max8998_rtc_set_time fndecl 0 12607 NULL
++disable_so_dib7000m_write_word_fndecl_12610 dib7000m_write_word fndecl 3 12610 NULL
++disable_so_real_start_time_task_struct_12612 real_start_time task_struct 0 12612 NULL
++disable_so_rhashtable_expand_fndecl_12634 rhashtable_expand fndecl 0 12634 NULL
++disable_so_seq_cxgbi_skb_cb_12636 seq cxgbi_skb_cb 0 12636 NULL
++disable_so_daddr_irnet_log_12640 daddr irnet_log 0 12640 NULL
++disable_so_r8a66597_clock_enable_fndecl_12645 r8a66597_clock_enable fndecl 0 12645 NULL
++disable_so_rsa_get_d_fndecl_12646 rsa_get_d fndecl 5 12646 NULL
++disable_so_compat_sys_timer_gettime_fndecl_12649 compat_sys_timer_gettime fndecl 1 12649 NULL
++disable_so_daddr_tcp4_pseudohdr_12650 daddr tcp4_pseudohdr 0 12650 NULL
++disable_so_ccp_crypto_enqueue_cmd_fndecl_12657 ccp_crypto_enqueue_cmd fndecl 0 12657 NULL
++disable_so_gm107_fan_pwm_clock_fndecl_12663 gm107_fan_pwm_clock fndecl 0 12663 NULL
++disable_so_em_sti_clock_event_next_fndecl_12667 em_sti_clock_event_next fndecl 1 12667 NULL
++disable_so___hash_conntrack_fndecl_12675 __hash_conntrack fndecl 0-3 12675 NULL
++disable_so_nr_of_adrs_cmd_ds_mac_multicast_addr_12679 nr_of_adrs cmd_ds_mac_multicast_addr 0 12679 NULL
++disable_so_mpihelp_mul_fndecl_12686 mpihelp_mul fndecl 3-5 12686 NULL
++disable_so_retry_delay_timer_fcoe_fcp_rsp_payload_12692 retry_delay_timer fcoe_fcp_rsp_payload 0 12692 NULL
++disable_so_b43_phy_write_fndecl_12694 b43_phy_write fndecl 2-3 12694 NULL
++disable_so_ageing_time_tun_struct_12716 ageing_time tun_struct 0 12716 NULL nohasharray
++disable_so_rx_delay_rk_priv_data_12716 rx_delay rk_priv_data 0 12716 &disable_so_ageing_time_tun_struct_12716
++disable_so_dma_addr_rxbuff_ent_12717 dma_addr rxbuff_ent 0 12717 NULL
++disable_so_swb_base_asd_ha_addrspace_12726 swb_base asd_ha_addrspace 0 12726 NULL
++disable_so_set_voltage_time_sel_regulator_ops_12737 set_voltage_time_sel regulator_ops 0-2 12737 NULL nohasharray
++disable_so_crypto_ecb_setkey_fndecl_12737 crypto_ecb_setkey fndecl 0-3 12737 &disable_so_set_voltage_time_sel_regulator_ops_12737
++disable_so_width_clk_divider_12738 width clk_divider 0 12738 NULL
++disable_so_mga_set_start_address_fndecl_12745 mga_set_start_address fndecl 2 12745 NULL
++disable_so_last_timer_vardecl_tusb6010_c_12750 last_timer vardecl_tusb6010.c 0 12750 NULL
++disable_so_jiffies_at_free_qla_tgt_cmd_12753 jiffies_at_free qla_tgt_cmd 0 12753 NULL nohasharray
++disable_so_ufs_set_inode_uid_fndecl_12753 ufs_set_inode_uid fndecl 3 12753 &disable_so_jiffies_at_free_qla_tgt_cmd_12753
++disable_so_ipv6_get_saddr_eval_fndecl_12754 ipv6_get_saddr_eval fndecl 0 12754 NULL
++disable_so_bond_xmit_hash_fndecl_12757 bond_xmit_hash fndecl 0 12757 NULL
++disable_so_freqm_snd_usb_endpoint_12761 freqm snd_usb_endpoint 0 12761 NULL
++disable_so_mclkdiv_cs42l73_mclkx_div_12771 mclkdiv cs42l73_mclkx_div 0 12771 NULL
++disable_so_slot_time_rtl8187_priv_12775 slot_time rtl8187_priv 0 12775 NULL
++disable_so_mwifiex_auto_tdls_update_peer_signal_fndecl_12781 mwifiex_auto_tdls_update_peer_signal fndecl 3-4 12781 NULL
++disable_so_channel_mwifiex_chan_freq_power_12794 channel mwifiex_chan_freq_power 0 12794 NULL
++disable_so_pll_loopdiv_dib0090_io_config_12799 pll_loopdiv dib0090_io_config 0 12799 NULL nohasharray
++disable_so_branch_addr_yellowfin_desc_12799 branch_addr yellowfin_desc 0 12799 &disable_so_pll_loopdiv_dib0090_io_config_12799
++disable_so__kstrtoul_fndecl_12800 _kstrtoul fndecl 0 12800 NULL
++disable_so_ns_to_timeval_fndecl_12804 ns_to_timeval fndecl 1 12804 NULL nohasharray
++disable_so_enc_addr_high_sata_start_req_12804 enc_addr_high sata_start_req 0 12804 &disable_so_ns_to_timeval_fndecl_12804
++disable_so_ftdi_232bm_baud_to_divisor_fndecl_12815 ftdi_232bm_baud_to_divisor fndecl 0-1 12815 NULL
++disable_so_crypto_aead_setkey_fndecl_12818 crypto_aead_setkey fndecl 0-3 12818 NULL
++disable_so_ufs_cpu_to_data_ptr_fndecl_12819 ufs_cpu_to_data_ptr fndecl 3 12819 NULL
++disable_so_s35390a_rtc_read_time_fndecl_12823 s35390a_rtc_read_time fndecl 0 12823 NULL
++disable_so_orinoco_ioctl_getfreq_fndecl_12824 orinoco_ioctl_getfreq fndecl 0 12824 NULL
++disable_so_be_get_temp_freq_be_adapter_12832 be_get_temp_freq be_adapter 0 12832 NULL
++disable_so_sha256_transform_asm_vardecl_sha256_ssse3_glue_c_12837 sha256_transform_asm vardecl_sha256_ssse3_glue.c 3 12837 NULL
++disable_so_ubifs_leb_unmap_fndecl_12841 ubifs_leb_unmap fndecl 0-2 12841 NULL
++disable_so_telclk_interrupt_vardecl_tlclk_c_12842 telclk_interrupt vardecl_tlclk.c 0 12842 NULL
++disable_so_eax_tss_segment_32_12853 eax tss_segment_32 0 12853 NULL
++disable_so_recover_ide_timing_12854 recover ide_timing 0 12854 NULL
++disable_so_ima_calc_file_hash_fndecl_12858 ima_calc_file_hash fndecl 0 12858 NULL
++disable_so_timestamp_inquiry_entry_12867 timestamp inquiry_entry 0 12867 NULL
++disable_so_blk_post_runtime_suspend_fndecl_12869 blk_post_runtime_suspend fndecl 2 12869 NULL
++disable_so_clocksource_register_khz_fndecl_12871 clocksource_register_khz fndecl 2 12871 NULL
++disable_so___xfrm4_daddr_saddr_hash_fndecl_12875 __xfrm4_daddr_saddr_hash fndecl 0 12875 NULL
++disable_so_calibrate_delay_converge_fndecl_12881 calibrate_delay_converge fndecl 0 12881 NULL
++disable_so_cgroup_kn_set_ugid_fndecl_12885 cgroup_kn_set_ugid fndecl 0 12885 NULL
++disable_so_bm_number_of_pages_drbd_bitmap_12889 bm_number_of_pages drbd_bitmap 0 12889 NULL
++disable_so_blck_N_aic32x4_rate_divs_12896 blck_N aic32x4_rate_divs 0 12896 NULL
++disable_so_delayacct_blkio_ticks_fndecl_12901 delayacct_blkio_ticks fndecl 0 12901 NULL
++disable_so_sh_irda_set_timeout_fndecl_12902 sh_irda_set_timeout fndecl 2 12902 NULL
++disable_so_bch_next_delay_fndecl_12906 bch_next_delay fndecl 0-2 12906 NULL
++disable_so_address_lo_ht_irq_msg_12914 address_lo ht_irq_msg 0 12914 NULL
++disable_so_cr_gsc_addr_12917 cr gsc_addr 0 12917 NULL nohasharray
++disable_so_fmc_set_freq_fndecl_12917 fmc_set_freq fndecl 0-2 12917 &disable_so_cr_gsc_addr_12917
++disable_so_s_wtime_nilfs_super_block_12947 s_wtime nilfs_super_block 0 12947 NULL
++disable_so___pm_runtime_idle_fndecl_12950 __pm_runtime_idle fndecl 0 12950 NULL
++disable_so_timeout_dvb_ca_slot_12955 timeout dvb_ca_slot 0 12955 NULL
++disable_so_ktime_get_real_ns_fndecl_12957 ktime_get_real_ns fndecl 0 12957 NULL nohasharray
++disable_so_read_temp_msr_fndecl_12957 read_temp_msr fndecl 0 12957 &disable_so_ktime_get_real_ns_fndecl_12957
++disable_so_clock_get_k_clock_12965 clock_get k_clock 1 12965 NULL
++disable_so_addr___cache_12967 addr __cache 0 12967 NULL
++disable_so_dev_addr_mv_u3d_12969 dev_addr mv_u3d 0 12969 NULL
++disable_so_xfrm6_input_addr_fndecl_12971 xfrm6_input_addr fndecl 4 12971 NULL
++disable_so_rfcomm_dlc_set_timer_fndecl_12983 rfcomm_dlc_set_timer fndecl 2 12983 NULL
++disable_so_short_addr_ieee802154_hw_addr_filt_12985 short_addr ieee802154_hw_addr_filt 0 12985 NULL
++disable_so_base_addr_rdma_cq_setup_12989 base_addr rdma_cq_setup 0 12989 NULL
++disable_so_rsp_q_phy_addr_ql3_adapter_12990 rsp_q_phy_addr ql3_adapter 0 12990 NULL
++disable_so_cc770_status_interrupt_fndecl_12992 cc770_status_interrupt fndecl 0 12992 NULL
++disable_so_tx_addr_uart_8250_dma_12997 tx_addr uart_8250_dma 0 12997 NULL
++disable_so_cur_delay_intel_ilk_power_mgmt_13003 cur_delay intel_ilk_power_mgmt 0 13003 NULL
++disable_so_gateway_cmd_addr_wil_fw_record_gateway_data_13008 gateway_cmd_addr wil_fw_record_gateway_data 0 13008 NULL
++disable_so_wq_cpumask_show_fndecl_13018 wq_cpumask_show fndecl 0 13018 NULL
++disable_so_hash_index_fndecl_13050 hash_index fndecl 0-1-2 13050 NULL
++disable_so_qs6612_ack_interrupt_fndecl_13054 qs6612_ack_interrupt fndecl 0 13054 NULL
++disable_so_dst_addr_ioat_dma_descriptor_13055 dst_addr ioat_dma_descriptor 0 13055 NULL
++disable_so_qce_ablkcipher_encrypt_fndecl_13064 qce_ablkcipher_encrypt fndecl 0 13064 NULL
++disable_so_cra_alignmask_crypto_alg_13076 cra_alignmask crypto_alg 0 13076 NULL
++disable_so_rx_busy_ath_cycle_counters_13078 rx_busy ath_cycle_counters 0 13078 NULL
++disable_so_dummy_hrtimer_pointer_fndecl_13080 dummy_hrtimer_pointer fndecl 0 13080 NULL nohasharray
++disable_so_freq_carl9170_rf_init_13080 freq carl9170_rf_init 0 13080 &disable_so_dummy_hrtimer_pointer_fndecl_13080
++disable_so_host_addr_mei_hbm_cl_cmd_13107 host_addr mei_hbm_cl_cmd 0 13107 NULL nohasharray
++disable_so_set_bbreg_rtl_hal_ops_13107 set_bbreg rtl_hal_ops 2-4 13107 &disable_so_host_addr_mei_hbm_cl_cmd_13107
++disable_so_da9063_rtc_read_time_fndecl_13117 da9063_rtc_read_time fndecl 0 13117 NULL
++disable_so_ext4_validate_block_bitmap_fndecl_13120 ext4_validate_block_bitmap fndecl 3 13120 NULL
++disable_so_adp8870_write_fndecl_13121 adp8870_write fndecl 0-2-3 13121 NULL
++disable_so_clock_set_k_clock_13122 clock_set k_clock 1 13122 NULL nohasharray
++disable_so_check_clock_fndecl_13122 check_clock fndecl 1 13122 &disable_so_clock_set_k_clock_13122
++disable_so_addr_wil6210_mbox_ring_desc_13127 addr wil6210_mbox_ring_desc 0 13127 NULL
++disable_so_stats_time_fnic_13131 stats_time fnic 0 13131 NULL
++disable_so_brcms_add_timer_fndecl_13133 brcms_add_timer fndecl 2 13133 NULL
++disable_so_r6a_val_fc2580_freq_regs_13136 r6a_val fc2580_freq_regs 0 13136 NULL
++disable_so_enabled_otg_timer_bits_ci_hdrc_13140 enabled_otg_timer_bits ci_hdrc 0 13140 NULL
++disable_so_atp867x_get_recover_clocks_shifted_fndecl_13150 atp867x_get_recover_clocks_shifted fndecl 0-1 13150 NULL
++disable_so_timeout_nf_ct_gre_13156 timeout nf_ct_gre 0 13156 NULL
++disable_so_snd_fm801_interrupt_fndecl_13162 snd_fm801_interrupt fndecl 1 13162 NULL
++disable_so_afs_server_timeout_vardecl_server_c_13168 afs_server_timeout vardecl_server.c 0 13168 NULL
++disable_so_wm8974_set_dai_clkdiv_fndecl_13171 wm8974_set_dai_clkdiv fndecl 3 13171 NULL
++disable_so_ipw_send_adapter_address_fndecl_13183 ipw_send_adapter_address fndecl 0 13183 NULL
++disable_so_crypto_fpu_encrypt_fndecl_13188 crypto_fpu_encrypt fndecl 0-4 13188 NULL
++disable_so_blockno2iaddr_fndecl_13194 blockno2iaddr fndecl 2 13194 NULL
++disable_so_s_addr_per_block_bits_ext2_sb_info_13196 s_addr_per_block_bits ext2_sb_info 0 13196 NULL
++disable_so_mac_time_rtl8187_rx_hdr_13204 mac_time rtl8187_rx_hdr 0 13204 NULL
++disable_so_efx_phc_gettime_fndecl_13210 efx_phc_gettime fndecl 0 13210 NULL nohasharray
++disable_so_freq_fm_rx_13210 freq fm_rx 0 13210 &disable_so_efx_phc_gettime_fndecl_13210
++disable_so_set_fan1_div_fndecl_13214 set_fan1_div fndecl 0-4 13214 NULL
++disable_so_kstrtos16_from_user_fndecl_13215 kstrtos16_from_user fndecl 2 13215 NULL
++disable_so_timer_int_req_nes_adapter_13220 timer_int_req nes_adapter 0 13220 NULL nohasharray
++disable_so_raddr_rdma_iu_13220 raddr rdma_iu 0 13220 &disable_so_timer_int_req_nes_adapter_13220
++disable_so_calibrate_delay_direct_fndecl_13221 calibrate_delay_direct fndecl 0 13221 NULL
++disable_so_il_scan_cancel_timeout_fndecl_13227 il_scan_cancel_timeout fndecl 2 13227 NULL
++disable_so_di_uid_gfs2_dinode_13234 di_uid gfs2_dinode 0 13234 NULL
++disable_so_globaltxtimeout_ath_hw_13238 globaltxtimeout ath_hw 0 13238 NULL
++disable_so_handle_new_msr_fndecl_13247 handle_new_msr fndecl 2 13247 NULL
++disable_so_efx_ef10_get_mac_address_fndecl_13249 efx_ef10_get_mac_address fndecl 0 13249 NULL
++disable_so_i_atime_exofs_fcb_13250 i_atime exofs_fcb 0 13250 NULL
++disable_so_dwell_time_active_wmi_start_scan_arg_13251 dwell_time_active wmi_start_scan_arg 0 13251 NULL
++disable_so_SYSC_signalfd_fndecl_13255 SYSC_signalfd fndecl 0 13255 NULL
++disable_so_ipv4addr_iscsi_ipv4addr_13263 ipv4addr iscsi_ipv4addr 0 13263 NULL
++disable_so_nilfs_btree_prepare_update_v_fndecl_13265 nilfs_btree_prepare_update_v fndecl 0 13265 NULL
++disable_so_timer_in_use_max_nes_hw_tune_timer_13266 timer_in_use_max nes_hw_tune_timer 0 13266 NULL nohasharray
++disable_so_qlcnic_83xx_sre_macaddr_change_fndecl_13266 qlcnic_83xx_sre_macaddr_change fndecl 0 13266 &disable_so_timer_in_use_max_nes_hw_tune_timer_13266
++disable_so_xgmac_interrupt_fndecl_13268 xgmac_interrupt fndecl 1 13268 NULL
++disable_so_radio_s_hw_freq_seek_fndecl_13308 radio_s_hw_freq_seek fndecl 0 13308 NULL nohasharray
++disable_so_apei_read_mce_fndecl_13308 apei_read_mce fndecl 0 13308 &disable_so_radio_s_hw_freq_seek_fndecl_13308
++disable_so_clear_tasks_mm_cpumask_fndecl_13309 clear_tasks_mm_cpumask fndecl 1 13309 NULL
++disable_so_bmsr_e1000_phy_regs_13313 bmsr e1000_phy_regs 0 13313 NULL
++disable_so_mcryptd_hash_digest_fndecl_13325 mcryptd_hash_digest fndecl 2 13325 NULL
++disable_so_cpumask_set_cpu_fndecl_13326 cpumask_set_cpu fndecl 1 13326 NULL
++disable_so_ipath_unmasktime_ipath_devdata_13342 ipath_unmasktime ipath_devdata 0 13342 NULL
++disable_so_interruptjiffies_vardecl_floppy_c_13345 interruptjiffies vardecl_floppy.c 0 13345 NULL
++disable_so_remove_from_bitmap_fndecl_13352 remove_from_bitmap fndecl 0 13352 NULL
++disable_so_sst_wait_timeout_fndecl_13353 sst_wait_timeout fndecl 0 13353 NULL nohasharray
++disable_so_last_timeout_arcnet_local_13353 last_timeout arcnet_local 0 13353 &disable_so_sst_wait_timeout_fndecl_13353 nohasharray
++disable_so_cfg_table_bus_addr_pmcraid_instance_13353 cfg_table_bus_addr pmcraid_instance 0 13353 &disable_so_last_timeout_arcnet_local_13353
++disable_so_mtime_vardecl_initramfs_c_13365 mtime vardecl_initramfs.c 0 13365 NULL
++disable_so_ds3232_read_time_fndecl_13366 ds3232_read_time fndecl 0 13366 NULL nohasharray
++disable_so_addr_bcma_device_13366 addr bcma_device 0 13366 &disable_so_ds3232_read_time_fndecl_13366
++disable_so_dma_addr_drv_ctl_io_13371 dma_addr drv_ctl_io 0 13371 NULL
++disable_so_crypto_check_alg_fndecl_13376 crypto_check_alg fndecl 0 13376 NULL
++disable_so_drbd_adm_get_timeout_type_fndecl_13391 drbd_adm_get_timeout_type fndecl 0 13391 NULL
++disable_so_hpi_silence_detector_set_delay_fndecl_13393 hpi_silence_detector_set_delay fndecl 0-1 13393 NULL
++disable_so__get_table_div_fndecl_13398 _get_table_div fndecl 0-2 13398 NULL
++disable_so_backtrace_address_fndecl_13401 backtrace_address fndecl 2 13401 NULL
++disable_so_ax25_addr_parse_fndecl_13402 ax25_addr_parse fndecl 2 13402 NULL
++disable_so_ath5k_hw_ani_get_listen_time_fndecl_13417 ath5k_hw_ani_get_listen_time fndecl 0 13417 NULL nohasharray
++disable_so_map_page_dma_map_ops_13417 map_page dma_map_ops 0-3-4 13417 &disable_so_ath5k_hw_ani_get_listen_time_fndecl_13417
++disable_so_cpufreq_stats_free_table_fndecl_13437 cpufreq_stats_free_table fndecl 1 13437 NULL
++disable_so_eft_addr_l_qla2xxx_fw_dump_13450 eft_addr_l qla2xxx_fw_dump 0 13450 NULL
++disable_so_cit_write_reg_fndecl_13451 cit_write_reg fndecl 2 13451 NULL
++disable_so_chash_f2fs_inode_info_13456 chash f2fs_inode_info 0 13456 NULL
++disable_so_vblank_lo_oaktrail_timing_info_13463 vblank_lo oaktrail_timing_info 0 13463 NULL
++disable_so_rtl8139_interrupt_fndecl_13468 rtl8139_interrupt fndecl 1 13468 NULL
++disable_so_start_time_dm_io_13470 start_time dm_io 0 13470 NULL
++disable_so_mt2032_set_if_freq_fndecl_13473 mt2032_set_if_freq fndecl 2-3-4 13473 NULL
++disable_so_demod_address_cx24110_config_13476 demod_address cx24110_config 0 13476 NULL
++disable_so_atime_tcs3472_data_13482 atime tcs3472_data 0 13482 NULL
++disable_so_div_ratio_fndecl_13491 div_ratio fndecl 0-2-1 13491 NULL
++disable_so_seq_xfrm_state_walk_13498 seq xfrm_state_walk 0 13498 NULL
++disable_so_qdisc_class_hash_init_fndecl_13502 qdisc_class_hash_init fndecl 0 13502 NULL
++disable_so_sha256_generic_block_fn_fndecl_13506 sha256_generic_block_fn fndecl 3 13506 NULL
++disable_so_find_first_bit_fndecl_13507 find_first_bit fndecl 0-2 13507 NULL
++disable_so_idle_timeout_clip_vcc_13512 idle_timeout clip_vcc 0 13512 NULL nohasharray
++disable_so_input_set_abs_params_fndecl_13512 input_set_abs_params fndecl 3-4-5-6-2 13512 &disable_so_idle_timeout_clip_vcc_13512
++disable_so_bond_time_in_interval_fndecl_13516 bond_time_in_interval fndecl 2 13516 NULL nohasharray
++disable_so_nv04_timer_init_fndecl_13516 nv04_timer_init fndecl 0 13516 &disable_so_bond_time_in_interval_fndecl_13516
++disable_so_paravirt_read_msr_fndecl_13526 paravirt_read_msr fndecl 0-1 13526 NULL
++disable_so_dram_offset_sst_addr_13528 dram_offset sst_addr 0 13528 NULL
++disable_so_em_sti_clocksource_enable_fndecl_13530 em_sti_clocksource_enable fndecl 0 13530 NULL
++disable_so_timestamp_ieee80211_tdls_ch_sw_params_13545 timestamp ieee80211_tdls_ch_sw_params 0 13545 NULL
++disable_so_post_divider_rv6xx_sclk_stepping_13551 post_divider rv6xx_sclk_stepping 0 13551 NULL nohasharray
++disable_so_center_freq_ieee80211_channel_13551 center_freq ieee80211_channel 0 13551 &disable_so_post_divider_rv6xx_sclk_stepping_13551
++disable_so_port_rcvhdrqtailaddr_phys_ipath_portdata_13553 port_rcvhdrqtailaddr_phys ipath_portdata 0 13553 NULL
++disable_so_acpi_check_address_range_fndecl_13569 acpi_check_address_range fndecl 1-2-3 13569 NULL
++disable_so_time_mt_init_fndecl_13576 time_mt_init fndecl 0 13576 NULL
++disable_so_blkcipher_done_fast_fndecl_13584 blkcipher_done_fast fndecl 0-2 13584 NULL
++disable_so_phys_addr_mpi_mem_13591 phys_addr mpi_mem 0 13591 NULL nohasharray
++disable_so_timeout_p9_trans_rdma_13591 timeout p9_trans_rdma 0 13591 &disable_so_phys_addr_mpi_mem_13591 nohasharray
++disable_so_ssb_chipco_watchdog_timer_set_ms_fndecl_13591 ssb_chipco_watchdog_timer_set_ms fndecl 2-0 13591 &disable_so_timeout_p9_trans_rdma_13591
++disable_so_c_can_set_bittiming_fndecl_13601 c_can_set_bittiming fndecl 0 13601 NULL
++disable_so_crypto_ccm_module_init_fndecl_13609 crypto_ccm_module_init fndecl 0 13609 NULL
++disable_so_addr_hi_eth_tx_next_bd_13611 addr_hi eth_tx_next_bd 0 13611 NULL
++disable_so_addr_hi_cmdQ_e_13613 addr_hi cmdQ_e 0 13613 NULL
++disable_so_min_keysize_crypto_report_cipher_13617 min_keysize crypto_report_cipher 0 13617 NULL
++disable_so_seq_printf_with_thousands_grouping_fndecl_13628 seq_printf_with_thousands_grouping fndecl 2 13628 NULL
++disable_so_cpuidle_init_fndecl_13639 cpuidle_init fndecl 0 13639 NULL
++disable_so_period_ksz_timer_info_13641 period ksz_timer_info 0 13641 NULL
++disable_so_vx_modify_board_clock_fndecl_13669 vx_modify_board_clock fndecl 0 13669 NULL
++disable_so_cmd_box_addr_wl1251_13673 cmd_box_addr wl1251 0 13673 NULL
++disable_so_demod_address_va1j5jf8007s_config_13675 demod_address va1j5jf8007s_config 0 13675 NULL
++disable_so_timestamp_unavailable_nfs4_deviceid_node_13676 timestamp_unavailable nfs4_deviceid_node 0 13676 NULL nohasharray
++disable_so_len_in_mceusb_dev_13676 len_in mceusb_dev 0 13676 &disable_so_timestamp_unavailable_nfs4_deviceid_node_13676
++disable_so_di_uid_efs_dinode_13682 di_uid efs_dinode 0 13682 NULL
++disable_so_aty_ld_le32_fndecl_13683 aty_ld_le32 fndecl 0 13683 NULL
++disable_so_freqValRadio_pvr2_hdw_13684 freqValRadio pvr2_hdw 0 13684 NULL
++disable_so_fd_pppol2tp_addr_13691 fd pppol2tp_addr 0 13691 NULL
++disable_so_ver_total_via_display_timing_13695 ver_total via_display_timing 0 13695 NULL
++disable_so_wait_on_bit_action_fndecl_13700 wait_on_bit_action fndecl 0 13700 NULL
++disable_so_prandom_seed_state_fndecl_13705 prandom_seed_state fndecl 2 13705 NULL
++disable_so_br_set_hello_time_fndecl_13706 br_set_hello_time fndecl 2-0 13706 NULL
++disable_so_servaddr_vardecl_nfsroot_c_13709 servaddr vardecl_nfsroot.c 0 13709 NULL
++disable_so_pci_bus_read_config_byte_fndecl_13716 pci_bus_read_config_byte fndecl 0-2-3 13716 NULL
++disable_so_cipher_blocksize_blkcipher_walk_13719 cipher_blocksize blkcipher_walk 0 13719 NULL
++disable_so_isdn_divert_read_fndecl_13720 isdn_divert_read fndecl 0 13720 NULL
++disable_so_sys_getegid16_fndecl_13732 sys_getegid16 fndecl 0 13732 NULL
++disable_so_turnaround_delay_fndecl_13736 turnaround_delay fndecl 2 13736 NULL nohasharray
++disable_so_ft_min_img_ir_free_timing_13736 ft_min img_ir_free_timing 0 13736 &disable_so_turnaround_delay_fndecl_13736
++disable_so_addr_1_qla8044_minidump_entry_rdmdio_13738 addr_1 qla8044_minidump_entry_rdmdio 0 13738 NULL nohasharray
++disable_so_write_begin_address_space_operations_13738 write_begin address_space_operations 0-3-4 13738 &disable_so_addr_1_qla8044_minidump_entry_rdmdio_13738
++disable_so_ext4fs_dirhash_fndecl_13754 ext4fs_dirhash fndecl 2 13754 NULL
++disable_so_mpll_func_cntl_2_ci_clock_registers_13768 mpll_func_cntl_2 ci_clock_registers 0 13768 NULL
++disable_so_update_ts_time_stats_fndecl_13777 update_ts_time_stats fndecl 1 13777 NULL
++disable_so_adv_smbus_write_byte_data_fndecl_13784 adv_smbus_write_byte_data fndecl 0-3-2-4 13784 NULL
++disable_so_tg3_nvram_read_be32_fndecl_13791 tg3_nvram_read_be32 fndecl 0-2 13791 NULL
++disable_so_ftdi_232bm_baud_base_to_divisor_fndecl_13805 ftdi_232bm_baud_base_to_divisor fndecl 0-1-2 13805 NULL nohasharray
++disable_so_compat_sys_clock_getres_fndecl_13805 compat_sys_clock_getres fndecl 1 13805 &disable_so_ftdi_232bm_baud_base_to_divisor_fndecl_13805
++disable_so_mtimensec_fuse_setattr_in_13811 mtimensec fuse_setattr_in 0 13811 NULL
++disable_so_stime_task_cputime_13814 stime task_cputime 0 13814 NULL
++disable_so_update_rq_clock_task_fndecl_13818 update_rq_clock_task fndecl 2 13818 NULL
++disable_so_first_pending_disptime_throtl_service_queue_13825 first_pending_disptime throtl_service_queue 0 13825 NULL
++disable_so_zalloc_cpumask_var_node_fndecl_13830 zalloc_cpumask_var_node fndecl 2-3 13830 NULL
++disable_so_s_last_error_time_ext4_super_block_13833 s_last_error_time ext4_super_block 0 13833 NULL
++disable_so_ksz_start_timer_fndecl_13834 ksz_start_timer fndecl 2 13834 NULL nohasharray
++disable_so_uwb_rc_mac_addr_get_fndecl_13834 uwb_rc_mac_addr_get fndecl 0 13834 &disable_so_ksz_start_timer_fndecl_13834
++disable_so_last_jiffies_loopback_pcm_13838 last_jiffies loopback_pcm 0 13838 NULL
++disable_so_devm_free_irq_fndecl_13839 devm_free_irq fndecl 2 13839 NULL
++disable_so_wlcore_irq_locked_fndecl_13846 wlcore_irq_locked fndecl 0 13846 NULL
++disable_so_hpet_reserve_platform_timers_fndecl_13848 hpet_reserve_platform_timers fndecl 1 13848 NULL
++disable_so_drm_legacy_ctxbitmap_next_fndecl_13853 drm_legacy_ctxbitmap_next fndecl 0 13853 NULL
++disable_so_addr_hi_sdhci_adma2_64_desc_13867 addr_hi sdhci_adma2_64_desc 0 13867 NULL nohasharray
++disable_so_xfs_btree_lookup_get_block_fndecl_13867 xfs_btree_lookup_get_block fndecl 0 13867 &disable_so_addr_hi_sdhci_adma2_64_desc_13867
++disable_so_ktime_to_us_fndecl_13868 ktime_to_us fndecl 0 13868 NULL nohasharray
++disable_so_mlx5_query_mad_ifc_system_image_guid_fndecl_13868 mlx5_query_mad_ifc_system_image_guid fndecl 0 13868 &disable_so_ktime_to_us_fndecl_13868
++disable_so_smack_task_setpgid_fndecl_13869 smack_task_setpgid fndecl 0 13869 NULL
++disable_so_payload_addr_vpdma_cfd_13876 payload_addr vpdma_cfd 0 13876 NULL
++disable_so_chgfreq_cs42l73_platform_data_13884 chgfreq cs42l73_platform_data 0 13884 NULL
++disable_so_interrupt_page_vmbus_channel_initiate_contact_13895 interrupt_page vmbus_channel_initiate_contact 0 13895 NULL
++disable_so_ptrace_set_breakpoint_addr_fndecl_13901 ptrace_set_breakpoint_addr fndecl 0-2-3 13901 NULL nohasharray
++disable_so_vsync_pulse_width_lo_oaktrail_timing_info_13901 vsync_pulse_width_lo oaktrail_timing_info 0 13901 &disable_so_ptrace_set_breakpoint_addr_fndecl_13901
++disable_so_mcryptd_hash_setkey_fndecl_13926 mcryptd_hash_setkey fndecl 0-3 13926 NULL
++disable_so_put_unaligned_be64_fndecl_13929 put_unaligned_be64 fndecl 1 13929 NULL
++disable_so_voldelay_soundfont_voice_parm_13931 voldelay soundfont_voice_parm 0 13931 NULL
++disable_so_addr_high_lancer_cmd_req_read_object_13932 addr_high lancer_cmd_req_read_object 0 13932 NULL
++disable_so_src_addr_rds_info_rdma_connection_13938 src_addr rds_info_rdma_connection 0 13938 NULL
++disable_so_rs780_force_fbdiv_fndecl_13945 rs780_force_fbdiv fndecl 2 13945 NULL
++disable_so_xfs_btree_key_offset_fndecl_13946 xfs_btree_key_offset fndecl 0-2 13946 NULL nohasharray
++disable_so_cryptd_hash_init_enqueue_fndecl_13946 cryptd_hash_init_enqueue fndecl 0 13946 &disable_so_xfs_btree_key_offset_fndecl_13946
++disable_so_from_addr_param_sctp_af_13948 from_addr_param sctp_af 3 13948 NULL
++disable_so_ept_walk_addr_generic_fndecl_13950 ept_walk_addr_generic fndecl 4-5 13950 NULL
++disable_so_cpu_timer_list_iter_13954 cpu timer_list_iter 0 13954 NULL nohasharray
++disable_so_iowrite16_fndecl_13954 iowrite16 fndecl 1 13954 &disable_so_cpu_timer_list_iter_13954
++disable_so_do_utime_fndecl_13972 do_utime fndecl 2-0 13972 NULL
++disable_so_base_addr_cx18_13974 base_addr cx18 0 13974 NULL
++disable_so_rtpm_suspended_time_show_fndecl_13986 rtpm_suspended_time_show fndecl 0 13986 NULL
++disable_so_ctime_fuse_setattr_in_13994 ctime fuse_setattr_in 0 13994 NULL
++disable_so__rtl92ce_signal_scale_mapping_fndecl_14005 _rtl92ce_signal_scale_mapping fndecl 0-2 14005 NULL
++disable_so_base_address_kvm_ioapic_14007 base_address kvm_ioapic 0 14007 NULL
++disable_so_addr_hi_tx_desc_14014 addr_hi tx_desc 0 14014 NULL
++disable_so_db_page_addr_ocrdma_create_cq_uresp_14016 db_page_addr ocrdma_create_cq_uresp 0 14016 NULL
++disable_so_cur_cpufreq_policy_14023 cur cpufreq_policy 0 14023 NULL
++disable_so_iommu_context_addr_fndecl_14032 iommu_context_addr fndecl 2-3 14032 NULL
++disable_so_pll_i2c_address_dvb_pll_priv_14036 pll_i2c_address dvb_pll_priv 0 14036 NULL
++disable_so_eth_mac_addr_fndecl_14045 eth_mac_addr fndecl 0 14045 NULL
++disable_so_dce_v8_0_crtc_set_base_atomic_fndecl_14048 dce_v8_0_crtc_set_base_atomic fndecl 0 14048 NULL
++disable_so_irq_to_desc_fndecl_14051 irq_to_desc fndecl 1 14051 NULL
++disable_so_ept_identity_map_addr_kvm_arch_14060 ept_identity_map_addr kvm_arch 0 14060 NULL
++disable_so_t1timer_ax25_info_struct_14071 t1timer ax25_info_struct 0 14071 NULL
++disable_so_rxbd_addr_hi_host_cmd_ds_pcie_details_14073 rxbd_addr_hi host_cmd_ds_pcie_details 0 14073 NULL nohasharray
++disable_so_nfsd4_decode_bitmap_fndecl_14073 nfsd4_decode_bitmap fndecl 0 14073 &disable_so_rxbd_addr_hi_host_cmd_ds_pcie_details_14073
++disable_so_xfs_vn_update_time_fndecl_14075 xfs_vn_update_time fndecl 0 14075 NULL
++disable_so_cpufreq_frequency_table_target_fndecl_14082 cpufreq_frequency_table_target fndecl 3 14082 NULL
++disable_so_pll_j_aic31xx_rate_divs_14098 pll_j aic31xx_rate_divs 0 14098 NULL
++disable_so_pirq_from_irq_fndecl_14110 pirq_from_irq fndecl 1 14110 NULL
++disable_so_zforce_scan_frequency_fndecl_14111 zforce_scan_frequency fndecl 0 14111 NULL
++disable_so_uv_bios_freq_base_fndecl_14114 uv_bios_freq_base fndecl 1 14114 NULL
++disable_so_si2165_set_if_freq_shift_fndecl_14123 si2165_set_if_freq_shift fndecl 0-2 14123 NULL
++disable_so___hw_addr_sync_fndecl_14136 __hw_addr_sync fndecl 0-3 14136 NULL
++disable_so_y_qxl_bitmap_14153 y qxl_bitmap 0 14153 NULL
++disable_so_crypto_aead_setauthsize_fndecl_14158 crypto_aead_setauthsize fndecl 2 14158 NULL
++disable_so_r600_engine_clock_entry_set_post_divider_fndecl_14159 r600_engine_clock_entry_set_post_divider fndecl 3 14159 NULL
++disable_so_onenand_buffer_address_fndecl_14162 onenand_buffer_address fndecl 0-2-3 14162 NULL
++disable_so___xfrm_state_lookup_byaddr_fndecl_14170 __xfrm_state_lookup_byaddr fndecl 2-5-6 14170 NULL
++disable_so_uwbd_evt_handle_rc_dev_addr_conflict_fndecl_14177 uwbd_evt_handle_rc_dev_addr_conflict fndecl 0 14177 NULL
++disable_so_mpt_add_sge_64bit_1078_fndecl_14179 mpt_add_sge_64bit_1078 fndecl 2-3 14179 NULL
++disable_so_exynos4_jpeg_set_dec_bitstream_size_fndecl_14180 exynos4_jpeg_set_dec_bitstream_size fndecl 2 14180 NULL
++disable_so_bg_block_bitmap_hi_ext4_group_desc_14201 bg_block_bitmap_hi ext4_group_desc 0 14201 NULL
++disable_so_msecs_to_jiffies_fndecl_14205 msecs_to_jiffies fndecl 0-1 14205 NULL
++disable_so_wait_on_page_bit_killable_timeout_fndecl_14212 wait_on_page_bit_killable_timeout fndecl 3-0 14212 NULL
++disable_so_xfrm_state_addr_check_fndecl_14213 xfrm_state_addr_check fndecl 4 14213 NULL
++disable_so_addr_sil24_sge_14214 addr sil24_sge 0 14214 NULL
++disable_so_t2_hash_tbl_addr_lo_fcoe_kwqe_init2_14217 t2_hash_tbl_addr_lo fcoe_kwqe_init2 0 14217 NULL
++disable_so_custom_divisor_uart_port_14227 custom_divisor uart_port 0 14227 NULL
++disable_so_mclk_freq_s3fb_info_14228 mclk_freq s3fb_info 0 14228 NULL
++disable_so_crypto_rfc4106_decrypt_fndecl_14233 crypto_rfc4106_decrypt fndecl 0 14233 NULL
++disable_so_phy_addr_b44_14235 phy_addr b44 0 14235 NULL
++disable_so_gpiochip_set_chained_irqchip_fndecl_14248 gpiochip_set_chained_irqchip fndecl 3 14248 NULL
++disable_so_pci_bus_address_fndecl_14252 pci_bus_address fndecl 0 14252 NULL
++disable_so_sleep_functions_on_battery_show_fndecl_14253 sleep_functions_on_battery_show fndecl 0 14253 NULL nohasharray
++disable_so_to_hash_fndecl_14253 to_hash fndecl 0-1 14253 &disable_so_sleep_functions_on_battery_show_fndecl_14253
++disable_so_ghash_async_init_fndecl_14257 ghash_async_init fndecl 0 14257 NULL
++disable_so_port_down_timeout_vnic_fc_config_14262 port_down_timeout vnic_fc_config 0 14262 NULL
++disable_so_master_timeout_vardecl_nf_conntrack_amanda_c_14266 master_timeout vardecl_nf_conntrack_amanda.c 0 14266 NULL
++disable_so_register_address_increment_fndecl_14270 register_address_increment fndecl 2-3 14270 NULL
++disable_so_ultra_settings_chipset_bus_clock_list_entry_14273 ultra_settings chipset_bus_clock_list_entry 0 14273 NULL
++disable_so_do_timer_fndecl_14291 do_timer fndecl 1 14291 NULL nohasharray
++disable_so_hpi_sample_clock_set_source_index_fndecl_14291 hpi_sample_clock_set_source_index fndecl 1-0 14291 &disable_so_do_timer_fndecl_14291
++disable_so_ndi_latency_timer_vardecl_ftdi_sio_c_14293 ndi_latency_timer vardecl_ftdi_sio.c 0 14293 NULL
++disable_so_gateway_addr_addr_wil_fw_record_gateway_data4_14300 gateway_addr_addr wil_fw_record_gateway_data4 0 14300 NULL
++disable_so_rxrpc_validate_address_fndecl_14303 rxrpc_validate_address fndecl 0-3 14303 NULL
++disable_so_function_num_atto_csmi_get_pci_bus_addr_14307 function_num atto_csmi_get_pci_bus_addr 0 14307 NULL
++disable_so_packet_timeout_jiffies_lego_usb_tower_14311 packet_timeout_jiffies lego_usb_tower 0 14311 NULL
++disable_so_caller_uid_ceph_mds_request_head_14323 caller_uid ceph_mds_request_head 0 14323 NULL
++disable_so_e1000_get_phy_addr_for_bm_page_fndecl_14324 e1000_get_phy_addr_for_bm_page fndecl 0-1-2 14324 NULL
++disable_so_buf_base_addr_c67x00_hcd_14328 buf_base_addr c67x00_hcd 0 14328 NULL nohasharray
++disable_so_hactive_hi_lvds_dvo_timing_14328 hactive_hi lvds_dvo_timing 0 14328 &disable_so_buf_base_addr_c67x00_hcd_14328
++disable_so_addr_nv4e_i2c_port_14334 addr nv4e_i2c_port 0 14334 NULL
++disable_so_ncp_add_be16_fndecl_14337 ncp_add_be16 fndecl 2 14337 NULL
++disable_so_paddr_mm_dmapool_14345 paddr mm_dmapool 0 14345 NULL
++disable_so_disc_wait_time_esas2r_adapter_14347 disc_wait_time esas2r_adapter 0 14347 NULL
++disable_so_sgidx_scsi_ctrl_blk_14351 sgidx scsi_ctrl_blk 0 14351 NULL
++disable_so_compute_split_timeout_timestamp_fndecl_14357 compute_split_timeout_timestamp fndecl 0-2 14357 NULL
++disable_so_sin_port_sockaddr_in_14374 sin_port sockaddr_in 0 14374 NULL
++disable_so_ci_get_mclk_frequency_ratio_fndecl_14375 ci_get_mclk_frequency_ratio fndecl 0-1 14375 NULL nohasharray
++disable_so_nilfs_btree_node_move_left_fndecl_14375 nilfs_btree_node_move_left fndecl 3 14375 &disable_so_ci_get_mclk_frequency_ratio_fndecl_14375
++disable_so_stv0367cab_get_derot_freq_fndecl_14379 stv0367cab_get_derot_freq fndecl 0-2 14379 NULL
++disable_so_line_time_radeon_crtc_14380 line_time radeon_crtc 0 14380 NULL
++disable_so_src_data_addr_icp_qat_fw_comn_req_mid_14391 src_data_addr icp_qat_fw_comn_req_mid 0 14391 NULL
++disable_so_dev_addr_cx231xx_i2c_xfer_data_14403 dev_addr cx231xx_i2c_xfer_data 0 14403 NULL
++disable_so_card_snd_timer_info32_14407 card snd_timer_info32 0 14407 NULL nohasharray
++disable_so_authenc_esn_verify_ahash_done_fndecl_14407 authenc_esn_verify_ahash_done fndecl 2 14407 &disable_so_card_snd_timer_info32_14407
++disable_so_compat_put_timespec_fndecl_14416 compat_put_timespec fndecl 0 14416 NULL
++disable_so_nct6775_write_fan_div_fndecl_14421 nct6775_write_fan_div fndecl 2 14421 NULL
++disable_so_compat_sys_settimeofday_fndecl_14431 compat_sys_settimeofday fndecl 0 14431 NULL
++disable_so_irlmp_start_idle_timer_fndecl_14433 irlmp_start_idle_timer fndecl 2 14433 NULL
++disable_so_min_flt_signal_struct_14436 min_flt signal_struct 0 14436 NULL
++disable_so___release_region_fndecl_14448 __release_region fndecl 2-3 14448 NULL
++disable_so_dccp_time_wait_fndecl_14450 dccp_time_wait fndecl 3-2 14450 NULL nohasharray
++disable_so_rt_mutex_timed_futex_lock_fndecl_14450 rt_mutex_timed_futex_lock fndecl 0 14450 &disable_so_dccp_time_wait_fndecl_14450
++disable_so_div1_pll_div_14458 div1 pll_div 0 14458 NULL
++disable_so_timestamp_ata_ering_entry_14485 timestamp ata_ering_entry 0 14485 NULL
++disable_so_mod_delayed_work_on_fndecl_14497 mod_delayed_work_on fndecl 1-4 14497 NULL
++disable_so_dma_addr_rx_14500 dma_addr rx 0 14500 NULL nohasharray
++disable_so__rtl92de_signal_scale_mapping_fndecl_14500 _rtl92de_signal_scale_mapping fndecl 0-2 14500 &disable_so_dma_addr_rx_14500
++disable_so_cp_hqd_pq_rptr_report_addr_hi_hqd_registers_14512 cp_hqd_pq_rptr_report_addr_hi hqd_registers 0 14512 NULL
++disable_so_snd_emu1010_internal_clock_info_fndecl_14514 snd_emu1010_internal_clock_info fndecl 0 14514 NULL
++disable_so_nicvf_queue_reg_write_fndecl_14519 nicvf_queue_reg_write fndecl 3-4 14519 NULL
++disable_so_icsk_user_timeout_inet_connection_sock_14528 icsk_user_timeout inet_connection_sock 0 14528 NULL
++disable_so_gcm_hash_assoc_remain_continue_fndecl_14530 gcm_hash_assoc_remain_continue fndecl 0 14530 NULL
++disable_so_get_max_engine_clock_in_mhz_fndecl_14540 get_max_engine_clock_in_mhz fndecl 0 14540 NULL
++disable_so_port_snd_seq_addr_14543 port snd_seq_addr 0 14543 NULL
++disable_so_nouveau_pmops_runtime_resume_fndecl_14545 nouveau_pmops_runtime_resume fndecl 0 14545 NULL
++disable_so_timeout_vardecl_nf_conntrack_netbios_ns_c_14547 timeout vardecl_nf_conntrack_netbios_ns.c 0 14547 NULL
++disable_so_cik_get_gpu_clock_counter_fndecl_14557 cik_get_gpu_clock_counter fndecl 0 14557 NULL
++disable_so_addrconf_fixup_forwarding_fndecl_14567 addrconf_fixup_forwarding fndecl 0-3 14567 NULL
++disable_so_batadv_nc_hash_choose_fndecl_14575 batadv_nc_hash_choose fndecl 0-2 14575 NULL
++disable_so_pbl_addr_iwch_reg_user_mr_resp_14576 pbl_addr iwch_reg_user_mr_resp 0 14576 NULL
++disable_so_m48t59_rtc_read_time_fndecl_14585 m48t59_rtc_read_time fndecl 0 14585 NULL
++disable_so_read_tsc_fndecl_14589 read_tsc fndecl 0 14589 NULL
++disable_so_rtsc_min_fndecl_14591 rtsc_min fndecl 3-4 14591 NULL
++disable_so_bank_addr_snd_ymfpci_voice_14595 bank_addr snd_ymfpci_voice 0 14595 NULL
++disable_so_hpi_bitstream_get_activity_fndecl_14606 hpi_bitstream_get_activity fndecl 0 14606 NULL
++disable_so_prandom_seed_early_fndecl_14613 prandom_seed_early fndecl 2 14613 NULL
++disable_so_cmd_cons_dma_addr_qlcnic_hostrq_tx_ctx_14615 cmd_cons_dma_addr qlcnic_hostrq_tx_ctx 0 14615 NULL
++disable_so_shash_async_import_fndecl_14618 shash_async_import fndecl 0 14618 NULL
++disable_so_osc_clock_freq_drx_common_attr_14640 osc_clock_freq drx_common_attr 0 14640 NULL
++disable_so_freq_ath5k_edge_power_14657 freq ath5k_edge_power 0 14657 NULL
++disable_so_td_addr_c67x00_td_14658 td_addr c67x00_td 0 14658 NULL
++disable_so_dma_addr_whc_std_14663 dma_addr whc_std 0 14663 NULL nohasharray
++disable_so_elfcorehdr_addr_vardecl_14663 elfcorehdr_addr vardecl 0 14663 &disable_so_dma_addr_whc_std_14663
++disable_so_ene_set_reg_addr_fndecl_14666 ene_set_reg_addr fndecl 2 14666 NULL
++disable_so_fbk_divider_panel_info_14668 fbk_divider panel_info 0 14668 NULL
++disable_so_bytes_snd_pcm_oss_runtime_14669 bytes snd_pcm_oss_runtime 0 14669 NULL
++disable_so_vadc_hw_settle_time_from_dt_fndecl_14670 vadc_hw_settle_time_from_dt fndecl 0-1 14670 NULL
++disable_so_crypto842_mod_init_fndecl_14677 crypto842_mod_init fndecl 0 14677 NULL
++disable_so_max77693_set_timeout_fndecl_14678 max77693_set_timeout fndecl 2 14678 NULL
++disable_so_mtt_base_addr_h_mlx4_qp_context_14690 mtt_base_addr_h mlx4_qp_context 0 14690 NULL
++disable_so_mtt_base_addr_l_mlx4_srq_context_14691 mtt_base_addr_l mlx4_srq_context 0 14691 NULL
++disable_so_fib_info_hash_size_vardecl_fib_semantics_c_14699 fib_info_hash_size vardecl_fib_semantics.c 0 14699 NULL
++disable_so___addr_hash_fndecl_14702 __addr_hash fndecl 0-3-4 14702 NULL
++disable_so_rise_time_lp8788_bl_config_14703 rise_time lp8788_bl_config 0 14703 NULL
++disable_so_ebitmap_start_positive_fndecl_14708 ebitmap_start_positive fndecl 0 14708 NULL
++disable_so_ssb_chipco_watchdog_timer_set_wdt_fndecl_14712 ssb_chipco_watchdog_timer_set_wdt fndecl 2-0 14712 NULL
++disable_so_saddr_ipq_14715 saddr ipq 0 14715 NULL
++disable_so_il4965_math_div_round_fndecl_14717 il4965_math_div_round fndecl 1-2 14717 NULL
++disable_so_dac_mmap_min_addr_vardecl_14725 dac_mmap_min_addr vardecl 0 14725 NULL
++disable_so_show_sas_end_dev_initiator_response_timeout_fndecl_14730 show_sas_end_dev_initiator_response_timeout fndecl 0 14730 NULL
++disable_so_md5_mod_init_fndecl_14761 md5_mod_init fndecl 0 14761 NULL
++disable_so_lasttime_htcp_14766 lasttime htcp 0 14766 NULL
++disable_so_cac_time_ms_mwifiex_radar_params_14775 cac_time_ms mwifiex_radar_params 0 14775 NULL
++disable_so_rs5c348_rtc_set_time_fndecl_14776 rs5c348_rtc_set_time fndecl 0 14776 NULL
++disable_so_o2net_sc_queue_delayed_work_fndecl_14778 o2net_sc_queue_delayed_work fndecl 3 14778 NULL
++disable_so_phonet_address_del_fndecl_14787 phonet_address_del fndecl 0 14787 NULL
++disable_so_efx_phc_adjtime_fndecl_14790 efx_phc_adjtime fndecl 0 14790 NULL
++disable_so_lzo_compress_pages_fndecl_14806 lzo_compress_pages fndecl 3-4 14806 NULL
++disable_so_chv_gpu_freq_fndecl_14811 chv_gpu_freq fndecl 0-2 14811 NULL nohasharray
++disable_so_nbytes_blkcipher_walk_14811 nbytes blkcipher_walk 0 14811 &disable_so_chv_gpu_freq_fndecl_14811
++disable_so_addr___mem_14815 addr __mem 0 14815 NULL
++disable_so___cpufreq_governor_fndecl_14821 __cpufreq_governor fndecl 0 14821 NULL nohasharray
++disable_so_hash_lo_smsc95xx_priv_14821 hash_lo smsc95xx_priv 0 14821 &disable_so___cpufreq_governor_fndecl_14821
++disable_so_naddr_ipath_user_sdma_pkt_14830 naddr ipath_user_sdma_pkt 0 14830 NULL
++disable_so_address_pci_mmcfg_region_14831 address pci_mmcfg_region 0 14831 NULL
++disable_so_crypto_ecb_module_init_fndecl_14834 crypto_ecb_module_init fndecl 0 14834 NULL
++disable_so_last_host_tsc_kvm_vcpu_arch_14836 last_host_tsc kvm_vcpu_arch 0 14836 NULL
++disable_so_eir_has_uuids_fndecl_14845 eir_has_uuids fndecl 2 14845 NULL
++disable_so_b_addr_xfer_desc_buffer_14849 b_addr xfer_desc_buffer 0 14849 NULL
++disable_so_xtal_freq_mxl5005s_config_14852 xtal_freq mxl5005s_config 0 14852 NULL
++disable_so_pvclock_tsc_khz_fndecl_14859 pvclock_tsc_khz fndecl 0 14859 NULL
++disable_so_isl1208_rtc_interrupt_fndecl_14861 isl1208_rtc_interrupt fndecl 0 14861 NULL
++disable_so_dwell_time_passive_wmi_start_scan_arg_14866 dwell_time_passive wmi_start_scan_arg 0 14866 NULL
++disable_so_writeout_period_time_vardecl_page_writeback_c_14870 writeout_period_time vardecl_page-writeback.c 0 14870 NULL
++disable_so_valid_mtrr_type_fndecl_14883 valid_mtrr_type fndecl 1 14883 NULL
++disable_so_dev_idx_sockaddr_nfc_llcp_14893 dev_idx sockaddr_nfc_llcp 0 14893 NULL
++disable_so_addr_nv50_disp_mthd_chan_14896 addr nv50_disp_mthd_chan 0 14896 NULL
++disable_so_ts_paddr_end_ath_hw_14898 ts_paddr_end ath_hw 0 14898 NULL
++disable_so_get_urb_to_r8a66597_addr_fndecl_14901 get_urb_to_r8a66597_addr fndecl 0 14901 NULL
++disable_so_remote_ref_time_lp_14915 remote_ref_time lp 0 14915 NULL
++disable_so_bitmap_id_iscsi_conn_14920 bitmap_id iscsi_conn 0 14920 NULL
++disable_so_root_btrfs_delayed_data_ref_14922 root btrfs_delayed_data_ref 0 14922 NULL
++disable_so_c67x00_ll_read_mem_le16_fndecl_14937 c67x00_ll_read_mem_le16 fndecl 2-4 14937 NULL
++disable_so_addr_sz_picolcd_data_14956 addr_sz picolcd_data 0 14956 NULL
++disable_so_xhci_calculate_intel_u1_timeout_fndecl_14959 xhci_calculate_intel_u1_timeout fndecl 0 14959 NULL
++disable_so_crypto_init_shash_ops_fndecl_14968 crypto_init_shash_ops fndecl 0 14968 NULL
++disable_so_cputime_to_compat_timeval_fndecl_14969 cputime_to_compat_timeval fndecl 1 14969 NULL nohasharray
++disable_so_cpufreq_set_cur_state_fndecl_14969 cpufreq_set_cur_state fndecl 1 14969 &disable_so_cputime_to_compat_timeval_fndecl_14969
++disable_so_start_time_flakey_c_14970 start_time flakey_c 0 14970 NULL
++disable_so_snd_asihpi_sampleclock_add_fndecl_14973 snd_asihpi_sampleclock_add fndecl 0 14973 NULL
++disable_so_addr_sky2_tx_le_14974 addr sky2_tx_le 0 14974 NULL
++disable_so_mcfg_addr_acpi_pci_root_14978 mcfg_addr acpi_pci_root 0 14978 NULL
++disable_so_cryptd_hash_import_fndecl_14985 cryptd_hash_import fndecl 0 14985 NULL
++disable_so_cac_start_time_wireless_dev_14998 cac_start_time wireless_dev 0 14998 NULL
++disable_so_inaddr_any_override_acl_subject_label_15014 inaddr_any_override acl_subject_label 0 15014 NULL
++disable_so_dma_addr_cmdQ_ce_15023 dma_addr cmdQ_ce 0 15023 NULL nohasharray
++disable_so_affs_init_bitmap_fndecl_15023 affs_init_bitmap fndecl 0 15023 &disable_so_dma_addr_cmdQ_ce_15023
++disable_so_select_addr_qla8xxx_minidump_entry_mux_15025 select_addr qla8xxx_minidump_entry_mux 0 15025 NULL
++disable_so_frequency_cx24113_state_15031 frequency cx24113_state 0 15031 NULL
++disable_so_port0_phy_addr_falcon_nvconfig_board_v2_15034 port0_phy_addr falcon_nvconfig_board_v2 0 15034 NULL
++disable_so_snd_dice_transaction_get_clock_source_fndecl_15041 snd_dice_transaction_get_clock_source fndecl 0 15041 NULL
++disable_so_valid_time_prefix_cacheinfo_15043 valid_time prefix_cacheinfo 0 15043 NULL
++disable_so_acpi_get_cpuid_fndecl_15055 acpi_get_cpuid fndecl 0-3 15055 NULL
++disable_so_faddr_rds_info_message_15057 faddr rds_info_message 0 15057 NULL
++disable_so_hsync_pulse_width_lo_oaktrail_timing_info_15059 hsync_pulse_width_lo oaktrail_timing_info 0 15059 NULL
++disable_so_mthca_WRITE_MTT_fndecl_15060 mthca_WRITE_MTT fndecl 0-3 15060 NULL
++disable_so_ath9k_iowrite32_fndecl_15073 ath9k_iowrite32 fndecl 2 15073 NULL
++disable_so_uid_max_xt_owner_match_info_15077 uid_max xt_owner_match_info 0 15077 NULL
++disable_so_addr_low_mcp_kreq_ether_recv_15081 addr_low mcp_kreq_ether_recv 0 15081 NULL
++disable_so_gem_get_device_address_fndecl_15093 gem_get_device_address fndecl 0 15093 NULL
++disable_so_s5m8767_rtc_set_time_reg_fndecl_15094 s5m8767_rtc_set_time_reg fndecl 0 15094 NULL
++disable_so_host_side_addr_fit_sg_descriptor_15098 host_side_addr fit_sg_descriptor 0 15098 NULL
++disable_so_gtt_start_gpu_addr_kfd_dev_15100 gtt_start_gpu_addr kfd_dev 0 15100 NULL
++disable_so_device_timestamp_ieee80211_rx_status_15103 device_timestamp ieee80211_rx_status 0 15103 NULL
++disable_so_tcp_fastopen_reset_cipher_fndecl_15116 tcp_fastopen_reset_cipher fndecl 2 15116 NULL
++disable_so_acpi_leave_sleep_state_prep_fndecl_15121 acpi_leave_sleep_state_prep fndecl 0-1 15121 NULL
++disable_so_suspend_freq_cpufreq_policy_15133 suspend_freq cpufreq_policy 0 15133 NULL
++disable_so___usb_control_msg_fndecl_15142 __usb_control_msg fndecl 8-2-9-5-0-4-6-3 15142 NULL
++disable_so_sin6_scope_id_sockaddr_in6_15151 sin6_scope_id sockaddr_in6 0 15151 NULL
++disable_so_ufshcd_devfreq_target_fndecl_15152 ufshcd_devfreq_target fndecl 0 15152 NULL
++disable_so_dma_addr_wbsd_host_15158 dma_addr wbsd_host 0 15158 NULL
++disable_so_timer_in_use_old_nes_hw_tune_timer_15174 timer_in_use_old nes_hw_tune_timer 0 15174 NULL
++disable_so_mce_log_therm_throt_event_fndecl_15178 mce_log_therm_throt_event fndecl 1 15178 NULL nohasharray
++disable_so_mce_write_fndecl_15178 mce_write fndecl 3-0 15178 &disable_so_mce_log_therm_throt_event_fndecl_15178
++disable_so_expires_cpu_timer_list_15182 expires cpu_timer_list 0 15182 NULL
++disable_so_address_drm_dp_aux_msg_15184 address drm_dp_aux_msg 0 15184 NULL
++disable_so_eip_tss_segment_32_15186 eip tss_segment_32 0 15186 NULL
++disable_so_snd_als4000_interrupt_fndecl_15191 snd_als4000_interrupt fndecl 1 15191 NULL nohasharray
++disable_so_pcf2123_rtc_read_time_fndecl_15191 pcf2123_rtc_read_time fndecl 0 15191 &disable_so_snd_als4000_interrupt_fndecl_15191
++disable_so_rcx_kvm_regs_15192 rcx kvm_regs 0 15192 NULL
++disable_so_dma_addr_s_rxd_os_15193 dma_addr s_rxd_os 0 15193 NULL
++disable_so_retrans_time_ifla_cacheinfo_15201 retrans_time ifla_cacheinfo 0 15201 NULL
++disable_so_cxd2820r_sleep_t_fndecl_15204 cxd2820r_sleep_t fndecl 0 15204 NULL
++disable_so_bcma_core_pcie2_war_delay_perst_enab_fndecl_15208 bcma_core_pcie2_war_delay_perst_enab fndecl 0 15208 NULL
++disable_so_btrfs_delayed_inode_reserve_metadata_fndecl_15215 btrfs_delayed_inode_reserve_metadata fndecl 0 15215 NULL
++disable_so___iowrite64_copy_fndecl_15216 __iowrite64_copy fndecl 3 15216 NULL nohasharray
++disable_so_ext3fs_dirhash_fndecl_15216 ext3fs_dirhash fndecl 2 15216 &disable_so___iowrite64_copy_fndecl_15216
++disable_so_nilfs_btree_propagate_fndecl_15225 nilfs_btree_propagate fndecl 0 15225 NULL
++disable_so_sha256_ssse3_update_fndecl_15226 sha256_ssse3_update fndecl 3 15226 NULL
++disable_so_target_addr_i2400m_bootrom_header_15227 target_addr i2400m_bootrom_header 0 15227 NULL
++disable_so_ip_vs_addr_equal_fndecl_15229 ip_vs_addr_equal fndecl 1 15229 NULL
++disable_so_matroxfb_PLL_calcclock_fndecl_15230 matroxfb_PLL_calcclock fndecl 2-3-0 15230 NULL
++disable_so_int_timeout_msb_data_15245 int_timeout msb_data 0 15245 NULL nohasharray
++disable_so_check_quotactl_permission_fndecl_15245 check_quotactl_permission fndecl 4-0-3-2 15245 &disable_so_int_timeout_msb_data_15245
++disable_so_expires_crash_uid_15248 expires crash_uid 0 15248 NULL
++disable_so_mul_n_basecase_fndecl_15258 mul_n_basecase fndecl 4 15258 NULL
++disable_so_crypto_xcbc_digest_update_fndecl_15259 crypto_xcbc_digest_update fndecl 3 15259 NULL
++disable_so_first_jiffies_ati_remote_15260 first_jiffies ati_remote 0 15260 NULL
++disable_so___get_hash_thresh_fndecl_15268 __get_hash_thresh fndecl 2 15268 NULL
++disable_so_isoc_in_endpointaddr_au0828_dev_15269 isoc_in_endpointaddr au0828_dev 0 15269 NULL
++disable_so_crypto_ctxsize_fndecl_15285 crypto_ctxsize fndecl 0 15285 NULL
++disable_so_max_rx_ip_addr_qlcnic_info_15295 max_rx_ip_addr qlcnic_info 0 15295 NULL nohasharray
++disable_so_mtrr_add_fndecl_15295 mtrr_add fndecl 1-2 15295 &disable_so_max_rx_ip_addr_qlcnic_info_15295
++disable_so_plugged_delay_bau_control_15298 plugged_delay bau_control 0 15298 NULL
++disable_so_skcipher_async_cb_fndecl_15303 skcipher_async_cb fndecl 2 15303 NULL
++disable_so_bytes_bitmap_storage_15310 bytes bitmap_storage 0 15310 NULL
++disable_so_xhci_calculate_u1_timeout_fndecl_15314 xhci_calculate_u1_timeout fndecl 0 15314 NULL nohasharray
++disable_so_sym_getpciclock_fndecl_15314 sym_getpciclock fndecl 0 15314 &disable_so_xhci_calculate_u1_timeout_fndecl_15314 nohasharray
++disable_so_major_hash_ocfs2_dx_hinfo_15314 major_hash ocfs2_dx_hinfo 0 15314 &disable_so_sym_getpciclock_fndecl_15314
++disable_so_ns_delay_scale_fndecl_15317 ns_delay_scale fndecl 4 15317 NULL
++disable_so_addr_atiixp_dma_desc_15333 addr atiixp_dma_desc 0 15333 NULL
++disable_so_logicalBlockNum_kernel_lb_addr_15336 logicalBlockNum kernel_lb_addr 0 15336 NULL
++disable_so_last_rx_timestamp_i40e_ring_15342 last_rx_timestamp i40e_ring 0 15342 NULL
++disable_so_ifa_index_ifaddrmsg_15348 ifa_index ifaddrmsg 0 15348 NULL
++disable_so_timing_reg_mtk_i2c_15349 timing_reg mtk_i2c 0 15349 NULL
++disable_so_msr_srcimp_desc_15353 msr srcimp_desc 0 15353 NULL
++disable_so_r2c_val_fc2580_freq_regs_15359 r2c_val fc2580_freq_regs 0 15359 NULL
++disable_so_xfer_udelay_nci_spi_15364 xfer_udelay nci_spi 0 15364 NULL
++disable_so_hash_key_type_and_desc_fndecl_15370 hash_key_type_and_desc fndecl 0 15370 NULL
++disable_so_set_window_latch_addr_flash_info_15372 set_window latch_addr_flash_info 1 15372 NULL
++disable_so_host_addr_ipw2100_bd_15376 host_addr ipw2100_bd 0 15376 NULL
++disable_so_eeprom_addr_state_15380 eeprom_addr state 0 15380 NULL
++disable_so_sys_mq_timedreceive_fndecl_15392 sys_mq_timedreceive fndecl 1-3 15392 NULL
++disable_so_ghash_async_update_fndecl_15422 ghash_async_update fndecl 0 15422 NULL
++disable_so___send_signal_fndecl_15424 __send_signal fndecl 0-1 15424 NULL
++disable_so_edi_user_regs_struct32_15430 edi user_regs_struct32 0 15430 NULL
++disable_so_perf_cpu_time_max_percent_handler_fndecl_15448 perf_cpu_time_max_percent_handler fndecl 0 15448 NULL
++disable_so_phy_register_fixup_for_uid_fndecl_15449 phy_register_fixup_for_uid fndecl 0 15449 NULL
++disable_so_vpd_address_write_fndecl_15453 vpd_address_write fndecl 0-2-3 15453 NULL
++disable_so_schedule_timeout_killable_fndecl_15458 schedule_timeout_killable fndecl 1-0 15458 NULL
++disable_so_a21_wdt_set_timeout_fndecl_15463 a21_wdt_set_timeout fndecl 2 15463 NULL
++disable_so_reg_val_pll_div_15464 reg_val pll_div 0 15464 NULL
++disable_so_adjfreq_ptp_clock_info_15468 adjfreq ptp_clock_info 2 15468 NULL
++disable_so___nlm_hash_addr6_fndecl_15486 __nlm_hash_addr6 fndecl 0 15486 NULL
++disable_so_addr_sgentry_15489 addr sgentry 0 15489 NULL
++disable_so_psb_sgx_interrupt_fndecl_15502 psb_sgx_interrupt fndecl 2-3 15502 NULL
++disable_so_clk_divider_recalc_rate_fndecl_15503 clk_divider_recalc_rate fndecl 2-0 15503 NULL
++disable_so_xferq_addr_hi_fcoe_kwqe_conn_offload2_15506 xferq_addr_hi fcoe_kwqe_conn_offload2 0 15506 NULL
++disable_so_enable_usb3_lpm_timeout_hc_driver_15513 enable_usb3_lpm_timeout hc_driver 0 15513 NULL
++disable_so_i2c_addr_lg2160_config_15521 i2c_addr lg2160_config 0 15521 NULL
++disable_so_timeout_ms_nvme_passthru_cmd_15526 timeout_ms nvme_passthru_cmd 0 15526 NULL
++disable_so_vm_cr_msr_nested_state_15529 vm_cr_msr nested_state 0 15529 NULL
++disable_so_ocfs2_xattr_find_divide_pos_fndecl_15532 ocfs2_xattr_find_divide_pos fndecl 0 15532 NULL
++disable_so_async_schedule_domain_fndecl_15534 async_schedule_domain fndecl 0 15534 NULL
++disable_so_last_cqm_event_signal_ieee80211_if_managed_15539 last_cqm_event_signal ieee80211_if_managed 0 15539 NULL
++disable_so_aic79xx_seltime_vardecl_aic79xx_osm_c_15542 aic79xx_seltime vardecl_aic79xx_osm.c 0 15542 NULL
++disable_so_hrtimer_interval_ms_pmu_15546 hrtimer_interval_ms pmu 0 15546 NULL
++disable_so_address_hi_msi_msg_15552 address_hi msi_msg 0 15552 NULL
++disable_so_test_and_clear_bit_le_fndecl_15554 test_and_clear_bit_le fndecl 1 15554 NULL
++disable_so_snd_echo_clock_source_put_fndecl_15557 snd_echo_clock_source_put fndecl 0 15557 NULL
++disable_so_wait_for_completion_interruptible_timeout_fndecl_15561 wait_for_completion_interruptible_timeout fndecl 0-2 15561 NULL
++disable_so_recover_width_atiixp_ide_timing_15562 recover_width atiixp_ide_timing 0 15562 NULL
++disable_so_start_int_poll_timer_fndecl_15566 start_int_poll_timer fndecl 2 15566 NULL
++disable_so_runtime_error_dev_pm_info_15567 runtime_error dev_pm_info 0 15567 NULL
++disable_so_rdmsrl_on_cpu_fndecl_15568 rdmsrl_on_cpu fndecl 0-1 15568 NULL
++disable_so_test_ahash_cycles_fndecl_15585 test_ahash_cycles fndecl 0-3 15585 NULL
++disable_so_freq_hz_xc5000_priv_15586 freq_hz xc5000_priv 0 15586 NULL
++disable_so_timeout_d_tpm_vendor_specific_15591 timeout_d tpm_vendor_specific 0 15591 NULL nohasharray
++disable_so_laddr_rds_info_connection_15591 laddr rds_info_connection 0 15591 &disable_so_timeout_d_tpm_vendor_specific_15591
++disable_so_be_get_rss_hash_opts_fndecl_15601 be_get_rss_hash_opts fndecl 0 15601 NULL
++disable_so_shadow_addr_kvm_shadow_walk_iterator_15604 shadow_addr kvm_shadow_walk_iterator 0 15604 NULL
++disable_so_hactive_lo_detailed_pixel_timing_15606 hactive_lo detailed_pixel_timing 0 15606 NULL
++disable_so_SYSC_getpgid_fndecl_15618 SYSC_getpgid fndecl 0-1 15618 NULL
++disable_so_inet_dump_ifaddr_fndecl_15621 inet_dump_ifaddr fndecl 0 15621 NULL
++disable_so_sjw_t_pucan_timing_slow_15625 sjw_t pucan_timing_slow 0 15625 NULL
++disable_so_slave_id_snd_timer_instance_15628 slave_id snd_timer_instance 0 15628 NULL nohasharray
++disable_so__ubh_find_last_zero_bit__fndecl_15628 _ubh_find_last_zero_bit_ fndecl 0-3-4-5 15628 &disable_so_slave_id_snd_timer_instance_15628
++disable_so_cmin_flt_signal_struct_15630 cmin_flt signal_struct 0 15630 NULL
++disable_so_sg_busaddr_ips_scb_15639 sg_busaddr ips_scb 0 15639 NULL
++disable_so_rq_timeout_rpc_rqst_15640 rq_timeout rpc_rqst 0 15640 NULL
++disable_so_hpi_bitstream_set_data_polarity_fndecl_15646 hpi_bitstream_set_data_polarity fndecl 0-1 15646 NULL
++disable_so_bs_rdiv_cx24113_state_15647 bs_rdiv cx24113_state 0 15647 NULL
++disable_so_addr_lo_sli4_sge_15650 addr_lo sli4_sge 0 15650 NULL
++disable_so_sctp_getsockopt_primary_addr_fndecl_15660 sctp_getsockopt_primary_addr fndecl 0 15660 NULL
++disable_so_chip_uptime_esas2r_adapter_15661 chip_uptime esas2r_adapter 0 15661 NULL
++disable_so_rx_statistics_jiffies_iwl_priv_15670 rx_statistics_jiffies iwl_priv 0 15670 NULL
++disable_so_ablkcipher_walk_phys_fndecl_15671 ablkcipher_walk_phys fndecl 0 15671 NULL
++disable_so_test_bitmaps_and_extents_fndecl_15676 test_bitmaps_and_extents fndecl 0 15676 NULL
++disable_so_cur_rx_coal_timeval_vnic_cq_15695 cur_rx_coal_timeval vnic_cq 0 15695 NULL
++disable_so_ds_addr_bus_dma_segment_15697 ds_addr bus_dma_segment 0 15697 NULL
++disable_so_hrtimer_forward_fndecl_15719 hrtimer_forward fndecl 0 15719 NULL
++disable_so_pmc_sleep_tmr_open_fndecl_15722 pmc_sleep_tmr_open fndecl 0 15722 NULL
++disable_so_ovol_updated_control_runtime_15730 ovol_updated control_runtime 0 15730 NULL
++disable_so___btrfs_run_delayed_refs_fndecl_15751 __btrfs_run_delayed_refs fndecl 0 15751 NULL
++disable_so_at803x_ack_interrupt_fndecl_15758 at803x_ack_interrupt fndecl 0 15758 NULL
++disable_so_phy_addr_bnx2_15762 phy_addr bnx2 0 15762 NULL
++disable_so_acpi_os_sleep_fndecl_15766 acpi_os_sleep fndecl 1 15766 NULL
++disable_so_mceusb_dev_driver_init_fndecl_15775 mceusb_dev_driver_init fndecl 0 15775 NULL
++disable_so_iowrite32be_fndecl_15786 iowrite32be fndecl 1 15786 NULL
++disable_so_rp1_freq_intel_gen6_power_mgmt_15787 rp1_freq intel_gen6_power_mgmt 0 15787 NULL
++disable_so_mapped_rem_addr_nes_cm_info_15788 mapped_rem_addr nes_cm_info 0 15788 NULL
++disable_so_bulkin_endpoint_addr_rsi_91x_usbdev_15790 bulkin_endpoint_addr rsi_91x_usbdev 0 15790 NULL
++disable_so_connected_addr_rds_info_socket_15792 connected_addr rds_info_socket 0 15792 NULL
++disable_so_usc_enable_aux_clock_fndecl_15795 usc_enable_aux_clock fndecl 2 15795 NULL
++disable_so_add_delayed_tree_ref_fndecl_15797 add_delayed_tree_ref fndecl 11-5-6-7-8-9 15797 NULL
++disable_so_wow_intr_before_sleep_ath_softc_15802 wow_intr_before_sleep ath_softc 0 15802 NULL
++disable_so_rgb_time_bd2802_led_platform_data_15808 rgb_time bd2802_led_platform_data 0 15808 NULL
++disable_so_intel_sdvo_get_slave_addr_fndecl_15818 intel_sdvo_get_slave_addr fndecl 0 15818 NULL
++disable_so_tsc_start_vardecl_tsc_c_15853 tsc_start vardecl_tsc.c 0 15853 NULL
++disable_so_get_cycle_time_fndecl_15861 get_cycle_time fndecl 0 15861 NULL
++disable_so_cookie_dmaengine_pcm_runtime_data_15862 cookie dmaengine_pcm_runtime_data 0 15862 NULL nohasharray
++disable_so___bfa_dma_be_addr_set_fndecl_15862 __bfa_dma_be_addr_set fndecl 2 15862 &disable_so_cookie_dmaengine_pcm_runtime_data_15862
++disable_so_vactive_timing_15863 vactive timing 0 15863 NULL
++disable_so_management_agent_address_sbp2_target_15871 management_agent_address sbp2_target 0 15871 NULL
++disable_so_i2c_check_addr_busy_fndecl_15889 i2c_check_addr_busy fndecl 2 15889 NULL
++disable_so_db_rec_addr_mlx4_cq_context_15890 db_rec_addr mlx4_cq_context 0 15890 NULL
++disable_so_addr_wil_memio_block_15893 addr wil_memio_block 0 15893 NULL
++disable_so_interrupt_out_size_usb_serial_port_15896 interrupt_out_size usb_serial_port 0 15896 NULL
++disable_so_wait_for_completion_killable_fndecl_15899 wait_for_completion_killable fndecl 0 15899 NULL
++disable_so_m48t35_read_time_fndecl_15900 m48t35_read_time fndecl 0 15900 NULL
++disable_so_ath9k_btcoex_handle_interrupt_fndecl_15912 ath9k_btcoex_handle_interrupt fndecl 2 15912 NULL
++disable_so_get_key_lib80211_crypto_ops_15916 get_key lib80211_crypto_ops 0-2 15916 NULL
++disable_so_tw_sport_inet_timewait_sock_15928 tw_sport inet_timewait_sock 0 15928 NULL
++disable_so_crypto_xor_byte_fndecl_15934 crypto_xor_byte fndecl 3 15934 NULL
++disable_so_nilfs_btree_promote_key_fndecl_15935 nilfs_btree_promote_key fndecl 4 15935 NULL
++disable_so_irq_set_chip_data_fndecl_15945 irq_set_chip_data fndecl 1 15945 NULL
++disable_so_retransmits_timed_out_fndecl_15952 retransmits_timed_out fndecl 3 15952 NULL
++disable_so_titsc_config_wires_fndecl_15953 titsc_config_wires fndecl 0 15953 NULL
++disable_so_cpufreq_quick_get_max_fndecl_15956 cpufreq_quick_get_max fndecl 0-1 15956 NULL
++disable_so_verify_ptp_clock_info_15963 verify ptp_clock_info 4 15963 NULL
++disable_so_gid_ceph_mds_caps_15966 gid ceph_mds_caps 0 15966 NULL
++disable_so_mlx4_ib_update_cache_on_guid_change_fndecl_15969 mlx4_ib_update_cache_on_guid_change fndecl 2-3 15969 NULL
++disable_so_musb_write_txfunaddr_fndecl_15974 musb_write_txfunaddr fndecl 2-3 15974 NULL
++disable_so_acpi_ut_add_address_range_fndecl_16007 acpi_ut_add_address_range fndecl 1-2-3-0 16007 NULL
++disable_so_dma_addr_rsxx_dma_16020 dma_addr rsxx_dma 0 16020 NULL
++disable_so_setup_acpi_object_addr_handler_16031 setup acpi_object_addr_handler 0 16031 NULL
++disable_so_idletimer_tg_init_fndecl_16041 idletimer_tg_init fndecl 0 16041 NULL
++disable_so_msdu_paddr_htt_mgmt_tx_desc_16042 msdu_paddr htt_mgmt_tx_desc 0 16042 NULL
++disable_so_radeon_atombios_parse_pplib_non_clock_info_fndecl_16044 radeon_atombios_parse_pplib_non_clock_info fndecl 2 16044 NULL
++disable_so_scale_stime_fndecl_16047 scale_stime fndecl 1-2-3-0 16047 NULL
++disable_so_wl12xx_enable_interrupts_fndecl_16057 wl12xx_enable_interrupts fndecl 0 16057 NULL
++disable_so_paddr_persistent_ram_zone_16058 paddr persistent_ram_zone 0 16058 NULL
++disable_so_get_dst_timing_fndecl_16070 get_dst_timing fndecl 0 16070 NULL
++disable_so_max_init_timeo_sctp_association_16072 max_init_timeo sctp_association 0 16072 NULL
++disable_so_update_gid_table_fndecl_16082 update_gid_table fndecl 2 16082 NULL
++disable_so_dma_addr_xilly_mapping_16083 dma_addr xilly_mapping 0 16083 NULL
++disable_so_bt_wait_time_ath_btcoex_16086 bt_wait_time ath_btcoex 0 16086 NULL
++disable_so_cfg80211_rx_unexpected_4addr_frame_fndecl_16088 cfg80211_rx_unexpected_4addr_frame fndecl 3 16088 NULL
++disable_so_ip6_rt_gc_timeout_netns_sysctl_ipv6_16090 ip6_rt_gc_timeout netns_sysctl_ipv6 0 16090 NULL nohasharray
++disable_so_ieee80211_if_read_path_refresh_time_fndecl_16090 ieee80211_if_read_path_refresh_time fndecl 3-0 16090 &disable_so_ip6_rt_gc_timeout_netns_sysctl_ipv6_16090
++disable_so_wimax_addr_scnprint_fndecl_16095 wimax_addr_scnprint fndecl 4 16095 NULL
++disable_so_airspy_s_frequency_fndecl_16098 airspy_s_frequency fndecl 0 16098 NULL
++disable_so_crypto_blkcipher_ctxsize_fndecl_16105 crypto_blkcipher_ctxsize fndecl 0 16105 NULL
++disable_so_blk_addr_f2fs_io_info_16107 blk_addr f2fs_io_info 0 16107 NULL
++disable_so_div_r0_pll_values_16109 div_r0 pll_values 0 16109 NULL
++disable_so_slack_hold_time_dql_16111 slack_hold_time dql 0 16111 NULL
++disable_so_iscsi_tpg_attrib_show_netif_timeout_fndecl_16119 iscsi_tpg_attrib_show_netif_timeout fndecl 0 16119 NULL
++disable_so_crypto_inc_fndecl_16125 crypto_inc fndecl 2 16125 NULL
++disable_so_dualwatch_jiffies_ivtv_16137 dualwatch_jiffies ivtv 0 16137 NULL nohasharray
++disable_so_enable_irq_fndecl_16137 enable_irq fndecl 1 16137 &disable_so_dualwatch_jiffies_ivtv_16137
++disable_so_alb_set_mac_address_fndecl_16150 alb_set_mac_address fndecl 0 16150 NULL
++disable_so_do_sigtimedwait_fndecl_16152 do_sigtimedwait fndecl 0 16152 NULL
++disable_so_sys_timerfd_create_fndecl_16155 sys_timerfd_create fndecl 2-1 16155 NULL
++disable_so_xen_smp_send_reschedule_fndecl_16161 xen_smp_send_reschedule fndecl 1 16161 NULL nohasharray
++disable_so_addrHigh_ulp_bde64_16161 addrHigh ulp_bde64 0 16161 &disable_so_xen_smp_send_reschedule_fndecl_16161
++disable_so_storm_memset_spq_addr_fndecl_16172 storm_memset_spq_addr fndecl 2-3 16172 NULL
++disable_so_inactivity_timeout_cfhsi_config_16173 inactivity_timeout cfhsi_config 0 16173 NULL nohasharray
++disable_so_iwl_eeprom_query_addr_fndecl_16173 iwl_eeprom_query_addr fndecl 2-3 16173 &disable_so_inactivity_timeout_cfhsi_config_16173
++disable_so_nmsrs_kvm_msr_list_16175 nmsrs kvm_msr_list 0 16175 NULL
++disable_so_count_radeon_vce_clock_voltage_dependency_table_16180 count radeon_vce_clock_voltage_dependency_table 0 16180 NULL
++disable_so_qla4_83xx_wr_reg_indirect_fndecl_16184 qla4_83xx_wr_reg_indirect fndecl 2-3 16184 NULL
++disable_so_show_src_clock_fndecl_16195 show_src_clock fndecl 0 16195 NULL
++disable_so_timeout_ncp_lock_ioctl_16196 timeout ncp_lock_ioctl 0 16196 NULL
++disable_so_sctp_getsockopt_local_addrs_fndecl_16201 sctp_getsockopt_local_addrs fndecl 2 16201 NULL nohasharray
++disable_so_wusb_set_dev_addr_fndecl_16201 wusb_set_dev_addr fndecl 3 16201 &disable_so_sctp_getsockopt_local_addrs_fndecl_16201
++disable_so_ageing_time___bridge_info_16213 ageing_time __bridge_info 0 16213 NULL
++disable_so_bd_list_addr_hi_bnx2i_login_request_16219 bd_list_addr_hi bnx2i_login_request 0 16219 NULL
++disable_so_btrfs_delete_delayed_items_fndecl_16220 btrfs_delete_delayed_items fndecl 0 16220 NULL nohasharray
++disable_so_sethdraddr_fndecl_16220 sethdraddr fndecl 0 16220 &disable_so_btrfs_delete_delayed_items_fndecl_16220
++disable_so_ci_i2c_addr_netup_ci_state_16240 ci_i2c_addr netup_ci_state 0 16240 NULL
++disable_so_hi_phys_addr_16280 hi phys_addr 0 16280 NULL
++disable_so___chk_range_not_ok_fndecl_16282 __chk_range_not_ok fndecl 1-2 16282 NULL
++disable_so_ocfs2_add_clusters_in_btree_fndecl_16283 ocfs2_add_clusters_in_btree fndecl 0-4 16283 NULL
++disable_so_prev_task_link_tss_segment_32_16296 prev_task_link tss_segment_32 0 16296 NULL
++disable_so_ad1889_load_adc_interrupt_count_fndecl_16303 ad1889_load_adc_interrupt_count fndecl 2 16303 NULL
++disable_so_cp_mqd_base_addr_lo_cik_mqd_16307 cp_mqd_base_addr_lo cik_mqd 0 16307 NULL
++disable_so_led_on_time_adp5520_leds_platform_data_16308 led_on_time adp5520_leds_platform_data 0 16308 NULL
++disable_so_dma_addr_adf_etr_ring_data_16309 dma_addr adf_etr_ring_data 0 16309 NULL
++disable_so_demod_address_s921_config_16312 demod_address s921_config 0 16312 NULL
++disable_so_valid_lft_inet6_ifaddr_16318 valid_lft inet6_ifaddr 0 16318 NULL
++disable_so_addr_boom_rx_desc_16324 addr boom_rx_desc 0 16324 NULL
++disable_so_ghash_async_digest_fndecl_16326 ghash_async_digest fndecl 0 16326 NULL
++disable_so_i_atime_f2fs_inode_16339 i_atime f2fs_inode 0 16339 NULL
++disable_so_update_bus_time_fndecl_16343 update_bus_time fndecl 0 16343 NULL
++disable_so_addr_st_register_16344 addr st_register 0 16344 NULL nohasharray
++disable_so_team_port_set_team_dev_addr_fndecl_16344 team_port_set_team_dev_addr fndecl 0 16344 &disable_so_addr_st_register_16344
++disable_so_pll_prediv_dibx000_bandwidth_config_16345 pll_prediv dibx000_bandwidth_config 0 16345 NULL
++disable_so_delay_kbd_repeat_16363 delay kbd_repeat 0 16363 NULL
++disable_so_rproc_elf_get_boot_addr_fndecl_16372 rproc_elf_get_boot_addr fndecl 0 16372 NULL
++disable_so_f2fs_dentry_hash_fndecl_16378 f2fs_dentry_hash fndecl 0 16378 NULL
++disable_so_alarm_nvkm_timer_16388 alarm nvkm_timer 2 16388 NULL
++disable_so_snd_seq_oss_timer_continue_fndecl_16406 snd_seq_oss_timer_continue fndecl 0 16406 NULL
++disable_so_p1_mt9t112_pll_divider_16434 p1 mt9t112_pll_divider 0 16434 NULL
++disable_so_unmap_sg_dma_map_ops_16437 unmap_sg dma_map_ops 3 16437 NULL
++disable_so_ccp_aes_rfc3686_encrypt_fndecl_16455 ccp_aes_rfc3686_encrypt fndecl 0 16455 NULL
++disable_so_bad_dma_addr_vardecl_amd_gart_64_c_16460 bad_dma_addr vardecl_amd_gart_64.c 0 16460 NULL
++disable_so_ath6kl_sdio_set_cmd53_arg_fndecl_16468 ath6kl_sdio_set_cmd53_arg fndecl 3-7 16468 NULL
++disable_so_list_phy_addr_list_info_hold_16469 list_phy_addr list_info_hold 0 16469 NULL
++disable_so_jack_detect_delay_max98095_pdata_16483 jack_detect_delay max98095_pdata 0 16483 NULL
++disable_so_bcma_erom_get_addr_desc_fndecl_16484 bcma_erom_get_addr_desc fndecl 0 16484 NULL nohasharray
++disable_so_fib_info_hash_free_fndecl_16484 fib_info_hash_free fndecl 2 16484 &disable_so_bcma_erom_get_addr_desc_fndecl_16484
++disable_so_frequency_xc2028_data_16487 frequency xc2028_data 0 16487 NULL
++disable_so_acpi_hw_extended_sleep_fndecl_16503 acpi_hw_extended_sleep fndecl 0 16503 NULL
++disable_so_lxt970_ack_interrupt_fndecl_16507 lxt970_ack_interrupt fndecl 0 16507 NULL nohasharray
++disable_so_debug_dma_map_page_fndecl_16507 debug_dma_map_page fndecl 3-6-4 16507 &disable_so_lxt970_ack_interrupt_fndecl_16507
++disable_so_freq_hi_jiffies_od_cpu_dbs_info_s_16514 freq_hi_jiffies od_cpu_dbs_info_s 0 16514 NULL
++disable_so_address_u132_respond_16518 address u132_respond 0 16518 NULL
++disable_so_tegra_spi_transfer_delay_fndecl_16528 tegra_spi_transfer_delay fndecl 1 16528 NULL
++disable_so_cdb_phyaddr_hi32_AdapterControlBlock_16537 cdb_phyaddr_hi32 AdapterControlBlock 0 16537 NULL
++disable_so_copied_seq_cxgbi_sock_16540 copied_seq cxgbi_sock 0 16540 NULL
++disable_so_src_addr_lo_dmae_command_16542 src_addr_lo dmae_command 0 16542 NULL
++disable_so_addr_lo_eth_tx_bd_16543 addr_lo eth_tx_bd 0 16543 NULL
++disable_so_ccp_aes_cmac_digest_fndecl_16547 ccp_aes_cmac_digest fndecl 0 16547 NULL
++disable_so_ip_pt_regs_16548 ip pt_regs 0 16548 NULL
++disable_so_sleep_vol_cache_fan53555_device_info_16553 sleep_vol_cache fan53555_device_info 0 16553 NULL
++disable_so_hblank_hi_oaktrail_timing_info_16559 hblank_hi oaktrail_timing_info 0 16559 NULL
++disable_so_qla2x00_get_async_timeout_fndecl_16577 qla2x00_get_async_timeout fndecl 0 16577 NULL
++disable_so___bitmap_andnot_fndecl_16578 __bitmap_andnot fndecl 4 16578 NULL
++disable_so_hfreq_fb_cvt_data_16579 hfreq fb_cvt_data 0 16579 NULL
++disable_so_tseg1_pucan_timing_slow_16580 tseg1 pucan_timing_slow 0 16580 NULL
++disable_so_freq_rfmon_header_16593 freq rfmon_header 0 16593 NULL
++disable_so_load_block_bitmap_fndecl_16597 load_block_bitmap fndecl 0-3 16597 NULL
++disable_so_flush_timer_il_lq_sta_16606 flush_timer il_lq_sta 0 16606 NULL
++disable_so_ieee80211_channel_to_frequency_fndecl_16619 ieee80211_channel_to_frequency fndecl 0-1 16619 NULL
++disable_so_log_guest_addr_vhost_vring_addr_16627 log_guest_addr vhost_vring_addr 0 16627 NULL nohasharray
++disable_so_cpumask_first_fndecl_16627 cpumask_first fndecl 0 16627 &disable_so_log_guest_addr_vhost_vring_addr_16627
++disable_so_sctp_addr_id2transport_fndecl_16639 sctp_addr_id2transport fndecl 3 16639 NULL
++disable_so_dx_context_paddr_sst_hsw_16656 dx_context_paddr sst_hsw 0 16656 NULL
++disable_so_demod_address_au8522_config_16665 demod_address au8522_config 0 16665 NULL
++disable_so_acpi_device_uid_show_fndecl_16681 acpi_device_uid_show fndecl 0 16681 NULL nohasharray
++disable_so_sys_setresuid16_fndecl_16681 sys_setresuid16 fndecl 0-1-2-3 16681 &disable_so_acpi_device_uid_show_fndecl_16681
++disable_so_crypto_rfc4106_encrypt_fndecl_16683 crypto_rfc4106_encrypt fndecl 0 16683 NULL
++disable_so_field_bit_length_acpi_create_field_info_16693 field_bit_length acpi_create_field_info 0 16693 NULL nohasharray
++disable_so_insert_revoke_hash_fndecl_16693 insert_revoke_hash fndecl 0-2 16693 &disable_so_field_bit_length_acpi_create_field_info_16693
++disable_so_target_cpufreq_driver_16704 target cpufreq_driver 2 16704 NULL
++disable_so_vm_mmap_pgoff_fndecl_16712 vm_mmap_pgoff fndecl 0-2-4-5-6 16712 NULL
++disable_so_time_kvm_vcpu_arch_16718 time kvm_vcpu_arch 0 16718 NULL
++disable_so_mark_bitmap_end_fndecl_16723 mark_bitmap_end fndecl 1-2 16723 NULL
++disable_so_edi_tss_segment_32_16727 edi tss_segment_32 0 16727 NULL
++disable_so_native_calibrate_tsc_fndecl_16735 native_calibrate_tsc fndecl 0 16735 NULL
++disable_so_buf_phy_addr_low_ql_rcv_buf_cb_16742 buf_phy_addr_low ql_rcv_buf_cb 0 16742 NULL
++disable_so_mv88e6131_port_to_phy_addr_fndecl_16751 mv88e6131_port_to_phy_addr fndecl 0-2 16751 NULL
++disable_so_vpd_cap_addr_pci_params_16752 vpd_cap_addr pci_params 0 16752 NULL nohasharray
++disable_so_qce_ablkcipher_decrypt_fndecl_16752 qce_ablkcipher_decrypt fndecl 0 16752 &disable_so_vpd_cap_addr_pci_params_16752
++disable_so_guest_interruptibility_info_vmcs12_16754 guest_interruptibility_info vmcs12 0 16754 NULL
++disable_so_dma_ops_alloc_addresses_fndecl_16763 dma_ops_alloc_addresses fndecl 0-3-4-5 16763 NULL
++disable_so_base_io_addr_cx25821_dev_16770 base_io_addr cx25821_dev 0 16770 NULL
++disable_so_w1_delay_parm_vardecl_w1_io_c_16771 w1_delay_parm vardecl_w1_io.c 0 16771 NULL
++disable_so_devm_kasprintf_fndecl_16792 devm_kasprintf fndecl 2 16792 NULL nohasharray
++disable_so_crypto_rfc4309_setauthsize_fndecl_16792 crypto_rfc4309_setauthsize fndecl 2 16792 &disable_so_devm_kasprintf_fndecl_16792
++disable_so_blp_qat_crypto_request_buffs_16801 blp qat_crypto_request_buffs 0 16801 NULL
++disable_so_crypto_enqueue_request_fndecl_16802 crypto_enqueue_request fndecl 0 16802 NULL
++disable_so_si2165_sleep_fndecl_16803 si2165_sleep fndecl 0 16803 NULL
++disable_so_count_radeon_uvd_clock_voltage_dependency_table_16804 count radeon_uvd_clock_voltage_dependency_table 0 16804 NULL
++disable_so_addr_low_viafb_vx855_dma_descr_16813 addr_low viafb_vx855_dma_descr 0 16813 NULL
++disable_so_shash_async_digest_fndecl_16817 shash_async_digest fndecl 0 16817 NULL
++disable_so_ip_apei_exec_context_16824 ip apei_exec_context 0 16824 NULL nohasharray
++disable_so_si_program_ulv_memory_timing_parameters_fndecl_16824 si_program_ulv_memory_timing_parameters fndecl 0 16824 &disable_so_ip_apei_exec_context_16824
++disable_so_xfs_btree_delete_fndecl_16843 xfs_btree_delete fndecl 0 16843 NULL
++disable_so_round_jiffies_up_fndecl_16844 round_jiffies_up fndecl 1-0 16844 NULL
++disable_so___add_delayed_refs_fndecl_16846 __add_delayed_refs fndecl 0-5 16846 NULL
++disable_so_tv_sec_xfs_bstime_16848 tv_sec xfs_bstime 0 16848 NULL
++disable_so_lsize_mtrr_value_16850 lsize mtrr_value 0 16850 NULL
++disable_so_demod_address_stv0288_config_16852 demod_address stv0288_config 0 16852 NULL
++disable_so_efi_lookup_mapped_addr_fndecl_16854 efi_lookup_mapped_addr fndecl 1 16854 NULL
++disable_so_schedule_timeout_fndecl_16856 schedule_timeout fndecl 0-1 16856 NULL
++disable_so_ceph_aes_decrypt2_fndecl_16857 ceph_aes_decrypt2 fndecl 2-8 16857 NULL
++disable_so_da9055_wdt_set_timeout_fndecl_16860 da9055_wdt_set_timeout fndecl 2-0 16860 NULL
++disable_so_erst_dma_addr_xhci_erst_16864 erst_dma_addr xhci_erst 0 16864 NULL
++disable_so_prefered_lft_inet6_ifaddr_16873 prefered_lft inet6_ifaddr 0 16873 NULL
++disable_so_ti_tsc_driver_init_fndecl_16883 ti_tsc_driver_init fndecl 0 16883 NULL
++disable_so_dataout_timeout_iscsi_node_attrib_16884 dataout_timeout iscsi_node_attrib 0 16884 NULL
++disable_so___rtc_read_time_fndecl_16890 __rtc_read_time fndecl 0 16890 NULL nohasharray
++disable_so_tn_smc_rreg_fndecl_16890 tn_smc_rreg fndecl 0-2 16890 &disable_so___rtc_read_time_fndecl_16890
++disable_so_lpage_dma_addr_genwqe_sgl_16893 lpage_dma_addr genwqe_sgl 0 16893 NULL
++disable_so_schedule_on_each_cpu_fndecl_16903 schedule_on_each_cpu fndecl 0 16903 NULL nohasharray
++disable_so_print_dropped_signal_fndecl_16903 print_dropped_signal fndecl 1 16903 &disable_so_schedule_on_each_cpu_fndecl_16903
++disable_so_pctv452e_read_mac_address_fndecl_16904 pctv452e_read_mac_address fndecl 0 16904 NULL
++disable_so_regcache_lzo_get_blkindex_fndecl_16910 regcache_lzo_get_blkindex fndecl 0-2 16910 NULL
++disable_so_login_timeout_qla_hw_data_16911 login_timeout qla_hw_data 0 16911 NULL
++disable_so_bitmap_find_free_region_fndecl_16912 bitmap_find_free_region fndecl 0-2-3 16912 NULL
++disable_so_bit_reverse_mpeg_output_fndecl_16915 bit_reverse_mpeg_output fndecl 0 16915 NULL
++disable_so_da9063_wdt_set_timeout_fndecl_16916 da9063_wdt_set_timeout fndecl 2-0 16916 NULL
++disable_so_pci_bus_insert_busn_res_fndecl_16923 pci_bus_insert_busn_res fndecl 3-2 16923 NULL
++disable_so_port_mlx4_next_alias_guid_work_16924 port mlx4_next_alias_guid_work 0 16924 NULL
++disable_so_port_guid_nodeinfo_16928 port_guid nodeinfo 0 16928 NULL
++disable_so_transition_latency_cpufreq_cpuinfo_16939 transition_latency cpufreq_cpuinfo 0 16939 NULL
++disable_so_si476x_core_cmd_fm_phase_div_status_fndecl_16940 si476x_core_cmd_fm_phase_div_status fndecl 0 16940 NULL nohasharray
++disable_so_convert_hwaddr_wlcore_ops_16940 convert_hwaddr wlcore_ops 0 16940 &disable_so_si476x_core_cmd_fm_phase_div_status_fndecl_16940
++disable_so_tps80031_rtc_set_time_fndecl_16950 tps80031_rtc_set_time fndecl 0 16950 NULL
++disable_so_select_addr_qla8044_minidump_entry_mux_16956 select_addr qla8044_minidump_entry_mux 0 16956 NULL
++disable_so_hr222_get_external_clock_fndecl_16966 hr222_get_external_clock fndecl 0 16966 NULL
++disable_so_evm_calc_hash_fndecl_16971 evm_calc_hash fndecl 0-4 16971 NULL
++disable_so_ima_maxorder_vardecl_ima_crypto_c_16973 ima_maxorder vardecl_ima_crypto.c 0 16973 NULL
++disable_so_delay_sh_keysc_info_16974 delay sh_keysc_info 0 16974 NULL
++disable_so_sample_point_can_bittiming_16980 sample_point can_bittiming 0 16980 NULL
++disable_so_ipmi_set_timeout_fndecl_16982 ipmi_set_timeout fndecl 0 16982 NULL
++disable_so_address_SG32ENTRY_16984 address SG32ENTRY 0 16984 NULL
++disable_so_mlx4_ib_guid_port_init_fndecl_16985 mlx4_ib_guid_port_init fndecl 2 16985 NULL
++disable_so_ma901radio_set_freq_fndecl_16989 ma901radio_set_freq fndecl 0-2 16989 NULL
++disable_so_i_ctime_f2fs_inode_17005 i_ctime f2fs_inode 0 17005 NULL
++disable_so_pa_rxrf_lna2_freq_tune_chan_info_2064_lcnphy_17009 pa_rxrf_lna2_freq_tune chan_info_2064_lcnphy 0 17009 NULL
++disable_so_vhost_add_used_and_signal_n_fndecl_17013 vhost_add_used_and_signal_n fndecl 4 17013 NULL
++disable_so_fragshift_snd_pcm_oss_runtime_17015 fragshift snd_pcm_oss_runtime 0 17015 NULL
++disable_so_sci_rx_interrupt_fndecl_17016 sci_rx_interrupt fndecl 1 17016 NULL
++disable_so_wakeup_last_time_show_fndecl_17020 wakeup_last_time_show fndecl 0 17020 NULL
++disable_so_from_addr_efx_memcpy_req_17021 from_addr efx_memcpy_req 0 17021 NULL
++disable_so_tcp_timer_core_clk_divisor_nes_adapter_17033 tcp_timer_core_clk_divisor nes_adapter 0 17033 NULL
++disable_so_reconnect_delay_srp_rport_17034 reconnect_delay srp_rport 0 17034 NULL
++disable_so_clock_frequency_s3c_camif_sensor_info_17035 clock_frequency s3c_camif_sensor_info 0 17035 NULL
++disable_so_copy_to_user_kmaddress_fndecl_17049 copy_to_user_kmaddress fndecl 0 17049 NULL
++disable_so_il_send_rxon_timing_fndecl_17051 il_send_rxon_timing fndecl 0 17051 NULL
++disable_so_system_time_pvclock_vcpu_time_info_17061 system_time pvclock_vcpu_time_info 0 17061 NULL
++disable_so_ds3234_read_time_fndecl_17062 ds3234_read_time fndecl 0 17062 NULL
++disable_so_dat_addr_batadv_orig_node_17063 dat_addr batadv_orig_node 0 17063 NULL
++disable_so_master_cycle_now_kvm_arch_17072 master_cycle_now kvm_arch 0 17072 NULL
++disable_so_netxen_decode_crb_addr_fndecl_17076 netxen_decode_crb_addr fndecl 0-1 17076 NULL
++disable_so_pwm1_freq_lm63_data_17083 pwm1_freq lm63_data 0 17083 NULL
++disable_so_leddc_on_time_ssb_sprom_17089 leddc_on_time ssb_sprom 0 17089 NULL
++disable_so_timer_offset_tg3_17106 timer_offset tg3 0 17106 NULL
++disable_so_rcvhdrqtailaddr_phys_qib_ctxtdata_17108 rcvhdrqtailaddr_phys qib_ctxtdata 0 17108 NULL nohasharray
++disable_so_next_signal_fndecl_17108 next_signal fndecl 0 17108 &disable_so_rcvhdrqtailaddr_phys_qib_ctxtdata_17108
++disable_so_ptp_write_host_time_efx_nic_type_17118 ptp_write_host_time efx_nic_type 2 17118 NULL
++disable_so_isl12057_rtc_set_time_fndecl_17119 isl12057_rtc_set_time fndecl 0 17119 NULL
++disable_so_p4_mt9t112_pll_divider_17123 p4 mt9t112_pll_divider 0 17123 NULL
++disable_so___sk_mem_schedule_fndecl_17130 __sk_mem_schedule fndecl 2 17130 NULL
++disable_so_do_sched_setscheduler_fndecl_17133 do_sched_setscheduler fndecl 2-1-0 17133 NULL
++disable_so_demod_address_s5h1420_config_17152 demod_address s5h1420_config 0 17152 NULL
++disable_so_stats_reset_time_fnic_17155 stats_reset_time fnic 0 17155 NULL nohasharray
++disable_so_buffer_addr_hi_iscsi_bd_17155 buffer_addr_hi iscsi_bd 0 17155 &disable_so_stats_reset_time_fnic_17155 nohasharray
++disable_so_ver_sync_end_via_display_timing_17155 ver_sync_end via_display_timing 0 17155 &disable_so_buffer_addr_hi_iscsi_bd_17155
++disable_so_bit_cursor_fndecl_17158 bit_cursor fndecl 4-5-6 17158 NULL
++disable_so_nv50_fan_pwm_clock_fndecl_17168 nv50_fan_pwm_clock fndecl 0 17168 NULL
++disable_so_s_def_resuid_ext2_super_block_17174 s_def_resuid ext2_super_block 0 17174 NULL
++disable_so_delay_until_ipoib_mcast_17176 delay_until ipoib_mcast 0 17176 NULL
++disable_so_command_addr_acpi_ec_17177 command_addr acpi_ec 0 17177 NULL
++disable_so_set_freq_adis16400_chip_info_17183 set_freq adis16400_chip_info 0 17183 NULL
++disable_so_fd_pppol2tpin6_addr_17186 fd pppol2tpin6_addr 0 17186 NULL
++disable_so_genwqe_set_interrupt_capability_fndecl_17191 genwqe_set_interrupt_capability fndecl 2-0 17191 NULL
++disable_so_random_frame_ehci_hcd_17194 random_frame ehci_hcd 0 17194 NULL nohasharray
++disable_so_ctrl_req_addr_dwc3_17194 ctrl_req_addr dwc3 0 17194 &disable_so_random_frame_ehci_hcd_17194
++disable_so_xhci_disable_usb3_lpm_timeout_fndecl_17199 xhci_disable_usb3_lpm_timeout fndecl 0 17199 NULL
++disable_so_sp_dma_addr_hostdata_17202 sp_dma_addr hostdata 0 17202 NULL nohasharray
++disable_so_drbg_hash_hashgen_fndecl_17202 drbg_hash_hashgen fndecl 0-3 17202 &disable_so_sp_dma_addr_hostdata_17202
++disable_so_demod_address_mt312_config_17203 demod_address mt312_config 0 17203 NULL
++disable_so_buf_count_ccp_sha_req_ctx_17205 buf_count ccp_sha_req_ctx 0 17205 NULL
++disable_so_atiixp_set_pio_timing_fndecl_17209 atiixp_set_pio_timing fndecl 3 17209 NULL
++disable_so_tpm2_get_random_fndecl_17212 tpm2_get_random fndecl 0-3 17212 NULL
++disable_so_offset_btrfs_key_17213 offset btrfs_key 0 17213 NULL
++disable_so_dccps_timestamp_time_dccp_sock_17214 dccps_timestamp_time dccp_sock 0 17214 NULL
++disable_so_this_tsc_write_kvm_vcpu_arch_17221 this_tsc_write kvm_vcpu_arch 0 17221 NULL
++disable_so_cpufreq_driver_target_fndecl_17222 cpufreq_driver_target fndecl 2 17222 NULL
++disable_so_prev_task_link_tss_segment_16_17224 prev_task_link tss_segment_16 0 17224 NULL
++disable_so_sc92031_interrupt_fndecl_17226 sc92031_interrupt fndecl 1 17226 NULL nohasharray
++disable_so_daddr_irnet_socket_17226 daddr irnet_socket 0 17226 &disable_so_sc92031_interrupt_fndecl_17226 nohasharray
++disable_so_new_center_freq_seg1_ieee80211_wide_bw_chansw_ie_17226 new_center_freq_seg1 ieee80211_wide_bw_chansw_ie 0 17226 &disable_so_daddr_irnet_socket_17226
++disable_so_iffreq_tuner_params_17241 iffreq tuner_params 0 17241 NULL
++disable_so_erase_time_flchip_17257 erase_time flchip 0 17257 NULL
++disable_so_lp8788_is_valid_buck_addr_fndecl_17271 lp8788_is_valid_buck_addr fndecl 1 17271 NULL nohasharray
++disable_so_ntfs_mft_bitmap_find_and_alloc_free_rec_nolock_fndecl_17271 ntfs_mft_bitmap_find_and_alloc_free_rec_nolock fndecl 0 17271 &disable_so_lp8788_is_valid_buck_addr_fndecl_17271
++disable_so_pci_timedia_setup_fndecl_17276 pci_timedia_setup fndecl 4 17276 NULL
++disable_so_security_task_setpgid_fndecl_17277 security_task_setpgid fndecl 2 17277 NULL
++disable_so_ref_div_pll_info_17279 ref_div pll_info 0 17279 NULL nohasharray
++disable_so_ifr6_ifindex_in6_ifreq_17279 ifr6_ifindex in6_ifreq 0 17279 &disable_so_ref_div_pll_info_17279
++disable_so_nm_gid_nl_mmap_hdr_17280 nm_gid nl_mmap_hdr 0 17280 NULL
++disable_so_account_system_time_fndecl_17285 account_system_time fndecl 3-4 17285 NULL nohasharray
++disable_so_ptrace_signal_fndecl_17285 ptrace_signal fndecl 0-1 17285 &disable_so_account_system_time_fndecl_17285
++disable_so_cm36651_read_int_time_fndecl_17287 cm36651_read_int_time fndecl 0 17287 NULL
++disable_so_calculate_destination_timeout_fndecl_17288 calculate_destination_timeout fndecl 0 17288 NULL
++disable_so_hsync_pulse_width_lo_detailed_pixel_timing_17297 hsync_pulse_width_lo detailed_pixel_timing 0 17297 NULL
++disable_so_pci_pm_runtime_suspend_fndecl_17299 pci_pm_runtime_suspend fndecl 0 17299 NULL
++disable_so_ifindex_ip6addrlbl_entry_17305 ifindex ip6addrlbl_entry 0 17305 NULL
++disable_so_lookup_enclosing_address_handler_fndecl_17312 lookup_enclosing_address_handler fndecl 3 17312 NULL
++disable_so_addrconf_mod_rs_timer_fndecl_17333 addrconf_mod_rs_timer fndecl 2 17333 NULL nohasharray
++disable_so_dma_addr_tse_buffer_17333 dma_addr tse_buffer 0 17333 &disable_so_addrconf_mod_rs_timer_fndecl_17333
++disable_so_mod_timer_pinned_fndecl_17334 mod_timer_pinned fndecl 2-0 17334 NULL
++disable_so_cpufreq_power_cooling_register_fndecl_17338 cpufreq_power_cooling_register fndecl 2 17338 NULL
++disable_so_bytenr_btrfs_delayed_ref_node_17344 bytenr btrfs_delayed_ref_node 0 17344 NULL
++disable_so_genwqe_debugfs_queue_working_time_open_fndecl_17354 genwqe_debugfs_queue_working_time_open fndecl 0 17354 NULL
++disable_so_poll_select_set_timeout_fndecl_17361 poll_select_set_timeout fndecl 2-3 17361 NULL nohasharray
++disable_so_dma_addr_efx_buffer_17361 dma_addr efx_buffer 0 17361 &disable_so_poll_select_set_timeout_fndecl_17361
++disable_so_loc_addr_nes_cm_node_17375 loc_addr nes_cm_node 0 17375 NULL
++disable_so_sdev_show_eh_timeout_fndecl_17386 sdev_show_eh_timeout fndecl 0 17386 NULL
++disable_so_isl1208_i2c_set_time_fndecl_17398 isl1208_i2c_set_time fndecl 0 17398 NULL
++disable_so_lx_interrupt_handle_async_events_fndecl_17400 lx_interrupt_handle_async_events fndecl 0 17400 NULL
++disable_so_phys_addr_pmem_device_17405 phys_addr pmem_device 0 17405 NULL
++disable_so___cpufreq_remove_dev_prepare_fndecl_17414 __cpufreq_remove_dev_prepare fndecl 0 17414 NULL
++disable_so_readpage_address_space_operations_17426 readpage address_space_operations 0 17426 NULL
++disable_so_last_tdls_pkt_time_sta_info_17439 last_tdls_pkt_time sta_info 0 17439 NULL
++disable_so_bfa_fcs_rport_set_del_timeout_fndecl_17442 bfa_fcs_rport_set_del_timeout fndecl 1 17442 NULL nohasharray
++disable_so_last_div_tuner_simple_priv_17442 last_div tuner_simple_priv 0 17442 &disable_so_bfa_fcs_rport_set_del_timeout_fndecl_17442
++disable_so_clockevents_update_freq_fndecl_17446 clockevents_update_freq fndecl 2 17446 NULL
++disable_so_dev_addr_init_fndecl_17450 dev_addr_init fndecl 0 17450 NULL
++disable_so_div_clk_fixed_factor_17451 div clk_fixed_factor 0 17451 NULL
++disable_so_t2_ptr_hash_tbl_addr_hi_fcoe_kwqe_init2_17457 t2_ptr_hash_tbl_addr_hi fcoe_kwqe_init2 0 17457 NULL
++disable_so_i_unsignaled_bytes_rds_iw_connection_17462 i_unsignaled_bytes rds_iw_connection 0 17462 NULL
++disable_so_calc_pmtimer_ref_fndecl_17467 calc_pmtimer_ref fndecl 0-2-3-1 17467 NULL
++disable_so_mb_dma_address_skd_fitmsg_context_17468 mb_dma_address skd_fitmsg_context 0 17468 NULL
++disable_so_bd_list_addr_hi_bnx2i_cmd_request_17469 bd_list_addr_hi bnx2i_cmd_request 0 17469 NULL
++disable_so_schedule_iso_resource_fndecl_17474 schedule_iso_resource fndecl 2 17474 NULL
++disable_so_select_addr_qla83xx_minidump_entry_pollrd_17476 select_addr qla83xx_minidump_entry_pollrd 0 17476 NULL
++disable_so_ipv4_daddr_nf_bridge_info_17490 ipv4_daddr nf_bridge_info 0 17490 NULL
++disable_so_fifo_delay_map_brcmf_fws_info_17499 fifo_delay_map brcmf_fws_info 0 17499 NULL
++disable_so_cpumask_next_and_fndecl_17511 cpumask_next_and fndecl 1-0 17511 NULL
++disable_so_crypto_ctr_crypt_fndecl_17512 crypto_ctr_crypt fndecl 0-4 17512 NULL
++disable_so_current_frequency_or51132_state_17519 current_frequency or51132_state 0 17519 NULL
++disable_so_clocks_calc_max_nsecs_fndecl_17521 clocks_calc_max_nsecs fndecl 1-2-3-4-0 17521 NULL
++disable_so_brcmf_get_next_free_bsscfgidx_fndecl_17528 brcmf_get_next_free_bsscfgidx fndecl 0 17528 NULL
++disable_so_ide_dma_timeout_retry_fndecl_17531 ide_dma_timeout_retry fndecl 2 17531 NULL
++disable_so_radeon_legacy_get_engine_clock_fndecl_17536 radeon_legacy_get_engine_clock fndecl 0 17536 NULL
++disable_so_longcal_timer_ath_ani_17540 longcal_timer ath_ani 0 17540 NULL
++disable_so_beacon_init_val_il_rxon_time_cmd_17543 beacon_init_val il_rxon_time_cmd 0 17543 NULL
++disable_so_bcma_pmu_xtalfreq_fndecl_17556 bcma_pmu_xtalfreq fndecl 0 17556 NULL
++disable_so_hdelay_timing_17557 hdelay timing 0 17557 NULL
++disable_so_ticks_snd_seq_timer_17559 ticks snd_seq_timer 0 17559 NULL nohasharray
++disable_so_coublock_signal_struct_17559 coublock signal_struct 0 17559 &disable_so_ticks_snd_seq_timer_17559
++disable_so_snd_timer_dev_register_fndecl_17565 snd_timer_dev_register fndecl 0 17565 NULL
++disable_so_wait_on_bit_lock_action_fndecl_17576 wait_on_bit_lock_action fndecl 0 17576 NULL
++disable_so_node_guid_nodeinfo_17589 node_guid nodeinfo 0 17589 NULL
++disable_so_packet_filter_bitmap_kaweth_device_17590 packet_filter_bitmap kaweth_device 0 17590 NULL
++disable_so_erase_timeout_sd_ssr_17594 erase_timeout sd_ssr 0 17594 NULL
++disable_so_ratio_r_rj54n1_clock_div_17609 ratio_r rj54n1_clock_div 0 17609 NULL
++disable_so_clock_info_cmd_complete_fndecl_17616 clock_info_cmd_complete fndecl 0 17616 NULL
++disable_so_cir_addr_nvt_dev_17619 cir_addr nvt_dev 0 17619 NULL
++disable_so_plink_timeout_mesh_config_17621 plink_timeout mesh_config 0 17621 NULL
++disable_so_numaddr_mwl8k_cmd_mac_multicast_adr_17633 numaddr mwl8k_cmd_mac_multicast_adr 0 17633 NULL
++enable_so_last_used_idx_vringh_17635 last_used_idx vringh 0 17635 NULL nohasharray
++disable_so_addr_nvbios_extdev_func_17635 addr nvbios_extdev_func 0 17635 &enable_so_last_used_idx_vringh_17635 nohasharray
++disable_so_xfs_btree_set_numrecs_fndecl_17635 xfs_btree_set_numrecs fndecl 2 17635 &disable_so_addr_nvbios_extdev_func_17635
++disable_so_pll_clkdiv_adau1701_17652 pll_clkdiv adau1701 0 17652 NULL
++disable_so_btree_insert_raw_fndecl_17655 btree_insert_raw fndecl 0-2 17655 NULL
++disable_so_svm_adjust_tsc_offset_fndecl_17663 svm_adjust_tsc_offset fndecl 2 17663 NULL
++disable_so_mpll_ss2_ni_clock_registers_17677 mpll_ss2 ni_clock_registers 0 17677 NULL
++disable_so_seq_zoran_sync_17679 seq zoran_sync 0 17679 NULL
++disable_so_frequency_drv2667_data_17686 frequency drv2667_data 0 17686 NULL
++disable_so_ieee80211_if_fmt_beacon_timeout_fndecl_17690 ieee80211_if_fmt_beacon_timeout fndecl 0-3 17690 NULL
++disable_so_switch_time_iwl5000_channel_switch_cmd_17709 switch_time iwl5000_channel_switch_cmd 0 17709 NULL
++disable_so_paging64_walk_addr_generic_fndecl_17719 paging64_walk_addr_generic fndecl 4-5 17719 NULL
++disable_so_hw_usb_set_address_fndecl_17723 hw_usb_set_address fndecl 2 17723 NULL
++disable_so_sysrq_reset_downtime_ms_vardecl_sysrq_c_17734 sysrq_reset_downtime_ms vardecl_sysrq.c 0 17734 NULL
++disable_so_ttime_mean_cfq_ttime_17742 ttime_mean cfq_ttime 0 17742 NULL nohasharray
++disable_so_cpufreq_add_dev_fndecl_17742 cpufreq_add_dev fndecl 0 17742 &disable_so_ttime_mean_cfq_ttime_17742
++disable_so_int_poll_timeout_fndecl_17745 int_poll_timeout fndecl 1 17745 NULL
++disable_so_pmdown_time_snd_soc_pcm_runtime_17753 pmdown_time snd_soc_pcm_runtime 0 17753 NULL
++disable_so_i_dtime_ocfs2_dinode_17762 i_dtime ocfs2_dinode 0 17762 NULL
++disable_so_stk1160_write_reg_fndecl_17777 stk1160_write_reg fndecl 0-2-3 17777 NULL
++disable_so_wlcore_save_freed_pkts_addr_fndecl_17778 wlcore_save_freed_pkts_addr fndecl 3 17778 NULL
++disable_so_sys_getuid_fndecl_17783 sys_getuid fndecl 0 17783 NULL
++disable_so_ath5k_hw_set_ack_timeout_fndecl_17785 ath5k_hw_set_ack_timeout fndecl 2 17785 NULL
++disable_so_vfio_intx_set_signal_fndecl_17806 vfio_intx_set_signal fndecl 0 17806 NULL
++disable_so_hash_dst_fndecl_17815 hash_dst fndecl 0-2-3 17815 NULL
++disable_so_ci_set_smc_sram_address_fndecl_17817 ci_set_smc_sram_address fndecl 0-2 17817 NULL
++disable_so_ax_pt_regs_17818 ax pt_regs 0 17818 NULL
++disable_so_gf110_fan_pwm_clock_fndecl_17824 gf110_fan_pwm_clock fndecl 0 17824 NULL nohasharray
++disable_so_txdescmem_busaddr_altera_tse_private_17824 txdescmem_busaddr altera_tse_private 0 17824 &disable_so_gf110_fan_pwm_clock_fndecl_17824
++disable_so_shash_digest_unaligned_fndecl_17828 shash_digest_unaligned fndecl 0-3 17828 NULL
++disable_so_crypto_user_rcv_msg_fndecl_17830 crypto_user_rcv_msg fndecl 0 17830 NULL
++disable_so_hfsplus_bnode_findhash_fndecl_17834 hfsplus_bnode_findhash fndecl 2 17834 NULL
++disable_so_hactive_lo_oaktrail_timing_info_17844 hactive_lo oaktrail_timing_info 0 17844 NULL
++disable_so_paddr_eni_skb_prv_17847 paddr eni_skb_prv 0 17847 NULL nohasharray
++disable_so_proc_disconnectsignal_fndecl_17847 proc_disconnectsignal fndecl 0 17847 &disable_so_paddr_eni_skb_prv_17847
++disable_so_msec_bts_action_delay_17848 msec bts_action_delay 0 17848 NULL
++disable_so_start_fixed_mtrr_segment_17854 start fixed_mtrr_segment 0 17854 NULL
++disable_so_addr_mlx4_wqe_data_seg_17863 addr mlx4_wqe_data_seg 0 17863 NULL
++disable_so_vhost32_to_cpu_fndecl_17870 vhost32_to_cpu fndecl 0-2 17870 NULL
++disable_so_wl1273_fm_get_freq_fndecl_17876 wl1273_fm_get_freq fndecl 0 17876 NULL
++disable_so_sumo_set_divider_value_fndecl_17879 sumo_set_divider_value fndecl 3-2 17879 NULL
++disable_so_dev_stc_uvc_clock_sample_17886 dev_stc uvc_clock_sample 0 17886 NULL
++disable_so_xfs_bmap_extents_to_btree_fndecl_17888 xfs_bmap_extents_to_btree fndecl 0 17888 NULL nohasharray
++disable_so_sha1_ssse3_finup_fndecl_17888 sha1_ssse3_finup fndecl 3 17888 &disable_so_xfs_bmap_extents_to_btree_fndecl_17888
++disable_so_address_threshold_block_17898 address threshold_block 0 17898 NULL
++disable_so_timeout_vardecl_w83793_c_17902 timeout vardecl_w83793.c 0 17902 NULL
++disable_so_bitmap_port_gc_test_fndecl_17905 bitmap_port_gc_test fndecl 3 17905 NULL
++disable_so_efx_ef10_filter_hash_fndecl_17915 efx_ef10_filter_hash fndecl 0 17915 NULL
++disable_so_i40evf_init_interrupt_scheme_fndecl_17922 i40evf_init_interrupt_scheme fndecl 0 17922 NULL
++disable_so_get_descriptor_addr_fndecl_17925 get_descriptor_addr fndecl 0 17925 NULL
++disable_so_fll_loop_gain__fll_div_17926 fll_loop_gain _fll_div 0 17926 NULL
++disable_so_timestamp_nfs_pgio_header_17936 timestamp nfs_pgio_header 0 17936 NULL
++disable_so_axp20x_set_dcdc_freq_fndecl_17938 axp20x_set_dcdc_freq fndecl 0-2 17938 NULL
++disable_so_fc2580_s_frequency_fndecl_17946 fc2580_s_frequency fndecl 0 17946 NULL
++disable_so_cxd2820r_sleep_fndecl_17948 cxd2820r_sleep fndecl 0 17948 NULL
++disable_so_shash_update_unaligned_fndecl_17955 shash_update_unaligned fndecl 0-3 17955 NULL
++disable_so_queue_snd_seq_queue_timer_17961 queue snd_seq_queue_timer 0 17961 NULL nohasharray
++disable_so_toshiba_sleep_functions_status_get_fndecl_17961 toshiba_sleep_functions_status_get fndecl 0 17961 &disable_so_queue_snd_seq_queue_timer_17961
++disable_so_pcc_cpufreq_probe_fndecl_17966 pcc_cpufreq_probe fndecl 0 17966 NULL nohasharray
++disable_so_rsa_extract_mpi_fndecl_17966 rsa_extract_mpi fndecl 5 17966 &disable_so_pcc_cpufreq_probe_fndecl_17966
++disable_so_rxrpc_resend_timeout_vardecl_17967 rxrpc_resend_timeout vardecl 0 17967 NULL nohasharray
++disable_so_cxd2820r_sleep_c_fndecl_17967 cxd2820r_sleep_c fndecl 0 17967 &disable_so_rxrpc_resend_timeout_vardecl_17967
++disable_so_ab3100_get_register_page_interruptible_fndecl_17972 ab3100_get_register_page_interruptible fndecl 0 17972 NULL
++disable_so_perf_event_time_fndecl_17980 perf_event_time fndecl 0 17980 NULL nohasharray
++disable_so_crypto_ahash_update_fndecl_17980 crypto_ahash_update fndecl 0 17980 &disable_so_perf_event_time_fndecl_17980
++disable_so_palmas_clear_interrupts_fndecl_17987 palmas_clear_interrupts fndecl 0 17987 NULL
++disable_so_timeout_vardecl_nf_conntrack_snmp_c_17991 timeout vardecl_nf_conntrack_snmp.c 0 17991 NULL
++disable_so_addr_lo_eth_rx_sge_17992 addr_lo eth_rx_sge 0 17992 NULL
++disable_so_cryptd_hash_update_fndecl_17997 cryptd_hash_update fndecl 2 17997 NULL
++disable_so_crypto_authenc_esn_setkey_fndecl_18010 crypto_authenc_esn_setkey fndecl 0 18010 NULL
++disable_so_uwb_rc_mac_addr_store_fndecl_18016 uwb_rc_mac_addr_store fndecl 0-4 18016 NULL
++disable_so_netlbl_unlhsh_hash_fndecl_18024 netlbl_unlhsh_hash fndecl 0-1 18024 NULL
++disable_so_min_delta_ns_clock_event_device_18031 min_delta_ns clock_event_device 0 18031 NULL
++disable_so_ali_timeout_bits_vardecl_alim1535_wdt_c_18033 ali_timeout_bits vardecl_alim1535_wdt.c 0 18033 NULL
++disable_so_sci_mpxed_interrupt_fndecl_18035 sci_mpxed_interrupt fndecl 1 18035 NULL
++disable_so_time_freq_vardecl_ntp_c_18036 time_freq vardecl_ntp.c 0 18036 NULL
++disable_so_be_cmd_page_addrs_prepare_fndecl_18059 be_cmd_page_addrs_prepare fndecl 2 18059 NULL
++disable_so_base_addr_brcmf_pcie_console_18075 base_addr brcmf_pcie_console 0 18075 NULL
++disable_so_seq_cn_msg_18076 seq cn_msg 0 18076 NULL
++disable_so_packet_time_ipw_ibss_seq_18079 packet_time ipw_ibss_seq 0 18079 NULL
++disable_so_atomic_set_property_drm_connector_funcs_18088 atomic_set_property drm_connector_funcs 0-4 18088 NULL
++disable_so_ts_jiffies_uwb_event_18092 ts_jiffies uwb_event 0 18092 NULL nohasharray
++disable_so_xc_set_rf_frequency_fndecl_18092 xc_set_rf_frequency fndecl 0-2 18092 &disable_so_ts_jiffies_uwb_event_18092
++disable_so_beacon_time_tsf_bits_il_hw_params_18095 beacon_time_tsf_bits il_hw_params 0 18095 NULL
++disable_so_restore_freq_cpufreq_policy_18098 restore_freq cpufreq_policy 0 18098 NULL
++disable_so_link_check_timeout_ixgbe_adapter_18101 link_check_timeout ixgbe_adapter 0 18101 NULL
++disable_so_zd_iowrite32_fndecl_18117 zd_iowrite32 fndecl 0-3 18117 NULL nohasharray
++disable_so_block_bitmap_ext3_new_group_data_18117 block_bitmap ext3_new_group_data 0 18117 &disable_so_zd_iowrite32_fndecl_18117
++disable_so_radeon_fence_schedule_check_fndecl_18136 radeon_fence_schedule_check fndecl 2 18136 NULL
++disable_so_ed_schedule_fndecl_18142 ed_schedule fndecl 0 18142 NULL
++disable_so_pci_clock_ctrl_tg3_18144 pci_clock_ctrl tg3 0 18144 NULL
++disable_so_start_i915_address_space_18152 start i915_address_space 0 18152 NULL
++disable_so_reg_w_fndecl_18159 reg_w fndecl 2 18159 NULL
++disable_so_xfrm_get_saddr_fndecl_18161 xfrm_get_saddr fndecl 4 18161 NULL
++disable_so_src_addr_rcar_dmac_xfer_chunk_18165 src_addr rcar_dmac_xfer_chunk 0 18165 NULL
++disable_so_chip_init_time_esas2r_adapter_18169 chip_init_time esas2r_adapter 0 18169 NULL
++disable_so___btree_submit_bio_done_fndecl_18170 __btree_submit_bio_done fndecl 0-2 18170 NULL
++disable_so_pick_local_ipaddrs_fndecl_18171 pick_local_ipaddrs fndecl 0 18171 NULL
++disable_so_host_sof_uvc_clock_sample_18177 host_sof uvc_clock_sample 0 18177 NULL
++disable_so_ratio_op_rj54n1_clock_div_18180 ratio_op rj54n1_clock_div 0 18180 NULL
++disable_so_dm_btree_remove_leaves_fndecl_18182 dm_btree_remove_leaves fndecl 0-2-4 18182 NULL
++disable_so_rfcomm_session_set_timer_fndecl_18183 rfcomm_session_set_timer fndecl 2 18183 NULL
++disable_so_i_gid_ext2_inode_18187 i_gid ext2_inode 0 18187 NULL
++disable_so_tipc_tlv_sprintf_fndecl_18203 tipc_tlv_sprintf fndecl 0 18203 NULL
++disable_so_usbnet_get_ethernet_addr_fndecl_18204 usbnet_get_ethernet_addr fndecl 0 18204 NULL
++disable_so_faddr_drm_i915_error_ring_18209 faddr drm_i915_error_ring 0 18209 NULL
++disable_so_nla_put_ipaddr4_fndecl_18214 nla_put_ipaddr4 fndecl 0 18214 NULL
++disable_so_ring_dma_addr_netdev_private_18216 ring_dma_addr netdev_private 0 18216 NULL
++disable_so_fc_gid_ft_build_fndecl_18221 fc_gid_ft_build fndecl 0-3 18221 NULL
++disable_so_base_hi_mtrr_var_range_18224 base_hi mtrr_var_range 0 18224 NULL nohasharray
++disable_so_mISDNisac_irq_fndecl_18224 mISDNisac_irq fndecl 2 18224 &disable_so_base_hi_mtrr_var_range_18224
++disable_so_no_bit_error_verify_fndecl_18225 no_bit_error_verify fndecl 4 18225 NULL
++disable_so_account_guest_time_fndecl_18233 account_guest_time fndecl 2-3 18233 NULL
++disable_so_show_port_gid_idx_fndecl_18237 show_port_gid_idx fndecl 0 18237 NULL
++disable_so_ath9k_hw_set_cts_timeout_fndecl_18239 ath9k_hw_set_cts_timeout fndecl 2 18239 NULL
++disable_so_sctp_raw_to_bind_addrs_fndecl_18240 sctp_raw_to_bind_addrs fndecl 0-3-4-5 18240 NULL
++disable_so_format_snd_pcm_oss_runtime_18246 format snd_pcm_oss_runtime 0 18246 NULL
++disable_so_ring_base_address_kfd_ioctl_update_queue_args_18252 ring_base_address kfd_ioctl_update_queue_args 0 18252 NULL
++disable_so_best_dsc_rw_freq_ide_tape_obj_18253 best_dsc_rw_freq ide_tape_obj 0 18253 NULL
++disable_so_mlx4_ib_set_default_gid_fndecl_18263 mlx4_ib_set_default_gid fndecl 3 18263 NULL
++disable_so_msrpm_base_pa_vmcb_control_area_18266 msrpm_base_pa vmcb_control_area 0 18266 NULL
++disable_so_macb_reg_writel_macb_18287 macb_reg_writel macb 3 18287 NULL
++disable_so_btrfs_inode_delayed_dir_index_count_fndecl_18292 btrfs_inode_delayed_dir_index_count fndecl 0 18292 NULL
++disable_so_rounded_hashtable_size_fndecl_18305 rounded_hashtable_size fndecl 0 18305 NULL
++disable_so_kv_calculate_ds_divider_fndecl_18314 kv_calculate_ds_divider fndecl 0 18314 NULL
++disable_so_srom_address_fndecl_18316 srom_address fndecl 2 18316 NULL
++disable_so_min_keysize_blkcipher_alg_18320 min_keysize blkcipher_alg 0 18320 NULL
++disable_so_sd_atime_stat_data_v1_18328 sd_atime stat_data_v1 0 18328 NULL nohasharray
++disable_so_last_valid_interrupt_tsc2005_18328 last_valid_interrupt tsc2005 0 18328 &disable_so_sd_atime_stat_data_v1_18328
++disable_so_divider_sm501_clock_18331 divider sm501_clock 0 18331 NULL
++disable_so_dwell_time_dfs_conf_sched_scan_settings_18333 dwell_time_dfs conf_sched_scan_settings 0 18333 NULL
++disable_so_synaptics_i2c_reschedule_work_fndecl_18336 synaptics_i2c_reschedule_work fndecl 2 18336 NULL
++disable_so_active_time_dce6_wm_params_18344 active_time dce6_wm_params 0 18344 NULL
++disable_so_shpchp_poll_time_vardecl_18356 shpchp_poll_time vardecl 0 18356 NULL
++disable_so_qat_alg_ablkcipher_init_sessions_fndecl_18359 qat_alg_ablkcipher_init_sessions fndecl 3 18359 NULL
++disable_so_next_blkaddr_node_footer_18360 next_blkaddr node_footer 0 18360 NULL
++disable_so_r9701_set_datetime_fndecl_18365 r9701_set_datetime fndecl 0 18365 NULL
++disable_so_global_default_cipher_key_size_ecryptfs_mount_crypt_stat_18369 global_default_cipher_key_size ecryptfs_mount_crypt_stat 0 18369 NULL
++disable_so_read_tsc_offset_kvm_x86_ops_18374 read_tsc_offset kvm_x86_ops 0 18374 NULL
++disable_so_chunkshift_bitmap_counts_18388 chunkshift bitmap_counts 0 18388 NULL
++disable_so_daddr_i915_page_table_entry_18391 daddr i915_page_table_entry 0 18391 NULL
++disable_so_set_addr_filters_fndecl_18395 set_addr_filters fndecl 0 18395 NULL nohasharray
++disable_so_writepages_address_space_operations_18395 writepages address_space_operations 0 18395 &disable_so_set_addr_filters_fndecl_18395
++disable_so_ablkcipher_next_fast_fndecl_18397 ablkcipher_next_fast fndecl 0 18397 NULL
++disable_so_local_ref_time_lp_18398 local_ref_time lp 0 18398 NULL
++disable_so_size__cpuid4_info_regs_18403 size _cpuid4_info_regs 0 18403 NULL
++disable_so_st_atime_sec_p9_stat_dotl_18404 st_atime_sec p9_stat_dotl 0 18404 NULL nohasharray
++disable_so_hackrf_s_frequency_fndecl_18404 hackrf_s_frequency fndecl 0 18404 &disable_so_st_atime_sec_p9_stat_dotl_18404
++disable_so_ext4_inode_bitmap_fndecl_18405 ext4_inode_bitmap fndecl 0 18405 NULL
++disable_so_crypto_sha256_finup_fndecl_18406 crypto_sha256_finup fndecl 3 18406 NULL
++disable_so_timeout_ip_vs_sync_v4_18416 timeout ip_vs_sync_v4 0 18416 NULL nohasharray
++disable_so_nla_put_hwaddr_fndecl_18416 nla_put_hwaddr fndecl 0 18416 &disable_so_timeout_ip_vs_sync_v4_18416
++disable_so_tasklet_hrtimer_init_fndecl_18423 tasklet_hrtimer_init fndecl 3 18423 NULL
++disable_so_ieee80211_if_fmt_path_refresh_time_fndecl_18427 ieee80211_if_fmt_path_refresh_time fndecl 0-3 18427 NULL
++disable_so_address_high_b43_dmadesc64_18431 address_high b43_dmadesc64 0 18431 NULL
++disable_so_wd_timeout_mei_device_18432 wd_timeout mei_device 0 18432 NULL
++disable_so_bitmap_fold_fndecl_18439 bitmap_fold fndecl 4 18439 NULL
++disable_so_dma_addr_freelQ_ce_18441 dma_addr freelQ_ce 0 18441 NULL
++disable_so_demod_address_cx24117_config_18444 demod_address cx24117_config 0 18444 NULL
++disable_so_rs5c372_get_datetime_fndecl_18451 rs5c372_get_datetime fndecl 0 18451 NULL
++disable_so_diolan_set_clock_synch_fndecl_18461 diolan_set_clock_synch fndecl 0 18461 NULL nohasharray
++disable_so_tcp_timeout_ip_vs_timeout_user_18461 tcp_timeout ip_vs_timeout_user 0 18461 &disable_so_diolan_set_clock_synch_fndecl_18461
++disable_so_mac_addr_low_nes_adapter_18465 mac_addr_low nes_adapter 0 18465 NULL nohasharray
++enable_so_get_next_ino_fndecl_18465 get_next_ino fndecl 0 18465 &disable_so_mac_addr_low_nes_adapter_18465
++disable_so_sci_interrupt_acpi_table_fadt_18467 sci_interrupt acpi_table_fadt 0 18467 NULL
++disable_so_mii_bmsr_bnx2_18468 mii_bmsr bnx2 0 18468 NULL
++disable_so_qla4xxx_fw_timestamp_show_fndecl_18474 qla4xxx_fw_timestamp_show fndecl 0 18474 NULL
++disable_so_viafb_fill_crtc_timing_fndecl_18476 viafb_fill_crtc_timing fndecl 2-3 18476 NULL
++disable_so_sysctl_max_tw_buckets_inet_timewait_death_row_18487 sysctl_max_tw_buckets inet_timewait_death_row 0 18487 NULL
++disable_so_hfdiv_dib0090_pll_18489 hfdiv dib0090_pll 0 18489 NULL
++disable_so_demod_address_si21xx_config_18490 demod_address si21xx_config 0 18490 NULL
++disable_so_sbp_tpg_attrib_show_max_reconnect_timeout_fndecl_18494 sbp_tpg_attrib_show_max_reconnect_timeout fndecl 0 18494 NULL
++disable_so_cciss_find_cfg_addrs_fndecl_18500 cciss_find_cfg_addrs fndecl 0 18500 NULL
++disable_so_sdo_runtime_resume_fndecl_18516 sdo_runtime_resume fndecl 0 18516 NULL
++disable_so_available_uuids_show_fndecl_18518 available_uuids_show fndecl 0 18518 NULL
++disable_so_mtrr_open_fndecl_18521 mtrr_open fndecl 0 18521 NULL
++disable_so_r_min_rnr_timer_ipath_qp_18527 r_min_rnr_timer ipath_qp 0 18527 NULL
++disable_so_fixed_mtrr_addr_seg_to_range_index_fndecl_18537 fixed_mtrr_addr_seg_to_range_index fndecl 1-0 18537 NULL
++disable_so_timeout_floppy_drive_params_18540 timeout floppy_drive_params 0 18540 NULL
++disable_so_show_cpu_clock_fndecl_18546 show_cpu_clock fndecl 0 18546 NULL
++disable_so_inet6_fill_ifacaddr_fndecl_18549 inet6_fill_ifacaddr fndecl 0-3-5 18549 NULL
++disable_so_physical_address_kvm_translation_18550 physical_address kvm_translation 0 18550 NULL
++disable_so_kvm_mtrr_set_msr_fndecl_18553 kvm_mtrr_set_msr fndecl 3 18553 NULL
++disable_so_dccp_timestamp_fndecl_18560 dccp_timestamp fndecl 0 18560 NULL
++disable_so_frequency_analog_parameters_18561 frequency analog_parameters 0 18561 NULL
++disable_so_resp_bd_list_addr_lo_bnx2i_login_request_18562 resp_bd_list_addr_lo bnx2i_login_request 0 18562 NULL
++disable_so_pixels_1_gpu_addr_mga_cursor_18572 pixels_1_gpu_addr mga_cursor 0 18572 NULL
++disable_so_compat_sys_stime_fndecl_18574 compat_sys_stime fndecl 0 18574 NULL
++disable_so_timestamp_fwd_flush_batadv_priv_nc_18585 timestamp_fwd_flush batadv_priv_nc 0 18585 NULL nohasharray
++disable_so_nilfs_btree_get_block_fndecl_18585 nilfs_btree_get_block fndecl 0-2 18585 &disable_so_timestamp_fwd_flush_batadv_priv_nc_18585
++disable_so_sleep_cookie_pbase_pcie_service_card_18597 sleep_cookie_pbase pcie_service_card 0 18597 NULL
++disable_so_sm_set_bitmap_fndecl_18598 sm_set_bitmap fndecl 2 18598 NULL
++disable_so_lr_timeout_ext4_li_request_18599 lr_timeout ext4_li_request 0 18599 NULL
++disable_so_start_time_bfa_diag_dport_subtest_result_s_18621 start_time bfa_diag_dport_subtest_result_s 0 18621 NULL
++disable_so_ieee80211_aes_gmac_key_setup_fndecl_18626 ieee80211_aes_gmac_key_setup fndecl 2 18626 NULL
++disable_so_code_addr_pmu_nvbios_pmuR_18630 code_addr_pmu nvbios_pmuR 0 18630 NULL
++disable_so_btree_write_alias_fndecl_18631 btree_write_alias fndecl 0 18631 NULL
++disable_so_level_btrfs_delayed_tree_ref_18632 level btrfs_delayed_tree_ref 0 18632 NULL
++disable_so_bch_strtoull_h_fndecl_18633 bch_strtoull_h fndecl 0 18633 NULL
++disable_so_resolution_snd_timer_status_18636 resolution snd_timer_status 0 18636 NULL
++disable_so_crypto_module_init_fndecl_18640 crypto_module_init fndecl 0 18640 NULL
++disable_so_mic_to_dma_addr_fndecl_18642 mic_to_dma_addr fndecl 0-2 18642 NULL
++disable_so_nonblocking_wait_time_shtc1_data_18656 nonblocking_wait_time shtc1_data 0 18656 NULL
++disable_so___remove_suid_fndecl_18657 __remove_suid fndecl 0 18657 NULL
++disable_so_bootime_st_sensor_settings_18658 bootime st_sensor_settings 0 18658 NULL
++disable_so_total_ref_mod_btrfs_delayed_ref_head_18666 total_ref_mod btrfs_delayed_ref_head 0 18666 NULL
++disable_so_is_noncanonical_address_fndecl_18677 is_noncanonical_address fndecl 1 18677 NULL
++disable_so_xcan_set_bittiming_fndecl_18678 xcan_set_bittiming fndecl 0 18678 NULL
++disable_so_ipmi_set_my_address_fndecl_18680 ipmi_set_my_address fndecl 0 18680 NULL
++disable_so_pixels_2_gpu_addr_mga_cursor_18686 pixels_2_gpu_addr mga_cursor 0 18686 NULL
++disable_so_adjust_tsc_offset_guest_fndecl_18708 adjust_tsc_offset_guest fndecl 2 18708 NULL
++disable_so_meson_spifc_runtime_resume_fndecl_18709 meson_spifc_runtime_resume fndecl 0 18709 NULL
++disable_so_mclk_pwrmgt_cntl_rv770_clock_registers_18711 mclk_pwrmgt_cntl rv770_clock_registers 0 18711 NULL
++disable_so_avgidle_cbq_class_18722 avgidle cbq_class 0 18722 NULL
++disable_so_nla_nest_end_fndecl_18729 nla_nest_end fndecl 0 18729 NULL
++disable_so_suspend_time_il_scan_cmd_18736 suspend_time il_scan_cmd 0 18736 NULL
++disable_so_jiffies_to_timespec_fndecl_18737 jiffies_to_timespec fndecl 1 18737 NULL
++disable_so___uwb_addr_print_fndecl_18746 __uwb_addr_print fndecl 0 18746 NULL
++disable_so_apicid_set_error_type_with_address_18747 apicid set_error_type_with_address 0 18747 NULL
++disable_so_reachable_time_ifla_cacheinfo_18748 reachable_time ifla_cacheinfo 0 18748 NULL
++disable_so_mxl111sf_write_reg_fndecl_18752 mxl111sf_write_reg fndecl 0 18752 NULL
++disable_so_img_ir_timing_preprocess_fndecl_18766 img_ir_timing_preprocess fndecl 2 18766 NULL
++disable_so_aosr_aic31xx_rate_divs_18787 aosr aic31xx_rate_divs 0 18787 NULL
++disable_so_led_set_flash_timeout_fndecl_18793 led_set_flash_timeout fndecl 2 18793 NULL
++disable_so_proc_dointvec_userhz_jiffies_fndecl_18794 proc_dointvec_userhz_jiffies fndecl 0 18794 NULL
++disable_so_return_address_stack_frame_18797 return_address stack_frame 0 18797 NULL
++disable_so_perf_set_shadow_time_fndecl_18814 perf_set_shadow_time fndecl 3 18814 NULL nohasharray
++disable_so_start_time_mem_ctl_info_18814 start_time mem_ctl_info 0 18814 &disable_so_perf_set_shadow_time_fndecl_18814
++disable_so_out_of_int_time_mmc_ext_csd_18824 out_of_int_time mmc_ext_csd 0 18824 NULL
++disable_so_tmr_subdevice_snd_timer_18828 tmr_subdevice snd_timer 0 18828 NULL
++disable_so_xgmac_reg_addr_read_fndecl_18829 xgmac_reg_addr_read fndecl 3-0 18829 NULL
++disable_so_iscsi_nacl_attrib_show_dataout_timeout_retries_fndecl_18834 iscsi_nacl_attrib_show_dataout_timeout_retries fndecl 0 18834 NULL
++disable_so_ip_hash_net4_elem_18835 ip hash_net4_elem 0 18835 NULL
++disable_so_gid_ucred_18846 gid ucred 0 18846 NULL
++disable_so_r44_val_fc2580_freq_regs_18847 r44_val fc2580_freq_regs 0 18847 NULL
++disable_so_fotg210_set_dev_addr_fndecl_18854 fotg210_set_dev_addr fndecl 2 18854 NULL
++disable_so_mac_time_hostap_80211_rx_status_18865 mac_time hostap_80211_rx_status 0 18865 NULL
++disable_so___smsc95xx_write_reg_fndecl_18876 __smsc95xx_write_reg fndecl 0-2-3 18876 NULL
++disable_so_svm_write_tsc_offset_fndecl_18879 svm_write_tsc_offset fndecl 2 18879 NULL
++disable_so_max8997_rtc_read_time_fndecl_18881 max8997_rtc_read_time fndecl 0 18881 NULL nohasharray
++disable_so_prev_tsc_cpudata_18881 prev_tsc cpudata 0 18881 &disable_so_max8997_rtc_read_time_fndecl_18881
++disable_so_padlock_sha1_update_nano_fndecl_18884 padlock_sha1_update_nano fndecl 3 18884 NULL
++disable_so_sysctl_rose_restart_request_timeout_vardecl_18885 sysctl_rose_restart_request_timeout vardecl 0 18885 NULL
++disable_so_sysctl_aarp_expiry_time_vardecl_18891 sysctl_aarp_expiry_time vardecl 0 18891 NULL
++disable_so_crypto_register_pcomp_fndecl_18915 crypto_register_pcomp fndecl 0 18915 NULL
++disable_so_ata_timing_cycle2mode_fndecl_18918 ata_timing_cycle2mode fndecl 0 18918 NULL
++disable_so_proc_dointvec_ms_jiffies_fndecl_18925 proc_dointvec_ms_jiffies fndecl 0 18925 NULL
++disable_so_busaddr_vlsi_irda_dev_18931 busaddr vlsi_irda_dev 0 18931 NULL
++disable_so_rx_coalescing_timeo_bna_ccb_18934 rx_coalescing_timeo bna_ccb 0 18934 NULL
++disable_so_tx_ring_dma_addr_pcnet32_private_18936 tx_ring_dma_addr pcnet32_private 0 18936 NULL
++disable_so_netlbl_unlhsh_add_addr6_fndecl_18945 netlbl_unlhsh_add_addr6 fndecl 4-0 18945 NULL nohasharray
++disable_so_libipw_channel_to_freq_fndecl_18945 libipw_channel_to_freq fndecl 0-2 18945 &disable_so_netlbl_unlhsh_add_addr6_fndecl_18945
++disable_so_oo_time_nfs4_openowner_18954 oo_time nfs4_openowner 0 18954 NULL
++disable_so_rht_key_hashfn_fndecl_18957 rht_key_hashfn fndecl 0 18957 NULL
++disable_so_query_id_mlx4_alias_guid_work_context_18958 query_id mlx4_alias_guid_work_context 0 18958 NULL nohasharray
++disable_so_address_rq_enet_desc_18958 address rq_enet_desc 0 18958 &disable_so_query_id_mlx4_alias_guid_work_context_18958
++disable_so_scan_bitmap_fndecl_18963 scan_bitmap fndecl 0-3-5-7 18963 NULL
++disable_so_btrfs_item_key_to_cpu_fndecl_18966 btrfs_item_key_to_cpu fndecl 3 18966 NULL
++disable_so_store_fan_time_fndecl_18972 store_fan_time fndecl 0-4 18972 NULL
++disable_so_hash_conntrack_fndecl_18974 hash_conntrack fndecl 0 18974 NULL
++disable_so_lsndtime_tcp_sock_18975 lsndtime tcp_sock 0 18975 NULL
++disable_so_ratio_tg_rj54n1_clock_div_18979 ratio_tg rj54n1_clock_div 0 18979 NULL
++disable_so_freq_lo_od_cpu_dbs_info_s_18987 freq_lo od_cpu_dbs_info_s 0 18987 NULL
++disable_so_usnic_uiom_interval_tree_compute_subtree_last_fndecl_18989 usnic_uiom_interval_tree_compute_subtree_last fndecl 0 18989 NULL
++disable_so_cg_spll_spread_spectrum_rv770_clock_registers_19000 cg_spll_spread_spectrum rv770_clock_registers 0 19000 NULL
++disable_so_ps_poll_ps_poll_timeouts_read_fndecl_19005 ps_poll_ps_poll_timeouts_read fndecl 3 19005 NULL
++disable_so_addr_low_sata_start_req_19006 addr_low sata_start_req 0 19006 NULL
++disable_so_seq_rxrpc_header_19018 seq rxrpc_header 0 19018 NULL
++disable_so_bs_uid_xfs_bstat_19023 bs_uid xfs_bstat 0 19023 NULL
++disable_so_cmb_rx_timer_atl1_hw_19025 cmb_rx_timer atl1_hw 0 19025 NULL
++disable_so_timestamp_batadv_nc_packet_19027 timestamp batadv_nc_packet 0 19027 NULL
++disable_so_addr_high_ssp_ini_io_start_req_19029 addr_high ssp_ini_io_start_req 0 19029 NULL
++disable_so_n_addresses_rxk5_key_19030 n_addresses rxk5_key 0 19030 NULL
++e_old_decode_dev_fndecl_19035 old_decode_dev fndecl 0-1 19035 NULL nohasharray
++disable_so_ccp_crypto_enqueue_request_fndecl_19035 ccp_crypto_enqueue_request fndecl 0 19035 &e_old_decode_dev_fndecl_19035
++disable_so_timeout_mxser_port_19037 timeout mxser_port 0 19037 NULL
++disable_so_xfs_btree_rec_addr_fndecl_19048 xfs_btree_rec_addr fndecl 2 19048 NULL
++disable_so_sz_qat_crypto_request_buffs_19050 sz qat_crypto_request_buffs 0 19050 NULL
++disable_so_start_field_bit_offset_acpi_object_field_common_19052 start_field_bit_offset acpi_object_field_common 0 19052 NULL
++disable_so_compat_sys_timer_create_fndecl_19053 compat_sys_timer_create fndecl 1 19053 NULL
++disable_so_ioctl_busaddr_ips_ha_19067 ioctl_busaddr ips_ha 0 19067 NULL
++disable_so_crypto_rng_reset_fndecl_19075 crypto_rng_reset fndecl 3 19075 NULL
++disable_so_alignmask_crypto_hash_walk_19078 alignmask crypto_hash_walk 0 19078 NULL
++disable_so_dst_addr_hi_dmae_command_19086 dst_addr_hi dmae_command 0 19086 NULL
++disable_so_tx_time_us_qlcnic_nic_intr_coalesce_19089 tx_time_us qlcnic_nic_intr_coalesce 0 19089 NULL
++disable_so_sctp_getsockopt_peer_addr_info_fndecl_19099 sctp_getsockopt_peer_addr_info fndecl 0 19099 NULL
++disable_so_ack_interrupt_mbus_hw_ops_19100 ack_interrupt mbus_hw_ops 2 19100 NULL
++disable_so_fm_tx_set_freq_fndecl_19116 fm_tx_set_freq fndecl 0-2 19116 NULL
++disable_so_time_stabiliz_dibx000_agc_config_19117 time_stabiliz dibx000_agc_config 0 19117 NULL
++disable_so_m_session_timeout_ceph_mdsmap_19122 m_session_timeout ceph_mdsmap 0 19122 NULL nohasharray
++disable_so_rq_first_pbe_addr_hi_fcoe_kwqe_conn_offload1_19122 rq_first_pbe_addr_hi fcoe_kwqe_conn_offload1 0 19122 &disable_so_m_session_timeout_ceph_mdsmap_19122
++disable_so_cfg80211_set_cipher_pairwise_fndecl_19124 cfg80211_set_cipher_pairwise fndecl 2 19124 NULL
++disable_so_addr_low_bufq_addr_element_19128 addr_low bufq_addr_element 0 19128 NULL
++disable_so__random_read_fndecl_19137 _random_read fndecl 0-1-3 19137 NULL
++disable_so_data_timeout_ns_mmc_ioc_cmd_19142 data_timeout_ns mmc_ioc_cmd 0 19142 NULL
++disable_so_sys_timer_getoverrun_fndecl_19145 sys_timer_getoverrun fndecl 1-0 19145 NULL
++disable_so_force_static_address_read_fndecl_19149 force_static_address_read fndecl 3-0 19149 NULL
++disable_so_timeout_vardecl_alim7101_wdt_c_19153 timeout vardecl_alim7101_wdt.c 0 19153 NULL
++disable_so_get_msr_x86_emulate_ops_19170 get_msr x86_emulate_ops 2 19170 NULL
++disable_so_freeze_timeout_msecs_vardecl_19173 freeze_timeout_msecs vardecl 0 19173 NULL
++disable_so_time_mid_afs_uuid_19174 time_mid afs_uuid 0 19174 NULL
++disable_so_do_signal_stop_fndecl_19193 do_signal_stop fndecl 1 19193 NULL
++disable_so_xtime_update_fndecl_19206 xtime_update fndecl 1 19206 NULL
++disable_so_sd_uid_stat_data_19209 sd_uid stat_data 0 19209 NULL
++disable_so_conn_schedule_ip_vs_protocol_19210 conn_schedule ip_vs_protocol 1 19210 NULL
++disable_so_ocfs2_dx_dir_name_hash_fndecl_19211 ocfs2_dx_dir_name_hash fndecl 3 19211 NULL
++disable_so_posix_clock_register_fndecl_19213 posix_clock_register fndecl 2-0 19213 NULL
++disable_so_ctnl_timeout_parse_policy_fndecl_19218 ctnl_timeout_parse_policy fndecl 0 19218 NULL
++disable_so_get_parent_r8a66597_address_fndecl_19219 get_parent_r8a66597_address fndecl 0 19219 NULL
++disable_so_ath5k_hw_htoclock_fndecl_19227 ath5k_hw_htoclock fndecl 2-0 19227 NULL
++disable_so_cport_addr_nm256_19228 cport_addr nm256 0 19228 NULL
++disable_so_mt2032_compute_freq_fndecl_19230 mt2032_compute_freq fndecl 2-3-4 19230 NULL
++disable_so_prox_adjust_channel_bit_mask_fndecl_19253 prox_adjust_channel_bit_mask fndecl 3 19253 NULL
++disable_so_base_addr_vnic_dev_ring_19264 base_addr vnic_dev_ring 0 19264 NULL
++disable_so_authenc_geniv_ahash_update_done_fndecl_19273 authenc_geniv_ahash_update_done fndecl 2 19273 NULL
++disable_so_ath6kl_cfg80211_host_sleep_fndecl_19284 ath6kl_cfg80211_host_sleep fndecl 0 19284 NULL
++disable_so_keyring_detect_cycle_fndecl_19294 keyring_detect_cycle fndecl 0 19294 NULL
++disable_so_bus_addr_img_hash_dev_19301 bus_addr img_hash_dev 0 19301 NULL
++disable_so_nv04_timer_fini_fndecl_19314 nv04_timer_fini fndecl 0 19314 NULL
++disable_so_sysctl_x25_restart_request_timeout_vardecl_19317 sysctl_x25_restart_request_timeout vardecl 0 19317 NULL
++disable_so_timer_in_use_nes_hw_tune_timer_19327 timer_in_use nes_hw_tune_timer 0 19327 NULL
++disable_so_misdn_add_timer_fndecl_19332 misdn_add_timer fndecl 2-0 19332 NULL
++disable_so_timeout_vardecl_rn5t618_wdt_c_19337 timeout vardecl_rn5t618_wdt.c 0 19337 NULL
++disable_so_err_addr_bfa_diag_memtest_result_19350 err_addr bfa_diag_memtest_result 0 19350 NULL
++disable_so_jfs_strtoUCS_fndecl_19357 jfs_strtoUCS fndecl 3-0 19357 NULL
++disable_so_addr_to_vsyscall_nr_fndecl_19368 addr_to_vsyscall_nr fndecl 0-1 19368 NULL
++disable_so_small_buf_phy_addr_high_ql3_adapter_19371 small_buf_phy_addr_high ql3_adapter 0 19371 NULL
++disable_so_micd_bias_start_time_arizona_pdata_19379 micd_bias_start_time arizona_pdata 0 19379 NULL
++disable_so_current_frequency_s5h1411_state_19382 current_frequency s5h1411_state 0 19382 NULL
++disable_so_silence_threshold_snd_pcm_runtime_19384 silence_threshold snd_pcm_runtime 0 19384 NULL
++disable_so_pid_pppol2tpv3_addr_19385 pid pppol2tpv3_addr 0 19385 NULL
++disable_so_wm8960_set_dai_clkdiv_fndecl_19392 wm8960_set_dai_clkdiv fndecl 3 19392 NULL
++disable_so_drm_modeset_lock_interruptible_fndecl_19397 drm_modeset_lock_interruptible fndecl 0 19397 NULL
++disable_so_isdn_divert_open_fndecl_19417 isdn_divert_open fndecl 0 19417 NULL
++disable_so_uwb_rc_dev_addr_set_fndecl_19418 uwb_rc_dev_addr_set fndecl 0 19418 NULL
++disable_so_frames_v4l2_timecode_19427 frames v4l2_timecode 0 19427 NULL
++disable_so_bw_time_stamp_backing_dev_info_19428 bw_time_stamp backing_dev_info 0 19428 NULL
++disable_so_nes_create_sockaddr_fndecl_19431 nes_create_sockaddr fndecl 1-2 19431 NULL
++disable_so_s_uuid_hash_ocfs2_super_block_19432 s_uuid_hash ocfs2_super_block 0 19432 NULL
++disable_so_paging64_walk_addr_fndecl_19436 paging64_walk_addr fndecl 3-4 19436 NULL
++disable_so_snd_sonicvibes_interrupt_fndecl_19437 snd_sonicvibes_interrupt fndecl 1 19437 NULL
++disable_so_width_psb_intel_sdvo_preferred_input_timing_args_19438 width psb_intel_sdvo_preferred_input_timing_args 0 19438 NULL
++disable_so_padlock_sha256_final_fndecl_19450 padlock_sha256_final fndecl 0 19450 NULL
++disable_so_period_time_bau_control_19451 period_time bau_control 0 19451 NULL
++disable_so_timestamp_nfs4_closedata_19455 timestamp nfs4_closedata 0 19455 NULL
++disable_so_crypto_fpu_init_fndecl_19461 crypto_fpu_init fndecl 0 19461 NULL
++disable_so_sysctl_x25_reset_request_timeout_vardecl_19463 sysctl_x25_reset_request_timeout vardecl 0 19463 NULL nohasharray
++disable_so_start_write_delay_c_19463 start_write delay_c 0 19463 &disable_so_sysctl_x25_reset_request_timeout_vardecl_19463
++disable_so_calc_div_fndecl_19469 calc_div fndecl 0-4-3 19469 NULL
++disable_so_log2bpmb_adfs_discrecord_19475 log2bpmb adfs_discrecord 0 19475 NULL
++disable_so_sys_pkt_addr_dle_19487 sys_pkt_addr dle 0 19487 NULL
++disable_so_igb_set_vf_mac_addr_fndecl_19490 igb_set_vf_mac_addr fndecl 3 19490 NULL
++disable_so_ipaddr_atm_mpoa_qos_19492 ipaddr atm_mpoa_qos 0 19492 NULL
++disable_so_start_addr_ms_system_item_19495 start_addr ms_system_item 0 19495 NULL
++disable_so_nmi_timer_start_cpu_fndecl_19509 nmi_timer_start_cpu fndecl 1-0 19509 NULL
++disable_so_rv3029c2_i2c_set_time_fndecl_19511 rv3029c2_i2c_set_time fndecl 0 19511 NULL
++disable_so_trinity_get_valid_engine_clock_fndecl_19516 trinity_get_valid_engine_clock fndecl 0 19516 NULL
++disable_so_add_addr_fndecl_19518 add_addr fndecl 3-4 19518 NULL nohasharray
++disable_so_hash_extent_data_ref_item_fndecl_19518 hash_extent_data_ref_item fndecl 0 19518 &disable_so_add_addr_fndecl_19518
++disable_so_prev_hw_ptr_period_snd_pcm_oss_runtime_19519 prev_hw_ptr_period snd_pcm_oss_runtime 0 19519 NULL
++disable_so_eqaddr_fw_ri_res_sqrq_19526 eqaddr fw_ri_res_sqrq 0 19526 NULL
++disable_so_tms_stime_compat_tms_19527 tms_stime compat_tms 0 19527 NULL
++disable_so_period_addr_ath_gen_timer_configuration_19529 period_addr ath_gen_timer_configuration 0 19529 NULL
++disable_so_sp_tss_segment_16_19536 sp tss_segment_16 0 19536 NULL nohasharray
++disable_so_nrpages_address_space_19536 nrpages address_space 0 19536 &disable_so_sp_tss_segment_16_19536
++disable_so_fb_cvt_pixclock_fndecl_19545 fb_cvt_pixclock fndecl 0 19545 NULL
++disable_so_ipv6_addr_hash_fndecl_19554 ipv6_addr_hash fndecl 0 19554 NULL
++disable_so_fnhe_daddr_fib_nh_exception_19556 fnhe_daddr fib_nh_exception 0 19556 NULL
++disable_so_cir_addr_fintek_dev_19561 cir_addr fintek_dev 0 19561 NULL
++disable_so_saddr_max_pktgen_dev_19567 saddr_max pktgen_dev 0 19567 NULL
++disable_so_check_nnp_nosuid_fndecl_19568 check_nnp_nosuid fndecl 0 19568 NULL
++disable_so_write_phy_reg_fndecl_19585 write_phy_reg fndecl 0-2-3 19585 NULL
++disable_so_garp_join_time_vardecl_garp_c_19597 garp_join_time vardecl_garp.c 0 19597 NULL
++disable_so_signalfd_dequeue_fndecl_19602 signalfd_dequeue fndecl 0-3 19602 NULL
++disable_so_write8_comm_runtime_19603 write8 comm_runtime 4 19603 NULL
++disable_so_sys_semtimedop_fndecl_19605 sys_semtimedop fndecl 1-3-0 19605 NULL
++disable_so_xenvif_rx_queue_timeout_fndecl_19613 xenvif_rx_queue_timeout fndecl 0 19613 NULL
++disable_so_local_cm_response_timeout_ib_cm_req_param_19614 local_cm_response_timeout ib_cm_req_param 0 19614 NULL nohasharray
++disable_so_ath9k_hw_gen_timer_start_fndecl_19614 ath9k_hw_gen_timer_start fndecl 3-4 19614 &disable_so_local_cm_response_timeout_ib_cm_req_param_19614 nohasharray
++disable_so_xtal_cap0p_r820t_freq_range_19614 xtal_cap0p r820t_freq_range 0 19614 &disable_so_ath9k_hw_gen_timer_start_fndecl_19614
++disable_so_time_fmeter_19622 time fmeter 0 19622 NULL
++disable_so_mce_timer_kick_fndecl_19627 mce_timer_kick fndecl 1 19627 NULL
++disable_so_freqn_usb_stream_kernel_19628 freqn usb_stream_kernel 0 19628 NULL
++disable_so_cg_spll_spread_spectrum_2_ci_clock_registers_19639 cg_spll_spread_spectrum_2 ci_clock_registers 0 19639 NULL
++disable_so_ltr501_als_read_samp_freq_fndecl_19642 ltr501_als_read_samp_freq fndecl 0 19642 NULL
++disable_so_addr_snd_sg_page_19645 addr snd_sg_page 0 19645 NULL nohasharray
++disable_so_xfs_btree_kill_root_fndecl_19645 xfs_btree_kill_root fndecl 0 19645 &disable_so_addr_snd_sg_page_19645
++disable_so_xc_get_signal_level_fndecl_19649 xc_get_signal_level fndecl 0 19649 NULL
++disable_so_rx8581_get_datetime_fndecl_19650 rx8581_get_datetime fndecl 0 19650 NULL
++disable_so_mdiv_gk104_clk_info_19653 mdiv gk104_clk_info 0 19653 NULL
++disable_so_c_faddr_rds_connection_19664 c_faddr rds_connection 0 19664 NULL
++disable_so_afs_mntpt_expiry_timeout_vardecl_mntpt_c_19666 afs_mntpt_expiry_timeout vardecl_mntpt.c 0 19666 NULL nohasharray
++disable_so___queue_delayed_work_fndecl_19666 __queue_delayed_work fndecl 1-4 19666 &disable_so_afs_mntpt_expiry_timeout_vardecl_mntpt_c_19666
++disable_so_store_risetime_fndecl_19668 store_risetime fndecl 4-0 19668 NULL
++disable_so_div_r1_pll_values_19670 div_r1 pll_values 0 19670 NULL
++disable_so_tstamp_inet6_ifaddr_19680 tstamp inet6_ifaddr 0 19680 NULL
++disable_so_get_bt_addr_fndecl_19687 get_bt_addr fndecl 0 19687 NULL
++disable_so_clocksource_register_hz_fndecl_19688 clocksource_register_hz fndecl 2 19688 NULL
++disable_so_ceph_mdsmap_get_random_mds_fndecl_19695 ceph_mdsmap_get_random_mds fndecl 0 19695 NULL
++disable_so_addr_qla82xx_md_entry_crb_19696 addr qla82xx_md_entry_crb 0 19696 NULL
++disable_so_frequency_itd1000_state_19704 frequency itd1000_state 0 19704 NULL
++disable_so_parent_tgid_fork_proc_event_19713 parent_tgid fork_proc_event 0 19713 NULL
++disable_so_i_uid_ocfs2_dinode_19720 i_uid ocfs2_dinode 0 19720 NULL
++disable_so_mx2_camera_clock_start_fndecl_19722 mx2_camera_clock_start fndecl 0 19722 NULL
++disable_so_crypto_ccm_decrypt_fndecl_19728 crypto_ccm_decrypt fndecl 0 19728 NULL
++disable_so_seq_put_decimal_ull_fndecl_19739 seq_put_decimal_ull fndecl 3 19739 NULL
++disable_so_capture_source_addr_snd_card_saa7134_19740 capture_source_addr snd_card_saa7134 0 19740 NULL
++disable_so_write_reg_fndecl_19743 write_reg fndecl 0-3 19743 NULL
++disable_so_ndac_aic32x4_rate_divs_19748 ndac aic32x4_rate_divs 0 19748 NULL
++disable_so_hpi_sample_clock_set_source_fndecl_19753 hpi_sample_clock_set_source fndecl 1-0 19753 NULL
++disable_so_address_ipr_ioadl_desc_19756 address ipr_ioadl_desc 0 19756 NULL
++disable_so_curr_hash_dir_private_info_19760 curr_hash dir_private_info 0 19760 NULL
++disable_so_ccp_register_sha_alg_fndecl_19771 ccp_register_sha_alg fndecl 0 19771 NULL
++disable_so_addr_set_port_fndecl_19776 addr_set_port fndecl 2 19776 NULL
++disable_so_gpu_id_kfd_ioctl_get_clock_counters_args_19784 gpu_id kfd_ioctl_get_clock_counters_args 0 19784 NULL
++disable_so_seq_cpl_rx_data_ddp_norss_19788 seq cpl_rx_data_ddp_norss 0 19788 NULL nohasharray
++disable_so_cherryview_rps_max_freq_fndecl_19788 cherryview_rps_max_freq fndecl 0 19788 &disable_so_seq_cpl_rx_data_ddp_norss_19788
++disable_so_inet6_dump_addr_fndecl_19792 inet6_dump_addr fndecl 0 19792 NULL
++disable_so_pixelclock_videomode_19794 pixelclock videomode 0 19794 NULL
++disable_so_hbackporch_v4l2_bt_timings_19806 hbackporch v4l2_bt_timings 0 19806 NULL
++disable_so_dy_runtime_sc_19824 dy runtime_sc 0 19824 NULL nohasharray
++disable_so_dm_btree_insert_fndecl_19824 dm_btree_insert fndecl 0-2 19824 &disable_so_dy_runtime_sc_19824
++disable_so_cpufreq_generic_get_fndecl_19829 cpufreq_generic_get fndecl 0-1 19829 NULL
++disable_so_outdiv_fll_factors_19836 outdiv fll_factors 0 19836 NULL
++disable_so_scd_base_addr_il_priv_19840 scd_base_addr il_priv 0 19840 NULL
++disable_so_acpi_ut_short_divide_fndecl_19845 acpi_ut_short_divide fndecl 1 19845 NULL
++disable_so_timewarn_cs_read_fndecl_19849 timewarn_cs_read fndecl 0 19849 NULL
++disable_so_freq_wmi_rx_action_event_19864 freq wmi_rx_action_event 0 19864 NULL
++disable_so_eeprom_indirect_address_fndecl_19868 eeprom_indirect_address fndecl 0-2-3 19868 NULL
++disable_so_core_clock_nes_adapter_19875 core_clock nes_adapter 0 19875 NULL
++disable_so_ecx_v86_regs_19877 ecx v86_regs 0 19877 NULL
++disable_so_base_clock_show_fndecl_19894 base_clock_show fndecl 0 19894 NULL
++disable_so_jiffies_next_rtl2832_sdr_dev_19897 jiffies_next rtl2832_sdr_dev 0 19897 NULL
++disable_so_process_tgid_exit_proc_event_19898 process_tgid exit_proc_event 0 19898 NULL
++disable_so_n_cipher_suites_wiphy_19902 n_cipher_suites wiphy 0 19902 NULL
++disable_so_fsl_asrc_cal_asrck_divisor_fndecl_19905 fsl_asrc_cal_asrck_divisor fndecl 0-2 19905 NULL
++disable_so_ntimer_qs_tp_params_19910 ntimer_qs tp_params 0 19910 NULL
++disable_so_rf_freq_off_mt7601u_eeprom_params_19920 rf_freq_off mt7601u_eeprom_params 0 19920 NULL
++disable_so_ip_hash_netport4_elem_19921 ip hash_netport4_elem 0 19921 NULL
++disable_so_cnid_hfs_btree_19924 cnid hfs_btree 0 19924 NULL
++disable_so_vblank_lo_detailed_pixel_timing_19925 vblank_lo detailed_pixel_timing 0 19925 NULL
++disable_so_addr_i2c_client_19929 addr i2c_client 0 19929 NULL
++disable_so_addr_nv50_i2c_port_19931 addr nv50_i2c_port 0 19931 NULL
++disable_so_epp_write_addr_parport_operations_19935 epp_write_addr parport_operations 0-3 19935 NULL
++disable_so_ds_last_time_o2hb_disk_slot_19938 ds_last_time o2hb_disk_slot 0 19938 NULL
++disable_so_local_addr_rds_info_tcp_socket_19943 local_addr rds_info_tcp_socket 0 19943 NULL
++disable_so_i_ctime_ext3_inode_19948 i_ctime ext3_inode 0 19948 NULL
++disable_so_maven_set_reg_fndecl_19961 maven_set_reg fndecl 3 19961 NULL
++disable_so_maven_find_exact_clocks_fndecl_19977 maven_find_exact_clocks fndecl 1-2 19977 NULL
++disable_so_tda826x_sleep_fndecl_19981 tda826x_sleep fndecl 0 19981 NULL
++disable_so_rate_snd_pcm_runtime_19986 rate snd_pcm_runtime 0 19986 NULL
++disable_so___pm_runtime_suspend_fndecl_19989 __pm_runtime_suspend fndecl 0 19989 NULL
++disable_so_time_tx_survey_info_19997 time_tx survey_info 0 19997 NULL
++disable_so_rt_time_rt_rq_20001 rt_time rt_rq 0 20001 NULL
++disable_so_message_buffer_address_on_dsp_hpi_hw_obj_20007 message_buffer_address_on_dsp hpi_hw_obj 0 20007 NULL nohasharray
++disable_so_log2_element_size_xilly_channel_20007 log2_element_size xilly_channel 0 20007 &disable_so_message_buffer_address_on_dsp_hpi_hw_obj_20007
++disable_so_xfs_btree_init_block_fndecl_20025 xfs_btree_init_block fndecl 6 20025 NULL
++disable_so_ds1347_set_time_fndecl_20026 ds1347_set_time fndecl 0 20026 NULL
++disable_so_cyapa_start_runtime_fndecl_20033 cyapa_start_runtime fndecl 0 20033 NULL
++disable_so_mvumi_map_pci_addr_fndecl_20039 mvumi_map_pci_addr fndecl 0 20039 NULL
++disable_so_vpd_paddr_low_lpfc_mbx_read_rev_20047 vpd_paddr_low lpfc_mbx_read_rev 0 20047 NULL
++disable_so_di_atime_qnx4_inode_entry_20056 di_atime qnx4_inode_entry 0 20056 NULL nohasharray
++disable_so_cgid_ipc64_perm_20056 cgid ipc64_perm 0 20056 &disable_so_di_atime_qnx4_inode_entry_20056
++disable_so_bb_watchdog_timeout_ms_ath_hw_20060 bb_watchdog_timeout_ms ath_hw 0 20060 NULL
++disable_so_des5_idmac_desc_64addr_20062 des5 idmac_desc_64addr 0 20062 NULL
++disable_so_buf_addr_mlx5_ib_resize_cq_20068 buf_addr mlx5_ib_resize_cq 0 20068 NULL
++disable_so_is_partially_uptodate_address_space_operations_20075 is_partially_uptodate address_space_operations 2-3 20075 NULL
++disable_so_mask_kvm_mtrr_range_20079 mask kvm_mtrr_range 0 20079 NULL
++disable_so_st_ctime___old_kernel_stat_20080 st_ctime __old_kernel_stat 0 20080 NULL
++disable_so_i_ctime_exofs_fcb_20092 i_ctime exofs_fcb 0 20092 NULL
++disable_so_drbg_kcapi_random_fndecl_20112 drbg_kcapi_random fndecl 3-0 20112 NULL
++disable_so_gid_fuse_in_header_20113 gid fuse_in_header 0 20113 NULL
++disable_so_proto_xfrm_usersa_id_20137 proto xfrm_usersa_id 0 20137 NULL
++disable_so_nsec_timecounter_20144 nsec timecounter 0 20144 NULL nohasharray
++disable_so_kvm_set_shared_msr_fndecl_20144 kvm_set_shared_msr fndecl 2 20144 &disable_so_nsec_timecounter_20144
++disable_so___xfrm4_addr_hash_fndecl_20148 __xfrm4_addr_hash fndecl 0 20148 NULL
++disable_so_hpet_address_vardecl_20150 hpet_address vardecl 0 20150 NULL
++disable_so_next_buf_addr_c67x00_hcd_20169 next_buf_addr c67x00_hcd 0 20169 NULL
++disable_so_urg_seq_tcp_sock_20171 urg_seq tcp_sock 0 20171 NULL
++disable_so_uid_crash_uid_20189 uid crash_uid 0 20189 NULL
++disable_so_force_addr_vardecl_i2c_sis5595_c_20194 force_addr vardecl_i2c-sis5595.c 0 20194 NULL
++disable_so_get_random_bytes_fndecl_20208 get_random_bytes fndecl 2 20208 NULL
++e_epoch_start_bictcp_20220 epoch_start bictcp 0 20220 NULL nohasharray
++disable_so_end_pci_bus_region_20220 end pci_bus_region 0 20220 &e_epoch_start_bictcp_20220
++disable_so_ptp_devt_vardecl_ptp_clock_c_20222 ptp_devt vardecl_ptp_clock.c 0 20222 NULL
++disable_so_rp5c01_read_time_fndecl_20225 rp5c01_read_time fndecl 0 20225 NULL
++disable_so_scsi_inq_timeout_vardecl_scsi_scan_c_20228 scsi_inq_timeout vardecl_scsi_scan.c 0 20228 NULL
++disable_so_crypto_report_alg_fndecl_20233 crypto_report_alg fndecl 0 20233 NULL
++disable_so_cache_flush_timeout_vardecl_ms_block_c_20240 cache_flush_timeout vardecl_ms_block.c 0 20240 NULL nohasharray
++disable_so_freq_to_note_fndecl_20240 freq_to_note fndecl 0-1 20240 &disable_so_cache_flush_timeout_vardecl_ms_block_c_20240
++disable_so_sdhci_runtime_pm_put_fndecl_20243 sdhci_runtime_pm_put fndecl 0 20243 NULL nohasharray
++disable_so_lookup_signal_page_by_index_fndecl_20243 lookup_signal_page_by_index fndecl 2 20243 &disable_so_sdhci_runtime_pm_put_fndecl_20243
++disable_so_blkaddr_fsync_inode_entry_20244 blkaddr fsync_inode_entry 0 20244 NULL
++disable_so_refb_r_div_ad9523_platform_data_20245 refb_r_div ad9523_platform_data 0 20245 NULL nohasharray
++disable_so_i40e_aq_mac_address_read_fndecl_20245 i40e_aq_mac_address_read fndecl 0 20245 &disable_so_refb_r_div_ad9523_platform_data_20245
++disable_so_buf_count_ccp_aes_cmac_req_ctx_20252 buf_count ccp_aes_cmac_req_ctx 0 20252 NULL
++disable_so_nfs4_proc_get_lease_time_fndecl_20254 nfs4_proc_get_lease_time fndecl 0 20254 NULL nohasharray
++disable_so_dma_addr_enet_cb_20254 dma_addr enet_cb 0 20254 &disable_so_nfs4_proc_get_lease_time_fndecl_20254
++disable_so_eax_user_regs_struct32_20260 eax user_regs_struct32 0 20260 NULL
++disable_so_freq_wmi_remain_on_chnl_cmd_20271 freq wmi_remain_on_chnl_cmd 0 20271 NULL
++disable_so_esp_tss_segment_32_20300 esp tss_segment_32 0 20300 NULL
++disable_so_hash_netportnet6_expire_fndecl_20301 hash_netportnet6_expire fndecl 4 20301 NULL
++disable_so_dma_buffer_sst_module_runtime_context_20307 dma_buffer sst_module_runtime_context 0 20307 NULL nohasharray
++disable_so_dest_data_addr_icp_qat_fw_comn_req_mid_20307 dest_data_addr icp_qat_fw_comn_req_mid 0 20307 &disable_so_dma_buffer_sst_module_runtime_context_20307
++disable_so_nosnoop_pbladdr_fw_ri_tpte_20317 nosnoop_pbladdr fw_ri_tpte 0 20317 NULL
++disable_so_sir_addr_sockaddr_irda_20319 sir_addr sockaddr_irda 0 20319 NULL
++disable_so_iter_div_u64_rem_fndecl_20326 iter_div_u64_rem fndecl 0 20326 NULL
++disable_so_ps2_adjust_timeout_fndecl_20329 ps2_adjust_timeout fndecl 0-3-2 20329 NULL nohasharray
++disable_so_ztime_trackpoint_data_20329 ztime trackpoint_data 0 20329 &disable_so_ps2_adjust_timeout_fndecl_20329
++disable_so_ui_uid_ufs2_inode_20330 ui_uid ufs2_inode 0 20330 NULL nohasharray
++disable_so_stb6000_sleep_fndecl_20330 stb6000_sleep fndecl 0 20330 &disable_so_ui_uid_ufs2_inode_20330
++disable_so_gfs2_bit_search_fndecl_20331 gfs2_bit_search fndecl 0-2 20331 NULL
++disable_so_ccp_run_aes_cmac_cmd_fndecl_20335 ccp_run_aes_cmac_cmd fndecl 0 20335 NULL
++disable_so_compat_sys_clock_gettime_fndecl_20336 compat_sys_clock_gettime fndecl 1 20336 NULL
++disable_so_div_fc2580_pll_20347 div fc2580_pll 0 20347 NULL
++disable_so_xfrm_spi_hash_fndecl_20353 xfrm_spi_hash fndecl 0-3-4-5 20353 NULL
++disable_so_compute_duty_cycle_fndecl_20356 compute_duty_cycle fndecl 0-2 20356 NULL
++disable_so_pmcraid_read_interrupts_fndecl_20362 pmcraid_read_interrupts fndecl 0 20362 NULL
++disable_so_receive_bitmap_fndecl_20365 receive_bitmap fndecl 0 20365 NULL
++disable_so_ccycle_esp_20366 ccycle esp 0 20366 NULL
++disable_so_rspi_wait_for_interrupt_fndecl_20368 rspi_wait_for_interrupt fndecl 3-0 20368 NULL
++disable_so_bitmap_startwrite_fndecl_20371 bitmap_startwrite fndecl 2-3 20371 NULL
++disable_so_crypto_rfc4543_decrypt_fndecl_20376 crypto_rfc4543_decrypt fndecl 0 20376 NULL
++disable_so_acpi_os_signal_fndecl_20378 acpi_os_signal fndecl 0 20378 NULL
++disable_so_interrupt_type___vxge_hw_fifo_20379 interrupt_type __vxge_hw_fifo 0 20379 NULL
++disable_so_address_lo_lpfc_rqe_20386 address_lo lpfc_rqe 0 20386 NULL
++disable_so_addr_rsxx_reg_access_20389 addr rsxx_reg_access 0 20389 NULL
++disable_so_vpm_read_address_fndecl_20399 vpm_read_address fndecl 0 20399 NULL
++disable_so_block_addr_f2fs_nat_entry_20409 block_addr f2fs_nat_entry 0 20409 NULL
++disable_so_backlight_duty_cycle_psb_intel_mode_device_20421 backlight_duty_cycle psb_intel_mode_device 0 20421 NULL
++disable_so_skd_start_timer_fndecl_20432 skd_start_timer fndecl 0 20432 NULL
++disable_so_cmd64x_program_timings_fndecl_20435 cmd64x_program_timings fndecl 2 20435 NULL
++disable_so_chgfreq_cs42l52_platform_data_20448 chgfreq cs42l52_platform_data 0 20448 NULL
++disable_so_tvaudio_sleep_fndecl_20455 tvaudio_sleep fndecl 2 20455 NULL
++disable_so_simplefb_clocks_init_fndecl_20466 simplefb_clocks_init fndecl 0 20466 NULL
++disable_so_last_time_stats_20477 last time_stats 0 20477 NULL
++disable_so_min_freq_intel_gen6_power_mgmt_20480 min_freq intel_gen6_power_mgmt 0 20480 NULL
++disable_so_il_dbgfs_interrupt_read_fndecl_20484 il_dbgfs_interrupt_read fndecl 3-0 20484 NULL
++disable_so_final_timeout_irlap_cb_20486 final_timeout irlap_cb 0 20486 NULL
++disable_so_sec_btrfs_timespec_20492 sec btrfs_timespec 0 20492 NULL
++disable_so_bitmap_prepare_for_write_fndecl_20495 bitmap_prepare_for_write fndecl 3 20495 NULL
++disable_so_cg_spll_func_cntl_3_ni_clock_registers_20497 cg_spll_func_cntl_3 ni_clock_registers 0 20497 NULL
++disable_so_pch_udc_disable_interrupts_fndecl_20502 pch_udc_disable_interrupts fndecl 2 20502 NULL
++disable_so_i_mtime_bfs_inode_20503 i_mtime bfs_inode 0 20503 NULL
++disable_so_timeout_nft_dynset_20509 timeout nft_dynset 0 20509 NULL
++disable_so_ni_populate_memory_timing_parameters_fndecl_20513 ni_populate_memory_timing_parameters fndecl 0 20513 NULL
++disable_so_scnprintf_fndecl_20531 scnprintf fndecl 0-2 20531 NULL nohasharray
++disable_so_select_addr_qla8xxx_minidump_entry_queue_20531 select_addr qla8xxx_minidump_entry_queue 0 20531 &disable_so_scnprintf_fndecl_20531
++disable_so___ww_mutex_lock_interruptible_slowpath_fndecl_20533 __ww_mutex_lock_interruptible_slowpath fndecl 0 20533 NULL
++disable_so_compute_subtree_max_end_fndecl_20536 compute_subtree_max_end fndecl 0 20536 NULL
++disable_so_wlc_lcnphy_qdiv_roundup_fndecl_20539 wlc_lcnphy_qdiv_roundup fndecl 0-2-1 20539 NULL
++disable_so_value_ieee80211_timeout_interval_ie_20540 value ieee80211_timeout_interval_ie 0 20540 NULL
++disable_so_skb_put_le32_fndecl_20551 skb_put_le32 fndecl 2 20551 NULL
++disable_so_get_setup_data_paddr_fndecl_20558 get_setup_data_paddr fndecl 0 20558 NULL
++disable_so_i_mtime_nilfs_inode_20563 i_mtime nilfs_inode 0 20563 NULL
++disable_so_cipher_key_params_20564 cipher key_params 0 20564 NULL
++disable_so_iscsit_na_random_datain_pdu_offsets_fndecl_20565 iscsit_na_random_datain_pdu_offsets fndecl 0 20565 NULL
++disable_so_delay_mult_qib_pportdata_20567 delay_mult qib_pportdata 0 20567 NULL
++disable_so_pm_timer_block_acpi_table_fadt_20569 pm_timer_block acpi_table_fadt 0 20569 NULL
++disable_so_addr_data_si_sm_io_20586 addr_data si_sm_io 0 20586 NULL nohasharray
++disable_so_sib_flowinfo_sockaddr_ib_20586 sib_flowinfo sockaddr_ib 0 20586 &disable_so_addr_data_si_sm_io_20586
++disable_so_dll_cntl_rv770_clock_registers_20601 dll_cntl rv770_clock_registers 0 20601 NULL nohasharray
++disable_so_field_bit_position_acpi_create_field_info_20601 field_bit_position acpi_create_field_info 0 20601 &disable_so_dll_cntl_rv770_clock_registers_20601
++disable_so_ndtc_hash_mask_ndt_config_20603 ndtc_hash_mask ndt_config 0 20603 NULL
++disable_so_borrow_defer_timestamp_brcmf_fws_info_20615 borrow_defer_timestamp brcmf_fws_info 0 20615 NULL
++disable_so_wakeup_max_time_show_fndecl_20622 wakeup_max_time_show fndecl 0 20622 NULL
++disable_so_tw_flowlabel_inet_timewait_sock_20634 tw_flowlabel inet_timewait_sock 0 20634 NULL
++disable_so_ib_baseaddr_l_mvumi_hs_page4_20645 ib_baseaddr_l mvumi_hs_page4 0 20645 NULL
++disable_so_shash_register_instance_fndecl_20652 shash_register_instance fndecl 0 20652 NULL
++disable_so_snd_usb_clock_find_source_fndecl_20655 snd_usb_clock_find_source fndecl 0-2 20655 NULL
++disable_so_g_dv_timings_v4l2_subdev_video_ops_20656 g_dv_timings v4l2_subdev_video_ops 0 20656 NULL
++disable_so_radio_addr_em28xx_board_20659 radio_addr em28xx_board 0 20659 NULL
++disable_so_cx24117_sleep_fndecl_20661 cx24117_sleep fndecl 0 20661 NULL
++disable_so_run_one_delayed_ref_fndecl_20668 run_one_delayed_ref fndecl 0 20668 NULL nohasharray
++disable_so_saddr_ircomm_info_20668 saddr ircomm_info 0 20668 &disable_so_run_one_delayed_ref_fndecl_20668
++disable_so_i2c_addr_req_t_20671 i2c_addr req_t 0 20671 NULL
++disable_so_mcryptd_hash_import_fndecl_20673 mcryptd_hash_import fndecl 0 20673 NULL
++disable_so_ath10k_reg_addr_read_fndecl_20675 ath10k_reg_addr_read fndecl 3-0 20675 NULL nohasharray
++disable_so_frequency_stepsize_dvb_frontend_info_20675 frequency_stepsize dvb_frontend_info 0 20675 &disable_so_ath10k_reg_addr_read_fndecl_20675
++disable_so_latency_timer_show_fndecl_20676 latency_timer_show fndecl 0 20676 NULL nohasharray
++disable_so_total_bytes_transferred_snd_compr_runtime_20676 total_bytes_transferred snd_compr_runtime 0 20676 &disable_so_latency_timer_show_fndecl_20676
++disable_so_control_addr_qla8xxx_minidump_entry_cache_20678 control_addr qla8xxx_minidump_entry_cache 0 20678 NULL
++disable_so_timeout_i2c_algo_bit_data_20687 timeout i2c_algo_bit_data 0 20687 NULL
++disable_so_lookup_address_fndecl_20689 lookup_address fndecl 1 20689 NULL
++disable_so_pcf8523_rtc_read_time_fndecl_20690 pcf8523_rtc_read_time fndecl 0 20690 NULL
++disable_so_freq_nvbios_cstepX_20695 freq nvbios_cstepX 0 20695 NULL
++disable_so_seq_virtio_gpu_fence_20701 seq virtio_gpu_fence 0 20701 NULL
++disable_so_ftime_qlcnic_filter_20707 ftime qlcnic_filter 0 20707 NULL nohasharray
++disable_so_myri10ge_rss_hash_vardecl_myri10ge_c_20707 myri10ge_rss_hash vardecl_myri10ge.c 0 20707 &disable_so_ftime_qlcnic_filter_20707
++disable_so_mwifiex_cmd_802_11_mac_address_fndecl_20714 mwifiex_cmd_802_11_mac_address fndecl 0 20714 NULL
++disable_so_typeAndTimezone_timestamp_20722 typeAndTimezone timestamp 0 20722 NULL
++disable_so_btrfs_delayed_update_inode_fndecl_20726 btrfs_delayed_update_inode fndecl 0 20726 NULL
++disable_so_dsc_timeout_ide_tape_obj_20727 dsc_timeout ide_tape_obj 0 20727 NULL
++disable_so_stb0899_dvbs2_set_carr_freq_fndecl_20730 stb0899_dvbs2_set_carr_freq fndecl 2-3 20730 NULL
++disable_so_wl1271_acx_service_period_timeout_fndecl_20736 wl1271_acx_service_period_timeout fndecl 0 20736 NULL
++disable_so_am335x_tsc_se_clr_fndecl_20745 am335x_tsc_se_clr fndecl 2 20745 NULL
++disable_so_node_guid_ib_node_info_20750 node_guid ib_node_info 0 20750 NULL nohasharray
++disable_so_rsxx_addr8_to_laddr_fndecl_20750 rsxx_addr8_to_laddr fndecl 0-1 20750 &disable_so_node_guid_ib_node_info_20750
++disable_so_nilfs_btree_propagate_p_fndecl_20757 nilfs_btree_propagate_p fndecl 0 20757 NULL
++disable_so_read_file_antenna_diversity_fndecl_20758 read_file_antenna_diversity fndecl 0 20758 NULL
++disable_so_dev_pm_opp_find_freq_exact_fndecl_20768 dev_pm_opp_find_freq_exact fndecl 2 20768 NULL
++disable_so_mpll_dq_func_cntl_ni_clock_registers_20779 mpll_dq_func_cntl ni_clock_registers 0 20779 NULL
++disable_so_print_time_fndecl_20783 print_time fndecl 1-0 20783 NULL
++disable_so_store_fan_stop_time_fndecl_20785 store_fan_stop_time fndecl 0-4 20785 NULL nohasharray
++disable_so_gpu_addr_r600_vram_scratch_20785 gpu_addr r600_vram_scratch 0 20785 &disable_so_store_fan_stop_time_fndecl_20785
++disable_so_s5m8767_set_voltage_time_sel_fndecl_20788 s5m8767_set_voltage_time_sel fndecl 0-2-3 20788 NULL nohasharray
++disable_so_addr_kvm_async_pf_20788 addr kvm_async_pf 0 20788 &disable_so_s5m8767_set_voltage_time_sel_fndecl_20788
++disable_so_rxLifetime_ConfigRid_20793 rxLifetime ConfigRid 0 20793 NULL
++disable_so_downdelay_bond_params_20794 downdelay bond_params 0 20794 NULL
++disable_so_dma_address_info_20796 dma address_info 0 20796 NULL
++disable_so_write16_async_rtl_io_20799 write16_async rtl_io 2-3 20799 NULL
++disable_so_sec_2_cycles_fndecl_20803 sec_2_cycles fndecl 0-1 20803 NULL
++disable_so_nsec_base_pvclock_gtod_data_20804 nsec_base pvclock_gtod_data 0 20804 NULL
++disable_so_ndo_set_mac_address_net_device_ops_20806 ndo_set_mac_address net_device_ops 0 20806 NULL
++disable_so_crypto_dump_report_fndecl_20811 crypto_dump_report fndecl 0 20811 NULL
++disable_so_ttime_total_cfq_ttime_20813 ttime_total cfq_ttime 0 20813 NULL
++disable_so_freq_chan_info_2064_lcnphy_20814 freq chan_info_2064_lcnphy 0 20814 NULL
++disable_so_msleep_fndecl_20815 msleep fndecl 1 20815 NULL nohasharray
++disable_so_freq_hz_xc4000_priv_20815 freq_hz xc4000_priv 0 20815 &disable_so_msleep_fndecl_20815
++disable_so_t4_set_params_nosleep_fndecl_20819 t4_set_params_nosleep fndecl 0-2-3-4 20819 NULL
++disable_so_get_next_timer_interrupt_fndecl_20832 get_next_timer_interrupt fndecl 0-1 20832 NULL
++disable_so_vol_bit_width_anatop_regulator_20852 vol_bit_width anatop_regulator 0 20852 NULL
++disable_so_VSyncStart_xtimings_20858 VSyncStart xtimings 0 20858 NULL
++disable_so_calibrate_delay_is_known_fndecl_20859 calibrate_delay_is_known fndecl 0 20859 NULL
++disable_so_handling_delay_adc_jack_data_20874 handling_delay adc_jack_data 0 20874 NULL
++disable_so_fm3130_get_time_fndecl_20875 fm3130_get_time fndecl 0 20875 NULL
++disable_so_addr_hi_mv_sg_20880 addr_hi mv_sg 0 20880 NULL
++disable_so_print_time_fndecl_20896 print_time fndecl 1 20896 NULL nohasharray
++disable_so_ini_jiffies_tm6000_dmaqueue_20896 ini_jiffies tm6000_dmaqueue 0 20896 &disable_so_print_time_fndecl_20896
++disable_so_timeout_carl9170_tx_info_20900 timeout carl9170_tx_info 0 20900 NULL
++disable_so_phys_addr_t4_sq_20908 phys_addr t4_sq 0 20908 NULL
++disable_so_ns_2_cycles_fndecl_20913 ns_2_cycles fndecl 0-1 20913 NULL
++disable_so_number_fndecl_20920 number fndecl 3 20920 NULL
++disable_so_n_wm8978_pll_div_20930 n wm8978_pll_div 0 20930 NULL
++disable_so_snd_es1938_interrupt_fndecl_20934 snd_es1938_interrupt fndecl 1 20934 NULL
++disable_so___ilog2_u64_fndecl_20935 __ilog2_u64 fndecl 0-1 20935 NULL
++disable_so_acpi_target_sleep_state_vardecl_sleep_c_20940 acpi_target_sleep_state vardecl_sleep.c 0 20940 NULL
++disable_so_wq_cpumask_store_fndecl_20950 wq_cpumask_store fndecl 0-4 20950 NULL
++disable_so_bmc150_accel_get_startup_times_fndecl_20957 bmc150_accel_get_startup_times fndecl 0 20957 NULL
++disable_so_antdiv_ctl2_modal_eep_4k_header_20958 antdiv_ctl2 modal_eep_4k_header 0 20958 NULL
++disable_so_rc_keydown_notimeout_fndecl_20964 rc_keydown_notimeout fndecl 4-3 20964 NULL
++disable_so_inet6_fill_ifaddr_fndecl_20965 inet6_fill_ifaddr fndecl 0-3-5 20965 NULL
++disable_so_hca_core_clock_mlx4_caps_20972 hca_core_clock mlx4_caps 0 20972 NULL
++disable_so_netxen_set_interrupt_mode_fndecl_20973 netxen_set_interrupt_mode fndecl 2 20973 NULL
++disable_so_slottime_sixpack_20976 slottime sixpack 0 20976 NULL
++disable_so_mpll_ad_func_cntl_rv770_clock_registers_20978 mpll_ad_func_cntl rv770_clock_registers 0 20978 NULL
++disable_so_uhash_entries_vardecl_udp_c_20980 uhash_entries vardecl_udp.c 0 20980 NULL
++disable_so_s2mps11_regulator_set_voltage_time_sel_fndecl_20983 s2mps11_regulator_set_voltage_time_sel fndecl 0-2-3 20983 NULL
++disable_so_mlx4_ib_query_gid_fndecl_20997 mlx4_ib_query_gid fndecl 0-2-3 20997 NULL
++disable_so_ep_timeout_secs_vardecl_iwch_cm_c_20999 ep_timeout_secs vardecl_iwch_cm.c 0 20999 NULL nohasharray
++disable_so_w83627ehf_write_fan_div_fndecl_20999 w83627ehf_write_fan_div fndecl 2 20999 &disable_so_ep_timeout_secs_vardecl_iwch_cm_c_20999
++disable_so_vddc_radeon_clock_and_voltage_limits_21012 vddc radeon_clock_and_voltage_limits 0 21012 NULL
++disable_so_spu_sleep_ds_device_21015 spu_sleep ds_device 0 21015 NULL
++disable_so_dqb_btime_if_dqblk_21019 dqb_btime if_dqblk 0 21019 NULL
++disable_so_sg_frame_phys_addr_megasas_cmd_fusion_21025 sg_frame_phys_addr megasas_cmd_fusion 0 21025 NULL
++disable_so_radeon_crtc_set_base_atomic_fndecl_21027 radeon_crtc_set_base_atomic fndecl 0-3-4 21027 NULL
++disable_so_i40e_get_san_mac_addr_fndecl_21029 i40e_get_san_mac_addr fndecl 0 21029 NULL
++disable_so_regmap_del_irq_chip_fndecl_21031 regmap_del_irq_chip fndecl 1 21031 NULL
++disable_so_res_hash_dlm_rsb_21034 res_hash dlm_rsb 0 21034 NULL
++disable_so_early_acpi_parse_madt_lapic_addr_ovr_fndecl_21041 early_acpi_parse_madt_lapic_addr_ovr fndecl 0 21041 NULL
++disable_so_tw_tos_inet_timewait_sock_21047 tw_tos inet_timewait_sock 0 21047 NULL
++disable_so_cfg80211_get_chans_dfs_cac_time_fndecl_21052 cfg80211_get_chans_dfs_cac_time fndecl 0-2-3 21052 NULL
++disable_so_random_tipc_net_21055 random tipc_net 0 21055 NULL
++disable_so_tag_reg_addr_qla8xxx_minidump_entry_cache_21058 tag_reg_addr qla8xxx_minidump_entry_cache 0 21058 NULL
++disable_so_m1_gma_clock_t_21062 m1 gma_clock_t 0 21062 NULL
++disable_so_cutime_signal_struct_21069 cutime signal_struct 0 21069 NULL
++disable_so_frac_pos_dummy_systimer_pcm_21070 frac_pos dummy_systimer_pcm 0 21070 NULL
++disable_so_mmc_sdio_runtime_resume_fndecl_21078 mmc_sdio_runtime_resume fndecl 0 21078 NULL
++disable_so_last_write_time_smb_com_query_information_rsp_21093 last_write_time smb_com_query_information_rsp 0 21093 NULL
++disable_so_ssb_sdio_set_sbaddr_window_fndecl_21116 ssb_sdio_set_sbaddr_window fndecl 0-2 21116 NULL
++disable_so_apei_clear_mce_fndecl_21119 apei_clear_mce fndecl 0 21119 NULL
++disable_so_pnfs_layoutget_retry_bit_wait_fndecl_21127 pnfs_layoutget_retry_bit_wait fndecl 0 21127 NULL
++disable_so_rq_page_table_addr_lo_iscsi_kwqe_conn_offload2_21144 rq_page_table_addr_lo iscsi_kwqe_conn_offload2 0 21144 NULL
++disable_so_addrconf_sysctl_forward_fndecl_21146 addrconf_sysctl_forward fndecl 0 21146 NULL
++disable_so_bcma_pmu_get_bus_clock_fndecl_21147 bcma_pmu_get_bus_clock fndecl 0 21147 NULL nohasharray
++disable_so_address_acpi_generic_address_21147 address acpi_generic_address 0 21147 &disable_so_bcma_pmu_get_bus_clock_fndecl_21147
++disable_so_phys_addr__DMABUFFERENTRY_21149 phys_addr _DMABUFFERENTRY 0 21149 NULL
++disable_so_phy_addr_bnx2x_port_21152 phy_addr bnx2x_port 0 21152 NULL
++disable_so_demod_address_va1j5jf8007t_config_21154 demod_address va1j5jf8007t_config 0 21154 NULL
++disable_so_mgt_orb_timeout_sbp2_target_21164 mgt_orb_timeout sbp2_target 0 21164 NULL
++disable_so_io_addr_blogic_probeinfo_21171 io_addr blogic_probeinfo 0 21171 NULL
++disable_so_stag_c2_data_addr_21185 stag c2_data_addr 0 21185 NULL
++disable_so_idle_timeout_set_fndecl_21189 idle_timeout_set fndecl 2 21189 NULL nohasharray
++disable_so_rx_dma_addr_sh_msiof_spi_priv_21189 rx_dma_addr sh_msiof_spi_priv 0 21189 &disable_so_idle_timeout_set_fndecl_21189
++disable_so_poll_schedule_timeout_fndecl_21195 poll_schedule_timeout fndecl 4 21195 NULL
++disable_so_fb_cvt_ideal_duty_cycle_fndecl_21197 fb_cvt_ideal_duty_cycle fndecl 0 21197 NULL
++disable_so_dwell_time_brcmf_fil_af_params_le_21198 dwell_time brcmf_fil_af_params_le 0 21198 NULL
++disable_so_pciehp_poll_time_vardecl_21204 pciehp_poll_time vardecl 0 21204 NULL
++disable_so_sha1_base_do_update_fndecl_21207 sha1_base_do_update fndecl 3 21207 NULL
++disable_so_arizona_runtime_suspend_fndecl_21209 arizona_runtime_suspend fndecl 0 21209 NULL nohasharray
++disable_so_pdev_bus_addr_vardecl_pdev_bus_c_21209 pdev_bus_addr vardecl_pdev_bus.c 0 21209 &disable_so_arizona_runtime_suspend_fndecl_21209
++disable_so_xc_get_frequency_error_fndecl_21217 xc_get_frequency_error fndecl 0 21217 NULL
++disable_so_phys_addr_megasas_sge_skinny_21220 phys_addr megasas_sge_skinny 0 21220 NULL
++disable_so_i2c_addr_radeon_router_21224 i2c_addr radeon_router 0 21224 NULL
++disable_so_invalidatepage_address_space_operations_21227 invalidatepage address_space_operations 2-3 21227 NULL
++disable_so_usb_free_coherent_fndecl_21239 usb_free_coherent fndecl 2-4 21239 NULL
++disable_so_ci_populate_memory_timing_parameters_fndecl_21251 ci_populate_memory_timing_parameters fndecl 0-2-3 21251 NULL
++disable_so_compat_sys_semtimedop_fndecl_21253 compat_sys_semtimedop fndecl 3-1-0 21253 NULL
++disable_so_blkcipher_walk_done_fndecl_21256 blkcipher_walk_done fndecl 0-3 21256 NULL
++disable_so_iscsi_tpg_attrib_store_login_timeout_fndecl_21278 iscsi_tpg_attrib_store_login_timeout fndecl 0-3 21278 NULL
++disable_so_tuner_address_mt2063_config_21279 tuner_address mt2063_config 0 21279 NULL
++disable_so_register_refined_jiffies_fndecl_21283 register_refined_jiffies fndecl 1 21283 NULL
++disable_so_debug_dma_unmap_sg_fndecl_21286 debug_dma_unmap_sg fndecl 3 21286 NULL
++disable_so_of_do_get_timings_fndecl_21294 of_do_get_timings fndecl 0 21294 NULL
++disable_so_mtrr_file_del_fndecl_21306 mtrr_file_del fndecl 1-2 21306 NULL
++disable_so_set_timeout_watchdog_ops_21311 set_timeout watchdog_ops 2-0 21311 NULL
++disable_so_ipv6_addr_prefix_fndecl_21318 ipv6_addr_prefix fndecl 3 21318 NULL
++disable_so_ath6kl_disconnect_timeout_read_fndecl_21329 ath6kl_disconnect_timeout_read fndecl 3-0 21329 NULL
++disable_so_tx_duty_cycle_cck_brcms_c_info_21336 tx_duty_cycle_cck brcms_c_info 0 21336 NULL
++disable_so_pentium3_get_frequency_fndecl_21339 pentium3_get_frequency fndecl 0 21339 NULL
++disable_so_ldr_img_ir_timing_regvals_21340 ldr img_ir_timing_regvals 0 21340 NULL
++disable_so_extended_cpuid_level_cpuinfo_x86_21354 extended_cpuid_level cpuinfo_x86 0 21354 NULL
++disable_so_btrfs_dev_replace_time_started_fndecl_21355 btrfs_dev_replace_time_started fndecl 0 21355 NULL
++disable_so_sys_getrandom_fndecl_21357 sys_getrandom fndecl 3-0-2 21357 NULL
++disable_so_bit_offset_bm_xfer_ctx_21370 bit_offset bm_xfer_ctx 0 21370 NULL
++disable_so_dtime_inet_peer_21374 dtime inet_peer 0 21374 NULL
++disable_so_ac_btime_acct_v3_21378 ac_btime acct_v3 0 21378 NULL nohasharray
++disable_so_ccp_aes_cmac_final_fndecl_21378 ccp_aes_cmac_final fndecl 0 21378 &disable_so_ac_btime_acct_v3_21378
++disable_so_clock_sdhci_host_21381 clock sdhci_host 0 21381 NULL
++disable_so_check_delayed_ref_fndecl_21388 check_delayed_ref fndecl 0-4-5-6 21388 NULL
++disable_so_ath_gen_timer_alloc_fndecl_21393 ath_gen_timer_alloc fndecl 5 21393 NULL
++disable_so_irq_address_info_21405 irq address_info 0 21405 NULL
++disable_so_mpll_ad_func_cntl_2_rv770_clock_registers_21412 mpll_ad_func_cntl_2 rv770_clock_registers 0 21412 NULL
++disable_so_sctp_copy_one_addr_fndecl_21416 sctp_copy_one_addr fndecl 0-5 21416 NULL
++disable_so_high_mcp_dma_addr_21433 high mcp_dma_addr 0 21433 NULL
++disable_so_volt_change_delay_si_ulv_param_21442 volt_change_delay si_ulv_param 0 21442 NULL
++disable_so_msr_bitmap_vmcs12_21445 msr_bitmap vmcs12 0 21445 NULL
++disable_so_setauthsize_crypto_aead_21450 setauthsize crypto_aead 2 21450 NULL
++disable_so_next_txpwr_check_time_b43_phy_21453 next_txpwr_check_time b43_phy 0 21453 NULL
++disable_so_nl80211_send_assoc_timeout_fndecl_21464 nl80211_send_assoc_timeout fndecl 4 21464 NULL nohasharray
++disable_so_i_no_addr_gfs2_inode_21464 i_no_addr gfs2_inode 0 21464 &disable_so_nl80211_send_assoc_timeout_fndecl_21464
++disable_so_indirect_dma_addr_srp_request_21474 indirect_dma_addr srp_request 0 21474 NULL
++disable_so_btrfs_uuid_iter_rem_fndecl_21476 btrfs_uuid_iter_rem fndecl 0-3-4 21476 NULL
++disable_so_addr_op_msr_21481 addr op_msr 0 21481 NULL
++disable_so_sysctl_x25_call_request_timeout_vardecl_21486 sysctl_x25_call_request_timeout vardecl 0 21486 NULL
++disable_so_guard_time_trf7970a_21487 guard_time trf7970a 0 21487 NULL
++disable_so_mclk_div_mcam_camera_21501 mclk_div mcam_camera 0 21501 NULL
++disable_so_cpu_to_fs16_fndecl_21502 cpu_to_fs16 fndecl 0-2 21502 NULL
++disable_so_dma_addr_dma_mapping_21503 dma_addr dma_mapping 0 21503 NULL
++disable_so_extra_buf1_address_ene_device_21504 extra_buf1_address ene_device 0 21504 NULL
++disable_so_last_completion_time_lpfc_hba_21515 last_completion_time lpfc_hba 0 21515 NULL
++disable_so_il_add_beacon_time_fndecl_21519 il_add_beacon_time fndecl 0-4-3-2 21519 NULL
++disable_so_stats_reset_time_bfa_port_s_21525 stats_reset_time bfa_port_s 0 21525 NULL
++disable_so_rptr_gpu_addr_kernel_queue_21535 rptr_gpu_addr kernel_queue 0 21535 NULL nohasharray
++disable_so_ceph_crypto_init_fndecl_21535 ceph_crypto_init fndecl 0 21535 &disable_so_rptr_gpu_addr_kernel_queue_21535
++disable_so_out_of_line_wait_on_bit_lock_fndecl_21538 out_of_line_wait_on_bit_lock fndecl 0 21538 NULL
++disable_so_demod_address_s5h1409_config_21550 demod_address s5h1409_config 0 21550 NULL
++disable_so_bmsr_cphy_21556 bmsr cphy 0 21556 NULL
++disable_so_small_buf_phy_addr_low_ql3_adapter_21561 small_buf_phy_addr_low ql3_adapter 0 21561 NULL
++disable_so_bitmap_start_sync_fndecl_21564 bitmap_start_sync fndecl 2-4 21564 NULL
++disable_so_last_frequency_mb86a20s_state_21569 last_frequency mb86a20s_state 0 21569 NULL
++disable_so_addr_hi_st_ss_sgitem_21571 addr_hi st_ss_sgitem 0 21571 NULL
++disable_so_last_dev_address_fndecl_21603 last_dev_address fndecl 0-1 21603 NULL
++disable_so_account_user_time_fndecl_21611 account_user_time fndecl 2-3 21611 NULL
++disable_so_mdiv_nvkm_domain_21612 mdiv nvkm_domain 0 21612 NULL
++disable_so_mclk_div_wm8804_priv_21616 mclk_div wm8804_priv 0 21616 NULL
++disable_so_dclk___fb_timings_21625 dclk __fb_timings 0 21625 NULL
++disable_so_ts_jiffies_xpc_rsvd_page_21630 ts_jiffies xpc_rsvd_page 0 21630 NULL
++disable_so_wlcore_translate_addr_fndecl_21631 wlcore_translate_addr fndecl 0-2 21631 NULL
++disable_so_clock_mult_par_info_21633 clock_mult par_info 0 21633 NULL
++disable_so_timeout_mgmt_cp_set_discoverable_21656 timeout mgmt_cp_set_discoverable 0 21656 NULL
++disable_so_timeout_jiffies_jmb38x_ms_host_21666 timeout_jiffies jmb38x_ms_host 0 21666 NULL
++disable_so_ax88179_set_mac_addr_fndecl_21668 ax88179_set_mac_addr fndecl 0 21668 NULL
++disable_so_signalfd_copyinfo_fndecl_21691 signalfd_copyinfo fndecl 0 21691 NULL
++disable_so_crypto_cbc_setkey_fndecl_21695 crypto_cbc_setkey fndecl 0-3 21695 NULL
++disable_so_pm_freeze_timeout_show_fndecl_21696 pm_freeze_timeout_show fndecl 0 21696 NULL
++disable_so_ip_clock_khz_ocores_i2c_21700 ip_clock_khz ocores_i2c 0 21700 NULL
++disable_so_HDSPM_bit2freq_fndecl_21701 HDSPM_bit2freq fndecl 0 21701 NULL
++disable_so_qdelay_old_pie_vars_21717 qdelay_old pie_vars 0 21717 NULL
++disable_so_pixel_clock_max_soc_camera_sense_21728 pixel_clock_max soc_camera_sense 0 21728 NULL
++disable_so_hash_max_net_bridge_21732 hash_max net_bridge 0 21732 NULL
++disable_so_hashfn_fndecl_21739 hashfn fndecl 0 21739 NULL
++disable_so_default_gfx_clock_sst_spec_21741 default_gfx_clock sst_spec 0 21741 NULL
++disable_so_snd_seq_oss_timer_ioctl_fndecl_21751 snd_seq_oss_timer_ioctl fndecl 0 21751 NULL
++disable_so_addr1_dir_table_slot_21753 addr1 dir_table_slot 0 21753 NULL
++disable_so_ieee80211_extend_absent_time_fndecl_21756 ieee80211_extend_absent_time fndecl 2 21756 NULL
++disable_so_sumo_set_ds_dividers_fndecl_21757 sumo_set_ds_dividers fndecl 2-3 21757 NULL
++disable_so_fm_rx_set_freq_fndecl_21763 fm_rx_set_freq fndecl 0-2 21763 NULL
++disable_so_end_phys_addr_qxl_memslot_21767 end_phys_addr qxl_memslot 0 21767 NULL
++disable_so_phys_addr_megasas_sge64_21771 phys_addr megasas_sge64 0 21771 NULL
++disable_so_evtchn_from_irq_fndecl_21772 evtchn_from_irq fndecl 1-0 21772 NULL
++disable_so_addr_pch_gbe_phy_info_21776 addr pch_gbe_phy_info 0 21776 NULL
++disable_so_jiffies_vid_out_vivid_dev_21777 jiffies_vid_out vivid_dev 0 21777 NULL
++disable_so_slottime_ath_hw_21784 slottime ath_hw 0 21784 NULL
++disable_so_ath6kl_wmi_set_host_sleep_mode_cmd_fndecl_21804 ath6kl_wmi_set_host_sleep_mode_cmd fndecl 0-2 21804 NULL
++disable_so_iwl_dbgfs_current_sleep_command_read_fndecl_21810 iwl_dbgfs_current_sleep_command_read fndecl 3-0 21810 NULL
++disable_so_ioctl_sound_timer_operations_21820 ioctl sound_timer_operations 0 21820 NULL
++disable_so_i_atime_sysv_inode_21822 i_atime sysv_inode 0 21822 NULL
++disable_so_rx_ring_dma_addr_amd8111e_priv_21826 rx_ring_dma_addr amd8111e_priv 0 21826 NULL
++disable_so_hundredsOfMicroseconds_timestamp_21834 hundredsOfMicroseconds timestamp 0 21834 NULL
++disable_so_ei_interrupt_fndecl_21846 ei_interrupt fndecl 1 21846 NULL
++disable_so_address_wq_enet_desc_21854 address wq_enet_desc 0 21854 NULL
++disable_so_avivo_get_fb_ref_div_fndecl_21857 avivo_get_fb_ref_div fndecl 3-5 21857 NULL
++disable_so_ac_btime_taskstats_21864 ac_btime taskstats 0 21864 NULL
++disable_so_reg_base_addr_dmar_drhd_unit_21865 reg_base_addr dmar_drhd_unit 0 21865 NULL
++disable_so_svm_scale_tsc_fndecl_21868 svm_scale_tsc fndecl 0-2 21868 NULL
++disable_so_m88rs6000t_sleep_fndecl_21874 m88rs6000t_sleep fndecl 0 21874 NULL
++disable_so_bt_priority_time_ath_btcoex_21878 bt_priority_time ath_btcoex 0 21878 NULL
++disable_so_radeon_legacy_get_memory_clock_fndecl_21881 radeon_legacy_get_memory_clock fndecl 0 21881 NULL
++disable_so_drbg_cpu_to_be32_fndecl_21882 drbg_cpu_to_be32 fndecl 1 21882 NULL
++disable_so_hpi_sample_clock_get_sample_rate_fndecl_21888 hpi_sample_clock_get_sample_rate fndecl 1-0 21888 NULL
++disable_so_refdiv_radeon_atom_ss_21889 refdiv radeon_atom_ss 0 21889 NULL
++disable_so_e_d_tov_timer_val_fcoe_kwqe_conn_offload4_21894 e_d_tov_timer_val fcoe_kwqe_conn_offload4 0 21894 NULL
++disable_so_efx_ef10_rx_disable_timestamping_fndecl_21895 efx_ef10_rx_disable_timestamping fndecl 0 21895 NULL
++disable_so_microseconds_timestamp_21897 microseconds timestamp 0 21897 NULL nohasharray
++disable_so_hashbin_find_fndecl_21897 hashbin_find fndecl 2 21897 &disable_so_microseconds_timestamp_21897
++disable_so_uid_audit_sig_info_21901 uid audit_sig_info 0 21901 NULL
++disable_so_scb_busaddr_ips_scb_21906 scb_busaddr ips_scb 0 21906 NULL
++disable_so_uvc_clock_param_get_fndecl_21908 uvc_clock_param_get fndecl 0 21908 NULL
++disable_so_ali_program_timings_fndecl_21912 ali_program_timings fndecl 4 21912 NULL
++disable_so_rx8025_get_time_fndecl_21924 rx8025_get_time fndecl 0 21924 NULL
++disable_so_rx_addr_uart_8250_dma_21929 rx_addr uart_8250_dma 0 21929 NULL
++disable_so_i2c_addr_sensor_s_21935 i2c_addr sensor_s 0 21935 NULL
++disable_so_interrupt_m66592_21937 interrupt m66592 0 21937 NULL
++disable_so_btintel_check_bdaddr_fndecl_21945 btintel_check_bdaddr fndecl 0 21945 NULL
++disable_so_re_timeout_dummy_hcd_21947 re_timeout dummy_hcd 0 21947 NULL nohasharray
++disable_so_mmc_runtime_suspend_fndecl_21947 mmc_runtime_suspend fndecl 0 21947 &disable_so_re_timeout_dummy_hcd_21947
++disable_so_prb_resp_timeout_brcms_c_info_21953 prb_resp_timeout brcms_c_info 0 21953 NULL
++disable_so_pcf8563_set_datetime_fndecl_21960 pcf8563_set_datetime fndecl 0 21960 NULL nohasharray
++disable_so_addr_low_vring_dma_addr_21960 addr_low vring_dma_addr 0 21960 &disable_so_pcf8563_set_datetime_fndecl_21960
++disable_so_key_schedule_gc_fndecl_21977 key_schedule_gc fndecl 1 21977 NULL
++disable_so_max_freq_softlimit_intel_gen6_power_mgmt_21980 max_freq_softlimit intel_gen6_power_mgmt 0 21980 NULL
++disable_so_sctp_v6_inaddr_any_fndecl_21991 sctp_v6_inaddr_any fndecl 2 21991 NULL
++disable_so_bitmap_get_counter_fndecl_22004 bitmap_get_counter fndecl 2 22004 NULL
++disable_so_id_cpufreq_cooling_device_22010 id cpufreq_cooling_device 0 22010 NULL
++disable_so_efx_phc_adjfreq_fndecl_22013 efx_phc_adjfreq fndecl 0 22013 NULL
++disable_so_i9xx_clock_fndecl_22015 i9xx_clock fndecl 1 22015 NULL
++disable_so_backlight_off_delay_intel_dp_22022 backlight_off_delay intel_dp 0 22022 NULL
++disable_so_adjust_tsc_offset_host_fndecl_22031 adjust_tsc_offset_host fndecl 2 22031 NULL
++disable_so_ocfs2_inode_lock_atime_fndecl_22032 ocfs2_inode_lock_atime fndecl 0 22032 NULL
++disable_so_last_timeout_jiffies_smi_info_22035 last_timeout_jiffies smi_info 0 22035 NULL
++disable_so_dnet_addr_type_fndecl_22038 dnet_addr_type fndecl 1 22038 NULL
++disable_so_qce_ablkcipher_crypt_fndecl_22054 qce_ablkcipher_crypt fndecl 0 22054 NULL
++disable_so_move_addr_to_user_fndecl_22055 move_addr_to_user fndecl 2-0 22055 NULL
++disable_so_qce_cpu_to_be32p_array_fndecl_22057 qce_cpu_to_be32p_array fndecl 3 22057 NULL
++disable_so_rsp_kvm_regs_22061 rsp kvm_regs 0 22061 NULL
++disable_so_sst_hsw_runtime_module_create_fndecl_22070 sst_hsw_runtime_module_create fndecl 3-2 22070 NULL
++disable_so_paddr_ctlr_info_22072 paddr ctlr_info 0 22072 NULL
++disable_so_net2272_get_ep_by_addr_fndecl_22073 net2272_get_ep_by_addr fndecl 2 22073 NULL
++disable_so_nilfs_btree_node_get_ptr_fndecl_22076 nilfs_btree_node_get_ptr fndecl 0-2 22076 NULL
++disable_so_signal_avg_station_info_22078 signal_avg station_info 0 22078 NULL
++disable_so_hdmi_runtime_resume_fndecl_22080 hdmi_runtime_resume fndecl 0 22080 NULL
++disable_so_nla_padlen_fndecl_22096 nla_padlen fndecl 1-0 22096 NULL
++disable_so_sof_offset_uvc_clock_22104 sof_offset uvc_clock 0 22104 NULL
++disable_so_current_frequency_au8522_state_22105 current_frequency au8522_state 0 22105 NULL
++disable_so_vdelay_timing_22106 vdelay timing 0 22106 NULL
++disable_so_abx500_get_register_page_interruptible_fndecl_22107 abx500_get_register_page_interruptible fndecl 0 22107 NULL
++disable_so_xc_set_IF_frequency_fndecl_22111 xc_set_IF_frequency fndecl 0-2 22111 NULL
++disable_so_curr_minor_hash_dir_private_info_22113 curr_minor_hash dir_private_info 0 22113 NULL
++disable_so_ipg_find_phyaddr_fndecl_22117 ipg_find_phyaddr fndecl 0 22117 NULL
++disable_so_dwell_time_passive_conf_sched_scan_settings_22127 dwell_time_passive conf_sched_scan_settings 0 22127 NULL
++disable_so_ontime_snd_emux_voice_22136 ontime snd_emux_voice 0 22136 NULL
++disable_so_queue_info_new_phys_addr_hi_megasas_init_frame_22147 queue_info_new_phys_addr_hi megasas_init_frame 0 22147 NULL
++disable_so_demod_address_tda10048_config_22153 demod_address tda10048_config 0 22153 NULL
++disable_so_timestamp_data_baddr_pmcraid_instance_22154 timestamp_data_baddr pmcraid_instance 0 22154 NULL
++disable_so_qce_setup_regs_ablkcipher_fndecl_22163 qce_setup_regs_ablkcipher fndecl 0-2 22163 NULL
++disable_so_cpu_index_cpuinfo_x86_22166 cpu_index cpuinfo_x86 0 22166 NULL nohasharray
++disable_so_cache_timeout_vardecl_sm_ftl_c_22166 cache_timeout vardecl_sm_ftl.c 0 22166 &disable_so_cpu_index_cpuinfo_x86_22166
++disable_so_ls_scan_time_dlm_ls_22170 ls_scan_time dlm_ls 0 22170 NULL
++disable_so_overflowgid_vardecl_22177 overflowgid vardecl 0 22177 NULL
++disable_so_timeout_uart_port_22187 timeout uart_port 0 22187 NULL
++disable_so_ctime_nilfs_segsum_info_22193 ctime nilfs_segsum_info 0 22193 NULL
++disable_so___cpu_to_virtio32_fndecl_22198 __cpu_to_virtio32 fndecl 0-2 22198 NULL
++disable_so___page_check_address_fndecl_22199 __page_check_address fndecl 3 22199 NULL
++disable_so_frequency_khz_m88rs6000t_dev_22206 frequency_khz m88rs6000t_dev 0 22206 NULL
++disable_so_fm10k_update_mc_addr_vf_fndecl_22212 fm10k_update_mc_addr_vf fndecl 4 22212 NULL
++disable_so_xfs_daddr_to_agno_fndecl_22214 xfs_daddr_to_agno fndecl 0-2 22214 NULL
++disable_so_addr_radeon_bo_va_22216 addr radeon_bo_va 0 22216 NULL
++disable_so_iwl_dbgfs_sleep_level_override_read_fndecl_22221 iwl_dbgfs_sleep_level_override_read fndecl 3-0 22221 NULL
++disable_so_write_seq_cxgbi_sock_22223 write_seq cxgbi_sock 0 22223 NULL
++disable_so_jiffies_init_s_stats_22227 jiffies_init s_stats 0 22227 NULL
++disable_so_addr_1_qla83xx_minidump_entry_pollrdmwr_22235 addr_1 qla83xx_minidump_entry_pollrdmwr 0 22235 NULL
++disable_so_boomerang_interrupt_fndecl_22238 boomerang_interrupt fndecl 1 22238 NULL
++disable_so_start_addr_prism2_download_data_22240 start_addr prism2_download_data 0 22240 NULL
++disable_so_addr_fixed_phy_22243 addr fixed_phy 0 22243 NULL
++disable_so_parenttime_ictimesync_data_22250 parenttime ictimesync_data 0 22250 NULL
++disable_so_tidvaddr_ipath_tid_info_22251 tidvaddr ipath_tid_info 0 22251 NULL
++disable_so_ip_vs_sh_hashkey_fndecl_22252 ip_vs_sh_hashkey fndecl 1 22252 NULL
++disable_so_m41t94_set_time_fndecl_22256 m41t94_set_time fndecl 0 22256 NULL
++disable_so___bitmap_and_fndecl_22259 __bitmap_and fndecl 4 22259 NULL
++disable_so_read_addr_qla82xx_md_entry_rdrom_22262 read_addr qla82xx_md_entry_rdrom 0 22262 NULL
++disable_so_crypto_authenc_esn_iverify_fndecl_22263 crypto_authenc_esn_iverify fndecl 0-3 22263 NULL
++disable_so_udelay_ixgbe_mbx_info_22275 udelay ixgbe_mbx_info 0 22275 NULL
++disable_so_addr_init_tab_22277 addr init_tab 0 22277 NULL nohasharray
++disable_so_cpufreq_cpu_get_raw_fndecl_22277 cpufreq_cpu_get_raw fndecl 1 22277 &disable_so_addr_init_tab_22277
++disable_so_show_orig_dgid_fndecl_22281 show_orig_dgid fndecl 0 22281 NULL
++disable_so_tua6100_sleep_fndecl_22289 tua6100_sleep fndecl 0 22289 NULL
++disable_so_crypto_memneq_fndecl_22293 crypto_memneq fndecl 3 22293 NULL
++disable_so_next_gid_index_mthca_mgm_22295 next_gid_index mthca_mgm 0 22295 NULL
++disable_so__abb5zes3_rtc_read_time_fndecl_22302 _abb5zes3_rtc_read_time fndecl 0 22302 NULL nohasharray
++disable_so_free_block_xfs_btree_ops_22302 free_block xfs_btree_ops 0 22302 &disable_so__abb5zes3_rtc_read_time_fndecl_22302
++disable_so_cn_vprintf_fndecl_22303 cn_vprintf fndecl 0 22303 NULL nohasharray
++disable_so_ixgbe_read_reg_fndecl_22303 ixgbe_read_reg fndecl 0-2 22303 &disable_so_cn_vprintf_fndecl_22303
++disable_so_utime_mddev_22314 utime mddev 0 22314 NULL
++disable_so_set_node_addr_fndecl_22329 set_node_addr fndecl 3 22329 NULL
++disable_so_start_group_wait_time_cfqg_stats_22330 start_group_wait_time cfqg_stats 0 22330 NULL
++disable_so_addrLow_ulp_bde64_22341 addrLow ulp_bde64 0 22341 NULL
++disable_so_mr_get_mtt_addr_fndecl_22342 mr_get_mtt_addr fndecl 0 22342 NULL
++disable_so_auto_deep_sleep_timeout_lbs_private_22358 auto_deep_sleep_timeout lbs_private 0 22358 NULL
++disable_so_daddr_min_pktgen_dev_22362 daddr_min pktgen_dev 0 22362 NULL
++disable_so_tusb_set_clock_source_fndecl_22365 tusb_set_clock_source fndecl 2 22365 NULL
++disable_so_ocfs2_rotate_subtree_right_fndecl_22369 ocfs2_rotate_subtree_right fndecl 0-5 22369 NULL
++disable_so_timestamp_nfs4_unlockdata_22375 timestamp nfs4_unlockdata 0 22375 NULL
++disable_so_time_perf_event_context_22379 time perf_event_context 0 22379 NULL
++disable_so_max8998_set_voltage_buck_time_sel_fndecl_22384 max8998_set_voltage_buck_time_sel fndecl 0-2-3 22384 NULL
++disable_so_to_increment_rpc_timeout_22408 to_increment rpc_timeout 0 22408 NULL
++disable_so_pci_addr_islpci_membuf_22412 pci_addr islpci_membuf 0 22412 NULL
++disable_so_gf_div_fndecl_22416 gf_div fndecl 0-2-3 22416 NULL
++disable_so_timeout_us_drm_vmw_fence_wait_arg_22421 timeout_us drm_vmw_fence_wait_arg 0 22421 NULL
++disable_so_sd_ctime_stat_data_22425 sd_ctime stat_data 0 22425 NULL nohasharray
++disable_so_runtime_reg_sch311x_gpio_block_22425 runtime_reg sch311x_gpio_block 0 22425 &disable_so_sd_ctime_stat_data_22425 nohasharray
++disable_so_crypto_authenc_iverify_fndecl_22425 crypto_authenc_iverify fndecl 0-3 22425 &disable_so_runtime_reg_sch311x_gpio_block_22425
++disable_so_port_guid_ib_node_info_22427 port_guid ib_node_info 0 22427 NULL
++disable_so_ring_iowrite32options_fndecl_22428 ring_iowrite32options fndecl 2 22428 NULL
++disable_so_period_ptr_snd_pcm_oss_runtime_22430 period_ptr snd_pcm_oss_runtime 0 22430 NULL
++disable_so_ac_stimescaled_taskstats_22436 ac_stimescaled taskstats 0 22436 NULL
++disable_so_slave_address_acpi_resource_i2c_serialbus_22453 slave_address acpi_resource_i2c_serialbus 0 22453 NULL
++disable_so_dma_addr1_flexcop_dma_22481 dma_addr1 flexcop_dma 0 22481 NULL
++disable_so_r11_kvm_regs_22488 r11 kvm_regs 0 22488 NULL
++disable_so_lookup_overlapping_address_handler_fndecl_22494 lookup_overlapping_address_handler fndecl 2-3 22494 NULL
++disable_so_throttled_clock_task_cfs_rq_22505 throttled_clock_task cfs_rq 0 22505 NULL
++disable_so_bulletin_addr_vfpf_acquire_tlv_22506 bulletin_addr vfpf_acquire_tlv 0 22506 NULL
++disable_so_buffer_bytes_snd_pcm_oss_runtime_22509 buffer_bytes snd_pcm_oss_runtime 0 22509 NULL
++disable_so_cryptd_hash_enqueue_fndecl_22511 cryptd_hash_enqueue fndecl 0 22511 NULL
++disable_so_set_msr_hyperv_pw_fndecl_22514 set_msr_hyperv_pw fndecl 3 22514 NULL
++disable_so_am335x_tsc_se_set_cache_fndecl_22522 am335x_tsc_se_set_cache fndecl 2 22522 NULL
++disable_so_dwell_time_delta_per_probe_5_conf_sched_scan_settings_22525 dwell_time_delta_per_probe_5 conf_sched_scan_settings 0 22525 NULL
++disable_so_stride_qxl_bitmap_22527 stride qxl_bitmap 0 22527 NULL
++disable_so_enable_time_regulator_ops_22541 enable_time regulator_ops 0 22541 NULL
++disable_so_usb_port_runtime_resume_fndecl_22542 usb_port_runtime_resume fndecl 0 22542 NULL
++disable_so_i_time_minix_inode_22559 i_time minix_inode 0 22559 NULL
++disable_so_rpc_uaddr2sockaddr_fndecl_22573 rpc_uaddr2sockaddr fndecl 0-3 22573 NULL
++disable_so_runtime_show_fndecl_22581 runtime_show fndecl 0 22581 NULL
++disable_so__sched_setscheduler_fndecl_22589 _sched_setscheduler fndecl 0-2 22589 NULL
++disable_so_ahc_outb_fndecl_22592 ahc_outb fndecl 2-3 22592 NULL
++disable_so_tcp_fin_timeout_ip_vs_timeout_user_22596 tcp_fin_timeout ip_vs_timeout_user 0 22596 NULL
++disable_so_channels_snd_pcm_oss_runtime_22629 channels snd_pcm_oss_runtime 0 22629 NULL
++disable_so_ivsize_blkcipher_walk_22638 ivsize blkcipher_walk 0 22638 NULL
++disable_so_xpcs_reg_addr_read_fndecl_22646 xpcs_reg_addr_read fndecl 3-0 22646 NULL
++disable_so_ea_segmented_address_22657 ea segmented_address 0 22657 NULL
++disable_so_rxhash_bnx2x_agg_info_22658 rxhash bnx2x_agg_info 0 22658 NULL
++disable_so_get_timer_interval_fndecl_22661 get_timer_interval fndecl 0-2 22661 NULL
++disable_so_clock_psb_intel_sdvo_preferred_input_timing_args_22671 clock psb_intel_sdvo_preferred_input_timing_args 0 22671 NULL
++disable_so_nft_hash_obj_fndecl_22673 nft_hash_obj fndecl 0-2 22673 NULL
++disable_so_ber_jiffies_stats_dib8000_state_22674 ber_jiffies_stats dib8000_state 0 22674 NULL
++disable_so_sleep_ms_rtl_ps_ctl_22681 sleep_ms rtl_ps_ctl 0 22681 NULL
++disable_so_addr_hi_eth_tx_start_bd_22685 addr_hi eth_tx_start_bd 0 22685 NULL
++disable_so_lasttime_sym_shcb_22688 lasttime sym_shcb 0 22688 NULL
++disable_so_cttimeout_init_fndecl_22691 cttimeout_init fndecl 0 22691 NULL
++disable_so_crypto_authenc_encrypt_fndecl_22693 crypto_authenc_encrypt fndecl 0 22693 NULL
++disable_so_kernfs_name_hash_fndecl_22704 kernfs_name_hash fndecl 0 22704 NULL
++disable_so_msleep_interruptible_fndecl_22713 msleep_interruptible fndecl 1-0 22713 NULL
++disable_so_compq_addr_lo_addr_ctrl_blk_22728 compq_addr_lo addr_ctrl_blk 0 22728 NULL
++disable_so_dib7000p_get_time_us_fndecl_22737 dib7000p_get_time_us fndecl 0 22737 NULL
++disable_so_src_addr_dma_slave_config_22748 src_addr dma_slave_config 0 22748 NULL
++disable_so_userspace_addr_kvm_memory_slot_22749 userspace_addr kvm_memory_slot 0 22749 NULL
++disable_so_addr6_resolve_fndecl_22753 addr6_resolve fndecl 0 22753 NULL
++disable_so_sst_pm_runtime_put_fndecl_22759 sst_pm_runtime_put fndecl 0 22759 NULL
++disable_so_mlx4_ib_get_aguid_comp_mask_from_ix_fndecl_22761 mlx4_ib_get_aguid_comp_mask_from_ix fndecl 0-1 22761 NULL
++disable_so_d_time_dentry_22767 d_time dentry 0 22767 NULL
++disable_so_mtd_to_docg4_address_fndecl_22769 mtd_to_docg4_address fndecl 0-1-2 22769 NULL
++disable_so_cycle_counter_tag_capidtmf_recv_state_22771 cycle_counter tag_capidtmf_recv_state 0 22771 NULL
++disable_so_lp872x_select_buck_vout_addr_fndecl_22790 lp872x_select_buck_vout_addr fndecl 0-2 22790 NULL
++disable_so_base_mbox_addr_blogic_extmbox_req_22802 base_mbox_addr blogic_extmbox_req 0 22802 NULL nohasharray
++disable_so_no_addr_gfs2_inum_22802 no_addr gfs2_inum 0 22802 &disable_so_base_mbox_addr_blogic_extmbox_req_22802
++disable_so_debug_dma_map_sg_fndecl_22804 debug_dma_map_sg fndecl 3-4 22804 NULL
++disable_so___cpuidle_register_driver_fndecl_22806 __cpuidle_register_driver fndecl 0 22806 NULL
++disable_so_vhost64_to_cpu_fndecl_22807 vhost64_to_cpu fndecl 0 22807 NULL
++disable_so_start_address_acpi_address_range_22816 start_address acpi_address_range 0 22816 NULL
++disable_so_mce_request_packet_fndecl_22818 mce_request_packet fndecl 3 22818 NULL
++disable_so_bad_std_timing_fndecl_22827 bad_std_timing fndecl 1 22827 NULL
++disable_so_swap_cluster_schedule_discard_fndecl_22833 swap_cluster_schedule_discard fndecl 2 22833 NULL
++disable_so_palmas_rtc_set_time_fndecl_22849 palmas_rtc_set_time fndecl 0 22849 NULL
++disable_so___arch_hweight8_fndecl_22850 __arch_hweight8 fndecl 0-1 22850 NULL
++disable_so_store_risefalltime_fndecl_22854 store_risefalltime fndecl 5-0-4 22854 NULL
++disable_so_qlcnic_83xx_get_mac_address_fndecl_22858 qlcnic_83xx_get_mac_address fndecl 0 22858 NULL
++disable_so_vnic_dev_get_mac_addr_fndecl_22860 vnic_dev_get_mac_addr fndecl 0 22860 NULL
++disable_so_hash_id_hh_flow_state_22864 hash_id hh_flow_state 0 22864 NULL
++disable_so_runtime_suspend_dev_pm_ops_22871 runtime_suspend dev_pm_ops 0 22871 NULL nohasharray
++disable_so_objectid_btrfs_key_22871 objectid btrfs_key 0 22871 &disable_so_runtime_suspend_dev_pm_ops_22871
++disable_so_bitmap_parse_fndecl_22876 bitmap_parse fndecl 0-2-4 22876 NULL
++disable_so_avg_delay_fndecl_22883 avg_delay fndecl 0 22883 NULL nohasharray
++disable_so_mce_threshold_block_init_fndecl_22883 mce_threshold_block_init fndecl 2 22883 &disable_so_avg_delay_fndecl_22883
++disable_so_pdeath_signal_task_struct_22884 pdeath_signal task_struct 0 22884 NULL
++disable_so_bits_per_word_blk_mq_bitmap_tags_22896 bits_per_word blk_mq_bitmap_tags 0 22896 NULL
++disable_so_saddr_irda_device_info_22915 saddr irda_device_info 0 22915 NULL
++disable_so_frm_extra_delay_vardecl_isar_c_22927 frm_extra_delay vardecl_isar.c 0 22927 NULL
++disable_so_lbs_set_host_sleep_fndecl_22932 lbs_set_host_sleep fndecl 0 22932 NULL
++disable_so_orinoco_ioctl_setfreq_fndecl_22934 orinoco_ioctl_setfreq fndecl 0 22934 NULL
++disable_so_bit_bitstream_cursor_22959 bit bitstream_cursor 0 22959 NULL
++disable_so_cifs_strtoUTF16_fndecl_22967 cifs_strtoUTF16 fndecl 0-3 22967 NULL
++disable_so_rbx_kvm_regs_22975 rbx kvm_regs 0 22975 NULL
++disable_so_runtime_resume_dev_pm_ops_22976 runtime_resume dev_pm_ops 0 22976 NULL
++disable_so_address_ioaccel2_sg_element_22986 address ioaccel2_sg_element 0 22986 NULL
++disable_so_frags_paddr_htt_data_tx_desc_22993 frags_paddr htt_data_tx_desc 0 22993 NULL
++disable_so_ss_ctime_nilfs_sustat_23015 ss_ctime nilfs_sustat 0 23015 NULL
++disable_so_radeon_atom_set_ac_timing_fndecl_23020 radeon_atom_set_ac_timing fndecl 2 23020 NULL
++disable_so_b43legacy_interrupt_ack_fndecl_23025 b43legacy_interrupt_ack fndecl 2 23025 NULL
++disable_so_i_atime_nsec_f2fs_inode_23028 i_atime_nsec f2fs_inode 0 23028 NULL
++disable_so_addr_wil_fw_record_fill_23039 addr wil_fw_record_fill 0 23039 NULL
++disable_so_cyc2ns_offset_cyc2ns_data_23042 cyc2ns_offset cyc2ns_data 0 23042 NULL
++disable_so_panel_power_cycle_delay_cdv_intel_dp_23045 panel_power_cycle_delay cdv_intel_dp 0 23045 NULL
++disable_so_crypto_rfc4543_copy_src_to_dst_fndecl_23047 crypto_rfc4543_copy_src_to_dst fndecl 0 23047 NULL
++disable_so_pte_pfn_to_mfn_fndecl_23066 pte_pfn_to_mfn fndecl 1-0 23066 NULL
++disable_so_hpll_freq_drm_i915_private_23074 hpll_freq drm_i915_private 0 23074 NULL
++disable_so_ly_base_addr_c67x00_td_23082 ly_base_addr c67x00_td 0 23082 NULL
++disable_so_num_bits_alps_bitmap_point_23084 num_bits alps_bitmap_point 0 23084 NULL
++disable_so_ip6addrlbl_dump_fndecl_23085 ip6addrlbl_dump fndecl 0 23085 NULL
++disable_so_sc_seg_ctime_nilfs_sc_info_23088 sc_seg_ctime nilfs_sc_info 0 23088 NULL
++disable_so_rxbd_addr_lo_host_cmd_ds_pcie_details_23092 rxbd_addr_lo host_cmd_ds_pcie_details 0 23092 NULL
++disable_so_addrconf_init_fndecl_23107 addrconf_init fndecl 0 23107 NULL
++disable_so_regcache_lzo_read_fndecl_23109 regcache_lzo_read fndecl 0-2 23109 NULL
++disable_so_mac_addr_high_nes_adapter_23110 mac_addr_high nes_adapter 0 23110 NULL nohasharray
++disable_so_gf100_fifo_engidx_fndecl_23110 gf100_fifo_engidx fndecl 0 23110 &disable_so_mac_addr_high_nes_adapter_23110
++disable_so_busy_timeout_mmc_command_23112 busy_timeout mmc_command 0 23112 NULL
++disable_so_expired_tscdeadline_kvm_timer_23113 expired_tscdeadline kvm_timer 0 23113 NULL nohasharray
++disable_so_dtoh_mb_data_addr_brcmf_pcie_shared_info_23113 dtoh_mb_data_addr brcmf_pcie_shared_info 0 23113 &disable_so_expired_tscdeadline_kvm_timer_23113
++disable_so_mmc_mmc_erase_timeout_fndecl_23122 mmc_mmc_erase_timeout fndecl 0-3-2 23122 NULL
++disable_so_bq32k_rtc_read_time_fndecl_23124 bq32k_rtc_read_time fndecl 0 23124 NULL
++disable_so_mtt_base_addr_h_mlx4_eq_context_23127 mtt_base_addr_h mlx4_eq_context 0 23127 NULL
++disable_so_sack_timeout_netns_sctp_23134 sack_timeout netns_sctp 0 23134 NULL
++disable_so_addr_hw_breakpoint_23137 addr hw_breakpoint 0 23137 NULL
++disable_so_port_sctp_bind_addr_23142 port sctp_bind_addr 0 23142 NULL
++disable_so_rpa_timeout_set_fndecl_23145 rpa_timeout_set fndecl 2 23145 NULL nohasharray
++disable_so_mthca_SW2HW_MPT_fndecl_23145 mthca_SW2HW_MPT fndecl 0-3 23145 &disable_so_rpa_timeout_set_fndecl_23145 nohasharray
++disable_so_mlx5_query_mad_ifc_node_guid_fndecl_23145 mlx5_query_mad_ifc_node_guid fndecl 0 23145 &disable_so_mthca_SW2HW_MPT_fndecl_23145
++disable_so_eof_gid_xfs_fs_eofblocks_23146 eof_gid xfs_fs_eofblocks 0 23146 NULL
++disable_so_ccp_aes_decrypt_fndecl_23149 ccp_aes_decrypt fndecl 0 23149 NULL
++disable_so_idle_timeout_hci_dev_23160 idle_timeout hci_dev 0 23160 NULL
++disable_so_radeon_atom_set_memory_clock_fndecl_23164 radeon_atom_set_memory_clock fndecl 2 23164 NULL
++disable_so_k_pll_div_23168 k pll_div 0 23168 NULL
++disable_so_ebitmap_node_clr_bit_fndecl_23171 ebitmap_node_clr_bit fndecl 2 23171 NULL
++disable_so_rt_runtime_rt_schedulable_data_23172 rt_runtime rt_schedulable_data 0 23172 NULL
++disable_so_reply_dma_min_address_MPT2SAS_ADAPTER_23181 reply_dma_min_address MPT2SAS_ADAPTER 0 23181 NULL
++disable_so_tsc_shift_pvclock_vcpu_time_info_23184 tsc_shift pvclock_vcpu_time_info 0 23184 NULL
++disable_so_vlan_dev_set_mac_address_fndecl_23188 vlan_dev_set_mac_address fndecl 0 23188 NULL
++disable_so_mpll_ss1_ci_clock_registers_23197 mpll_ss1 ci_clock_registers 0 23197 NULL
++disable_so_addr_cmd_complete_fndecl_23200 addr_cmd_complete fndecl 0 23200 NULL
++disable_so_cpu_clock_fndecl_23205 cpu_clock fndecl 1-0 23205 NULL
++disable_so_prescale_pll_div_23215 prescale pll_div 0 23215 NULL
++disable_so_sel_addr2___mux2_23216 sel_addr2 __mux2 0 23216 NULL
++disable_so_usb_sleep_charge_store_fndecl_23232 usb_sleep_charge_store fndecl 0-4 23232 NULL
++disable_so_bmc150_accel_set_interrupt_fndecl_23235 bmc150_accel_set_interrupt fndecl 0 23235 NULL
++disable_so_netlbl_af4list_audit_addr_fndecl_23240 netlbl_af4list_audit_addr fndecl 4-5 23240 NULL
++disable_so_max_freq_intel_gen6_power_mgmt_23243 max_freq intel_gen6_power_mgmt 0 23243 NULL
++disable_so_i_ctime_ext4_inode_23246 i_ctime ext4_inode 0 23246 NULL
++disable_so_sel_read_avc_hash_stats_fndecl_23251 sel_read_avc_hash_stats fndecl 0-3 23251 NULL
++disable_so_wlc_phy_get_chan_freq_range_nphy_fndecl_23253 wlc_phy_get_chan_freq_range_nphy fndecl 2 23253 NULL
++disable_so_trinity_convert_did_to_freq_fndecl_23254 trinity_convert_did_to_freq fndecl 0-2 23254 NULL
++disable_so_nopin_timeout_iscsi_node_attrib_23262 nopin_timeout iscsi_node_attrib 0 23262 NULL
++disable_so_blk_rq_timeout_fndecl_23263 blk_rq_timeout fndecl 0-1 23263 NULL
++disable_so_dmfe_interrupt_fndecl_23265 dmfe_interrupt fndecl 1 23265 NULL
++disable_so_crypto_rng_generate_fndecl_23266 crypto_rng_generate fndecl 0-5 23266 NULL
++disable_so_ebitmap_read_fndecl_23268 ebitmap_read fndecl 0 23268 NULL
++disable_so_loops_per_jiffy_cpuinfo_x86_23277 loops_per_jiffy cpuinfo_x86 0 23277 NULL
++disable_so_T7_address_mxt_data_23282 T7_address mxt_data 0 23282 NULL
++disable_so_turn_around_timeout_mipi_config_23283 turn_around_timeout mipi_config 0 23283 NULL
++disable_so_crypto_report_one_fndecl_23300 crypto_report_one fndecl 0 23300 NULL
++disable_so_io_base_addr_pch_spi_data_23302 io_base_addr pch_spi_data 0 23302 NULL
++disable_so___ww_mutex_lock_interruptible_fndecl_23308 __ww_mutex_lock_interruptible fndecl 0 23308 NULL
++disable_so_get_bitmap_file_fndecl_23317 get_bitmap_file fndecl 0 23317 NULL
++disable_so_address_hi_lpfc_rqe_23318 address_hi lpfc_rqe 0 23318 NULL
++disable_so_iscsit_na_nopin_response_timeout_fndecl_23323 iscsit_na_nopin_response_timeout fndecl 2-0 23323 NULL
++disable_so_omap1_spi100k_runtime_resume_fndecl_23325 omap1_spi100k_runtime_resume fndecl 0 23325 NULL
++disable_so_snd_timer_global_register_fndecl_23326 snd_timer_global_register fndecl 0 23326 NULL
++disable_so_to_initval_rpc_timeout_23329 to_initval rpc_timeout 0 23329 NULL
++disable_so_bd_list_addr_hi_bnx2i_text_request_23342 bd_list_addr_hi bnx2i_text_request 0 23342 NULL
++disable_so_i2c_addr_a8293_config_23348 i2c_addr a8293_config 0 23348 NULL
++disable_so_range_sizek_var_mtrr_state_23353 range_sizek var_mtrr_state 0 23353 NULL
++disable_so_total_time_running_perf_event_23362 total_time_running perf_event 0 23362 NULL
++disable_so_vdi_gid_vxfs_inode_info_23369 vdi_gid vxfs_inode_info 0 23369 NULL
++disable_so_attrtimeo_timestamp_nfs_inode_23391 attrtimeo_timestamp nfs_inode 0 23391 NULL
++disable_so_si476x_core_cmd_fm_tune_freq_a10_fndecl_23406 si476x_core_cmd_fm_tune_freq_a10 fndecl 0 23406 NULL
++disable_so_sensor_addr_sd_23409 sensor_addr sd 0 23409 NULL
++disable_so_run_delayed_extent_op_fndecl_23414 run_delayed_extent_op fndecl 0 23414 NULL
++disable_so_PXDaddress_fndecl_23420 PXDaddress fndecl 2 23420 NULL
++disable_so_timeout_addr_req_23421 timeout addr_req 0 23421 NULL
++disable_so_tx_pwr_last_recalc_freq_b43_phy_n_23433 tx_pwr_last_recalc_freq b43_phy_n 0 23433 NULL
++disable_so_iscsit_na_nopin_timeout_fndecl_23436 iscsit_na_nopin_timeout fndecl 2-0 23436 NULL
++disable_so_set_tsc_khz_kvm_x86_ops_23439 set_tsc_khz kvm_x86_ops 2 23439 NULL
++disable_so_eee_timer_vardecl_stmmac_main_c_23447 eee_timer vardecl_stmmac_main.c 0 23447 NULL
++disable_so_ndac_aic31xx_rate_divs_23456 ndac aic31xx_rate_divs 0 23456 NULL nohasharray
++disable_so_r27_val_fc2580_freq_regs_23456 r27_val fc2580_freq_regs 0 23456 &disable_so_ndac_aic31xx_rate_divs_23456
++disable_so_ports_timeout_uhci_hcd_23457 ports_timeout uhci_hcd 0 23457 NULL
++disable_so_fw_load_addr_cas_23459 fw_load_addr cas 0 23459 NULL
++disable_so_enic_dev_add_addr_fndecl_23465 enic_dev_add_addr fndecl 0 23465 NULL
++disable_so_hpet_num_timers_vardecl_hpet_c_23468 hpet_num_timers vardecl_hpet.c 0 23468 NULL
++disable_so_protocol_tomoyo_addr_info_23473 protocol tomoyo_addr_info 0 23473 NULL
++disable_so_sys_clock_settime_fndecl_23475 sys_clock_settime fndecl 1 23475 NULL
++disable_so_pch_uart_hal_enable_interrupt_fndecl_23482 pch_uart_hal_enable_interrupt fndecl 2 23482 NULL
++disable_so_start_addr_snd_emu10k1_pcm_23487 start_addr snd_emu10k1_pcm 0 23487 NULL
++disable_so___bitmap_xor_fndecl_23490 __bitmap_xor fndecl 4 23490 NULL
++disable_so_dst_addr_beiscsi_endpoint_23495 dst_addr beiscsi_endpoint 0 23495 NULL
++disable_so_mask_hi_mtrr_var_range_23508 mask_hi mtrr_var_range 0 23508 NULL
++disable_so_max_mlx4_bitmap_23521 max mlx4_bitmap 0 23521 NULL
++disable_so_bitmap_ip_do_list_fndecl_23527 bitmap_ip_do_list fndecl 0 23527 NULL
++disable_so_radio_freq_tuner_23529 radio_freq tuner 0 23529 NULL
++disable_so_timeout_idletimer_tg_info_23534 timeout idletimer_tg_info 0 23534 NULL
++disable_so_end_jiffies_iwl_mvm_time_event_data_23536 end_jiffies iwl_mvm_time_event_data 0 23536 NULL
++disable_so_try_read_address_fndecl_23550 try_read_address fndecl 0-2 23550 NULL
++disable_so_cpufreq_stats_create_table_fndecl_23554 cpufreq_stats_create_table fndecl 1 23554 NULL
++disable_so_div2__pll_div_23561 div2 _pll_div 0 23561 NULL
++disable_so_hpi_sample_clock_set_local_rate_fndecl_23570 hpi_sample_clock_set_local_rate fndecl 1-0 23570 NULL
++disable_so_sctp_assoc_set_bind_addr_from_ep_fndecl_23572 sctp_assoc_set_bind_addr_from_ep fndecl 0-3 23572 NULL
++disable_so_hscb_busaddr_scb_data_23574 hscb_busaddr scb_data 0 23574 NULL
++disable_so_shadow_msr_edgeport_port_23577 shadow_msr edgeport_port 0 23577 NULL
++disable_so_gcm_hash_fndecl_23580 gcm_hash fndecl 0 23580 NULL
++disable_so_kvm_send_hwpoison_signal_fndecl_23581 kvm_send_hwpoison_signal fndecl 1 23581 NULL
++disable_so_spu_reg_delay_if_spi_card_23584 spu_reg_delay if_spi_card 0 23584 NULL
++disable_so_inet_rtm_deladdr_fndecl_23589 inet_rtm_deladdr fndecl 0 23589 NULL
++disable_so_sm2_runtime_sc_23590 sm2 runtime_sc 0 23590 NULL
++disable_so_cpumask_parselist_user_fndecl_23592 cpumask_parselist_user fndecl 0-2 23592 NULL
++disable_so_clock_cooling_get_frequency_fndecl_23598 clock_cooling_get_frequency fndecl 0 23598 NULL
++disable_so_nilfs_btree_last_key_fndecl_23599 nilfs_btree_last_key fndecl 0 23599 NULL
++disable_so_address_map_r8a66597_23613 address_map r8a66597 0 23613 NULL
++disable_so_closest_timer_fndecl_23617 closest_timer fndecl 2 23617 NULL
++disable_so_delay_radeon_atom_ss_23618 delay radeon_atom_ss 0 23618 NULL
++disable_so_no_addr_gfs2_skip_data_23619 no_addr gfs2_skip_data 0 23619 NULL nohasharray
++disable_so_bloutp_qat_crypto_request_buffs_23619 bloutp qat_crypto_request_buffs 0 23619 &disable_so_no_addr_gfs2_skip_data_23619
++disable_so_i2s_runtime_resume_fndecl_23625 i2s_runtime_resume fndecl 0 23625 NULL nohasharray
++disable_so_mtime_seg_entry_23625 mtime seg_entry 0 23625 &disable_so_i2s_runtime_resume_fndecl_23625
++disable_so_atime_apds990x_chip_23626 atime apds990x_chip 0 23626 NULL
++disable_so_irq_domain_free_irqs_fndecl_23634 irq_domain_free_irqs fndecl 1-2 23634 NULL
++disable_so_gru_last_node_paddr_vardecl_x2apic_uv_x_c_23641 gru_last_node_paddr vardecl_x2apic_uv_x.c 0 23641 NULL
++disable_so_tss_addr_kvm_arch_23642 tss_addr kvm_arch 0 23642 NULL
++disable_so_rv3029c2_rtc_read_time_fndecl_23644 rv3029c2_rtc_read_time fndecl 0 23644 NULL
++disable_so___round_jiffies_fndecl_23650 __round_jiffies fndecl 2-1-0 23650 NULL
++disable_so_fixed_mtrr_seg_unit_range_index_fndecl_23657 fixed_mtrr_seg_unit_range_index fndecl 2-0 23657 NULL
++disable_so_timeriomem_rng_driver_init_fndecl_23666 timeriomem_rng_driver_init fndecl 0 23666 NULL
++disable_so_read_status_jiffies_af9013_state_23669 read_status_jiffies af9013_state 0 23669 NULL
++disable_so_st_gid_compat_stat_23673 st_gid compat_stat 0 23673 NULL nohasharray
++disable_so_addr_snic_sg_desc_23673 addr snic_sg_desc 0 23673 &disable_so_st_gid_compat_stat_23673
++disable_so_boottime_get_fndecl_23679 boottime_get fndecl 0 23679 NULL
++disable_so_sctp_v4_inaddr_any_fndecl_23681 sctp_v4_inaddr_any fndecl 2 23681 NULL
++disable_so_posix_cpu_clock_get_task_fndecl_23683 posix_cpu_clock_get_task fndecl 2 23683 NULL nohasharray
++disable_so_gpio_free_fndecl_23683 gpio_free fndecl 1 23683 &disable_so_posix_cpu_clock_get_task_fndecl_23683
++disable_so_ebitmap_cpy_fndecl_23688 ebitmap_cpy fndecl 0 23688 NULL
++disable_so___bitmap_parselist_fndecl_23689 __bitmap_parselist fndecl 0-2-5 23689 NULL
++disable_so_wlcore_hw_interrupt_notify_fndecl_23695 wlcore_hw_interrupt_notify fndecl 0 23695 NULL
++disable_so_schedule_zero_fndecl_23702 schedule_zero fndecl 2-3 23702 NULL nohasharray
++disable_so_mtt_addr_mlx4_mpt_entry_23702 mtt_addr mlx4_mpt_entry 0 23702 &disable_so_schedule_zero_fndecl_23702
++disable_so_adis16400_get_freq_fndecl_23703 adis16400_get_freq fndecl 0 23703 NULL
++disable_so_interrupt_out_endpoint_size_ld_usb_23705 interrupt_out_endpoint_size ld_usb 0 23705 NULL
++disable_so_mac_time_libipw_rx_stats_23706 mac_time libipw_rx_stats 0 23706 NULL nohasharray
++disable_so___ipv6_addr_diff_fndecl_23706 __ipv6_addr_diff fndecl 0 23706 &disable_so_mac_time_libipw_rx_stats_23706
++disable_so_delay_snd_pcm_status_23708 delay snd_pcm_status 0 23708 NULL
++disable_so_oprofile_set_timeout_fndecl_23715 oprofile_set_timeout fndecl 1-0 23715 NULL
++disable_so_fll_fratio__fll_div_23723 fll_fratio _fll_div 0 23723 NULL
++disable_so___uac_clock_find_source_fndecl_23728 __uac_clock_find_source fndecl 0-2 23728 NULL
++disable_so_acpi_pci_root_get_mcfg_addr_fndecl_23731 acpi_pci_root_get_mcfg_addr fndecl 0 23731 NULL
++disable_so_snd_hda_codec_write_fndecl_23746 snd_hda_codec_write fndecl 0-5-4-2 23746 NULL
++disable_so_local_ipaddr_nes_vnic_23747 local_ipaddr nes_vnic 0 23747 NULL
++disable_so_frequency_stv0900_signal_info_23753 frequency stv0900_signal_info 0 23753 NULL
++disable_so_ic_addrservaddr_vardecl_23754 ic_addrservaddr vardecl 0 23754 NULL
++disable_so_next_hrtimer_event_fusbh200_hcd_23756 next_hrtimer_event fusbh200_hcd 0 23756 NULL
++disable_so_speedstep_get_frequency_fndecl_23758 speedstep_get_frequency fndecl 0 23758 NULL
++disable_so_lpe_base_sst_addr_23776 lpe_base sst_addr 0 23776 NULL
++disable_so_saddr_flowidn_23780 saddr flowidn 0 23780 NULL
++disable_so_uwb_rc_dev_addr_get_fndecl_23783 uwb_rc_dev_addr_get fndecl 0 23783 NULL
++disable_so_qla2x00_start_timer_fndecl_23784 qla2x00_start_timer fndecl 3 23784 NULL
++disable_so_pcan_usb_fd_set_bittiming_slow_fndecl_23790 pcan_usb_fd_set_bittiming_slow fndecl 0 23790 NULL
++disable_so_crypto_rfc4543_setauthsize_fndecl_23801 crypto_rfc4543_setauthsize fndecl 2 23801 NULL
++disable_so_drbd_send_uuids_skip_initial_sync_fndecl_23802 drbd_send_uuids_skip_initial_sync fndecl 0 23802 NULL
++disable_so_si476x_phase_diversity_mode_to_idx_fndecl_23804 si476x_phase_diversity_mode_to_idx fndecl 0 23804 NULL
++disable_so_ci_program_memory_timing_parameters_fndecl_23805 ci_program_memory_timing_parameters fndecl 0 23805 NULL
++disable_so_show_ioc_guid_fndecl_23810 show_ioc_guid fndecl 0 23810 NULL
++disable_so_gpiod_get_raw_value_cansleep_fndecl_23812 gpiod_get_raw_value_cansleep fndecl 0 23812 NULL
++disable_so_cpu_to_fs64_fndecl_23816 cpu_to_fs64 fndecl 0-2 23816 NULL
++disable_so_tomoyo_convert_time_fndecl_23823 tomoyo_convert_time fndecl 1 23823 NULL
++disable_so_ufshcd_runtime_resume_fndecl_23824 ufshcd_runtime_resume fndecl 0 23824 NULL
++disable_so_ext4_block_bitmap_csum_verify_fndecl_23826 ext4_block_bitmap_csum_verify fndecl 2 23826 NULL
++disable_so_hash_hi_smsc95xx_priv_23835 hash_hi smsc95xx_priv 0 23835 NULL
++disable_so_pm_autosleep_init_fndecl_23847 pm_autosleep_init fndecl 0 23847 NULL
++disable_so_mpu_timer_init_fndecl_23854 mpu_timer_init fndecl 1 23854 NULL
++disable_so_bg_block_bitmap_ext2_group_desc_23861 bg_block_bitmap ext2_group_desc 0 23861 NULL
++disable_so_mlx4_en_config_port_scheduler_fndecl_23868 mlx4_en_config_port_scheduler fndecl 0 23868 NULL
++disable_so_pixelclock_for_modeset_radeon_connector_23870 pixelclock_for_modeset radeon_connector 0 23870 NULL
++disable_so_ocfs2_remove_btree_range_fndecl_23874 ocfs2_remove_btree_range fndecl 0-3-4-5-8 23874 NULL
++disable_so_crypto_authenc_setkey_fndecl_23875 crypto_authenc_setkey fndecl 0 23875 NULL
++disable_so_vdiv_mcp77_clk_priv_23881 vdiv mcp77_clk_priv 0 23881 NULL
++disable_so_xfs_da_hashname_fndecl_23895 xfs_da_hashname fndecl 2 23895 NULL
++disable_so_sky2_rx_hash_fndecl_23905 sky2_rx_hash fndecl 2 23905 NULL
++disable_so_pci_revert_fw_address_fndecl_23911 pci_revert_fw_address fndecl 3-4 23911 NULL
++disable_so_gru_chiplet_cpu_to_mmr_fndecl_23914 gru_chiplet_cpu_to_mmr fndecl 2 23914 NULL nohasharray
++disable_so_htotal___fb_timings_23914 htotal __fb_timings 0 23914 &disable_so_gru_chiplet_cpu_to_mmr_fndecl_23914
++disable_so_coalescing_timeo_bna_tx_config_23917 coalescing_timeo bna_tx_config 0 23917 NULL
++disable_so_block_size_ccp_sha_def_23920 block_size ccp_sha_def 0 23920 NULL
++disable_so_chunk_sizek_mtrr_cleanup_result_23928 chunk_sizek mtrr_cleanup_result 0 23928 NULL
++disable_so_cpufreq_register_driver_fndecl_23933 cpufreq_register_driver fndecl 0 23933 NULL
++disable_so_requested_freq_cs_cpu_dbs_info_s_23941 requested_freq cs_cpu_dbs_info_s 0 23941 NULL
++disable_so_ath9k_hw_setslottime_fndecl_23946 ath9k_hw_setslottime fndecl 2 23946 NULL
++disable_so_clock_man_fndecl_23950 clock_man fndecl 2 23950 NULL
++disable_so_dma2_address_info_23953 dma2 address_info 0 23953 NULL
++disable_so_crypto_ctr_crypt_segment_fndecl_23955 crypto_ctr_crypt_segment fndecl 0 23955 NULL
++disable_so_be_set_rss_hash_opts_fndecl_23960 be_set_rss_hash_opts fndecl 0 23960 NULL
++disable_so_src_low_addr_mvumi_dyn_list_entry_23961 src_low_addr mvumi_dyn_list_entry 0 23961 NULL
++disable_so_fm_v4l2_vidioc_s_hw_freq_seek_fndecl_23963 fm_v4l2_vidioc_s_hw_freq_seek fndecl 0 23963 NULL
++disable_so_tmr_start_sound_lowlev_timer_23966 tmr_start sound_lowlev_timer 1 23966 NULL
++disable_so_task_clock_event_update_fndecl_23968 task_clock_event_update fndecl 2 23968 NULL
++disable_so_i_mtime_minix2_inode_23986 i_mtime minix2_inode 0 23986 NULL
++disable_so_time_offset_wl1271_23987 time_offset wl1271 0 23987 NULL
++disable_so_src_nents_qce_sha_reqctx_24004 src_nents qce_sha_reqctx 0 24004 NULL
++disable_so_elements_bitmap_ipmac_24013 elements bitmap_ipmac 0 24013 NULL
++disable_so_aggregation_timeout_cfhsi_config_24023 aggregation_timeout cfhsi_config 0 24023 NULL
++disable_so_write_interrupt_go7007_hpi_ops_24025 write_interrupt go7007_hpi_ops 3 24025 NULL
++disable_so_data_timer_list_24031 data timer_list 0 24031 NULL
++disable_so_reference_freq_radeon_pll_24034 reference_freq radeon_pll 0 24034 NULL
++disable_so_smi_mod_timer_fndecl_24037 smi_mod_timer fndecl 2 24037 NULL
++disable_so_sha1_mb_async_digest_fndecl_24067 sha1_mb_async_digest fndecl 0 24067 NULL
++disable_so_drv2667_set_waveform_freq_fndecl_24071 drv2667_set_waveform_freq fndecl 0 24071 NULL
++disable_so_ath6kl_disconnect_timeout_write_fndecl_24073 ath6kl_disconnect_timeout_write fndecl 3-0 24073 NULL nohasharray
++disable_so_band_center_freq1_wmi_channel_arg_24073 band_center_freq1 wmi_channel_arg 0 24073 &disable_so_ath6kl_disconnect_timeout_write_fndecl_24073
++disable_so_hi_cfg_timing_div_drxd_state_24076 hi_cfg_timing_div drxd_state 0 24076 NULL nohasharray
++disable_so_addr_gf100_grctx_24076 addr gf100_grctx 0 24076 &disable_so_hi_cfg_timing_div_drxd_state_24076
++disable_so_expected_sys_clock_freq_drxd_state_24078 expected_sys_clock_freq drxd_state 0 24078 NULL
++disable_so_img_ir_symbol_timing_fndecl_24080 img_ir_symbol_timing fndecl 0-2-3-4-5 24080 NULL
++disable_so_nr_uuids_cache_set_24084 nr_uuids cache_set 0 24084 NULL nohasharray
++disable_so_hash_tbl_pbl_addr_lo_fcoe_kwqe_init2_24084 hash_tbl_pbl_addr_lo fcoe_kwqe_init2 0 24084 &disable_so_nr_uuids_cache_set_24084
++disable_so_radeon_atom_get_clock_dividers_fndecl_24091 radeon_atom_get_clock_dividers fndecl 2-0-3 24091 NULL
++disable_so_rx_pg_bidx_addr_bnx2_rx_ring_info_24100 rx_pg_bidx_addr bnx2_rx_ring_info 0 24100 NULL
++disable_so_pty_signal_fndecl_24107 pty_signal fndecl 2 24107 NULL
++disable_so_laddr_rsxx_dma_24112 laddr rsxx_dma 0 24112 NULL
++disable_so_position_ct_timer_instance_24114 position ct_timer_instance 0 24114 NULL
++disable_so_btrfs_create_uuid_tree_fndecl_24124 btrfs_create_uuid_tree fndecl 0 24124 NULL
++disable_so_version_ethtool_regs_24128 version ethtool_regs 0 24128 NULL
++disable_so_usleep_range_fndecl_24129 usleep_range fndecl 1-2 24129 NULL
++disable_so_pdc_detect_pll_input_clock_fndecl_24132 pdc_detect_pll_input_clock fndecl 0 24132 NULL
++disable_so_dn_ifaddr_notify_fndecl_24133 dn_ifaddr_notify fndecl 1 24133 NULL
++disable_so_sis_ata133_program_udma_timings_fndecl_24137 sis_ata133_program_udma_timings fndecl 2 24137 NULL
++disable_so_fll_fratio_fll_div_24138 fll_fratio fll_div 0 24138 NULL
++disable_so_switch_addr_tda827x_config_24144 switch_addr tda827x_config 0 24144 NULL
++disable_so_scan_timeout_airo_info_24146 scan_timeout airo_info 0 24146 NULL nohasharray
++disable_so_tps6586x_rtc_set_time_fndecl_24146 tps6586x_rtc_set_time fndecl 0 24146 &disable_so_scan_timeout_airo_info_24146
++disable_so_ip101a_g_ack_interrupt_fndecl_24147 ip101a_g_ack_interrupt fndecl 0 24147 NULL
++disable_so_clock_speed__MGSL_PARAMS_24149 clock_speed _MGSL_PARAMS 0 24149 NULL nohasharray
++disable_so_esi_tss_segment_32_24149 esi tss_segment_32 0 24149 &disable_so_clock_speed__MGSL_PARAMS_24149
++disable_so_sync_size_bitmap_super_s_24170 sync_size bitmap_super_s 0 24170 NULL
++disable_so_hwirq_irq_data_24172 hwirq irq_data 0 24172 NULL
++disable_so_brcm_fet_ack_interrupt_fndecl_24181 brcm_fet_ack_interrupt fndecl 0 24181 NULL
++disable_so_min_delta_ticks_clock_event_device_24191 min_delta_ticks clock_event_device 0 24191 NULL
++disable_so_device_snd_timer_id_24197 device snd_timer_id 0 24197 NULL
++disable_so_xcan_tx_interrupt_fndecl_24200 xcan_tx_interrupt fndecl 2 24200 NULL
++disable_so_dmabuf_timeout_fndecl_24205 dmabuf_timeout fndecl 0 24205 NULL
++disable_so_pm_runtime_get_sync_fndecl_24206 pm_runtime_get_sync fndecl 0 24206 NULL
++disable_so_vdso_addr_fndecl_24212 vdso_addr fndecl 1-2 24212 NULL
++disable_so___subtree_last_usnic_uiom_interval_node_24213 __subtree_last usnic_uiom_interval_node 0 24213 NULL
++disable_so_read_mac_addr_pch_gbe_functions_24216 read_mac_addr pch_gbe_functions 0 24216 NULL
++disable_so_get_option_gid_fndecl_24218 get_option_gid fndecl 0 24218 NULL
++disable_so_decode_freq_dst_state_24221 decode_freq dst_state 0 24221 NULL
++disable_so_nilfs_btree_prepare_delete_fndecl_24237 nilfs_btree_prepare_delete fndecl 0 24237 NULL
++disable_so_start_time_s2io_nic_24242 start_time s2io_nic 0 24242 NULL
++disable_so_tv_vsync_delay_nv04_crtc_reg_24261 tv_vsync_delay nv04_crtc_reg 0 24261 NULL
++disable_so_sq_addr_low_nes_qp_context_24263 sq_addr_low nes_qp_context 0 24263 NULL
++disable_so_jiffies_next_airspy_24265 jiffies_next airspy 0 24265 NULL
++disable_so_show_node_guid_fndecl_24266 show_node_guid fndecl 0 24266 NULL
++disable_so_new_addr_tcf_nat_24272 new_addr tcf_nat 0 24272 NULL nohasharray
++disable_so_dt_cpufreq_probe_fndecl_24272 dt_cpufreq_probe fndecl 0 24272 &disable_so_new_addr_tcf_nat_24272
++disable_so_src_freq_tbl_24280 src freq_tbl 0 24280 NULL
++disable_so_tps51632_dcdc_set_ramp_delay_fndecl_24291 tps51632_dcdc_set_ramp_delay fndecl 0-2 24291 NULL
++disable_so_resolution_num_snd_timer_gstatus_24293 resolution_num snd_timer_gstatus 0 24293 NULL
++disable_so_delay_usecs_spi_transfer_24301 delay_usecs spi_transfer 0 24301 NULL
++disable_so_curfreq_dsbr100_device_24314 curfreq dsbr100_device 0 24314 NULL
++disable_so_mlx4_set_admin_guid_fndecl_24342 mlx4_set_admin_guid fndecl 3-4 24342 NULL
++disable_so__get_table_maxdiv_fndecl_24353 _get_table_maxdiv fndecl 0 24353 NULL
++disable_so_fb_div_scale_rv6xx_power_info_24360 fb_div_scale rv6xx_power_info 0 24360 NULL
++disable_so_fb_get_hfreq_fndecl_24369 fb_get_hfreq fndecl 0-1-2 24369 NULL
++disable_so_mmp_time_mmp_struct_24373 mmp_time mmp_struct 0 24373 NULL
++disable_so_timestamp_mwifiex_fixed_bcn_param_24375 timestamp mwifiex_fixed_bcn_param 0 24375 NULL
++disable_so_s2mpu02_set_ramp_delay_fndecl_24379 s2mpu02_set_ramp_delay fndecl 0 24379 NULL
++disable_so_last_fail_time_iscsi_login_stats_24381 last_fail_time iscsi_login_stats 0 24381 NULL
++disable_so_bus_addr_vnic_res_24386 bus_addr vnic_res 0 24386 NULL
++disable_so_i40e_ptp_adjtime_fndecl_24400 i40e_ptp_adjtime fndecl 2 24400 NULL
++disable_so_msr_ct_atc_24401 msr ct_atc 0 24401 NULL
++disable_so_pvr2_hdw_get_cur_freq_fndecl_24402 pvr2_hdw_get_cur_freq fndecl 0 24402 NULL
++disable_so_time_ubifs_znode_24419 time ubifs_znode 0 24419 NULL
++disable_so_ssp_get_clk_div_fndecl_24428 ssp_get_clk_div fndecl 0-2 24428 NULL
++disable_so_sem_otime_sem_24429 sem_otime sem 0 24429 NULL
++disable_so_mrst_lvds_clock_fndecl_24433 mrst_lvds_clock fndecl 1 24433 NULL
++disable_so_ccp_aes_setkey_fndecl_24438 ccp_aes_setkey fndecl 3 24438 NULL
++disable_so_log2_page_size_mlx5_mkey_seg_24441 log2_page_size mlx5_mkey_seg 0 24441 NULL
++disable_so_qtimer_val_fndecl_24449 qtimer_val fndecl 0 24449 NULL
++disable_so_sum_exec_runtime_sched_entity_24453 sum_exec_runtime sched_entity 0 24453 NULL
++disable_so_ehash_mask_inet_hashinfo_24457 ehash_mask inet_hashinfo 0 24457 NULL
++disable_so_bd_list_addr_hi_bnx2i_tmf_request_24461 bd_list_addr_hi bnx2i_tmf_request 0 24461 NULL
++disable_so_qce_ahash_register_fndecl_24475 qce_ahash_register fndecl 0 24475 NULL
++disable_so_acpi_leave_sleep_state_fndecl_24476 acpi_leave_sleep_state fndecl 0-1 24476 NULL
++disable_so_last_can_queue_ramp_up_time_fc_fcp_internal_24477 last_can_queue_ramp_up_time fc_fcp_internal 0 24477 NULL
++disable_so_mtrr_gran_size_vardecl_cleanup_c_24487 mtrr_gran_size vardecl_cleanup.c 0 24487 NULL
++disable_so_tef6862_s_frequency_fndecl_24490 tef6862_s_frequency fndecl 0 24490 NULL
++disable_so_update_uc_addr_fm10k_mac_ops_24492 update_uc_addr fm10k_mac_ops 4 24492 NULL
++disable_so_cipher_key_sz_icp_qat_fw_cipher_cd_ctrl_hdr_24515 cipher_key_sz icp_qat_fw_cipher_cd_ctrl_hdr 0 24515 NULL
++disable_so_read_div_fndecl_24524 read_div fndecl 0-2-3-4 24524 NULL
++disable_so_sctp_setsockopt_peer_addr_params_fndecl_24525 sctp_setsockopt_peer_addr_params fndecl 3-0 24525 NULL
++disable_so_dev_addr_dma_debug_entry_24528 dev_addr dma_debug_entry 0 24528 NULL
++disable_so_txurn_interrupt_mask_ath_hw_24529 txurn_interrupt_mask ath_hw 0 24529 NULL
++disable_so_reg_w_fndecl_24535 reg_w fndecl 2-3 24535 NULL
++disable_so_fs_csaddr_ufs_super_block_first_24537 fs_csaddr ufs_super_block_first 0 24537 NULL nohasharray
++disable_so_dv_timings_aspect_ratio_vivid_dev_24537 dv_timings_aspect_ratio vivid_dev 0 24537 &disable_so_fs_csaddr_ufs_super_block_first_24537
++disable_so_af_tx_sent_jiffies_brcmf_p2p_info_24540 af_tx_sent_jiffies brcmf_p2p_info 0 24540 NULL
++disable_so_timekeeping_max_deferment_fndecl_24546 timekeeping_max_deferment fndecl 0 24546 NULL
++disable_so_poly_cipherpad_fndecl_24550 poly_cipherpad fndecl 0 24550 NULL
++disable_so_aosr_aic32x4_rate_divs_24551 aosr aic32x4_rate_divs 0 24551 NULL
++disable_so_dir_band_bitmap_hpfs_super_block_24552 dir_band_bitmap hpfs_super_block 0 24552 NULL
++disable_so_confq_first_pbe_addr_hi_fcoe_kwqe_conn_offload3_24566 confq_first_pbe_addr_hi fcoe_kwqe_conn_offload3 0 24566 NULL
++disable_so_console_addr_brcmf_sdio_24567 console_addr brcmf_sdio 0 24567 NULL
++disable_so_cis820x_ack_interrupt_fndecl_24585 cis820x_ack_interrupt fndecl 0 24585 NULL
++disable_so_proc_loginuid_read_fndecl_24604 proc_loginuid_read fndecl 3-0 24604 NULL
++disable_so_schedule_nes_timer_fndecl_24613 schedule_nes_timer fndecl 0 24613 NULL
++disable_so_base_freq_patch_info_24622 base_freq patch_info 0 24622 NULL
++disable_so_acpi_hw_sleep_dispatch_fndecl_24627 acpi_hw_sleep_dispatch fndecl 0-1 24627 NULL
++disable_so_busaddr_cciss_scsi_cmd_stack_elem_t_24629 busaddr cciss_scsi_cmd_stack_elem_t 0 24629 NULL
++disable_so_hscb_busaddr_hardware_scb_24633 hscb_busaddr hardware_scb 0 24633 NULL
++disable_so_scsi_reset_delay_adveep_38C0800_config_24634 scsi_reset_delay adveep_38C0800_config 0 24634 NULL
++disable_so_mclk_fb_div_pll_ct_24641 mclk_fb_div pll_ct 0 24641 NULL
++disable_so_writeback_index_address_space_24643 writeback_index address_space 0 24643 NULL
++disable_so_ieee80211_aes_cmac_256_fndecl_24647 ieee80211_aes_cmac_256 fndecl 4 24647 NULL
++disable_so_i915_gem_object_set_to_cpu_domain_fndecl_24650 i915_gem_object_set_to_cpu_domain fndecl 0 24650 NULL
++disable_so_i2c_addr_sd_24651 i2c_addr sd 0 24651 NULL
++disable_so_next_jiffies_vardecl_ksz884x_c_24672 next_jiffies vardecl_ksz884x.c 0 24672 NULL
++disable_so_sclk_frequency_sumo_sclk_voltage_mapping_entry_24676 sclk_frequency sumo_sclk_voltage_mapping_entry 0 24676 NULL
++disable_so_eop_buffer_address_kfd_ioctl_create_queue_args_24677 eop_buffer_address kfd_ioctl_create_queue_args 0 24677 NULL
++disable_so_cyc2ns_mul_cyc2ns_data_24698 cyc2ns_mul cyc2ns_data 0 24698 NULL
++disable_so_task_getscheduler_security_operations_24701 task_getscheduler security_operations 0 24701 NULL
++disable_so_bitmap_search_next_usable_block_fndecl_24705 bitmap_search_next_usable_block fndecl 0-1-3 24705 NULL
++disable_so_gfn_to_memslot_dirty_bitmap_fndecl_24710 gfn_to_memslot_dirty_bitmap fndecl 2 24710 NULL
++disable_so_type_acpi_signal_fatal_info_24717 type acpi_signal_fatal_info 0 24717 NULL
++disable_so_interrupt_mod_interval_vardecl_24721 interrupt_mod_interval vardecl 0 24721 NULL
++disable_so_crypto_authenc_esn_givencrypt_fndecl_24722 crypto_authenc_esn_givencrypt fndecl 0 24722 NULL
++disable_so_atl1e_hash_mc_addr_fndecl_24728 atl1e_hash_mc_addr fndecl 0 24728 NULL
++disable_so_digest_size_ccp_sha_def_24730 digest_size ccp_sha_def 0 24730 NULL
++disable_so_sysfs_show_current_clocksources_fndecl_24748 sysfs_show_current_clocksources fndecl 0 24748 NULL
++disable_so_timeout_ip_set_ext_24754 timeout ip_set_ext 0 24754 NULL
++disable_so_freqmode_pll_div_24757 freqmode pll_div 0 24757 NULL
++disable_so_mvs_write_port_cfg_addr_fndecl_24758 mvs_write_port_cfg_addr fndecl 3 24758 NULL nohasharray
++disable_so_vactive_lo_oaktrail_timing_info_24758 vactive_lo oaktrail_timing_info 0 24758 &disable_so_mvs_write_port_cfg_addr_fndecl_24758
++disable_so_cs42xx8_runtime_resume_fndecl_24764 cs42xx8_runtime_resume fndecl 0 24764 NULL
++disable_so_snd_pcm_hw_rule_div_fndecl_24768 snd_pcm_hw_rule_div fndecl 0 24768 NULL
++disable_so_drbg_hash_process_addtl_fndecl_24773 drbg_hash_process_addtl fndecl 0 24773 NULL
++disable_so__lookup_address_cpa_fndecl_24780 _lookup_address_cpa fndecl 2 24780 NULL
++disable_so_time_stamp_iwl_traffic_load_24795 time_stamp iwl_traffic_load 0 24795 NULL
++disable_so_remote_cm_response_timeout_ib_cm_req_event_param_24800 remote_cm_response_timeout ib_cm_req_event_param 0 24800 NULL
++disable_so_busaddr_nes_rskb_cb_24803 busaddr nes_rskb_cb 0 24803 NULL nohasharray
++disable_so_setkey_ablkcipher_tfm_24803 setkey ablkcipher_tfm 0-3 24803 &disable_so_busaddr_nes_rskb_cb_24803
++disable_so_acpi_sleep_prepare_fndecl_24809 acpi_sleep_prepare fndecl 1 24809 NULL
++disable_so_max98090_find_divisor_fndecl_24832 max98090_find_divisor fndecl 0-2 24832 NULL
++disable_so_panel_digon_delay_radeon_encoder_lvds_24833 panel_digon_delay radeon_encoder_lvds 0 24833 NULL
++disable_so_qp_dma_addr_t3_rdma_init_attr_24843 qp_dma_addr t3_rdma_init_attr 0 24843 NULL
++disable_so_interval_tree_compute_subtree_last_fndecl_24849 interval_tree_compute_subtree_last fndecl 0 24849 NULL
++disable_so_queue_info_new_phys_addr_lo_megasas_init_frame_24856 queue_info_new_phys_addr_lo megasas_init_frame 0 24856 NULL
++disable_so_mipi_dsi_dcs_enter_sleep_mode_fndecl_24857 mipi_dsi_dcs_enter_sleep_mode fndecl 0 24857 NULL
++disable_so_ring_iowrite64desc_fndecl_24858 ring_iowrite64desc fndecl 2 24858 NULL nohasharray
++disable_so_regcache_rbtree_lookup_fndecl_24858 regcache_rbtree_lookup fndecl 2 24858 &disable_so_ring_iowrite64desc_fndecl_24858
++disable_so_rx_timeout_sci_port_24883 rx_timeout sci_port 0 24883 NULL nohasharray
++disable_so_add_atomic_switch_msr_fndecl_24883 add_atomic_switch_msr fndecl 3-4 24883 &disable_so_rx_timeout_sci_port_24883
++disable_so_xfs_btree_del_cursor_fndecl_24886 xfs_btree_del_cursor fndecl 2 24886 NULL
++disable_so_dsp_time_last_pcxhr_mgr_24894 dsp_time_last pcxhr_mgr 0 24894 NULL
++disable_so_addr_carm_msg_allocbuf_24908 addr carm_msg_allocbuf 0 24908 NULL
++disable_so_max_gids_mthca_dev_lim_24911 max_gids mthca_dev_lim 0 24911 NULL nohasharray
++disable_so_af9005_get_pre_vit_err_bit_count_fndecl_24911 af9005_get_pre_vit_err_bit_count fndecl 0 24911 &disable_so_max_gids_mthca_dev_lim_24911
++disable_so_last_jiffies_vardecl_isdn_net_c_24918 last_jiffies vardecl_isdn_net.c 0 24918 NULL
++disable_so_pci_bus_cx88_core_24932 pci_bus cx88_core 0 24932 NULL
++disable_so_devm_gpio_request_one_fndecl_24938 devm_gpio_request_one fndecl 0-2 24938 NULL
++disable_so_launder_page_address_space_operations_24942 launder_page address_space_operations 0 24942 NULL
++disable_so_enh_desc_get_timestamp_fndecl_24946 enh_desc_get_timestamp fndecl 0 24946 NULL
++disable_so___pci_bus_find_cap_start_fndecl_24949 __pci_bus_find_cap_start fndecl 0-2 24949 NULL
++disable_so_prepare_signal_fndecl_24954 prepare_signal fndecl 1 24954 NULL
++disable_so_il_vfrontporch_v4l2_bt_timings_24960 il_vfrontporch v4l2_bt_timings 0 24960 NULL
++disable_so_ide_pio_cycle_time_fndecl_24963 ide_pio_cycle_time fndecl 2-0 24963 NULL
++disable_so_demod_address_tda10086_config_24966 demod_address tda10086_config 0 24966 NULL nohasharray
++disable_so_ath5k_check_timer_win_fndecl_24966 ath5k_check_timer_win fndecl 1-2 24966 &disable_so_demod_address_tda10086_config_24966
++disable_so_pentium_core_get_frequency_fndecl_24968 pentium_core_get_frequency fndecl 0 24968 NULL
++disable_so_freqerr_chk_fndecl_24974 freqerr_chk fndecl 0-2-3 24974 NULL
++disable_so_tgt_reset_timeout_iscsi_session_24977 tgt_reset_timeout iscsi_session 0 24977 NULL
++disable_so_gpiod_set_raw_value_cansleep_fndecl_24979 gpiod_set_raw_value_cansleep fndecl 2 24979 NULL
++disable_so_write_addr_fndecl_24985 write_addr fndecl 2 24985 NULL
++disable_so_mcs7830_set_mac_address_fndecl_24986 mcs7830_set_mac_address fndecl 0 24986 NULL
++disable_so_multiaddr_ip_mc_list_24989 multiaddr ip_mc_list 0 24989 NULL
++disable_so_shash_ahash_digest_fndecl_24990 shash_ahash_digest fndecl 0 24990 NULL
++disable_so_unlock_timer_adp5589_kpad_platform_data_24993 unlock_timer adp5589_kpad_platform_data 0 24993 NULL
++disable_so_connect_timeout_vsock_sock_25001 connect_timeout vsock_sock 0 25001 NULL
++disable_so_m_addr_rds_cong_map_25013 m_addr rds_cong_map 0 25013 NULL
++disable_so_flash_addr_esas2r_ioctlfs_command_25014 flash_addr esas2r_ioctlfs_command 0 25014 NULL
++disable_so_da9052_rtc_read_time_fndecl_25015 da9052_rtc_read_time fndecl 0 25015 NULL
++disable_so_cpu_to_vhost32_fndecl_25031 cpu_to_vhost32 fndecl 0-2 25031 NULL
++disable_so_vxlan_nla_put_addr_fndecl_25037 vxlan_nla_put_addr fndecl 0 25037 NULL
++disable_so_hello_timer_value___bridge_info_25048 hello_timer_value __bridge_info 0 25048 NULL
++disable_so_steer_res_gid_25050 steer res_gid 0 25050 NULL
++disable_so_average_frequency_time_stats_25055 average_frequency time_stats 0 25055 NULL
++disable_so_sense_busaddr_scb_data_25056 sense_busaddr scb_data 0 25056 NULL
++disable_so_rx_stall_timeout_msecs_vardecl_25059 rx_stall_timeout_msecs vardecl 0 25059 NULL
++disable_so_bypclk_div_dibx000_bandwidth_config_25065 bypclk_div dibx000_bandwidth_config 0 25065 NULL
++disable_so_drm_dp_clock_recovery_ok_fndecl_25083 drm_dp_clock_recovery_ok fndecl 2 25083 NULL
++disable_so_get_min_clock_sdhci_ops_25084 get_min_clock sdhci_ops 0 25084 NULL
++disable_so_port_ka_time_fcoe_ctlr_25085 port_ka_time fcoe_ctlr 0 25085 NULL
++disable_so_btrfs_set_token_timespec_nsec_fndecl_25090 btrfs_set_token_timespec_nsec fndecl 3 25090 NULL
++disable_so_tx_bd_haddr_lo_bnx2_tx_bd_25100 tx_bd_haddr_lo bnx2_tx_bd 0 25100 NULL
++disable_so_pwm_freq_div_dib7000p_config_25102 pwm_freq_div dib7000p_config 0 25102 NULL
++disable_so_x86_pmu_config_addr_fndecl_25103 x86_pmu_config_addr fndecl 0-1 25103 NULL
++disable_so_address_TAG_TW_SG_Entry_25109 address TAG_TW_SG_Entry 0 25109 NULL
++disable_so_cfg_base_smsc_chip_address_25125 cfg_base smsc_chip_address 0 25125 NULL
++disable_so_snd_iprintf_fndecl_25126 snd_iprintf fndecl 0 25126 NULL
++disable_so_sony_nc_kbd_backlight_timeout_show_fndecl_25134 sony_nc_kbd_backlight_timeout_show fndecl 0 25134 NULL
++disable_so___hw_addr_create_ex_fndecl_25138 __hw_addr_create_ex fndecl 3 25138 NULL
++disable_so_sdev_show_timeout_fndecl_25140 sdev_show_timeout fndecl 0 25140 NULL
++disable_so_valleyview_rps_guar_freq_fndecl_25141 valleyview_rps_guar_freq fndecl 0 25141 NULL
++disable_so_msg_addr_lo_vf_pf_event_data_25142 msg_addr_lo vf_pf_event_data 0 25142 NULL nohasharray
++disable_so_hfreq___fb_timings_25142 hfreq __fb_timings 0 25142 &disable_so_msg_addr_lo_vf_pf_event_data_25142
++disable_so_select_addr_2_qla83xx_minidump_entry_rdmux2_25145 select_addr_2 qla83xx_minidump_entry_rdmux2 0 25145 NULL
++disable_so_ctrl_addr_palmas_regs_info_25149 ctrl_addr palmas_regs_info 0 25149 NULL
++disable_so_gid_affs_tail_25153 gid affs_tail 0 25153 NULL
++disable_so_recv_timeout_iscsi_conn_25159 recv_timeout iscsi_conn 0 25159 NULL
++disable_so_decode_attr_lease_time_fndecl_25160 decode_attr_lease_time fndecl 0 25160 NULL
++disable_so_log10times100_fndecl_25175 log10times100 fndecl 0-1 25175 NULL
++disable_so_crypto_register_shashes_fndecl_25178 crypto_register_shashes fndecl 0 25178 NULL
++disable_so_sh_cmt_clock_event_next_fndecl_25183 sh_cmt_clock_event_next fndecl 1 25183 NULL
++disable_so_update_mctime_fndecl_25185 update_mctime fndecl 0 25185 NULL
++disable_so_snd_hdspm_info_clock_source_fndecl_25189 snd_hdspm_info_clock_source fndecl 0 25189 NULL
++disable_so_ds1390_read_time_fndecl_25191 ds1390_read_time fndecl 0 25191 NULL
++disable_so_crypto_gcm_setkey_fndecl_25197 crypto_gcm_setkey fndecl 0-3 25197 NULL
++disable_so_atomic_read_file_fndecl_25200 atomic_read_file fndecl 3-0 25200 NULL
++disable_so_i_ctime_minix2_inode_25213 i_ctime minix2_inode 0 25213 NULL
++disable_so_account_fndecl_25224 account fndecl 0-4-2 25224 NULL
++disable_so_bestclock_fndecl_25226 bestclock fndecl 1 25226 NULL
++disable_so_regcache_rbtree_insert_to_block_fndecl_25230 regcache_rbtree_insert_to_block fndecl 3-4-5-6 25230 NULL
++disable_so_pentiumM_get_frequency_fndecl_25231 pentiumM_get_frequency fndecl 0 25231 NULL
++disable_so_model_mceusb_dev_25234 model mceusb_dev 0 25234 NULL
++disable_so_sk_rcvtimeo_sock_25235 sk_rcvtimeo sock 0 25235 NULL
++disable_so_atomic_long_add_fndecl_25245 atomic_long_add fndecl 1 25245 NULL
++disable_so_tw_rcv_wnd_tcp_timewait_sock_25247 tw_rcv_wnd tcp_timewait_sock 0 25247 NULL
++disable_so_vga_switcheroo_runtime_resume_fndecl_25258 vga_switcheroo_runtime_resume fndecl 0 25258 NULL nohasharray
++disable_so_swp_freq_calcuation_fndecl_25258 swp_freq_calcuation fndecl 0-10-8-9 25258 &disable_so_vga_switcheroo_runtime_resume_fndecl_25258
++disable_so_sys_setresuid_fndecl_25263 sys_setresuid fndecl 0-1-2-3 25263 NULL
++disable_so_va_gid_coda_vattr_25267 va_gid coda_vattr 0 25267 NULL
++disable_so_adis16136_set_freq_fndecl_25268 adis16136_set_freq fndecl 0 25268 NULL
++disable_so_sha1_ssse3_update_fndecl_25270 sha1_ssse3_update fndecl 3 25270 NULL
++disable_so_data_addr_rx_ring_info_25277 data_addr rx_ring_info 0 25277 NULL
++disable_so_in_n_analog_pcm_runtime_25285 in_n_analog pcm_runtime 0 25285 NULL
++disable_so_active_ide_timing_25290 active ide_timing 0 25290 NULL
++disable_so_max_img_ir_timing_range_25312 max img_ir_timing_range 0 25312 NULL
++disable_so_sisusb_setidxreg_fndecl_25313 sisusb_setidxreg fndecl 0-2-3-4 25313 NULL
++disable_so_rss_hash_cq_enet_rq_desc_25315 rss_hash cq_enet_rq_desc 0 25315 NULL
++disable_so_sdhci_pltfm_clk_get_max_clock_fndecl_25319 sdhci_pltfm_clk_get_max_clock fndecl 0 25319 NULL
++disable_so_be_cmd_mac_addr_query_fndecl_25342 be_cmd_mac_addr_query fndecl 0 25342 NULL
++disable_so_st_atime_nsec_compat_stat_25348 st_atime_nsec compat_stat 0 25348 NULL
++disable_so_blkcipher_walk_virt_fndecl_25350 blkcipher_walk_virt fndecl 0 25350 NULL
++disable_so_ata_sff_interrupt_fndecl_25352 ata_sff_interrupt fndecl 1 25352 NULL
++disable_so_vdisktime_cfq_group_25353 vdisktime cfq_group 0 25353 NULL
++disable_so_sctp_apply_peer_addr_params_fndecl_25357 sctp_apply_peer_addr_params fndecl 0 25357 NULL
++disable_so_hpi_sample_clock_get_local_rate_lock_fndecl_25364 hpi_sample_clock_get_local_rate_lock fndecl 1-0 25364 NULL
++disable_so_sticks_snd_timer_25366 sticks snd_timer 0 25366 NULL
++disable_so_segv_uid_gr_arg_25373 segv_uid gr_arg 0 25373 NULL
++disable_so_signal_rate_plcp_signal_rate_lookup_25377 signal_rate plcp_signal_rate_lookup 0 25377 NULL
++disable_so_timeout_jiffies_tifm_sd_25387 timeout_jiffies tifm_sd 0 25387 NULL
++disable_so_fence_gpu_addr_kernel_queue_25394 fence_gpu_addr kernel_queue 0 25394 NULL
++disable_so_pch_udc_enable_interrupts_fndecl_25405 pch_udc_enable_interrupts fndecl 2 25405 NULL
++disable_so_addr_hi_eth_rx_sge_25407 addr_hi eth_rx_sge 0 25407 NULL
++disable_so_flushtimeout_nfulnl_instance_25409 flushtimeout nfulnl_instance 0 25409 NULL
++disable_so_ti12xx_untie_interrupts_fndecl_25411 ti12xx_untie_interrupts fndecl 2 25411 NULL
++disable_so_dma_addr_t4_cq_25412 dma_addr t4_cq 0 25412 NULL
++disable_so_task_list_pbl_addr_lo_fcoe_kwqe_init1_25414 task_list_pbl_addr_lo fcoe_kwqe_init1 0 25414 NULL
++disable_so_conntrack_addrcmp_fndecl_25418 conntrack_addrcmp fndecl 4 25418 NULL
++disable_so_datablock_addr_fndecl_25424 datablock_addr fndecl 0-2 25424 NULL
++disable_so_intel_sdvo_create_preferred_input_timing_fndecl_25428 intel_sdvo_create_preferred_input_timing fndecl 3-4 25428 NULL
++disable_so_return_address_stack_frame_ia32_25439 return_address stack_frame_ia32 0 25439 NULL
++disable_so_tmds_chip_slave_addr_tmds_chip_information_25446 tmds_chip_slave_addr tmds_chip_information 0 25446 NULL
++disable_so_releasepage_address_space_operations_25450 releasepage address_space_operations 2 25450 NULL
++disable_so_sys_setgid_fndecl_25470 sys_setgid fndecl 0-1 25470 NULL nohasharray
++disable_so_random_address_open_fndecl_25470 random_address_open fndecl 0 25470 &disable_so_sys_setgid_fndecl_25470
++disable_so_creation_time_se_device_25474 creation_time se_device 0 25474 NULL
++disable_so_addr_qla8xxx_minidump_entry_crb_25475 addr qla8xxx_minidump_entry_crb 0 25475 NULL
++disable_so_wrmsr_safe_on_cpu_fndecl_25481 wrmsr_safe_on_cpu fndecl 0-1 25481 NULL
++disable_so_htc_addr_ath6kl_mbox_info_25495 htc_addr ath6kl_mbox_info 0 25495 NULL
++disable_so_crypto_shash_export_fndecl_25501 crypto_shash_export fndecl 0 25501 NULL
++disable_so_pm_runtime_autosuspend_expiration_fndecl_25503 pm_runtime_autosuspend_expiration fndecl 0 25503 NULL
++disable_so_fib_info_update_nh_saddr_fndecl_25504 fib_info_update_nh_saddr fndecl 0 25504 NULL
++disable_so_ac_uid_taskstats_25506 ac_uid taskstats 0 25506 NULL
++disable_so_bufaddr_epic_rx_desc_25507 bufaddr epic_rx_desc 0 25507 NULL
++disable_so_process_tgid_id_proc_event_25512 process_tgid id_proc_event 0 25512 NULL
++disable_so_si5351_msynth_params_address_fndecl_25517 si5351_msynth_params_address fndecl 0-1 25517 NULL
++disable_so_btrfs_dev_replace_time_stopped_fndecl_25538 btrfs_dev_replace_time_stopped fndecl 0 25538 NULL
++disable_so___irq_set_handler_fndecl_25547 __irq_set_handler fndecl 1 25547 NULL
++disable_so_next_addr_ath_gen_timer_configuration_25559 next_addr ath_gen_timer_configuration 0 25559 NULL
++disable_so_timeout_request_25561 timeout request 0 25561 NULL
++disable_so_rx_bd_haddr_hi_bnx2_rx_bd_25562 rx_bd_haddr_hi bnx2_rx_bd 0 25562 NULL nohasharray
++disable_so_jhash_1word_fndecl_25562 jhash_1word fndecl 0-1 25562 &disable_so_rx_bd_haddr_hi_bnx2_rx_bd_25562
++disable_so_freq_ref_fll_factors_25565 freq_ref fll_factors 0 25565 NULL
++disable_so_compat_sys_mq_timedreceive_fndecl_25566 compat_sys_mq_timedreceive fndecl 1-3 25566 NULL
++disable_so_scl_falling_time_dw_i2c_dev_25576 scl_falling_time dw_i2c_dev 0 25576 NULL
++disable_so_maj_flt_signal_struct_25583 maj_flt signal_struct 0 25583 NULL
++disable_so_irq_set_chip_and_handler_name_fndecl_25596 irq_set_chip_and_handler_name fndecl 1 25596 NULL
++disable_so_timeout_ms_ib_mad_send_buf_25607 timeout_ms ib_mad_send_buf 0 25607 NULL
++disable_so_qs_itimelimit_fs_quota_statv_25612 qs_itimelimit fs_quota_statv 0 25612 NULL nohasharray
++disable_so_blkcipher_aead_walk_virt_block_fndecl_25612 blkcipher_aead_walk_virt_block fndecl 0-4 25612 &disable_so_qs_itimelimit_fs_quota_statv_25612
++disable_so_o2hb_heartbeat_timeout_ms_o2net_handshake_25614 o2hb_heartbeat_timeout_ms o2net_handshake 0 25614 NULL
++disable_so_sampling_time_acpi_power_meter_capabilities_25620 sampling_time acpi_power_meter_capabilities 0 25620 NULL
++disable_so_C_SYSC_signalfd_fndecl_25641 C_SYSC_signalfd fndecl 0 25641 NULL
++disable_so_dpp_page_addr_lo_ocrdma_alloc_pd_uresp_25645 dpp_page_addr_lo ocrdma_alloc_pd_uresp 0 25645 NULL
++disable_so_memclock_pm2fb_par_25648 memclock pm2fb_par 0 25648 NULL
++disable_so_hca_core_clock_mlx4_init_hca_param_25649 hca_core_clock mlx4_init_hca_param 0 25649 NULL
++disable_so_hash_fndecl_25655 hash fndecl 0-2 25655 NULL
++disable_so_get_scr_cfg_addr_fndecl_25659 get_scr_cfg_addr fndecl 0-2 25659 NULL
++disable_so_brp_can_bittiming_25672 brp can_bittiming 0 25672 NULL
++disable_so_hash_tcindex_data_25674 hash tcindex_data 0 25674 NULL
++disable_so_store_pwm_auto_spinup_time_fndecl_25686 store_pwm_auto_spinup_time fndecl 0-4 25686 NULL nohasharray
++disable_so_wm5100_runtime_resume_fndecl_25686 wm5100_runtime_resume fndecl 0 25686 &disable_so_store_pwm_auto_spinup_time_fndecl_25686
++disable_so_cbc_aes_decrypt_fndecl_25690 cbc_aes_decrypt fndecl 0-4 25690 NULL
++disable_so_find_vma_fndecl_25710 find_vma fndecl 2 25710 NULL
++disable_so_set_register_interruptible_fndecl_25711 set_register_interruptible fndecl 0 25711 NULL
++disable_so_last_beacon_timestamp_atmel_private_25714 last_beacon_timestamp atmel_private 0 25714 NULL
++disable_so_print_uuid_item_fndecl_25720 print_uuid_item fndecl 2-3 25720 NULL nohasharray
++disable_so_intel_pxfreq_fndecl_25720 intel_pxfreq fndecl 0-1 25720 &disable_so_print_uuid_item_fndecl_25720
++disable_so___mlx4_ib_query_gid_fndecl_25733 __mlx4_ib_query_gid fndecl 0-2-3 25733 NULL
++disable_so_crypto_pcbc_setkey_fndecl_25734 crypto_pcbc_setkey fndecl 0-3 25734 NULL
++disable_so_iClockSource_uac_clock_source_descriptor_25741 iClockSource uac_clock_source_descriptor 0 25741 NULL
++disable_so_madc_aic32x4_rate_divs_25746 madc aic32x4_rate_divs 0 25746 NULL nohasharray
++disable_so_test_and_set_bit_le_fndecl_25746 test_and_set_bit_le fndecl 1 25746 &disable_so_madc_aic32x4_rate_divs_25746
++disable_so_init_acpi_pm_clocksource_fndecl_25751 init_acpi_pm_clocksource fndecl 0 25751 NULL
++disable_so_bit_width_io_addr_25761 bit_width io_addr 0 25761 NULL nohasharray
++disable_so_shash_async_finup_fndecl_25761 shash_async_finup fndecl 0 25761 &disable_so_bit_width_io_addr_25761
++disable_so_i_mtime_extra_ext4_inode_25766 i_mtime_extra ext4_inode 0 25766 NULL
++disable_so_suid_ban_expires_user_struct_25778 suid_ban_expires user_struct 0 25778 NULL
++disable_so_sys_timer_delete_fndecl_25781 sys_timer_delete fndecl 1 25781 NULL
++disable_so_write16_b43_bus_dev_25800 write16 b43_bus_dev 3 25800 NULL
++disable_so_pci_bus_clock_list_fndecl_25811 pci_bus_clock_list fndecl 0-1 25811 NULL
++disable_so_pll_freq_adau_25818 pll_freq adau 0 25818 NULL
++disable_so_kvm_get_lapic_tscdeadline_msr_fndecl_25821 kvm_get_lapic_tscdeadline_msr fndecl 0 25821 NULL
++disable_so_power_off_longtime_mmc_ext_csd_25827 power_off_longtime mmc_ext_csd 0 25827 NULL
++disable_so_mcryptd_hash_digest_enqueue_fndecl_25830 mcryptd_hash_digest_enqueue fndecl 0 25830 NULL
++disable_so_bch_btree_node_get_fndecl_25837 bch_btree_node_get fndecl 4 25837 NULL
++disable_so_sa_timeout_mmc_ext_csd_25842 sa_timeout mmc_ext_csd 0 25842 NULL
++disable_so_rc5t583_rtc_set_time_fndecl_25844 rc5t583_rtc_set_time fndecl 0 25844 NULL
++disable_so_pll2_ndiv_b_cnt_ad9523_platform_data_25849 pll2_ndiv_b_cnt ad9523_platform_data 0 25849 NULL
++disable_so_xfs_btree_kill_iroot_fndecl_25851 xfs_btree_kill_iroot fndecl 0 25851 NULL
++disable_so_freq_offset_xc4000_priv_25852 freq_offset xc4000_priv 0 25852 NULL
++disable_so_orig_eax_user_regs_struct32_25853 orig_eax user_regs_struct32 0 25853 NULL
++disable_so_i_mtime_ext4_inode_25857 i_mtime ext4_inode 0 25857 NULL nohasharray
++disable_so_hash_ipportnet4_expire_fndecl_25857 hash_ipportnet4_expire fndecl 4 25857 &disable_so_i_mtime_ext4_inode_25857
++disable_so_max_keysize_blkcipher_alg_25859 max_keysize blkcipher_alg 0 25859 NULL
++disable_so__kstrtol_fndecl_25860 _kstrtol fndecl 0 25860 NULL nohasharray
++disable_so_reqsize_crypto_aead_25860 reqsize crypto_aead 0 25860 &disable_so__kstrtol_fndecl_25860
++disable_so_group_exit_code_signal_struct_25863 group_exit_code signal_struct 0 25863 NULL
++disable_so_i2c_address_qt1010_config_25866 i2c_address qt1010_config 0 25866 NULL
++disable_so_musb_bulk_nak_timeout_fndecl_25876 musb_bulk_nak_timeout fndecl 3 25876 NULL
++disable_so_rangehigh_v4l2_hw_freq_seek_25892 rangehigh v4l2_hw_freq_seek 0 25892 NULL
++disable_so_xferaddr_mbox_out_25904 xferaddr mbox_out 0 25904 NULL
++disable_so_address_mode_snd_emu10k1_25917 address_mode snd_emu10k1 0 25917 NULL
++disable_so_ac_uid_acct_v3_25928 ac_uid acct_v3 0 25928 NULL
++disable_so_show_cpumask_fndecl_25949 show_cpumask fndecl 0 25949 NULL
++disable_so_x86_max_cores_cpuinfo_x86_25950 x86_max_cores cpuinfo_x86 0 25950 NULL
++disable_so_nr_mtrr_spare_reg_vardecl_cleanup_c_25954 nr_mtrr_spare_reg vardecl_cleanup.c 0 25954 NULL
++disable_so_fib_info_hash_move_fndecl_25959 fib_info_hash_move fndecl 3 25959 NULL
++disable_so_rst_timer_val_intel_dsi_25967 rst_timer_val intel_dsi 0 25967 NULL
++disable_so_backlog_wait_time_audit_status_25971 backlog_wait_time audit_status 0 25971 NULL
++disable_so_gid_h_misc_25975 gid h_misc 0 25975 NULL
++disable_so_wm8962_runtime_resume_fndecl_25981 wm8962_runtime_resume fndecl 0 25981 NULL
++disable_so_ip_vs_rs_hashkey_fndecl_25992 ip_vs_rs_hashkey fndecl 1 25992 NULL
++disable_so_sbp_tpg_attrib_store_max_reconnect_timeout_fndecl_25997 sbp_tpg_attrib_store_max_reconnect_timeout fndecl 0-3 25997 NULL
++disable_so_hpwdt_time_left_fndecl_25998 hpwdt_time_left fndecl 0 25998 NULL
++disable_so_mtrr_calc_range_state_fndecl_26002 mtrr_calc_range_state fndecl 3-4-2-1 26002 NULL
++disable_so_tipc_addr_scope_fndecl_26006 tipc_addr_scope fndecl 0 26006 NULL
++disable_so_rdmsr_safe_regs_fndecl_26012 rdmsr_safe_regs fndecl 0 26012 NULL
++disable_so_kvm_inject_realmode_interrupt_fndecl_26018 kvm_inject_realmode_interrupt fndecl 2 26018 NULL
++disable_so_addr_ethoc_bd_26021 addr ethoc_bd 0 26021 NULL
++disable_so_marvell_ack_interrupt_fndecl_26036 marvell_ack_interrupt fndecl 0 26036 NULL
++disable_so_link_check_timeout_igb_adapter_26037 link_check_timeout igb_adapter 0 26037 NULL nohasharray
++disable_so_psb_intel_crtc_clock_get_fndecl_26037 psb_intel_crtc_clock_get fndecl 0 26037 &disable_so_link_check_timeout_igb_adapter_26037
++disable_so_t2_ptr_hash_tbl_addr_lo_fcoe_kwqe_init2_26039 t2_ptr_hash_tbl_addr_lo fcoe_kwqe_init2 0 26039 NULL
++disable_so_interrupt_out_interval_ld_usb_26046 interrupt_out_interval ld_usb 0 26046 NULL
++disable_so_bs_gid_xfs_bstat_26053 bs_gid xfs_bstat 0 26053 NULL
++disable_so_wm8900_set_dai_clkdiv_fndecl_26074 wm8900_set_dai_clkdiv fndecl 3 26074 NULL
++disable_so_setkey_blkcipher_alg_26078 setkey blkcipher_alg 3 26078 NULL
++disable_so_ixgbevf_init_interrupt_scheme_fndecl_26085 ixgbevf_init_interrupt_scheme fndecl 0 26085 NULL
++disable_so___sw_hweight32_fndecl_26088 __sw_hweight32 fndecl 1-0 26088 NULL nohasharray
++disable_so_addr_hi_eth_tx_bd_26088 addr_hi eth_tx_bd 0 26088 &disable_so___sw_hweight32_fndecl_26088 nohasharray
++disable_so_hashval2_1_rx_pkt_hdr1_26088 hashval2_1 rx_pkt_hdr1 0 26088 &disable_so_addr_hi_eth_tx_bd_26088
++disable_so_debounce_time_snd_soc_jack_gpio_26097 debounce_time snd_soc_jack_gpio 0 26097 NULL
++disable_so_ath6kl_wmi_pstream_timeout_event_rx_fndecl_26100 ath6kl_wmi_pstream_timeout_event_rx fndecl 3 26100 NULL
++disable_so_fl0addr_fw_iq_cmd_26103 fl0addr fw_iq_cmd 0 26103 NULL
++disable_so___acpi_os_prepare_extended_sleep_vardecl_osl_c_26106 __acpi_os_prepare_extended_sleep vardecl_osl.c 2 26106 NULL
++disable_so_atomic_check_drm_mode_config_funcs_26109 atomic_check drm_mode_config_funcs 0 26109 NULL
++disable_so_st_mtime_stat_26114 st_mtime stat 0 26114 NULL
++disable_so_cx23885_set_freq_fndecl_26129 cx23885_set_freq fndecl 0 26129 NULL
++disable_so_img_ir_timings_convert_fndecl_26132 img_ir_timings_convert fndecl 3-4 26132 NULL
++disable_so_generic_update_time_fndecl_26133 generic_update_time fndecl 0 26133 NULL
++disable_so_cpu_to_virtio32_fndecl_26151 cpu_to_virtio32 fndecl 0-2 26151 NULL
++disable_so_dp_dma_addr_mic_device_26153 dp_dma_addr mic_device 0 26153 NULL
++disable_so_mask_clocksource_26154 mask clocksource 0 26154 NULL
++disable_so_bit_rate_hpi_msg_format_26167 bit_rate hpi_msg_format 0 26167 NULL
++disable_so_set_bitmap_file_fndecl_26171 set_bitmap_file fndecl 0-2 26171 NULL
++disable_so_show_fast_charge_timer_fndecl_26172 show_fast_charge_timer fndecl 0 26172 NULL
++disable_so_rt_spc_timelimit_qc_type_state_26186 rt_spc_timelimit qc_type_state 0 26186 NULL
++disable_so_HYPERVISOR_physdev_op_fndecl_26192 HYPERVISOR_physdev_op fndecl 0 26192 NULL
++disable_so_sci_br_interrupt_fndecl_26202 sci_br_interrupt fndecl 1 26202 NULL
++disable_so_bitmap_ipmac_do_list_fndecl_26203 bitmap_ipmac_do_list fndecl 4 26203 NULL
++disable_so_kxcjk1013_setup_any_motion_interrupt_fndecl_26214 kxcjk1013_setup_any_motion_interrupt fndecl 0 26214 NULL
++disable_so_io_request_phys_addr_megasas_cmd_fusion_26240 io_request_phys_addr megasas_cmd_fusion 0 26240 NULL
++disable_so_compute_unit_id_cpuinfo_x86_26241 compute_unit_id cpuinfo_x86 0 26241 NULL
++disable_so_dynpm_action_timeout_radeon_pm_26257 dynpm_action_timeout radeon_pm 0 26257 NULL
++disable_so_lookup_address_in_pgd_fndecl_26268 lookup_address_in_pgd fndecl 2 26268 NULL
++disable_so_addr_prism2_download_data_area_26275 addr prism2_download_data_area 0 26275 NULL
++disable_so_channels_snd_pcm_runtime_26297 channels snd_pcm_runtime 0 26297 NULL
++disable_so_iamthif_timer_mei_device_26298 iamthif_timer mei_device 0 26298 NULL nohasharray
++disable_so_simple_strtol_fndecl_26298 simple_strtol fndecl 0 26298 &disable_so_iamthif_timer_mei_device_26298
++disable_so_rose_set_mac_address_fndecl_26302 rose_set_mac_address fndecl 0 26302 NULL
++disable_so_sq_addr_lo_fcoe_kwqe_conn_offload1_26303 sq_addr_lo fcoe_kwqe_conn_offload1 0 26303 NULL
++disable_so_m88ds3103_sleep_fndecl_26315 m88ds3103_sleep fndecl 0 26315 NULL
++disable_so_ping_timeo_net_conf_26316 ping_timeo net_conf 0 26316 NULL nohasharray
++disable_so_parent_btrfs_delayed_tree_ref_26316 parent btrfs_delayed_tree_ref 0 26316 &disable_so_ping_timeo_net_conf_26316
++disable_so_esd_timeout_ms_tsc2005_platform_data_26333 esd_timeout_ms tsc2005_platform_data 0 26333 NULL
++disable_so_addr_change_member_26339 addr change_member 0 26339 NULL
++disable_so_mvs_show_interrupt_coalescing_fndecl_26346 mvs_show_interrupt_coalescing fndecl 0 26346 NULL
++disable_so_hashkey_raw_ip_vs_pe_26355 hashkey_raw ip_vs_pe 0 26355 NULL
++disable_so_skl_compute_linetime_wm_fndecl_26358 skl_compute_linetime_wm fndecl 0 26358 NULL
++disable_so_radeon_pmops_runtime_resume_fndecl_26363 radeon_pmops_runtime_resume fndecl 0 26363 NULL
++disable_so_op_remote_addr_rm_rdma_op_26364 op_remote_addr rm_rdma_op 0 26364 NULL
++disable_so_yura_hash_fndecl_26368 yura_hash fndecl 2 26368 NULL
++disable_so_blocksize_qce_ablkcipher_def_26370 blocksize qce_ablkcipher_def 0 26370 NULL
++disable_so_phys_efi_set_virtual_address_map_fndecl_26380 phys_efi_set_virtual_address_map fndecl 1-2 26380 NULL
++disable_so_sfi_lapic_addr_vardecl_sfi_c_26384 sfi_lapic_addr vardecl_sfi.c 0 26384 NULL
++disable_so_ebp_user_regs_struct32_26386 ebp user_regs_struct32 0 26386 NULL
++disable_so_total_time_enabled_perf_event_26387 total_time_enabled perf_event 0 26387 NULL nohasharray
++disable_so_ext4_inode_bitmap_csum_set_fndecl_26387 ext4_inode_bitmap_csum_set fndecl 2-5 26387 &disable_so_total_time_enabled_perf_event_26387
++disable_so_write32_b43_bus_dev_26402 write32 b43_bus_dev 3 26402 NULL
++disable_so_seq_default_timer_device_vardecl_26404 seq_default_timer_device vardecl 0 26404 NULL
++disable_so_address_xfs_dir2_leaf_entry_26411 address xfs_dir2_leaf_entry 0 26411 NULL
++disable_so_regmap_irq_get_virq_fndecl_26413 regmap_irq_get_virq fndecl 2-0 26413 NULL
++disable_so_msr_ia32_feature_control_nested_vmx_26415 msr_ia32_feature_control nested_vmx 0 26415 NULL
++disable_so_last_load_cpufreq_cooling_device_26418 last_load cpufreq_cooling_device 0 26418 NULL
++disable_so_blank_time_dce8_wm_params_26421 blank_time dce8_wm_params 0 26421 NULL
++disable_so_start_time_rsxx_bio_meta_26424 start_time rsxx_bio_meta 0 26424 NULL
++disable_so_ima_calc_file_hash_atfm_fndecl_26437 ima_calc_file_hash_atfm fndecl 0 26437 NULL
++disable_so_range_to_mtrr_fndecl_26447 range_to_mtrr fndecl 2-3 26447 NULL
++disable_so_sm_addr_ns_dev_26449 sm_addr ns_dev 0 26449 NULL
++disable_so_uartlite_outle32_fndecl_26455 uartlite_outle32 fndecl 1 26455 NULL
++disable_so___arch_hweight64_fndecl_26456 __arch_hweight64 fndecl 0-1 26456 NULL nohasharray
++disable_so_rsa_parse_key_fndecl_26456 rsa_parse_key fndecl 3 26456 &disable_so___arch_hweight64_fndecl_26456
++disable_so_data_addr_ide_io_ports_26461 data_addr ide_io_ports 0 26461 NULL
++disable_so_mce_adjust_timer_vardecl_mce_c_26462 mce_adjust_timer vardecl_mce.c 0-1 26462 NULL
++disable_so_tv_sec_ceph_timespec_26463 tv_sec ceph_timespec 0 26463 NULL
++disable_so_val_v4l2_dbg_register_26470 val v4l2_dbg_register 0 26470 NULL
++disable_so_jiffies_read_fndecl_26480 jiffies_read fndecl 0 26480 NULL
++disable_so_compat_sys_clock_settime_fndecl_26491 compat_sys_clock_settime fndecl 1 26491 NULL
++disable_so_i2c_addr_tda827x_priv_26495 i2c_addr tda827x_priv 0 26495 NULL
++disable_so_snd_trident_interrupt_fndecl_26498 snd_trident_interrupt fndecl 1 26498 NULL
++disable_so_mce_flush_rx_buffer_fndecl_26515 mce_flush_rx_buffer fndecl 2 26515 NULL
++disable_so_ufshcd_runtime_suspend_fndecl_26519 ufshcd_runtime_suspend fndecl 0 26519 NULL
++disable_so___down_timeout_fndecl_26530 __down_timeout fndecl 2-0 26530 NULL nohasharray
++disable_so_rdma_addr_find_dmac_by_grh_fndecl_26530 rdma_addr_find_dmac_by_grh fndecl 0 26530 &disable_so___down_timeout_fndecl_26530
++disable_so_ppll_ref_div_radeon_regs_26531 ppll_ref_div radeon_regs 0 26531 NULL
++disable_so_fs_overflowuid_vardecl_26541 fs_overflowuid vardecl 0 26541 NULL
++disable_so_ceph_str_hash_rjenkins_fndecl_26542 ceph_str_hash_rjenkins fndecl 0-2 26542 NULL
++disable_so_threshold_low_nes_hw_tune_timer_26544 threshold_low nes_hw_tune_timer 0 26544 NULL
++disable_so_addressPXD_fndecl_26546 addressPXD fndecl 0 26546 NULL
++disable_so_get_cpu_idle_time_us_fndecl_26547 get_cpu_idle_time_us fndecl 0-1 26547 NULL
++disable_so_x86_pmu_event_addr_fndecl_26551 x86_pmu_event_addr fndecl 0-1 26551 NULL
++disable_so_da9055_rtc_set_time_fndecl_26553 da9055_rtc_set_time fndecl 0 26553 NULL nohasharray
++disable_so_address_hi_ips_enh_sglist_26553 address_hi ips_enh_sglist 0 26553 &disable_so_da9055_rtc_set_time_fndecl_26553
++disable_so_cpufreq_quick_get_fndecl_26559 cpufreq_quick_get fndecl 0-1 26559 NULL nohasharray
++disable_so_ieee80211_aes_gcm_encrypt_fndecl_26559 ieee80211_aes_gcm_encrypt fndecl 5 26559 &disable_so_cpufreq_quick_get_fndecl_26559
++disable_so_bug17190_timer_qt202x_phy_data_26561 bug17190_timer qt202x_phy_data 0 26561 NULL nohasharray
++disable_so_efx_farch_filter_hash_fndecl_26561 efx_farch_filter_hash fndecl 0-1 26561 &disable_so_bug17190_timer_qt202x_phy_data_26561
++disable_so_timestamp_beacon_format_26566 timestamp beacon_format 0 26566 NULL
++disable_so_postscale__pll_div_26568 postscale _pll_div 0 26568 NULL
++disable_so_next_nat_addr_fndecl_26576 next_nat_addr fndecl 0-2 26576 NULL
++disable_so_shdwreg_addr_hi_addr_ctrl_blk_26592 shdwreg_addr_hi addr_ctrl_blk 0 26592 NULL
++disable_so_xfs_btree_insrec_fndecl_26593 xfs_btree_insrec fndecl 0 26593 NULL
++disable_so_sci_tx_interrupt_fndecl_26595 sci_tx_interrupt fndecl 1 26595 NULL nohasharray
++disable_so_add_delayed_ref_head_fndecl_26595 add_delayed_ref_head fndecl 4-5 26595 &disable_so_sci_tx_interrupt_fndecl_26595
++disable_so_tegra_wdt_set_timeout_fndecl_26597 tegra_wdt_set_timeout fndecl 2 26597 NULL
++disable_so_base_addr_dmi_ipmi_data_26600 base_addr dmi_ipmi_data 0 26600 NULL nohasharray
++disable_so_s_audio_sampling_freq_cx2341x_handler_ops_26600 s_audio_sampling_freq cx2341x_handler_ops 0-2 26600 &disable_so_base_addr_dmi_ipmi_data_26600
++disable_so_pll_post_div_radeon_crtc_26608 pll_post_div radeon_crtc 0 26608 NULL
++disable_so_sdio_enable_4bit_bus_fndecl_26617 sdio_enable_4bit_bus fndecl 0 26617 NULL
++disable_so_jiffies_to_usecs_fndecl_26625 jiffies_to_usecs fndecl 0-1 26625 NULL
++disable_so_i_mtime_nsec_ocfs2_dinode_26627 i_mtime_nsec ocfs2_dinode 0 26627 NULL
++disable_so_set_var_mtrr_fndecl_26628 set_var_mtrr fndecl 2-3 26628 NULL
++disable_so_usec_2_cycles_fndecl_26641 usec_2_cycles fndecl 0-1 26641 NULL
++disable_so_inq_data_baddr_pmcraid_instance_26646 inq_data_baddr pmcraid_instance 0 26646 NULL
++disable_so_re_timeout_vhci_hcd_26649 re_timeout vhci_hcd 0 26649 NULL
++disable_so_timer_buf_periods_pcxhr_stream_26650 timer_buf_periods pcxhr_stream 0 26650 NULL
++disable_so_lease_break_time_vardecl_26659 lease_break_time vardecl 0 26659 NULL
++disable_so_first_frag_time_libipw_frag_entry_26673 first_frag_time libipw_frag_entry 0 26673 NULL
++disable_so_send_timer_event_fndecl_26675 send_timer_event fndecl 0 26675 NULL
++disable_so_timestamp_lo_mlx4_ts_cqe_26678 timestamp_lo mlx4_ts_cqe 0 26678 NULL nohasharray
++disable_so_twl_rtc_read_time_fndecl_26678 twl_rtc_read_time fndecl 0 26678 &disable_so_timestamp_lo_mlx4_ts_cqe_26678
++disable_so_prism54_get_freq_fndecl_26679 prism54_get_freq fndecl 0 26679 NULL
++disable_so_signal_quality_wireless_stats_26683 signal_quality wireless_stats 0 26683 NULL
++disable_so_serial8250_request_rsa_resource_fndecl_26695 serial8250_request_rsa_resource fndecl 0 26695 NULL
++disable_so_crypto_ahash_init_fndecl_26697 crypto_ahash_init fndecl 0 26697 NULL
++disable_so_i8xx_clock_fndecl_26699 i8xx_clock fndecl 1 26699 NULL
++disable_so_crypto_alg_extsize_fndecl_26720 crypto_alg_extsize fndecl 0 26720 NULL
++disable_so_get_iowait_time_fndecl_26723 get_iowait_time fndecl 1-0 26723 NULL
++disable_so_wl1271_acx_init_rx_interrupt_fndecl_26727 wl1271_acx_init_rx_interrupt fndecl 0 26727 NULL
++disable_so_check_intr_schedule_fndecl_26728 check_intr_schedule fndecl 2-3 26728 NULL
++disable_so_cobalt_s_dv_timings_fndecl_26730 cobalt_s_dv_timings fndecl 0 26730 NULL
++disable_so_resolution_snd_timer_instance_26747 resolution snd_timer_instance 0 26747 NULL
++disable_so_gf100_vm_addr_fndecl_26753 gf100_vm_addr fndecl 0-2-3-4 26753 NULL
++disable_so_nilfs_btree_convert_and_insert_fndecl_26755 nilfs_btree_convert_and_insert fndecl 0-2-6 26755 NULL
++disable_so_xlog_find_verify_cycle_fndecl_26760 xlog_find_verify_cycle fndecl 0-2-3 26760 NULL
++disable_so_base_address_kvm_lapic_26767 base_address kvm_lapic 0 26767 NULL
++disable_so_unmap_page_dma_map_ops_26774 unmap_page dma_map_ops 2-3 26774 NULL nohasharray
++disable_so_modcode_stv0900_signal_info_26774 modcode stv0900_signal_info 0 26774 &disable_so_unmap_page_dma_map_ops_26774
++disable_so_mthca_cmd_wait_fndecl_26776 mthca_cmd_wait fndecl 0-2 26776 NULL nohasharray
++disable_so_tun2_maddress_stv0900_init_params_26776 tun2_maddress stv0900_init_params 0 26776 &disable_so_mthca_cmd_wait_fndecl_26776
++disable_so_simple_sleep_fndecl_26802 simple_sleep fndecl 0 26802 NULL
++disable_so_tv_sec_timestruc_t_26805 tv_sec timestruc_t 0 26805 NULL
++disable_so_get_vblank_timestamp_drm_driver_26807 get_vblank_timestamp drm_driver 2 26807 NULL
++disable_so_dsbr100_setfreq_fndecl_26808 dsbr100_setfreq fndecl 0-2 26808 NULL
++disable_so_base_addr_unaligned_vnic_dev_ring_26813 base_addr_unaligned vnic_dev_ring 0 26813 NULL
++disable_so_addr_ib_mw_bind_info_26826 addr ib_mw_bind_info 0 26826 NULL
++disable_so_cpuidle_add_interface_fndecl_26838 cpuidle_add_interface fndecl 0 26838 NULL nohasharray
++disable_so_addr4_resolve_fndecl_26838 addr4_resolve fndecl 0 26838 &disable_so_cpuidle_add_interface_fndecl_26838
++disable_so_rdmsrl_safe_on_cpu_fndecl_26843 rdmsrl_safe_on_cpu fndecl 0-1 26843 NULL
++disable_so_random_read_fndecl_26852 random_read fndecl 0-3 26852 NULL
++disable_so_reachable_time_ra_msg_26853 reachable_time ra_msg 0 26853 NULL
++disable_so_mutex_lock_interruptible_nested_fndecl_26858 mutex_lock_interruptible_nested fndecl 0 26858 NULL
++disable_so_erase_time_max_flchip_26863 erase_time_max flchip 0 26863 NULL
++disable_so_cpufreq_frequency_table_get_index_fndecl_26865 cpufreq_frequency_table_get_index fndecl 2 26865 NULL
++disable_so_efficient_freq_intel_gen6_power_mgmt_26867 efficient_freq intel_gen6_power_mgmt 0 26867 NULL
++disable_so_sysctl_sched_rt_runtime_vardecl_26872 sysctl_sched_rt_runtime vardecl 0 26872 NULL
++disable_so_time_ncp_cache_head_26879 time ncp_cache_head 0 26879 NULL
++disable_so_qdisc_class_hash_free_fndecl_26882 qdisc_class_hash_free fndecl 2 26882 NULL
++disable_so_cpu_cpuidle_device_26895 cpu cpuidle_device 0 26895 NULL
++disable_so_mod_phy_reg_fndecl_26899 mod_phy_reg fndecl 2-3-4 26899 NULL
++disable_so_vb2_dma_contig_plane_dma_addr_fndecl_26900 vb2_dma_contig_plane_dma_addr fndecl 0 26900 NULL
++disable_so_btree_split_beneath_fndecl_26901 btree_split_beneath fndecl 0 26901 NULL
++disable_so_timestamp_desc_tbl_t_26905 timestamp desc_tbl_t 0 26905 NULL
++disable_so_addr_bit_set_fndecl_26910 addr_bit_set fndecl 0-2 26910 NULL nohasharray
++disable_so_snd_soc_write_fndecl_26910 snd_soc_write fndecl 0-2-3 26910 &disable_so_addr_bit_set_fndecl_26910 nohasharray
++disable_so_timing_legacy_data_26910 timing legacy_data 0 26910 &disable_so_snd_soc_write_fndecl_26910
++disable_so_nsleep_k_clock_26913 nsleep k_clock 1 26913 NULL
++disable_so_sys_stime_fndecl_26915 sys_stime fndecl 0 26915 NULL
++disable_so_sjw_max_can_bittiming_const_26917 sjw_max can_bittiming_const 0 26917 NULL nohasharray
++disable_so_cbc_aes_encrypt_fndecl_26917 cbc_aes_encrypt fndecl 0-4 26917 &disable_so_sjw_max_can_bittiming_const_26917
++disable_so_get_debugctlmsr_fndecl_26918 get_debugctlmsr fndecl 0 26918 NULL
++disable_so_xfs_btree_delrec_fndecl_26919 xfs_btree_delrec fndecl 0 26919 NULL
++disable_so_hr222_sub_set_clock_fndecl_26925 hr222_sub_set_clock fndecl 2-0 26925 NULL
++disable_so_dd_desc_paddr_ath_descdma_26927 dd_desc_paddr ath_descdma 0 26927 NULL
++disable_so_shift_clock_event_device_26934 shift clock_event_device 0 26934 NULL
++disable_so_rx_bseq_addr_bnx2_rx_ring_info_26936 rx_bseq_addr bnx2_rx_ring_info 0 26936 NULL
++disable_so_brcms_c_calc_ba_time_fndecl_26948 brcms_c_calc_ba_time fndecl 0-2 26948 NULL
++disable_so_rcv_buffer_time_stamp_lpfc_vport_26952 rcv_buffer_time_stamp lpfc_vport 0 26952 NULL
++disable_so_min_post_div_radeon_pll_26958 min_post_div radeon_pll 0 26958 NULL
++disable_so_mcryptd_hash_finup_enqueue_fndecl_26959 mcryptd_hash_finup_enqueue fndecl 0 26959 NULL
++disable_so_ip_TransportAddress_ipAddress_26969 ip TransportAddress_ipAddress 0 26969 NULL
++disable_so_addr_fritzcard_26973 addr fritzcard 0 26973 NULL nohasharray
++disable_so_ata_read_native_max_address_fndecl_26973 ata_read_native_max_address fndecl 0 26973 &disable_so_addr_fritzcard_26973
++disable_so_ktime_get_real_seconds_fndecl_26974 ktime_get_real_seconds fndecl 0 26974 NULL nohasharray
++disable_so_i_crtime_extra_ext4_inode_26974 i_crtime_extra ext4_inode 0 26974 &disable_so_ktime_get_real_seconds_fndecl_26974
++disable_so_kern_addr_valid_fndecl_26978 kern_addr_valid fndecl 1 26978 NULL
++disable_so_rtimer_val_vxge_hw_tim_intr_config_26991 rtimer_val vxge_hw_tim_intr_config 0 26991 NULL
++disable_so_timestamp_agere_ext_scan_info_26993 timestamp agere_ext_scan_info 0 26993 NULL
++disable_so_ps_ring_physaddr_rx_ring_26997 ps_ring_physaddr rx_ring 0 26997 NULL
++disable_so_set_bit_in_list_bitmap_fndecl_26998 set_bit_in_list_bitmap fndecl 2 26998 NULL
++disable_so_gid_index_mlx4_eth_av_27005 gid_index mlx4_eth_av 0 27005 NULL
++disable_so_sender_euid_binder_transaction_data_27019 sender_euid binder_transaction_data 0 27019 NULL
++disable_so_sctp_setsockopt_peer_primary_addr_fndecl_27027 sctp_setsockopt_peer_primary_addr fndecl 3-0 27027 NULL
++disable_so_sysctl_x25_ack_holdback_timeout_vardecl_27031 sysctl_x25_ack_holdback_timeout vardecl 0 27031 NULL
++disable_so_blkcipher_next_copy_fndecl_27033 blkcipher_next_copy fndecl 0 27033 NULL
++disable_so_cg_spll_func_cntl_4_si_clock_registers_27036 cg_spll_func_cntl_4 si_clock_registers 0 27036 NULL
++disable_so_mthca_buddy_alloc_fndecl_27037 mthca_buddy_alloc fndecl 2-0 27037 NULL
++disable_so_seq_tcp_skb_cb_27054 seq tcp_skb_cb 0 27054 NULL
++disable_so_s_bitmap_maxbytes_ext4_sb_info_27055 s_bitmap_maxbytes ext4_sb_info 0 27055 NULL
++disable_so_addr_off_bfa_fru_s_27061 addr_off bfa_fru_s 0 27061 NULL
++disable_so_dataserver_timeo_vardecl_filelayoutdev_c_27062 dataserver_timeo vardecl_filelayoutdev.c 0 27062 NULL
++disable_so_demod_address_stv0900_config_27065 demod_address stv0900_config 0 27065 NULL
++disable_so_kvm_apic_match_logical_addr_fndecl_27077 kvm_apic_match_logical_addr fndecl 2 27077 NULL
++disable_so_expires_cpu_itimer_27081 expires cpu_itimer 0 27081 NULL nohasharray
++disable_so_request_any_context_irq_fndecl_27081 request_any_context_irq fndecl 0-1 27081 &disable_so_expires_cpu_itimer_27081
++disable_so_timeout_vardecl_kempld_wdt_c_27085 timeout vardecl_kempld_wdt.c 0 27085 NULL
++disable_so_buffer_addr_rx_free_desc_27090 buffer_addr rx_free_desc 0 27090 NULL
++disable_so_vx_set_clock_fndecl_27093 vx_set_clock fndecl 2 27093 NULL
++disable_so_br_set_forward_delay_fndecl_27097 br_set_forward_delay fndecl 0 27097 NULL
++disable_so_hash_net4_expire_fndecl_27108 hash_net4_expire fndecl 4 27108 NULL
++disable_so_stv0900_get_freq_auto_fndecl_27111 stv0900_get_freq_auto fndecl 0 27111 NULL
++disable_so_wait_for_common_fndecl_27112 wait_for_common fndecl 3 27112 NULL
++disable_so_nfs4_schedule_migration_recovery_fndecl_27114 nfs4_schedule_migration_recovery fndecl 0 27114 NULL
++disable_so_d_rt_spc_timer_qc_dqblk_27117 d_rt_spc_timer qc_dqblk 0 27117 NULL
++disable_so_btree_insert64_fndecl_27118 btree_insert64 fndecl 2-4 27118 NULL
++disable_so_addrconf_mod_dad_work_fndecl_27128 addrconf_mod_dad_work fndecl 2 27128 NULL
++disable_so_coalescing_timeo_bna_rx_config_27130 coalescing_timeo bna_rx_config 0 27130 NULL nohasharray
++disable_so_addr_page_to_node_27130 addr page_to_node 0 27130 &disable_so_coalescing_timeo_bna_rx_config_27130
++disable_so_st_atime_nsec_p9_stat_dotl_27131 st_atime_nsec p9_stat_dotl 0 27131 NULL
++disable_so_myri10ge_intr_coal_delay_vardecl_myri10ge_c_27141 myri10ge_intr_coal_delay vardecl_myri10ge.c 0 27141 NULL
++disable_so_hash_shift_deflate_state_27146 hash_shift deflate_state 0 27146 NULL
++disable_so_palmas_rtc_read_time_fndecl_27149 palmas_rtc_read_time fndecl 0 27149 NULL
++disable_so___atomic_add_ifless_fndecl_27155 __atomic_add_ifless fndecl 3 27155 NULL
++disable_so_iscsi_conn_get_addr_param_fndecl_27170 iscsi_conn_get_addr_param fndecl 0 27170 NULL
++disable_so___clocksource_update_freq_hz_fndecl_27171 __clocksource_update_freq_hz fndecl 2 27171 NULL
++disable_so_id_sst_module_runtime_27177 id sst_module_runtime 0 27177 NULL
++disable_so_crypto_xcbc_digest_setkey_fndecl_27185 crypto_xcbc_digest_setkey fndecl 0-3 27185 NULL
++disable_so_enic_set_mac_addr_fndecl_27188 enic_set_mac_addr fndecl 0 27188 NULL
++disable_so_expires_timer_list_27202 expires timer_list 0 27202 NULL
++disable_so_compute_subtree_last_fndecl_27204 compute_subtree_last fndecl 0 27204 NULL
++disable_so_qla4_82xx_decode_crb_addr_fndecl_27209 qla4_82xx_decode_crb_addr fndecl 0-1 27209 NULL
++disable_so_debugtimer_vardecl_floppy_c_27217 debugtimer vardecl_floppy.c 0 27217 NULL
++disable_so_time_offset_perf_event_mmap_page_27223 time_offset perf_event_mmap_page 0 27223 NULL
++disable_so___ufshcd_setup_clocks_fndecl_27227 __ufshcd_setup_clocks fndecl 0 27227 NULL
++disable_so_ccallback_snd_timer_instance_27233 ccallback snd_timer_instance 4 27233 NULL
++disable_so_cpufreq_p4_get_fndecl_27237 cpufreq_p4_get fndecl 1 27237 NULL
++disable_so_bd_phy_addr_wcn36xx_dxe_ctl_27253 bd_phy_addr wcn36xx_dxe_ctl 0 27253 NULL
++disable_so___xfrm_dst_hash_fndecl_27263 __xfrm_dst_hash fndecl 0-3-4-5 27263 NULL
++disable_so_mcp795_read_time_fndecl_27267 mcp795_read_time fndecl 0 27267 NULL
++disable_so_base_mtrr_sentry_27271 base mtrr_sentry 0 27271 NULL
++disable_so_proc_do_large_bitmap_fndecl_27272 proc_do_large_bitmap fndecl 0 27272 NULL
++disable_so_stv0367cab_get_adc_freq_fndecl_27274 stv0367cab_get_adc_freq fndecl 0-2 27274 NULL
++disable_so_gpadc_page_addr_pm80x_subchip_27284 gpadc_page_addr pm80x_subchip 0 27284 NULL
++disable_so_udf_count_free_bitmap_fndecl_27294 udf_count_free_bitmap fndecl 0 27294 NULL
++disable_so_timestamp_ieee80211_channel_switch_27297 timestamp ieee80211_channel_switch 0 27297 NULL
++disable_so_fd_flush_timestamp_i40e_pf_27298 fd_flush_timestamp i40e_pf 0 27298 NULL nohasharray
++disable_so_snd_rme96_info_clockmode_control_fndecl_27298 snd_rme96_info_clockmode_control fndecl 0 27298 &disable_so_fd_flush_timestamp_i40e_pf_27298
++disable_so_past_time_fndecl_27299 past_time fndecl 1 27299 NULL
++disable_so_status_hci_rp_read_bd_addr_27307 status hci_rp_read_bd_addr 0 27307 NULL
++disable_so_demod_address_lgs8gxx_config_27311 demod_address lgs8gxx_config 0 27311 NULL
++disable_so_clock_offset_mlx4_fw_27318 clock_offset mlx4_fw 0 27318 NULL
++disable_so_native_sched_clock_fndecl_27322 native_sched_clock fndecl 0 27322 NULL
++disable_so_preferred_time_prefix_cacheinfo_27329 preferred_time prefix_cacheinfo 0 27329 NULL nohasharray
++disable_so_srq_get_mtt_addr_fndecl_27329 srq_get_mtt_addr fndecl 0 27329 &disable_so_preferred_time_prefix_cacheinfo_27329
++disable_so_di_pt_regs_27336 di pt_regs 0 27336 NULL
++disable_so_buf1_addr_xgmac_dma_desc_27344 buf1_addr xgmac_dma_desc 0 27344 NULL
++disable_so_timer_mask_ath_gen_timer_table_27351 timer_mask ath_gen_timer_table 0 27351 NULL
++disable_so_max_frags_iwl_time_event_cmd_27357 max_frags iwl_time_event_cmd 0 27357 NULL nohasharray
++disable_so_wd_last_clocksource_27357 wd_last clocksource 0 27357 &disable_so_max_frags_iwl_time_event_cmd_27357
++disable_so_sermouse_interrupt_fndecl_27361 sermouse_interrupt fndecl 2 27361 NULL
++disable_so_tm_mday_rtc_time_27369 tm_mday rtc_time 0 27369 NULL
++disable_so_opad_count_ccp_sha_ctx_27374 opad_count ccp_sha_ctx 0 27374 NULL
++disable_so_keyed_hash_fndecl_27379 keyed_hash fndecl 0-2 27379 NULL
++disable_so_addr_d11init_27383 addr d11init 0 27383 NULL
++disable_so_test_bit_le_fndecl_27392 test_bit_le fndecl 1 27392 NULL
++disable_so_i2c_bit_add_bus_fndecl_27395 i2c_bit_add_bus fndecl 0 27395 NULL
++disable_so_xhci_calculate_u2_timeout_fndecl_27406 xhci_calculate_u2_timeout fndecl 0 27406 NULL
++disable_so_sym_getclock_fndecl_27414 sym_getclock fndecl 2 27414 NULL
++disable_so_pat_x_mtrr_type_fndecl_27415 pat_x_mtrr_type fndecl 1-2 27415 NULL
++disable_so_val_addr_core1_nphy_rf_control_override_rev7_27422 val_addr_core1 nphy_rf_control_override_rev7 0 27422 NULL nohasharray
++disable_so_qce_ahash_hmac_setkey_fndecl_27422 qce_ahash_hmac_setkey fndecl 3 27422 &disable_so_val_addr_core1_nphy_rf_control_override_rev7_27422
++disable_so_ratio_o_rj54n1_clock_div_27431 ratio_o rj54n1_clock_div 0 27431 NULL nohasharray
++disable_so_pr_uid_elf_prpsinfo_27431 pr_uid elf_prpsinfo 0 27431 &disable_so_ratio_o_rj54n1_clock_div_27431
++disable_so_nla_get_be64_fndecl_27433 nla_get_be64 fndecl 0 27433 NULL
++disable_so_encryptor_fndecl_27450 encryptor fndecl 0 27450 NULL
++disable_so_hsync_offset_lo_oaktrail_timing_info_27455 hsync_offset_lo oaktrail_timing_info 0 27455 NULL
++disable_so_store_scaling_max_freq_fndecl_27459 store_scaling_max_freq fndecl 0-3 27459 NULL
++disable_so_addrLow_lpfc_pde7_27462 addrLow lpfc_pde7 0 27462 NULL
++disable_so_ql_get_mac_addr_reg_fndecl_27466 ql_get_mac_addr_reg fndecl 0 27466 NULL
++disable_so_r600_engine_clock_entry_set_feedback_divider_fndecl_27467 r600_engine_clock_entry_set_feedback_divider fndecl 3 27467 NULL
++disable_so_queue_timestamp_cw1200_queue_item_27470 queue_timestamp cw1200_queue_item 0 27470 NULL nohasharray
++disable_so_timing_event_fndecl_27470 timing_event fndecl 0 27470 &disable_so_queue_timestamp_cw1200_queue_item_27470
++disable_so_seg0_blkaddr_f2fs_sm_info_27483 seg0_blkaddr f2fs_sm_info 0 27483 NULL nohasharray
++disable_so_shash_async_init_fndecl_27483 shash_async_init fndecl 0 27483 &disable_so_seg0_blkaddr_f2fs_sm_info_27483
++disable_so_esas2r_buffered_ioctl_addr_vardecl_27487 esas2r_buffered_ioctl_addr vardecl 0 27487 NULL
++disable_so_buffer_write_time_max_flchip_27491 buffer_write_time_max flchip 0 27491 NULL
++disable_so_reg_data_clock_eeprom_93cx6_27496 reg_data_clock eeprom_93cx6 0 27496 NULL
++disable_so_ieee80211_if_read_min_discovery_timeout_fndecl_27497 ieee80211_if_read_min_discovery_timeout fndecl 3-0 27497 NULL nohasharray
++disable_so_address_pmcraid_ioadl_desc_27497 address pmcraid_ioadl_desc 0 27497 &disable_so_ieee80211_if_read_min_discovery_timeout_fndecl_27497
++disable_so_host_perf_guest_switch_msr_27498 host perf_guest_switch_msr 0 27498 NULL
++disable_so_dummy_buffer_addr_hi_iscsi_kwqe_init1_27499 dummy_buffer_addr_hi iscsi_kwqe_init1 0 27499 NULL
++disable_so__rtl88e_phy_calculate_bit_shift_fndecl_27500 _rtl88e_phy_calculate_bit_shift fndecl 0-1 27500 NULL
++disable_so_mceusb_dev_printdata_fndecl_27502 mceusb_dev_printdata fndecl 4 27502 NULL
++disable_so_sk_sndtimeo_sock_27506 sk_sndtimeo sock 0 27506 NULL
++disable_so_oprofile_timer_init_fndecl_27514 oprofile_timer_init fndecl 0 27514 NULL
++disable_so_st_atime___old_kernel_stat_27516 st_atime __old_kernel_stat 0 27516 NULL
++disable_so_hpi_sample_clock_set_local_rate_lock_fndecl_27517 hpi_sample_clock_set_local_rate_lock fndecl 1-0 27517 NULL
++disable_so_addr_perf_sample_data_27520 addr perf_sample_data 0 27520 NULL
++disable_so_curr_dbg_uidn_show_fndecl_27524 curr_dbg_uidn_show fndecl 3 27524 NULL
++disable_so_crypto_register_template_fndecl_27525 crypto_register_template fndecl 0 27525 NULL
++disable_so_process_tgid_sid_proc_event_27544 process_tgid sid_proc_event 0 27544 NULL
++disable_so_fandiv2_nct6775_data_27558 fandiv2 nct6775_data 0 27558 NULL
++disable_so_delay_time_bridge_mcast_other_query_27560 delay_time bridge_mcast_other_query 0 27560 NULL
++disable_so_addr_hi_acard_sg_27563 addr_hi acard_sg 0 27563 NULL
++disable_so_address_tlan_buffer_27580 address tlan_buffer 0 27580 NULL
++disable_so_rdma_addr_find_smac_by_sgid_fndecl_27591 rdma_addr_find_smac_by_sgid fndecl 0 27591 NULL
++disable_so_addrconf_add_linklocal_fndecl_27592 addrconf_add_linklocal fndecl 3 27592 NULL
++disable_so_fb_delay_gt215_clk_info_27603 fb_delay gt215_clk_info 0 27603 NULL
++disable_so_ss_nongc_ctime_nilfs_sustat_27619 ss_nongc_ctime nilfs_sustat 0 27619 NULL
++disable_so_shash_ahash_mcryptd_final_fndecl_27624 shash_ahash_mcryptd_final fndecl 0 27624 NULL
++disable_so_iwl_set_hw_address_family_8000_fndecl_27628 iwl_set_hw_address_family_8000 fndecl 6-7 27628 NULL
++disable_so_dm_delay_init_fndecl_27635 dm_delay_init fndecl 0 27635 NULL
++disable_so_seq_tcphdr_27638 seq tcphdr 0 27638 NULL
++disable_so_cbq_undelay_prio_fndecl_27641 cbq_undelay_prio fndecl 0-3 27641 NULL
++disable_so_sst_module_runtime_save_fndecl_27642 sst_module_runtime_save fndecl 0 27642 NULL
++disable_so_crypto_pcbc_module_init_fndecl_27648 crypto_pcbc_module_init fndecl 0 27648 NULL
++disable_so_freq_prev_cpu_data_t_27649 freq_prev cpu_data_t 0 27649 NULL
++disable_so_status_mce_27652 status mce 0 27652 NULL
++disable_so_buff_addr_ixgb_rx_desc_27660 buff_addr ixgb_rx_desc 0 27660 NULL
++disable_so_phy_addr_mii_phy_27664 phy_addr mii_phy 0 27664 NULL
++disable_so_demod_address_lgdt330x_config_27668 demod_address lgdt330x_config 0 27668 NULL
++disable_so__next_div_fndecl_27679 _next_div fndecl 0-2 27679 NULL
++disable_so_rtc_timer_enqueue_fndecl_27693 rtc_timer_enqueue fndecl 0 27693 NULL nohasharray
++disable_so_addr_phy_device_27693 addr phy_device 0 27693 &disable_so_rtc_timer_enqueue_fndecl_27693
++disable_so_timer_multiplier_tg3_27703 timer_multiplier tg3 0 27703 NULL
++disable_so_address_acpi_table_madt_27705 address acpi_table_madt 0 27705 NULL
++disable_so_saddr_flowi4_27709 saddr flowi4 0 27709 NULL
++disable_so_acpi_tb_select_address_fndecl_27710 acpi_tb_select_address fndecl 0-2-3 27710 NULL
++disable_so_wl18xx_acx_ap_sleep_fndecl_27719 wl18xx_acx_ap_sleep fndecl 0 27719 NULL
++disable_so_sleep_start_sched_statistics_27721 sleep_start sched_statistics 0 27721 NULL nohasharray
++disable_so_inj_addr_set_fndecl_27721 inj_addr_set fndecl 2 27721 &disable_so_sleep_start_sched_statistics_27721
++disable_so_addr_fw_page_27728 addr fw_page 0 27728 NULL
++disable_so_time_stamp_e1000_tx_buffer_27729 time_stamp e1000_tx_buffer 0 27729 NULL
++disable_so_ata_internal_cmd_timed_out_fndecl_27734 ata_internal_cmd_timed_out fndecl 2 27734 NULL
++disable_so_sleep_ide_drive_s_27745 sleep ide_drive_s 0 27745 NULL
++disable_so_platform_clock_control_fndecl_27752 platform_clock_control fndecl 0 27752 NULL
++disable_so_tick_timex_27769 tick timex 0 27769 NULL
++disable_so__is_best_div_fndecl_27772 _is_best_div fndecl 1-2-3 27772 NULL
++disable_so_update_cpumask_fndecl_27776 update_cpumask fndecl 0 27776 NULL
++disable_so_mxser_get_msr_fndecl_27778 mxser_get_msr fndecl 3 27778 NULL
++disable_so_btree_insert32_fndecl_27786 btree_insert32 fndecl 2-4 27786 NULL
++disable_so_ccp_do_sha_update_fndecl_27787 ccp_do_sha_update fndecl 0-2 27787 NULL
++disable_so_complete_crypto_gcm_ghash_ctx_27789 complete crypto_gcm_ghash_ctx 0 27789 NULL
++disable_so_cryptoloop_transfer_fndecl_27794 cryptoloop_transfer fndecl 0-4-6-7 27794 NULL
++disable_so_max_reconnect_timeout_sbp_tport_27795 max_reconnect_timeout sbp_tport 0 27795 NULL
++disable_so_drxj_dap_write_reg16_fndecl_27796 drxj_dap_write_reg16 fndecl 0-3 27796 NULL
++disable_so_i_crtime_ext4_inode_27803 i_crtime ext4_inode 0 27803 NULL
++disable_so_bridge_ctl_pci_bus_27806 bridge_ctl pci_bus 0 27806 NULL
++disable_so_sas_unregister_devs_sas_addr_fndecl_27808 sas_unregister_devs_sas_addr fndecl 2 27808 NULL
++disable_so_move_to_next_stateful_cpuid_entry_fndecl_27817 move_to_next_stateful_cpuid_entry fndecl 0-2 27817 NULL
++disable_so_delay_pktgen_dev_27827 delay pktgen_dev 0 27827 NULL
++disable_so_ipath_physaddr_ipath_devdata_27830 ipath_physaddr ipath_devdata 0 27830 NULL
++disable_so_rh_timer_musb_27835 rh_timer musb 0 27835 NULL
++disable_so_spinfo_cwnd_sctp_paddrinfo_27841 spinfo_cwnd sctp_paddrinfo 0 27841 NULL
++disable_so_prism54_set_freq_fndecl_27858 prism54_set_freq fndecl 0 27858 NULL
++disable_so_host_addr_mei_msg_hdr_27859 host_addr mei_msg_hdr 0 27859 NULL
++disable_so_xr17v35x_get_divisor_fndecl_27860 xr17v35x_get_divisor fndecl 0-2 27860 NULL
++disable_so_run_delayed_data_ref_fndecl_27870 run_delayed_data_ref fndecl 0 27870 NULL
++disable_so_args_addr_pmu_nvbios_pmuR_27871 args_addr_pmu nvbios_pmuR 0 27871 NULL
++disable_so_nr_of_multicastmacaddr_lbtf_private_27872 nr_of_multicastmacaddr lbtf_private 0 27872 NULL
++disable_so_cfg80211_mgd_wext_siwfreq_fndecl_27873 cfg80211_mgd_wext_siwfreq fndecl 0 27873 NULL
++disable_so_get_ftdi_divisor_fndecl_27883 get_ftdi_divisor fndecl 0 27883 NULL nohasharray
++disable_so_sense_buf_phys_addr_lo_megasas_pthru_frame_27883 sense_buf_phys_addr_lo megasas_pthru_frame 0 27883 &disable_so_get_ftdi_divisor_fndecl_27883
++disable_so_acpi_gbl_sleep_type_a_vardecl_27893 acpi_gbl_sleep_type_a vardecl 0 27893 NULL
++disable_so_addr_ahc_dma_seg_27896 addr ahc_dma_seg 0 27896 NULL
++disable_so_est_timer_fndecl_27898 est_timer fndecl 1 27898 NULL
++disable_so_phonet_address_add_fndecl_27900 phonet_address_add fndecl 0-2 27900 NULL
++disable_so_uhci_sprint_schedule_fndecl_27905 uhci_sprint_schedule fndecl 0 27905 NULL
++disable_so_cpufreq_generic_init_fndecl_27911 cpufreq_generic_init fndecl 3 27911 NULL
++disable_so_brcms_c_calc_frame_time_fndecl_27915 brcms_c_calc_frame_time fndecl 0-4-2 27915 NULL
++disable_so_max_pixel_clock_matrox_fb_info_27917 max_pixel_clock matrox_fb_info 0 27917 NULL
++disable_so_cfg80211_get_end_freq_fndecl_27923 cfg80211_get_end_freq fndecl 0-1-2 27923 NULL
++disable_so_tv_usec_timeval_27924 tv_usec timeval 0 27924 NULL nohasharray
++disable_so_bootloader_addr_mxt_data_27924 bootloader_addr mxt_data 0 27924 &disable_so_tv_usec_timeval_27924
++disable_so_scope_ipv6_saddr_dst_27930 scope ipv6_saddr_dst 0 27930 NULL
++disable_so_skcipher_recvmsg_sync_fndecl_27933 skcipher_recvmsg_sync fndecl 0 27933 NULL
++disable_so_nf_ct_free_hashtable_fndecl_27936 nf_ct_free_hashtable fndecl 2 27936 NULL
++disable_so_addr_netlbl_af4list_27939 addr netlbl_af4list 0 27939 NULL
++disable_so_idgen_delay_netns_sysctl_ipv6_27941 idgen_delay netns_sysctl_ipv6 0 27941 NULL
++disable_so_time_low_afs_uuid_27956 time_low afs_uuid 0 27956 NULL
++disable_so_set_tv_freq_fndecl_27970 set_tv_freq fndecl 2 27970 NULL
++disable_so_average_duration_time_stats_27971 average_duration time_stats 0 27971 NULL
++disable_so_multicast_num_addrs__mace_private_27974 multicast_num_addrs _mace_private 0 27974 NULL
++disable_so_ghash_pclmulqdqni_mod_init_fndecl_27975 ghash_pclmulqdqni_mod_init fndecl 0 27975 NULL
++disable_so_gs_gru_base_paddr_gru_state_27988 gs_gru_base_paddr gru_state 0 27988 NULL nohasharray
++disable_so_paging32_walk_addr_fndecl_27988 paging32_walk_addr fndecl 3-4 27988 &disable_so_gs_gru_base_paddr_gru_state_27988
++disable_so_musb_read_rxfunaddr_fndecl_27990 musb_read_rxfunaddr fndecl 2-0 27990 NULL
++disable_so_kstrtoint_fndecl_27993 kstrtoint fndecl 0 27993 NULL
++disable_so_rv770_encode_yclk_post_div_fndecl_27996 rv770_encode_yclk_post_div fndecl 0-1 27996 NULL
++disable_so_di_uid_qnx6_inode_entry_28014 di_uid qnx6_inode_entry 0 28014 NULL
++disable_so_sctp_verify_addr_fndecl_28018 sctp_verify_addr fndecl 0-3 28018 NULL
++disable_so_timeout_ieee80211_mgd_assoc_data_28022 timeout ieee80211_mgd_assoc_data 0 28022 NULL
++disable_so_nadc_aic31xx_rate_divs_28025 nadc aic31xx_rate_divs 0 28025 NULL
++disable_so_address_end_unity_map_entry_28028 address_end unity_map_entry 0 28028 NULL
++disable_so_ring_pt_address_sst_hsw_ipc_stream_ring_28034 ring_pt_address sst_hsw_ipc_stream_ring 0 28034 NULL
++disable_so_rx_hashtbl_used_head_alb_bond_info_28035 rx_hashtbl_used_head alb_bond_info 0 28035 NULL
++disable_so_reset_time_vardecl_cs_c_28036 reset_time vardecl_cs.c 0 28036 NULL
++disable_so_slicer_line_delay_cx18_av_state_28042 slicer_line_delay cx18_av_state 0 28042 NULL
++disable_so_addr1_unlock_addr_28045 addr1 unlock_addr 0 28045 NULL
++disable_so_timestamp_ath6kl_fwlog_slot_28050 timestamp ath6kl_fwlog_slot 0 28050 NULL
++disable_so_max8925_rtc_set_time_fndecl_28052 max8925_rtc_set_time fndecl 0 28052 NULL
++disable_so_hblank_lo_lvds_dvo_timing_28054 hblank_lo lvds_dvo_timing 0 28054 NULL
++disable_so_total_bytes_available_snd_compr_runtime_28061 total_bytes_available snd_compr_runtime 0 28061 NULL
++disable_so_start_jiffies_dm_cache_migration_28062 start_jiffies dm_cache_migration 0 28062 NULL
++disable_so_fm10k_read_systime_pf_fndecl_28063 fm10k_read_systime_pf fndecl 0 28063 NULL
++disable_so_time_stopped_btrfs_dev_replace_28065 time_stopped btrfs_dev_replace 0 28065 NULL
++disable_so_total_time_devfreq_dev_status_28070 total_time devfreq_dev_status 0 28070 NULL
++disable_so_congested_cycles_vardecl_tlb_uv_c_28074 congested_cycles vardecl_tlb_uv.c 0 28074 NULL
++disable_so_db_addr_mlx4_ib_create_cq_28077 db_addr mlx4_ib_create_cq 0 28077 NULL
++disable_so_ipaddr_atmmpc_ioc_28080 ipaddr atmmpc_ioc 0 28080 NULL
++disable_so_drm_modeset_backoff_interruptible_fndecl_28087 drm_modeset_backoff_interruptible fndecl 0 28087 NULL
++disable_so_pcr_address_fndecl_28088 pcr_address fndecl 0 28088 NULL
++disable_so_fill_stats_for_tgid_fndecl_28092 fill_stats_for_tgid fndecl 0-1 28092 NULL
++disable_so_ep0_set_address_fndecl_28094 ep0_set_address fndecl 0 28094 NULL
++disable_so_vdi_uid_vxfs_inode_info_28097 vdi_uid vxfs_inode_info 0 28097 NULL
++disable_so_cryptd_hash_final_fndecl_28098 cryptd_hash_final fndecl 2 28098 NULL
++disable_so_sysctl_aevent_etime_netns_xfrm_28099 sysctl_aevent_etime netns_xfrm 0 28099 NULL
++disable_so_nilfs_segctor_last_seg_write_time_secs_show_fndecl_28103 nilfs_segctor_last_seg_write_time_secs_show fndecl 0 28103 NULL
++disable_so_toshiba_usb_sleep_charge_set_fndecl_28108 toshiba_usb_sleep_charge_set fndecl 0 28108 NULL
++disable_so_r63_val_fc2580_freq_regs_28120 r63_val fc2580_freq_regs 0 28120 NULL
++disable_so_myri10ge_read_mac_addr_fndecl_28129 myri10ge_read_mac_addr fndecl 0 28129 NULL
++disable_so_stv090x_get_feclock_fndecl_28130 stv090x_get_feclock fndecl 0 28130 NULL
++disable_so_m_blkbit_log_xfs_mount_28131 m_blkbit_log xfs_mount 0 28131 NULL
++disable_so_duration_iwl_mvm_time_event_data_28140 duration iwl_mvm_time_event_data 0 28140 NULL
++disable_so_compute_tsc_offset_kvm_x86_ops_28149 compute_tsc_offset kvm_x86_ops 0-2 28149 NULL
++disable_so_sys_clock_freq_drxd_state_28176 sys_clock_freq drxd_state 0 28176 NULL
++disable_so_addrLow_sge_ieee1212_28181 addrLow sge_ieee1212 0 28181 NULL
++disable_so_ctnetlink_timestamp_size_fndecl_28183 ctnetlink_timestamp_size fndecl 0 28183 NULL
++disable_so_ahash_def_finup_fndecl_28189 ahash_def_finup fndecl 0 28189 NULL
++disable_so_hw_ptr_jiffies_snd_pcm_runtime_28200 hw_ptr_jiffies snd_pcm_runtime 0 28200 NULL
++disable_so_tmr_device_snd_timer_28205 tmr_device snd_timer 0 28205 NULL
++disable_so_kycr2_delay_sh_keysc_info_28217 kycr2_delay sh_keysc_info 0 28217 NULL
++disable_so_timestamp_nfs4_opendata_28221 timestamp nfs4_opendata 0 28221 NULL
++disable_so_mb_find_next_zero_bit_fndecl_28223 mb_find_next_zero_bit fndecl 0-2-3 28223 NULL
++disable_so_nbytes_orig_qce_sha_reqctx_28228 nbytes_orig qce_sha_reqctx 0 28228 NULL
++disable_so_code_addr_nvbios_pmuR_28229 code_addr nvbios_pmuR 0 28229 NULL
++disable_so_clock_pad_drive_dib0070_config_28232 clock_pad_drive dib0070_config 0 28232 NULL nohasharray
++disable_so_ringid_wmi_bcast_vring_cfg_28232 ringid wmi_bcast_vring_cfg 0 28232 &disable_so_clock_pad_drive_dib0070_config_28232
++disable_so_centiseconds_timestamp_28239 centiseconds timestamp 0 28239 NULL nohasharray
++disable_so_psb_vdc_interrupt_fndecl_28239 psb_vdc_interrupt fndecl 2 28239 &disable_so_centiseconds_timestamp_28239
++disable_so_freqshift_snd_usb_endpoint_28255 freqshift snd_usb_endpoint 0 28255 NULL
++disable_so_drm_vblank_count_and_time_fndecl_28263 drm_vblank_count_and_time fndecl 2 28263 NULL
++disable_so_cr_s5p_jpeg_addr_28264 cr s5p_jpeg_addr 0 28264 NULL
++disable_so_adis16136_get_freq_fndecl_28268 adis16136_get_freq fndecl 0 28268 NULL nohasharray
++disable_so_cpu_to_tun16_fndecl_28268 cpu_to_tun16 fndecl 0-2 28268 &disable_so_adis16136_get_freq_fndecl_28268
++disable_so_index_msr_data_28269 index msr_data 0 28269 NULL
++disable_so_clock_realtek_pci_sdmmc_28276 clock realtek_pci_sdmmc 0 28276 NULL
++disable_so_div_q0_pll_values_28280 div_q0 pll_values 0 28280 NULL
++disable_so_fall_time_lp8788_bl_config_28282 fall_time lp8788_bl_config 0 28282 NULL
++disable_so_producer_index_phys_addr_lo_megasas_init_queue_info_28289 producer_index_phys_addr_lo megasas_init_queue_info 0 28289 NULL
++disable_so_hash_ipport4_expire_fndecl_28290 hash_ipport4_expire fndecl 4 28290 NULL
++disable_so_ifa_valid_lft_in_ifaddr_28292 ifa_valid_lft in_ifaddr 0 28292 NULL nohasharray
++disable_so_test_ahash_jiffies_digest_fndecl_28292 test_ahash_jiffies_digest fndecl 0 28292 &disable_so_ifa_valid_lft_in_ifaddr_28292
++disable_so_bitmap_parselist_fndecl_28296 bitmap_parselist fndecl 0-3 28296 NULL
++disable_so_st_uid_stat_28301 st_uid stat 0 28301 NULL
++disable_so_default_powersave_bias_vardecl_cpufreq_ondemand_c_28302 default_powersave_bias vardecl_cpufreq_ondemand.c 0 28302 NULL
++disable_so__simple_hash_fndecl_28307 _simple_hash fndecl 0 28307 NULL
++disable_so_sys_setfsuid_fndecl_28311 sys_setfsuid fndecl 0-1 28311 NULL
++disable_so_buf_addr_mlx4_ib_resize_cq_28313 buf_addr mlx4_ib_resize_cq 0 28313 NULL nohasharray
++disable_so_netxen_config_ipaddr_fndecl_28313 netxen_config_ipaddr fndecl 2 28313 &disable_so_buf_addr_mlx4_ib_resize_cq_28313 nohasharray
++disable_so_set_32bit_tls_fndecl_28313 set_32bit_tls fndecl 3 28313 &disable_so_netxen_config_ipaddr_fndecl_28313
++disable_so_init_systime_stmmac_hwtimestamp_28315 init_systime stmmac_hwtimestamp 2-3 28315 NULL
++disable_so_bf_daddr_ath_buf_28317 bf_daddr ath_buf 0 28317 NULL nohasharray
++disable_so_xfs_btree_readahead_ptr_fndecl_28317 xfs_btree_readahead_ptr fndecl 3 28317 &disable_so_bf_daddr_ath_buf_28317
++disable_so__is_valid_div_fndecl_28320 _is_valid_div fndecl 2 28320 NULL
++disable_so_loop_id_2100_gid_list_info_28327 loop_id_2100 gid_list_info 0 28327 NULL nohasharray
++disable_so_hi_regpair_28327 hi regpair 0 28327 &disable_so_loop_id_2100_gid_list_info_28327
++disable_so_dst_addr_rcar_dmac_xfer_chunk_28333 dst_addr rcar_dmac_xfer_chunk 0 28333 NULL
++disable_so_svm_msrpm_offset_fndecl_28343 svm_msrpm_offset fndecl 0-1 28343 NULL
++disable_so_dma_free_attrs_fndecl_28349 dma_free_attrs fndecl 2-4 28349 NULL
++disable_so_gc_psx_delay_vardecl_gamecon_c_28354 gc_psx_delay vardecl_gamecon.c 0 28354 NULL
++disable_so_di_mtime_nsec_gfs2_dinode_28356 di_mtime_nsec gfs2_dinode 0 28356 NULL
++disable_so_panel_post_divider_radeon_encoder_lvds_28360 panel_post_divider radeon_encoder_lvds 0 28360 NULL
++disable_so_cpu_rt_runtime_write_fndecl_28375 cpu_rt_runtime_write fndecl 3-0 28375 NULL nohasharray
++disable_so_hrtimer_nanosleep_fndecl_28375 hrtimer_nanosleep fndecl 4 28375 &disable_so_cpu_rt_runtime_write_fndecl_28375
++disable_so_addr_yellowfin_desc_28380 addr yellowfin_desc 0 28380 NULL
++disable_so_time_count_mptsas_target_reset_event_28383 time_count mptsas_target_reset_event 0 28383 NULL nohasharray
++disable_so_pos2maj_hash_fndecl_28383 pos2maj_hash fndecl 0-2 28383 &disable_so_time_count_mptsas_target_reset_event_28383
++disable_so_chv_freq_opcode_fndecl_28386 chv_freq_opcode fndecl 0-2 28386 NULL
++disable_so_nsecs_to_jiffies_fndecl_28394 nsecs_to_jiffies fndecl 0-1 28394 NULL
++disable_so_qpn_hash_fndecl_28400 qpn_hash fndecl 0-2 28400 NULL
++disable_so_seltime_b_ahc_softc_28409 seltime_b ahc_softc 0 28409 NULL
++disable_so_ast_set_start_address_crt1_fndecl_28414 ast_set_start_address_crt1 fndecl 2 28414 NULL
++disable_so_tseg2_pucan_timing_fast_28420 tseg2 pucan_timing_fast 0 28420 NULL
++disable_so_tlv_put_uuid_fndecl_28427 tlv_put_uuid fndecl 0 28427 NULL
++disable_so_cur_tsc_write_kvm_arch_28444 cur_tsc_write kvm_arch 0 28444 NULL
++disable_so_addr_2_qla8044_minidump_entry_rdmdio_28446 addr_2 qla8044_minidump_entry_rdmdio 0 28446 NULL
++disable_so_ft_img_ir_timing_regvals_28448 ft img_ir_timing_regvals 0 28448 NULL
++disable_so_blk_queue_rq_timeout_fndecl_28452 blk_queue_rq_timeout fndecl 2 28452 NULL
++disable_so_pch_udc_read_device_interrupts_fndecl_28463 pch_udc_read_device_interrupts fndecl 0 28463 NULL
++disable_so_spidev_sync_fndecl_28473 spidev_sync fndecl 0 28473 NULL
++disable_so_mvs_store_interrupt_coalescing_fndecl_28474 mvs_store_interrupt_coalescing fndecl 0-4 28474 NULL
++disable_so_div_up_fndecl_28477 div_up fndecl 0-1-2 28477 NULL
++disable_so_iwlagn_hw_valid_rtc_data_addr_fndecl_28480 iwlagn_hw_valid_rtc_data_addr fndecl 1 28480 NULL
++disable_so_ixgbe_init_interrupt_scheme_fndecl_28488 ixgbe_init_interrupt_scheme fndecl 0 28488 NULL
++disable_so_next_hrtimer_event_ehci_hcd_28494 next_hrtimer_event ehci_hcd 0 28494 NULL
++disable_so_show_hold_timer_fndecl_28495 show_hold_timer fndecl 0 28495 NULL
++disable_so_linetime_intel_pipe_wm_28496 linetime intel_pipe_wm 0 28496 NULL
++disable_so_rcq_addr_vf_pf_rxq_params_28504 rcq_addr vf_pf_rxq_params 0 28504 NULL
++disable_so_paddr_ath10k_hif_sg_item_28509 paddr ath10k_hif_sg_item 0 28509 NULL
++disable_so_ocfs2_clear_bit_unaligned_fndecl_28520 ocfs2_clear_bit_unaligned fndecl 1 28520 NULL
++disable_so_interrupt_notify_wlcore_ops_28523 interrupt_notify wlcore_ops 0 28523 NULL
++disable_so_r_direct_hash_ceph_mds_request_28525 r_direct_hash ceph_mds_request 0 28525 NULL
++disable_so_i_ctime_omfs_inode_28528 i_ctime omfs_inode 0 28528 NULL
++disable_so_sas_request_addr_fndecl_28536 sas_request_addr fndecl 0 28536 NULL
++disable_so_bnx2x_send_reset_timesync_ramrod_fndecl_28537 bnx2x_send_reset_timesync_ramrod fndecl 0 28537 NULL
++disable_so_prev_sum_exec_runtime_sched_entity_28542 prev_sum_exec_runtime sched_entity 0 28542 NULL nohasharray
++disable_so_reg_w1_fndecl_28542 reg_w1 fndecl 2-3 28542 &disable_so_prev_sum_exec_runtime_sched_entity_28542
++disable_so_addr_wil_memio_28545 addr wil_memio 0 28545 NULL
++disable_so_drm_get_last_vbltimestamp_fndecl_28555 drm_get_last_vbltimestamp fndecl 2 28555 NULL nohasharray
++disable_so_decryptor_fndecl_28555 decryptor fndecl 0 28555 &disable_so_drm_get_last_vbltimestamp_fndecl_28555
++disable_so_mcryptd_hash_enqueue_fndecl_28559 mcryptd_hash_enqueue fndecl 0 28559 NULL
++disable_so_i_ctime_nilfs_inode_28572 i_ctime nilfs_inode 0 28572 NULL
++disable_so_ablkcipher_request_complete_fndecl_28578 ablkcipher_request_complete fndecl 2 28578 NULL
++disable_so_quark_x1000_get_clk_div_fndecl_28592 quark_x1000_get_clk_div fndecl 0-1 28592 NULL
++disable_so_myri10ge_update_mac_address_fndecl_28593 myri10ge_update_mac_address fndecl 0 28593 NULL
++disable_so_crypto_authenc_decrypt_fndecl_28596 crypto_authenc_decrypt fndecl 0 28596 NULL
++disable_so_addr_starfire_tx_desc_2_28603 addr starfire_tx_desc_2 0 28603 NULL
++disable_so___rhashtable_insert_fast_fndecl_28605 __rhashtable_insert_fast fndecl 0 28605 NULL
++disable_so_addr_cp_desc_28611 addr cp_desc 0 28611 NULL
++disable_so_ic_pause_timer_mtip_port_28612 ic_pause_timer mtip_port 0 28612 NULL nohasharray
++disable_so_bitmap_checkfree_fndecl_28612 bitmap_checkfree fndecl 2 28612 &disable_so_ic_pause_timer_mtip_port_28612
++disable_so_ac_utimescaled_taskstats_28613 ac_utimescaled taskstats 0 28613 NULL
++disable_so___subtree_last_umem_odp_node_28630 __subtree_last umem_odp_node 0 28630 NULL
++disable_so_i_ctime_bfs_inode_28632 i_ctime bfs_inode 0 28632 NULL
++disable_so_s_def_resgid_ext4_super_block_28638 s_def_resgid ext4_super_block 0 28638 NULL
++disable_so_addr_alert_data_28639 addr alert_data 0 28639 NULL
++disable_so_p_vaddr_elf32_phdr_28641 p_vaddr elf32_phdr 0 28641 NULL
++disable_so_kv_set_divider_value_fndecl_28644 kv_set_divider_value fndecl 3-0 28644 NULL
++disable_so_bitmap_clear_fndecl_28646 bitmap_clear fndecl 2-3 28646 NULL
++disable_so_uartlite_inle32_fndecl_28652 uartlite_inle32 fndecl 0 28652 NULL
++disable_so_kvm_hv_vapic_msr_write_fndecl_28670 kvm_hv_vapic_msr_write fndecl 3 28670 NULL
++disable_so_sgl_addr_fcpio_icmnd_16_28672 sgl_addr fcpio_icmnd_16 0 28672 NULL
++disable_so_timestamp_bfa_trc_s_28675 timestamp bfa_trc_s 0 28675 NULL
++disable_so_xbofs_delay_irda_skb_cb_28676 xbofs_delay irda_skb_cb 0 28676 NULL
++disable_so_hpfs_map_bitmap_fndecl_28681 hpfs_map_bitmap fndecl 2 28681 NULL
++disable_so_tz_minuteswest_timezone_28688 tz_minuteswest timezone 0 28688 NULL
++disable_so_pc_clock_settime_fndecl_28698 pc_clock_settime fndecl 1 28698 NULL
++disable_so_orinoco_hw_get_freq_fndecl_28700 orinoco_hw_get_freq fndecl 0 28700 NULL
++disable_so_phys_addr_megasas_sge32_28701 phys_addr megasas_sge32 0 28701 NULL
++disable_so_tusb_otg_ints_fndecl_28728 tusb_otg_ints fndecl 2 28728 NULL
++disable_so_dynamic_ps_forced_timeout_ieee80211_local_28729 dynamic_ps_forced_timeout ieee80211_local 0 28729 NULL
++disable_so_atomic_notifier_call_chain_fndecl_28732 atomic_notifier_call_chain fndecl 0-2 28732 NULL
++disable_so_time_ext_busy_survey_info_28734 time_ext_busy survey_info 0 28734 NULL
++disable_so___audit_signal_info_fndecl_28736 __audit_signal_info fndecl 0-1 28736 NULL
++disable_so_SYSC_mq_timedsend_fndecl_28740 SYSC_mq_timedsend fndecl 1-3 28740 NULL
++disable_so_gss_krb5_aes_decrypt_fndecl_28742 gss_krb5_aes_decrypt fndecl 0-2 28742 NULL
++disable_so_sys_clock_getres_fndecl_28754 sys_clock_getres fndecl 1 28754 NULL
++disable_so_addr_max8997_muic_reg_data_28757 addr max8997_muic_reg_data 0 28757 NULL
++disable_so_address_floppy_fdc_state_28762 address floppy_fdc_state 0 28762 NULL
++disable_so_btrfs_uuid_tree_add_fndecl_28765 btrfs_uuid_tree_add fndecl 0-4-5 28765 NULL
++disable_so_default_radio_freq_vardecl_pvrusb2_hdw_c_28767 default_radio_freq vardecl_pvrusb2-hdw.c 0 28767 NULL
++disable_so_ac_stime_pacct_struct_28773 ac_stime pacct_struct 0 28773 NULL
++disable_so___btree_submit_bio_start_fndecl_28775 __btree_submit_bio_start fndecl 0 28775 NULL
++disable_so_add_new_bitmap_fndecl_28783 add_new_bitmap fndecl 3 28783 NULL
++disable_so_cinblock_signal_struct_28789 cinblock signal_struct 0 28789 NULL
++disable_so_bd_list_addr_hi_bnx2i_logout_request_28791 bd_list_addr_hi bnx2i_logout_request 0 28791 NULL
++disable_so_tv_freq_bttv_28796 tv_freq bttv 0 28796 NULL
++disable_so___btrfs_run_delayed_items_fndecl_28804 __btrfs_run_delayed_items fndecl 0-3 28804 NULL nohasharray
++disable_so_dst_addr_dma_slave_config_28804 dst_addr dma_slave_config 0 28804 &disable_so___btrfs_run_delayed_items_fndecl_28804
++disable_so_xfs_bitmap_empty_fndecl_28805 xfs_bitmap_empty fndecl 2 28805 NULL
++disable_so_btrfs_alloc_delayed_item_fndecl_28813 btrfs_alloc_delayed_item fndecl 1 28813 NULL
++disable_so_virtio32_to_cpu_fndecl_28839 virtio32_to_cpu fndecl 0-2 28839 NULL
++disable_so_random_frame_fusbh200_hcd_28840 random_frame fusbh200_hcd 0 28840 NULL
++disable_so_wl1273_fm_set_tx_freq_fndecl_28841 wl1273_fm_set_tx_freq fndecl 2 28841 NULL nohasharray
++disable_so_rip_kvm_regs_28841 rip kvm_regs 0 28841 &disable_so_wl1273_fm_set_tx_freq_fndecl_28841
++disable_so_last_capture_dmaaddr_es1938_28843 last_capture_dmaaddr es1938 0 28843 NULL
++disable_so_mic_is_system_addr_fndecl_28851 mic_is_system_addr fndecl 2 28851 NULL
++disable_so_sst_module_runtime_new_fndecl_28861 sst_module_runtime_new fndecl 2 28861 NULL
++disable_so_nat_blkaddr_f2fs_nm_info_28862 nat_blkaddr f2fs_nm_info 0 28862 NULL
++disable_so_ustrtoul_fndecl_28866 ustrtoul fndecl 0 28866 NULL
++disable_so_tomoyo_write_log2_fndecl_28871 tomoyo_write_log2 fndecl 2 28871 NULL
++disable_so_rate_snd_pcm_oss_runtime_28878 rate snd_pcm_oss_runtime 0 28878 NULL
++disable_so_cl_idle_timeout_ms_o2nm_cluster_28885 cl_idle_timeout_ms o2nm_cluster 0 28885 NULL
++disable_so_pc_clock_adjtime_fndecl_28892 pc_clock_adjtime fndecl 1 28892 NULL
++disable_so_mmc_power_cycle_fndecl_28894 mmc_power_cycle fndecl 2 28894 NULL
++disable_so_cpufreq_get_fndecl_28896 cpufreq_get fndecl 0-1 28896 NULL
++disable_so_ci_get_sleep_divider_id_from_clock_fndecl_28898 ci_get_sleep_divider_id_from_clock fndecl 2 28898 NULL
++disable_so_mmio_writel_intel_uncore_funcs_28903 mmio_writel intel_uncore_funcs 2-3 28903 NULL
++disable_so_cpufreq_stats_init_fndecl_28912 cpufreq_stats_init fndecl 0 28912 NULL
++disable_so_sbp_tpg_attrib_store_mgt_orb_timeout_fndecl_28914 sbp_tpg_attrib_store_mgt_orb_timeout fndecl 0-3 28914 NULL
++disable_so___virtio16_to_cpu_fndecl_28917 __virtio16_to_cpu fndecl 0-2 28917 NULL
++disable_so___pm_runtime_resume_fndecl_28918 __pm_runtime_resume fndecl 0 28918 NULL
++disable_so_task_setpgid_security_operations_28939 task_setpgid security_operations 2 28939 NULL
++disable_so_perf_event_set_clock_fndecl_28941 perf_event_set_clock fndecl 0 28941 NULL
++disable_so_sci_er_interrupt_fndecl_28944 sci_er_interrupt fndecl 1 28944 NULL
++disable_so_mmc_sdio_get_max_clock_fndecl_28945 mmc_sdio_get_max_clock fndecl 0 28945 NULL
++disable_so_dma_addr_cmdQ_28949 dma_addr cmdQ 0 28949 NULL
++disable_so_s_def_resuid_ext3_super_block_28958 s_def_resuid ext3_super_block 0 28958 NULL
++disable_so_init_timer_cpu_fndecl_28961 init_timer_cpu fndecl 2 28961 NULL
++disable_so_sst_hsw_dsp_runtime_suspend_fndecl_28962 sst_hsw_dsp_runtime_suspend fndecl 0 28962 NULL nohasharray
++disable_so_mem_busaddr_ahd_platform_data_28962 mem_busaddr ahd_platform_data 0 28962 &disable_so_sst_hsw_dsp_runtime_suspend_fndecl_28962
++disable_so_xen_setup_timer_fndecl_28968 xen_setup_timer fndecl 1 28968 NULL
++disable_so_vx_clock_mode_info_fndecl_28969 vx_clock_mode_info fndecl 0 28969 NULL
++disable_so_clk_frequency_csis_state_28987 clk_frequency csis_state 0 28987 NULL
++disable_so_cma_clear_bitmap_fndecl_28991 cma_clear_bitmap fndecl 2-3 28991 NULL
++disable_so_tg3_nvram_phys_addr_fndecl_28993 tg3_nvram_phys_addr fndecl 0-2 28993 NULL
++disable_so_ufshcd_init_clocks_fndecl_28995 ufshcd_init_clocks fndecl 0 28995 NULL nohasharray
++disable_so_ima_init_crypto_fndecl_28995 ima_init_crypto fndecl 0 28995 &disable_so_ufshcd_init_clocks_fndecl_28995
++disable_so_i2c_address_ts2020_priv_29002 i2c_address ts2020_priv 0 29002 NULL
++disable_so_gf_mul_fndecl_29007 gf_mul fndecl 0-3 29007 NULL
++disable_so_sys_geteuid_fndecl_29013 sys_geteuid fndecl 0 29013 NULL
++disable_so_do_one_acipher_op_fndecl_29014 do_one_acipher_op fndecl 0-2 29014 NULL
++disable_so_ssb_pmu_get_alp_clock_clk0_fndecl_29019 ssb_pmu_get_alp_clock_clk0 fndecl 0 29019 NULL
++disable_so_addr_ib_sge_29021 addr ib_sge 0 29021 NULL
++disable_so_rdi_kvm_regs_29022 rdi kvm_regs 0 29022 NULL
++disable_so_dma_subdivide_fndecl_29027 dma_subdivide fndecl 3-0 29027 NULL
++disable_so_nilfs_superblock_sb_write_time_secs_show_fndecl_29044 nilfs_superblock_sb_write_time_secs_show fndecl 0 29044 NULL
++disable_so_mlx4_ib_init_gid_table_fndecl_29049 mlx4_ib_init_gid_table fndecl 0 29049 NULL
++disable_so_xfs_bmap_add_attrfork_btree_fndecl_29052 xfs_bmap_add_attrfork_btree fndecl 0 29052 NULL
++disable_so_pcf2123_rtc_set_time_fndecl_29057 pcf2123_rtc_set_time fndecl 0 29057 NULL
++disable_so_vactive_hi_oaktrail_timing_info_29063 vactive_hi oaktrail_timing_info 0 29063 NULL
++disable_so_xfs_btree_lookup_fndecl_29066 xfs_btree_lookup fndecl 0 29066 NULL
++disable_so_si476x_core_cmd_fm_tune_freq_a20_fndecl_29072 si476x_core_cmd_fm_tune_freq_a20 fndecl 0 29072 NULL
++disable_so_hcd_pci_runtime_resume_fndecl_29073 hcd_pci_runtime_resume fndecl 0 29073 NULL
++disable_so_switch_time_wl12xx_cmd_channel_switch_29074 switch_time wl12xx_cmd_channel_switch 0 29074 NULL
++disable_so_ata_internal_cmd_timeout_fndecl_29075 ata_internal_cmd_timeout fndecl 0-2 29075 NULL nohasharray
++disable_so_hash_shift_flow_cache_29075 hash_shift flow_cache 0 29075 &disable_so_ata_internal_cmd_timeout_fndecl_29075
++disable_so_timeout_sg_io_v4_29079 timeout sg_io_v4 0 29079 NULL
++disable_so___btrfs_add_delayed_insertion_item_fndecl_29083 __btrfs_add_delayed_insertion_item fndecl 0 29083 NULL
++disable_so_bn_nchildren_nilfs_btree_node_29084 bn_nchildren nilfs_btree_node 0 29084 NULL
++disable_so_jiffies_vardecl_29085 jiffies vardecl 0 29085 NULL
++disable_so_frag_count_ct_timer_instance_29091 frag_count ct_timer_instance 0 29091 NULL
++disable_so_ref_start_vardecl_tsc_c_29097 ref_start vardecl_tsc.c 0 29097 NULL
++disable_so_timeout_ms_cm_id_private_29104 timeout_ms cm_id_private 0 29104 NULL
++disable_so_nfulnl_set_timeout_fndecl_29106 nfulnl_set_timeout fndecl 2 29106 NULL nohasharray
++disable_so_addr_high_lancer_cmd_req_write_object_29106 addr_high lancer_cmd_req_write_object 0 29106 &disable_so_nfulnl_set_timeout_fndecl_29106
++disable_so_i_mtime_exofs_fcb_29107 i_mtime exofs_fcb 0 29107 NULL
++disable_so_ss_pt_regs_29109 ss pt_regs 0 29109 NULL
++disable_so_ivsize_ablkcipher_alg_29115 ivsize ablkcipher_alg 0 29115 NULL
++disable_so_signal_strength_rx_status_29125 signal_strength rx_status 0 29125 NULL
++disable_so_radio_rx_freq_vivid_dev_29126 radio_rx_freq vivid_dev 0 29126 NULL
++disable_so_io_virtual_address_ib_pool_fmr_29135 io_virtual_address ib_pool_fmr 0 29135 NULL
++disable_so_addr_low_mcp_kreq_ether_send_29138 addr_low mcp_kreq_ether_send 0 29138 NULL
++disable_so_pad_bits_bitstream_29149 pad_bits bitstream 0 29149 NULL
++disable_so_clockdiv_sd_29154 clockdiv sd 0 29154 NULL
++disable_so_retu_wdt_set_timeout_fndecl_29155 retu_wdt_set_timeout fndecl 2-0 29155 NULL nohasharray
++disable_so_hw_roc_start_time_ieee80211_local_29155 hw_roc_start_time ieee80211_local 0 29155 &disable_so_retu_wdt_set_timeout_fndecl_29155
++disable_so_set_ip_addr_fndecl_29159 set_ip_addr fndecl 4 29159 NULL nohasharray
++disable_so_hsync_offset_hi_oaktrail_timing_info_29159 hsync_offset_hi oaktrail_timing_info 0 29159 &disable_so_set_ip_addr_fndecl_29159
++disable_so_valid_phys_addr_range_fndecl_29163 valid_phys_addr_range fndecl 2 29163 NULL
++disable_so_hsw_compute_linetime_wm_fndecl_29166 hsw_compute_linetime_wm fndecl 0 29166 NULL
++disable_so_set_frontend_jiffies_af9013_state_29174 set_frontend_jiffies af9013_state 0 29174 NULL
++disable_so_max_schedule_delay_balloon_stats_29176 max_schedule_delay balloon_stats 0 29176 NULL
++disable_so_matroxfb_mavenclock_fndecl_29182 matroxfb_mavenclock fndecl 2-3 29182 NULL
++disable_so_rrq_stop_time_lpfc_node_rrq_29187 rrq_stop_time lpfc_node_rrq 0 29187 NULL
++disable_so_can_ifindex_sockaddr_can_29188 can_ifindex sockaddr_can 0 29188 NULL
++disable_so_time_hi_and_version_afs_uuid_29192 time_hi_and_version afs_uuid 0 29192 NULL
++disable_so_inode_bitmap_ext4_new_group_data_29195 inode_bitmap ext4_new_group_data 0 29195 NULL
++disable_so_madc_aic31xx_rate_divs_29206 madc aic31xx_rate_divs 0 29206 NULL
++disable_so_i_mtime_ext3_inode_29219 i_mtime ext3_inode 0 29219 NULL
++disable_so_ccp_aes_cmac_finup_fndecl_29220 ccp_aes_cmac_finup fndecl 0 29220 NULL
++disable_so_listen_time_ath5k_ani_state_29228 listen_time ath5k_ani_state 0 29228 NULL
++disable_so_di_mtime_gfs2_dinode_29230 di_mtime gfs2_dinode 0 29230 NULL nohasharray
++disable_so_snd_pcm_hw_rule_mulkdiv_fndecl_29230 snd_pcm_hw_rule_mulkdiv fndecl 0 29230 &disable_so_di_mtime_gfs2_dinode_29230
++disable_so_qlcnic_get_ioaddr_fndecl_29235 qlcnic_get_ioaddr fndecl 2 29235 NULL
++disable_so_si476x_radio_s_hw_freq_seek_fndecl_29237 si476x_radio_s_hw_freq_seek fndecl 0 29237 NULL
++disable_so_SiS_SetRegANDOR_fndecl_29240 SiS_SetRegANDOR fndecl 2-3-5-4 29240 NULL
++disable_so_dev_wait_time_esas2r_sas_nvram_29244 dev_wait_time esas2r_sas_nvram 0 29244 NULL
++disable_so_b44_recycle_rx_fndecl_29255 b44_recycle_rx fndecl 2-3 29255 NULL
++disable_so_max_state_devfreq_dev_profile_29257 max_state devfreq_dev_profile 0 29257 NULL
++disable_so_freq_std_sccnxp_chip_29265 freq_std sccnxp_chip 0 29265 NULL nohasharray
++disable_so___ipv6_addr_diff32_fndecl_29265 __ipv6_addr_diff32 fndecl 0 29265 &disable_so_freq_std_sccnxp_chip_29265
++disable_so_kvm_max_guest_tsc_khz_vardecl_29276 kvm_max_guest_tsc_khz vardecl 0 29276 NULL
++disable_so_ioaddr_velocity_info_29278 ioaddr velocity_info 0 29278 NULL
++disable_so_last_rx_time_xenvif_queue_29307 last_rx_time xenvif_queue 0 29307 NULL
++disable_so_expires_timeriomem_rng_private_data_29310 expires timeriomem_rng_private_data 0 29310 NULL nohasharray
++disable_so_dev_sound_lowlev_timer_29310 dev sound_lowlev_timer 0 29310 &disable_so_expires_timeriomem_rng_private_data_29310
++disable_so_btrfs_set_inode_gid_fndecl_29338 btrfs_set_inode_gid fndecl 3 29338 NULL
++disable_so_i2c_clock_speed_i2c_pca9564_pf_platform_data_29345 i2c_clock_speed i2c_pca9564_pf_platform_data 0 29345 NULL nohasharray
++disable_so_pci_bus_read_config_dword_fndecl_29345 pci_bus_read_config_dword fndecl 0-2-3 29345 &disable_so_i2c_clock_speed_i2c_pca9564_pf_platform_data_29345
++disable_so_adav80x_set_adc_clock_fndecl_29348 adav80x_set_adc_clock fndecl 2 29348 NULL
++disable_so_mod_size_ccp_rsa_op_29350 mod_size ccp_rsa_op 0 29350 NULL
++disable_so_iscsit_na_random_r2t_offsets_fndecl_29363 iscsit_na_random_r2t_offsets fndecl 0 29363 NULL nohasharray
++disable_so_buf_addr_lo_mv_u3d_trb_hw_29363 buf_addr_lo mv_u3d_trb_hw 0 29363 &disable_so_iscsit_na_random_r2t_offsets_fndecl_29363
++disable_so_smsc75xx_set_mac_address_fndecl_29364 smsc75xx_set_mac_address fndecl 0 29364 NULL
++disable_so_m88rs6000t_set_pll_freq_fndecl_29365 m88rs6000t_set_pll_freq fndecl 0-2 29365 NULL
++disable_so_scaled_div_fndecl_29370 scaled_div fndecl 0-1-2 29370 NULL
++disable_so_rtsc_y2x_fndecl_29372 rtsc_y2x fndecl 0-2 29372 NULL
++disable_so_uart_update_timeout_fndecl_29380 uart_update_timeout fndecl 3-2 29380 NULL
++disable_so_dbuf_addr_ath6kl_dbglog_hdr_29381 dbuf_addr ath6kl_dbglog_hdr 0 29381 NULL
++disable_so_sample_rate_div_inv_mpu6050_reg_map_29386 sample_rate_div inv_mpu6050_reg_map 0 29386 NULL nohasharray
++disable_so_ath10k_ce_dest_ring_base_addr_set_fndecl_29386 ath10k_ce_dest_ring_base_addr_set fndecl 3 29386 &disable_so_sample_rate_div_inv_mpu6050_reg_map_29386
++disable_so_nla_parse_nested_fndecl_29395 nla_parse_nested fndecl 2-0 29395 NULL
++disable_so___sched_setscheduler_fndecl_29397 __sched_setscheduler fndecl 0 29397 NULL
++disable_so_add_atomic_switch_msr_special_fndecl_29400 add_atomic_switch_msr_special fndecl 6-7 29400 NULL
++disable_so___xfrm_spi_hash_fndecl_29403 __xfrm_spi_hash fndecl 0-2-3-4-5 29403 NULL
++disable_so_ceph_decode_pgid_fndecl_29407 ceph_decode_pgid fndecl 0 29407 NULL
++disable_so_loc_addr_nes_cm_info_29413 loc_addr nes_cm_info 0 29413 NULL
++disable_so_kxcjk1013_convert_freq_to_bit_fndecl_29417 kxcjk1013_convert_freq_to_bit fndecl 0 29417 NULL
++disable_so_exec_clock_cfs_rq_29423 exec_clock cfs_rq 0 29423 NULL
++disable_so_irst_show_wakeup_time_fndecl_29431 irst_show_wakeup_time fndecl 0 29431 NULL nohasharray
++disable_so_macb_interrupt_fndecl_29431 macb_interrupt fndecl 1 29431 &disable_so_irst_show_wakeup_time_fndecl_29431
++disable_so_crypto_register_notifier_fndecl_29432 crypto_register_notifier fndecl 0 29432 NULL nohasharray
++disable_so_shash_compat_setkey_fndecl_29432 shash_compat_setkey fndecl 0-3 29432 &disable_so_crypto_register_notifier_fndecl_29432
++disable_so_pwm_freq_div_dib8000_config_29434 pwm_freq_div dib8000_config 0 29434 NULL
++disable_so_ds1305_set_time_fndecl_29436 ds1305_set_time fndecl 0 29436 NULL
++disable_so_add_sctp_bind_addr_fndecl_29438 add_sctp_bind_addr fndecl 0-3 29438 NULL
++disable_so___virtio32_to_cpu_fndecl_29440 __virtio32_to_cpu fndecl 0-2 29440 NULL
++disable_so_phonet_address_lookup_fndecl_29442 phonet_address_lookup fndecl 2 29442 NULL
++disable_so_max_timeout_rc_dev_29444 max_timeout rc_dev 0 29444 NULL
++disable_so_address_lo_ips_enh_sglist_29453 address_lo ips_enh_sglist 0 29453 NULL
++disable_so_cdrom_is_random_writable_fndecl_29454 cdrom_is_random_writable fndecl 0 29454 NULL
++disable_so_devblksize_log2_squashfs_sb_info_29455 devblksize_log2 squashfs_sb_info 0 29455 NULL
++disable_so_ps_pspoll_timeouts_read_fndecl_29459 ps_pspoll_timeouts_read fndecl 3-0 29459 NULL
++disable_so_kvm_apic_has_interrupt_fndecl_29462 kvm_apic_has_interrupt fndecl 0 29462 NULL
++disable_so_max6902_read_time_fndecl_29464 max6902_read_time fndecl 0 29464 NULL
++disable_so_get_bit_address_fndecl_29473 get_bit_address fndecl 2 29473 NULL
++disable_so_last_sample_time_vardecl_smscoreapi_c_29477 last_sample_time vardecl_smscoreapi.c 0 29477 NULL nohasharray
++disable_so_btree_readahead_hook_fndecl_29477 btree_readahead_hook fndecl 3-4 29477 &disable_so_last_sample_time_vardecl_smscoreapi_c_29477
++disable_so_final_crypto_ahash_29478 final crypto_ahash 0 29478 NULL
++disable_so_sum_sched_runtime_signal_struct_29480 sum_sched_runtime signal_struct 0 29480 NULL
++disable_so_status_addr_req_29482 status addr_req 0 29482 NULL
++disable_so_micd_dbtime_arizona_pdata_29495 micd_dbtime arizona_pdata 0 29495 NULL
++disable_so_tqi_burst_time_ath5k_txq_info_29499 tqi_burst_time ath5k_txq_info 0 29499 NULL
++disable_so_rs5c372_rtc_read_time_fndecl_29505 rs5c372_rtc_read_time fndecl 0 29505 NULL
++disable_so_pi_write_regr_fndecl_29517 pi_write_regr fndecl 4 29517 NULL
++disable_so_used_cells_ti_tscadc_dev_29522 used_cells ti_tscadc_dev 0 29522 NULL
++disable_so_delay_to_eeprom_index_fndecl_29523 delay_to_eeprom_index fndecl 1 29523 NULL
++disable_so_devfreq_event_get_edev_count_fndecl_29524 devfreq_event_get_edev_count fndecl 0 29524 NULL
++disable_so_pci_enable_msix_range_fndecl_29535 pci_enable_msix_range fndecl 0-4-3 29535 NULL
++disable_so_last_stats_time_ocrdma_dev_29544 last_stats_time ocrdma_dev 0 29544 NULL
++disable_so_sb_c_bitmap_hpfs_sb_info_29558 sb_c_bitmap hpfs_sb_info 0 29558 NULL
++disable_so_submit_time_us_bbio_29575 submit_time_us bbio 0 29575 NULL
++disable_so_bitmap_remap_fndecl_29578 bitmap_remap fndecl 5 29578 NULL
++disable_so_ath_force_no_ir_freq_fndecl_29580 ath_force_no_ir_freq fndecl 2 29580 NULL
++disable_so_time_slice_start_ieee80211_sta_tx_tspec_29586 time_slice_start ieee80211_sta_tx_tspec 0 29586 NULL
++disable_so_mlx4_get_roce_gid_from_slave_fndecl_29587 mlx4_get_roce_gid_from_slave fndecl 2-3 29587 NULL
++disable_so_signalfd_read_fndecl_29589 signalfd_read fndecl 0 29589 NULL
++disable_so_iscsi_nacl_attrib_show_random_datain_seq_offsets_fndecl_29602 iscsi_nacl_attrib_show_random_datain_seq_offsets fndecl 0 29602 NULL
++disable_so_it913x_sleep_fndecl_29615 it913x_sleep fndecl 0 29615 NULL
++disable_so_phy_addr_external_netdev_private_29618 phy_addr_external netdev_private 0 29618 NULL
++disable_so_ssb_clockspeed_fndecl_29627 ssb_clockspeed fndecl 0 29627 NULL
++disable_so_tx_int_delay_e1000_adapter_29628 tx_int_delay e1000_adapter 0 29628 NULL
++disable_so_qlcnic_83xx_idc_check_timeout_fndecl_29633 qlcnic_83xx_idc_check_timeout fndecl 0 29633 NULL
++disable_so_tegra_wdt_get_timeleft_fndecl_29649 tegra_wdt_get_timeleft fndecl 0 29649 NULL
++disable_so_get_intermediate_cpufreq_driver_29653 get_intermediate cpufreq_driver 0 29653 NULL
++disable_so_lpfc_debugfs_start_time_vardecl_lpfc_debugfs_c_29655 lpfc_debugfs_start_time vardecl_lpfc_debugfs.c 0 29655 NULL
++disable_so_check_addr_fndecl_29658 check_addr fndecl 3-4 29658 NULL
++disable_so_irlap_start_poll_timer_fndecl_29663 irlap_start_poll_timer fndecl 2 29663 NULL nohasharray
++disable_so_mlx5_query_node_guid_fndecl_29663 mlx5_query_node_guid fndecl 0 29663 &disable_so_irlap_start_poll_timer_fndecl_29663
++disable_so_read_addr_qla8044_minidump_entry_rdrom_29676 read_addr qla8044_minidump_entry_rdrom 0 29676 NULL nohasharray
++disable_so_to_addr_param_sctp_af_29676 to_addr_param sctp_af 0 29676 &disable_so_read_addr_qla8044_minidump_entry_rdrom_29676
++disable_so_buf_addr_mlx4_ib_create_cq_29678 buf_addr mlx4_ib_create_cq 0 29678 NULL
++disable_so_forward_delay_timer_value___port_info_29680 forward_delay_timer_value __port_info 0 29680 NULL
++disable_so_packet_life_time_ib_sa_mcmember_rec_29682 packet_life_time ib_sa_mcmember_rec 0 29682 NULL
++disable_so_batadv_hash_dat_fndecl_29684 batadv_hash_dat fndecl 0-2 29684 NULL
++disable_so_qxl_bo_physical_address_fndecl_29696 qxl_bo_physical_address fndecl 0-3 29696 NULL
++disable_so_hspi_status_check_timeout_fndecl_29712 hspi_status_check_timeout fndecl 0 29712 NULL
++disable_so_nes_addr_resolve_neigh_fndecl_29717 nes_addr_resolve_neigh fndecl 0-2-3 29717 NULL
++disable_so_hash2pos_fndecl_29725 hash2pos fndecl 0-2-3 29725 NULL
++disable_so_bcma_chipco_watchdog_timer_set_fndecl_29730 bcma_chipco_watchdog_timer_set fndecl 2-0 29730 NULL
++disable_so_hor_addr_via_display_timing_29736 hor_addr via_display_timing 0 29736 NULL
++disable_so_ceph_str_hash_fndecl_29742 ceph_str_hash fndecl 0-3 29742 NULL
++disable_so_qla2x00_gid_pt_fndecl_29752 qla2x00_gid_pt fndecl 0 29752 NULL nohasharray
++disable_so_ocfs2_xattr_name_hash_fndecl_29752 ocfs2_xattr_name_hash fndecl 0-3 29752 &disable_so_qla2x00_gid_pt_fndecl_29752
++disable_so_kstrtouint_from_user_fndecl_29755 kstrtouint_from_user fndecl 0-2 29755 NULL
++disable_so_get_timeout_clock_sdhci_ops_29760 get_timeout_clock sdhci_ops 0 29760 NULL nohasharray
++disable_so_curfreq_raremono_device_29760 curfreq raremono_device 0 29760 &disable_so_get_timeout_clock_sdhci_ops_29760
++disable_so_send_time_batadv_forw_packet_29762 send_time batadv_forw_packet 0 29762 NULL
++disable_so_ms_brcms_timer_29763 ms brcms_timer 0 29763 NULL nohasharray
++disable_so_lp872x_get_timestep_usec_fndecl_29763 lp872x_get_timestep_usec fndecl 0 29763 &disable_so_ms_brcms_timer_29763
++disable_so_bmap_address_space_operations_29766 bmap address_space_operations 2 29766 NULL
++disable_so_ds1390_set_time_fndecl_29768 ds1390_set_time fndecl 0 29768 NULL
++disable_so_release_jiffies_dvb_frontend_private_29775 release_jiffies dvb_frontend_private 0 29775 NULL
++disable_so_hsw_pcm_runtime_resume_fndecl_29777 hsw_pcm_runtime_resume fndecl 0 29777 NULL
++disable_so_pcan_usb_set_bittiming_fndecl_29781 pcan_usb_set_bittiming fndecl 0 29781 NULL
++disable_so_pmcraid_disable_interrupts_fndecl_29788 pmcraid_disable_interrupts fndecl 2 29788 NULL
++disable_so_bit_line_usb_fifo_29792 bit_line usb_fifo 0 29792 NULL
++disable_so_hash_name_fndecl_29814 hash_name fndecl 0 29814 NULL
++disable_so_t4vf_set_addr_hash_fndecl_29821 t4vf_set_addr_hash fndecl 0-2 29821 NULL
++disable_so_bit_length_acpi_object_region_field_29824 bit_length acpi_object_region_field 0 29824 NULL
++disable_so_native_read_tsc_fndecl_29825 native_read_tsc fndecl 0 29825 NULL
++disable_so_sha256_base_do_update_fndecl_29849 sha256_base_do_update fndecl 3 29849 NULL
++disable_so_timeout_ip_vs_conn_29852 timeout ip_vs_conn 0 29852 NULL
++disable_so_conn_db_addr_hi_fcoe_kwqe_conn_offload2_29864 conn_db_addr_hi fcoe_kwqe_conn_offload2 0 29864 NULL
++disable_so_timeout_type_timeout_parms_29877 timeout_type timeout_parms 0 29877 NULL
++disable_so_arch_apei_filter_addr_vardecl_29884 arch_apei_filter_addr vardecl 0 29884 NULL
++disable_so_crypto_shash_import_fndecl_29885 crypto_shash_import fndecl 0 29885 NULL
++disable_so_ktime_get_ns_fndecl_29890 ktime_get_ns fndecl 0 29890 NULL
++disable_so_store_scaling_min_freq_fndecl_29892 store_scaling_min_freq fndecl 0-3 29892 NULL
++disable_so_nfsd_map_name_to_uid_fndecl_29920 nfsd_map_name_to_uid fndecl 0 29920 NULL
++disable_so_min_interrupt_in_interval_vardecl_ldusb_c_29924 min_interrupt_in_interval vardecl_ldusb.c 0 29924 NULL
++disable_so_cdv_intel_clock_fndecl_29931 cdv_intel_clock fndecl 1 29931 NULL
++disable_so_di_mtime_efs_dinode_29934 di_mtime efs_dinode 0 29934 NULL nohasharray
++disable_so_hpet_freq_vardecl_hpet_c_29934 hpet_freq vardecl_hpet.c 0 29934 &disable_so_di_mtime_efs_dinode_29934
++disable_so_shash_async_setkey_fndecl_29939 shash_async_setkey fndecl 0-3 29939 NULL
++disable_so_qs_btimelimit_fs_quota_statv_29943 qs_btimelimit fs_quota_statv 0 29943 NULL
++disable_so_addr_mpr121_init_register_29945 addr mpr121_init_register 0 29945 NULL
++disable_so_pixelclock_v4l2_bt_timings_29967 pixelclock v4l2_bt_timings 0 29967 NULL
++disable_so_spi_imx_clkdiv_2_fndecl_29968 spi_imx_clkdiv_2 fndecl 1-2 29968 NULL
++disable_so_ed_uuid_drbd_device_29970 ed_uuid drbd_device 0 29970 NULL
++disable_so_timestamp_nfs_release_lockowner_data_29972 timestamp nfs_release_lockowner_data 0 29972 NULL
++disable_so_smp_send_reschedule_smp_ops_29981 smp_send_reschedule smp_ops 1 29981 NULL
++disable_so_lm3533_led_delay_set_fndecl_29984 lm3533_led_delay_set fndecl 0-2 29984 NULL
++disable_so_rx_errors_rtnl_link_stats64_29988 rx_errors rtnl_link_stats64 0 29988 NULL
++disable_so_fm10k_read_reg_fndecl_29989 fm10k_read_reg fndecl 0-2 29989 NULL
++disable_so_timeout_jiffies_tifm_ms_29995 timeout_jiffies tifm_ms 0 29995 NULL nohasharray
++disable_so_confq_pbl_base_addr_hi_fcoe_kwqe_conn_offload4_29995 confq_pbl_base_addr_hi fcoe_kwqe_conn_offload4 0 29995 &disable_so_timeout_jiffies_tifm_ms_29995
++disable_so_wait_on_bit_lock_fndecl_30009 wait_on_bit_lock fndecl 0 30009 NULL
++disable_so_rx8025_get_clock_adjust_fndecl_30011 rx8025_get_clock_adjust fndecl 0 30011 NULL
++disable_so_sem_ctime_sem_array_30014 sem_ctime sem_array 0 30014 NULL
++disable_so_sleep_mask_bma180_part_info_30016 sleep_mask bma180_part_info 0 30016 NULL
++disable_so_demod_address_zl10353_config_30017 demod_address zl10353_config 0 30017 NULL
++disable_so_msr_amixer_desc_30027 msr amixer_desc 0 30027 NULL
++disable_so_diolan_usb_transfer_fndecl_30033 diolan_usb_transfer fndecl 0 30033 NULL
++disable_so_mlx4_get_slave_from_roce_gid_fndecl_30035 mlx4_get_slave_from_roce_gid fndecl 2 30035 NULL
++disable_so_or51211_read_signal_strength_fndecl_30044 or51211_read_signal_strength fndecl 0 30044 NULL
++disable_so_panel_power_up_delay_intel_dp_30048 panel_power_up_delay intel_dp 0 30048 NULL
++disable_so_bit_bmove_fndecl_30057 bit_bmove fndecl 3-4-5-6-7-8 30057 NULL
++disable_so_posix_cpu_clock_getres_fndecl_30065 posix_cpu_clock_getres fndecl 1 30065 NULL
++disable_so_ktime_divns_fndecl_30067 ktime_divns fndecl 0-2 30067 NULL
++disable_so_vsync_offset_hi_oaktrail_timing_info_30079 vsync_offset_hi oaktrail_timing_info 0 30079 NULL
++disable_so_msr_host_kernel_gs_base_vcpu_vmx_30082 msr_host_kernel_gs_base vcpu_vmx 0 30082 NULL
++disable_so_r6d_val_fc2580_freq_regs_30084 r6d_val fc2580_freq_regs 0 30084 NULL
++disable_so_qlcnic_pci_get_crb_addr_2M_fndecl_30093 qlcnic_pci_get_crb_addr_2M fndecl 2 30093 NULL
++disable_so_btrfs_commit_inode_delayed_items_fndecl_30109 btrfs_commit_inode_delayed_items fndecl 0 30109 NULL
++disable_so_usec_delay_e1000_mbx_info_30132 usec_delay e1000_mbx_info 0 30132 NULL
++disable_so_inet6_rtm_getaddr_fndecl_30136 inet6_rtm_getaddr fndecl 0 30136 NULL
++disable_so_busaddr_reply_queue_buffer_30140 busaddr reply_queue_buffer 0 30140 NULL
++disable_so_show_pwm_auto_spinup_time_fndecl_30149 show_pwm_auto_spinup_time fndecl 0 30149 NULL
++disable_so_addr_rds_iovec_30161 addr rds_iovec 0 30161 NULL
++disable_so___nlm_hash_addr4_fndecl_30164 __nlm_hash_addr4 fndecl 0 30164 NULL
++disable_so_ctime_cs_msdos_dir_entry_30167 ctime_cs msdos_dir_entry 0 30167 NULL
++disable_so_next_otg_timer_ci_hdrc_30174 next_otg_timer ci_hdrc 0 30174 NULL
++disable_so_select_addr_qla82xx_md_entry_mux_30183 select_addr qla82xx_md_entry_mux 0 30183 NULL
++disable_so_qi_itimelimit_xfs_quotainfo_30196 qi_itimelimit xfs_quotainfo 0 30196 NULL
++disable_so_iowrite32_fndecl_30197 iowrite32 fndecl 1 30197 NULL
++disable_so_hash_ipportip6_expire_fndecl_30205 hash_ipportip6_expire fndecl 4 30205 NULL
++disable_so_argument_acpi_signal_fatal_info_30208 argument acpi_signal_fatal_info 0 30208 NULL
++disable_so_btree_write_cache_pages_fndecl_30231 btree_write_cache_pages fndecl 0 30231 NULL
++disable_so_clock_audioformat_30236 clock audioformat 0 30236 NULL
++disable_so_to_retries_rpc_timeout_30265 to_retries rpc_timeout 0 30265 NULL
++disable_so_last_moder_jiffies_mlx4_en_priv_30269 last_moder_jiffies mlx4_en_priv 0 30269 NULL nohasharray
++disable_so_vivid_radio_rx_s_hw_freq_seek_fndecl_30269 vivid_radio_rx_s_hw_freq_seek fndecl 0 30269 &disable_so_last_moder_jiffies_mlx4_en_priv_30269
++disable_so_start_empty_time_cfqg_stats_30276 start_empty_time cfqg_stats 0 30276 NULL nohasharray
++disable_so_i2c_addr_dib7000m_state_30276 i2c_addr dib7000m_state 0 30276 &disable_so_start_empty_time_cfqg_stats_30276
++disable_so_ext_phy_addr_amd8111e_priv_30286 ext_phy_addr amd8111e_priv 0 30286 NULL
++disable_so___account_cfs_rq_runtime_fndecl_30291 __account_cfs_rq_runtime fndecl 2 30291 NULL
++disable_so_snd_pcm_delay_fndecl_30298 snd_pcm_delay fndecl 0 30298 NULL
++disable_so_lpfc_cr_delay_store_fndecl_30310 lpfc_cr_delay_store fndecl 0 30310 NULL
++disable_so_uartlite_outbe32_fndecl_30324 uartlite_outbe32 fndecl 1 30324 NULL
++disable_so_intel_runtime_resume_fndecl_30334 intel_runtime_resume fndecl 0 30334 NULL
++disable_so_hv_tsc_page_kvm_arch_30336 hv_tsc_page kvm_arch 0 30336 NULL
++disable_so_snprintf_int_array_fndecl_30344 snprintf_int_array fndecl 2 30344 NULL
++disable_so___hw_addr_sync_one_fndecl_30350 __hw_addr_sync_one fndecl 0-3 30350 NULL
++disable_so_tuner_addr_em28xx_board_30367 tuner_addr em28xx_board 0 30367 NULL
++disable_so_stat_params_addr_hi_fcoe_kwqe_stat_30370 stat_params_addr_hi fcoe_kwqe_stat 0 30370 NULL
++disable_so_tv_hsync_delay2_nv04_crtc_reg_30375 tv_hsync_delay2 nv04_crtc_reg 0 30375 NULL
++disable_so_wlc_phy_table_addr_fndecl_30378 wlc_phy_table_addr fndecl 2-3-4-5-6 30378 NULL
++disable_so_rsa_setkey_fndecl_30386 rsa_setkey fndecl 3 30386 NULL
++disable_so_bcma_pmu_get_alp_clock_fndecl_30397 bcma_pmu_get_alp_clock fndecl 0 30397 NULL
++disable_so_timeout_nft_set_30398 timeout nft_set 0 30398 NULL
++disable_so_cm_create_timewait_info_fndecl_30403 cm_create_timewait_info fndecl 1 30403 NULL
++disable_so_start_time_bfa_diag_dport_result_s_30404 start_time bfa_diag_dport_result_s 0 30404 NULL
++disable_so_fw_schedule_bm_work_fndecl_30422 fw_schedule_bm_work fndecl 2 30422 NULL
++disable_so_xs_get_random_port_fndecl_30424 xs_get_random_port fndecl 0 30424 NULL
++disable_so_ba0_addr_snd_cs46xx_30426 ba0_addr snd_cs46xx 0 30426 NULL
++disable_so_rx_interframe_timeout_wil6210_priv_30430 rx_interframe_timeout wil6210_priv 0 30430 NULL
++disable_so_xfs_uuid_mount_fndecl_30439 xfs_uuid_mount fndecl 0 30439 NULL nohasharray
++disable_so_avtab_hash_fndecl_30439 avtab_hash fndecl 0-2 30439 &disable_so_xfs_uuid_mount_fndecl_30439
++disable_so_snd_seq_queue_timer_close_fndecl_30450 snd_seq_queue_timer_close fndecl 1 30450 NULL nohasharray
++disable_so_gid_cap_mthca_init_ib_param_30450 gid_cap mthca_init_ib_param 0 30450 &disable_so_snd_seq_queue_timer_close_fndecl_30450
++disable_so_powerdown_delay_divider_sta350_platform_data_30459 powerdown_delay_divider sta350_platform_data 0 30459 NULL nohasharray
++disable_so_acpi_pm_device_sleep_state_fndecl_30459 acpi_pm_device_sleep_state fndecl 0 30459 &disable_so_powerdown_delay_divider_sta350_platform_data_30459
++disable_so__regulator_get_enable_time_fndecl_30467 _regulator_get_enable_time fndecl 0 30467 NULL
++disable_so_hpet_set_alarm_time_fndecl_30469 hpet_set_alarm_time fndecl 3-2-1 30469 NULL
++disable_so_ctime_nsec_ubifs_ino_node_30480 ctime_nsec ubifs_ino_node 0 30480 NULL
++disable_so_ocfb_writereg_fndecl_30484 ocfb_writereg fndecl 3 30484 NULL
++disable_so_i2c_smbus_read_word_data_fndecl_30505 i2c_smbus_read_word_data fndecl 0-2 30505 NULL nohasharray
++disable_so_r13_kvm_regs_30505 r13 kvm_regs 0 30505 &disable_so_i2c_smbus_read_word_data_fndecl_30505
++disable_so_cb_gsc_addr_30507 cb gsc_addr 0 30507 NULL
++disable_so_freq_mwifiex_chan_freq_power_30518 freq mwifiex_chan_freq_power 0 30518 NULL
++disable_so_fflp_hash_clear_fndecl_30528 fflp_hash_clear fndecl 0 30528 NULL
++disable_so_time_stamp_ixgb_buffer_30530 time_stamp ixgb_buffer 0 30530 NULL
++disable_so_lbs_sleepparams_read_fndecl_30539 lbs_sleepparams_read fndecl 3-0 30539 NULL
++disable_so_extract_freq_fndecl_30555 extract_freq fndecl 0-1 30555 NULL
++disable_so_ndiv_int_pmu1_plltab_entry_30559 ndiv_int pmu1_plltab_entry 0 30559 NULL
++disable_so_u1_timeout_store_fndecl_30569 u1_timeout_store fndecl 0-4 30569 NULL
++disable_so_queue_working_time_show_fndecl_30574 queue_working_time_show fndecl 0 30574 NULL
++disable_so_addr_atiixp_30579 addr atiixp 0 30579 NULL
++disable_so_c67x00_ll_write_mem_le16_fndecl_30584 c67x00_ll_write_mem_le16 fndecl 2-4 30584 NULL
++disable_so_demod_address_atbm8830_config_30586 demod_address atbm8830_config 0 30586 NULL
++disable_so_crypto_hash_digest_fndecl_30590 crypto_hash_digest fndecl 0-3 30590 NULL
++disable_so_addr_filter__MGSL_PARAMS_30592 addr_filter _MGSL_PARAMS 0 30592 NULL
++disable_so_clock_khz_dib0070_config_30609 clock_khz dib0070_config 0 30609 NULL
++disable_so_sha1_mb_final_fndecl_30610 sha1_mb_final fndecl 0 30610 NULL
++disable_so_tw_rcv_nxt_tcp_timewait_sock_30612 tw_rcv_nxt tcp_timewait_sock 0 30612 NULL
++disable_so_xtal_freq_stb0899_config_30613 xtal_freq stb0899_config 0 30613 NULL
++disable_so_di_ctime_qnx6_inode_entry_30614 di_ctime qnx6_inode_entry 0 30614 NULL
++disable_so_start_time_lpfc_scsi_buf_30621 start_time lpfc_scsi_buf 0 30621 NULL
++disable_so_xfs_btree_log_keys_fndecl_30625 xfs_btree_log_keys fndecl 3-4 30625 NULL
++disable_so_pcpu_chunk_addr_fndecl_30628 pcpu_chunk_addr fndecl 0-2-3 30628 NULL
++disable_so_day_timestamp_30633 day timestamp 0 30633 NULL
++disable_so_rds_cong_from_addr_fndecl_30634 rds_cong_from_addr fndecl 1 30634 NULL
++disable_so_tx_dma_addr_smsc9420_pdata_30649 tx_dma_addr smsc9420_pdata 0 30649 NULL
++disable_so_xact_addr_filt_port_info_30664 xact_addr_filt port_info 0 30664 NULL
++disable_so_slot_time_rtl8180_priv_30669 slot_time rtl8180_priv 0 30669 NULL
++disable_so_store_guid_fndecl_30675 store_guid fndecl 0 30675 NULL
++disable_so_input_addr_to_csrow_fndecl_30677 input_addr_to_csrow fndecl 0-2 30677 NULL
++disable_so_sq_read_base_addr_a1_btmrvl_sdio_card_reg_30692 sq_read_base_addr_a1 btmrvl_sdio_card_reg 0 30692 NULL
++disable_so_fq_codel_hash_fndecl_30698 fq_codel_hash fndecl 0 30698 NULL
++disable_so_btrfs_add_delayed_extent_op_fndecl_30699 btrfs_add_delayed_extent_op fndecl 0-3-4 30699 NULL
++disable_so_enabled_hrtimer_events_fotg210_hcd_30705 enabled_hrtimer_events fotg210_hcd 0 30705 NULL
++disable_so_shift_sm501_clock_30710 shift sm501_clock 0 30710 NULL
++disable_so_tov_in_jiffies_tpacket_kbdq_core_30716 tov_in_jiffies tpacket_kbdq_core 0 30716 NULL nohasharray
++disable_so_rqq_addr_lo_addr_ctrl_blk_30716 rqq_addr_lo addr_ctrl_blk 0 30716 &disable_so_tov_in_jiffies_tpacket_kbdq_core_30716
++disable_so_fill_addr_fndecl_30730 fill_addr fndecl 0-3-4-6 30730 NULL
++disable_so_policy_hash_bysel_fndecl_30767 policy_hash_bysel fndecl 3 30767 NULL
++disable_so_flags_to_set_btrfs_delayed_extent_op_30771 flags_to_set btrfs_delayed_extent_op 0 30771 NULL
++disable_so_blk_mq_alloc_bitmap_fndecl_30774 blk_mq_alloc_bitmap fndecl 2 30774 NULL
++disable_so_btrfs_add_delayed_data_ref_fndecl_30775 btrfs_add_delayed_data_ref fndecl 0-11-3-4-5-6-7-8 30775 NULL
++disable_so_pm_runtime_get_fndecl_30787 pm_runtime_get fndecl 0 30787 NULL
++disable_so_dln2_spi_runtime_suspend_fndecl_30789 dln2_spi_runtime_suspend fndecl 0 30789 NULL
++disable_so_rq_page_table_addr_hi_iscsi_kwqe_conn_offload2_30790 rq_page_table_addr_hi iscsi_kwqe_conn_offload2 0 30790 NULL
++disable_so_crypto_authenc_esn_decrypt_fndecl_30793 crypto_authenc_esn_decrypt fndecl 0 30793 NULL
++disable_so_brcmf_cfg80211_wait_vif_event_timeout_fndecl_30794 brcmf_cfg80211_wait_vif_event_timeout fndecl 3-0 30794 NULL
++disable_so_sctp_getsockopt_nodelay_fndecl_30795 sctp_getsockopt_nodelay fndecl 0 30795 NULL nohasharray
++disable_so_sll_pkttype_sockaddr_ll_30795 sll_pkttype sockaddr_ll 0 30795 &disable_so_sctp_getsockopt_nodelay_fndecl_30795
++disable_so_txfunaddr_musb_csr_regs_30797 txfunaddr musb_csr_regs 0 30797 NULL
++disable_so_hash_phys_wd719x_30798 hash_phys wd719x 0 30798 NULL
++disable_so_io_base_address_info_30800 io_base address_info 0 30800 NULL
++disable_so_dummy_buffer_addr_lo_iscsi_kwqe_init1_30804 dummy_buffer_addr_lo iscsi_kwqe_init1 0 30804 NULL
++disable_so_root_btrfs_delayed_tree_ref_30811 root btrfs_delayed_tree_ref 0 30811 NULL nohasharray
++disable_so_sr_bit_offset_ocfs2_suballoc_result_30811 sr_bit_offset ocfs2_suballoc_result 0 30811 &disable_so_root_btrfs_delayed_tree_ref_30811
++disable_so_mmc_test_random_write_perf_fndecl_30814 mmc_test_random_write_perf fndecl 0 30814 NULL
++disable_so_block_num_ib_sa_guidinfo_rec_30816 block_num ib_sa_guidinfo_rec 0 30816 NULL
++disable_so_decode_attr_time_metadata_fndecl_30823 decode_attr_time_metadata fndecl 0 30823 NULL nohasharray
++disable_so_i40e_get_port_mac_addr_fndecl_30823 i40e_get_port_mac_addr fndecl 0 30823 &disable_so_decode_attr_time_metadata_fndecl_30823
++disable_so_first_frag_time_ieee80211_fragment_entry_30835 first_frag_time ieee80211_fragment_entry 0 30835 NULL nohasharray
++disable_so_ccp_crypto_success_fndecl_30835 ccp_crypto_success fndecl 1 30835 &disable_so_first_frag_time_ieee80211_fragment_entry_30835 nohasharray
++disable_so_recent_entry_hash4_fndecl_30835 recent_entry_hash4 fndecl 0 30835 &disable_so_ccp_crypto_success_fndecl_30835
++disable_so_rp0_freq_intel_gen6_power_mgmt_30837 rp0_freq intel_gen6_power_mgmt 0 30837 NULL
++disable_so_dm_btree_walk_fndecl_30840 dm_btree_walk fndecl 0-2 30840 NULL
++disable_so_hid_descriptor_address_i2c_hid_platform_data_30846 hid_descriptor_address i2c_hid_platform_data 0 30846 NULL
++disable_so_address_acpi_mcfg_allocation_30855 address acpi_mcfg_allocation 0 30855 NULL
++disable_so_hpfs_truncate_btree_fndecl_30857 hpfs_truncate_btree fndecl 2-4 30857 NULL
++disable_so_timestamp_transaction_30860 timestamp transaction 0 30860 NULL
++disable_so_crypto_pcbc_encrypt_inplace_fndecl_30862 crypto_pcbc_encrypt_inplace fndecl 0 30862 NULL
++disable_so_part_time_mmc_ext_csd_30871 part_time mmc_ext_csd 0 30871 NULL
++disable_so_vpd_paddr_high_lpfc_mbx_read_rev_30896 vpd_paddr_high lpfc_mbx_read_rev 0 30896 NULL
++disable_so_addr_nvkm_fifo_chan_30902 addr nvkm_fifo_chan 0 30902 NULL
++disable_so_crypto_register_algs_fndecl_30905 crypto_register_algs fndecl 0 30905 NULL nohasharray
++disable_so_dhash_entries_vardecl_dcache_c_30905 dhash_entries vardecl_dcache.c 0 30905 &disable_so_crypto_register_algs_fndecl_30905
++disable_so_bank_base_capture_addr_snd_ymfpci_30915 bank_base_capture_addr snd_ymfpci 0 30915 NULL
++disable_so_t2_hash_tbl_addr_hi_fcoe_kwqe_init2_30918 t2_hash_tbl_addr_hi fcoe_kwqe_init2 0 30918 NULL nohasharray
++disable_so_nilfs_btree_lookup_fndecl_30918 nilfs_btree_lookup fndecl 0-2 30918 &disable_so_t2_hash_tbl_addr_hi_fcoe_kwqe_init2_30918
++disable_so_cpufreq_set_fndecl_30921 cpufreq_set fndecl 2 30921 NULL
++disable_so_phys_addr_sge_fl_30927 phys_addr sge_fl 0 30927 NULL
++disable_so_brcms_c_calc_ack_time_fndecl_30936 brcms_c_calc_ack_time fndecl 0-2 30936 NULL
++disable_so_limit_gma_clock_funcs_30938 limit gma_clock_funcs 2 30938 NULL nohasharray
++disable_so_xenbus_printf_fndecl_30938 xenbus_printf fndecl 0 30938 &disable_so_limit_gma_clock_funcs_30938
++disable_so_qlcnic_decode_crb_addr_fndecl_30939 qlcnic_decode_crb_addr fndecl 0-1 30939 NULL
++disable_so_last_sleep_jiffies_rtl_ps_ctl_30947 last_sleep_jiffies rtl_ps_ctl 0 30947 NULL nohasharray
++disable_so___virtio64_to_cpu_fndecl_30947 __virtio64_to_cpu fndecl 0 30947 &disable_so_last_sleep_jiffies_rtl_ps_ctl_30947
++disable_so_do_one_ahash_op_fndecl_30974 do_one_ahash_op fndecl 0-2 30974 NULL
++disable_so_dev_bus_addr_gnttab_map_grant_ref_30975 dev_bus_addr gnttab_map_grant_ref 0 30975 NULL
++disable_so_sctp_getsockopt_delayed_ack_fndecl_30979 sctp_getsockopt_delayed_ack fndecl 2-0 30979 NULL
++disable_so_mclk_div_cfb_info_30983 mclk_div cfb_info 0 30983 NULL
++disable_so_HYPERVISOR_update_va_mapping_fndecl_30985 HYPERVISOR_update_va_mapping fndecl 1 30985 NULL
++disable_so_xfrm_addr_any_fndecl_30992 xfrm_addr_any fndecl 2 30992 NULL
++disable_so_cyapa_gen5_deep_sleep_fndecl_30993 cyapa_gen5_deep_sleep fndecl 0 30993 NULL
++disable_so_addr_unlock1_cfi_private_30996 addr_unlock1 cfi_private 0 30996 NULL
++disable_so_adc_cell_ti_tscadc_dev_31010 adc_cell ti_tscadc_dev 0 31010 NULL
++disable_so_vpe_runtime_get_fndecl_31015 vpe_runtime_get fndecl 0 31015 NULL
++disable_so_crypto_cts_module_init_fndecl_31019 crypto_cts_module_init fndecl 0 31019 NULL
++disable_so_show_fan_stop_time_fndecl_31023 show_fan_stop_time fndecl 0 31023 NULL
++disable_so_addr_bnx2_fw_file_section_31025 addr bnx2_fw_file_section 0 31025 NULL
++disable_so_seg_addr_xhci_erst_entry_31037 seg_addr xhci_erst_entry 0 31037 NULL
++disable_so_fb_get_hblank_by_hfreq_fndecl_31039 fb_get_hblank_by_hfreq fndecl 0-1-2 31039 NULL
++disable_so_addr_hif_scatter_req_31042 addr hif_scatter_req 0 31042 NULL
++disable_so_sg_page_iter_dma_address_fndecl_31047 sg_page_iter_dma_address fndecl 0 31047 NULL
++disable_so_btrfsic_block_hashtable_lookup_fndecl_31074 btrfsic_block_hashtable_lookup fndecl 2 31074 NULL
++disable_so_tm6000_set_reg_fndecl_31090 tm6000_set_reg fndecl 0-3-4 31090 NULL
++disable_so_sense_buf_phys_addr_lo_megasas_io_frame_31098 sense_buf_phys_addr_lo megasas_io_frame 0 31098 NULL
++disable_so_batadv_iv_ogm_emit_send_time_fndecl_31100 batadv_iv_ogm_emit_send_time fndecl 0 31100 NULL
++disable_so_pcf8563_rtc_set_time_fndecl_31101 pcf8563_rtc_set_time fndecl 0 31101 NULL
++disable_so_s_extPosition_udf_bitmap_31104 s_extPosition udf_bitmap 0 31104 NULL
++disable_so_base_io_addr__hp_host_info_31105 base_io_addr _hp_host_info 0 31105 NULL
++disable_so_tsi721_omsg_interrupt_disable_fndecl_31108 tsi721_omsg_interrupt_disable fndecl 3-2 31108 NULL
++disable_so_ac_etime_acct_v3_31115 ac_etime acct_v3 0 31115 NULL
++disable_so_io_bitmap_a_vmcs12_31120 io_bitmap_a vmcs12 0 31120 NULL
++disable_so_vddci_radeon_clock_and_voltage_limits_31124 vddci radeon_clock_and_voltage_limits 0 31124 NULL
++disable_so_format_snd_pcm_runtime_31130 format snd_pcm_runtime 0 31130 NULL
++disable_so_ds3232_set_time_fndecl_31132 ds3232_set_time fndecl 0 31132 NULL
++disable_so_mlx4_bitmap_init_fndecl_31138 mlx4_bitmap_init fndecl 0-2-3-4-5 31138 NULL
++disable_so_nfs4_xdr_dec_get_lease_time_fndecl_31141 nfs4_xdr_dec_get_lease_time fndecl 0 31141 NULL
++disable_so_active_ata_timing_31146 active ata_timing 0 31146 NULL
++disable_so_cpuidle_register_driver_fndecl_31155 cpuidle_register_driver fndecl 0 31155 NULL
++disable_so_sha1_ssse3_mod_init_fndecl_31158 sha1_ssse3_mod_init fndecl 0 31158 NULL
++disable_so_trust_timeout_wusbhc_31165 trust_timeout wusbhc 0 31165 NULL
++disable_so___crypto_memneq_generic_fndecl_31174 __crypto_memneq_generic fndecl 3 31174 NULL
++disable_so_hash_ipportip4_expire_fndecl_31188 hash_ipportip4_expire fndecl 4 31188 NULL
++disable_so_timestamp_sniffed_purge_batadv_priv_nc_31190 timestamp_sniffed_purge batadv_priv_nc 0 31190 NULL
++disable_so_i915_min_freq_get_fndecl_31193 i915_min_freq_get fndecl 0 31193 NULL
++disable_so_max_scan_time_wmi_start_scan_arg_31206 max_scan_time wmi_start_scan_arg 0 31206 NULL nohasharray
++disable_so_n_pins_ptp_clock_info_31206 n_pins ptp_clock_info 0 31206 &disable_so_max_scan_time_wmi_start_scan_arg_31206
++disable_so_adis16136_read_frequency_fndecl_31213 adis16136_read_frequency fndecl 0 31213 NULL
++disable_so_dce_v11_0_crtc_set_base_atomic_fndecl_31215 dce_v11_0_crtc_set_base_atomic fndecl 0 31215 NULL
++disable_so_clock2alarm_fndecl_31223 clock2alarm fndecl 1 31223 NULL
++disable_so_timeout_wait_bit_key_31247 timeout wait_bit_key 0 31247 NULL
++disable_so_time_offset_fat_mount_options_31254 time_offset fat_mount_options 0 31254 NULL
++disable_so_max3421_set_address_fndecl_31258 max3421_set_address fndecl 3 31258 NULL
++disable_so_tick_gtod_sched_clock_data_31262 tick_gtod sched_clock_data 0 31262 NULL
++disable_so_freq_usb_usbvision_31263 freq usb_usbvision 0 31263 NULL
++disable_so_address_high_sbp2_target_31266 address_high sbp2_target 0 31266 NULL nohasharray
++disable_so_batadv_orig_hash_add_if_fndecl_31266 batadv_orig_hash_add_if fndecl 0-2 31266 &disable_so_address_high_sbp2_target_31266
++disable_so_rx8581_rtc_read_time_fndecl_31271 rx8581_rtc_read_time fndecl 0 31271 NULL
++disable_so_address_acpi_madt_io_apic_31284 address acpi_madt_io_apic 0 31284 NULL
++disable_so_qce_setup_regs_ahash_fndecl_31290 qce_setup_regs_ahash fndecl 0 31290 NULL
++disable_so_freq_offset_khz_uhf_dib0070_config_31304 freq_offset_khz_uhf dib0070_config 0 31304 NULL
++disable_so_dmaaddr_lanai_buffer_31308 dmaaddr lanai_buffer 0 31308 NULL
++disable_so_selinux_mmap_addr_fndecl_31313 selinux_mmap_addr fndecl 0 31313 NULL
++disable_so_wt_timeout_st21nfcb_se_info_31334 wt_timeout st21nfcb_se_info 0 31334 NULL
++disable_so_baseaddr_h_mvumi_sgl_31335 baseaddr_h mvumi_sgl 0 31335 NULL
++disable_so_mmc_send_relative_addr_fndecl_31338 mmc_send_relative_addr fndecl 0 31338 NULL nohasharray
++disable_so_ufs_bitmap_search_fndecl_31338 ufs_bitmap_search fndecl 0-3-4 31338 &disable_so_mmc_send_relative_addr_fndecl_31338 nohasharray
++disable_so_cur_tsc_offset_kvm_arch_31338 cur_tsc_offset kvm_arch 0 31338 &disable_so_ufs_bitmap_search_fndecl_31338
++disable_so_xfs_btree_check_lptr_fndecl_31339 xfs_btree_check_lptr fndecl 0 31339 NULL
++disable_so_dynamic_ps_timeout_read_fndecl_31341 dynamic_ps_timeout_read fndecl 3-0 31341 NULL
++disable_so_ret_ccp_crypto_cmd_31344 ret ccp_crypto_cmd 0 31344 NULL
++disable_so_physical_mem_addr_wl1251_31345 physical_mem_addr wl1251 0 31345 NULL
++disable_so_schedule_work_on_fndecl_31361 schedule_work_on fndecl 1 31361 NULL
++disable_so_es_tss_segment_32_31367 es tss_segment_32 0 31367 NULL
++disable_so_link_schedule_user_fndecl_31379 link_schedule_user fndecl 0 31379 NULL
++disable_so_vsock_addr_cast_fndecl_31386 vsock_addr_cast fndecl 2 31386 NULL
++disable_so_debug_dma_sync_single_for_cpu_fndecl_31387 debug_dma_sync_single_for_cpu fndecl 3-2 31387 NULL
++disable_so_num_bytes_btrfs_delayed_ref_node_31390 num_bytes btrfs_delayed_ref_node 0 31390 NULL
++disable_so_clockevents_config_fndecl_31391 clockevents_config fndecl 2 31391 NULL nohasharray
++disable_so_wl1271_acx_host_if_cfg_bitmap_fndecl_31391 wl1271_acx_host_if_cfg_bitmap fndecl 0 31391 &disable_so_clockevents_config_fndecl_31391
++disable_so_kstrtol_from_user_fndecl_31403 kstrtol_from_user fndecl 0-2 31403 NULL
++disable_so_req_timeout_ppp_31406 req_timeout ppp 0 31406 NULL
++disable_so_recvsignalpower_rtl_stats_31407 recvsignalpower rtl_stats 0 31407 NULL
++disable_so_gr_log_signal_fndecl_31408 gr_log_signal fndecl 1 31408 NULL
++disable_so_round_jiffies_up_relative_fndecl_31409 round_jiffies_up_relative fndecl 1-0 31409 NULL
++disable_so_nr_cs5535_mfgpt_timer_31410 nr cs5535_mfgpt_timer 0 31410 NULL
++disable_so_af9005_fe_read_signal_strength_fndecl_31416 af9005_fe_read_signal_strength fndecl 0 31416 NULL nohasharray
++disable_so_aes_decrypt_packets_read_fndecl_31416 aes_decrypt_packets_read fndecl 0-3 31416 &disable_so_af9005_fe_read_signal_strength_fndecl_31416
++disable_so_usnic_uiom_interval_tree_subtree_search_fndecl_31422 usnic_uiom_interval_tree_subtree_search fndecl 2-3 31422 NULL nohasharray
++disable_so_ima_calc_file_hash_tfm_fndecl_31422 ima_calc_file_hash_tfm fndecl 0 31422 &disable_so_usnic_uiom_interval_tree_subtree_search_fndecl_31422
++disable_so_rxrpc_max_call_lifetime_vardecl_31433 rxrpc_max_call_lifetime vardecl 0 31433 NULL nohasharray
++disable_so_di_gid_logfs_disk_inode_31433 di_gid logfs_disk_inode 0 31433 &disable_so_rxrpc_max_call_lifetime_vardecl_31433
++disable_so_ds1374_wdt_settimeout_fndecl_31434 ds1374_wdt_settimeout fndecl 1-0 31434 NULL
++disable_so_tei_sockaddr_mISDN_31438 tei sockaddr_mISDN 0 31438 NULL
++disable_so_bs_sleepduration_ath9k_beacon_state_31443 bs_sleepduration ath9k_beacon_state 0 31443 NULL
++disable_so_pci_bus_write_config_word_fndecl_31447 pci_bus_write_config_word fndecl 0-2-3-4 31447 NULL
++disable_so_cra_ctxsize_crypto_alg_31451 cra_ctxsize crypto_alg 0 31451 NULL
++disable_so_dmable_fw_paddr_sst_fw_31454 dmable_fw_paddr sst_fw 0 31454 NULL
++disable_so_nsec_btrfs_timespec_31463 nsec btrfs_timespec 0 31463 NULL nohasharray
++disable_so_set_timeout_fndecl_31463 set_timeout fndecl 2-0 31463 &disable_so_nsec_btrfs_timespec_31463
++disable_so_ima_calc_field_array_hash_tfm_fndecl_31467 ima_calc_field_array_hash_tfm fndecl 0-3 31467 NULL
++disable_so_bond_eth_hash_fndecl_31472 bond_eth_hash fndecl 0 31472 NULL
++disable_so_task_setscheduler_security_operations_31479 task_setscheduler security_operations 0 31479 NULL
++disable_so_cs_tss_segment_32_31480 cs tss_segment_32 0 31480 NULL
++disable_so_intr_gen_timer_thresh_ath_hw_31491 intr_gen_timer_thresh ath_hw 0 31491 NULL nohasharray
++disable_so_nilfs_btree_find_near_fndecl_31491 nilfs_btree_find_near fndecl 0 31491 &disable_so_intr_gen_timer_thresh_ath_hw_31491
++disable_so_sta_last_ack_signal_read_fndecl_31492 sta_last_ack_signal_read fndecl 3 31492 NULL
++disable_so___uwb_dev_addr_assigned_fndecl_31493 __uwb_dev_addr_assigned fndecl 0 31493 NULL
++disable_so_uuid_show_fndecl_31494 uuid_show fndecl 0 31494 NULL
++disable_so_elan_sleep_fndecl_31502 elan_sleep fndecl 0 31502 NULL
++disable_so_setkey_crypto_aead_31507 setkey crypto_aead 0-3 31507 NULL
++disable_so_ebitmap_netlbl_import_fndecl_31508 ebitmap_netlbl_import fndecl 0 31508 NULL
++disable_so_ccp_aes_rfc3686_decrypt_fndecl_31513 ccp_aes_rfc3686_decrypt fndecl 0 31513 NULL
++disable_so_timeout_map_r8a66597_31517 timeout_map r8a66597 0 31517 NULL
++disable_so_vga_switcheroo_runtime_resume_hdmi_audio_fndecl_31521 vga_switcheroo_runtime_resume_hdmi_audio fndecl 0 31521 NULL nohasharray
++disable_so_in_div_min_matrox_pll_features_31521 in_div_min matrox_pll_features 0 31521 &disable_so_vga_switcheroo_runtime_resume_hdmi_audio_fndecl_31521
++disable_so_hashbin_insert_fndecl_31527 hashbin_insert fndecl 3 31527 NULL
++disable_so_reset_jiffies_fw_card_31535 reset_jiffies fw_card 0 31535 NULL
++disable_so_addr_gk20a_instmem_priv_31544 addr gk20a_instmem_priv 0 31544 NULL
++disable_so_vringh32_to_cpu_fndecl_31546 vringh32_to_cpu fndecl 0-2 31546 NULL
++disable_so_qat_hash_alg_qat_alg_aead_ctx_31550 qat_hash_alg qat_alg_aead_ctx 0 31550 NULL
++disable_so_timeout_move_vardecl_ch_c_31551 timeout_move vardecl_ch.c 0 31551 NULL
++disable_so_iowrite8_rep_fndecl_31565 iowrite8_rep fndecl 3 31565 NULL
++disable_so_omfs_hash_fndecl_31572 omfs_hash fndecl 0-3 31572 NULL
++disable_so_ltc3589_set_ramp_delay_fndecl_31580 ltc3589_set_ramp_delay fndecl 0 31580 NULL
++disable_so_wants_signal_fndecl_31583 wants_signal fndecl 1 31583 NULL
++disable_so_set_sig_addr_fndecl_31588 set_sig_addr fndecl 4 31588 NULL
++disable_so_udelay_i2c_algo_bit_data_31597 udelay i2c_algo_bit_data 0 31597 NULL
++disable_so_wlapi_add_timer_fndecl_31598 wlapi_add_timer fndecl 2 31598 NULL
++disable_so_gid_min_xt_owner_match_info_31604 gid_min xt_owner_match_info 0 31604 NULL
++disable_so_mmap_addr_security_operations_31609 mmap_addr security_operations 0-1 31609 NULL
++disable_so_cache_time_vardecl_battery_c_31620 cache_time vardecl_battery.c 0 31620 NULL
++disable_so_idletimer_tg_checkentry_fndecl_31633 idletimer_tg_checkentry fndecl 0 31633 NULL
++disable_so_sha256_ssse3_finup_fndecl_31637 sha256_ssse3_finup fndecl 3 31637 NULL
++disable_so_f1x_translate_sysaddr_to_cs_fndecl_31647 f1x_translate_sysaddr_to_cs fndecl 0-2 31647 NULL
++disable_so_partial_name_hash_fndecl_31651 partial_name_hash fndecl 0-1-2 31651 NULL
++disable_so_edx_v86_regs_31655 edx v86_regs 0 31655 NULL
++disable_so_kdb_printf_fndecl_31658 kdb_printf fndecl 0 31658 NULL
++disable_so_voltage_response_time_radeon_dpm_31671 voltage_response_time radeon_dpm 0 31671 NULL
++disable_so_ufshcd_pci_runtime_resume_fndecl_31682 ufshcd_pci_runtime_resume fndecl 0 31682 NULL
++disable_so_trace_clock_jiffies_fndecl_31684 trace_clock_jiffies fndecl 0 31684 NULL
++disable_so_crypto_rfc4543_crypt_fndecl_31691 crypto_rfc4543_crypt fndecl 0 31691 NULL
++disable_so_qp_bitmap_ntb_transport_ctx_31692 qp_bitmap ntb_transport_ctx 0 31692 NULL
++disable_so_mclk_radeon_clock_and_voltage_limits_31701 mclk radeon_clock_and_voltage_limits 0 31701 NULL
++disable_so_hash_dev_block_bits_dm_verity_31709 hash_dev_block_bits dm_verity 0 31709 NULL
++disable_so_crypto_gcm_init_crypt_fndecl_31718 crypto_gcm_init_crypt fndecl 2 31718 NULL
++disable_so_addr_ahd_dma_seg_31719 addr ahd_dma_seg 0 31719 NULL
++disable_so_rx_frame_ath_cycle_counters_31739 rx_frame ath_cycle_counters 0 31739 NULL
++disable_so_nadc_aic32x4_rate_divs_31741 nadc aic32x4_rate_divs 0 31741 NULL
++disable_so_gpu_addr_r600_ih_31749 gpu_addr r600_ih 0 31749 NULL
++disable_so_acpi_ex_system_do_sleep_fndecl_31750 acpi_ex_system_do_sleep fndecl 0-1 31750 NULL
++disable_so_bigdirindaddr_adfs_bigdirentry_31757 bigdirindaddr adfs_bigdirentry 0 31757 NULL
++disable_so_vm_entry_msr_load_addr_vmcs12_31781 vm_entry_msr_load_addr vmcs12 0 31781 NULL
++disable_so_qce_ahash_async_req_handle_fndecl_31785 qce_ahash_async_req_handle fndecl 0 31785 NULL
++disable_so_ecryptfs_calculate_md5_fndecl_31787 ecryptfs_calculate_md5 fndecl 0-4 31787 NULL
++disable_so_pixclock_fb_var_screeninfo_31790 pixclock fb_var_screeninfo 0 31790 NULL
++disable_so_from_kgid_munged_fndecl_31791 from_kgid_munged fndecl 0 31791 NULL
++disable_so_memsize_bitmap_ipmac_31792 memsize bitmap_ipmac 0 31792 NULL
++disable_so_ctxsize_crypto_type_31795 ctxsize crypto_type 0 31795 NULL
++disable_so_fpage_dma_addr_genwqe_sgl_31796 fpage_dma_addr genwqe_sgl 0 31796 NULL
++disable_so_qib_hol_timeout_ms_vardecl_qib_tx_c_31801 qib_hol_timeout_ms vardecl_qib_tx.c 0 31801 NULL
++disable_so_ping_timeout_iscsi_conn_31802 ping_timeout iscsi_conn 0 31802 NULL
++disable_so_rpcauth_key_timeout_notify_fndecl_31805 rpcauth_key_timeout_notify fndecl 0 31805 NULL
++disable_so_snd_timer_open_fndecl_31807 snd_timer_open fndecl 4 31807 NULL
++disable_so_it_overrun_last_k_itimer_31814 it_overrun_last k_itimer 0 31814 NULL
++disable_so_mapaddr_rocker_dma_ring_info_31819 mapaddr rocker_dma_ring_info 0 31819 NULL
++disable_so_disarm_req_delay_fndecl_31821 disarm_req_delay fndecl 0 31821 NULL
++disable_so_bus_addr_mvumi_res_31827 bus_addr mvumi_res 0 31827 NULL nohasharray
++disable_so_dev_sas_addr_mvs_phy_31827 dev_sas_addr mvs_phy 0 31827 &disable_so_bus_addr_mvumi_res_31827 nohasharray
++disable_so_select_addr_qla8044_minidump_entry_queue_31827 select_addr qla8044_minidump_entry_queue 0 31827 &disable_so_dev_sas_addr_mvs_phy_31827
++disable_so_lzo1x_decompress_safe_fndecl_31834 lzo1x_decompress_safe fndecl 2 31834 NULL
++disable_so_spte_is_bit_cleared_fndecl_31843 spte_is_bit_cleared fndecl 2-3 31843 NULL
++disable_so_mclk_radeon_pm_clock_info_31848 mclk radeon_pm_clock_info 0 31848 NULL
++disable_so_timer_expires_wakeup_source_31849 timer_expires wakeup_source 0 31849 NULL
++disable_so_si_populate_memory_timing_parameters_fndecl_31852 si_populate_memory_timing_parameters fndecl 0 31852 NULL
++disable_so_offset_timex_31854 offset timex 0 31854 NULL
++disable_so_tuner_addr_tvcard_31862 tuner_addr tvcard 0 31862 NULL
++disable_so_mask_and_set_register_interruptible_fndecl_31871 mask_and_set_register_interruptible fndecl 0 31871 NULL
++disable_so_generic_set_freq_fndecl_31881 generic_set_freq fndecl 0-2-3 31881 NULL
++disable_so_quota_iwl_time_quota_data_31890 quota iwl_time_quota_data 0 31890 NULL
++disable_so_timer_set_at_tlan_priv_31902 timer_set_at tlan_priv 0 31902 NULL
++disable_so_update_time_ds2760_device_info_31906 update_time ds2760_device_info 0 31906 NULL
++disable_so_qlcnic_83xx_wrt_reg_indirect_fndecl_31907 qlcnic_83xx_wrt_reg_indirect fndecl 2-3 31907 NULL
++disable_so_nmi_timer_setup_fndecl_31908 nmi_timer_setup fndecl 0 31908 NULL
++disable_so_period_size_atmel_runtime_data_31909 period_size atmel_runtime_data 0 31909 NULL
++disable_so_spi_pioavailaddr_qib_base_info_31911 spi_pioavailaddr qib_base_info 0 31911 NULL
++disable_so_err_msr_info_31913 err msr_info 0 31913 NULL
++disable_so_pcan_usb_fd_set_clock_domain_fndecl_31920 pcan_usb_fd_set_clock_domain fndecl 0 31920 NULL
++disable_so_i_ipmi_set_timeout_fndecl_31922 i_ipmi_set_timeout fndecl 0 31922 NULL
++disable_so_tw_ts_offset_tcp_timewait_sock_31933 tw_ts_offset tcp_timewait_sock 0 31933 NULL
++disable_so_shash_setkey_unaligned_fndecl_31935 shash_setkey_unaligned fndecl 3 31935 NULL
++disable_so_kempld_wdt_get_timeout_fndecl_31937 kempld_wdt_get_timeout fndecl 0 31937 NULL
++disable_so_addr___mux_31940 addr __mux 0 31940 NULL
++disable_so_clk_divider_bestdiv_fndecl_31941 clk_divider_bestdiv fndecl 2-0-5 31941 NULL
++disable_so_bm_words_drbd_bitmap_31943 bm_words drbd_bitmap 0 31943 NULL
++disable_so_timeout_show_fndecl_31957 timeout_show fndecl 0 31957 NULL
++disable_so_snd_hdsp_info_system_clock_mode_fndecl_31974 snd_hdsp_info_system_clock_mode fndecl 0 31974 NULL
++disable_so_time_wrap_offset_vivid_dev_31985 time_wrap_offset vivid_dev 0 31985 NULL
++disable_so_addr_iwl_fw_dbg_reg_op_31986 addr iwl_fw_dbg_reg_op 0 31986 NULL
++disable_so_xclk_ref_div_pll_ct_31987 xclk_ref_div pll_ct 0 31987 NULL
++disable_so_rd32_nvkm_ofuncs_31990 rd32 nvkm_ofuncs 0-2 31990 NULL
++disable_so_addr_sis5595_data_32006 addr sis5595_data 0 32006 NULL
++disable_so_demod_address_cx22702_config_32010 demod_address cx22702_config 0 32010 NULL
++disable_so_hashlimit_init_dst_fndecl_32011 hashlimit_init_dst fndecl 4 32011 NULL
++disable_so_cx24113_set_frequency_fndecl_32013 cx24113_set_frequency fndecl 2 32013 NULL
++disable_so_bq2415x_sysfs_set_timer_fndecl_32020 bq2415x_sysfs_set_timer fndecl 0-4 32020 NULL
++disable_so___find_rev_next_zero_bit_fndecl_32028 __find_rev_next_zero_bit fndecl 0-2-3 32028 NULL
++disable_so_ahd_outb_fndecl_32029 ahd_outb fndecl 2-3 32029 NULL
++disable_so_pfn_to_mfn_frame_list_list_arch_shared_info_32030 pfn_to_mfn_frame_list_list arch_shared_info 0 32030 NULL
++disable_so_viafb_set_vclock_fndecl_32033 viafb_set_vclock fndecl 1 32033 NULL
++disable_so_paddr_csio_dma_buf_32035 paddr csio_dma_buf 0 32035 NULL
++disable_so_tw_ts_recent_stamp_tcp_timewait_sock_32042 tw_ts_recent_stamp tcp_timewait_sock 0 32042 NULL
++disable_so_rangetr_hash_fndecl_32045 rangetr_hash fndecl 0 32045 NULL
++disable_so_vsyn_off_hdmi_timings_32055 vsyn_off hdmi_timings 0 32055 NULL
++disable_so_fnic_dev_mac_addr_fndecl_32057 fnic_dev_mac_addr fndecl 0 32057 NULL nohasharray
++disable_so_s921_read_signal_strength_fndecl_32057 s921_read_signal_strength fndecl 0 32057 &disable_so_fnic_dev_mac_addr_fndecl_32057
++disable_so_iscsit_ta_login_timeout_fndecl_32061 iscsit_ta_login_timeout fndecl 0 32061 NULL
++disable_so_btrfs_delayed_ref_init_fndecl_32064 btrfs_delayed_ref_init fndecl 0 32064 NULL
++disable_so_clk_register_divider_fndecl_32066 clk_register_divider fndecl 7-6 32066 NULL
++disable_so_compat_sys_timerfd_settime_fndecl_32068 compat_sys_timerfd_settime fndecl 1 32068 NULL
++disable_so_last_tsc_write_kvm_arch_32069 last_tsc_write kvm_arch 0 32069 NULL
++disable_so_timeout_mraid_mmadp_32081 timeout mraid_mmadp 0 32081 NULL
++disable_so_selinux_task_getscheduler_fndecl_32087 selinux_task_getscheduler fndecl 0 32087 NULL
++disable_so_handle_slaves_guid_change_fndecl_32090 handle_slaves_guid_change fndecl 2-3 32090 NULL
++disable_so_r68_val_fc2580_freq_regs_32091 r68_val fc2580_freq_regs 0 32091 NULL
++disable_so_cx23885_set_frequency_fndecl_32119 cx23885_set_frequency fndecl 0 32119 NULL
++disable_so_freqn_snd_usb_endpoint_32123 freqn snd_usb_endpoint 0 32123 NULL
++disable_so_prandom_bytes_fndecl_32129 prandom_bytes fndecl 2 32129 NULL nohasharray
++disable_so_tfmsize_crypto_type_32129 tfmsize crypto_type 0 32129 &disable_so_prandom_bytes_fndecl_32129
++disable_so_freq_ar9170_calibration_target_power_legacy_32133 freq ar9170_calibration_target_power_legacy 0 32133 NULL nohasharray
++disable_so_addr_buffer_state_32133 addr buffer_state 0 32133 &disable_so_freq_ar9170_calibration_target_power_legacy_32133
++enable_so_max_rate_idx_ieee80211_tx_rate_control_32134 max_rate_idx ieee80211_tx_rate_control 0 32134 NULL nohasharray
++disable_so_btree_invalidatepage_fndecl_32134 btree_invalidatepage fndecl 2 32134 &enable_so_max_rate_idx_ieee80211_tx_rate_control_32134
++disable_so_hfs_bnode_findhash_fndecl_32138 hfs_bnode_findhash fndecl 2 32138 NULL
++disable_so_symhash_fndecl_32144 symhash fndecl 0 32144 NULL
++disable_so_ahc_print_register_fndecl_32148 ahc_print_register fndecl 5 32148 NULL
++disable_so_rq_majortimeo_rpc_rqst_32158 rq_majortimeo rpc_rqst 0 32158 NULL
++disable_so_ber_jiffies_stats_dib7000p_state_32159 ber_jiffies_stats dib7000p_state 0 32159 NULL
++disable_so_i_mtime_f2fs_inode_32162 i_mtime f2fs_inode 0 32162 NULL
++disable_so_addr_cistpl_checksum_t_32163 addr cistpl_checksum_t 0 32163 NULL
++disable_so_n_fll_div_32168 n fll_div 0 32168 NULL
++disable_so_advance_jiffies_uhci_qh_32179 advance_jiffies uhci_qh 0 32179 NULL
++disable_so_query_dv_timings_last_vivid_dev_32182 query_dv_timings_last vivid_dev 0 32182 NULL
++disable_so_mlx4_reset_roce_gids_fndecl_32207 mlx4_reset_roce_gids fndecl 2 32207 NULL
++disable_so_addr_rec_vals_32208 addr rec_vals 0 32208 NULL
++disable_so_chunks_bitmap_counts_32213 chunks bitmap_counts 0 32213 NULL
++disable_so_irq_create_mapping_fndecl_32230 irq_create_mapping fndecl 0-2 32230 NULL
++disable_so_addr_lo_eth_tx_start_bd_32234 addr_lo eth_tx_start_bd 0 32234 NULL
++disable_so_radeon_irq_kms_sw_irq_get_delayed_fndecl_32235 radeon_irq_kms_sw_irq_get_delayed fndecl 2 32235 NULL
++disable_so_irlap_start_slot_timer_fndecl_32236 irlap_start_slot_timer fndecl 2 32236 NULL
++disable_so_get_timeout_fndecl_32254 get_timeout fndecl 0 32254 NULL
++disable_so_smk_open_netlbladdr_fndecl_32279 smk_open_netlbladdr fndecl 0 32279 NULL
++disable_so_cifs_dfs_mountpoint_expiry_timeout_vardecl_cifs_dfs_ref_c_32281 cifs_dfs_mountpoint_expiry_timeout vardecl_cifs_dfs_ref.c 0 32281 NULL
++disable_so_freq_stb0899_internal_32287 freq stb0899_internal 0 32287 NULL
++disable_so_crypto_cmac_digest_update_fndecl_32293 crypto_cmac_digest_update fndecl 3 32293 NULL
++disable_so_sirf_usp_pcm_runtime_resume_fndecl_32303 sirf_usp_pcm_runtime_resume fndecl 0 32303 NULL
++disable_so_show_state_time_fndecl_32307 show_state_time fndecl 0 32307 NULL
++disable_so_max_freq_dw_spi_32310 max_freq dw_spi 0 32310 NULL
++disable_so_msg_stime_msqid64_ds_32312 msg_stime msqid64_ds 0 32312 NULL
++disable_so_xtalfreq_brcms_phy_32317 xtalfreq brcms_phy 0 32317 NULL
++disable_so_cpu_to_be32_array_fndecl_32318 cpu_to_be32_array fndecl 3 32318 NULL
++disable_so_addr_tuner_setup_32321 addr tuner_setup 0 32321 NULL
++disable_so_schedule_timeout_interruptible_fndecl_32331 schedule_timeout_interruptible fndecl 0-1 32331 NULL
++disable_so_shm16read_addr_next_b43_dfsentry_32334 shm16read_addr_next b43_dfsentry 0 32334 NULL
++disable_so_ver_sync_start_via_display_timing_32337 ver_sync_start via_display_timing 0 32337 NULL
++disable_so_ath9k_hw_synth_delay_fndecl_32339 ath9k_hw_synth_delay fndecl 3 32339 NULL
++disable_so_sys_setpgid_fndecl_32340 sys_setpgid fndecl 1-2 32340 NULL
++disable_so_mmc_test_random_read_perf_fndecl_32342 mmc_test_random_read_perf fndecl 0 32342 NULL nohasharray
++disable_so_addrmax_vxlan_dev_32342 addrmax vxlan_dev 0 32342 &disable_so_mmc_test_random_read_perf_fndecl_32342
++disable_so_interrupt_in_interval_ld_usb_32353 interrupt_in_interval ld_usb 0 32353 NULL
++disable_so_mlx4_ib_slave_alias_guid_event_fndecl_32363 mlx4_ib_slave_alias_guid_event fndecl 2-3 32363 NULL
++disable_so_usb_addr_u132_udev_32366 usb_addr u132_udev 0 32366 NULL
++disable_so_account_shared_subtree_fndecl_32369 account_shared_subtree fndecl 4-5 32369 NULL
++disable_so_process_tgid_exec_proc_event_32371 process_tgid exec_proc_event 0 32371 NULL
++disable_so_resp_bd_list_addr_hi_bnx2i_text_request_32375 resp_bd_list_addr_hi bnx2i_text_request 0 32375 NULL nohasharray
++disable_so_rhashtable_lookup_insert_key_fndecl_32375 rhashtable_lookup_insert_key fndecl 0 32375 &disable_so_resp_bd_list_addr_hi_bnx2i_text_request_32375
++disable_so_last_ave_beacon_signal_ieee80211_if_managed_32405 last_ave_beacon_signal ieee80211_if_managed 0 32405 NULL
++disable_so_vml_nearest_clock_fndecl_32407 vml_nearest_clock fndecl 1-0 32407 NULL
++disable_so_silence_start_snd_pcm_runtime_32410 silence_start snd_pcm_runtime 0 32410 NULL
++disable_so_setfreq_fndecl_32411 setfreq fndecl 2 32411 NULL
++disable_so_nent_kvm_cpuid_32413 nent kvm_cpuid 0 32413 NULL
++disable_so_try_to_del_timer_sync_fndecl_32416 try_to_del_timer_sync fndecl 0 32416 NULL
++disable_so_rtc_timer_start_fndecl_32417 rtc_timer_start fndecl 0 32417 NULL nohasharray
++disable_so_get_cur_freq_fndecl_32417 get_cur_freq fndecl 1 32417 &disable_so_rtc_timer_start_fndecl_32417
++disable_so_rf_set_freq_ath_hw_private_ops_32419 rf_set_freq ath_hw_private_ops 0 32419 NULL
++disable_so_buffer_addr_pch_gbe_rx_desc_32427 buffer_addr pch_gbe_rx_desc 0 32427 NULL
++disable_so_ath_chanctx_setup_timer_fndecl_32434 ath_chanctx_setup_timer fndecl 2 32434 NULL nohasharray
++disable_so_top_mlx4_bitmap_32434 top mlx4_bitmap 0 32434 &disable_so_ath_chanctx_setup_timer_fndecl_32434
++disable_so_addr_acl_ip_label_32438 addr acl_ip_label 0 32438 NULL nohasharray
++disable_so_center_freq_seg2_idx_ieee80211_vht_operation_32438 center_freq_seg2_idx ieee80211_vht_operation 0 32438 &disable_so_addr_acl_ip_label_32438
++disable_so_dn_sockaddr2username_fndecl_32446 dn_sockaddr2username fndecl 0 32446 NULL
++disable_so_lasttime_vardecl_xfs_buf_item_c_32457 lasttime vardecl_xfs_buf_item.c 0 32457 NULL
++disable_so___btrfs_add_delayed_deletion_item_fndecl_32458 __btrfs_add_delayed_deletion_item fndecl 0 32458 NULL
++disable_so_pm_autosleep_lock_fndecl_32459 pm_autosleep_lock fndecl 0 32459 NULL
++disable_so_bitmap_storage_alloc_fndecl_32460 bitmap_storage_alloc fndecl 2-4 32460 NULL nohasharray
++disable_so_num_emulated_msrs_vardecl_x86_c_32460 num_emulated_msrs vardecl_x86.c 0 32460 &disable_so_bitmap_storage_alloc_fndecl_32460
++disable_so_C_SYSC_signalfd4_fndecl_32461 C_SYSC_signalfd4 fndecl 0-4 32461 NULL nohasharray
++disable_so_io_ctl_read_bitmap_fndecl_32461 io_ctl_read_bitmap fndecl 0 32461 &disable_so_C_SYSC_signalfd4_fndecl_32461
++disable_so_address_u132_addr_32463 address u132_addr 0 32463 NULL
++disable_so_att_dev_sas_addr_mvs_phy_32465 att_dev_sas_addr mvs_phy 0 32465 NULL
++disable_so_next_status_checked_time_sp2_32472 next_status_checked_time sp2 0 32472 NULL
++disable_so_address_i2400m_poke_table_32473 address i2400m_poke_table 0 32473 NULL
++disable_so_time_slice_sched_rt_entity_32475 time_slice sched_rt_entity 0 32475 NULL nohasharray
++disable_so_xfs_btree_ptr_to_daddr_fndecl_32475 xfs_btree_ptr_to_daddr fndecl 0 32475 &disable_so_time_slice_sched_rt_entity_32475
++disable_so_br_multicast_update_query_timer_fndecl_32479 br_multicast_update_query_timer fndecl 3 32479 NULL
++disable_so_rpa_timeout_hci_dev_32482 rpa_timeout hci_dev 0 32482 NULL
++disable_so_retry_delay_timestamp_bnx2fc_rport_32484 retry_delay_timestamp bnx2fc_rport 0 32484 NULL
++disable_so_ext4_mark_bitmap_end_fndecl_32489 ext4_mark_bitmap_end fndecl 1-2 32489 NULL
++disable_so_hw_start_time_ieee80211_roc_work_32492 hw_start_time ieee80211_roc_work 0 32492 NULL
++disable_so_enq_busaddr_ips_ha_32493 enq_busaddr ips_ha 0 32493 NULL
++disable_so_xfs_btree_rshift_fndecl_32496 xfs_btree_rshift fndecl 0 32496 NULL
++disable_so_reqsize_ablkcipher_tfm_32500 reqsize ablkcipher_tfm 0 32500 NULL
++disable_so_checkani_timer_ath_ani_32510 checkani_timer ath_ani 0 32510 NULL
++disable_so_refdiv_cx24113_state_32517 refdiv cx24113_state 0 32517 NULL
++disable_so_clock_divn_sym_hcb_32524 clock_divn sym_hcb 0 32524 NULL nohasharray
++disable_so_delay_qla4_83xx_reset_entry_hdr_32524 delay qla4_83xx_reset_entry_hdr 0 32524 &disable_so_clock_divn_sym_hcb_32524
++disable_so_write_bitmap_entries_fndecl_32527 write_bitmap_entries fndecl 0 32527 NULL
++disable_so_next_timer_tvec_base_32537 next_timer tvec_base 0 32537 NULL nohasharray
++disable_so_daddr_irlan_cb_32537 daddr irlan_cb 0 32537 &disable_so_next_timer_tvec_base_32537
++disable_so_demod_address_dib3000_config_32538 demod_address dib3000_config 0 32538 NULL
++disable_so_bc_blocklog_xfs_btree_cur_32544 bc_blocklog xfs_btree_cur 0 32544 NULL
++disable_so_delay_rts_before_send_serial_rs485_32545 delay_rts_before_send serial_rs485 0 32545 NULL
++disable_so___skb_tx_hash_fndecl_32547 __skb_tx_hash fndecl 0-3 32547 NULL
++disable_so_get_mac_address_qlcnic_hardware_ops_32567 get_mac_address qlcnic_hardware_ops 3 32567 NULL
++disable_so_cpu_clock_sample_fndecl_32583 cpu_clock_sample fndecl 1 32583 NULL
++disable_so_n__fll_div_32585 n _fll_div 0 32585 NULL
++disable_so_addr_l_qla2xxx_fce_chain_32589 addr_l qla2xxx_fce_chain 0 32589 NULL
++disable_so___bitmap_weight_fndecl_32591 __bitmap_weight fndecl 0-2 32591 NULL
++disable_so_cac_time_ms_wireless_dev_32596 cac_time_ms wireless_dev 0 32596 NULL
++disable_so_spi_pioavailaddr_ipath_base_info_32598 spi_pioavailaddr ipath_base_info 0 32598 NULL
++disable_so_timestamp_carm_msg_sync_time_32600 timestamp carm_msg_sync_time 0 32600 NULL
++disable_so_kstrtoint_from_user_fndecl_32601 kstrtoint_from_user fndecl 2-0 32601 NULL
++disable_so_rtc_read_time_fndecl_32605 rtc_read_time fndecl 0 32605 NULL
++disable_so_intel_fuzzy_clock_check_fndecl_32608 intel_fuzzy_clock_check fndecl 1-2 32608 NULL
++disable_so_beacon_interval_iwl_rxon_time_cmd_32609 beacon_interval iwl_rxon_time_cmd 0 32609 NULL nohasharray
++disable_so_ac_etime_taskstats_32609 ac_etime taskstats 0 32609 &disable_so_beacon_interval_iwl_rxon_time_cmd_32609
++disable_so_pcie_sbdf_set_error_type_with_address_32610 pcie_sbdf set_error_type_with_address 0 32610 NULL nohasharray
++disable_so_mwifiex_get_center_freq_index_fndecl_32610 mwifiex_get_center_freq_index fndecl 0-3 32610 &disable_so_pcie_sbdf_set_error_type_with_address_32610
++disable_so_table_instance_rehash_fndecl_32621 table_instance_rehash fndecl 2 32621 NULL
++disable_so_btrfs_timespec_nsec_fndecl_32628 btrfs_timespec_nsec fndecl 0 32628 NULL
++disable_so_pll2_r2_div_ad9523_platform_data_32641 pll2_r2_div ad9523_platform_data 0 32641 NULL
++disable_so_ahash_op_unaligned_fndecl_32645 ahash_op_unaligned fndecl 0 32645 NULL
++disable_so_pm3fb_calculate_clock_fndecl_32653 pm3fb_calculate_clock fndecl 1 32653 NULL
++disable_so___load_block_bitmap_fndecl_32655 __load_block_bitmap fndecl 0-3 32655 NULL
++disable_so_timeout_blk_mq_tag_set_32657 timeout blk_mq_tag_set 0 32657 NULL
++disable_so_rangelow_v4l2_frequency_band_32670 rangelow v4l2_frequency_band 0 32670 NULL
++disable_so_crypto_rng_get_bytes_fndecl_32675 crypto_rng_get_bytes fndecl 0-3 32675 NULL
++disable_so_ns_ctime_the_nilfs_32681 ns_ctime the_nilfs 0 32681 NULL
++disable_so_m41t80_sysfs_show_sqwfreq_fndecl_32683 m41t80_sysfs_show_sqwfreq fndecl 0 32683 NULL
++disable_so_level_irq_udelay_cyttsp4_core_platform_data_32688 level_irq_udelay cyttsp4_core_platform_data 0 32688 NULL nohasharray
++disable_so_gma_bus_addr__intel_private_32688 gma_bus_addr _intel_private 0 32688 &disable_so_level_irq_udelay_cyttsp4_core_platform_data_32688
++disable_so_e4000_sleep_fndecl_32694 e4000_sleep fndecl 0 32694 NULL
++disable_so_snd_riptide_interrupt_fndecl_32696 snd_riptide_interrupt fndecl 1 32696 NULL nohasharray
++disable_so_max_spi_freq_wm0010_priv_32696 max_spi_freq wm0010_priv 0 32696 &disable_so_snd_riptide_interrupt_fndecl_32696
++disable_so_s_mtime_ext4_super_block_32699 s_mtime ext4_super_block 0 32699 NULL
++disable_so_dma_addr_dm1105_dev_32704 dma_addr dm1105_dev 0 32704 NULL
++disable_so_vmx_preemption_timer_value_vmcs12_32707 vmx_preemption_timer_value vmcs12 0 32707 NULL nohasharray
++disable_so_uid_fileEntry_32707 uid fileEntry 0 32707 &disable_so_vmx_preemption_timer_value_vmcs12_32707
++disable_so_saffirepro_both_clk_freq_get_fndecl_32709 saffirepro_both_clk_freq_get fndecl 0 32709 NULL
++disable_so_cx231xx_s_frequency_fndecl_32713 cx231xx_s_frequency fndecl 0 32713 NULL
++disable_so_sys_getgid_fndecl_32720 sys_getgid fndecl 0 32720 NULL
++disable_so_tuner_address_zl10036_config_32733 tuner_address zl10036_config 0 32733 NULL
++disable_so_max_medium_access_timeouts_store_fndecl_32735 max_medium_access_timeouts_store fndecl 0-4 32735 NULL
++disable_so_cyapa_sleep_time_to_pwr_cmd_fndecl_32740 cyapa_sleep_time_to_pwr_cmd fndecl 0-1 32740 NULL
++disable_so_s5m_rtc_read_time_fndecl_32755 s5m_rtc_read_time fndecl 0 32755 NULL
++disable_so_i2c_read_le16_fndecl_32758 i2c_read_le16 fndecl 0 32758 NULL
++disable_so_sysctl_rose_ack_hold_back_timeout_vardecl_32768 sysctl_rose_ack_hold_back_timeout vardecl 0 32768 NULL
++disable_so_pentium4_get_frequency_fndecl_32777 pentium4_get_frequency fndecl 0 32777 NULL
++disable_so_divider_phase_ad9523_channel_spec_32779 divider_phase ad9523_channel_spec 0 32779 NULL
++disable_so_s_nr_groups_udf_bitmap_32784 s_nr_groups udf_bitmap 0 32784 NULL
++disable_so_acpi_dev_runtime_resume_fndecl_32787 acpi_dev_runtime_resume fndecl 0 32787 NULL
++disable_so_posted_intr_desc_addr_vmcs12_32788 posted_intr_desc_addr vmcs12 0 32788 NULL
++disable_so_acpi_enter_sleep_state_fndecl_32791 acpi_enter_sleep_state fndecl 0-1 32791 NULL
++disable_so_lola_init_clock_widget_fndecl_32800 lola_init_clock_widget fndecl 0 32800 NULL
++disable_so_blocksize_ablkcipher_walk_32810 blocksize ablkcipher_walk 0 32810 NULL
++disable_so_ctime_msdos_dir_entry_32811 ctime msdos_dir_entry 0 32811 NULL
++disable_so_hpi_tuner_get_frequency_fndecl_32813 hpi_tuner_get_frequency fndecl 0-1 32813 NULL
++disable_so_rhashtable_lookup_insert_fast_fndecl_32820 rhashtable_lookup_insert_fast fndecl 0 32820 NULL
++disable_so_sync_freq_max8952_platform_data_32822 sync_freq max8952_platform_data 0 32822 NULL
++disable_so_timeout_rc_dev_32826 timeout rc_dev 0 32826 NULL
++disable_so_to_c2_data_addr_32827 to c2_data_addr 0 32827 NULL
++disable_so_il4965_tfd_tb_get_addr_fndecl_32833 il4965_tfd_tb_get_addr fndecl 0 32833 NULL
++disable_so_ctnl_timeout_dump_fndecl_32835 ctnl_timeout_dump fndecl 0 32835 NULL nohasharray
++disable_so_nouveau_pmops_runtime_suspend_fndecl_32835 nouveau_pmops_runtime_suspend fndecl 0 32835 &disable_so_ctnl_timeout_dump_fndecl_32835
++disable_so_kvm_get_apic_interrupt_fndecl_32843 kvm_get_apic_interrupt fndecl 0 32843 NULL
++disable_so_do_bit_flips_fndecl_32848 do_bit_flips fndecl 2 32848 NULL
++disable_so_bitmap_xor_fndecl_32858 bitmap_xor fndecl 4 32858 NULL
++disable_so_vdelay_bttv_tvnorm_32863 vdelay bttv_tvnorm 0 32863 NULL
++disable_so_rt_dbmsignal_ipw_rt_hdr_32871 rt_dbmsignal ipw_rt_hdr 0 32871 NULL
++disable_so_rtc_set_ntp_time_fndecl_32881 rtc_set_ntp_time fndecl 0 32881 NULL
++disable_so_hash_conntrack_raw_fndecl_32882 hash_conntrack_raw fndecl 0 32882 NULL
++disable_so_find_mc_by_sys_addr_fndecl_32888 find_mc_by_sys_addr fndecl 2 32888 NULL
++disable_so_low_mcp_dma_addr_32890 low mcp_dma_addr 0 32890 NULL
++disable_so_rds_cmsg_atomic_fndecl_32895 rds_cmsg_atomic fndecl 0 32895 NULL
++disable_so___hw_addr_add_ex_fndecl_32899 __hw_addr_add_ex fndecl 0-3 32899 NULL
++disable_so_xfs_btree_decrement_fndecl_32925 xfs_btree_decrement fndecl 0 32925 NULL
++disable_so_nilfs_btree_prepare_propagate_v_fndecl_32937 nilfs_btree_prepare_propagate_v fndecl 0 32937 NULL
++disable_so_m41t80_rtc_read_time_fndecl_32947 m41t80_rtc_read_time fndecl 0 32947 NULL
++disable_so_address_ci_hdrc_32962 address ci_hdrc 0 32962 NULL
++disable_so_tua9001_sleep_fndecl_32966 tua9001_sleep fndecl 0 32966 NULL
++disable_so_pm_generic_runtime_resume_fndecl_32968 pm_generic_runtime_resume fndecl 0 32968 NULL
++disable_so_dma_addr_chunk_32969 dma_addr chunk 0 32969 NULL
++disable_so_dm_attr_uuid_show_fndecl_32981 dm_attr_uuid_show fndecl 0 32981 NULL
++disable_so_ac_stime_acct_v3_32985 ac_stime acct_v3 0 32985 NULL
++disable_so_int_freq_r820t_priv_32987 int_freq r820t_priv 0 32987 NULL
++disable_so_r8_pt_regs_32990 r8 pt_regs 0 32990 NULL
++disable_so_address_TAG_TW_SG_Entry_ISO_32992 address TAG_TW_SG_Entry_ISO 0 32992 NULL
++disable_so_segment0_blkaddr_f2fs_super_block_32995 segment0_blkaddr f2fs_super_block 0 32995 NULL
++disable_so_time_of_death_afs_vlocation_32996 time_of_death afs_vlocation 0 32996 NULL
++disable_so_addrm_unknown_feature_attrs_fndecl_33000 addrm_unknown_feature_attrs fndecl 0 33000 NULL
++disable_so_monotonic_time_sec_vsyscall_gtod_data_33004 monotonic_time_sec vsyscall_gtod_data 0 33004 NULL
++disable_so_tv_hsync_delay_nv04_crtc_reg_33012 tv_hsync_delay nv04_crtc_reg 0 33012 NULL
++disable_so_neigh_proc_base_reachable_time_fndecl_33013 neigh_proc_base_reachable_time fndecl 0 33013 NULL
++disable_so_ocfs2_unlink_subtree_fndecl_33022 ocfs2_unlink_subtree fndecl 5 33022 NULL
++disable_so_poll_time_max3100_port_33028 poll_time max3100_port 0 33028 NULL
++disable_so_compat_sys_time_fndecl_33034 compat_sys_time fndecl 0 33034 NULL nohasharray
++disable_so_m_osc_clock_freq_drxk_state_33034 m_osc_clock_freq drxk_state 0 33034 &disable_so_compat_sys_time_fndecl_33034
++disable_so_dev_addr_mmc_test_area_33044 dev_addr mmc_test_area 0 33044 NULL
++disable_so_ntp_tick_timekeeper_33046 ntp_tick timekeeper 0 33046 NULL
++disable_so_day_tomoyo_time_33064 day tomoyo_time 0 33064 NULL
++disable_so_wait_time_stamp_lpfc_bsg_event_33070 wait_time_stamp lpfc_bsg_event 0 33070 NULL
++disable_so_vblank_hi_lvds_dvo_timing_33077 vblank_hi lvds_dvo_timing 0 33077 NULL
++disable_so_cycle_last_timecounter_33078 cycle_last timecounter 0 33078 NULL
++disable_so_ql_write_page0_reg_fndecl_33082 ql_write_page0_reg fndecl 3 33082 NULL
++disable_so_dma_addr_mic_smpt_33090 dma_addr mic_smpt 0 33090 NULL
++disable_so_torture_random_fndecl_33096 torture_random fndecl 0 33096 NULL
++disable_so_collect_signal_fndecl_33097 collect_signal fndecl 1 33097 NULL
++disable_so_free_count_reiserfs_bitmap_info_33099 free_count reiserfs_bitmap_info 0 33099 NULL
++disable_so_sys_clock_gettime_fndecl_33100 sys_clock_gettime fndecl 1 33100 NULL
++disable_so_word_write_time_max_flchip_33105 word_write_time_max flchip 0 33105 NULL nohasharray
++disable_so_y_gsc_addr_33105 y gsc_addr 0 33105 &disable_so_word_write_time_max_flchip_33105
++disable_so_prdaddr_atp_id_33111 prdaddr atp_id 0 33111 NULL nohasharray
++disable_so_intel_fdi_link_freq_fndecl_33111 intel_fdi_link_freq fndecl 0 33111 &disable_so_prdaddr_atp_id_33111
++disable_so_soft_use_expires_seconds_xfrm_lifetime_cfg_33115 soft_use_expires_seconds xfrm_lifetime_cfg 0 33115 NULL
++disable_so_strtobool_fndecl_33116 strtobool fndecl 0 33116 NULL
++disable_so_smsc95xx_hash_fndecl_33122 smsc95xx_hash fndecl 0 33122 NULL
++disable_so_mce_device_create_fndecl_33128 mce_device_create fndecl 1-0 33128 NULL
++disable_so_ip6addrlbl_net_init_fndecl_33129 ip6addrlbl_net_init fndecl 0 33129 NULL
++disable_so_brcms_b_set_addrmatch_fndecl_33130 brcms_b_set_addrmatch fndecl 2 33130 NULL
++disable_so_tracer_tgid_ptrace_proc_event_33131 tracer_tgid ptrace_proc_event 0 33131 NULL
++disable_so_pretimeout_vardecl_kempld_wdt_c_33137 pretimeout vardecl_kempld_wdt.c 0 33137 NULL
++disable_so_o2net_set_usertimeout_fndecl_33145 o2net_set_usertimeout fndecl 0 33145 NULL nohasharray
++disable_so_cryptd_blkcipher_encrypt_enqueue_fndecl_33145 cryptd_blkcipher_encrypt_enqueue fndecl 0 33145 &disable_so_o2net_set_usertimeout_fndecl_33145
++disable_so_q_stime_msg_queue_33150 q_stime msg_queue 0 33150 NULL
++disable_so_cursor_cache_gpu_addr_ast_private_33160 cursor_cache_gpu_addr ast_private 0 33160 NULL
++disable_so_clockid_to_kclock_fndecl_33163 clockid_to_kclock fndecl 1 33163 NULL
++disable_so_address_ipr_ioadl64_desc_33170 address ipr_ioadl64_desc 0 33170 NULL
++disable_so_wl1271_acx_sleep_auth_fndecl_33172 wl1271_acx_sleep_auth fndecl 0 33172 NULL nohasharray
++disable_so_addr_mii_phy_33172 addr mii_phy 0 33172 &disable_so_wl1271_acx_sleep_auth_fndecl_33172
++disable_so_cr_camif_addr_33181 cr camif_addr 0 33181 NULL
++disable_so___bch_btree_mark_key_fndecl_33194 __bch_btree_mark_key fndecl 2 33194 NULL
++disable_so_mem_addr_m3_list_33199 mem_addr m3_list 0 33199 NULL
++disable_so_start_time_tx_traffic_info_33206 start_time tx_traffic_info 0 33206 NULL
++disable_so_crypto_aead_decrypt_fndecl_33207 crypto_aead_decrypt fndecl 0 33207 NULL
++disable_so_i_mtime_ext2_inode_33209 i_mtime ext2_inode 0 33209 NULL
++disable_so_mei_me_pm_runtime_resume_fndecl_33216 mei_me_pm_runtime_resume fndecl 0 33216 NULL
++disable_so_irq_free_descs_fndecl_33218 irq_free_descs fndecl 1-2 33218 NULL
++disable_so_tune_freq_si476x_radio_ops_33229 tune_freq si476x_radio_ops 0 33229 NULL
++disable_so_increase_address_space_fndecl_33247 increase_address_space fndecl 2 33247 NULL
++disable_so_ps_timeout_vardecl_pseudo_h_33252 ps_timeout vardecl_pseudo.h 0 33252 NULL
++disable_so_init_jiffies_clocksource_fndecl_33253 init_jiffies_clocksource fndecl 0 33253 NULL
++disable_so_do_cpu_nanosleep_fndecl_33255 do_cpu_nanosleep fndecl 1 33255 NULL
++disable_so_efi_thunk_set_virtual_address_map_fndecl_33273 efi_thunk_set_virtual_address_map fndecl 2-3 33273 NULL
++disable_so_ring_physaddr_fbr_lookup_33275 ring_physaddr fbr_lookup 0 33275 NULL
++disable_so_wakeup_prevent_sleep_time_show_fndecl_33280 wakeup_prevent_sleep_time_show fndecl 0 33280 NULL nohasharray
++disable_so_isi_camera_clock_start_fndecl_33280 isi_camera_clock_start fndecl 0 33280 &disable_so_wakeup_prevent_sleep_time_show_fndecl_33280 nohasharray
++disable_so_rsdt_physical_address_acpi_table_rsdp_33280 rsdt_physical_address acpi_table_rsdp 0 33280 &disable_so_isi_camera_clock_start_fndecl_33280 nohasharray
++disable_so_ccp_aes_rfc3686_setkey_fndecl_33280 ccp_aes_rfc3686_setkey fndecl 3 33280 &disable_so_rsdt_physical_address_acpi_table_rsdp_33280
++disable_so_jiffies_to_clock_t_fndecl_33285 jiffies_to_clock_t fndecl 0-1 33285 NULL
++disable_so_gpu_addr_radeon_ib_33291 gpu_addr radeon_ib 0 33291 NULL
++disable_so_crypto_rfc4106_setkey_fndecl_33297 crypto_rfc4106_setkey fndecl 0-3 33297 NULL
++disable_so_crypto_rfc4309_encrypt_fndecl_33306 crypto_rfc4309_encrypt fndecl 0 33306 NULL
++disable_so_xhci_calculate_lpm_timeout_fndecl_33310 xhci_calculate_lpm_timeout fndecl 0 33310 NULL
++disable_so_addr_high_mcp_kreq_ether_send_33319 addr_high mcp_kreq_ether_send 0 33319 NULL
++disable_so_calc_divisor_fndecl_33333 calc_divisor fndecl 0 33333 NULL
++disable_so_i2c_address_dib0070_config_33334 i2c_address dib0070_config 0 33334 NULL
++disable_so_alloc_sleep_millisecs_show_fndecl_33339 alloc_sleep_millisecs_show fndecl 0 33339 NULL nohasharray
++disable_so_hpi_tuner_set_frequency_fndecl_33339 hpi_tuner_set_frequency fndecl 0-1 33339 &disable_so_alloc_sleep_millisecs_show_fndecl_33339
++disable_so_sysctl_aarp_tick_time_vardecl_33343 sysctl_aarp_tick_time vardecl 0 33343 NULL
++disable_so_stv0367cab_set_derot_freq_fndecl_33348 stv0367cab_set_derot_freq fndecl 0-2-3 33348 NULL
++disable_so_pkt_phys_addr_mwl8k_tx_desc_33350 pkt_phys_addr mwl8k_tx_desc 0 33350 NULL
++disable_so_addr_low_lancer_cmd_req_write_object_33351 addr_low lancer_cmd_req_write_object 0 33351 NULL
++disable_so_posix_timer_id_signal_struct_33352 posix_timer_id signal_struct 0 33352 NULL
++disable_so_s_mtime_ext2_super_block_33353 s_mtime ext2_super_block 0 33353 NULL
++disable_so_freq_wmi_remain_on_chnl_event_33368 freq wmi_remain_on_chnl_event 0 33368 NULL
++disable_so_token_time_sfb_sched_data_33369 token_time sfb_sched_data 0 33369 NULL nohasharray
++disable_so_kvmclock_offset_kvm_arch_33369 kvmclock_offset kvm_arch 0 33369 &disable_so_token_time_sfb_sched_data_33369
++disable_so_pipelines_addr_device_queue_manager_33373 pipelines_addr device_queue_manager 0 33373 NULL
++disable_so_nilfs_btree_prepare_convert_and_insert_fndecl_33375 nilfs_btree_prepare_convert_and_insert fndecl 0-2 33375 NULL
++disable_so_hash_netnet6_expire_fndecl_33396 hash_netnet6_expire fndecl 4 33396 NULL
++disable_so_ticks_snd_timer_hardware_33398 ticks snd_timer_hardware 0 33398 NULL nohasharray
++disable_so_pci_bus_max_busnr_fndecl_33398 pci_bus_max_busnr fndecl 0 33398 &disable_so_ticks_snd_timer_hardware_33398
++disable_so_start_time_search_33410 start_time search 0 33410 NULL
++disable_so_flip_addr_intel_overlay_33431 flip_addr intel_overlay 0 33431 NULL
++disable_so_sync_single_for_cpu_dma_map_ops_33433 sync_single_for_cpu dma_map_ops 2-3 33433 NULL
++disable_so_di_ctime_logfs_disk_inode_33435 di_ctime logfs_disk_inode 0 33435 NULL
++disable_so_ocfs2_divide_xattr_bucket_fndecl_33455 ocfs2_divide_xattr_bucket fndecl 0 33455 NULL
++disable_so_sbp_tpg_attrib_show_mgt_orb_timeout_fndecl_33467 sbp_tpg_attrib_show_mgt_orb_timeout fndecl 0 33467 NULL
++disable_so_btrfs_set_free_space_bitmaps_fndecl_33481 btrfs_set_free_space_bitmaps fndecl 3 33481 NULL
++disable_so_demod_address_stv0299_config_33483 demod_address stv0299_config 0 33483 NULL
++disable_so_lbs_sleepparams_write_fndecl_33488 lbs_sleepparams_write fndecl 0-3 33488 NULL
++disable_so_start_time_edac_device_ctl_info_33489 start_time edac_device_ctl_info 0 33489 NULL
++disable_so_addr_f71805f_data_33493 addr f71805f_data 0 33493 NULL
++disable_so_mcgcap_mce_33500 mcgcap mce 0 33500 NULL
++disable_so___smp_spurious_interrupt_fndecl_33501 __smp_spurious_interrupt fndecl 1 33501 NULL
++disable_so_acpi_pad_rrtime_show_fndecl_33511 acpi_pad_rrtime_show fndecl 0 33511 NULL
++disable_so_crypto_ctr_module_init_fndecl_33512 crypto_ctr_module_init fndecl 0 33512 NULL
++disable_so_dtim_time_iwl_mac_data_sta_33519 dtim_time iwl_mac_data_sta 0 33519 NULL
++disable_so_start_signal_voltage_switch_mmc_host_ops_33520 start_signal_voltage_switch mmc_host_ops 0 33520 NULL
++disable_so_ui_atime_ufs2_inode_33541 ui_atime ufs2_inode 0 33541 NULL nohasharray
++disable_so_pll_prediv_dib0090_io_config_33541 pll_prediv dib0090_io_config 0 33541 &disable_so_ui_atime_ufs2_inode_33541
++disable_so_synchronize_irq_fndecl_33551 synchronize_irq fndecl 1 33551 NULL
++disable_so_addrconf_disable_ipv6_fndecl_33555 addrconf_disable_ipv6 fndecl 0 33555 NULL
++disable_so_addr_RxDesc_33558 addr RxDesc 0 33558 NULL
++disable_so_rtc_irq_set_freq_fndecl_33559 rtc_irq_set_freq fndecl 0 33559 NULL
++disable_so_md4_mod_init_fndecl_33560 md4_mod_init fndecl 0 33560 NULL
++disable_so_addr_1_qla8044_minidump_entry_pollwr_33561 addr_1 qla8044_minidump_entry_pollwr 0 33561 NULL
++disable_so_decnet_address_vardecl_33562 decnet_address vardecl 0 33562 NULL
++disable_so_tx_bseq_addr_bnx2_tx_ring_info_33563 tx_bseq_addr bnx2_tx_ring_info 0 33563 NULL
++disable_so_clock_sched_clock_data_33565 clock sched_clock_data 0 33565 NULL
++disable_so_va_uid_coda_vattr_33569 va_uid coda_vattr 0 33569 NULL
++disable_so_timeout_RioCommand_33570 timeout RioCommand 0 33570 NULL
++disable_so_ramp_time_pcf50633_bl_platform_data_33574 ramp_time pcf50633_bl_platform_data 0 33574 NULL
++disable_so_bitmap_init_from_disk_fndecl_33575 bitmap_init_from_disk fndecl 2 33575 NULL
++disable_so_startaddr_banshee_reg_33580 startaddr banshee_reg 0 33580 NULL
++disable_so_intel_pipe_to_cpu_transcoder_fndecl_33581 intel_pipe_to_cpu_transcoder fndecl 0-2 33581 NULL nohasharray
++disable_so_ctl_addr_ide_io_ports_33581 ctl_addr ide_io_ports 0 33581 &disable_so_intel_pipe_to_cpu_transcoder_fndecl_33581
++disable_so_ext4_read_inode_bitmap_fndecl_33583 ext4_read_inode_bitmap fndecl 2 33583 NULL
++disable_so_ims_pcu_ofn_bit_store_fndecl_33597 ims_pcu_ofn_bit_store fndecl 0-4 33597 NULL
++disable_so___bitmap_clear_bits_fndecl_33603 __bitmap_clear_bits fndecl 3-4 33603 NULL
++disable_so_cg_spll_spread_spectrum_2_rv730_clock_registers_33607 cg_spll_spread_spectrum_2 rv730_clock_registers 0 33607 NULL
++disable_so_cs5535_mfgpt_alloc_timer_fndecl_33609 cs5535_mfgpt_alloc_timer fndecl 1 33609 NULL
++disable_so_to_maxval_rpc_timeout_33618 to_maxval rpc_timeout 0 33618 NULL nohasharray
++disable_so_freq_freq_tbl_33618 freq freq_tbl 0 33618 &disable_so_to_maxval_rpc_timeout_33618
++disable_so_hpi_sample_clock_set_auto_fndecl_33619 hpi_sample_clock_set_auto fndecl 1-0 33619 NULL
++disable_so_addr_lo_freelQ_e_33620 addr_lo freelQ_e 0 33620 NULL
++disable_so_addr_via686a_data_33627 addr via686a_data 0 33627 NULL
++disable_so_seq_time_vardecl_33630 seq_time vardecl 0 33630 NULL
++disable_so_tgid_task_struct_33635 tgid task_struct 0 33635 NULL nohasharray
++disable_so_index_addr_read_data_fndecl_33635 index_addr_read_data fndecl 2 33635 &disable_so_tgid_task_struct_33635
++disable_so_random_fasync_fndecl_33642 random_fasync fndecl 1 33642 NULL
++disable_so_snd_usb_mixer_interrupt_v2_fndecl_33643 snd_usb_mixer_interrupt_v2 fndecl 3 33643 NULL
++disable_so_vq_vram_addr_viafb_shared_33653 vq_vram_addr viafb_shared 0 33653 NULL
++disable_so_key_index_wmi_add_cipher_key_cmd_33662 key_index wmi_add_cipher_key_cmd 0 33662 NULL
++disable_so_tpu_pwm_timer_start_fndecl_33663 tpu_pwm_timer_start fndecl 0 33663 NULL
++disable_so_interrupt_in_interval_lego_usb_tower_33664 interrupt_in_interval lego_usb_tower 0 33664 NULL
++disable_so_pr_gid_compat_elf_prpsinfo_33667 pr_gid compat_elf_prpsinfo 0 33667 NULL
++disable_so_sinit_max_init_timeo_sctp_initmsg_33681 sinit_max_init_timeo sctp_initmsg 0 33681 NULL
++disable_so_sdev_store_eh_timeout_fndecl_33688 sdev_store_eh_timeout fndecl 0-4 33688 NULL
++disable_so_uid_ceph_mds_caps_33696 uid ceph_mds_caps 0 33696 NULL
++disable_so_min_timeout_rc_dev_33699 min_timeout rc_dev 0 33699 NULL
++disable_so_addr_alx_rfd_33711 addr alx_rfd 0 33711 NULL
++disable_so_pwm_divisor_max77693_haptic_33724 pwm_divisor max77693_haptic 0 33724 NULL
++disable_so_cb710_mmc_select_clock_divider_fndecl_33732 cb710_mmc_select_clock_divider fndecl 2 33732 NULL
++disable_so_service_timer_previous_i40e_pf_33743 service_timer_previous i40e_pf 0 33743 NULL
++disable_so_btree_gc_count_keys_fndecl_33745 btree_gc_count_keys fndecl 0 33745 NULL
++disable_so_max_usec_vnic_intr_coal_timer_info_33753 max_usec vnic_intr_coal_timer_info 0 33753 NULL
++disable_so_force_hpet_address_vardecl_33758 force_hpet_address vardecl 0 33758 NULL
++disable_so_fl_addr_fib_result_nl_33759 fl_addr fib_result_nl 0 33759 NULL
++disable_so_cx231xx_i2c_recv_bytes_with_saddr_fndecl_33773 cx231xx_i2c_recv_bytes_with_saddr fndecl 0 33773 NULL
++disable_so_cursor_addr_radeon_crtc_33776 cursor_addr radeon_crtc 0 33776 NULL
++disable_so_btrfs_update_time_fndecl_33780 btrfs_update_time fndecl 0 33780 NULL
++disable_so_from_kuid_munged_fndecl_33783 from_kuid_munged fndecl 0 33783 NULL
++disable_so_irda_discover_daddr_and_lsap_sel_fndecl_33786 irda_discover_daddr_and_lsap_sel fndecl 0 33786 NULL
++disable_so_efx_probe_interrupts_fndecl_33793 efx_probe_interrupts fndecl 0 33793 NULL
++disable_so_custom_divisor_cyclades_port_33795 custom_divisor cyclades_port 0 33795 NULL
++disable_so_uli526x_interrupt_fndecl_33800 uli526x_interrupt fndecl 1 33800 NULL
++disable_so_ocrdma_add_stat_fndecl_33807 ocrdma_add_stat fndecl 0 33807 NULL
++disable_so_btrfs_set_token_inode_uid_fndecl_33810 btrfs_set_token_inode_uid fndecl 3 33810 NULL
++disable_so_iowrite32_rep_fndecl_33813 iowrite32_rep fndecl 3 33813 NULL
++disable_so_sys_setresgid_fndecl_33818 sys_setresgid fndecl 0-1-2-3 33818 NULL
++disable_so_radeon_dp_get_dp_link_clock_fndecl_33823 radeon_dp_get_dp_link_clock fndecl 0-3 33823 NULL
++disable_so_timeout__synclinkmp_info_33838 timeout _synclinkmp_info 0 33838 NULL
++disable_so_phys_addr_esas2r_mem_desc_33844 phys_addr esas2r_mem_desc 0 33844 NULL
++disable_so_cpufreq_register_notifier_fndecl_33845 cpufreq_register_notifier fndecl 0 33845 NULL
++disable_so_ufx_reg_write_fndecl_33849 ufx_reg_write fndecl 3 33849 NULL
++disable_so_kstrtou8_from_user_fndecl_33852 kstrtou8_from_user fndecl 0-2 33852 NULL
++disable_so_hpi_sample_clock_get_local_rate_fndecl_33857 hpi_sample_clock_get_local_rate fndecl 1-0 33857 NULL
++disable_so_hor_sync_start_via_display_timing_33861 hor_sync_start via_display_timing 0 33861 NULL
++disable_so_seq_netlbl_domhsh_walk_arg_33872 seq netlbl_domhsh_walk_arg 0 33872 NULL
++disable_so_wrmsrl_on_cpu_fndecl_33873 wrmsrl_on_cpu fndecl 0-1 33873 NULL
++disable_so_cpu_to_vringh32_fndecl_33880 cpu_to_vringh32 fndecl 0-2 33880 NULL
++disable_so_ni_do_program_memory_timing_parameters_fndecl_33886 ni_do_program_memory_timing_parameters fndecl 0 33886 NULL
++disable_so_comp_addr_hi_dmae_command_33889 comp_addr_hi dmae_command 0 33889 NULL
++disable_so_wl18xx_acx_interrupt_notify_config_fndecl_33899 wl18xx_acx_interrupt_notify_config fndecl 0 33899 NULL
++disable_so_creation_time_iscsi_session_33906 creation_time iscsi_session 0 33906 NULL nohasharray
++disable_so_via_clock_vardecl_pata_via_c_33906 via_clock vardecl_pata_via.c 0 33906 &disable_so_creation_time_iscsi_session_33906 nohasharray
++disable_so_bnx2x_get_rxhash_fndecl_33906 bnx2x_get_rxhash fndecl 0 33906 &disable_so_via_clock_vardecl_pata_via_c_33906
++disable_so_mmio_readl_intel_uncore_funcs_33910 mmio_readl intel_uncore_funcs 0-2 33910 NULL
++disable_so_refresh_time_e1000_fc_info_33911 refresh_time e1000_fc_info 0 33911 NULL
++disable_so_hash_fname_33923 hash fname 0 33923 NULL
++disable_so_sysctl_netrom_transport_timeout_vardecl_33929 sysctl_netrom_transport_timeout vardecl 0 33929 NULL
++disable_so_cg_spll_func_cntl_si_clock_registers_33932 cg_spll_func_cntl si_clock_registers 0 33932 NULL
++disable_so_img_ir_free_timing_fndecl_33939 img_ir_free_timing fndecl 0-2 33939 NULL
++disable_so_max_tsc_khz_vardecl_x86_c_33942 max_tsc_khz vardecl_x86.c 0 33942 NULL
++disable_so_timeout_a_tpm_vendor_specific_33951 timeout_a tpm_vendor_specific 0 33951 NULL
++disable_so_generic_cmd6_time_mmc_ext_csd_33957 generic_cmd6_time mmc_ext_csd 0 33957 NULL
++disable_so_subnet_timeout_qib_ibport_33973 subnet_timeout qib_ibport 0 33973 NULL nohasharray
++disable_so_ring_iowrite16desc_fndecl_33973 ring_iowrite16desc fndecl 2 33973 &disable_so_subnet_timeout_qib_ibport_33973 nohasharray
++disable_so_freq_tiny_spi_33973 freq tiny_spi 0 33973 &disable_so_ring_iowrite16desc_fndecl_33973
++disable_so_ip6addrlbl_del_fndecl_33977 ip6addrlbl_del fndecl 0-4 33977 NULL
++disable_so_btree_readpage_fndecl_33979 btree_readpage fndecl 0 33979 NULL
++disable_so_ifa_broadcast_in_ifaddr_33999 ifa_broadcast in_ifaddr 0 33999 NULL
++disable_so___cpuidle_register_device_fndecl_34012 __cpuidle_register_device fndecl 0 34012 NULL
++disable_so_hpfs_prefetch_bitmap_fndecl_34014 hpfs_prefetch_bitmap fndecl 2 34014 NULL
++disable_so_cur_freq_lbtf_private_34017 cur_freq lbtf_private 0 34017 NULL
++disable_so_pxa2xx_ssp_get_clk_div_fndecl_34021 pxa2xx_ssp_get_clk_div fndecl 0-3 34021 NULL
++disable_so_data_addr_acpi_ec_34022 data_addr acpi_ec 0 34022 NULL
++disable_so_sdev_runtime_resume_fndecl_34033 sdev_runtime_resume fndecl 0 34033 NULL nohasharray
++disable_so_get_aux_clock_divider_intel_dp_34033 get_aux_clock_divider intel_dp 0 34033 &disable_so_sdev_runtime_resume_fndecl_34033
++disable_so_proc_tgid_io_accounting_fndecl_34034 proc_tgid_io_accounting fndecl 0 34034 NULL
++disable_so_long_timeout_scsi_tape_34043 long_timeout scsi_tape 0 34043 NULL
++disable_so_crypto_authenc_esn_givencrypt_done_fndecl_34047 crypto_authenc_esn_givencrypt_done fndecl 2 34047 NULL
++disable_so_addr_wil_fw_data_dwrite_34059 addr wil_fw_data_dwrite 0 34059 NULL
++disable_so_shash_prepare_alg_fndecl_34073 shash_prepare_alg fndecl 0 34073 NULL
++disable_so_ccp_register_aes_algs_fndecl_34079 ccp_register_aes_algs fndecl 0 34079 NULL
++disable_so_addr_mwifiex_dma_mapping_34088 addr mwifiex_dma_mapping 0 34088 NULL
++disable_so_signal_level_hfa384x_comms_quality_34089 signal_level hfa384x_comms_quality 0 34089 NULL
++disable_so_per_jiffies_stats_dib7000p_state_34090 per_jiffies_stats dib7000p_state 0 34090 NULL nohasharray
++disable_so__ocrdma_pd_mgr_put_bitmap_fndecl_34090 _ocrdma_pd_mgr_put_bitmap fndecl 0-2 34090 &disable_so_per_jiffies_stats_dib7000p_state_34090
++disable_so_rt_mutex_timed_lock_fndecl_34096 rt_mutex_timed_lock fndecl 0 34096 NULL
++disable_so_addr_i2c_device_34103 addr i2c_device 0 34103 NULL
++disable_so_run_nmi_sleep_test_fndecl_34107 run_nmi_sleep_test fndecl 1 34107 NULL
++disable_so_distribute_cfs_runtime_fndecl_34121 distribute_cfs_runtime fndecl 0-2-3 34121 NULL
++disable_so_iscsi_nacl_attrib_store_nopin_response_timeout_fndecl_34124 iscsi_nacl_attrib_store_nopin_response_timeout fndecl 0-3 34124 NULL
++disable_so_bi_len_gfs2_bitmap_34126 bi_len gfs2_bitmap 0 34126 NULL
++disable_so_qdiv_mode_skl_wrpll_params_34127 qdiv_mode skl_wrpll_params 0 34127 NULL
++disable_so_cpuidle_enable_device_fndecl_34132 cpuidle_enable_device fndecl 0 34132 NULL
++disable_so_timer_slack_ns_task_struct_34139 timer_slack_ns task_struct 0 34139 NULL
++disable_so_mic_max_system_addr_fndecl_34141 mic_max_system_addr fndecl 0 34141 NULL nohasharray
++disable_so_ima_calc_file_shash_fndecl_34141 ima_calc_file_shash fndecl 0 34141 &disable_so_mic_max_system_addr_fndecl_34141
++disable_so_lm3533_led_get_hw_delay_fndecl_34142 lm3533_led_get_hw_delay fndecl 0 34142 NULL
++disable_so_nd_ipv4_address_o2nm_node_34144 nd_ipv4_address o2nm_node 0 34144 NULL
++disable_so_r28_val_fc2580_freq_regs_34150 r28_val fc2580_freq_regs 0 34150 NULL
++disable_so_musb_read_txfunaddr_fndecl_34175 musb_read_txfunaddr fndecl 2-0 34175 NULL
++disable_so_offset_addr_pch_udc_ep_34177 offset_addr pch_udc_ep 0 34177 NULL
++disable_so_stv0900_get_carr_freq_fndecl_34190 stv0900_get_carr_freq fndecl 0-2 34190 NULL
++disable_so_base_addr_user_desc_34191 base_addr user_desc 0 34191 NULL
++disable_so_hi_cfg_timing_div_drxj_data_34197 hi_cfg_timing_div drxj_data 0 34197 NULL
++disable_so_sha1_mb_async_finup_fndecl_34207 sha1_mb_async_finup fndecl 0 34207 NULL
++disable_so_hpi_outstream_set_time_scale_fndecl_34210 hpi_outstream_set_time_scale fndecl 1-0 34210 NULL
++disable_so_keyup_jiffies_rc_dev_34213 keyup_jiffies rc_dev 0 34213 NULL
++disable_so_inet_sk_reselect_saddr_fndecl_34214 inet_sk_reselect_saddr fndecl 0 34214 NULL
++disable_so_cm_ack_timeout_fndecl_34216 cm_ack_timeout fndecl 0-1-2 34216 NULL nohasharray
++disable_so_req_consumer_index_phy_addr_high_ql3_adapter_34216 req_consumer_index_phy_addr_high ql3_adapter 0 34216 &disable_so_cm_ack_timeout_fndecl_34216
++disable_so_nsec_to_clock_t_fndecl_34222 nsec_to_clock_t fndecl 0-1 34222 NULL
++disable_so_pch_systime_write_fndecl_34223 pch_systime_write fndecl 2 34223 NULL
++disable_so_addr_uio_mem_34242 addr uio_mem 0 34242 NULL
++disable_so_xfs_btree_split_fndecl_34248 xfs_btree_split fndecl 0 34248 NULL
++disable_so_address_acpi_pct_register_34258 address acpi_pct_register 0 34258 NULL
++disable_so_ci_otg_fsm_add_timer_fndecl_34261 ci_otg_fsm_add_timer fndecl 2 34261 NULL
++disable_so_snd_timer_resolution_fndecl_34272 snd_timer_resolution fndecl 0 34272 NULL
++disable_so_delay_rts_after_send_serial_rs485_34273 delay_rts_after_send serial_rs485 0 34273 NULL nohasharray
++disable_so_set_msr_interception_fndecl_34273 set_msr_interception fndecl 2 34273 &disable_so_delay_rts_after_send_serial_rs485_34273
++disable_so_qla4xxx_fw_ext_timestamp_show_fndecl_34274 qla4xxx_fw_ext_timestamp_show fndecl 0 34274 NULL
++disable_so_hash_ipport6_expire_fndecl_34286 hash_ipport6_expire fndecl 4 34286 NULL
++disable_so_da9063_rtc_set_time_fndecl_34291 da9063_rtc_set_time fndecl 0 34291 NULL nohasharray
++disable_so_early_cpu_to_node_fndecl_34291 early_cpu_to_node fndecl 0 34291 &disable_so_da9063_rtc_set_time_fndecl_34291
++disable_so_port_io_addr_34293 port io_addr 0 34293 NULL
++disable_so_nilfs_palloc_bitmap_blkoff_fndecl_34306 nilfs_palloc_bitmap_blkoff fndecl 0-2 34306 NULL
++disable_so_last_delaylps_stamp_jiffies_rtl_ps_ctl_34320 last_delaylps_stamp_jiffies rtl_ps_ctl 0 34320 NULL nohasharray
++disable_so_tunedfreq_s5h1420_state_34320 tunedfreq s5h1420_state 0 34320 &disable_so_last_delaylps_stamp_jiffies_rtl_ps_ctl_34320
++disable_so_rd16_nvkm_ofuncs_34339 rd16 nvkm_ofuncs 0-2 34339 NULL
++disable_so_cipher_cfg_offset_icp_qat_fw_cipher_cd_ctrl_hdr_34345 cipher_cfg_offset icp_qat_fw_cipher_cd_ctrl_hdr 0 34345 NULL
++disable_so_eeprom_delay_ipw_priv_34346 eeprom_delay ipw_priv 0 34346 NULL nohasharray
++disable_so_hpi_tone_detector_get_frequency_fndecl_34346 hpi_tone_detector_get_frequency fndecl 0-1 34346 &disable_so_eeprom_delay_ipw_priv_34346
++disable_so_intr_timer_type_vnic_fc_config_34351 intr_timer_type vnic_fc_config 0 34351 NULL
++disable_so_skcipher_null_crypt_fndecl_34354 skcipher_null_crypt fndecl 0-4 34354 NULL
++disable_so_ac_stime_taskstats_34355 ac_stime taskstats 0 34355 NULL
++disable_so_set_bit_to_user_fndecl_34358 set_bit_to_user fndecl 0 34358 NULL
++disable_so_sip_timeout_vardecl_nf_conntrack_sip_c_34365 sip_timeout vardecl_nf_conntrack_sip.c 0 34365 NULL
++disable_so_map_addr_fndecl_34371 map_addr fndecl 2-3-6-7 34371 NULL
++disable_so_rds_sysctl_reconnect_min_jiffies_vardecl_34380 rds_sysctl_reconnect_min_jiffies vardecl 0 34380 NULL
++disable_so_note_interrupt_fndecl_34381 note_interrupt fndecl 1 34381 NULL
++disable_so_addr_nv50_sync_34383 addr nv50_sync 0 34383 NULL
++disable_so_clock_gate_dis2_vlv_s0ix_state_34384 clock_gate_dis2 vlv_s0ix_state 0 34384 NULL
++disable_so_sctp_add_bind_addr_fndecl_34385 sctp_add_bind_addr fndecl 4 34385 NULL nohasharray
++disable_so_crypto_comp_decompress_fndecl_34385 crypto_comp_decompress fndecl 3 34385 &disable_so_sctp_add_bind_addr_fndecl_34385
++disable_so_s5h1409_sleep_fndecl_34392 s5h1409_sleep fndecl 2 34392 NULL
++disable_so_i2c_address_mt2266_config_34394 i2c_address mt2266_config 0 34394 NULL
++disable_so_ext4_inode_bitmap_csum_verify_fndecl_34396 ext4_inode_bitmap_csum_verify fndecl 2-5 34396 NULL
++disable_so_blocksize_crypto_report_cipher_34404 blocksize crypto_report_cipher 0 34404 NULL
++disable_so_min_dwell_time_active_conf_scan_settings_34406 min_dwell_time_active conf_scan_settings 0 34406 NULL
++disable_so_sec_ptp_clock_time_34411 sec ptp_clock_time 0 34411 NULL nohasharray
++disable_so_vxlan_nla_get_addr_fndecl_34411 vxlan_nla_get_addr fndecl 0 34411 &disable_so_sec_ptp_clock_time_34411
++disable_so_psb_intel_sdvo_create_preferred_input_timing_fndecl_34416 psb_intel_sdvo_create_preferred_input_timing fndecl 3-4 34416 NULL
++disable_so_decode_attr_bitmap_fndecl_34420 decode_attr_bitmap fndecl 0 34420 NULL
++disable_so_address_acpi_mem_space_context_34426 address acpi_mem_space_context 0 34426 NULL
++disable_so_netlbl_domhsh_hash_fndecl_34442 netlbl_domhsh_hash fndecl 0 34442 NULL
++disable_so_bdbar_addr_ichdev_34446 bdbar_addr ichdev 0 34446 NULL
++disable_so_ksm_thread_sleep_millisecs_vardecl_ksm_c_34451 ksm_thread_sleep_millisecs vardecl_ksm.c 0 34451 NULL
++disable_so_signal_ieee80211_rx_status_34458 signal ieee80211_rx_status 0 34458 NULL
++disable_so_dma_addr_cxio_hal_ctrl_qp_34469 dma_addr cxio_hal_ctrl_qp 0 34469 NULL
++disable_so_ata_lookup_timeout_table_fndecl_34470 ata_lookup_timeout_table fndecl 1 34470 NULL
++disable_so_sk_rmem_schedule_fndecl_34476 sk_rmem_schedule fndecl 3 34476 NULL
++disable_so_end_seq_tcp_sack_block_34486 end_seq tcp_sack_block 0 34486 NULL
++disable_so_min_delay_intel_ilk_power_mgmt_34505 min_delay intel_ilk_power_mgmt 0 34505 NULL
++disable_so_sol_time_fcoe_ctlr_34513 sol_time fcoe_ctlr 0 34513 NULL
++disable_so_spu_set_interrupt_mode_fndecl_34518 spu_set_interrupt_mode fndecl 0 34518 NULL
++disable_so_stmmac_interrupt_fndecl_34535 stmmac_interrupt fndecl 1 34535 NULL
++disable_so_sin6_family_sockaddr_in6_34544 sin6_family sockaddr_in6 0 34544 NULL
++disable_so_mem_addr__drm_via_descriptor_34550 mem_addr _drm_via_descriptor 0 34550 NULL
++disable_so_root_server_addr_vardecl_34556 root_server_addr vardecl 0 34556 NULL
++disable_so_pfkey_sadb_addr2xfrm_addr_fndecl_34565 pfkey_sadb_addr2xfrm_addr fndecl 0 34565 NULL
++disable_so_map_sip_addr_fndecl_34566 map_sip_addr fndecl 2-3 34566 NULL
++disable_so_path_refresh_time_mesh_config_34567 path_refresh_time mesh_config 0 34567 NULL nohasharray
++disable_so_ccp_register_sha_algs_fndecl_34567 ccp_register_sha_algs fndecl 0 34567 &disable_so_path_refresh_time_mesh_config_34567
++disable_so_max_tx_power_mwifiex_chan_freq_power_34571 max_tx_power mwifiex_chan_freq_power 0 34571 NULL
++disable_so_last_mlx4_bitmap_34590 last mlx4_bitmap 0 34590 NULL
++disable_so_alloc_cpumask_var_fndecl_34599 alloc_cpumask_var fndecl 2 34599 NULL
++disable_so_addr_macb_dma_desc_34600 addr macb_dma_desc 0 34600 NULL
++disable_so_eee_timer_vardecl_sxgbe_main_c_34602 eee_timer vardecl_sxgbe_main.c 0 34602 NULL nohasharray
++disable_so_rdx_kvm_regs_34602 rdx kvm_regs 0 34602 &disable_so_eee_timer_vardecl_sxgbe_main_c_34602
++disable_so_rsi_kvm_regs_34605 rsi kvm_regs 0 34605 NULL
++disable_so_task_tgid_nr_ns_fndecl_34623 task_tgid_nr_ns fndecl 0 34623 NULL
++disable_so_saddr_irnet_log_34630 saddr irnet_log 0 34630 NULL
++disable_so_timestart_edc_34631 timestart edc 0 34631 NULL
++disable_so_saddr_tcp4_pseudohdr_34636 saddr tcp4_pseudohdr 0 34636 NULL
++disable_so_ab3100_mask_and_set_register_interruptible_fndecl_34643 ab3100_mask_and_set_register_interruptible fndecl 0 34643 NULL
++disable_so_hsave_msr_nested_state_34651 hsave_msr nested_state 0 34651 NULL
++disable_so_schedule_timeout_uninterruptible_fndecl_34670 schedule_timeout_uninterruptible fndecl 1-0 34670 NULL
++disable_so_addr_tuner_i2c_props_34671 addr tuner_i2c_props 0 34671 NULL
++disable_so_hash_ip4_expire_fndecl_34676 hash_ip4_expire fndecl 4 34676 NULL
++disable_so_rxfunaddr_musb_csr_regs_34678 rxfunaddr musb_csr_regs 0 34678 NULL
++disable_so_timer_intv_tipc_link_req_34680 timer_intv tipc_link_req 0 34680 NULL
++disable_so_mounted_uid_ncp_fs_info_34684 mounted_uid ncp_fs_info 0 34684 NULL
++disable_so_crypto_ablkcipher_setkey_fndecl_34685 crypto_ablkcipher_setkey fndecl 0-3 34685 NULL
++disable_so_pm_qos_update_request_timeout_fndecl_34688 pm_qos_update_request_timeout fndecl 3-2 34688 NULL
++disable_so_max_interrupt_work_vardecl_starfire_c_34691 max_interrupt_work vardecl_starfire.c 0 34691 NULL nohasharray
++disable_so_register_dnaddr_notifier_fndecl_34691 register_dnaddr_notifier fndecl 0 34691 &disable_so_max_interrupt_work_vardecl_starfire_c_34691
++disable_so_incr_cpu_timer_list_34693 incr cpu_timer_list 0 34693 NULL
++disable_so_crypto_pcbc_decrypt_segment_fndecl_34695 crypto_pcbc_decrypt_segment fndecl 0 34695 NULL
++disable_so_sgid_index_ib_global_route_34700 sgid_index ib_global_route 0 34700 NULL
++disable_so_min_mtime_sit_info_34717 min_mtime sit_info 0 34717 NULL nohasharray
++disable_so_panel_power_down_delay_intel_dp_34717 panel_power_down_delay intel_dp 0 34717 &disable_so_min_mtime_sit_info_34717
++disable_so_i_hash_shift_vardecl_inode_c_34719 i_hash_shift vardecl_inode.c 0 34719 NULL
++disable_so_wusb_trust_timeout_show_fndecl_34721 wusb_trust_timeout_show fndecl 0 34721 NULL nohasharray
++disable_so_feed_div_min_matrox_pll_features_34721 feed_div_min matrox_pll_features 0 34721 &disable_so_wusb_trust_timeout_show_fndecl_34721
++disable_so_time_ntlmv2_resp_34723 time ntlmv2_resp 0 34723 NULL
++disable_so_cache_time_vardecl_sbs_c_34731 cache_time vardecl_sbs.c 0 34731 NULL
++disable_so_calc_eng_mem_clock_fndecl_34737 calc_eng_mem_clock fndecl 2-0 34737 NULL
++disable_so_rx_time_us_qlcnic_nic_intr_coalesce_34739 rx_time_us qlcnic_nic_intr_coalesce 0 34739 NULL
++disable_so_di_mtime_qnx4_inode_entry_34740 di_mtime qnx4_inode_entry 0 34740 NULL
++disable_so_ts_paddr_start_ath_hw_34743 ts_paddr_start ath_hw 0 34743 NULL
++disable_so_smsc95xx_enable_phy_wakeup_interrupts_fndecl_34747 smsc95xx_enable_phy_wakeup_interrupts fndecl 0-2 34747 NULL
++disable_so_ccp_sha_finup_fndecl_34752 ccp_sha_finup fndecl 0 34752 NULL
++disable_so_sdr_fm_freq_vivid_dev_34755 sdr_fm_freq vivid_dev 0 34755 NULL
++disable_so_out_n_analog_pcm_runtime_34756 out_n_analog pcm_runtime 0 34756 NULL
++disable_so_dmaaddr_net2280_dma_34761 dmaaddr net2280_dma 0 34761 NULL
++disable_so_wl12xx_tx_delayed_compl_fndecl_34763 wl12xx_tx_delayed_compl fndecl 0 34763 NULL
++disable_so_uv_rtc_set_timer_fndecl_34765 uv_rtc_set_timer fndecl 1 34765 NULL
++disable_so_switch_start_time_ath_chanctx_sched_34766 switch_start_time ath_chanctx_sched 0 34766 NULL
++disable_so_xhci_calculate_intel_u2_timeout_fndecl_34769 xhci_calculate_intel_u2_timeout fndecl 0 34769 NULL
++disable_so_addrconf_get_prefix_route_fndecl_34770 addrconf_get_prefix_route fndecl 2 34770 NULL nohasharray
++disable_so_cp_mqd_base_addr_hi_cik_mqd_34770 cp_mqd_base_addr_hi cik_mqd 0 34770 &disable_so_addrconf_get_prefix_route_fndecl_34770
++disable_so_ts_total_peak_time_ref_34800 ts_total peak_time_ref 0 34800 NULL nohasharray
++disable_so_airtime_link_metric_get_fndecl_34800 airtime_link_metric_get fndecl 0 34800 &disable_so_ts_total_peak_time_ref_34800
++disable_so_btrfsic_block_link_hashtable_lookup_fndecl_34807 btrfsic_block_link_hashtable_lookup fndecl 2-4 34807 NULL
++disable_so_posix_cpu_nsleep_fndecl_34821 posix_cpu_nsleep fndecl 1 34821 NULL
++disable_so_phys_addr_kvm_coalesced_mmio_34828 phys_addr kvm_coalesced_mmio 0 34828 NULL
++disable_so_baddr_sym_m_vtob_34832 baddr sym_m_vtob 0 34832 NULL
++disable_so_tp_set_timers_fndecl_34836 tp_set_timers fndecl 2 34836 NULL nohasharray
++disable_so_clock_t_to_jiffies_fndecl_34836 clock_t_to_jiffies fndecl 0-1 34836 &disable_so_tp_set_timers_fndecl_34836
++disable_so_bq2415x_sysfs_show_timer_fndecl_34838 bq2415x_sysfs_show_timer fndecl 0 34838 NULL
++disable_so_compat_sys_utimensat_fndecl_34845 compat_sys_utimensat fndecl 1-0 34845 NULL
++disable_so_be64_to_timespec_fndecl_34857 be64_to_timespec fndecl 1 34857 NULL
++disable_so_bus_addr_drm_ati_pcigart_info_34860 bus_addr drm_ati_pcigart_info 0 34860 NULL
++disable_so_rt2x00crypto_rx_insert_iv_fndecl_34864 rt2x00crypto_rx_insert_iv fndecl 2 34864 NULL
++disable_so___mmc_set_clock_fndecl_34870 __mmc_set_clock fndecl 2 34870 NULL
++disable_so_node_random_fndecl_34871 node_random fndecl 0 34871 NULL
++disable_so_timer_endnode_hello_message_34875 timer endnode_hello_message 0 34875 NULL
++disable_so_drbg_hash_df_fndecl_34876 drbg_hash_df fndecl 0-3 34876 NULL
++disable_so_xfs_btree_shift_keys_fndecl_34880 xfs_btree_shift_keys fndecl 4 34880 NULL
++disable_so_check_freqs_fndecl_34886 check_freqs fndecl 2 34886 NULL
++disable_so_zd_iowrite16_fndecl_34890 zd_iowrite16 fndecl 0 34890 NULL
++disable_so_timespec_to_be64_fndecl_34898 timespec_to_be64 fndecl 0 34898 NULL
++disable_so_random_frame_fotg210_hcd_34908 random_frame fotg210_hcd 0 34908 NULL
++disable_so___addrconf_sysctl_register_fndecl_34918 __addrconf_sysctl_register fndecl 0 34918 NULL
++disable_so_addr_sge_fl_34923 addr sge_fl 0 34923 NULL
++disable_so_irq_timeout_read_fndecl_34926 irq_timeout_read fndecl 3-0 34926 NULL
++disable_so_show_interrupt_enable_fndecl_34935 show_interrupt_enable fndecl 0 34935 NULL
++disable_so_sctp_getsockopt_paddr_thresholds_fndecl_34938 sctp_getsockopt_paddr_thresholds fndecl 0 34938 NULL
++disable_so_nilfs_superblock_sb_write_time_show_fndecl_34943 nilfs_superblock_sb_write_time_show fndecl 0 34943 NULL
++disable_so_emac_addr_bnx2x_mac_vals_34948 emac_addr bnx2x_mac_vals 0 34948 NULL
++disable_so_fs_tss_segment_32_34954 fs tss_segment_32 0 34954 NULL
++disable_so_twl6030_interrupt_mask_fndecl_34960 twl6030_interrupt_mask fndecl 2-0 34960 NULL
++disable_so_tda18271_sleep_fndecl_34961 tda18271_sleep fndecl 0 34961 NULL
++disable_so_smack_task_setscheduler_fndecl_34976 smack_task_setscheduler fndecl 0 34976 NULL
++disable_so_rp_ts_jiffies_xpc_activate_mq_msghdr_uv_34992 rp_ts_jiffies xpc_activate_mq_msghdr_uv 0 34992 NULL
++disable_so_p_vaddr_elf64_phdr_34996 p_vaddr elf64_phdr 0 34996 NULL
++disable_so_ath9k_hw_rf_set_freq_fndecl_35000 ath9k_hw_rf_set_freq fndecl 0 35000 NULL
++disable_so_regulator_set_voltage_time_sel_fndecl_35005 regulator_set_voltage_time_sel fndecl 2-3-0 35005 NULL
++disable_so_read_addr_stride___cache_35010 read_addr_stride __cache 0 35010 NULL
++disable_so_get_slave_base_gid_ix_fndecl_35011 get_slave_base_gid_ix fndecl 0-2-3 35011 NULL
++disable_so_sccb_reg_write_fndecl_35015 sccb_reg_write fndecl 2-3 35015 NULL
++disable_so_fsl_pwm_calculate_period_cycles_fndecl_35019 fsl_pwm_calculate_period_cycles fndecl 0-2 35019 NULL nohasharray
++disable_so_dn_hash_sock_fndecl_35019 dn_hash_sock fndecl 0 35019 &disable_so_fsl_pwm_calculate_period_cycles_fndecl_35019
++disable_so_lp8788_rtc_set_time_fndecl_35021 lp8788_rtc_set_time fndecl 0 35021 NULL
++disable_so_qos_ctl_libipw_hdr_3addrqos_35024 qos_ctl libipw_hdr_3addrqos 0 35024 NULL
++disable_so_clk_divider_set_rate_fndecl_35029 clk_divider_set_rate fndecl 2-3 35029 NULL
++disable_so_et1phyaddr_ssb_sprom_35034 et1phyaddr ssb_sprom 0 35034 NULL
++disable_so_tg3_hwclock_to_timestamp_fndecl_35038 tg3_hwclock_to_timestamp fndecl 2 35038 NULL
++disable_so_cipso_v4_bitmap_walk_fndecl_35041 cipso_v4_bitmap_walk fndecl 0-3 35041 NULL
++disable_so_wmi_set_mac_address_fndecl_35043 wmi_set_mac_address fndecl 0 35043 NULL
++disable_so_hpi_cobranet_get_macaddress_fndecl_35048 hpi_cobranet_get_macaddress fndecl 1 35048 NULL
++disable_so_rds_sysctl_reconnect_max_jiffies_vardecl_35052 rds_sysctl_reconnect_max_jiffies vardecl 0 35052 NULL
++disable_so_bg_inode_bitmap_ext2_group_desc_35053 bg_inode_bitmap ext2_group_desc 0 35053 NULL
++disable_so_jiffies_u132_endp_35057 jiffies u132_endp 0 35057 NULL
++disable_so_vivid_sdr_s_frequency_fndecl_35060 vivid_sdr_s_frequency fndecl 0 35060 NULL nohasharray
++disable_so_bnx2x_rearm_latch_signal_fndecl_35060 bnx2x_rearm_latch_signal fndecl 2 35060 &disable_so_vivid_sdr_s_frequency_fndecl_35060
++disable_so_SYSC_signalfd4_fndecl_35061 SYSC_signalfd4 fndecl 4 35061 NULL
++disable_so_qp_get_mtt_addr_fndecl_35062 qp_get_mtt_addr fndecl 0 35062 NULL nohasharray
++disable_so_put_dec_fndecl_35062 put_dec fndecl 2 35062 &disable_so_qp_get_mtt_addr_fndecl_35062
++disable_so_time_perf_cgroup_info_35063 time perf_cgroup_info 0 35063 NULL
++disable_so_xattr_datum_hashkey_fndecl_35065 xattr_datum_hashkey fndecl 4 35065 NULL
++disable_so_fandiv1_nct6775_data_35066 fandiv1 nct6775_data 0 35066 NULL
++disable_so_backbias_response_time_radeon_dpm_35069 backbias_response_time radeon_dpm 0 35069 NULL
++disable_so_wrmsrl_safe_on_cpu_fndecl_35071 wrmsrl_safe_on_cpu fndecl 0-1 35071 NULL
++disable_so_update_time_vardecl_page_writeback_c_35083 update_time vardecl_page-writeback.c 0 35083 NULL
++disable_so_fifo_copy_timeout_rtl8139_private_35085 fifo_copy_timeout rtl8139_private 0 35085 NULL
++disable_so_kstrtou16_from_user_fndecl_35089 kstrtou16_from_user fndecl 2 35089 NULL
++disable_so_atomic_check_drm_crtc_helper_funcs_35115 atomic_check drm_crtc_helper_funcs 0 35115 NULL
++disable_so_sprintf_fndecl_35121 sprintf fndecl 0 35121 NULL
++disable_so_ipv6_add_addr_fndecl_35131 ipv6_add_addr fndecl 4-5-7-8-6 35131 NULL
++disable_so_free_irq_fndecl_35135 free_irq fndecl 1 35135 NULL
++disable_so_inet_addr_onlink_fndecl_35142 inet_addr_onlink fndecl 2-3 35142 NULL
++disable_so_dbg_snprintf_key_fndecl_35144 dbg_snprintf_key fndecl 4 35144 NULL
++disable_so_compute_guest_tsc_fndecl_35147 compute_guest_tsc fndecl 0 35147 NULL
++disable_so_ieee80211_crypto_ccmp_decrypt_fndecl_35154 ieee80211_crypto_ccmp_decrypt fndecl 2 35154 NULL
++disable_so_start_time_task_struct_35158 start_time task_struct 0 35158 NULL
++disable_so__da9063_wdt_set_timeout_fndecl_35161 _da9063_wdt_set_timeout fndecl 2-0 35161 NULL
++disable_so_hard_add_expires_seconds_xfrm_lifetime_cfg_35162 hard_add_expires_seconds xfrm_lifetime_cfg 0 35162 NULL
++disable_so_page_address_ms_param_register_35167 page_address ms_param_register 0 35167 NULL nohasharray
++disable_so_rsaddr_irnet_socket_35167 rsaddr irnet_socket 0 35167 &disable_so_page_address_ms_param_register_35167
++disable_so_acpi_os_remove_interrupt_handler_fndecl_35171 acpi_os_remove_interrupt_handler fndecl 1 35171 NULL
++disable_so_hash_mac4_expire_fndecl_35179 hash_mac4_expire fndecl 4 35179 NULL
++disable_so_wd_timeout_irlap_cb_35189 wd_timeout irlap_cb 0 35189 NULL
++disable_so_bitmap_set_memory_bits_fndecl_35200 bitmap_set_memory_bits fndecl 2 35200 NULL
++disable_so_o2nm_cluster_attr_idle_timeout_ms_read_fndecl_35219 o2nm_cluster_attr_idle_timeout_ms_read fndecl 0 35219 NULL
++disable_so_set_clock_sdhci_ops_35233 set_clock sdhci_ops 2 35233 NULL
++disable_so_dib3000mc_set_timing_fndecl_35234 dib3000mc_set_timing fndecl 2-3 35234 NULL
++disable_so_ui_ctimensec_ufs2_inode_35235 ui_ctimensec ufs2_inode 0 35235 NULL nohasharray
++disable_so_timerfd_fget_fndecl_35235 timerfd_fget fndecl 1 35235 &disable_so_ui_ctimensec_ufs2_inode_35235
++disable_so_fat_time_fat2unix_fndecl_35238 fat_time_fat2unix fndecl 5-4-3 35238 NULL nohasharray
++disable_so_c_reconnect_jiffies_rds_connection_35238 c_reconnect_jiffies rds_connection 0 35238 &disable_so_fat_time_fat2unix_fndecl_35238
++disable_so_link_transition_jiffies_cas_35242 link_transition_jiffies cas 0 35242 NULL
++disable_so_nested_vmx_load_msr_fndecl_35245 nested_vmx_load_msr fndecl 2 35245 NULL
++disable_so_freqmax_snd_usb_endpoint_35248 freqmax snd_usb_endpoint 0 35248 NULL
++disable_so___ocfs2_write_remove_suid_fndecl_35250 __ocfs2_write_remove_suid fndecl 0 35250 NULL
++disable_so_si_parse_pplib_clock_info_fndecl_35257 si_parse_pplib_clock_info fndecl 3 35257 NULL
++disable_so_nfs_init_timeout_values_fndecl_35265 nfs_init_timeout_values fndecl 3-4-2 35265 NULL
++disable_so_pm_generic_runtime_suspend_fndecl_35268 pm_generic_runtime_suspend fndecl 0 35268 NULL
++disable_so_err_time_ip_tunnel_35271 err_time ip_tunnel 0 35271 NULL
++disable_so_addr_1_qla8044_minidump_entry_pollrdmwr_35274 addr_1 qla8044_minidump_entry_pollrdmwr 0 35274 NULL
++disable_so_simple_strtoull_fndecl_35278 simple_strtoull fndecl 0 35278 NULL
++disable_so_jiffies_to_wait_irctl_35279 jiffies_to_wait irctl 0 35279 NULL
++disable_so_delay_loop_fndecl_35280 delay_loop fndecl 1 35280 NULL
++disable_so_lbs_set_deep_sleep_fndecl_35287 lbs_set_deep_sleep fndecl 0 35287 NULL nohasharray
++disable_so_log_start_addr_client_hdr_35287 log_start_addr client_hdr 0 35287 &disable_so_lbs_set_deep_sleep_fndecl_35287
++disable_so_max_sleep_period_ieee80211_conf_35289 max_sleep_period ieee80211_conf 0 35289 NULL
++disable_so_default_mclk_radeon_clock_35306 default_mclk radeon_clock 0 35306 NULL nohasharray
++disable_so_clock_intel_sdvo_preferred_input_timing_args_35306 clock intel_sdvo_preferred_input_timing_args 0 35306 &disable_so_default_mclk_radeon_clock_35306
++disable_so_sctp_setsockopt_primary_addr_fndecl_35330 sctp_setsockopt_primary_addr fndecl 3-0 35330 NULL
++disable_so_sys_setreuid_fndecl_35338 sys_setreuid fndecl 0-1-2 35338 NULL
++disable_so_tailbuf_paddr_gr_ep_35341 tailbuf_paddr gr_ep 0 35341 NULL
++disable_so_hpi_write_words_le16_fndecl_35350 hpi_write_words_le16 fndecl 2-4 35350 NULL
++disable_so_kvm_set_irq_fndecl_35352 kvm_set_irq fndecl 3-2 35352 NULL
++disable_so_rq_pbl_addr_lo_fcoe_kwqe_conn_offload1_35353 rq_pbl_addr_lo fcoe_kwqe_conn_offload1 0 35353 NULL
++disable_so_trim_timeout_mmc_ext_csd_35357 trim_timeout mmc_ext_csd 0 35357 NULL
++disable_so_alps_get_bitmap_points_fndecl_35358 alps_get_bitmap_points fndecl 1 35358 NULL nohasharray
++disable_so_nilfs_btree_node_init_fndecl_35358 nilfs_btree_node_init fndecl 4 35358 &disable_so_alps_get_bitmap_points_fndecl_35358
++disable_so_fl_break_time_file_lock_35359 fl_break_time file_lock 0 35359 NULL
++disable_so_read_addr_qla82xx_md_entry_cache_35362 read_addr qla82xx_md_entry_cache 0 35362 NULL
++disable_so_maddr_xmaddr_35364 maddr xmaddr 0 35364 NULL
++disable_so_timeout_per_command_vscsiif_request_35368 timeout_per_command vscsiif_request 0 35368 NULL
++disable_so_fuse_read_interrupt_fndecl_35386 fuse_read_interrupt fndecl 3-0 35386 NULL
++disable_so_vsock_addr_init_fndecl_35395 vsock_addr_init fndecl 2 35395 NULL
++disable_so_khugepaged_alloc_sleep_millisecs_vardecl_huge_memory_c_35404 khugepaged_alloc_sleep_millisecs vardecl_huge_memory.c 0 35404 NULL
++disable_so_crypto_ahash_setkey_fndecl_35405 crypto_ahash_setkey fndecl 0-3 35405 NULL
++disable_so_en_addr1_nphy_rf_control_override_rev3_35419 en_addr1 nphy_rf_control_override_rev3 0 35419 NULL
++disable_so_rds_ib_update_ipaddr_fndecl_35431 rds_ib_update_ipaddr fndecl 0-2 35431 NULL
++disable_so_address_atto_vda_sge_35432 address atto_vda_sge 0 35432 NULL
++disable_so_w1_process_command_addremove_fndecl_35438 w1_process_command_addremove fndecl 0 35438 NULL
++disable_so_smp_cmd_pairing_random_fndecl_35441 smp_cmd_pairing_random fndecl 0 35441 NULL
++disable_so_crypto_gcm_module_init_fndecl_35446 crypto_gcm_module_init fndecl 0 35446 NULL
++disable_so_ath5k_hw_get_default_slottime_fndecl_35448 ath5k_hw_get_default_slottime fndecl 0 35448 NULL
++disable_so_ac_gid_acct_v3_35461 ac_gid acct_v3 0 35461 NULL nohasharray
++disable_so_bitmap_checkpage_fndecl_35461 bitmap_checkpage fndecl 2 35461 &disable_so_ac_gid_acct_v3_35461
++disable_so_bitmap_blkno_ocfs2_super_35475 bitmap_blkno ocfs2_super 0 35475 NULL
++disable_so_rate_dummy_systimer_pcm_35487 rate dummy_systimer_pcm 0 35487 NULL
++disable_so_moder_time_mlx4_en_cq_35496 moder_time mlx4_en_cq 0 35496 NULL
++disable_so_orion_spi_runtime_resume_fndecl_35506 orion_spi_runtime_resume fndecl 0 35506 NULL
++disable_so_monotonic_time_snsec_vsyscall_gtod_data_35513 monotonic_time_snsec vsyscall_gtod_data 0 35513 NULL
++disable_so_mceusb_process_ir_data_fndecl_35515 mceusb_process_ir_data fndecl 2 35515 NULL
++disable_so_dst_set_freq_fndecl_35516 dst_set_freq fndecl 2 35516 NULL
++disable_so_rtl8139_weird_interrupt_fndecl_35523 rtl8139_weird_interrupt fndecl 4-5 35523 NULL
++disable_so_irlmp_start_discovery_timer_fndecl_35529 irlmp_start_discovery_timer fndecl 2 35529 NULL
++disable_so_address_SGentry_35534 address SGentry 0 35534 NULL
++disable_so_src_clk_freq_msdc_host_35541 src_clk_freq msdc_host 0 35541 NULL
++disable_so_SYSC_signal_fndecl_35543 SYSC_signal fndecl 1 35543 NULL
++disable_so_current_frequency_lgdt3306a_state_35547 current_frequency lgdt3306a_state 0 35547 NULL
++disable_so_i_rt_spc_timelimit_qc_info_35555 i_rt_spc_timelimit qc_info 0 35555 NULL
++disable_so_host_kvm_shared_msr_values_35560 host kvm_shared_msr_values 0 35560 NULL
++disable_so_mapped_loc_addr_nes_cm_info_35561 mapped_loc_addr nes_cm_info 0 35561 NULL
++disable_so_ath6kl_set_addrwin_reg_fndecl_35566 ath6kl_set_addrwin_reg fndecl 0-2 35566 NULL
++disable_so_output_sleep_fndecl_35570 output_sleep fndecl 1 35570 NULL
++disable_so_aes_decrypt_fail_read_fndecl_35596 aes_decrypt_fail_read fndecl 0-3 35596 NULL
++disable_so_hw_timeout_redrat3_dev_35597 hw_timeout redrat3_dev 0 35597 NULL
++disable_so_cx231xx_set_analog_freq_fndecl_35598 cx231xx_set_analog_freq fndecl 2 35598 NULL
++disable_so_sctp_conn_schedule_fndecl_35608 sctp_conn_schedule fndecl 1 35608 NULL
++disable_so_runtime_suspend_sleep_time_cyapa_35610 runtime_suspend_sleep_time cyapa 0 35610 NULL
++disable_so_debug_dma_unmap_page_fndecl_35623 debug_dma_unmap_page fndecl 3-2 35623 NULL
++disable_so_timecounter_read_fndecl_35625 timecounter_read fndecl 0 35625 NULL
++disable_so_clock_mmc_ios_35630 clock mmc_ios 0 35630 NULL
++disable_so_pretimeout_kempld_wdt_data_35641 pretimeout kempld_wdt_data 0 35641 NULL
++disable_so_time_show_fndecl_35660 time_show fndecl 0 35660 NULL
++disable_so_div3_pll_div_35668 div3 pll_div 0 35668 NULL
++disable_so_btree_get_extent_fndecl_35670 btree_get_extent fndecl 4-5 35670 NULL
++disable_so_paddr_ath10k_skb_cb_35676 paddr ath10k_skb_cb 0 35676 NULL
++disable_so_pci_bus_mraid_hba_info_35677 pci_bus mraid_hba_info 0 35677 NULL
++disable_so_m41t80_get_datetime_fndecl_35678 m41t80_get_datetime fndecl 0 35678 NULL
++disable_so_sh_tmu_clock_event_next_fndecl_35683 sh_tmu_clock_event_next fndecl 1 35683 NULL
++disable_so_randomize_range_fndecl_35684 randomize_range fndecl 1-2-3-0 35684 NULL
++disable_so_complete_signal_fndecl_35696 complete_signal fndecl 1 35696 NULL
++disable_so_nft_hash_insert_fndecl_35701 nft_hash_insert fndecl 0 35701 NULL
++disable_so_kvm_vm_ioctl_set_tss_addr_fndecl_35702 kvm_vm_ioctl_set_tss_addr fndecl 2 35702 NULL
++disable_so_si2165_adjust_pll_divl_fndecl_35704 si2165_adjust_pll_divl fndecl 0 35704 NULL
++disable_so_addr_l_xfer_desc_35720 addr_l xfer_desc 0 35720 NULL
++disable_so_m_hash_dlm_message_35721 m_hash dlm_message 0 35721 NULL
++disable_so_end_freq_khz_ieee80211_freq_range_35730 end_freq_khz ieee80211_freq_range 0 35730 NULL
++disable_so_start_addr_vpdma_dtd_35734 start_addr vpdma_dtd 0 35734 NULL
++disable_so_red_calc_qavg_from_idle_time_fndecl_35745 red_calc_qavg_from_idle_time fndecl 0 35745 NULL
++disable_so_cg_spll_spread_spectrum_2_si_clock_registers_35754 cg_spll_spread_spectrum_2 si_clock_registers 0 35754 NULL
++disable_so_l2tp_flowinfo_sockaddr_l2tpip6_35758 l2tp_flowinfo sockaddr_l2tpip6 0 35758 NULL nohasharray
++disable_so_sk_txhash_sock_35758 sk_txhash sock 0 35758 &disable_so_l2tp_flowinfo_sockaddr_l2tpip6_35758
++disable_so_get_mac_address_efx_nic_type_35761 get_mac_address efx_nic_type 0 35761 NULL
++disable_so_crypto_aead_alg_ivsize_fndecl_35777 crypto_aead_alg_ivsize fndecl 0 35777 NULL
++disable_so_vga_switcheroo_runtime_suspend_fndecl_35778 vga_switcheroo_runtime_suspend fndecl 0 35778 NULL
++disable_so_sm_lookup_bitmap_fndecl_35780 sm_lookup_bitmap fndecl 2 35780 NULL
++disable_so_r6040_interrupt_fndecl_35784 r6040_interrupt fndecl 1 35784 NULL
++disable_so_timer_installed_vardecl_ad1848_c_35808 timer_installed vardecl_ad1848.c 0 35808 NULL
++disable_so_addr_to_kill_35815 addr to_kill 0 35815 NULL
++disable_so_postsleep_max_us_mmc_ioc_cmd_35817 postsleep_max_us mmc_ioc_cmd 0 35817 NULL
++disable_so_calc_hash_fndecl_35821 calc_hash fndecl 0-3 35821 NULL
++disable_so_testscript_addr_ath6kl_hw_35825 testscript_addr ath6kl_hw 0 35825 NULL
++disable_so_dma_addr_cpcs_trailer_desc_35826 dma_addr cpcs_trailer_desc 0 35826 NULL nohasharray
++disable_so_nr_threads_signal_struct_35826 nr_threads signal_struct 0 35826 &disable_so_dma_addr_cpcs_trailer_desc_35826
++disable_so_iwl_mvm_schedule_csa_period_fndecl_35828 iwl_mvm_schedule_csa_period fndecl 3-4-0 35828 NULL
++disable_so_nfs4_schedule_stateid_recovery_fndecl_35861 nfs4_schedule_stateid_recovery fndecl 0 35861 NULL
++disable_so_timeout_last_ncp_server_35864 timeout_last ncp_server 0 35864 NULL
++disable_so_send_utimes_fndecl_35871 send_utimes fndecl 3-0-2 35871 NULL nohasharray
++disable_so_remote_rp_ts_jiffies_xpc_partition_35871 remote_rp_ts_jiffies xpc_partition 0 35871 &disable_so_send_utimes_fndecl_35871
++disable_so_current_frequency_lgdt3305_state_35902 current_frequency lgdt3305_state 0 35902 NULL
++disable_so_dram_addr_to_input_addr_fndecl_35905 dram_addr_to_input_addr fndecl 0-2 35905 NULL nohasharray
++disable_so_ifa_local_dn_ifaddr_35905 ifa_local dn_ifaddr 0 35905 &disable_so_dram_addr_to_input_addr_fndecl_35905
++disable_so_proc_uid_map_write_fndecl_35919 proc_uid_map_write fndecl 0-3 35919 NULL
++disable_so_snd_timer_user_fasync_fndecl_35926 snd_timer_user_fasync fndecl 1 35926 NULL nohasharray
++disable_so_ecb_aes_encrypt_fndecl_35926 ecb_aes_encrypt fndecl 0-4 35926 &disable_so_snd_timer_user_fasync_fndecl_35926
++disable_so_st_ctime_sec_p9_stat_dotl_35932 st_ctime_sec p9_stat_dotl 0 35932 NULL
++disable_so_cg_spll_func_cntl_rv730_clock_registers_35937 cg_spll_func_cntl rv730_clock_registers 0 35937 NULL
++disable_so_phy_addr_niu_35946 phy_addr niu 0 35946 NULL
++disable_so_curr_freq_ufs_clk_info_35949 curr_freq ufs_clk_info 0 35949 NULL
++disable_so_ac_gid_taskstats_35951 ac_gid taskstats 0 35951 NULL
++disable_so_addr_hi_eth_rx_bd_35955 addr_hi eth_rx_bd 0 35955 NULL nohasharray
++disable_so_hw_dma_bit_mask_hptiop_adapter_ops_35955 hw_dma_bit_mask hptiop_adapter_ops 0 35955 &disable_so_addr_hi_eth_rx_bd_35955
++disable_so_crypto_cmac_digest_setkey_fndecl_35967 crypto_cmac_digest_setkey fndecl 0-3 35967 NULL
++disable_so_abort_mfi_phys_addr_hi_megasas_abort_frame_35969 abort_mfi_phys_addr_hi megasas_abort_frame 0 35969 NULL
++disable_so_pch_can_bit_set_fndecl_35970 pch_can_bit_set fndecl 2 35970 NULL
++disable_so_kvasprintf_fndecl_35976 kvasprintf fndecl 1 35976 NULL
++disable_so___bitmap_parse_fndecl_35977 __bitmap_parse fndecl 0-2-5 35977 NULL
++disable_so_nct6775_select_fan_div_fndecl_35983 nct6775_select_fan_div fndecl 3-4 35983 NULL
++disable_so_ip_hash_ip4_elem_35987 ip hash_ip4_elem 0 35987 NULL
++disable_so_nct6775_write_fan_div_common_fndecl_35989 nct6775_write_fan_div_common fndecl 2 35989 NULL nohasharray
++disable_so_get_mtime_fndecl_35989 get_mtime fndecl 0 35989 &disable_so_nct6775_write_fan_div_common_fndecl_35989
++disable_so_sctp_getsockopt_peer_addr_params_fndecl_35998 sctp_getsockopt_peer_addr_params fndecl 0 35998 NULL
++disable_so_tuner_frequency_stv0299_state_35999 tuner_frequency stv0299_state 0 35999 NULL
++disable_so_sinfo_timetolive_sctp_sndrcvinfo_36000 sinfo_timetolive sctp_sndrcvinfo 0 36000 NULL
++disable_so_h_start_jiffies_jbd2_journal_handle_36008 h_start_jiffies jbd2_journal_handle 0 36008 NULL nohasharray
++disable_so_ccp_aes_xts_setkey_fndecl_36008 ccp_aes_xts_setkey fndecl 0-3 36008 &disable_so_h_start_jiffies_jbd2_journal_handle_36008
++disable_so_uv_local_mmr_address_fndecl_36009 uv_local_mmr_address fndecl 1 36009 NULL
++disable_so_adxl34x_autosleep_show_fndecl_36014 adxl34x_autosleep_show fndecl 0 36014 NULL
++disable_so_tst_addr_ns_dev_36023 tst_addr ns_dev 0 36023 NULL
++disable_so_addr_acard_sg_36025 addr acard_sg 0 36025 NULL
++disable_so_pcxhr_sub_get_external_clock_fndecl_36041 pcxhr_sub_get_external_clock fndecl 0 36041 NULL
++disable_so_address_fault_36043 address fault 0 36043 NULL
++disable_so_s35390a_rtc_set_time_fndecl_36048 s35390a_rtc_set_time fndecl 0 36048 NULL nohasharray
++disable_so_rt5677_dsp_mode_i2c_read_addr_fndecl_36048 rt5677_dsp_mode_i2c_read_addr fndecl 0-2 36048 &disable_so_s35390a_rtc_set_time_fndecl_36048
++disable_so_mmd_addr_reg_val_36052 mmd_addr reg_val 0 36052 NULL
++disable_so_ips_flashbusaddr_vardecl_ips_c_36053 ips_flashbusaddr vardecl_ips.c 0 36053 NULL
++disable_so_i_spc_timelimit_qc_info_36081 i_spc_timelimit qc_info 0 36081 NULL
++disable_so_st_gid_stat_36085 st_gid stat 0 36085 NULL
++disable_so_acpi_ev_address_space_dispatch_fndecl_36089 acpi_ev_address_space_dispatch fndecl 0-4-5 36089 NULL
++disable_so_mpll_ad_func_cntl_2_ni_clock_registers_36093 mpll_ad_func_cntl_2 ni_clock_registers 0 36093 NULL
++disable_so_i_atime_ocfs2_dinode_36099 i_atime ocfs2_dinode 0 36099 NULL
++disable_so_setup_timer_IRQ0_pin_fndecl_36100 setup_timer_IRQ0_pin fndecl 3-2 36100 NULL
++disable_so_error_info_addr_mvm_alive_resp_36103 error_info_addr mvm_alive_resp 0 36103 NULL nohasharray
++disable_so_cma_bitmap_pages_to_bits_fndecl_36103 cma_bitmap_pages_to_bits fndecl 0-2 36103 &disable_so_error_info_addr_mvm_alive_resp_36103
++disable_so_kstrtoull_fndecl_36106 kstrtoull fndecl 0 36106 NULL
++disable_so_fax_head_line_time_fndecl_36108 fax_head_line_time fndecl 0 36108 NULL
++disable_so_rtl8152_set_mac_address_fndecl_36112 rtl8152_set_mac_address fndecl 0 36112 NULL
++disable_so_t_sleep_cycle_at86rf2xx_chip_data_36118 t_sleep_cycle at86rf2xx_chip_data 0 36118 NULL
++disable_so_no_quota_btrfs_delayed_ref_node_36121 no_quota btrfs_delayed_ref_node 0 36121 NULL nohasharray
++disable_so_ccp_register_aes_xts_algs_fndecl_36121 ccp_register_aes_xts_algs fndecl 0 36121 &disable_so_no_quota_btrfs_delayed_ref_node_36121
++disable_so_shutdown_time_vardecl_torture_c_36136 shutdown_time vardecl_torture.c 0 36136 NULL nohasharray
++disable_so_i40e_init_interrupt_scheme_fndecl_36136 i40e_init_interrupt_scheme fndecl 0 36136 &disable_so_shutdown_time_vardecl_torture_c_36136
++disable_so_ath5k_hw_clocktoh_fndecl_36137 ath5k_hw_clocktoh fndecl 0-2 36137 NULL
++disable_so_addr_off_bfa_flash_s_36155 addr_off bfa_flash_s 0 36155 NULL
++disable_so_mlx4_bitmap_free_fndecl_36158 mlx4_bitmap_free fndecl 2 36158 NULL
++disable_so_setup_cluster_no_bitmap_fndecl_36163 setup_cluster_no_bitmap fndecl 4-5-6-7 36163 NULL
++disable_so_last_queue_full_time_bfad_itnim_s_36172 last_queue_full_time bfad_itnim_s 0 36172 NULL
++disable_so_do_cpuid_ent_fndecl_36174 do_cpuid_ent fndecl 5 36174 NULL
++disable_so_lzo_compress_fndecl_36177 lzo_compress fndecl 3 36177 NULL
++disable_so_set_radio_freq_fndecl_36200 set_radio_freq fndecl 2 36200 NULL
++disable_so_get_random_bytes_arch_fndecl_36201 get_random_bytes_arch fndecl 2 36201 NULL
++disable_so_netlbl_unlhsh_add_addr4_fndecl_36206 netlbl_unlhsh_add_addr4 fndecl 4-0 36206 NULL
++disable_so_assert_file_addr_sdpcm_shared_36210 assert_file_addr sdpcm_shared 0 36210 NULL
++disable_so_timestamp_rxdone_entry_desc_36213 timestamp rxdone_entry_desc 0 36213 NULL
++disable_so_interrupts_open_fndecl_36230 interrupts_open fndecl 0 36230 NULL
++disable_so_nhash_jffs2_full_dirent_36231 nhash jffs2_full_dirent 0 36231 NULL
++disable_so_max_level_cpufreq_cooling_device_36241 max_level cpufreq_cooling_device 0 36241 NULL
++disable_so_ovl_set_timestamps_fndecl_36245 ovl_set_timestamps fndecl 0 36245 NULL
++disable_so_evtchn_interrupt_fndecl_36255 evtchn_interrupt fndecl 1 36255 NULL
++disable_so_timeout_ip_vs_service_36264 timeout ip_vs_service 0 36264 NULL
++disable_so_dwell_time_dfs_conf_scan_settings_36271 dwell_time_dfs conf_scan_settings 0 36271 NULL
++disable_so_drbd_send_uuids_fndecl_36274 drbd_send_uuids fndecl 0 36274 NULL
++disable_so_bd_list_addr_lo_bnx2i_logout_request_36277 bd_list_addr_lo bnx2i_logout_request 0 36277 NULL
++disable_so_rds_ib_add_ipaddr_fndecl_36278 rds_ib_add_ipaddr fndecl 2 36278 NULL nohasharray
++disable_so_nilfs_btree_assign_gc_fndecl_36278 nilfs_btree_assign_gc fndecl 0-3 36278 &disable_so_rds_ib_add_ipaddr_fndecl_36278
++disable_so_last_post_time_vardecl_hv_balloon_c_36289 last_post_time vardecl_hv_balloon.c 0 36289 NULL
++disable_so_skb_physaddr_macb_36295 skb_physaddr macb 0 36295 NULL
++disable_so_dq_hash_bits_vardecl_dquot_c_36296 dq_hash_bits vardecl_dquot.c 0 36296 NULL
++disable_so_rpfilter_get_saddr_fndecl_36300 rpfilter_get_saddr fndecl 0-1 36300 NULL
++disable_so_sys_setregid16_fndecl_36302 sys_setregid16 fndecl 0-1-2 36302 NULL
++disable_so_f_frequency_fc2580_dev_36307 f_frequency fc2580_dev 0 36307 NULL
++disable_so_address_r8a66597_td_36315 address r8a66597_td 0 36315 NULL
++disable_so_address_acpi_madt_local_apic_override_36325 address acpi_madt_local_apic_override 0 36325 NULL nohasharray
++disable_so_num_addresses_i40e_aqc_macvlan_36325 num_addresses i40e_aqc_macvlan 0 36325 &disable_so_address_acpi_madt_local_apic_override_36325
++disable_so_cache_time_vardecl_ds2760_battery_c_36329 cache_time vardecl_ds2760_battery.c 0 36329 NULL
++disable_so_ext_start_addr_hi_i740fb_par_36335 ext_start_addr_hi i740fb_par 0 36335 NULL
++disable_so_mlx4_get_slave_node_guid_fndecl_36336 mlx4_get_slave_node_guid fndecl 2 36336 NULL
++disable_so_reg_delay_fndecl_36338 reg_delay fndecl 5 36338 NULL
++disable_so_dev_addr_del_fndecl_36356 dev_addr_del fndecl 0 36356 NULL
++disable_so_address_low_b43_dmadesc64_36370 address_low b43_dmadesc64 0 36370 NULL
++disable_so_cpuid_seek_fndecl_36372 cpuid_seek fndecl 0-2 36372 NULL
++disable_so_mhash_entries_vardecl_namespace_c_36377 mhash_entries vardecl_namespace.c 0 36377 NULL
++disable_so_btree_grow_fndecl_36388 btree_grow fndecl 3 36388 NULL
++disable_so_ie6xx_wdt_set_timeout_fndecl_36389 ie6xx_wdt_set_timeout fndecl 2 36389 NULL
++disable_so_cq_page_table_addr_hi_iscsi_kwqe_conn_offload1_36403 cq_page_table_addr_hi iscsi_kwqe_conn_offload1 0 36403 NULL
++disable_so_phys_addr_ntb_mw_36409 phys_addr ntb_mw 0 36409 NULL
++disable_so_tsl2563_write_interrupt_config_fndecl_36415 tsl2563_write_interrupt_config fndecl 0 36415 NULL
++disable_so_bitmap_bitremap_fndecl_36419 bitmap_bitremap fndecl 4-0-1 36419 NULL
++disable_so_cryptd_hash_final_enqueue_fndecl_36420 cryptd_hash_final_enqueue fndecl 0 36420 NULL
++disable_so_addr_azx_rb_36425 addr azx_rb 0 36425 NULL
++disable_so_discov_timeout_hci_dev_36432 discov_timeout hci_dev 0 36432 NULL
++disable_so_interrupt_event_ixgbe_adapter_36433 interrupt_event ixgbe_adapter 0 36433 NULL
++disable_so_hpi_bitstream_set_clock_edge_fndecl_36438 hpi_bitstream_set_clock_edge fndecl 1-0 36438 NULL
++disable_so_atime_fuse_setattr_in_36441 atime fuse_setattr_in 0 36441 NULL
++disable_so_family_xfrm_usersa_info_36443 family xfrm_usersa_info 0 36443 NULL
++disable_so_wlc_phy_channel2freq_fndecl_36444 wlc_phy_channel2freq fndecl 1 36444 NULL
++disable_so_max_delay_intel_ilk_power_mgmt_36447 max_delay intel_ilk_power_mgmt 0 36447 NULL
++disable_so_sys_setregid_fndecl_36457 sys_setregid fndecl 0-1-2 36457 NULL
++disable_so_mpll_dq_func_cntl_rv770_clock_registers_36466 mpll_dq_func_cntl rv770_clock_registers 0 36466 NULL
++disable_so_shortcal_timer_ath_ani_36468 shortcal_timer ath_ani 0 36468 NULL
++disable_so_check_config_address_fndecl_36471 check_config_address fndecl 4 36471 NULL nohasharray
++disable_so_db_addr_mlx5_ib_create_srq_36471 db_addr mlx5_ib_create_srq 0 36471 &disable_so_check_config_address_fndecl_36471
++disable_so_sysctl_rose_reset_request_timeout_vardecl_36479 sysctl_rose_reset_request_timeout vardecl 0 36479 NULL
++disable_so_address_mspro_attr_entry_36482 address mspro_attr_entry 0 36482 NULL
++disable_so_min_discovery_timeout_mesh_config_36485 min_discovery_timeout mesh_config 0 36485 NULL
++disable_so_bitmap_il_ht_agg_36487 bitmap il_ht_agg 0 36487 NULL
++disable_so_crypto_ecb_crypt_fndecl_36489 crypto_ecb_crypt fndecl 0 36489 NULL
++disable_so_address_arch_hw_breakpoint_36491 address arch_hw_breakpoint 0 36491 NULL
++disable_so_flush_timer_iwl_lq_sta_36505 flush_timer iwl_lq_sta 0 36505 NULL
++disable_so_demod_address_sp8870_config_36507 demod_address sp8870_config 0 36507 NULL
++disable_so_hashbin_remove_fndecl_36512 hashbin_remove fndecl 2 36512 NULL
++disable_so_mpll_ad_func_cntl_ni_clock_registers_36523 mpll_ad_func_cntl ni_clock_registers 0 36523 NULL
++disable_so_timeout_usbdevfs_bulktransfer_36525 timeout usbdevfs_bulktransfer 0 36525 NULL
++disable_so_ctl_freq_cx231xx_36526 ctl_freq cx231xx 0 36526 NULL
++disable_so_last_isr_time_misc_stats_36527 last_isr_time misc_stats 0 36527 NULL
++disable_so_mlx4_gen_guid_change_eqe_fndecl_36529 mlx4_gen_guid_change_eqe fndecl 0-2-3 36529 NULL
++disable_so_addr_e1000_phy_info_36530 addr e1000_phy_info 0 36530 NULL nohasharray
++disable_so_misc_mce_36530 misc mce 0 36530 &disable_so_addr_e1000_phy_info_36530
++disable_so_align_addr_sdhci_host_36535 align_addr sdhci_host 0 36535 NULL
++disable_so_gran_sizek_mtrr_cleanup_result_36538 gran_sizek mtrr_cleanup_result 0 36538 NULL
++disable_so_mcryptd_hash_export_fndecl_36554 mcryptd_hash_export fndecl 0 36554 NULL
++disable_so_snd_opl3_timer_new_fndecl_36558 snd_opl3_timer_new fndecl 0-3-2 36558 NULL
++disable_so_alarmtimer_rtc_interface_setup_fndecl_36561 alarmtimer_rtc_interface_setup fndecl 0 36561 NULL
++disable_so_mb86a20s_read_signal_strength_fndecl_36562 mb86a20s_read_signal_strength fndecl 0 36562 NULL
++disable_so_devm_request_threaded_irq_fndecl_36564 devm_request_threaded_irq fndecl 0-2-5 36564 NULL
++disable_so_VDisplay_xtimings_36585 VDisplay xtimings 0 36585 NULL
++disable_so_delay_usec_e1000_eeprom_info_36611 delay_usec e1000_eeprom_info 0 36611 NULL
++disable_so_enabled_hrtimer_events_fusbh200_hcd_36613 enabled_hrtimer_events fusbh200_hcd 0 36613 NULL nohasharray
++disable_so_myaddr_sym_hcb_36613 myaddr sym_hcb 0 36613 &disable_so_enabled_hrtimer_events_fusbh200_hcd_36613
++disable_so_bmc150_accel_runtime_resume_fndecl_36616 bmc150_accel_runtime_resume fndecl 0 36616 NULL nohasharray
++disable_so_frequency_tuner_simple_priv_36616 frequency tuner_simple_priv 0 36616 &disable_so_bmc150_accel_runtime_resume_fndecl_36616
++disable_so_dll_cntl_ni_clock_registers_36640 dll_cntl ni_clock_registers 0 36640 NULL
++disable_so_phys_addr_high_qlcnic_tx_mbx_36646 phys_addr_high qlcnic_tx_mbx 0 36646 NULL
++disable_so_ntfs_bitmap_set_run_fndecl_36647 ntfs_bitmap_set_run fndecl 2-3 36647 NULL
++disable_so_hfs_btree_open_fndecl_36648 hfs_btree_open fndecl 2 36648 NULL
++disable_so_radio_tea5777_set_freq_fndecl_36650 radio_tea5777_set_freq fndecl 0 36650 NULL
++disable_so_default_timeout_cyclades_port_36652 default_timeout cyclades_port 0 36652 NULL
++disable_so_trinity_get_sleep_divider_id_from_clock_fndecl_36654 trinity_get_sleep_divider_id_from_clock fndecl 2 36654 NULL
++disable_so_timeout_osst_tape_36656 timeout osst_tape 0 36656 NULL
++disable_so_sda_falling_time_dw_i2c_dev_36665 sda_falling_time dw_i2c_dev 0 36665 NULL
++disable_so_libipw_freq_to_channel_fndecl_36675 libipw_freq_to_channel fndecl 0-2 36675 NULL
++disable_so_el3_interrupt_fndecl_36679 el3_interrupt fndecl 1 36679 NULL
++disable_so_cg_spll_func_cntl_3_rv770_clock_registers_36680 cg_spll_func_cntl_3 rv770_clock_registers 0 36680 NULL
++disable_so_resp_dma_addr_generic_pdu_resc_36683 resp_dma_addr generic_pdu_resc 0 36683 NULL
++disable_so_store_imon_clock_fndecl_36685 store_imon_clock fndecl 0-4 36685 NULL
++disable_so_kdbgetaddrarg_fndecl_36689 kdbgetaddrarg fndecl 0 36689 NULL
++disable_so_ahash_def_finup_done1_fndecl_36695 ahash_def_finup_done1 fndecl 2 36695 NULL
++disable_so_backlight_on_delay_intel_dp_36699 backlight_on_delay intel_dp 0 36699 NULL
++disable_so_daddr_ipq_36701 daddr ipq 0 36701 NULL
++disable_so_sha512_generic_mod_init_fndecl_36702 sha512_generic_mod_init fndecl 0 36702 NULL
++disable_so_HYPERVISOR_dom0_op_fndecl_36705 HYPERVISOR_dom0_op fndecl 0 36705 NULL
++disable_so_pll_ref_div_pll_ct_36716 pll_ref_div pll_ct 0 36716 NULL
++disable_so_timecounter_cyc2time_fndecl_36723 timecounter_cyc2time fndecl 0-2 36723 NULL
++disable_so_hello_time___bridge_info_36726 hello_time __bridge_info 0 36726 NULL
++disable_so___clockevents_update_freq_fndecl_36730 __clockevents_update_freq fndecl 2 36730 NULL
++disable_so_lvds_ssc_freq_intel_vbt_data_36732 lvds_ssc_freq intel_vbt_data 0 36732 NULL
++disable_so_mlx4_bitmap_alloc_range_fndecl_36733 mlx4_bitmap_alloc_range fndecl 0-2-3 36733 NULL
++disable_so_hmark_hash_fndecl_36743 hmark_hash fndecl 0 36743 NULL
++disable_so_atimensec_fuse_attr_36765 atimensec fuse_attr 0 36765 NULL
++disable_so_sys_getgid16_fndecl_36779 sys_getgid16 fndecl 0 36779 NULL
++disable_so_hash_32_fndecl_36780 hash_32 fndecl 0-3 36780 NULL
++disable_so_di_gid_qnx6_inode_entry_36804 di_gid qnx6_inode_entry 0 36804 NULL nohasharray
++disable_so_jhash_fndecl_36804 jhash fndecl 0-2-3 36804 &disable_so_di_gid_qnx6_inode_entry_36804
++disable_so_last_time1_intel_ilk_power_mgmt_36819 last_time1 intel_ilk_power_mgmt 0 36819 NULL
++disable_so_xen_clocksource_get_cycles_fndecl_36821 xen_clocksource_get_cycles fndecl 0 36821 NULL
++disable_so_address_show_fndecl_36822 address_show fndecl 0 36822 NULL
++disable_so_next_desc_addr_mm_dma_desc_36825 next_desc_addr mm_dma_desc 0 36825 NULL
++disable_so_update_time_acpi_battery_36827 update_time acpi_battery 0 36827 NULL
++disable_so_nla_put_le16_fndecl_36829 nla_put_le16 fndecl 0-3 36829 NULL
++disable_so_sense_buf_phys_addr_hi_megasas_pthru_frame_36842 sense_buf_phys_addr_hi megasas_pthru_frame 0 36842 NULL
++disable_so_vkdb_printf_fndecl_36847 vkdb_printf fndecl 0 36847 NULL
++disable_so_cpu_to_fs32_fndecl_36849 cpu_to_fs32 fndecl 0-2 36849 NULL
++disable_so_mxl301rf_sleep_fndecl_36864 mxl301rf_sleep fndecl 0 36864 NULL
++disable_so_nfqueue_hash_fndecl_36865 nfqueue_hash fndecl 0-2-3-4 36865 NULL
++disable_so_irq_set_irq_wake_fndecl_36876 irq_set_irq_wake fndecl 0-1 36876 NULL
++disable_so_topology_change_timer_value___bridge_info_36878 topology_change_timer_value __bridge_info 0 36878 NULL
++disable_so_settle_time_sym_shcb_36880 settle_time sym_shcb 0 36880 NULL
++disable_so_mei_wd_set_start_timeout_fndecl_36890 mei_wd_set_start_timeout fndecl 2 36890 NULL
++disable_so_inet6_dump_ifaddr_fndecl_36895 inet6_dump_ifaddr fndecl 0 36895 NULL
++disable_so_sh_msiof_get_delay_bit_fndecl_36896 sh_msiof_get_delay_bit fndecl 0-1 36896 NULL
++disable_so_pwm_uptime_w83793_data_36909 pwm_uptime w83793_data 0 36909 NULL nohasharray
++disable_so_zd_iowrite32a_locked_fndecl_36909 zd_iowrite32a_locked fndecl 0-3 36909 &disable_so_pwm_uptime_w83793_data_36909
++disable_so_usb_runtime_suspend_fndecl_36911 usb_runtime_suspend fndecl 0 36911 NULL
++disable_so_buf_addr_mlx5_ib_create_srq_36916 buf_addr mlx5_ib_create_srq 0 36916 NULL
++disable_so_sbp2_pointer_to_addr_fndecl_36918 sbp2_pointer_to_addr fndecl 0 36918 NULL
++disable_so_start_pcm_timer0_fndecl_36921 start_pcm_timer0 fndecl 2 36921 NULL
++disable_so_timestamp_il3945_rx_frame_end_36930 timestamp il3945_rx_frame_end 0 36930 NULL
++disable_so_nilfs_btree_node_broken_fndecl_36936 nilfs_btree_node_broken fndecl 2-3 36936 NULL
++disable_so_wm8991_set_dai_clkdiv_fndecl_36938 wm8991_set_dai_clkdiv fndecl 3 36938 NULL
++disable_so_timeout_ieee80211_mgd_auth_data_36943 timeout ieee80211_mgd_auth_data 0 36943 NULL
++disable_so_i2c_address_itd1000_config_36949 i2c_address itd1000_config 0 36949 NULL
++disable_so_nla_put_be16_fndecl_36955 nla_put_be16 fndecl 0-3 36955 NULL
++disable_so_dma_addr_bcm_sysport_cb_36958 dma_addr bcm_sysport_cb 0 36958 NULL
++disable_so_timeout_trf7970a_36959 timeout trf7970a 0 36959 NULL nohasharray
++disable_so_s35390a_get_datetime_fndecl_36959 s35390a_get_datetime fndecl 0 36959 &disable_so_timeout_trf7970a_36959
++disable_so_spn_dev_sockaddr_pn_36960 spn_dev sockaddr_pn 0 36960 NULL
++disable_so_dpp_page_addr_hi_ocrdma_alloc_pd_uresp_36964 dpp_page_addr_hi ocrdma_alloc_pd_uresp 0 36964 NULL
++disable_so_tv_sec_compat_timespec_36965 tv_sec compat_timespec 0 36965 NULL
++disable_so_get_dclk_freq_fndecl_36970 get_dclk_freq fndecl 0 36970 NULL
++disable_so_intlog2_fndecl_36975 intlog2 fndecl 0-1 36975 NULL
++disable_so_psb_intel_clock_fndecl_36993 psb_intel_clock fndecl 1 36993 NULL
++disable_so_i_uid_write_fndecl_36996 i_uid_write fndecl 2 36996 NULL
++disable_so_addr_st_sgitem_37005 addr st_sgitem 0 37005 NULL
++disable_so_do_usleep_range_fndecl_37008 do_usleep_range fndecl 1-2 37008 NULL
++disable_so_insert_entries_i915_address_space_37011 insert_entries i915_address_space 3 37011 NULL
++disable_so_ext4_init_inode_bitmap_fndecl_37017 ext4_init_inode_bitmap fndecl 0-3 37017 NULL
++disable_so_sp_pt_regs_37018 sp pt_regs 0 37018 NULL
++disable_so_addr_gsm_dlci_37020 addr gsm_dlci 0 37020 NULL
++disable_so_lbq_addr_cqicb_37033 lbq_addr cqicb 0 37033 NULL
++disable_so_stv090x_get_car_freq_fndecl_37041 stv090x_get_car_freq fndecl 0-2 37041 NULL
++disable_so_resp_sas_sha_m_spg_fndecl_37046 resp_sas_sha_m_spg fndecl 0 37046 NULL
++disable_so_cyc2ns_shift_cyc2ns_data_37055 cyc2ns_shift cyc2ns_data 0 37055 NULL
++disable_so_max8997_muic_set_debounce_time_fndecl_37057 max8997_muic_set_debounce_time fndecl 2-0 37057 NULL
++disable_so_tms_cutime_compat_tms_37072 tms_cutime compat_tms 0 37072 NULL
++disable_so_u2_timeout_store_fndecl_37082 u2_timeout_store fndecl 0-4 37082 NULL
++disable_so_addr2_unlock_addr_37100 addr2 unlock_addr 0 37100 NULL
++disable_so_pch_gbe_hal_read_mac_addr_fndecl_37101 pch_gbe_hal_read_mac_addr fndecl 0 37101 NULL
++disable_so_blkcipher_next_slow_fndecl_37102 blkcipher_next_slow fndecl 3-4 37102 NULL
++disable_so_addr_ata_bmdma_prd_37108 addr ata_bmdma_prd 0 37108 NULL
++disable_so_nl80211_valid_4addr_fndecl_37115 nl80211_valid_4addr fndecl 0-4 37115 NULL
++disable_so_dlm_lockres_hash_fndecl_37119 dlm_lockres_hash fndecl 2 37119 NULL
++disable_so_uid_ipc64_perm_37121 uid ipc64_perm 0 37121 NULL
++disable_so_paddr_gr_dma_desc_37127 paddr gr_dma_desc 0 37127 NULL
++disable_so_max_cb_time_fndecl_37133 max_cb_time fndecl 0 37133 NULL
++disable_so_smt_get_time_fndecl_37135 smt_get_time fndecl 0 37135 NULL
++disable_so_div_q1_pll_values_37147 div_q1 pll_values 0 37147 NULL
++disable_so_ufshcd_setup_clocks_fndecl_37162 ufshcd_setup_clocks fndecl 0 37162 NULL
++disable_so_gid_fuse_attr_37169 gid fuse_attr 0 37169 NULL
++disable_so_smsc75xx_hash_fndecl_37173 smsc75xx_hash fndecl 0 37173 NULL
++disable_so_crypto_skcipher_givencrypt_fndecl_37175 crypto_skcipher_givencrypt fndecl 0 37175 NULL
++disable_so_ip_vs_set_timeout_fndecl_37183 ip_vs_set_timeout fndecl 0 37183 NULL
++disable_so_pci_bus_cx25821_dev_37185 pci_bus cx25821_dev 0 37185 NULL
++disable_so_b43_set_slot_time_fndecl_37196 b43_set_slot_time fndecl 2 37196 NULL
++disable_so_af9013_sleep_fndecl_37201 af9013_sleep fndecl 0 37201 NULL
++disable_so_sock_check_timeo_net_conf_37210 sock_check_timeo net_conf 0 37210 NULL
++disable_so_tms_utime_tms_37217 tms_utime tms 0 37217 NULL
++disable_so_lx_interrupt_request_new_buffer_fndecl_37218 lx_interrupt_request_new_buffer fndecl 0 37218 NULL
++disable_so_cryptomgr_notify_fndecl_37232 cryptomgr_notify fndecl 0 37232 NULL
++disable_so_wm831x_wdt_set_timeout_fndecl_37238 wm831x_wdt_set_timeout fndecl 2-0 37238 NULL
++disable_so_qh_schedule_fndecl_37247 qh_schedule fndecl 0 37247 NULL
++disable_so_nilfs_segctor_last_nongc_write_time_secs_show_fndecl_37250 nilfs_segctor_last_nongc_write_time_secs_show fndecl 0 37250 NULL nohasharray
++disable_so_total_crypto_hash_walk_37250 total crypto_hash_walk 0 37250 &disable_so_nilfs_segctor_last_nongc_write_time_secs_show_fndecl_37250
++disable_so_fq_rehash_fndecl_37274 fq_rehash fndecl 3-5 37274 NULL
++disable_so_set_addr_dsa_switch_driver_37276 set_addr dsa_switch_driver 0 37276 NULL
++disable_so_tv_sec_timeval_37284 tv_sec timeval 0 37284 NULL
++disable_so_timestamp_nfs4_lockdata_37285 timestamp nfs4_lockdata 0 37285 NULL
++disable_so_ccp_register_aes_xts_alg_fndecl_37292 ccp_register_aes_xts_alg fndecl 0 37292 NULL
++disable_so_ssb_chipco_timing_init_fndecl_37295 ssb_chipco_timing_init fndecl 2 37295 NULL
++disable_so_atime_sec_ubifs_ino_node_37298 atime_sec ubifs_ino_node 0 37298 NULL
++disable_so_sel_addr___queue_37305 sel_addr __queue 0 37305 NULL
++disable_so_nla_put_shortaddr_fndecl_37306 nla_put_shortaddr fndecl 0 37306 NULL
++disable_so_snd_pcm_sgbuf_get_addr_fndecl_37310 snd_pcm_sgbuf_get_addr fndecl 0-2 37310 NULL
++disable_so_qla2x00_program_flash_address_fndecl_37312 qla2x00_program_flash_address fndecl 2 37312 NULL
++disable_so_linetime_skl_pipe_wm_37317 linetime skl_pipe_wm 0 37317 NULL
++disable_so_d_time_ptc_stats_37320 d_time ptc_stats 0 37320 NULL nohasharray
++disable_so_dst_slave_addr_rcar_dmac_chan_37320 dst_slave_addr rcar_dmac_chan 0 37320 &disable_so_d_time_ptc_stats_37320
++disable_so_edx_tss_segment_32_37322 edx tss_segment_32 0 37322 NULL
++disable_so_time_stamp_ixgbevf_tx_buffer_37332 time_stamp ixgbevf_tx_buffer 0 37332 NULL
++disable_so_dccpor_elapsed_time_dccp_options_received_37349 dccpor_elapsed_time dccp_options_received 0 37349 NULL nohasharray
++disable_so_rhine_interrupt_fndecl_37349 rhine_interrupt fndecl 1 37349 &disable_so_dccpor_elapsed_time_dccp_options_received_37349
++disable_so_cpufreq_get_policy_fndecl_37351 cpufreq_get_policy fndecl 0-2 37351 NULL
++disable_so_blocksize_ccp_aes_def_37352 blocksize ccp_aes_def 0 37352 NULL
++disable_so_disengage_timeout_xpc_partition_37353 disengage_timeout xpc_partition 0 37353 NULL
++disable_so_nilfs_btree_lookup_contig_fndecl_37360 nilfs_btree_lookup_contig fndecl 0-2 37360 NULL
++disable_so_timeo_rpc_rtt_37368 timeo rpc_rtt 0 37368 NULL
++disable_so_calc_divisor_fndecl_37379 calc_divisor fndecl 0-1 37379 NULL
++disable_so_uid_ncp_mount_data_37380 uid ncp_mount_data 0 37380 NULL nohasharray
++disable_so_ip_vs_conn_hashkey_conn_fndecl_37380 ip_vs_conn_hashkey_conn fndecl 0 37380 &disable_so_uid_ncp_mount_data_37380
++disable_so_clock_delay_adv7511_link_config_37390 clock_delay adv7511_link_config 0 37390 NULL nohasharray
++disable_so_mtrr_check_fndecl_37390 mtrr_check fndecl 1-2 37390 &disable_so_clock_delay_adv7511_link_config_37390
++disable_so_tuner_addr_cx231xx_37393 tuner_addr cx231xx 0 37393 NULL
++disable_so_minute_timestamp_37395 minute timestamp 0 37395 NULL
++disable_so_mthca_mr_alloc_fndecl_37397 mthca_mr_alloc fndecl 5-0-2-3 37397 NULL
++disable_so_cx24123_int_log2_fndecl_37405 cx24123_int_log2 fndecl 0-2 37405 NULL
++disable_so_s_def_resgid_ext2_super_block_37420 s_def_resgid ext2_super_block 0 37420 NULL nohasharray
++disable_so_fast_pwrup_delay_ssb_chipcommon_37420 fast_pwrup_delay ssb_chipcommon 0 37420 &disable_so_s_def_resgid_ext2_super_block_37420
++disable_so_nfs_key_timeout_notify_fndecl_37423 nfs_key_timeout_notify fndecl 0 37423 NULL nohasharray
++disable_so_netxen_schedule_work_fndecl_37423 netxen_schedule_work fndecl 3 37423 &disable_so_nfs_key_timeout_notify_fndecl_37423
++disable_so_rx8025_sysfs_store_clock_adjust_fndecl_37426 rx8025_sysfs_store_clock_adjust fndecl 0-4 37426 NULL
++disable_so_port_mlx4_alias_guid_work_context_37428 port mlx4_alias_guid_work_context 0 37428 NULL
++disable_so_lpfc_max_scsicmpl_time_set_fndecl_37433 lpfc_max_scsicmpl_time_set fndecl 2 37433 NULL
++disable_so_mld_ifc_start_timer_fndecl_37436 mld_ifc_start_timer fndecl 2 37436 NULL
++disable_so_guest_phys_addr_vhost_memory_region_37438 guest_phys_addr vhost_memory_region 0 37438 NULL nohasharray
++disable_so_tun1_maddress_stv0900_init_params_37438 tun1_maddress stv0900_init_params 0 37438 &disable_so_guest_phys_addr_vhost_memory_region_37438
++disable_so_i2c_addr_m88ds3103_config_37446 i2c_addr m88ds3103_config 0 37446 NULL
++disable_so_hd_phys_address_hpet_data_37448 hd_phys_address hpet_data 0 37448 NULL
++disable_so_ip_addr_c2_netaddr_37452 ip_addr c2_netaddr 0 37452 NULL
++disable_so_acpi_map_cpuid_fndecl_37455 acpi_map_cpuid fndecl 0-1-2 37455 NULL
++disable_so_regcache_lzo_block_count_fndecl_37459 regcache_lzo_block_count fndecl 0 37459 NULL
++disable_so_iwl_dbgfs_interrupt_write_fndecl_37470 iwl_dbgfs_interrupt_write fndecl 0-3 37470 NULL
++disable_so_freq_timex_37471 freq timex 0 37471 NULL
++disable_so_gk104_fifo_engidx_fndecl_37472 gk104_fifo_engidx fndecl 0 37472 NULL
++disable_so_ocfs2_write_remove_suid_fndecl_37473 ocfs2_write_remove_suid fndecl 0 37473 NULL
++disable_so_zd_iowrite16a_locked_fndecl_37478 zd_iowrite16a_locked fndecl 0 37478 NULL
++disable_so_base_clock_slgt_info_37486 base_clock slgt_info 0 37486 NULL
++disable_so_onenand_addr_fndecl_37493 onenand_addr fndecl 0-2 37493 NULL
++disable_so_bitmap_shift_right_fndecl_37507 bitmap_shift_right fndecl 3-4 37507 NULL
++disable_so_phys_addr_netxen_recv_context_37520 phys_addr netxen_recv_context 0 37520 NULL
++disable_so_dma_addr_vmxnet3_tx_buf_info_37524 dma_addr vmxnet3_tx_buf_info 0 37524 NULL
++disable_so_start_time_fnic_io_req_37530 start_time fnic_io_req 0 37530 NULL
++disable_so_hash_val_rss_header_37536 hash_val rss_header 0 37536 NULL
++disable_so_dev_addr_bdc_37537 dev_addr bdc 0 37537 NULL
++disable_so_cobalt_enum_dv_timings_fndecl_37539 cobalt_enum_dv_timings fndecl 0 37539 NULL
++disable_so_timestamp_cw1200_link_entry_37549 timestamp cw1200_link_entry 0 37549 NULL
++disable_so_c_resolution_snd_timer_hardware_37556 c_resolution snd_timer_hardware 0 37556 NULL
++disable_so_dummy_systimer_pointer_fndecl_37562 dummy_systimer_pointer fndecl 0 37562 NULL
++disable_so_cir_wake_addr_nvt_dev_37577 cir_wake_addr nvt_dev 0 37577 NULL
++disable_so_clients_bit_vector_mac_configuration_entry_37582 clients_bit_vector mac_configuration_entry 0 37582 NULL
++disable_so___round_jiffies_up_fndecl_37586 __round_jiffies_up fndecl 2-1-0 37586 NULL
++disable_so_xfs_btree_updkey_fndecl_37592 xfs_btree_updkey fndecl 0 37592 NULL
++disable_so_r6b_val_fc2580_freq_regs_37593 r6b_val fc2580_freq_regs 0 37593 NULL
++disable_so_audit_backlog_wait_time_master_vardecl_audit_c_37596 audit_backlog_wait_time_master vardecl_audit.c 0 37596 NULL
++disable_so_hhf_arrays_reset_timestamp_hhf_sched_data_37598 hhf_arrays_reset_timestamp hhf_sched_data 0 37598 NULL
++disable_so_rate_den_snd_pcm_runtime_37607 rate_den snd_pcm_runtime 0 37607 NULL
++disable_so_vdi_mtime_vxfs_inode_info_37613 vdi_mtime vxfs_inode_info 0 37613 NULL
++disable_so_tx_bufs_dma_addr_sc92031_priv_37616 tx_bufs_dma_addr sc92031_priv 0 37616 NULL
++disable_so_brcmf_msgbuf_schedule_txdata_fndecl_37619 brcmf_msgbuf_schedule_txdata fndecl 2 37619 NULL
++disable_so_pvr2_hdw_set_cur_freq_fndecl_37630 pvr2_hdw_set_cur_freq fndecl 2 37630 NULL
++disable_so_pixclock_fb_cvt_data_37637 pixclock fb_cvt_data 0 37637 NULL
++disable_so_ieee80211_if_read_beacon_timeout_fndecl_37639 ieee80211_if_read_beacon_timeout fndecl 3-0 37639 NULL
++disable_so_ds1374_read_time_fndecl_37640 ds1374_read_time fndecl 0 37640 NULL
++disable_so_addr_handler_fndecl_37652 addr_handler fndecl 1 37652 NULL
++disable_so_v_radeon_clock_voltage_dependency_entry_37656 v radeon_clock_voltage_dependency_entry 0 37656 NULL
++disable_so_bma150_set_high_g_interrupt_fndecl_37662 bma150_set_high_g_interrupt fndecl 4-5-3-0 37662 NULL
++disable_so_SYSC_setresuid_fndecl_37663 SYSC_setresuid fndecl 0 37663 NULL
++disable_so_sht15_interrupt_fired_fndecl_37668 sht15_interrupt_fired fndecl 1 37668 NULL
++disable_so_munge_address_falcon_spi_device_37671 munge_address falcon_spi_device 0 37671 NULL
++disable_so___hw_addr_unsync_fndecl_37673 __hw_addr_unsync fndecl 3 37673 NULL
++disable_so_uv_mmtimer_femtoperiod_vardecl_uv_mmtimer_c_37680 uv_mmtimer_femtoperiod vardecl_uv_mmtimer.c 0 37680 NULL
++disable_so_phy_addr_pxa168_eth_private_37687 phy_addr pxa168_eth_private 0 37687 NULL
++disable_so_pch_udc_read_ep_interrupts_fndecl_37692 pch_udc_read_ep_interrupts fndecl 0 37692 NULL
++disable_so_en_addr0_nphy_rf_control_override_rev3_37699 en_addr0 nphy_rf_control_override_rev3 0 37699 NULL
++disable_so_sense_phys_addr_megasas_cmd_37718 sense_phys_addr megasas_cmd 0 37718 NULL
++disable_so_dsc_poll_freq_ide_tape_obj_37730 dsc_poll_freq ide_tape_obj 0 37730 NULL
++disable_so_no_gc_sleep_time_f2fs_gc_kthread_37736 no_gc_sleep_time f2fs_gc_kthread 0 37736 NULL
++disable_so_b_addr_dma_data_buffer_37749 b_addr dma_data_buffer 0 37749 NULL
++disable_so_test_hash_jiffies_fndecl_37757 test_hash_jiffies fndecl 4 37757 NULL
++disable_so_bufptr_addr_nm256_stream_37759 bufptr_addr nm256_stream 0 37759 NULL nohasharray
++disable_so_gcm_hash_crypt_continue_fndecl_37759 gcm_hash_crypt_continue fndecl 0 37759 &disable_so_bufptr_addr_nm256_stream_37759
++disable_so_get_semotime_fndecl_37761 get_semotime fndecl 0 37761 NULL
++disable_so_ds_tss_segment_32_37770 ds tss_segment_32 0 37770 NULL nohasharray
++disable_so_ccp_run_aes_cmd_fndecl_37770 ccp_run_aes_cmd fndecl 0 37770 &disable_so_ds_tss_segment_32_37770
++disable_so_sys_signal_fndecl_37776 sys_signal fndecl 1 37776 NULL
++disable_so_jiffies_till_next_fqs_vardecl_tree_c_37778 jiffies_till_next_fqs vardecl_tree.c 0 37778 NULL
++disable_so_col_scan_delay_us_matrix_keypad_platform_data_37789 col_scan_delay_us matrix_keypad_platform_data 0 37789 NULL
++disable_so_small_buf_phy_addr_ql3_adapter_37791 small_buf_phy_addr ql3_adapter 0 37791 NULL
++disable_so_bitmap_intersects_fndecl_37795 bitmap_intersects fndecl 3 37795 NULL
++disable_so_clock_panel_info_37807 clock panel_info 0 37807 NULL
++disable_so_unix_gid_hash_fndecl_37822 unix_gid_hash fndecl 0 37822 NULL
++disable_so_btrfs_inode_uid_fndecl_37823 btrfs_inode_uid fndecl 0 37823 NULL
++disable_so_snd_usb_find_clock_multiplier_fndecl_37825 snd_usb_find_clock_multiplier fndecl 2 37825 NULL nohasharray
++disable_so_queue_show_random_fndecl_37825 queue_show_random fndecl 0 37825 &disable_so_snd_usb_find_clock_multiplier_fndecl_37825
++disable_so_intr_gen_timer_trigger_ath_hw_37826 intr_gen_timer_trigger ath_hw 0 37826 NULL
++disable_so_mvs_interrupt_fndecl_37840 mvs_interrupt fndecl 1 37840 NULL
++disable_so_aic7xxx_seltime_vardecl_aic7xxx_osm_c_37841 aic7xxx_seltime vardecl_aic7xxx_osm.c 0 37841 NULL
++disable_so_baud_uartdiv_baycom_state_37846 baud_uartdiv baycom_state 0 37846 NULL
++disable_so_ac97_clock_vardecl_intel8x0m_c_37848 ac97_clock vardecl_intel8x0m.c 0 37848 NULL nohasharray
++disable_so_rtl818x_iowrite8_idx_fndecl_37848 rtl818x_iowrite8_idx fndecl 3 37848 &disable_so_ac97_clock_vardecl_intel8x0m_c_37848
++disable_so_io_addr_kcq_info_37850 io_addr kcq_info 0 37850 NULL
++disable_so_last_signal_sta_info_37865 last_signal sta_info 0 37865 NULL
++disable_so_dccpor_timestamp_echo_dccp_options_received_37875 dccpor_timestamp_echo dccp_options_received 0 37875 NULL
++disable_so_ccp_aes_cmac_update_fndecl_37894 ccp_aes_cmac_update fndecl 0 37894 NULL
++disable_so_chip_delay_nand_chip_37901 chip_delay nand_chip 0 37901 NULL
++disable_so_saddr_irlap_cb_37910 saddr irlap_cb 0 37910 NULL
++disable_so_disk_timeout_disk_conf_37918 disk_timeout disk_conf 0 37918 NULL
++disable_so_show_time_in_state_fndecl_37923 show_time_in_state fndecl 0 37923 NULL
++disable_so_snd_timer_user_pause_fndecl_37928 snd_timer_user_pause fndecl 0 37928 NULL
++disable_so_is_valid_rtc_data_addr_il_ops_37930 is_valid_rtc_data_addr il_ops 1 37930 NULL
++disable_so_wl18xx_enable_interrupts_fndecl_37937 wl18xx_enable_interrupts fndecl 0 37937 NULL nohasharray
++disable_so_nested_vmx_store_msr_fndecl_37937 nested_vmx_store_msr fndecl 2 37937 &disable_so_wl18xx_enable_interrupts_fndecl_37937
++disable_so_last_ack_time_misc_stats_37946 last_ack_time misc_stats 0 37946 NULL
++disable_so_vblank_lo_lvds_dvo_timing_37949 vblank_lo lvds_dvo_timing 0 37949 NULL
++disable_so_ath6kl_get_hi_item_addr_fndecl_37951 ath6kl_get_hi_item_addr fndecl 0-2 37951 NULL
++disable_so_bitmap_word_used_fndecl_37955 bitmap_word_used fndecl 2 37955 NULL
++disable_so_process_tgid_coredump_proc_event_37962 process_tgid coredump_proc_event 0 37962 NULL
++disable_so_device_addr_net2280_tx_hdr_37967 device_addr net2280_tx_hdr 0 37967 NULL nohasharray
++disable_so_sctp_assoc_set_bind_addr_from_cookie_fndecl_37967 sctp_assoc_set_bind_addr_from_cookie fndecl 0-3 37967 &disable_so_device_addr_net2280_tx_hdr_37967
++disable_so_read_l1_tsc_kvm_x86_ops_37977 read_l1_tsc kvm_x86_ops 0-2 37977 NULL
++disable_so_ipqhashfn_fndecl_37983 ipqhashfn fndecl 1-4 37983 NULL
++disable_so_divider_get_val_fndecl_37994 divider_get_val fndecl 1-2-4-0 37994 NULL
++disable_so_rfc4106_set_hash_subkey_fndecl_37995 rfc4106_set_hash_subkey fndecl 3 37995 NULL
++disable_so_intel_overlay_recover_from_interrupt_fndecl_37996 intel_overlay_recover_from_interrupt fndecl 0 37996 NULL
++disable_so_demod_address_tda10023_config_37998 demod_address tda10023_config 0 37998 NULL nohasharray
++disable_so_addrconf_del_ifaddr_fndecl_37998 addrconf_del_ifaddr fndecl 0 37998 &disable_so_demod_address_tda10023_config_37998
++disable_so_clear_bit_unlock_fndecl_38002 clear_bit_unlock fndecl 1 38002 NULL
++disable_so_mactime_ieee80211_rx_status_38004 mactime ieee80211_rx_status 0 38004 NULL
++disable_so_conn_info_timestamp_hci_conn_38005 conn_info_timestamp hci_conn 0 38005 NULL
++disable_so_il_vsync_v4l2_bt_timings_38013 il_vsync v4l2_bt_timings 0 38013 NULL
++disable_so_bch_strtouint_h_fndecl_38016 bch_strtouint_h fndecl 0 38016 NULL
++disable_so_crypto_ccm_encrypt_fndecl_38019 crypto_ccm_encrypt fndecl 0 38019 NULL
++disable_so_beacon_timeout_ms_vardecl_38026 beacon_timeout_ms vardecl 0 38026 NULL
++disable_so_ima_calc_field_array_hash_fndecl_38044 ima_calc_field_array_hash fndecl 0-3 38044 NULL
++disable_so_mISDN_clock_update_fndecl_38046 mISDN_clock_update fndecl 2 38046 NULL
++disable_so_rv6xx_memory_clock_entry_set_post_divider_fndecl_38049 rv6xx_memory_clock_entry_set_post_divider fndecl 3 38049 NULL nohasharray
++disable_so_tuner_set_frequency_stb0899_config_38049 tuner_set_frequency stb0899_config 2 38049 &disable_so_rv6xx_memory_clock_entry_set_post_divider_fndecl_38049
++disable_so_bcma_pmu_get_cpu_clock_fndecl_38056 bcma_pmu_get_cpu_clock fndecl 0 38056 NULL
++disable_so_mei_irq_write_handler_fndecl_38063 mei_irq_write_handler fndecl 0 38063 NULL
++disable_so_follow_huge_addr_fndecl_38066 follow_huge_addr fndecl 2 38066 NULL
++disable_so_wait_for_completion_timeout_fndecl_38078 wait_for_completion_timeout fndecl 0-2 38078 NULL
++disable_so_wm8961_set_clkdiv_fndecl_38080 wm8961_set_clkdiv fndecl 3 38080 NULL
++disable_so_process_tgid_ptrace_proc_event_38081 process_tgid ptrace_proc_event 0 38081 NULL
++disable_so_blocknr_disk_bitmap_header_38088 blocknr disk_bitmap_header 0 38088 NULL
++disable_so_index_cnt_btrfs_delayed_node_38090 index_cnt btrfs_delayed_node 0 38090 NULL
++disable_so_bq32k_rtc_set_time_fndecl_38091 bq32k_rtc_set_time fndecl 0 38091 NULL nohasharray
++disable_so_apei_map_generic_address_fndecl_38091 apei_map_generic_address fndecl 0 38091 &disable_so_bq32k_rtc_set_time_fndecl_38091
++disable_so_xfs_iformat_btree_fndecl_38096 xfs_iformat_btree fndecl 0 38096 NULL
++disable_so_inet6_rtm_newaddr_fndecl_38099 inet6_rtm_newaddr fndecl 0 38099 NULL
++disable_so_tuner_set_frequency_stv090x_config_38105 tuner_set_frequency stv090x_config 2 38105 NULL
++disable_so_atomic_notifier_chain_register_fndecl_38114 atomic_notifier_chain_register fndecl 0 38114 NULL
++disable_so_timeout_parms_to_skb_fndecl_38116 timeout_parms_to_skb fndecl 0 38116 NULL
++disable_so_key_idx_off_ieee80211_cipher_scheme_38117 key_idx_off ieee80211_cipher_scheme 0 38117 NULL
++disable_so_qla2x00_zio_timer_store_fndecl_38118 qla2x00_zio_timer_store fndecl 0 38118 NULL
++disable_so_pch_udc_write_ep_interrupts_fndecl_38129 pch_udc_write_ep_interrupts fndecl 2 38129 NULL
++disable_so_ipv4addr_cxgbi_hba_38131 ipv4addr cxgbi_hba 0 38131 NULL
++disable_so_ep0_bounce_addr_dwc3_38133 ep0_bounce_addr dwc3 0 38133 NULL
++disable_so_br_ip_hash_fndecl_38135 br_ip_hash fndecl 0 38135 NULL
++disable_so_signal_to_av_fndecl_38146 signal_to_av fndecl 0 38146 NULL nohasharray
++disable_so_ext4_init_block_bitmap_fndecl_38146 ext4_init_block_bitmap fndecl 3 38146 &disable_so_signal_to_av_fndecl_38146
++disable_so_mapped_physical_address_acpi_mem_space_context_38147 mapped_physical_address acpi_mem_space_context 0 38147 NULL
++disable_so_uptime_dn_dev_38149 uptime dn_dev 0 38149 NULL nohasharray
++disable_so_btrfs_name_hash_fndecl_38149 btrfs_name_hash fndecl 0-2 38149 &disable_so_uptime_dn_dev_38149
++disable_so_snd_timer_pause_fndecl_38159 snd_timer_pause fndecl 0 38159 NULL
++disable_so_flash_addr_atto_vda_flash_req_38165 flash_addr atto_vda_flash_req 0 38165 NULL
++disable_so_bfa_fcs_lport_ns_sm_sending_gid_ft_fndecl_38173 bfa_fcs_lport_ns_sm_sending_gid_ft fndecl 2 38173 NULL
++disable_so_nla_put_flag_fndecl_38183 nla_put_flag fndecl 0 38183 NULL
++disable_so_fll_freq_in_wm8350_data_38185 fll_freq_in wm8350_data 0 38185 NULL
++disable_so_softdog_set_timeout_fndecl_38187 softdog_set_timeout fndecl 2 38187 NULL
++disable_so_i_uid_sysv_inode_38197 i_uid sysv_inode 0 38197 NULL
++disable_so_start_time_wl1271_tx_hw_descr_38213 start_time wl1271_tx_hw_descr 0 38213 NULL
++disable_so_address_callback_fw_address_handler_38224 address_callback fw_address_handler 6-9 38224 NULL
++disable_so_last_rsrc_error_time_lpfc_hba_38225 last_rsrc_error_time lpfc_hba 0 38225 NULL
++disable_so_val_addr1_nphy_rf_control_override_rev3_38228 val_addr1 nphy_rf_control_override_rev3 0 38228 NULL
++disable_so_ipr_transop_timeout_vardecl_ipr_c_38231 ipr_transop_timeout vardecl_ipr.c 0 38231 NULL
++disable_so_disk_events_poll_jiffies_fndecl_38233 disk_events_poll_jiffies fndecl 0 38233 NULL
++disable_so_s2mps11_set_ramp_delay_fndecl_38236 s2mps11_set_ramp_delay fndecl 0 38236 NULL
++disable_so_rdb_BlockBytes_RigidDiskBlock_38238 rdb_BlockBytes RigidDiskBlock 0 38238 NULL
++disable_so_bitmap_equal_fndecl_38239 bitmap_equal fndecl 3 38239 NULL
++disable_so_drm_mm_init_fndecl_38240 drm_mm_init fndecl 2-3 38240 NULL nohasharray
++disable_so_ring_info_addr_brcmf_pcie_shared_info_38240 ring_info_addr brcmf_pcie_shared_info 0 38240 &disable_so_drm_mm_init_fndecl_38240
++disable_so_cg_spll_spread_spectrum_ni_clock_registers_38241 cg_spll_spread_spectrum ni_clock_registers 0 38241 NULL
++disable_so_byt_gpu_freq_fndecl_38243 byt_gpu_freq fndecl 0-2 38243 NULL
++disable_so_hhf_evict_timeout_hhf_sched_data_38244 hhf_evict_timeout hhf_sched_data 0 38244 NULL
++disable_so_addr_unmap_notify_38247 addr unmap_notify 0 38247 NULL
++disable_so_xfs_btree_reada_bufl_fndecl_38248 xfs_btree_reada_bufl fndecl 2-3 38248 NULL
++disable_so_ip_vs_conn_hashkey_param_fndecl_38257 ip_vs_conn_hashkey_param fndecl 0 38257 NULL
++disable_so_prev_steal_time_rq_rq_38260 prev_steal_time_rq rq 0 38260 NULL
++disable_so_mapaddr_map_list_38266 mapaddr map_list 0 38266 NULL
++disable_so_reqoff_crypto_authenc_esn_ctx_38268 reqoff crypto_authenc_esn_ctx 0 38268 NULL
++disable_so_ui_mtimensec_ufs2_inode_38278 ui_mtimensec ufs2_inode 0 38278 NULL
++disable_so_scbbaddr_ahc_pci_softc_38281 scbbaddr ahc_pci_softc 0 38281 NULL
++disable_so_demod_address_dst_config_38283 demod_address dst_config 0 38283 NULL
++disable_so_pcc_cpufreq_init_fndecl_38287 pcc_cpufreq_init fndecl 0 38287 NULL
++disable_so_channel_divider_ad9523_channel_spec_38291 channel_divider ad9523_channel_spec 0 38291 NULL
++disable_so_time_in_ghes_estatus_cache_38306 time_in ghes_estatus_cache 0 38306 NULL
++disable_so_time_stamp_i40e_tx_buffer_38313 time_stamp i40e_tx_buffer 0 38313 NULL
++disable_so_show_signal_msg_fndecl_38336 show_signal_msg fndecl 3 38336 NULL
++disable_so_cma_bitmap_aligned_offset_fndecl_38343 cma_bitmap_aligned_offset fndecl 0-2 38343 NULL
++disable_so_digi_set_modem_signals_fndecl_38348 digi_set_modem_signals fndecl 0 38348 NULL
++disable_so_sum_blk_addr_fndecl_38356 sum_blk_addr fndecl 0-2-3 38356 NULL
++disable_so_gcm_hash_assoc_done_fndecl_38360 gcm_hash_assoc_done fndecl 2 38360 NULL
++disable_so_dma_headwb_addr_i40e_virtchnl_txq_info_38365 dma_headwb_addr i40e_virtchnl_txq_info 0 38365 NULL
++disable_so_cpu_cpufreq_policy_38366 cpu cpufreq_policy 0 38366 NULL nohasharray
++disable_so_shash_descsize_dm_verity_38366 shash_descsize dm_verity 0 38366 &disable_so_cpu_cpufreq_policy_38366
++disable_so_sleep_cookie_addr_lo_host_cmd_ds_pcie_details_38370 sleep_cookie_addr_lo host_cmd_ds_pcie_details 0 38370 NULL
++disable_so_bch_btree_keys_u64s_remaining_fndecl_38373 bch_btree_keys_u64s_remaining fndecl 0 38373 NULL
++disable_so_timeout_lp_struct_38387 timeout lp_struct 0 38387 NULL
++disable_so_x1205_set_datetime_fndecl_38391 x1205_set_datetime fndecl 4 38391 NULL
++disable_so_dma_addr_rxd_info_38410 dma_addr rxd_info 0 38410 NULL
++disable_so_copy_signaled_event_data_fndecl_38425 copy_signaled_event_data fndecl 1 38425 NULL
++disable_so_bcn_addr_carl9170_bcn_ctrl_cmd_38429 bcn_addr carl9170_bcn_ctrl_cmd 0 38429 NULL
++disable_so_rproc_vq_interrupt_fndecl_38432 rproc_vq_interrupt fndecl 2 38432 NULL
++disable_so_div_clk_div_table_38447 div clk_div_table 0 38447 NULL
++disable_so_seq_default_timer_resolution_vardecl_38451 seq_default_timer_resolution vardecl 0 38451 NULL
++disable_so_dma_ops_free_addresses_fndecl_38461 dma_ops_free_addresses fndecl 2-3 38461 NULL
++disable_so_time_zero_xfs_mru_cache_38463 time_zero xfs_mru_cache 0 38463 NULL
++disable_so_timeAdj_TCP_Server_Info_38464 timeAdj TCP_Server_Info 0 38464 NULL
++disable_so_curr_kvm_shared_msr_values_38468 curr kvm_shared_msr_values 0 38468 NULL
++disable_so_vhost_add_used_and_signal_fndecl_38469 vhost_add_used_and_signal fndecl 4-3 38469 NULL
++disable_so_mclk_pwrmgt_cntl_ni_clock_registers_38478 mclk_pwrmgt_cntl ni_clock_registers 0 38478 NULL
++disable_so_srp_reconnect_delay_vardecl_ib_srp_c_38484 srp_reconnect_delay vardecl_ib_srp.c 0 38484 NULL
++disable_so_i2c_clk_divider_au0828_board_38485 i2c_clk_divider au0828_board 0 38485 NULL
++disable_so_ark_set_pixclock_fndecl_38501 ark_set_pixclock fndecl 2 38501 NULL
++disable_so_use_time_xfrm_lifetime_cur_38505 use_time xfrm_lifetime_cur 0 38505 NULL nohasharray
++disable_so_musb_advance_schedule_fndecl_38505 musb_advance_schedule fndecl 4 38505 &disable_so_use_time_xfrm_lifetime_cur_38505
++disable_so_spinfo_mtu_sctp_paddrinfo_38516 spinfo_mtu sctp_paddrinfo 0 38516 NULL
++disable_so_sample_freq_tda10048_state_38521 sample_freq tda10048_state 0 38521 NULL
++disable_so_mapping_level_dirty_bitmap_fndecl_38527 mapping_level_dirty_bitmap fndecl 2 38527 NULL
++disable_so_rx_ring_dma_addr_sc92031_priv_38536 rx_ring_dma_addr sc92031_priv 0 38536 NULL
++disable_so___ipv6_addr_type_fndecl_38537 __ipv6_addr_type fndecl 0 38537 NULL
++disable_so_cstamp_inet6_ifaddr_38541 cstamp inet6_ifaddr 0 38541 NULL
++disable_so_arch_randomize_brk_fndecl_38542 arch_randomize_brk fndecl 0 38542 NULL
++disable_so_imon_mce_key_lookup_fndecl_38543 imon_mce_key_lookup fndecl 0-2 38543 NULL
++disable_so_amdgpu_mm_wreg_fndecl_38550 amdgpu_mm_wreg fndecl 2-3 38550 NULL
++disable_so_mgid_index_mthca_qp_path_38553 mgid_index mthca_qp_path 0 38553 NULL
++disable_so_i_gid_bfs_inode_38565 i_gid bfs_inode 0 38565 NULL
++disable_so_tx_delayed_compl_wlcore_ops_38572 tx_delayed_compl wlcore_ops 0 38572 NULL
++disable_so_split_scan_timeout_write_fndecl_38579 split_scan_timeout_write fndecl 3-0 38579 NULL
++disable_so_xfs_btree_change_owner_fndecl_38586 xfs_btree_change_owner fndecl 0-2 38586 NULL
++disable_so_hash_sendmsg_fndecl_38588 hash_sendmsg fndecl 0 38588 NULL
++disable_so_read_inode_bitmap_fndecl_38589 read_inode_bitmap fndecl 2 38589 NULL
++disable_so_before_ctime_sec_nfsd4_change_info_38591 before_ctime_sec nfsd4_change_info 0 38591 NULL
++disable_so_sys_clock_freq_drx_common_attr_38599 sys_clock_freq drx_common_attr 0 38599 NULL
++disable_so_kvm_x2apic_msr_write_fndecl_38601 kvm_x2apic_msr_write fndecl 3 38601 NULL
++disable_so_stored_addr_lo_amd_iommu_38609 stored_addr_lo amd_iommu 0 38609 NULL
++disable_so_udp_port_udp_media_addr_38613 udp_port udp_media_addr 0 38613 NULL
++disable_so_hashmask_Qdisc_class_hash_38621 hashmask Qdisc_class_hash 0 38621 NULL
++disable_so_i_gid_nilfs_inode_38625 i_gid nilfs_inode 0 38625 NULL
++disable_so__freq_tbl_determine_rate_fndecl_38627 _freq_tbl_determine_rate fndecl 0 38627 NULL
++disable_so_n__pll_div_38634 n _pll_div 0 38634 NULL
++disable_so_security_task_getpgid_fndecl_38635 security_task_getpgid fndecl 0 38635 NULL
++disable_so_dmsr_eg20t_port_38638 dmsr eg20t_port 0 38638 NULL
++disable_so_e4000_s_frequency_fndecl_38648 e4000_s_frequency fndecl 0 38648 NULL
++disable_so_timestamp_iwl_rx_phy_res_38650 timestamp iwl_rx_phy_res 0 38650 NULL
++disable_so_set_freq_fndecl_38651 set_freq fndecl 2 38651 NULL
++disable_so_technisat_usb2_set_led_timer_fndecl_38654 technisat_usb2_set_led_timer fndecl 3-2 38654 NULL
++disable_so_mthca_query_gid_fndecl_38656 mthca_query_gid fndecl 2-3 38656 NULL
++disable_so_mpihelp_addmul_1_fndecl_38658 mpihelp_addmul_1 fndecl 3 38658 NULL
++disable_so_press_adjust_channel_bit_mask_fndecl_38661 press_adjust_channel_bit_mask fndecl 3 38661 NULL
++disable_so_vdi_ctime_vxfs_inode_info_38664 vdi_ctime vxfs_inode_info 0 38664 NULL
++disable_so_afs_vlocation_update_timeout_vardecl_vlocation_c_38669 afs_vlocation_update_timeout vardecl_vlocation.c 0 38669 NULL nohasharray
++disable_so_last_semaphore_signal_addr_radeon_ring_38669 last_semaphore_signal_addr radeon_ring 0 38669 &disable_so_afs_vlocation_update_timeout_vardecl_vlocation_c_38669
++disable_so_rhashtable_check_elasticity_fndecl_38676 rhashtable_check_elasticity fndecl 3 38676 NULL
++disable_so_addr_bus_sg_simple_element_38677 addr_bus sg_simple_element 0 38677 NULL
++disable_so_pcxhr_get_external_clock_fndecl_38682 pcxhr_get_external_clock fndecl 0 38682 NULL
++disable_so_ahd_timer_reset_fndecl_38702 ahd_timer_reset fndecl 2 38702 NULL nohasharray
++disable_so_nr_uninterruptible_rq_38702 nr_uninterruptible rq 0 38702 &disable_so_ahd_timer_reset_fndecl_38702
++disable_so_dp_saddr_rds_ib_connect_private_38707 dp_saddr rds_ib_connect_private 0 38707 NULL
++disable_so_dsp_spl_jiffies_vardecl_38710 dsp_spl_jiffies vardecl 0 38710 NULL
++disable_so_mtrr_lookup_init_fndecl_38724 mtrr_lookup_init fndecl 4-3 38724 NULL
++disable_so_qdisc_watchdog_schedule_fndecl_38729 qdisc_watchdog_schedule fndecl 2 38729 NULL
++disable_so_authenc_esn_verify_ahash_update_done_fndecl_38734 authenc_esn_verify_ahash_update_done fndecl 2 38734 NULL
++disable_so_hactive_hi_oaktrail_timing_info_38738 hactive_hi oaktrail_timing_info 0 38738 NULL
++disable_so_i2c_address_xc5000_config_38739 i2c_address xc5000_config 0 38739 NULL
++disable_so_address_fw_hdr_38754 address fw_hdr 0 38754 NULL
++disable_so_radio_addr_saa7134_dev_38765 radio_addr saa7134_dev 0 38765 NULL
++disable_so_i2c_address_max2165_config_38766 i2c_address max2165_config 0 38766 NULL nohasharray
++disable_so_lcq_addr_lo_fcoe_kwqe_conn_offload4_38766 lcq_addr_lo fcoe_kwqe_conn_offload4 0 38766 &disable_so_i2c_address_max2165_config_38766
++disable_so_fan1_div_amc6821_data_38770 fan1_div amc6821_data 0 38770 NULL
++disable_so_sd_blocks_per_bitmap_gfs2_sbd_38771 sd_blocks_per_bitmap gfs2_sbd 0 38771 NULL
++disable_so_cryptd_hash_finup_fndecl_38778 cryptd_hash_finup fndecl 2 38778 NULL
++disable_so_mnamehash_dlm_master_list_entry_38791 mnamehash dlm_master_list_entry 0 38791 NULL
++disable_so_compat_sys_clock_nanosleep_fndecl_38793 compat_sys_clock_nanosleep fndecl 1 38793 NULL
++disable_so_minutes_v4l2_timecode_38804 minutes v4l2_timecode 0 38804 NULL
++disable_so_mtrr_type_lookup_variable_fndecl_38806 mtrr_type_lookup_variable fndecl 1-2 38806 NULL
++disable_so_pch_uart_hal_disable_interrupt_fndecl_38820 pch_uart_hal_disable_interrupt fndecl 2 38820 NULL nohasharray
++disable_so_addr_azx_38820 addr azx 0 38820 &disable_so_pch_uart_hal_disable_interrupt_fndecl_38820
++disable_so_num_addresses_at24_data_38822 num_addresses at24_data 0 38822 NULL
++disable_so_delay_reg_anatop_regulator_38823 delay_reg anatop_regulator 0 38823 NULL
++disable_so_table_addr_radeon_gart_38825 table_addr radeon_gart 0 38825 NULL
++disable_so_random_ioctl_fndecl_38846 random_ioctl fndecl 0 38846 NULL
++disable_so_iwl_count_chain_bitmap_fndecl_38847 iwl_count_chain_bitmap fndecl 0-1 38847 NULL
++disable_so_phy_pm_runtime_get_fndecl_38865 phy_pm_runtime_get fndecl 0 38865 NULL
++disable_so_interrupt_level_mask_kszphy_type_38870 interrupt_level_mask kszphy_type 0 38870 NULL nohasharray
++disable_so_r25_val_fc2580_freq_regs_38870 r25_val fc2580_freq_regs 0 38870 &disable_so_interrupt_level_mask_kszphy_type_38870
++disable_so_cc770_tx_interrupt_fndecl_38879 cc770_tx_interrupt fndecl 2 38879 NULL
++disable_so_rq_first_pbe_addr_lo_fcoe_kwqe_conn_offload1_38880 rq_first_pbe_addr_lo fcoe_kwqe_conn_offload1 0 38880 NULL
++disable_so_hpi_compander_get_attack_time_constant_fndecl_38881 hpi_compander_get_attack_time_constant fndecl 1-0 38881 NULL
++disable_so_get_clock_info_fndecl_38883 get_clock_info fndecl 4-0 38883 NULL
++disable_so_ieee80211_aes_gmac_fndecl_38891 ieee80211_aes_gmac fndecl 5 38891 NULL
++disable_so_port_mlx4_sriov_alias_guid_port_rec_det_38897 port mlx4_sriov_alias_guid_port_rec_det 0 38897 NULL
++disable_so_fd_pppol2tpv3_addr_38898 fd pppol2tpv3_addr 0 38898 NULL nohasharray
++disable_so_bcm3510_set_freq_fndecl_38898 bcm3510_set_freq fndecl 2 38898 &disable_so_fd_pppol2tpv3_addr_38898
++disable_so_irq_dispose_mapping_fndecl_38902 irq_dispose_mapping fndecl 1 38902 NULL
++disable_so_crypto_ccm_decrypt_done_fndecl_38904 crypto_ccm_decrypt_done fndecl 2 38904 NULL
++disable_so_cw1200_queue_get_xmit_timestamp_fndecl_38907 cw1200_queue_get_xmit_timestamp fndecl 3 38907 NULL nohasharray
++disable_so_s_addr_per_block_bits_ext4_sb_info_38907 s_addr_per_block_bits ext4_sb_info 0 38907 &disable_so_cw1200_queue_get_xmit_timestamp_fndecl_38907
++disable_so_check_num_extents_and_bitmaps_fndecl_38927 check_num_extents_and_bitmaps fndecl 0 38927 NULL
++disable_so_timekeeping_get_tai_offset_fndecl_38933 timekeeping_get_tai_offset fndecl 0 38933 NULL nohasharray
++disable_so_ccp_register_aes_cmac_algs_fndecl_38933 ccp_register_aes_cmac_algs fndecl 0 38933 &disable_so_timekeeping_get_tai_offset_fndecl_38933
++disable_so_mlx4_get_base_gid_ix_fndecl_38938 mlx4_get_base_gid_ix fndecl 0-2-3 38938 NULL
++disable_so_default_i2c_addr_dib7000p_config_38941 default_i2c_addr dib7000p_config 0 38941 NULL
++disable_so_nilfs_btree_get_next_key_fndecl_38942 nilfs_btree_get_next_key fndecl 0 38942 NULL
++disable_so_eoc_delay_ns_cc10001_adc_device_38943 eoc_delay_ns cc10001_adc_device 0 38943 NULL
++disable_so_get_clock_desc_fndecl_38944 get_clock_desc fndecl 1 38944 NULL
++disable_so_hdsp_set_interrupt_interval_fndecl_38947 hdsp_set_interrupt_interval fndecl 2 38947 NULL
++disable_so_sysctl_sched_time_avg_vardecl_38969 sysctl_sched_time_avg vardecl 0 38969 NULL
++disable_so_vivid_radio_s_frequency_fndecl_38975 vivid_radio_s_frequency fndecl 0 38975 NULL
++disable_so_sha1_pad_fndecl_38979 sha1_pad fndecl 0-2 38979 NULL
++disable_so_hash_mask_deflate_state_38981 hash_mask deflate_state 0 38981 NULL
++disable_so_pos_dmaengine_pcm_runtime_data_38984 pos dmaengine_pcm_runtime_data 0 38984 NULL
++disable_so_set_dma_addr_fndecl_38989 set_dma_addr fndecl 1-2 38989 NULL
++disable_so_caller_gid_ceph_mds_request_head_38991 caller_gid ceph_mds_request_head 0 38991 NULL
++disable_so_bf_paddr_ath_mci_buf_38995 bf_paddr ath_mci_buf 0 38995 NULL
++disable_so_x86_setup_var_mtrrs_fndecl_39006 x86_setup_var_mtrrs fndecl 4-3-2 39006 NULL nohasharray
++disable_so_uv_global_mmr64_address_fndecl_39006 uv_global_mmr64_address fndecl 1 39006 &disable_so_x86_setup_var_mtrrs_fndecl_39006
++disable_so_interrupt_out_interval_lego_usb_tower_39007 interrupt_out_interval lego_usb_tower 0 39007 NULL
++disable_so_di_uid_logfs_disk_inode_39011 di_uid logfs_disk_inode 0 39011 NULL
++disable_so_cfag12864b_address_fndecl_39018 cfag12864b_address fndecl 1 39018 NULL
++disable_so_dmaaddr_b43legacy_dmadesc_meta_39023 dmaaddr b43legacy_dmadesc_meta 0 39023 NULL
++disable_so_dce_v10_0_crtc_set_base_atomic_fndecl_39025 dce_v10_0_crtc_set_base_atomic fndecl 0 39025 NULL
++disable_so_dst_addr_l_wcn36xx_dxe_desc_39037 dst_addr_l wcn36xx_dxe_desc 0 39037 NULL
++disable_so_show_fan_div_fndecl_39039 show_fan_div fndecl 0 39039 NULL
++disable_so_set_timer_slack_fndecl_39051 set_timer_slack fndecl 2 39051 NULL
++disable_so_seq_xfrm_usersa_info_39054 seq xfrm_usersa_info 0 39054 NULL
++disable_so_freq_wmi_send_action_cmd_39065 freq wmi_send_action_cmd 0 39065 NULL
++disable_so_addr_ksz_hw_desc_39069 addr ksz_hw_desc 0 39069 NULL
++disable_so_fll_refclk_div__fll_div_39071 fll_refclk_div _fll_div 0 39071 NULL
++disable_so_atime_nsec_ubifs_ino_node_39079 atime_nsec ubifs_ino_node 0 39079 NULL
++disable_so_p2m_jiffies_solo_dev_39094 p2m_jiffies solo_dev 0 39094 NULL
++disable_so_cl_time_nfs4_client_39095 cl_time nfs4_client 0 39095 NULL
++disable_so_addr_inet_cork_39099 addr inet_cork 0 39099 NULL nohasharray
++disable_so_get_cur_freq_on_cpu_fndecl_39099 get_cur_freq_on_cpu fndecl 0 39099 &disable_so_addr_inet_cork_39099
++disable_so_addr_radeon_dummy_page_39105 addr radeon_dummy_page 0 39105 NULL
++disable_so_dmar_set_interrupt_fndecl_39106 dmar_set_interrupt fndecl 0 39106 NULL
++disable_so_read_position_register_address_sst_hsw_ipc_stream_alloc_reply_39122 read_position_register_address sst_hsw_ipc_stream_alloc_reply 0 39122 NULL
++disable_so_atomic_set_property_drm_plane_funcs_39123 atomic_set_property drm_plane_funcs 0-4 39123 NULL nohasharray
++disable_so_sisfb_mode_rate_to_dclock_fndecl_39123 sisfb_mode_rate_to_dclock fndecl 2-3-0 39123 &disable_so_atomic_set_property_drm_plane_funcs_39123
++disable_so_div_sync_wait_dib7000p_state_39125 div_sync_wait dib7000p_state 0 39125 NULL nohasharray
++disable_so_enic_dev_add_station_addr_fndecl_39125 enic_dev_add_station_addr fndecl 0 39125 &disable_so_div_sync_wait_dib7000p_state_39125
++disable_so_regcache_rbtree_write_fndecl_39126 regcache_rbtree_write fndecl 2-3 39126 NULL
++disable_so_boot_addr_nvbios_pmuR_39136 boot_addr nvbios_pmuR 0 39136 NULL
++disable_so_slack_timer_list_39142 slack timer_list 0 39142 NULL
++disable_so_qat_alg_ablkcipher_decrypt_fndecl_39147 qat_alg_ablkcipher_decrypt fndecl 0 39147 NULL
++disable_so_security_task_fix_setuid_fndecl_39149 security_task_fix_setuid fndecl 0 39149 NULL
++disable_so_result_xfs_btree_split_args_39161 result xfs_btree_split_args 0 39161 NULL
++disable_so_max_medium_access_timeouts_show_fndecl_39174 max_medium_access_timeouts_show fndecl 0 39174 NULL
++disable_so_rx_rx_timeout_wa_read_fndecl_39183 rx_rx_timeout_wa_read fndecl 3 39183 NULL nohasharray
++disable_so_store_falltime_fndecl_39183 store_falltime fndecl 4-0 39183 &disable_so_rx_rx_timeout_wa_read_fndecl_39183
++disable_so_n_gma_clock_t_39192 n gma_clock_t 0 39192 NULL
++disable_so_phy_addr_wcn36xx_dxe_mem_pool_39193 phy_addr wcn36xx_dxe_mem_pool 0 39193 NULL
++disable_so_r6c_val_fc2580_freq_regs_39202 r6c_val fc2580_freq_regs 0 39202 NULL
++disable_so_adis16480_get_freq_fndecl_39205 adis16480_get_freq fndecl 0 39205 NULL
++disable_so_stv0367_get_tuner_freq_fndecl_39210 stv0367_get_tuner_freq fndecl 0 39210 NULL
++disable_so_loadtime_init_fndecl_39230 loadtime_init fndecl 0 39230 NULL
++disable_so_vcc_timeout_period_lec_priv_39232 vcc_timeout_period lec_priv 0 39232 NULL nohasharray
++disable_so_ciu_div_dw_mci_exynos_priv_data_39232 ciu_div dw_mci_exynos_priv_data 0 39232 &disable_so_vcc_timeout_period_lec_priv_39232
++disable_so_rxhubaddr_musb_csr_regs_39234 rxhubaddr musb_csr_regs 0 39234 NULL
++disable_so_igb_init_interrupt_scheme_fndecl_39237 igb_init_interrupt_scheme fndecl 0 39237 NULL
++disable_so_decrypt_mpdu_lib80211_crypto_ops_39245 decrypt_mpdu lib80211_crypto_ops 2 39245 NULL
++disable_so_enc_cd_paddr_qat_alg_ablkcipher_ctx_39246 enc_cd_paddr qat_alg_ablkcipher_ctx 0 39246 NULL
++disable_so_ax_tss_segment_16_39248 ax tss_segment_16 0 39248 NULL
++disable_so___crypto_memneq_fndecl_39251 __crypto_memneq fndecl 3 39251 NULL
++disable_so_core_freq_drm_psb_private_39252 core_freq drm_psb_private 0 39252 NULL
++disable_so_i_gid_minix_inode_39253 i_gid minix_inode 0 39253 NULL
++disable_so_sllc_arphrd_sockaddr_llc_39261 sllc_arphrd sockaddr_llc 0 39261 NULL
++disable_so_bind_virq_for_mce_fndecl_39266 bind_virq_for_mce fndecl 0 39266 NULL
++disable_so_poll_timeout_hwif_s_39267 poll_timeout hwif_s 0 39267 NULL
++disable_so_cik_set_uvd_clock_fndecl_39276 cik_set_uvd_clock fndecl 2-0 39276 NULL
++disable_so_watchdog_get_timeleft_fndecl_39280 watchdog_get_timeleft fndecl 0 39280 NULL
++disable_so_pti_addr_pti_dev_39288 pti_addr pti_dev 0 39288 NULL
++disable_so_last_guest_tsc_kvm_vcpu_arch_39290 last_guest_tsc kvm_vcpu_arch 0 39290 NULL
++disable_so_crypto_cts_encrypt_fndecl_39299 crypto_cts_encrypt fndecl 0-4 39299 NULL
++disable_so_set_timer_mode_fndecl_39306 set_timer_mode fndecl 1 39306 NULL
++disable_so_vref_delay_usecs_ads7846_39307 vref_delay_usecs ads7846 0 39307 NULL nohasharray
++disable_so_signal_rxdone_entry_desc_39307 signal rxdone_entry_desc 0 39307 &disable_so_vref_delay_usecs_ads7846_39307
++disable_so_kr_rcvhdrtailaddr_ipath_kregs_39311 kr_rcvhdrtailaddr ipath_kregs 0 39311 NULL
++disable_so_cyapa_pwr_cmd_to_sleep_time_fndecl_39315 cyapa_pwr_cmd_to_sleep_time fndecl 0-1 39315 NULL nohasharray
++disable_so_sleep_time_packet_data_39315 sleep_time packet_data 0 39315 &disable_so_cyapa_pwr_cmd_to_sleep_time_fndecl_39315 nohasharray
++disable_so_sdhci_runtime_pm_get_fndecl_39315 sdhci_runtime_pm_get fndecl 0 39315 &disable_so_sleep_time_packet_data_39315
++disable_so___request_region_fndecl_39330 __request_region fndecl 3-2-5 39330 NULL
++disable_so_hash_next_entry_39332 hash_next entry 0 39332 NULL
++disable_so_timeout_dmx_sct_filter_params_39333 timeout dmx_sct_filter_params 0 39333 NULL
++disable_so_dma_in_mceusb_dev_39335 dma_in mceusb_dev 0 39335 NULL
++disable_so_address_acpi_resource_fixed_io_39338 address acpi_resource_fixed_io 0 39338 NULL
++disable_so_adjusted_clock_radeon_crtc_39340 adjusted_clock radeon_crtc 0 39340 NULL
++disable_so_busaddr_drm_dma_handle_39348 busaddr drm_dma_handle 0 39348 NULL
++disable_so_gid_ok_fndecl_39349 gid_ok fndecl 3 39349 NULL
++disable_so_sched_clock_remote_fndecl_39352 sched_clock_remote fndecl 0 39352 NULL
++disable_so_i_ctime_extra_ext4_inode_39365 i_ctime_extra ext4_inode 0 39365 NULL
++disable_so_mISDN_inittimer_fndecl_39396 mISDN_inittimer fndecl 0 39396 NULL
++disable_so_status_addr_efx_vf_39401 status_addr efx_vf 0 39401 NULL nohasharray
++disable_so_freq_ieee80211_rx_status_39401 freq ieee80211_rx_status 0 39401 &disable_so_status_addr_efx_vf_39401
++disable_so_validate_acl_mac_addrs_fndecl_39406 validate_acl_mac_addrs fndecl 0 39406 NULL nohasharray
++disable_so_encrypt_mpdu_lib80211_crypto_ops_39406 encrypt_mpdu lib80211_crypto_ops 2 39406 &disable_so_validate_acl_mac_addrs_fndecl_39406
++disable_so_max_idle_ns_clocksource_39415 max_idle_ns clocksource 0 39415 NULL
++disable_so_sys_setreuid16_fndecl_39425 sys_setreuid16 fndecl 0-1-2 39425 NULL
++disable_so_typhoon_start_runtime_fndecl_39437 typhoon_start_runtime fndecl 0 39437 NULL nohasharray
++disable_so_frequency_dtv_frontend_properties_39437 frequency dtv_frontend_properties 0 39437 &disable_so_typhoon_start_runtime_fndecl_39437
++disable_so_addr_init_table_39442 addr init_table 0 39442 NULL
++disable_so_gru_end_paddr_vardecl_x2apic_uv_x_c_39443 gru_end_paddr vardecl_x2apic_uv_x.c 0 39443 NULL
++disable_so_irq_timeout_write_fndecl_39445 irq_timeout_write fndecl 3-0 39445 NULL
++disable_so_uwb_rc_mac_addr_set_fndecl_39450 uwb_rc_mac_addr_set fndecl 0 39450 NULL
++disable_so_ext4_es_find_delayed_extent_range_fndecl_39461 ext4_es_find_delayed_extent_range fndecl 2-3 39461 NULL
++disable_so_conn_timeout_hci_conn_39470 conn_timeout hci_conn 0 39470 NULL nohasharray
++disable_so_compat_sys_rt_sigtimedwait_fndecl_39470 compat_sys_rt_sigtimedwait fndecl 0 39470 &disable_so_conn_timeout_hci_conn_39470
++disable_so_snd_usb_pcm_delay_fndecl_39473 snd_usb_pcm_delay fndecl 0-2 39473 NULL nohasharray
++disable_so_freq_offset_khz_vhf_dib0070_config_39473 freq_offset_khz_vhf dib0070_config 0 39473 &disable_so_snd_usb_pcm_delay_fndecl_39473
++disable_so_sz_out_qat_crypto_request_buffs_39477 sz_out qat_crypto_request_buffs 0 39477 NULL
++disable_so_tx_abs_int_delay_e1000_adapter_39481 tx_abs_int_delay e1000_adapter 0 39481 NULL
++disable_so_nilfs_btree_node_delete_fndecl_39483 nilfs_btree_node_delete fndecl 2 39483 NULL
++disable_so_timeout_write_fndecl_39484 timeout_write fndecl 3-0 39484 NULL
++disable_so_ac97_clock_vardecl_intel8x0_c_39489 ac97_clock vardecl_intel8x0.c 0 39489 NULL
++disable_so_get_clock_info_fndecl_39492 get_clock_info fndecl 0 39492 NULL
++disable_so_buf_paddr_uioc_39504 buf_paddr uioc 0 39504 NULL
++disable_so_mpll_ss2_rv770_clock_registers_39508 mpll_ss2 rv770_clock_registers 0 39508 NULL
++disable_so_fc_exch_timer_set_fndecl_39511 fc_exch_timer_set fndecl 2 39511 NULL
++disable_so_stv0900_write_reg_fndecl_39517 stv0900_write_reg fndecl 2-3 39517 NULL
++disable_so_divf_ide_proc_devset_39528 divf ide_proc_devset 0 39528 NULL
++disable_so_wm_adsp_create_region_fndecl_39536 wm_adsp_create_region fndecl 2 39536 NULL
++disable_so_pl2303_encode_baud_rate_divisor_fndecl_39544 pl2303_encode_baud_rate_divisor fndecl 0-2 39544 NULL
++disable_so_mlx4_put_slave_node_guid_fndecl_39546 mlx4_put_slave_node_guid fndecl 3 39546 NULL
++disable_so_sgl_addr_lo_fw_flash_Update_req_39547 sgl_addr_lo fw_flash_Update_req 0 39547 NULL
++disable_so_m41t93_set_time_fndecl_39562 m41t93_set_time fndecl 0 39562 NULL
++disable_so_width_intel_sdvo_preferred_input_timing_args_39563 width intel_sdvo_preferred_input_timing_args 0 39563 NULL
++disable_so_RF_SYN_reserved_addr29_chan_info_nphy_radio205x_39569 RF_SYN_reserved_addr29 chan_info_nphy_radio205x 0 39569 NULL
++disable_so_delay_vardecl_wm9712_c_39574 delay vardecl_wm9712.c 0 39574 NULL
++disable_so_usb_sleep_charge_show_fndecl_39578 usb_sleep_charge_show fndecl 0 39578 NULL
++disable_so_cpu_to_virtio16_fndecl_39582 cpu_to_virtio16 fndecl 0-2 39582 NULL
++disable_so_e1000e_init_rx_addrs_fndecl_39608 e1000e_init_rx_addrs fndecl 2 39608 NULL
++disable_so_wss_random_offset_tpg_draw_params_39616 wss_random_offset tpg_draw_params 0 39616 NULL
++disable_so_ib_qib_sys_image_guid_vardecl_39617 ib_qib_sys_image_guid vardecl 0 39617 NULL
++disable_so_m_gma_clock_t_39618 m gma_clock_t 0 39618 NULL
++disable_so_nilfs_btree_node_move_right_fndecl_39627 nilfs_btree_node_move_right fndecl 3 39627 NULL
++disable_so_max14577_muic_set_debounce_time_fndecl_39632 max14577_muic_set_debounce_time fndecl 2-0 39632 NULL nohasharray
++disable_so_shash_compat_final_fndecl_39632 shash_compat_final fndecl 0 39632 &disable_so_max14577_muic_set_debounce_time_fndecl_39632
++disable_so_tx_coal_timer_sxgbe_tx_queue_39639 tx_coal_timer sxgbe_tx_queue 0 39639 NULL
++disable_so_antsignal_rx_radiotap_hdr_39653 antsignal rx_radiotap_hdr 0 39653 NULL
++disable_so_vaddr_gru_dump_context_header_39663 vaddr gru_dump_context_header 0 39663 NULL
++disable_so_cap_task_setscheduler_fndecl_39664 cap_task_setscheduler fndecl 0 39664 NULL
++disable_so_bt_inq_page_start_time_bt_coexist_8723_39665 bt_inq_page_start_time bt_coexist_8723 0 39665 NULL
++disable_so_last_beacon_signal_ieee80211_if_managed_39670 last_beacon_signal ieee80211_if_managed 0 39670 NULL
++disable_so_ni_ipv4_address_dlm_node_info_39675 ni_ipv4_address dlm_node_info 0 39675 NULL
++disable_so_i_gid_minix2_inode_39680 i_gid minix2_inode 0 39680 NULL
++disable_so_mx51_ecspi_clkdiv_fndecl_39681 mx51_ecspi_clkdiv fndecl 1-2-0 39681 NULL
++disable_so_mld_dad_start_timer_fndecl_39685 mld_dad_start_timer fndecl 2 39685 NULL
++disable_so_fm10k_read_systime_vf_fndecl_39687 fm10k_read_systime_vf fndecl 0 39687 NULL
++disable_so_cp_hqd_pq_wptr_poll_addr_hi_hqd_registers_39692 cp_hqd_pq_wptr_poll_addr_hi hqd_registers 0 39692 NULL
++disable_so_i2c_smbus_read_byte_data_fndecl_39698 i2c_smbus_read_byte_data fndecl 0-2 39698 NULL
++disable_so_abort_mfi_phys_addr_lo_megasas_abort_frame_39699 abort_mfi_phys_addr_lo megasas_abort_frame 0 39699 NULL
++disable_so_sclk_radeon_pm_clock_info_39706 sclk radeon_pm_clock_info 0 39706 NULL
++disable_so_dma_addr_pch_udc_dev_39708 dma_addr pch_udc_dev 0 39708 NULL
++disable_so_word_write_time_flchip_39711 word_write_time flchip 0 39711 NULL nohasharray
++disable_so_acpi_dev_runtime_suspend_fndecl_39711 acpi_dev_runtime_suspend fndecl 0 39711 &disable_so_word_write_time_flchip_39711
++disable_so_poll_time_us_sccnxp_pdata_39712 poll_time_us sccnxp_pdata 0 39712 NULL
++disable_so_div2_wm8978_pll_div_39713 div2 wm8978_pll_div 0 39713 NULL nohasharray
++disable_so_ssb_chipco_alp_clock_fndecl_39713 ssb_chipco_alp_clock fndecl 0 39713 &disable_so_div2_wm8978_pll_div_39713
++disable_so_chan_get_sndtimeo_cb_fndecl_39717 chan_get_sndtimeo_cb fndecl 0 39717 NULL nohasharray
++disable_so_sys_image_guid_vardecl_ipath_verbs_c_39717 sys_image_guid vardecl_ipath_verbs.c 0 39717 &disable_so_chan_get_sndtimeo_cb_fndecl_39717 nohasharray
++disable_so_address_start_unity_map_entry_39717 address_start unity_map_entry 0 39717 &disable_so_sys_image_guid_vardecl_ipath_verbs_c_39717
++disable_so___ew32_fndecl_39722 __ew32 fndecl 2-3 39722 NULL
++disable_so_schedule_sequence_fndecl_39726 schedule_sequence fndecl 3 39726 NULL
++disable_so_bitmap_cond_end_sync_fndecl_39734 bitmap_cond_end_sync fndecl 2 39734 NULL
++disable_so_mc13xxx_rtc_read_time_fndecl_39742 mc13xxx_rtc_read_time fndecl 0 39742 NULL
++disable_so_time_out_ncp_mount_data_kernel_39747 time_out ncp_mount_data_kernel 0 39747 NULL
++disable_so_address_khugepaged_scan_39752 address khugepaged_scan 0 39752 NULL
++disable_so_ab3100_set_register_interruptible_fndecl_39767 ab3100_set_register_interruptible fndecl 0 39767 NULL
++disable_so_ixgbe_write_uc_addr_list_fndecl_39773 ixgbe_write_uc_addr_list fndecl 2 39773 NULL
++disable_so_i2c_udelay_vardecl_cx88_i2c_c_39777 i2c_udelay vardecl_cx88-i2c.c 0 39777 NULL
++disable_so_pm_test_delay_vardecl_suspend_c_39779 pm_test_delay vardecl_suspend.c 0 39779 NULL
++disable_so___mt7601u_phy_freq_cal_fndecl_39782 __mt7601u_phy_freq_cal fndecl 3 39782 NULL
++disable_so_s2mpa01_regulator_set_voltage_time_sel_fndecl_39788 s2mpa01_regulator_set_voltage_time_sel fndecl 0-2-3 39788 NULL
++disable_so_mlx4_get_admin_guid_fndecl_39797 mlx4_get_admin_guid fndecl 2-3 39797 NULL
++disable_so_enic_dev_intr_coal_timer_info_fndecl_39803 enic_dev_intr_coal_timer_info fndecl 0 39803 NULL
++disable_so_freq_can_clock_39804 freq can_clock 0 39804 NULL
++disable_so_ktime_set_fndecl_39816 ktime_set fndecl 1-2 39816 NULL
++disable_so_bitmap_set_fndecl_39820 bitmap_set fndecl 2-3 39820 NULL
++disable_so_ttm_bo_delayed_delete_fndecl_39822 ttm_bo_delayed_delete fndecl 0 39822 NULL nohasharray
++disable_so_ath_force_clear_no_ir_freq_fndecl_39822 ath_force_clear_no_ir_freq fndecl 2 39822 &disable_so_ttm_bo_delayed_delete_fndecl_39822
++disable_so_ipw_set_random_seed_fndecl_39834 ipw_set_random_seed fndecl 0 39834 NULL
++disable_so_tpm2_gen_interrupt_fndecl_39854 tpm2_gen_interrupt fndecl 0 39854 NULL
++disable_so_addr_sch5627_data_39866 addr sch5627_data 0 39866 NULL
++disable_so_governor_cpufreq_governor_39867 governor cpufreq_governor 0 39867 NULL
++disable_so_jhash_3words_fndecl_39870 jhash_3words fndecl 0-1-3 39870 NULL
++disable_so_lvb_iatime_packed_ocfs2_meta_lvb_39885 lvb_iatime_packed ocfs2_meta_lvb 0 39885 NULL
++disable_so_delay_zl6100_data_39886 delay zl6100_data 0 39886 NULL
++disable_so_nla_put_string_fndecl_39892 nla_put_string fndecl 0 39892 NULL
++disable_so_ctime_mddev_39904 ctime mddev 0 39904 NULL
++disable_so_set_output_clock_fndecl_39910 set_output_clock fndecl 0 39910 NULL
++disable_so_clear_bit_le_fndecl_39918 clear_bit_le fndecl 1 39918 NULL
++disable_so_target_burst_mode_freq_mipi_config_39926 target_burst_mode_freq mipi_config 0 39926 NULL
++disable_so_host_addr_gnttab_map_grant_ref_39935 host_addr gnttab_map_grant_ref 0 39935 NULL
++disable_so_esd_timeout_tsc2005_39938 esd_timeout tsc2005 0 39938 NULL
++disable_so_nr_parts_latch_addr_flash_data_39945 nr_parts latch_addr_flash_data 0 39945 NULL
++disable_so_efx_test_interrupts_fndecl_39946 efx_test_interrupts fndecl 0 39946 NULL
++disable_so_ds1685_rtc_read_time_fndecl_39947 ds1685_rtc_read_time fndecl 0 39947 NULL nohasharray
++disable_so_ctxbitmap_gru_tlb_global_handle_39947 ctxbitmap gru_tlb_global_handle 0 39947 &disable_so_ds1685_rtc_read_time_fndecl_39947
++disable_so_si_program_memory_timing_parameters_fndecl_39954 si_program_memory_timing_parameters fndecl 0 39954 NULL
++disable_so___mce_read_apei_fndecl_39956 __mce_read_apei fndecl 0 39956 NULL
++disable_so_xtime_nsec_tk_read_base_39961 xtime_nsec tk_read_base 0 39961 NULL
++disable_so_plldiv_clk_coeff_39962 plldiv clk_coeff 0 39962 NULL
++disable_so_iscsi_nacl_attrib_show_random_r2t_offsets_fndecl_39965 iscsi_nacl_attrib_show_random_r2t_offsets fndecl 0 39965 NULL
++disable_so_crtc_clock_drm_display_mode_39969 crtc_clock drm_display_mode 0 39969 NULL
++disable_so_qat_alg_ablkcipher_encrypt_fndecl_40005 qat_alg_ablkcipher_encrypt fndecl 0 40005 NULL
++disable_so_dib7000p_write_word_fndecl_40007 dib7000p_write_word fndecl 2-3 40007 NULL
++disable_so_crypto_register_shash_fndecl_40011 crypto_register_shash fndecl 0 40011 NULL
++disable_so_acpi_os_signal_semaphore_fndecl_40013 acpi_os_signal_semaphore fndecl 0 40013 NULL
++disable_so_w1_delay_fndecl_40014 w1_delay fndecl 1 40014 NULL
++disable_so_tda10071_sleep_fndecl_40017 tda10071_sleep fndecl 0 40017 NULL
++disable_so_blkcipher_walk_phys_fndecl_40019 blkcipher_walk_phys fndecl 0 40019 NULL
++disable_so_aes_cmac_fndecl_40025 aes_cmac fndecl 0-4 40025 NULL
++disable_so_dwell_time_passive_conf_scan_settings_40029 dwell_time_passive conf_scan_settings 0 40029 NULL nohasharray
++disable_so_freq_wmi_channel_arg_40029 freq wmi_channel_arg 0 40029 &disable_so_dwell_time_passive_conf_scan_settings_40029
++disable_so_ip_tss_segment_16_40046 ip tss_segment_16 0 40046 NULL
++disable_so_recent_entry_hash6_fndecl_40053 recent_entry_hash6 fndecl 0 40053 NULL
++disable_so_pci_addr_mm_dma_desc_40056 pci_addr mm_dma_desc 0 40056 NULL
++disable_so_mwifiex_get_random_ba_threshold_fndecl_40074 mwifiex_get_random_ba_threshold fndecl 0 40074 NULL nohasharray
++disable_so_ccp_aes_xts_decrypt_fndecl_40074 ccp_aes_xts_decrypt fndecl 0 40074 &disable_so_mwifiex_get_random_ba_threshold_fndecl_40074
++disable_so_nilfs_btree_delete_fndecl_40077 nilfs_btree_delete fndecl 0-2 40077 NULL
++disable_so_db_page_addr_ocrdma_create_qp_uresp_40086 db_page_addr ocrdma_create_qp_uresp 0 40086 NULL
++disable_so_bitmap_empty_fndecl_40098 bitmap_empty fndecl 2 40098 NULL
++disable_so_crypto_aes_expand_key_fndecl_40101 crypto_aes_expand_key fndecl 0-3 40101 NULL
++disable_so_sclk_radeon_clock_and_voltage_limits_40103 sclk radeon_clock_and_voltage_limits 0 40103 NULL
++disable_so_daddr_irda_sock_40107 daddr irda_sock 0 40107 NULL
++disable_so_efx_phc_settime_fndecl_40110 efx_phc_settime fndecl 0 40110 NULL nohasharray
++disable_so_w1_gpio_write_bit_val_fndecl_40110 w1_gpio_write_bit_val fndecl 2 40110 &disable_so_efx_phc_settime_fndecl_40110
++disable_so_memsize_bitmap_port_40111 memsize bitmap_port 0 40111 NULL
++disable_so_freq_channel_detector_40125 freq channel_detector 0 40125 NULL
++disable_so_bitmap_port_do_list_fndecl_40145 bitmap_port_do_list fndecl 0 40145 NULL
++disable_so_mcs7830_hif_set_mac_address_fndecl_40149 mcs7830_hif_set_mac_address fndecl 0 40149 NULL
++disable_so_musb_write_rxfunaddr_fndecl_40150 musb_write_rxfunaddr fndecl 2-3 40150 NULL
++disable_so_ioaddr_set_address_info_40154 ioaddr set_address_info 0 40154 NULL nohasharray
++disable_so_mmap_kvaddr_fndecl_40154 mmap_kvaddr fndecl 0-2-4 40154 &disable_so_ioaddr_set_address_info_40154
++disable_so_hr_timeout_ms_o2hb_region_40157 hr_timeout_ms o2hb_region 0 40157 NULL
++disable_so_startbit_ebitmap_node_40162 startbit ebitmap_node 0 40162 NULL
++disable_so_phys_addr_sfi_apic_table_entry_40169 phys_addr sfi_apic_table_entry 0 40169 NULL
++disable_so_hw_settle_time_vadc_channel_prop_40184 hw_settle_time vadc_channel_prop 0 40184 NULL
++disable_so_pio_address_scsi_qla_host_40189 pio_address scsi_qla_host 0 40189 NULL
++disable_so_iffreq_dvb_pll_desc_40199 iffreq dvb_pll_desc 0 40199 NULL nohasharray
++disable_so_cobalt_g_dv_timings_fndecl_40199 cobalt_g_dv_timings fndecl 0 40199 &disable_so_iffreq_dvb_pll_desc_40199
++disable_so_to_addr_conv_fndecl_40204 to_addr_conv fndecl 3 40204 NULL
++disable_so_fm10k_update_uc_addr_vf_fndecl_40219 fm10k_update_uc_addr_vf fndecl 4 40219 NULL
++disable_so_empress_addr_saa7134_board_40236 empress_addr saa7134_board 0 40236 NULL
++disable_so_lm3533_led_delay_on_set_fndecl_40245 lm3533_led_delay_on_set fndecl 0 40245 NULL
++disable_so_cryptd_hash_digest_fndecl_40277 cryptd_hash_digest fndecl 2 40277 NULL
++disable_so_p2m_timeouts_show_fndecl_40284 p2m_timeouts_show fndecl 0 40284 NULL
++disable_so_decrypt_blkcipher_tfm_40300 decrypt blkcipher_tfm 0-4 40300 NULL
++disable_so_freq_radio_tea5777_40301 freq radio_tea5777 0 40301 NULL
++disable_so_height_v4l2_bt_timings_40304 height v4l2_bt_timings 0 40304 NULL
++disable_so_set_channels_control_runtime_40305 set_channels control_runtime 0 40305 NULL
++disable_so_mpll_ss1_si_clock_registers_40320 mpll_ss1 si_clock_registers 0 40320 NULL
++disable_so_address_drm_radeon_surface_free_40326 address drm_radeon_surface_free 0 40326 NULL
++disable_so_scopedist_ipv6_saddr_score_40339 scopedist ipv6_saddr_score 0 40339 NULL
++disable_so_eeprom_addr_pvr2_hdw_40343 eeprom_addr pvr2_hdw 0 40343 NULL
++disable_so_phys_addr_low_qlcnic_tx_mbx_40351 phys_addr_low qlcnic_tx_mbx 0 40351 NULL
++disable_so_i_ctime_nsec_nilfs_inode_40368 i_ctime_nsec nilfs_inode 0 40368 NULL
++disable_so_crypto_set_driver_name_fndecl_40369 crypto_set_driver_name fndecl 0 40369 NULL
++disable_so_gid_args_requester_40377 gid args_requester 0 40377 NULL
++disable_so_ds1343_set_time_fndecl_40381 ds1343_set_time fndecl 0 40381 NULL nohasharray
++disable_so_p2_mt9t112_pll_divider_40381 p2 mt9t112_pll_divider 0 40381 &disable_so_ds1343_set_time_fndecl_40381
++disable_so_get_phys_to_machine_fndecl_40384 get_phys_to_machine fndecl 0-1 40384 NULL
++disable_so_irlmp_start_watchdog_timer_fndecl_40386 irlmp_start_watchdog_timer fndecl 2 40386 NULL
++disable_so_it_id_k_itimer_40394 it_id k_itimer 0 40394 NULL
++disable_so_proc_gid_vardecl_airo_c_40395 proc_gid vardecl_airo.c 0 40395 NULL
++disable_so_vf_addr_lo_bnx2x_vf_mbx_40423 vf_addr_lo bnx2x_vf_mbx 0 40423 NULL
++disable_so_hsw_get_aux_clock_divider_fndecl_40428 hsw_get_aux_clock_divider fndecl 0 40428 NULL
++disable_so_uid_coda_in_hdr_40430 uid coda_in_hdr 0 40430 NULL
++disable_so_il4965_sta_modify_sleep_tx_count_fndecl_40431 il4965_sta_modify_sleep_tx_count fndecl 2 40431 NULL
++disable_so_op_nmi_timer_init_fndecl_40444 op_nmi_timer_init fndecl 0 40444 NULL
++disable_so_reply_dma_min_address_MPT3SAS_ADAPTER_40450 reply_dma_min_address MPT3SAS_ADAPTER 0 40450 NULL
++disable_so_clock_elmer0_board_info_40451 clock_elmer0 board_info 0 40451 NULL
++disable_so_drift_time_trackpoint_data_40460 drift_time trackpoint_data 0 40460 NULL
++disable_so_tpm_get_random_fndecl_40461 tpm_get_random fndecl 0-3 40461 NULL
++disable_so_HDisplay_xtimings_40462 HDisplay xtimings 0 40462 NULL
++disable_so_addr_desc_frag_40463 addr desc_frag 0 40463 NULL
++disable_so___scrub_mark_bitmap_fndecl_40465 __scrub_mark_bitmap fndecl 3-4 40465 NULL
++disable_so_da9063_wdt_timeout_to_sel_fndecl_40469 da9063_wdt_timeout_to_sel fndecl 0-1 40469 NULL
++disable_so_hactive___fb_timings_40471 hactive __fb_timings 0 40471 NULL
++disable_so_next_blkaddr_of_node_fndecl_40477 next_blkaddr_of_node fndecl 0 40477 NULL
++disable_so_gk20a_timer_init_fndecl_40478 gk20a_timer_init fndecl 0 40478 NULL
++disable_so_saa7164_i2caddr_to_unitid_fndecl_40486 saa7164_i2caddr_to_unitid fndecl 2 40486 NULL
++disable_so___hw_addr_unsync_one_fndecl_40488 __hw_addr_unsync_one fndecl 4 40488 NULL
++disable_so_uncore_msr_box_offset_fndecl_40489 uncore_msr_box_offset fndecl 0 40489 NULL
++disable_so_kgdbdbgp_wait_time_vardecl_ehci_dbgp_c_40510 kgdbdbgp_wait_time vardecl_ehci-dbgp.c 0 40510 NULL
++disable_so_sys_time_fndecl_40516 sys_time fndecl 0 40516 NULL
++disable_so_addrconf_sysctl_proxy_ndp_fndecl_40521 addrconf_sysctl_proxy_ndp fndecl 0 40521 NULL
++disable_so_jiffies_64_vardecl_40530 jiffies_64 vardecl 0 40530 NULL
++disable_so_time_fcoe_rport_40540 time fcoe_rport 0 40540 NULL nohasharray
++disable_so_i_time_fuse_inode_40540 i_time fuse_inode 0 40540 &disable_so_time_fcoe_rport_40540
++disable_so_fllclk_div__fll_div_40542 fllclk_div _fll_div 0 40542 NULL
++disable_so_mmc_sleep_fndecl_40550 mmc_sleep fndecl 0 40550 NULL
++disable_so_swap_activate_address_space_operations_40556 swap_activate address_space_operations 0 40556 NULL
++disable_so_snd_timer_reschedule_fndecl_40558 snd_timer_reschedule fndecl 2 40558 NULL
++disable_so_register_inetaddr_notifier_fndecl_40563 register_inetaddr_notifier fndecl 0 40563 NULL nohasharray
++disable_so_shash_async_export_fndecl_40563 shash_async_export fndecl 0 40563 &disable_so_register_inetaddr_notifier_fndecl_40563
++disable_so_tx_duty_cycle_ene_device_40568 tx_duty_cycle ene_device 0 40568 NULL
++disable_so_delay_cfg80211_sched_scan_request_40582 delay cfg80211_sched_scan_request 0 40582 NULL
++disable_so_sctp_copy_local_addr_list_fndecl_40597 sctp_copy_local_addr_list fndecl 0-4 40597 NULL
++disable_so_can_clock_plx_pci_card_info_40599 can_clock plx_pci_card_info 0 40599 NULL
++disable_so_last_semaphore_signal_addr_amdgpu_ring_40601 last_semaphore_signal_addr amdgpu_ring 0 40601 NULL
++disable_so_slave_addr_radeon_encoder_ext_tmds_40618 slave_addr radeon_encoder_ext_tmds 0 40618 NULL
++disable_so_lrg_buf_q_phy_addr_ql3_adapter_40620 lrg_buf_q_phy_addr ql3_adapter 0 40620 NULL
++disable_so_slave_addr_sdvo_device_mapping_40627 slave_addr sdvo_device_mapping 0 40627 NULL
++disable_so_raddr_fw_ldst_mdio_40629 raddr fw_ldst_mdio 0 40629 NULL
++disable_so_soc_dpcm_runtime_update_fndecl_40639 soc_dpcm_runtime_update fndecl 0 40639 NULL
++disable_so_md_timestamp_netxen_minidump_40640 md_timestamp netxen_minidump 0 40640 NULL
++disable_so_freq_magnitude_fndecl_40641 freq_magnitude fndecl 0-2-3 40641 NULL
++disable_so_asd_write_reg_addr_fndecl_40648 asd_write_reg_addr fndecl 2-3 40648 NULL
++disable_so_ndiv_frac_pmu1_plltab_entry_40664 ndiv_frac pmu1_plltab_entry 0 40664 NULL
++disable_so___percpu_counter_add_fndecl_40667 __percpu_counter_add fndecl 2 40667 NULL
++disable_so_r600_set_mpll_lock_time_fndecl_40677 r600_set_mpll_lock_time fndecl 2 40677 NULL
++disable_so_m_daddr_rds_message_40687 m_daddr rds_message 0 40687 NULL
++disable_so_tbl_addr_hi_ahci_cmd_hdr_40697 tbl_addr_hi ahci_cmd_hdr 0 40697 NULL
++disable_so___cfq_update_io_thinktime_fndecl_40698 __cfq_update_io_thinktime fndecl 2 40698 NULL
++disable_so_sense_addr_snic_icmnd_40701 sense_addr snic_icmnd 0 40701 NULL
++disable_so_addr_mlx5e_sq_dma_40707 addr mlx5e_sq_dma 0 40707 NULL
++disable_so_lp872x_is_valid_buck_addr_fndecl_40709 lp872x_is_valid_buck_addr fndecl 1 40709 NULL
++disable_so_dma_addr_respQ_40711 dma_addr respQ 0 40711 NULL
++disable_so_mclkdiv_cs4265_clk_para_40714 mclkdiv cs4265_clk_para 0 40714 NULL
++disable_so_sh_tmu_clocksource_read_fndecl_40723 sh_tmu_clocksource_read fndecl 0 40723 NULL nohasharray
++disable_so_mthca_cmd_poll_fndecl_40723 mthca_cmd_poll fndecl 0-2 40723 &disable_so_sh_tmu_clocksource_read_fndecl_40723
++disable_so_radio_si4713_s_frequency_fndecl_40725 radio_si4713_s_frequency fndecl 0 40725 NULL
++disable_so_onecputick_vardecl_posix_cpu_timers_c_40726 onecputick vardecl_posix-cpu-timers.c 0 40726 NULL
++disable_so_v_freq_adv7842_video_standards_40728 v_freq adv7842_video_standards 0 40728 NULL
++disable_so___ip6addrlbl_del_fndecl_40742 __ip6addrlbl_del fndecl 0-4 40742 NULL
++disable_so_encrypt_msdu_lib80211_crypto_ops_40743 encrypt_msdu lib80211_crypto_ops 2 40743 NULL
++disable_so_rolloff_stv0900_signal_info_40745 rolloff stv0900_signal_info 0 40745 NULL
++disable_so_pci_finish_runtime_suspend_fndecl_40755 pci_finish_runtime_suspend fndecl 0 40755 NULL
++disable_so_tcp_sacktag_walk_fndecl_40756 tcp_sacktag_walk fndecl 6-5 40756 NULL
++disable_so_vnic_dev_add_addr_fndecl_40765 vnic_dev_add_addr fndecl 0 40765 NULL
++disable_so_zd_usb_iowrite16v_fndecl_40771 zd_usb_iowrite16v fndecl 3-0 40771 NULL nohasharray
++disable_so_frequency_mb86a16_state_40771 frequency mb86a16_state 0 40771 &disable_so_zd_usb_iowrite16v_fndecl_40771
++disable_so_clk_ref_div_fll_div_40776 clk_ref_div fll_div 0 40776 NULL
++disable_so_lifetime_write_kbytes_show_fndecl_40777 lifetime_write_kbytes_show fndecl 0 40777 NULL nohasharray
++disable_so_smp_send_reschedule_fndecl_40777 smp_send_reschedule fndecl 1 40777 &disable_so_lifetime_write_kbytes_show_fndecl_40777
++disable_so_crypto_ccm_auth_fndecl_40795 crypto_ccm_auth fndecl 0-3 40795 NULL
++disable_so_get_option_uid_fndecl_40799 get_option_uid fndecl 0 40799 NULL
++disable_so_be_mac_addr_set_fndecl_40804 be_mac_addr_set fndecl 0 40804 NULL
++disable_so_frac_timecounter_40806 frac timecounter 0 40806 NULL
++disable_so_pid_pppol2tpin6_addr_40809 pid pppol2tpin6_addr 0 40809 NULL
++disable_so_i40e_vc_del_mac_addr_msg_fndecl_40824 i40e_vc_del_mac_addr_msg fndecl 0-3 40824 NULL nohasharray
++disable_so_uncore_msr_box_ctl_fndecl_40824 uncore_msr_box_ctl fndecl 0 40824 &disable_so_i40e_vc_del_mac_addr_msg_fndecl_40824
++disable_so_ahd_delay_fndecl_40826 ahd_delay fndecl 1 40826 NULL
++disable_so_read_addr___queue_40832 read_addr __queue 0 40832 NULL
++disable_so_ring_iowrite32desc_fndecl_40836 ring_iowrite32desc fndecl 2 40836 NULL
++disable_so_mma8452_get_samp_freq_index_fndecl_40841 mma8452_get_samp_freq_index fndecl 0-2-3 40841 NULL
++disable_so_nouveau_bo_wr32_fndecl_40847 nouveau_bo_wr32 fndecl 2-3 40847 NULL
++disable_so_drm_object_attach_property_fndecl_40853 drm_object_attach_property fndecl 3 40853 NULL
++disable_so_sched_rr_timeslice_vardecl_40858 sched_rr_timeslice vardecl 0 40858 NULL
++disable_so_hash_recvmsg_fndecl_40871 hash_recvmsg fndecl 0-3 40871 NULL
++disable_so_timeradd_entry_fndecl_40873 timeradd_entry fndecl 0-3 40873 NULL
++disable_so_pages_per_bnode_hfs_btree_40875 pages_per_bnode hfs_btree 0 40875 NULL
++disable_so_ubifs_destroy_tnc_subtree_fndecl_40878 ubifs_destroy_tnc_subtree fndecl 0 40878 NULL
++disable_so_add_uuid_fndecl_40884 add_uuid fndecl 4 40884 NULL nohasharray
++disable_so_make_checksum_hmac_md5_fndecl_40884 make_checksum_hmac_md5 fndecl 3-5 40884 &disable_so_add_uuid_fndecl_40884
++disable_so_sync_bmp_nbits_regcache_lzo_ctx_40890 sync_bmp_nbits regcache_lzo_ctx 0 40890 NULL
++disable_so_crypto_fpu_decrypt_fndecl_40907 crypto_fpu_decrypt fndecl 0-4 40907 NULL
++disable_so_qce_ahash_final_fndecl_40916 qce_ahash_final fndecl 0 40916 NULL
++disable_so_auto_stop_time_uhci_hcd_40917 auto_stop_time uhci_hcd 0 40917 NULL
++disable_so_sys_rt_sigtimedwait_fndecl_40920 sys_rt_sigtimedwait fndecl 0 40920 NULL
++disable_so_dec_cd_paddr_qat_alg_ablkcipher_ctx_40923 dec_cd_paddr qat_alg_ablkcipher_ctx 0 40923 NULL nohasharray
++disable_so_i2cdev_check_addr_fndecl_40923 i2cdev_check_addr fndecl 2 40923 &disable_so_dec_cd_paddr_qat_alg_ablkcipher_ctx_40923
++disable_so_inode_bitmap_ext3_new_group_data_40928 inode_bitmap ext3_new_group_data 0 40928 NULL
++disable_so_inet_select_addr_fndecl_40940 inet_select_addr fndecl 0-2-3 40940 NULL nohasharray
++disable_so_curfreq_keene_device_40940 curfreq keene_device 0 40940 &disable_so_inet_select_addr_fndecl_40940
++disable_so_w83627ehf_write_fan_div_common_fndecl_40945 w83627ehf_write_fan_div_common fndecl 3 40945 NULL
++disable_so_req_addr_efx_vf_40947 req_addr efx_vf 0 40947 NULL
++disable_so_get_crandom_fndecl_40951 get_crandom fndecl 0 40951 NULL
++disable_so_authenc_esn_geniv_ahash_update_done2_fndecl_40965 authenc_esn_geniv_ahash_update_done2 fndecl 2 40965 NULL
++disable_so_bt3c_address_fndecl_40975 bt3c_address fndecl 1 40975 NULL
++disable_so_tx_bidx_addr_bnx2_tx_ring_info_40977 tx_bidx_addr bnx2_tx_ring_info 0 40977 NULL
++disable_so_cs5520_set_timings_fndecl_40978 cs5520_set_timings fndecl 3 40978 NULL
++disable_so_addrLow_ULP_BDL_40980 addrLow ULP_BDL 0 40980 NULL
++disable_so_last_wakeup_time_rtl_ps_ctl_40987 last_wakeup_time rtl_ps_ctl 0 40987 NULL
++disable_so_kstrtos8_fndecl_40989 kstrtos8 fndecl 0 40989 NULL nohasharray
++disable_so_drbg_hash_generate_fndecl_40989 drbg_hash_generate fndecl 0-3 40989 &disable_so_kstrtos8_fndecl_40989
++disable_so_vaddr_get_pfn_fndecl_40993 vaddr_get_pfn fndecl 0-1 40993 NULL
++disable_so_s_def_resgid_ext3_super_block_40996 s_def_resgid ext3_super_block 0 40996 NULL
++disable_so_sr_nongc_ctime_nilfs_super_root_40997 sr_nongc_ctime nilfs_super_root 0 40997 NULL
++disable_so_rsp_producer_index_phy_addr_high_ql3_adapter_40998 rsp_producer_index_phy_addr_high ql3_adapter 0 40998 NULL
++disable_so_per_jiffies_stats_dib8000_state_40999 per_jiffies_stats dib8000_state 0 40999 NULL
++disable_so_cobalt_dv_timings_cap_fndecl_41001 cobalt_dv_timings_cap fndecl 0 41001 NULL
++disable_so_encrypt_blkcipher_tfm_41013 encrypt blkcipher_tfm 0-4 41013 NULL
++disable_so_max_dwell_time_active_conf_scan_settings_41024 max_dwell_time_active conf_scan_settings 0 41024 NULL
++disable_so_gpu_addr_radeon_fence_driver_41046 gpu_addr radeon_fence_driver 0 41046 NULL
++disable_so_read_cache_jiffies_nfs_inode_41071 read_cache_jiffies nfs_inode 0 41071 NULL
++disable_so_curfreq_ma901radio_device_41079 curfreq ma901radio_device 0 41079 NULL
++disable_so_show_constraint_max_time_window_us_fndecl_41080 show_constraint_max_time_window_us fndecl 0 41080 NULL
++disable_so_acpi_tables_addr_vardecl_osl_c_41081 acpi_tables_addr vardecl_osl.c 0 41081 NULL
++disable_so_gdth_delay_fndecl_41096 gdth_delay fndecl 1 41096 NULL
++disable_so_wq_calc_node_cpumask_fndecl_41102 wq_calc_node_cpumask fndecl 2 41102 NULL
++disable_so_qp_bitmap_free_ntb_transport_ctx_41105 qp_bitmap_free ntb_transport_ctx 0 41105 NULL
++disable_so_show_admin_alias_guid_fndecl_41106 show_admin_alias_guid fndecl 0 41106 NULL
++disable_so_freq_vardecl_mxb_c_41108 freq vardecl_mxb.c 0 41108 NULL
++disable_so_vx_set_internal_clock_fndecl_41114 vx_set_internal_clock fndecl 2 41114 NULL
++disable_so_jiffies_at_alloc_qla_tgt_cmd_41119 jiffies_at_alloc qla_tgt_cmd 0 41119 NULL
++disable_so_timestamp_ath9k_htc_tx_ctl_41124 timestamp ath9k_htc_tx_ctl 0 41124 NULL
++disable_so_ib_baseaddr_h_mvumi_hs_page4_41130 ib_baseaddr_h mvumi_hs_page4 0 41130 NULL
++disable_so_cherryview_rps_guar_freq_fndecl_41132 cherryview_rps_guar_freq fndecl 0 41132 NULL
++disable_so_time_survey_info_41134 time survey_info 0 41134 NULL
++disable_so_child_tgid_fork_proc_event_41148 child_tgid fork_proc_event 0 41148 NULL
++disable_so_companion_addr_pm860x_platform_data_41156 companion_addr pm860x_platform_data 0 41156 NULL
++disable_so_lgdt330x_read_signal_strength_fndecl_41159 lgdt330x_read_signal_strength fndecl 0 41159 NULL
++disable_so_genwqe_curr_dbg_uid1_show_fndecl_41164 genwqe_curr_dbg_uid1_show fndecl 0 41164 NULL
++disable_so_addr_nct6775_data_41165 addr nct6775_data 0 41165 NULL
++disable_so_assoc_id_sctp_getaddrs_41169 assoc_id sctp_getaddrs 0 41169 NULL
++disable_so_set_addr_fndecl_41173 set_addr fndecl 2 41173 NULL
++disable_so_fairness_timeout_fairness_vars_per_port_41174 fairness_timeout fairness_vars_per_port 0 41174 NULL
++disable_so_acpi_os_install_interrupt_handler_fndecl_41179 acpi_os_install_interrupt_handler fndecl 1 41179 NULL
++disable_so_ref_freq_vardecl_tsc_c_41183 ref_freq vardecl_tsc.c 0 41183 NULL
++disable_so_latest_ip_addr_eg_cache_entry_41198 latest_ip_addr eg_cache_entry 0 41198 NULL
++disable_so_long_timeout_osst_tape_41205 long_timeout osst_tape 0 41205 NULL
++disable_so_dma_addr_mcam_dma_desc_41206 dma_addr mcam_dma_desc 0 41206 NULL
++disable_so_address_lower_scu_sgl_element_41221 address_lower scu_sgl_element 0 41221 NULL
++disable_so_paravirt_read_tsc_fndecl_41239 paravirt_read_tsc fndecl 0 41239 NULL
++disable_so_posix_clock_realtime_set_fndecl_41245 posix_clock_realtime_set fndecl 0 41245 NULL
++disable_so_phys_addr_netxen_dummy_dma_41248 phys_addr netxen_dummy_dma 0 41248 NULL
++disable_so_addr_port_fndecl_41249 addr_port fndecl 0 41249 NULL nohasharray
++disable_so_ip_vs_svc_hashkey_fndecl_41249 ip_vs_svc_hashkey fndecl 2-3 41249 &disable_so_addr_port_fndecl_41249
++disable_so_kstrtoul_from_user_fndecl_41258 kstrtoul_from_user fndecl 0-2 41258 NULL
++disable_so_xfrm_state_lookup_byaddr_fndecl_41260 xfrm_state_lookup_byaddr fndecl 2-5-6 41260 NULL
++disable_so_ns_sbwtime_the_nilfs_41268 ns_sbwtime the_nilfs 0 41268 NULL
++disable_so_max_delta_ns_clock_event_device_41269 max_delta_ns clock_event_device 0 41269 NULL
++disable_so_mcryptd_hash_init_enqueue_fndecl_41273 mcryptd_hash_init_enqueue fndecl 0 41273 NULL
++disable_so_enic_set_mac_address_dynamic_fndecl_41279 enic_set_mac_address_dynamic fndecl 0 41279 NULL
++disable_so_igb_ptp_adjtime_i210_fndecl_41280 igb_ptp_adjtime_i210 fndecl 2 41280 NULL
++disable_so_timestamp_cper_record_header_41286 timestamp cper_record_header 0 41286 NULL
++disable_so_mtt_base_addr_l_mlx4_cq_context_41294 mtt_base_addr_l mlx4_cq_context 0 41294 NULL
++disable_so_base_lo_mtrr_var_range_41296 base_lo mtrr_var_range 0 41296 NULL
++disable_so_ucma_query_gid_fndecl_41299 ucma_query_gid fndecl 3 41299 NULL
++disable_so_ioat_dma_setup_interrupts_fndecl_41304 ioat_dma_setup_interrupts fndecl 0 41304 NULL
++disable_so_cmaj_flt_signal_struct_41306 cmaj_flt signal_struct 0 41306 NULL
++disable_so_wlc_phy_ant_rxdiv_set_fndecl_41312 wlc_phy_ant_rxdiv_set fndecl 2 41312 NULL
++disable_so_ata_timing_compute_fndecl_41314 ata_timing_compute fndecl 2 41314 NULL
++disable_so_jiffies_resched_rcu_state_41320 jiffies_resched rcu_state 0 41320 NULL
++disable_so_cc770_rx_interrupt_fndecl_41322 cc770_rx_interrupt fndecl 2 41322 NULL
++disable_so_configure_clock_fndecl_41329 configure_clock fndecl 0 41329 NULL
++disable_so_timeout_ip_set_41331 timeout ip_set 0 41331 NULL
++disable_so_dcbnl_getperm_hwaddr_fndecl_41338 dcbnl_getperm_hwaddr fndecl 0 41338 NULL
++disable_so_cfg80211_set_cipher_group_fndecl_41343 cfg80211_set_cipher_group fndecl 2 41343 NULL
++disable_so_time_ipr_trace_entry_41350 time ipr_trace_entry 0 41350 NULL
++disable_so_csize_lattime_ahc_pci_softc_41352 csize_lattime ahc_pci_softc 0 41352 NULL
++disable_so_bind_to_cpu_evtchn_ops_41358 bind_to_cpu evtchn_ops 2 41358 NULL
++disable_so_init_lib80211_crypto_ops_41363 init lib80211_crypto_ops 1 41363 NULL
++disable_so_xhci_get_timeout_no_hub_lpm_fndecl_41382 xhci_get_timeout_no_hub_lpm fndecl 0 41382 NULL
++disable_so_ast_set_index_reg_mask_fndecl_41386 ast_set_index_reg_mask fndecl 5 41386 NULL nohasharray
++disable_so_iwl_send_rxon_timing_fndecl_41386 iwl_send_rxon_timing fndecl 0 41386 &disable_so_ast_set_index_reg_mask_fndecl_41386
++disable_so_last_can_queue_ramp_down_time_fc_fcp_internal_41400 last_can_queue_ramp_down_time fc_fcp_internal 0 41400 NULL
++disable_so_bClockID_uac_clock_selector_descriptor_41403 bClockID uac_clock_selector_descriptor 0 41403 NULL
++disable_so_sys_setuid_fndecl_41415 sys_setuid fndecl 0-1 41415 NULL
++disable_so_i2c_address_tda826x_priv_41421 i2c_address tda826x_priv 0 41421 NULL
++disable_so_dma_addr_efx_rx_buffer_41422 dma_addr efx_rx_buffer 0 41422 NULL
++disable_so_retrans_timeout_l2cap_chan_41431 retrans_timeout l2cap_chan 0 41431 NULL
++disable_so_musb_read_rxhubaddr_fndecl_41435 musb_read_rxhubaddr fndecl 2-0 41435 NULL
++disable_so_pll_reference_div_radeon_crtc_41437 pll_reference_div radeon_crtc 0 41437 NULL
++disable_so_macvlan_set_mac_address_fndecl_41439 macvlan_set_mac_address fndecl 0 41439 NULL
++disable_so_i_uid_read_fndecl_41443 i_uid_read fndecl 0 41443 NULL
++disable_so_hpi_silence_detector_get_delay_fndecl_41450 hpi_silence_detector_get_delay fndecl 0-1 41450 NULL
++disable_so__div_round_up_fndecl_41453 _div_round_up fndecl 0-3-2 41453 NULL
++disable_so_br_timer_value_fndecl_41454 br_timer_value fndecl 0 41454 NULL
++disable_so_compat_sys_utimes_fndecl_41459 compat_sys_utimes fndecl 0 41459 NULL
++disable_so_tx_duty_cycle_ofdm_brcms_c_info_41464 tx_duty_cycle_ofdm brcms_c_info 0 41464 NULL
++disable_so_crypto_authenc_verify_fndecl_41468 crypto_authenc_verify fndecl 0 41468 NULL
++disable_so_signalQuality_StatusRid_41475 signalQuality StatusRid 0 41475 NULL
++disable_so_storvsc_timeout_vardecl_storvsc_drv_c_41479 storvsc_timeout vardecl_storvsc_drv.c 0 41479 NULL
++disable_so_sctp_v6_from_addr_param_fndecl_41480 sctp_v6_from_addr_param fndecl 3-4 41480 NULL
++disable_so_xfs_btree_check_ptr_fndecl_41490 xfs_btree_check_ptr fndecl 3-0 41490 NULL
++disable_so___anon_vma_interval_tree_compute_subtree_last_fndecl_41494 __anon_vma_interval_tree_compute_subtree_last fndecl 0 41494 NULL
++disable_so_drive_jiffies_skd_device_41506 drive_jiffies skd_device 0 41506 NULL
++disable_so_last_dock_time_dock_station_41508 last_dock_time dock_station 0 41508 NULL
++disable_so_common_nsleep_fndecl_41534 common_nsleep fndecl 1 41534 NULL
++disable_so_sun4i_spi_runtime_resume_fndecl_41538 sun4i_spi_runtime_resume fndecl 0 41538 NULL
++disable_so_src_nents_qce_cipher_reqctx_41541 src_nents qce_cipher_reqctx 0 41541 NULL
++disable_so_daddr_irda_ias_set_41547 daddr irda_ias_set 0 41547 NULL
++disable_so_cpufreq_frequency_get_table_fndecl_41548 cpufreq_frequency_get_table fndecl 1 41548 NULL
++disable_so_bd_list_addr_lo_bnx2i_tmf_request_41551 bd_list_addr_lo bnx2i_tmf_request 0 41551 NULL
++disable_so_mkey_lease_timeout_qib_ibport_41552 mkey_lease_timeout qib_ibport 0 41552 NULL
++disable_so_dma_addr_efx_rx_page_state_41558 dma_addr efx_rx_page_state 0 41558 NULL
++disable_so_igb_runtime_resume_fndecl_41565 igb_runtime_resume fndecl 0 41565 NULL
++disable_so_wait_on_page_bit_killable_fndecl_41573 wait_on_page_bit_killable fndecl 0 41573 NULL
++disable_so_time_js_event_41583 time js_event 0 41583 NULL nohasharray
++disable_so_lzo_mod_init_fndecl_41583 lzo_mod_init fndecl 0 41583 &disable_so_time_js_event_41583
++disable_so_cg_spll_func_cntl_2_si_clock_registers_41584 cg_spll_func_cntl_2 si_clock_registers 0 41584 NULL
++disable_so_swa_base_asd_ha_addrspace_41593 swa_base asd_ha_addrspace 0 41593 NULL
++disable_so_flow_get_skgid_fndecl_41594 flow_get_skgid fndecl 0 41594 NULL nohasharray
++disable_so_fib_sync_down_addr_fndecl_41594 fib_sync_down_addr fndecl 2 41594 &disable_so_flow_get_skgid_fndecl_41594
++disable_so_fl0addr_csio_iq_params_41595 fl0addr csio_iq_params 0 41595 NULL
++disable_so_cpufreq_stat_notifier_policy_fndecl_41604 cpufreq_stat_notifier_policy fndecl 0 41604 NULL nohasharray
++disable_so_hash_by_src_fndecl_41604 hash_by_src fndecl 0 41604 &disable_so_cpufreq_stat_notifier_policy_fndecl_41604
++disable_so_read_nvkm_timer_41609 read nvkm_timer 0 41609 NULL
++disable_so_shm32read_addr_next_b43_dfsentry_41611 shm32read_addr_next b43_dfsentry 0 41611 NULL
++disable_so_lo_regpair_41616 lo regpair 0 41616 NULL
++disable_so_addr_netdev_desc_41619 addr netdev_desc 0 41619 NULL
++disable_so_ndesc_get_timestamp_fndecl_41626 ndesc_get_timestamp fndecl 0 41626 NULL
++disable_so_gid_cramfs_inode_41627 gid cramfs_inode 0 41627 NULL
++disable_so___sw_hweight8_fndecl_41629 __sw_hweight8 fndecl 1-0 41629 NULL
++disable_so_kvm_mtrr_get_guest_memory_type_fndecl_41633 kvm_mtrr_get_guest_memory_type fndecl 2-0 41633 NULL
++disable_so___xfrm6_addr_hash_fndecl_41637 __xfrm6_addr_hash fndecl 0 41637 NULL
++disable_so_phys_reg_addr_slgt_info_41642 phys_reg_addr slgt_info 0 41642 NULL
++disable_so_il_dbgfs_wd_timeout_write_fndecl_41643 il_dbgfs_wd_timeout_write fndecl 3 41643 NULL
++disable_so_count_sha256_state_41648 count sha256_state 0 41648 NULL
++disable_so_ironlake_check_encoder_dotclock_fndecl_41660 ironlake_check_encoder_dotclock fndecl 2 41660 NULL
++disable_so_af9015_eeprom_hash_fndecl_41666 af9015_eeprom_hash fndecl 0 41666 NULL
++disable_so_intel_dotclock_calculate_fndecl_41668 intel_dotclock_calculate fndecl 1-0 41668 NULL
++disable_so_rdmsrl_amd_safe_fndecl_41672 rdmsrl_amd_safe fndecl 0 41672 NULL
++disable_so_crypto_ablkcipher_encrypt_fndecl_41682 crypto_ablkcipher_encrypt fndecl 0 41682 NULL
++disable_so_bcma_pmu_pll_clock_bcm4706_fndecl_41683 bcma_pmu_pll_clock_bcm4706 fndecl 0-2 41683 NULL
++disable_so_regmap_write_fndecl_41685 regmap_write fndecl 0-2-3 41685 NULL
++disable_so_setup_APIC_mce_threshold_fndecl_41686 setup_APIC_mce_threshold fndecl 0-1-2 41686 NULL
++disable_so_copy_signal_fndecl_41687 copy_signal fndecl 1 41687 NULL
++disable_so_dma_addr_dw_spi_41693 dma_addr dw_spi 0 41693 NULL
++disable_so_leave_oper_channel_time_ieee80211_local_41701 leave_oper_channel_time ieee80211_local 0 41701 NULL
++disable_so_bit_putcs_fndecl_41704 bit_putcs fndecl 4-5-6-7-8 41704 NULL
++disable_so_nbpf_runtime_resume_fndecl_41706 nbpf_runtime_resume fndecl 0 41706 NULL
++disable_so_force_addr_vardecl_vt8231_c_41714 force_addr vardecl_vt8231.c 0 41714 NULL
++disable_so_radio_syn_pll_refdiv_b43_nphy_channeltab_entry_rev3_41738 radio_syn_pll_refdiv b43_nphy_channeltab_entry_rev3 0 41738 NULL
++disable_so_epoch_time_atto_vda_cfg_init_41739 epoch_time atto_vda_cfg_init 0 41739 NULL
++disable_so_node_size_shift_hfs_btree_41753 node_size_shift hfs_btree 0 41753 NULL
++disable_so_gfx_addr_intel_hw_status_page_41756 gfx_addr intel_hw_status_page 0 41756 NULL
++disable_so_mtrr_trim_uncached_memory_fndecl_41757 mtrr_trim_uncached_memory fndecl 1 41757 NULL
++disable_so_start_idle_time_cfqg_stats_41767 start_idle_time cfqg_stats 0 41767 NULL
++disable_so_receive_bitmap_plain_fndecl_41772 receive_bitmap_plain fndecl 0-2 41772 NULL
++disable_so___set_port_dev_addr_fndecl_41787 __set_port_dev_addr fndecl 0 41787 NULL
++disable_so_max_delta_ticks_clock_event_device_41796 max_delta_ticks clock_event_device 0 41796 NULL
++disable_so_register_ip_vs_scheduler_fndecl_41797 register_ip_vs_scheduler fndecl 0 41797 NULL
++disable_so_lcd_pixclock_atyfb_par_41804 lcd_pixclock atyfb_par 0 41804 NULL
++disable_so_mwl8k_cmd_set_mac_addr_fndecl_41809 mwl8k_cmd_set_mac_addr fndecl 0 41809 NULL
++disable_so_mktime64_fndecl_41810 mktime64 fndecl 0-6-5-4-3-2-1 41810 NULL
++disable_so_brcmf_pcie_buscore_prep_addr_fndecl_41821 brcmf_pcie_buscore_prep_addr fndecl 0-2 41821 NULL
++disable_so_s_bitmap_ino_omfs_sb_info_41835 s_bitmap_ino omfs_sb_info 0 41835 NULL
++disable_so_tlan_handle_interrupt_fndecl_41866 tlan_handle_interrupt fndecl 1 41866 NULL
++disable_so_crypto_authenc_esn_genicv_fndecl_41873 crypto_authenc_esn_genicv fndecl 0 41873 NULL
++disable_so_bfad_iocmd_rport_get_addr_fndecl_41879 bfad_iocmd_rport_get_addr fndecl 0 41879 NULL
++disable_so_xhci_del_comp_mod_timer_fndecl_41881 xhci_del_comp_mod_timer fndecl 3 41881 NULL
++disable_so_raddr_c2wr_ae_connection_request_41889 raddr c2wr_ae_connection_request 0 41889 NULL
++disable_so_btrfs_run_delayed_items_nr_fndecl_41895 btrfs_run_delayed_items_nr fndecl 0-3 41895 NULL nohasharray
++disable_so_isac_interrupt_fndecl_41895 isac_interrupt fndecl 2 41895 &disable_so_btrfs_run_delayed_items_nr_fndecl_41895
++disable_so_address_b43_dmadesc32_41900 address b43_dmadesc32 0 41900 NULL
++disable_so_i_gid_ext4_inode_41907 i_gid ext4_inode 0 41907 NULL
++disable_so_sil24_exec_polled_cmd_fndecl_41911 sil24_exec_polled_cmd fndecl 2 41911 NULL
++disable_so_cp_hqd_pq_rptr_report_addr_hqd_registers_41912 cp_hqd_pq_rptr_report_addr hqd_registers 0 41912 NULL
++disable_so_uuid_hash_ocfs2_super_41922 uuid_hash ocfs2_super 0 41922 NULL
++disable_so_connect_time_usb_device_41926 connect_time usb_device 0 41926 NULL
++disable_so_hard_byte_limit_xfrm_lifetime_cfg_41928 hard_byte_limit xfrm_lifetime_cfg 0 41928 NULL nohasharray
++disable_so_q_rtime_msg_queue_41928 q_rtime msg_queue 0 41928 &disable_so_hard_byte_limit_xfrm_lifetime_cfg_41928 nohasharray
++disable_so_saddr_iphdr_41928 saddr iphdr 0 41928 &disable_so_q_rtime_msg_queue_41928
++disable_so_nfs4_schedule_session_recovery_fndecl_41930 nfs4_schedule_session_recovery fndecl 2 41930 NULL
++disable_so_desc_card_addr_qla8044_minidump_entry_rdmem_pex_dma_41937 desc_card_addr qla8044_minidump_entry_rdmem_pex_dma 0 41937 NULL
++disable_so_freq_ar9170_calibration_target_power_ht_41939 freq ar9170_calibration_target_power_ht 0 41939 NULL
++disable_so_ino_timelimit_qc_type_state_41942 ino_timelimit qc_type_state 0 41942 NULL
++disable_so_ifa_local_in_ifaddr_41951 ifa_local in_ifaddr 0 41951 NULL
++disable_so_seq_radeon_fence_41952 seq radeon_fence 0 41952 NULL
++disable_so_mmc_interrupt_hpi_fndecl_41967 mmc_interrupt_hpi fndecl 0 41967 NULL
++disable_so_addr_nvbios_xpio_41977 addr nvbios_xpio 0 41977 NULL
++disable_so_mlx4_test_interrupts_fndecl_41979 mlx4_test_interrupts fndecl 0 41979 NULL
++disable_so_alps_process_bitmap_fndecl_41983 alps_process_bitmap fndecl 0 41983 NULL
++disable_so_enter_deep_sleep_lbs_private_41984 enter_deep_sleep lbs_private 0 41984 NULL
++disable_so_freq_detected_vx_core_41987 freq_detected vx_core 0 41987 NULL
++disable_so_sig_ksignal_41988 sig ksignal 0 41988 NULL
++disable_so_kvm_clock_get_cycles_fndecl_41992 kvm_clock_get_cycles fndecl 0 41992 NULL
++disable_so_mthca_setup_hca_fndecl_41999 mthca_setup_hca fndecl 0 41999 NULL
++disable_so_ipath_led_override_timeoff_ipath_devdata_42003 ipath_led_override_timeoff ipath_devdata 0 42003 NULL nohasharray
++disable_so_authenc_geniv_ahash_done_fndecl_42003 authenc_geniv_ahash_done fndecl 2 42003 &disable_so_ipath_led_override_timeoff_ipath_devdata_42003
++disable_so_cxgb4vf_set_mac_addr_fndecl_42004 cxgb4vf_set_mac_addr fndecl 0 42004 NULL
++disable_so_poly_cipher_fndecl_42005 poly_cipher fndecl 0 42005 NULL
++disable_so_lfo2delay_soundfont_voice_parm_42007 lfo2delay soundfont_voice_parm 0 42007 NULL
++disable_so_cik_get_cu_active_bitmap_fndecl_42010 cik_get_cu_active_bitmap fndecl 0-2-3 42010 NULL
++disable_so_get_max_clock_sdhci_ops_42015 get_max_clock sdhci_ops 0 42015 NULL
++disable_so_svm_read_l1_tsc_fndecl_42018 svm_read_l1_tsc fndecl 0-2 42018 NULL
++disable_so_dccp_feat_signal_nn_change_fndecl_42022 dccp_feat_signal_nn_change fndecl 3 42022 NULL
++disable_so_e1000_test_msi_interrupt_fndecl_42028 e1000_test_msi_interrupt fndecl 0 42028 NULL
++disable_so_uv_rtc_setup_clock_fndecl_42030 uv_rtc_setup_clock fndecl 0 42030 NULL
++disable_so_rsa_get_e_fndecl_42032 rsa_get_e fndecl 5 42032 NULL
++disable_so_set_h225_addr_fndecl_42039 set_h225_addr fndecl 2-4 42039 NULL
++disable_so_next_hrtimer_event_fotg210_hcd_42040 next_hrtimer_event fotg210_hcd 0 42040 NULL
++disable_so_baseaddr_m48t35_priv_42042 baseaddr m48t35_priv 0 42042 NULL
++disable_so_src_high_addr_mvumi_dyn_list_entry_42046 src_high_addr mvumi_dyn_list_entry 0 42046 NULL
++disable_so_address_x86_exception_42048 address x86_exception 0 42048 NULL nohasharray
++disable_so_adis16480_set_freq_fndecl_42048 adis16480_set_freq fndecl 0 42048 &disable_so_address_x86_exception_42048
++disable_so_skcipher_recvmsg_fndecl_42050 skcipher_recvmsg fndecl 0 42050 NULL
++disable_so_uid_ncp_mount_data_v4_42052 uid ncp_mount_data_v4 0 42052 NULL
++disable_so_guid_qib_pportdata_42064 guid qib_pportdata 0 42064 NULL
++disable_so_usb_find_address_fndecl_42069 usb_find_address fndecl 0 42069 NULL
++disable_so_crypto_comp_compress_fndecl_42075 crypto_comp_compress fndecl 3 42075 NULL
++disable_so_xcan_state_interrupt_fndecl_42076 xcan_state_interrupt fndecl 2 42076 NULL
++disable_so_xfs_dir2_leaf_search_hash_fndecl_42097 xfs_dir2_leaf_search_hash fndecl 0 42097 NULL
++disable_so_rtl8169_interrupt_fndecl_42115 rtl8169_interrupt fndecl 1 42115 NULL
++disable_so_ip_list_uid_vardecl_xt_recent_c_42144 ip_list_uid vardecl_xt_recent.c 0 42144 NULL
++disable_so_request_sound_timer_fndecl_42149 request_sound_timer fndecl 1 42149 NULL nohasharray
++disable_so_sof_search_timeout_stb0899_config_42149 sof_search_timeout stb0899_config 0 42149 &disable_so_request_sound_timer_fndecl_42149
++disable_so_uvc_timeout_param_vardecl_42158 uvc_timeout_param vardecl 0 42158 NULL
++disable_so_stv0900_get_mclk_freq_fndecl_42161 stv0900_get_mclk_freq fndecl 0-2 42161 NULL
++disable_so_pch_systime_read_fndecl_42169 pch_systime_read fndecl 0 42169 NULL
++disable_so_accumulate_16bit_val_fndecl_42178 accumulate_16bit_val fndecl 2 42178 NULL
++disable_so_cryptd_blkcipher_enqueue_fndecl_42182 cryptd_blkcipher_enqueue fndecl 0 42182 NULL
++disable_so_sjw_can_bittiming_42187 sjw can_bittiming 0 42187 NULL
++disable_so_vortex_interrupt_fndecl_42189 vortex_interrupt fndecl 1 42189 NULL
++disable_so_ar_addr_qla4_83xx_quad_entry_42190 ar_addr qla4_83xx_quad_entry 0 42190 NULL
++disable_so_sctp_v4_from_addr_param_fndecl_42197 sctp_v4_from_addr_param fndecl 3 42197 NULL
++disable_so_sda_hold_time_dw_i2c_dev_42198 sda_hold_time dw_i2c_dev 0 42198 NULL
++disable_so_proc_doulongvec_ms_jiffies_minmax_fndecl_42211 proc_doulongvec_ms_jiffies_minmax fndecl 0 42211 NULL
++disable_so_monitor_timeout_l2cap_chan_42212 monitor_timeout l2cap_chan 0 42212 NULL
++disable_so_sys_setfsuid16_fndecl_42222 sys_setfsuid16 fndecl 0-1 42222 NULL
++disable_so_rrd_ret_timer_atl1_hw_42226 rrd_ret_timer atl1_hw 0 42226 NULL nohasharray
++disable_so__get_table_mindiv_fndecl_42226 _get_table_mindiv fndecl 0 42226 &disable_so_rrd_ret_timer_atl1_hw_42226
++disable_so_ext4_block_bitmap_set_fndecl_42228 ext4_block_bitmap_set fndecl 3 42228 NULL
++disable_so_select_timeout_pca9541_42231 select_timeout pca9541 0 42231 NULL
++disable_so_id_and_color_iwl_time_event_cmd_42237 id_and_color iwl_time_event_cmd 0 42237 NULL
++disable_so_map_id_down_fndecl_42241 map_id_down fndecl 0-2 42241 NULL
++disable_so_usb_sleep_music_store_fndecl_42245 usb_sleep_music_store fndecl 0-4 42245 NULL
++disable_so_ath6kl_sdio_func0_cmd52_wr_byte_fndecl_42251 ath6kl_sdio_func0_cmd52_wr_byte fndecl 0 42251 NULL
++disable_so_bitmap_and_fndecl_42267 bitmap_and fndecl 4 42267 NULL
++disable_so_tx_frame_ath_cycle_counters_42275 tx_frame ath_cycle_counters 0 42275 NULL
++disable_so_hasht_dcb_output_42279 hasht dcb_output 0 42279 NULL
++disable_so_xfs_btree_key_addr_fndecl_42282 xfs_btree_key_addr fndecl 2 42282 NULL
++disable_so_lpfc_max_scsicmpl_time_store_fndecl_42289 lpfc_max_scsicmpl_time_store fndecl 0 42289 NULL
++disable_so_ltr501_ps_write_samp_freq_fndecl_42298 ltr501_ps_write_samp_freq fndecl 0 42298 NULL
++disable_so_time_zero_perf_event_mmap_page_42309 time_zero perf_event_mmap_page 0 42309 NULL nohasharray
++disable_so_dmatest_random_fndecl_42309 dmatest_random fndecl 0 42309 &disable_so_time_zero_perf_event_mmap_page_42309
++disable_so_sm_addr_sm501_mem_42315 sm_addr sm501_mem 0 42315 NULL
++disable_so_snd_rme32_info_clockmode_control_fndecl_42323 snd_rme32_info_clockmode_control fndecl 0 42323 NULL
++disable_so_max8997_rtc_set_time_fndecl_42326 max8997_rtc_set_time fndecl 0 42326 NULL nohasharray
++disable_so_freq_ath6kl_mgmt_buff_42326 freq ath6kl_mgmt_buff 0 42326 &disable_so_max8997_rtc_set_time_fndecl_42326
++disable_so_clk_register_divider_table_fndecl_42329 clk_register_divider_table fndecl 7-6 42329 NULL
++disable_so_guid_indexes_mlx4_sriov_alias_guid_info_rec_det_42332 guid_indexes mlx4_sriov_alias_guid_info_rec_det 0 42332 NULL
++disable_so_addr_cis_cache_entry_42335 addr cis_cache_entry 0 42335 NULL
++disable_so_dma_addr_bnad_tx_vector_42337 dma_addr bnad_tx_vector 0 42337 NULL
++disable_so_mgid_index_mlx5_qp_path_42339 mgid_index mlx5_qp_path 0 42339 NULL
++disable_so_tcm_base_address_brcmf_pcie_shared_info_42357 tcm_base_address brcmf_pcie_shared_info 0 42357 NULL
++disable_so_mod_timer_fndecl_42361 mod_timer fndecl 2-0 42361 NULL
++disable_so_srpt_service_guid_vardecl_ib_srpt_c_42363 srpt_service_guid vardecl_ib_srpt.c 0 42363 NULL
++disable_so_qat_alg_ablkcipher_init_enc_fndecl_42373 qat_alg_ablkcipher_init_enc fndecl 4 42373 NULL
++disable_so_mdiv_gf100_clk_info_42375 mdiv gf100_clk_info 0 42375 NULL
++disable_so__ubh_find_next_zero_bit__fndecl_42379 _ubh_find_next_zero_bit_ fndecl 0-3-4-5 42379 NULL
++disable_so_tv_nsec_timespec_42383 tv_nsec timespec 0 42383 NULL
++disable_so_last_timestamp_iso_context_42389 last_timestamp iso_context 0 42389 NULL
++disable_so_iqaddr_fw_ri_res_cq_42408 iqaddr fw_ri_res_cq 0 42408 NULL
++disable_so_proc_loginuid_write_fndecl_42419 proc_loginuid_write fndecl 3 42419 NULL
++disable_so_mpeg_output_clock_rate_drxj_data_42421 mpeg_output_clock_rate drxj_data 0 42421 NULL
++disable_so_fref_clock_ratio_dib0090_config_42426 fref_clock_ratio dib0090_config 0 42426 NULL
++disable_so_virtnet_set_mac_address_fndecl_42429 virtnet_set_mac_address fndecl 0 42429 NULL
++disable_so_panel_pwr_delay_radeon_encoder_atom_dig_42430 panel_pwr_delay radeon_encoder_atom_dig 0 42430 NULL
++disable_so_timeo_nfs_parsed_mount_data_42431 timeo nfs_parsed_mount_data 0 42431 NULL
++disable_so_correction_snd_timer_system_private_42446 correction snd_timer_system_private 0 42446 NULL
++disable_so_intr_timer_usec_vnic_enet_config_42448 intr_timer_usec vnic_enet_config 0 42448 NULL
++disable_so_id_mISDNtimer_42453 id mISDNtimer 0 42453 NULL
++disable_so_i2c_algo_dp_aux_address_fndecl_42460 i2c_algo_dp_aux_address fndecl 2 42460 NULL
++disable_so__register_divider_fndecl_42464 _register_divider fndecl 7-6 42464 NULL
++disable_so_max8998_rtc_read_time_fndecl_42466 max8998_rtc_read_time fndecl 0 42466 NULL
++disable_so_sctp_setsockopt_paddr_thresholds_fndecl_42474 sctp_setsockopt_paddr_thresholds fndecl 3-0 42474 NULL nohasharray
++disable_so_stv0900_get_tuner_freq_fndecl_42474 stv0900_get_tuner_freq fndecl 0 42474 &disable_so_sctp_setsockopt_paddr_thresholds_fndecl_42474
++disable_so_rt2x00crypto_tx_overhead_fndecl_42475 rt2x00crypto_tx_overhead fndecl 0 42475 NULL
++disable_so_lm3533_led_delay_off_set_fndecl_42481 lm3533_led_delay_off_set fndecl 0 42481 NULL
++disable_so_time_blocked_xen_spinlock_stats_42482 time_blocked xen_spinlock_stats 0 42482 NULL
++disable_so_nat_ver_bitmap_bytesize_f2fs_checkpoint_42483 nat_ver_bitmap_bytesize f2fs_checkpoint 0 42483 NULL
++disable_so_reg_write_fndecl_42487 reg_write fndecl 0 42487 NULL
++disable_so_btrfs_insert_delayed_dir_index_fndecl_42491 btrfs_insert_delayed_dir_index fndecl 0-4-7-8 42491 NULL
++disable_so_r53_val_fc2580_freq_regs_42497 r53_val fc2580_freq_regs 0 42497 NULL
++disable_so_txerr_interrupt_mask_ath_hw_42499 txerr_interrupt_mask ath_hw 0 42499 NULL
++disable_so_avail_max_snd_pcm_runtime_42523 avail_max snd_pcm_runtime 0 42523 NULL nohasharray
++disable_so_ibx_display_interrupt_update_fndecl_42523 ibx_display_interrupt_update fndecl 3-2 42523 &disable_so_avail_max_snd_pcm_runtime_42523
++disable_so_addr_hi_freelQ_e_42531 addr_hi freelQ_e 0 42531 NULL
++disable_so_wrmsr_safe_regs_on_cpu_fndecl_42539 wrmsr_safe_regs_on_cpu fndecl 0-1 42539 NULL
++disable_so_initial_apicid_cpuinfo_x86_42542 initial_apicid cpuinfo_x86 0 42542 NULL
++disable_so_rx_ring_dma_addr_pcnet32_private_42551 rx_ring_dma_addr pcnet32_private 0 42551 NULL
++disable_so_max_sleep_time_f2fs_gc_kthread_42557 max_sleep_time f2fs_gc_kthread 0 42557 NULL nohasharray
++disable_so_addr_high_vring_dma_addr_42557 addr_high vring_dma_addr 0 42557 &disable_so_max_sleep_time_f2fs_gc_kthread_42557
++disable_so_db_rec_addr_mlx4_srq_context_42559 db_rec_addr mlx4_srq_context 0 42559 NULL
++disable_so_mmc_clock_opt_set_fndecl_42561 mmc_clock_opt_set fndecl 2 42561 NULL
++disable_so_sys_setgid16_fndecl_42562 sys_setgid16 fndecl 0-1 42562 NULL
++disable_so_command_width_atiixp_ide_timing_42566 command_width atiixp_ide_timing 0 42566 NULL
++disable_so_cgroup_addrm_files_fndecl_42568 cgroup_addrm_files fndecl 0 42568 NULL
++disable_so_nla_put_via_fndecl_42571 nla_put_via fndecl 4 42571 NULL
++disable_so_flow_get_rxhash_fndecl_42572 flow_get_rxhash fndecl 0 42572 NULL
++disable_so_ves1820_set_tv_freq_fndecl_42581 ves1820_set_tv_freq fndecl 2 42581 NULL
++disable_so_clk_calc_subtree_fndecl_42586 clk_calc_subtree fndecl 2-4 42586 NULL
++disable_so_demod_address_stb0899_config_42587 demod_address stb0899_config 0 42587 NULL
++disable_so_thash_entries_vardecl_tcp_c_42589 thash_entries vardecl_tcp.c 0 42589 NULL
++disable_so_clock_freq_ushc_data_42599 clock_freq ushc_data 0 42599 NULL
++disable_so_VSyncEnd_xtimings_42606 VSyncEnd xtimings 0 42606 NULL
++disable_so_hv_need_to_signal_fndecl_42615 hv_need_to_signal fndecl 1 42615 NULL
++disable_so_rsa_get_n_fndecl_42620 rsa_get_n fndecl 5 42620 NULL
++disable_so_pci_bus_write_config_dword_fndecl_42624 pci_bus_write_config_dword fndecl 0-2-3-4 42624 NULL
++disable_so_gen_pool_virt_to_phys_fndecl_42628 gen_pool_virt_to_phys fndecl 2-0 42628 NULL
++disable_so_brcmf_sdiod_addrprep_fndecl_42643 brcmf_sdiod_addrprep fndecl 0 42643 NULL
++disable_so_mpt_loadtime_max_sectors_vardecl_mptsas_c_42653 mpt_loadtime_max_sectors vardecl_mptsas.c 0 42653 NULL
++disable_so_iscsi_stat_tgt_attr_show_attr_last_fail_time_fndecl_42661 iscsi_stat_tgt_attr_show_attr_last_fail_time fndecl 0 42661 NULL
++disable_so_rx_antdiv_shared_phy_42665 rx_antdiv shared_phy 0 42665 NULL
++disable_so_uart_get_attr_custom_divisor_fndecl_42667 uart_get_attr_custom_divisor fndecl 0 42667 NULL nohasharray
++disable_so_bch_btree_map_nodes_recurse_fndecl_42667 bch_btree_map_nodes_recurse fndecl 0 42667 &disable_so_uart_get_attr_custom_divisor_fndecl_42667
++disable_so_dib0090_write_reg_fndecl_42668 dib0090_write_reg fndecl 3 42668 NULL nohasharray
++disable_so_hv_need_to_signal_on_read_fndecl_42668 hv_need_to_signal_on_read fndecl 1 42668 &disable_so_dib0090_write_reg_fndecl_42668
++disable_so_bs_freqcnt_cx24113_state_42672 bs_freqcnt cx24113_state 0 42672 NULL
++disable_so_netlbl_unlhsh_remove_addr6_fndecl_42673 netlbl_unlhsh_remove_addr6 fndecl 0 42673 NULL
++disable_so_authenc_esn_verify_ahash_update_done2_fndecl_42674 authenc_esn_verify_ahash_update_done2 fndecl 2 42674 NULL
++disable_so_last_time_megasas_instance_42679 last_time megasas_instance 0 42679 NULL
++disable_so_hashval1_1_rx_pkt_hdr1_42687 hashval1_1 rx_pkt_hdr1 0 42687 NULL
++disable_so_nilfs_btree_do_lookup_fndecl_42696 nilfs_btree_do_lookup fndecl 0-3 42696 NULL
++disable_so_ip_vs_create_timeout_table_fndecl_42701 ip_vs_create_timeout_table fndecl 2 42701 NULL
++disable_so_mesh_table_hash_fndecl_42703 mesh_table_hash fndecl 0 42703 NULL
++disable_so_divide_fndecl_42710 divide fndecl 1 42710 NULL
++disable_so_nilfs_btree_node_insert_fndecl_42712 nilfs_btree_node_insert fndecl 2-3 42712 NULL
++disable_so_set_div_fndecl_42720 set_div fndecl 0-4 42720 NULL
++disable_so_current_uuid_show_fndecl_42727 current_uuid_show fndecl 0 42727 NULL nohasharray
++disable_so_nfs4_decode_mp_ds_addr_fndecl_42727 nfs4_decode_mp_ds_addr fndecl 3 42727 &disable_so_current_uuid_show_fndecl_42727
++disable_so_remove_uuid_fndecl_42730 remove_uuid fndecl 0-4 42730 NULL
++disable_so_bd_list_addr_lo_bnx2i_text_request_42732 bd_list_addr_lo bnx2i_text_request 0 42732 NULL
++disable_so_pch_gbe_mac_mc_addr_list_update_fndecl_42738 pch_gbe_mac_mc_addr_list_update fndecl 4 42738 NULL
++disable_so_tbl_addr_brcms_phy_42754 tbl_addr brcms_phy 0 42754 NULL
++disable_so_addr_sch5636_data_42756 addr sch5636_data 0 42756 NULL
++disable_so_hpfa_freq_cs42l56_platform_data_42759 hpfa_freq cs42l56_platform_data 0 42759 NULL
++disable_so_fanout_demux_hash_fndecl_42764 fanout_demux_hash fndecl 0-3 42764 NULL
++disable_so_cxgb_set_mac_addr_fndecl_42780 cxgb_set_mac_addr fndecl 0 42780 NULL
++disable_so_dn_addr2asc_fndecl_42781 dn_addr2asc fndecl 1 42781 NULL
++disable_so_mt9t031_runtime_resume_fndecl_42782 mt9t031_runtime_resume fndecl 0 42782 NULL
++disable_so_nla_put_le64_fndecl_42786 nla_put_le64 fndecl 0 42786 NULL
++disable_so_dell_rbu_dmaaddr_vardecl_dell_rbu_c_42794 dell_rbu_dmaaddr vardecl_dell_rbu.c 0 42794 NULL
++disable_so_ocfs2_update_inode_atime_fndecl_42799 ocfs2_update_inode_atime fndecl 0 42799 NULL nohasharray
++disable_so_pfkey_sockaddr_fill_fndecl_42799 pfkey_sockaddr_fill fndecl 2-4 42799 &disable_so_ocfs2_update_inode_atime_fndecl_42799
++disable_so_vga_get_interruptible_fndecl_42803 vga_get_interruptible fndecl 0 42803 NULL
++disable_so_lookup_pmd_address_fndecl_42804 lookup_pmd_address fndecl 1 42804 NULL
++disable_so_i40e_set_rss_hash_opt_fndecl_42810 i40e_set_rss_hash_opt fndecl 0 42810 NULL
++disable_so_from_kuid_fndecl_42812 from_kuid fndecl 0 42812 NULL
++disable_so_resolution_snd_timer_gstatus_42814 resolution snd_timer_gstatus 0 42814 NULL
++disable_so_demod_address_cx22700_config_42828 demod_address cx22700_config 0 42828 NULL
++disable_so_mpu_start_timer_fndecl_42840 mpu_start_timer fndecl 1 42840 NULL nohasharray
++disable_so_end_point_addr_cx231xx_audio_42840 end_point_addr cx231xx_audio 0 42840 &disable_so_mpu_start_timer_fndecl_42840
++disable_so_hpwdt_change_timer_fndecl_42850 hpwdt_change_timer fndecl 1 42850 NULL nohasharray
++disable_so_host_addr_hw_cmd_42850 host_addr hw_cmd 0 42850 &disable_so_hpwdt_change_timer_fndecl_42850
++disable_so_update_gid_fndecl_42874 update_gid fndecl 3 42874 NULL
++disable_so_read_div_fndecl_42880 read_div fndecl 0 42880 NULL nohasharray
++disable_so_SYSC_setpgid_fndecl_42880 SYSC_setpgid fndecl 1-2 42880 &disable_so_read_div_fndecl_42880
++disable_so_exptime_mpath_info_42881 exptime mpath_info 0 42881 NULL
++disable_so_count_netdev_hw_addr_list_42886 count netdev_hw_addr_list 0 42886 NULL
++disable_so___sel_hash_fndecl_42890 __sel_hash fndecl 0-2-3 42890 NULL
++disable_so_cipher_rt2x00lib_crypto_42894 cipher rt2x00lib_crypto 0 42894 NULL
++disable_so___dequeue_signal_fndecl_42904 __dequeue_signal fndecl 0 42904 NULL
++disable_so_uid_dpot_data_42905 uid dpot_data 0 42905 NULL
++disable_so_tc_index_bitmap_bits_asd_seq_data_42910 tc_index_bitmap_bits asd_seq_data 0 42910 NULL
++disable_so_ablkcipher_copy_iv_fndecl_42911 ablkcipher_copy_iv fndecl 3 42911 NULL
++disable_so_pci_pm_runtime_resume_fndecl_42917 pci_pm_runtime_resume fndecl 0 42917 NULL
++disable_so_default_sclk_radeon_clock_42919 default_sclk radeon_clock 0 42919 NULL
++disable_so_register_inet6addr_notifier_fndecl_42932 register_inet6addr_notifier fndecl 0 42932 NULL nohasharray
++disable_so_e1000_rx_hash_fndecl_42932 e1000_rx_hash fndecl 2 42932 &disable_so_register_inet6addr_notifier_fndecl_42932
++disable_so_isl1208_rtc_set_time_fndecl_42933 isl1208_rtc_set_time fndecl 0 42933 NULL nohasharray
++disable_so_ringid_wmi_vring_ba_en_cmd_42933 ringid wmi_vring_ba_en_cmd 0 42933 &disable_so_isl1208_rtc_set_time_fndecl_42933 nohasharray
++disable_so_host_addr_io_accel1_cmd_42933 host_addr io_accel1_cmd 0 42933 &disable_so_ringid_wmi_vring_ba_en_cmd_42933
++disable_so_uwb_rc_dev_addr_assign_fndecl_42936 uwb_rc_dev_addr_assign fndecl 0 42936 NULL
++disable_so_address_vme_bus_error_42937 address vme_bus_error 0 42937 NULL nohasharray
++disable_so_cma_bind_addr_fndecl_42937 cma_bind_addr fndecl 0 42937 &disable_so_address_vme_bus_error_42937
++disable_so_cyapa_gen5_set_interval_time_fndecl_42941 cyapa_gen5_set_interval_time fndecl 0-3 42941 NULL
++disable_so_ecx_tss_segment_32_42952 ecx tss_segment_32 0 42952 NULL
++disable_so_percentage_divider_radeon_atom_ss_42955 percentage_divider radeon_atom_ss 0 42955 NULL
++disable_so_timeout_sg_fd_42956 timeout sg_fd 0 42956 NULL
++disable_so_ftdi_2232h_baud_base_to_divisor_fndecl_42957 ftdi_2232h_baud_base_to_divisor fndecl 0-1-2 42957 NULL
++disable_so_mcryptd_hash_update_fndecl_42959 mcryptd_hash_update fndecl 2 42959 NULL
++disable_so_iqaddr_csio_iq_params_42960 iqaddr csio_iq_params 0 42960 NULL
++disable_so_head_wb_addr_i40e_hmc_obj_txq_42977 head_wb_addr i40e_hmc_obj_txq 0 42977 NULL nohasharray
++disable_so_written_btree_42977 written btree 0 42977 &disable_so_head_wb_addr_i40e_hmc_obj_txq_42977
++disable_so___btrfs_update_delayed_inode_fndecl_42987 __btrfs_update_delayed_inode fndecl 0 42987 NULL
++disable_so_af9005_fe_sleep_fndecl_42988 af9005_fe_sleep fndecl 0 42988 NULL nohasharray
++disable_so_counter_address_p4_counter_binding_42988 counter_address p4_counter_binding 0 42988 &disable_so_af9005_fe_sleep_fndecl_42988
++disable_so_alt_timeout_ib_qp_attr_42989 alt_timeout ib_qp_attr 0 42989 NULL
++disable_so_db_record_addr_mlx5_cq_context_43002 db_record_addr mlx5_cq_context 0 43002 NULL nohasharray
++disable_so_rhashtable_insert_rehash_fndecl_43002 rhashtable_insert_rehash fndecl 0 43002 &disable_so_db_record_addr_mlx5_cq_context_43002
++disable_so_zd1201_set_mac_address_fndecl_43003 zd1201_set_mac_address fndecl 0 43003 NULL
++disable_so_scs_init_hss_address_fndecl_43016 scs_init_hss_address fndecl 0 43016 NULL
++disable_so_hash_fndecl_43020 hash fndecl 0 43020 NULL
++disable_so_hpi_tuner_get_hd_radio_signal_blend_fndecl_43025 hpi_tuner_get_hd_radio_signal_blend fndecl 0-1 43025 NULL
++disable_so_rt_runtime_rt_rq_43033 rt_runtime rt_rq 0 43033 NULL
++disable_so_dbi_bw_timer_mipi_config_43043 dbi_bw_timer mipi_config 0 43043 NULL
++disable_so_bch_btree_op_init_fndecl_43045 bch_btree_op_init fndecl 2 43045 NULL
++disable_so_ctl_mce_bank_43048 ctl mce_bank 0 43048 NULL
++disable_so_io_addr_ips_ha_43051 io_addr ips_ha 0 43051 NULL
++disable_so_ucode_beacon_time_iwl_priv_43063 ucode_beacon_time iwl_priv 0 43063 NULL
++disable_so_fast_clip_ctrl_delay_s_cfg_agc_43064 fast_clip_ctrl_delay s_cfg_agc 0 43064 NULL
++disable_so_read_interrupt_status_fndecl_43075 read_interrupt_status fndecl 0 43075 NULL
++disable_so_suspend_time_nv04_timer_priv_43078 suspend_time nv04_timer_priv 0 43078 NULL
++disable_so_nl80211_send_mlme_timeout_fndecl_43081 nl80211_send_mlme_timeout fndecl 5 43081 NULL
++disable_so_xfs_uuid_table_size_vardecl_xfs_mount_c_43090 xfs_uuid_table_size vardecl_xfs_mount.c 0 43090 NULL
++disable_so_bitmap_allocate_region_fndecl_43093 bitmap_allocate_region fndecl 2-3 43093 NULL
++disable_so_timeouts_show_fndecl_43114 timeouts_show fndecl 0 43114 NULL
++disable_so_lm8323_pwm_store_time_fndecl_43123 lm8323_pwm_store_time fndecl 0 43123 NULL nohasharray
++disable_so_crypto_register_instance_fndecl_43123 crypto_register_instance fndecl 0 43123 &disable_so_lm8323_pwm_store_time_fndecl_43123
++disable_so_acpi_map_vaddr_lookup_fndecl_43126 acpi_map_vaddr_lookup fndecl 1-2 43126 NULL nohasharray
++disable_so_bitclk_freq_fsl_ssi_private_43126 bitclk_freq fsl_ssi_private 0 43126 &disable_so_acpi_map_vaddr_lookup_fndecl_43126
++disable_so_retranscount_nes_timer_entry_43129 retranscount nes_timer_entry 0 43129 NULL
++disable_so_driver_timestamp_qla8044_minidump_template_hdr_43138 driver_timestamp qla8044_minidump_template_hdr 0 43138 NULL
++disable_so_rtl8187_iowrite_async_fndecl_43147 rtl8187_iowrite_async fndecl 4-2 43147 NULL
++disable_so_gcm_hash_crypt_remain_continue_fndecl_43164 gcm_hash_crypt_remain_continue fndecl 0 43164 NULL
++disable_so_timeout_usbdevfs_ctrltransfer_43171 timeout usbdevfs_ctrltransfer 0 43171 NULL
++disable_so_addr_snd_ac97_43179 addr snd_ac97 0 43179 NULL
++disable_so_snd_timer_user_start_fndecl_43188 snd_timer_user_start fndecl 0 43188 NULL
++disable_so_div_f0_pll_values_43197 div_f0 pll_values 0 43197 NULL
++disable_so_tx_watchdog_timeout_conf_tx_settings_43198 tx_watchdog_timeout conf_tx_settings 0 43198 NULL
++disable_so_demod_address_stv0297_config_43206 demod_address stv0297_config 0 43206 NULL nohasharray
++disable_so_stv090x_write_reg_fndecl_43206 stv090x_write_reg fndecl 3-0 43206 &disable_so_demod_address_stv0297_config_43206
++disable_so_atomic64_sub_return_fndecl_43214 atomic64_sub_return fndecl 0-1 43214 NULL
++disable_so_select_addr_2_qla8044_minidump_entry_rdmux2_43220 select_addr_2 qla8044_minidump_entry_rdmux2 0 43220 NULL
++disable_so_pixel_clock_radeon_encoder_43221 pixel_clock radeon_encoder 0 43221 NULL
++disable_so_rdmsr_safe_on_cpu_fndecl_43222 rdmsr_safe_on_cpu fndecl 0-1 43222 NULL
++disable_so_adav80x_set_dac_clock_fndecl_43226 adav80x_set_dac_clock fndecl 2 43226 NULL
++disable_so_rc5t583_rtc_read_time_fndecl_43238 rc5t583_rtc_read_time fndecl 0 43238 NULL nohasharray
++disable_so_bitmap_zero_fndecl_43238 bitmap_zero fndecl 2 43238 &disable_so_rc5t583_rtc_read_time_fndecl_43238
++disable_so_vid_from_reg_fndecl_43258 vid_from_reg fndecl 0-1 43258 NULL
++disable_so_page_dp83640_clock_43262 page dp83640_clock 0 43262 NULL
++disable_so_mthca_SW2HW_SRQ_fndecl_43263 mthca_SW2HW_SRQ fndecl 0-3 43263 NULL
++disable_so_tea5777_freq_to_v4l2_freq_fndecl_43267 tea5777_freq_to_v4l2_freq fndecl 0-2 43267 NULL
++disable_so_addr_lo_eth_rx_bd_43268 addr_lo eth_rx_bd 0 43268 NULL
++disable_so_timeout_nf_conntrack_expect_policy_43269 timeout nf_conntrack_expect_policy 0 43269 NULL
++disable_so_read_addr___mux_43284 read_addr __mux 0 43284 NULL
++disable_so_start_address___osdv2_cdb_addr_len_43285 start_address __osdv2_cdb_addr_len 0 43285 NULL
++disable_so_frac_bot_pll_div_43287 frac_bot pll_div 0 43287 NULL
++disable_so_batadv_bitmap_shift_left_fndecl_43296 batadv_bitmap_shift_left fndecl 2 43296 NULL
++disable_so_btrfs_timespec_sec_fndecl_43304 btrfs_timespec_sec fndecl 0 43304 NULL
++disable_so_atime_cifs_unix_set_info_args_43311 atime cifs_unix_set_info_args 0 43311 NULL
++disable_so_id_bitmap_port_adt_elem_43312 id bitmap_port_adt_elem 0 43312 NULL
++disable_so_hsize_std_timing_43315 hsize std_timing 0 43315 NULL
++disable_so_addr_wusb_dev_43323 addr wusb_dev 0 43323 NULL
++disable_so_dma_addr_zynqmp_qspi_43329 dma_addr zynqmp_qspi 0 43329 NULL
++disable_so_flash_timeout_max77693_sub_led_43338 flash_timeout max77693_sub_led 0 43338 NULL nohasharray
++disable_so_save_restore_gpu_addr_radeon_rlc_43338 save_restore_gpu_addr radeon_rlc 0 43338 &disable_so_flash_timeout_max77693_sub_led_43338
++disable_so_cypress_get_mclk_frequency_ratio_fndecl_43339 cypress_get_mclk_frequency_ratio fndecl 0-2 43339 NULL
++disable_so_running_clock_fndecl_43341 running_clock fndecl 0 43341 NULL
++disable_so_snd_echo_clock_source_info_fndecl_43348 snd_echo_clock_source_info fndecl 0 43348 NULL
++disable_so_random_id_operand_ib_cm_43350 random_id_operand ib_cm 0 43350 NULL
++disable_so_il3945_build_tx_cmd_hwcrypto_fndecl_43368 il3945_build_tx_cmd_hwcrypto fndecl 5 43368 NULL
++disable_so_regcache_lzo_decompress_cache_block_fndecl_43370 regcache_lzo_decompress_cache_block fndecl 0 43370 NULL
++disable_so_rv6xx_memory_clock_entry_set_feedback_divider_fndecl_43374 rv6xx_memory_clock_entry_set_feedback_divider fndecl 3 43374 NULL
++disable_so_timer_expires_rts51x_chip_43381 timer_expires rts51x_chip 0 43381 NULL
++disable_so_bond_alb_set_mac_address_fndecl_43392 bond_alb_set_mac_address fndecl 0 43392 NULL
++disable_so_write_leasetime_fndecl_43394 write_leasetime fndecl 0 43394 NULL
++disable_so_ftdi_232am_baud_to_divisor_fndecl_43399 ftdi_232am_baud_to_divisor fndecl 0-1 43399 NULL
++disable_so_jiffies_be_aic_obj_43400 jiffies be_aic_obj 0 43400 NULL
++disable_so_timer_jiffies_tvec_base_43403 timer_jiffies tvec_base 0 43403 NULL
++disable_so___ip6addrlbl_add_fndecl_43404 __ip6addrlbl_add fndecl 0 43404 NULL
++disable_so_sd_ctime_stat_data_v1_43407 sd_ctime stat_data_v1 0 43407 NULL
++disable_so_check_timers_list_fndecl_43411 check_timers_list fndecl 0-3 43411 NULL
++disable_so_addr2_dir_table_slot_43416 addr2 dir_table_slot 0 43416 NULL
++disable_so_bch_btree_map_nodes_fndecl_43426 bch_btree_map_nodes fndecl 0 43426 NULL
++disable_so_burst_bclkdiv_tlv320dac33_priv_43428 burst_bclkdiv tlv320dac33_priv 0 43428 NULL
++disable_so_cx24116_read_signal_strength_fndecl_43436 cx24116_read_signal_strength fndecl 0 43436 NULL
++disable_so_xferq_addr_lo_fcoe_kwqe_conn_offload2_43439 xferq_addr_lo fcoe_kwqe_conn_offload2 0 43439 NULL
++disable_so_timeout_bfa_timer_s_43448 timeout bfa_timer_s 0 43448 NULL
++disable_so_ocfs2_wait_for_mask_interruptible_fndecl_43456 ocfs2_wait_for_mask_interruptible fndecl 0 43456 NULL
++disable_so_stream_timeout_nf_ct_gre_43468 stream_timeout nf_ct_gre 0 43468 NULL
++disable_so_sample_div_st_rc_device_43474 sample_div st_rc_device 0 43474 NULL
++disable_so_crypto_shash_finup_fndecl_43475 crypto_shash_finup fndecl 0-3 43475 NULL
++disable_so_current_frequency_lg216x_state_43480 current_frequency lg216x_state 0 43480 NULL
++disable_so_error_sha1_hash_ctx_43486 error sha1_hash_ctx 0 43486 NULL
++disable_so_link_up_time_swStat_43487 link_up_time swStat 0 43487 NULL
++disable_so_qce_ablkcipher_setkey_fndecl_43494 qce_ablkcipher_setkey fndecl 0-3 43494 NULL
++disable_so_timeout_msec_TAG_TW_Lock_43496 timeout_msec TAG_TW_Lock 0 43496 NULL
++disable_so_mcs7830_hif_get_mac_address_fndecl_43507 mcs7830_hif_get_mac_address fndecl 0 43507 NULL
++disable_so_show_fan_time_fndecl_43512 show_fan_time fndecl 0 43512 NULL
++disable_so_x25_display_timer_fndecl_43519 x25_display_timer fndecl 0 43519 NULL
++disable_so_address_m920x_inits_43524 address m920x_inits 0 43524 NULL
++disable_so_msr_extra_reg_43525 msr extra_reg 0 43525 NULL
++disable_so_hashm_nv50_disp_mthd_v1_43528 hashm nv50_disp_mthd_v1 0 43528 NULL
++disable_so_get_dvbt_signal_to_noise_fndecl_43531 get_dvbt_signal_to_noise fndecl 0 43531 NULL
++disable_so_snd_seq_oss_timer_start_fndecl_43533 snd_seq_oss_timer_start fndecl 0 43533 NULL
++disable_so_ath5k_hw_register_timeout_fndecl_43537 ath5k_hw_register_timeout fndecl 0-3-4 43537 NULL
++disable_so_slave_addr_intel_sdvo_43549 slave_addr intel_sdvo 0 43549 NULL
++disable_so_buf_addr_rocker_desc_43555 buf_addr rocker_desc 0 43555 NULL
++disable_so_bCSourceID_uac_clock_multiplier_descriptor_43558 bCSourceID uac_clock_multiplier_descriptor 0 43558 NULL nohasharray
++disable_so_scsi_reset_delay_adveep_38C1600_config_43558 scsi_reset_delay adveep_38C1600_config 0 43558 &disable_so_bCSourceID_uac_clock_multiplier_descriptor_43558 nohasharray
++disable_so_nla_put_u8_fndecl_43558 nla_put_u8 fndecl 0-3 43558 &disable_so_scsi_reset_delay_adveep_38C1600_config_43558
++disable_so_udp4_portaddr_hash_fndecl_43560 udp4_portaddr_hash fndecl 0-2-3 43560 NULL
++disable_so_port_clock_intel_crtc_state_43564 port_clock intel_crtc_state 0 43564 NULL
++disable_so_cpufreq_update_policy_fndecl_43580 cpufreq_update_policy fndecl 0-1 43580 NULL nohasharray
++disable_so_crypto_rfc4106_setauthsize_fndecl_43580 crypto_rfc4106_setauthsize fndecl 2 43580 &disable_so_cpufreq_update_policy_fndecl_43580
++disable_so_pm_schedule_suspend_fndecl_43585 pm_schedule_suspend fndecl 2-0 43585 NULL
++disable_so_HSyncStart_xtimings_43588 HSyncStart xtimings 0 43588 NULL
++disable_so_write_seq_tcp_sock_43590 write_seq tcp_sock 0 43590 NULL
++disable_so_orion_spi_50mhz_ac_timing_erratum_fndecl_43600 orion_spi_50mhz_ac_timing_erratum fndecl 2 43600 NULL
++disable_so_set_clock_vml_sys_43602 set_clock vml_sys 2 43602 NULL
++disable_so_sample_to_timespec_fndecl_43603 sample_to_timespec fndecl 2-1 43603 NULL
++disable_so_ib_find_gid_fndecl_43614 ib_find_gid fndecl 0 43614 NULL
++disable_so_ath9k_hw_set_sifs_time_fndecl_43616 ath9k_hw_set_sifs_time fndecl 2 43616 NULL
++disable_so_snd_als4000_set_addr_fndecl_43620 snd_als4000_set_addr fndecl 1 43620 NULL
++disable_so_dma_addr_as102_dev_t_43627 dma_addr as102_dev_t 0 43627 NULL
++disable_so_gcm_hash_crypt_remain_done_fndecl_43636 gcm_hash_crypt_remain_done fndecl 2 43636 NULL
++disable_so_msm6242_read_time_fndecl_43640 msm6242_read_time fndecl 0 43640 NULL
++disable_so_last_tick_timer_local_info_43641 last_tick_timer local_info 0 43641 NULL
++disable_so_guid_show_fndecl_43648 guid_show fndecl 0 43648 NULL
++disable_so_key_set_timeout_fndecl_43649 key_set_timeout fndecl 2 43649 NULL
++disable_so_abx80x_rtc_read_time_fndecl_43656 abx80x_rtc_read_time fndecl 0 43656 NULL
++disable_so_freq_wmi_ch_info_ev_arg_43659 freq wmi_ch_info_ev_arg 0 43659 NULL
++disable_so___delayacct_blkio_ticks_fndecl_43660 __delayacct_blkio_ticks fndecl 0 43660 NULL
++disable_so_base_dwell_time_conf_sched_scan_settings_43662 base_dwell_time conf_sched_scan_settings 0 43662 NULL
++disable_so_ps_upsd_max_sptime_read_fndecl_43665 ps_upsd_max_sptime_read fndecl 3-0 43665 NULL
++disable_so_sis190_get_mac_addr_fndecl_43671 sis190_get_mac_addr fndecl 0 43671 NULL
++disable_so_pll_loopdiv_dibx090p_best_adc_43673 pll_loopdiv dibx090p_best_adc 0 43673 NULL
++disable_so_first_uid_gid_extent_43687 first uid_gid_extent 0 43687 NULL
++disable_so_des2_idmac_desc_64addr_43704 des2 idmac_desc_64addr 0 43704 NULL
++disable_so_irq_get_irq_data_fndecl_43708 irq_get_irq_data fndecl 1 43708 NULL
++disable_so_mask_mlx4_bitmap_43716 mask mlx4_bitmap 0 43716 NULL
++disable_so_time_stamp_ixgbe_tx_buffer_43717 time_stamp ixgbe_tx_buffer 0 43717 NULL
++disable_so_tx_frequency_wl1273_device_43727 tx_frequency wl1273_device 0 43727 NULL
++disable_so_divider_round_rate_fndecl_43731 divider_round_rate fndecl 2-0-5 43731 NULL
++disable_so_delay_bfa_iocfc_intr_attr_s_43734 delay bfa_iocfc_intr_attr_s 0 43734 NULL
++disable_so_dccp_elapsed_time_len_fndecl_43735 dccp_elapsed_time_len fndecl 0 43735 NULL
++disable_so_uwb_rc_addr_set_fndecl_43736 uwb_rc_addr_set fndecl 0 43736 NULL
++disable_so_add_delayed_data_ref_fndecl_43738 add_delayed_data_ref fndecl 10-12-5-6-7-8-9 43738 NULL
++disable_so_double_bit_error_detect_fndecl_43740 double_bit_error_detect fndecl 4 43740 NULL
++disable_so_pc_clock_gettime_fndecl_43750 pc_clock_gettime fndecl 1 43750 NULL
++disable_so_ts_tgid_owner_gru_thread_state_43760 ts_tgid_owner gru_thread_state 0 43760 NULL
++disable_so_hpet_set_periodic_freq_fndecl_43764 hpet_set_periodic_freq fndecl 1 43764 NULL
++disable_so___vmw_piter_sg_addr_fndecl_43770 __vmw_piter_sg_addr fndecl 0 43770 NULL
++disable_so_ipmi_validate_addr_fndecl_43771 ipmi_validate_addr fndecl 2 43771 NULL
++disable_so_delay_fb_deferred_io_43773 delay fb_deferred_io 0 43773 NULL
++disable_so_fixed_mtrr_addr_to_seg_fndecl_43774 fixed_mtrr_addr_to_seg fndecl 1 43774 NULL nohasharray
++disable_so___bitmap_equal_fndecl_43774 __bitmap_equal fndecl 3 43774 &disable_so_fixed_mtrr_addr_to_seg_fndecl_43774
++disable_so_igb_check_for_bit_pf_fndecl_43775 igb_check_for_bit_pf fndecl 2 43775 NULL
++disable_so_led_override_timeoff_qib_pportdata_43779 led_override_timeoff qib_pportdata 0 43779 NULL
++disable_so_wd_timeout_il_cfg_43781 wd_timeout il_cfg 0 43781 NULL
++disable_so_addr_kvm_io_range_43786 addr kvm_io_range 0 43786 NULL
++disable_so_sleep_millisecs_show_fndecl_43792 sleep_millisecs_show fndecl 0 43792 NULL
++disable_so_rpc_set_queue_timer_fndecl_43797 rpc_set_queue_timer fndecl 2 43797 NULL
++disable_so_ksz9031_center_flp_timing_fndecl_43804 ksz9031_center_flp_timing fndecl 0 43804 NULL
++disable_so_kstrtoull_from_user_fndecl_43809 kstrtoull_from_user fndecl 2 43809 NULL
++disable_so_numa_get_avg_runtime_fndecl_43810 numa_get_avg_runtime fndecl 0 43810 NULL
++disable_so_max77693_led_flash_timeout_set_fndecl_43811 max77693_led_flash_timeout_set fndecl 2 43811 NULL
++disable_so_mlx4_reset_roce_port_gids_fndecl_43816 mlx4_reset_roce_port_gids fndecl 0-2-3 43816 NULL
++disable_so_interrupt_level_vardecl_fdomain_c_43820 interrupt_level vardecl_fdomain.c 0 43820 NULL nohasharray
++disable_so_crypto_ahash_finup_fndecl_43820 crypto_ahash_finup fndecl 0 43820 &disable_so_interrupt_level_vardecl_fdomain_c_43820
++disable_so_block_bitmap_ext4_new_group_data_43822 block_bitmap ext4_new_group_data 0 43822 NULL
++disable_so_timer_stats_update_stats_fndecl_43829 timer_stats_update_stats fndecl 2 43829 NULL
++disable_so___nilfs_btree_get_block_fndecl_43845 __nilfs_btree_get_block fndecl 0-2 43845 NULL
++disable_so_wait_on_bit_lock_io_fndecl_43852 wait_on_bit_lock_io fndecl 0 43852 NULL
++disable_so_authenc_esn_geniv_ahash_update_done_fndecl_43855 authenc_esn_geniv_ahash_update_done fndecl 2 43855 NULL
++disable_so_pre_event_timeout_vardecl_sequencer_c_43856 pre_event_timeout vardecl_sequencer.c 0 43856 NULL nohasharray
++disable_so_last_rx_time_net_local_43856 last_rx_time net_local 0 43856 &disable_so_pre_event_timeout_vardecl_sequencer_c_43856
++disable_so_run_delayed_tree_ref_fndecl_43857 run_delayed_tree_ref fndecl 0 43857 NULL
++disable_so_radio_addr_saa7134_board_43862 radio_addr saa7134_board 0 43862 NULL
++disable_so_hor_total_via_display_timing_43866 hor_total via_display_timing 0 43866 NULL
++disable_so_mem_addr_pch_dma_desc_regs_43867 mem_addr pch_dma_desc_regs 0 43867 NULL
++disable_so_addr_Vmxnet3_TxDesc_43868 addr Vmxnet3_TxDesc 0 43868 NULL
++disable_so_set_ras_addr_fndecl_43869 set_ras_addr fndecl 4 43869 NULL
++disable_so_cpuidle_register_fndecl_43887 cpuidle_register fndecl 0 43887 NULL
++disable_so_start_seq_tcp_sack_block_43898 start_seq tcp_sack_block 0 43898 NULL
++disable_so_seq_default_timer_subdevice_vardecl_43912 seq_default_timer_subdevice vardecl 0 43912 NULL
++disable_so_pci_bus_update_busn_res_end_fndecl_43918 pci_bus_update_busn_res_end fndecl 2-0 43918 NULL
++disable_so_qdisc_watchdog_schedule_ns_fndecl_43926 qdisc_watchdog_schedule_ns fndecl 2 43926 NULL
++disable_so_sys_timer_create_fndecl_43937 sys_timer_create fndecl 1 43937 NULL
++disable_so_atmel_spi_runtime_resume_fndecl_43938 atmel_spi_runtime_resume fndecl 0 43938 NULL nohasharray
++disable_so_zd1201_set_freq_fndecl_43938 zd1201_set_freq fndecl 0 43938 &disable_so_atmel_spi_runtime_resume_fndecl_43938
++disable_so_gid_fuse_setattr_in_43939 gid fuse_setattr_in 0 43939 NULL
++disable_so_bit_putcs_aligned_fndecl_43966 bit_putcs_aligned fndecl 5-6-7-8 43966 NULL
++disable_so_log_mc_hash_sz_mlx4_init_hca_param_43973 log_mc_hash_sz mlx4_init_hca_param 0 43973 NULL
++disable_so_igb_write_8bit_ctrl_reg_fndecl_43984 igb_write_8bit_ctrl_reg fndecl 2 43984 NULL
++disable_so_r50_val_fc2580_freq_regs_43992 r50_val fc2580_freq_regs 0 43992 NULL
++disable_so_ccp_aes_xts_encrypt_fndecl_43996 ccp_aes_xts_encrypt fndecl 0 43996 NULL
++disable_so_tty_unregister_device_fndecl_44000 tty_unregister_device fndecl 2 44000 NULL
++disable_so_bus_addr_vnic_dev_bar_44006 bus_addr vnic_dev_bar 0 44006 NULL
++disable_so_pcf8523_rtc_set_time_fndecl_44007 pcf8523_rtc_set_time fndecl 0 44007 NULL
++disable_so_dq_hash_mask_vardecl_dquot_c_44015 dq_hash_mask vardecl_dquot.c 0 44015 NULL
++disable_so_device_addr_lm87_tx_hdr_44016 device_addr lm87_tx_hdr 0 44016 NULL
++disable_so__kstrtoull_fndecl_44018 _kstrtoull fndecl 0 44018 NULL
++disable_so_brcmf_sdiod_set_sbaddr_window_fndecl_44019 brcmf_sdiod_set_sbaddr_window fndecl 0-2 44019 NULL
++disable_so_drbd_adm_new_c_uuid_fndecl_44035 drbd_adm_new_c_uuid fndecl 0 44035 NULL
++disable_so_signal_hostap_80211_rx_status_44041 signal hostap_80211_rx_status 0 44041 NULL
++disable_so_enqueue_time_codel_skb_cb_44046 enqueue_time codel_skb_cb 0 44046 NULL
++disable_so_conv_clk_and_div_n_pcr_ops_44049 conv_clk_and_div_n pcr_ops 0-1 44049 NULL
++disable_so_ep93xx_spi_calc_divisors_fndecl_44051 ep93xx_spi_calc_divisors fndecl 0-2 44051 NULL
++disable_so_j_trans_start_time_reiserfs_journal_44058 j_trans_start_time reiserfs_journal 0 44058 NULL
++disable_so_cvt_kvaddr_fndecl_44079 cvt_kvaddr fndecl 0 44079 NULL
++disable_so_tm_mon_rtc_time_44080 tm_mon rtc_time 0 44080 NULL
++disable_so_uart_get_divisor_fndecl_44085 uart_get_divisor fndecl 0-2 44085 NULL
++disable_so_spn_obj_sockaddr_pn_44086 spn_obj sockaddr_pn 0 44086 NULL
++disable_so_cur_start_addr_sisusb_usb_data_44091 cur_start_addr sisusb_usb_data 0 44091 NULL nohasharray
++disable_so___vma_address_fndecl_44091 __vma_address fndecl 0 44091 &disable_so_cur_start_addr_sisusb_usb_data_44091
++disable_so_read_systime_fm10k_mac_ops_44092 read_systime fm10k_mac_ops 0 44092 NULL
++disable_so_nfsd_map_name_to_gid_fndecl_44096 nfsd_map_name_to_gid fndecl 0 44096 NULL
++disable_so_mthca_cmd_box_fndecl_44108 mthca_cmd_box fndecl 7-0-2-4-3 44108 NULL nohasharray
++disable_so_chv_clock_fndecl_44108 chv_clock fndecl 1 44108 &disable_so_mthca_cmd_box_fndecl_44108
++disable_so_ironlake_pch_transcoder_set_timings_fndecl_44115 ironlake_pch_transcoder_set_timings fndecl 2 44115 NULL
++disable_so___br_ip4_hash_fndecl_44134 __br_ip4_hash fndecl 0 44134 NULL
++disable_so_divider_recalc_rate_fndecl_44140 divider_recalc_rate fndecl 3-0-2 44140 NULL nohasharray
++disable_so_reg_id_res_gid_44140 reg_id res_gid 0 44140 &disable_so_divider_recalc_rate_fndecl_44140
++disable_so_dev_rst_time_qlcnic_adapter_44150 dev_rst_time qlcnic_adapter 0 44150 NULL
++disable_so_nsec_ptp_clock_time_44160 nsec ptp_clock_time 0 44160 NULL
++disable_so_node_count_hfs_btree_44162 node_count hfs_btree 0 44162 NULL
++disable_so_iscsit_na_dataout_timeout_fndecl_44167 iscsit_na_dataout_timeout fndecl 2-0 44167 NULL nohasharray
++disable_so_idletimer_ax25_info_struct_44167 idletimer ax25_info_struct 0 44167 &disable_so_iscsit_na_dataout_timeout_fndecl_44167
++disable_so_btrfs_delayed_qgroup_accounting_fndecl_44171 btrfs_delayed_qgroup_accounting fndecl 0 44171 NULL
++disable_so_t4_wr_mbox_timeout_fndecl_44177 t4_wr_mbox_timeout fndecl 2 44177 NULL
++disable_so_db_addr_mlx4_ib_create_qp_44182 db_addr mlx4_ib_create_qp 0 44182 NULL nohasharray
++disable_so_mxl111sf_streaming_ctrl_atsc_mh_fndecl_44182 mxl111sf_streaming_ctrl_atsc_mh fndecl 0 44182 &disable_so_db_addr_mlx4_ib_create_qp_44182
++disable_so_ipath_pkt_delay_fndecl_44185 ipath_pkt_delay fndecl 0-1-2-3 44185 NULL nohasharray
++disable_so_cycle_state_xhci_ring_44185 cycle_state xhci_ring 0 44185 &disable_so_ipath_pkt_delay_fndecl_44185
++disable_so_phys_dma_addr_r852_device_44187 phys_dma_addr r852_device 0 44187 NULL
++disable_so_nopin_response_timeout_iscsi_node_attrib_44188 nopin_response_timeout iscsi_node_attrib 0 44188 NULL
++disable_so_lkey_mthca_resize_cq_44197 lkey mthca_resize_cq 0 44197 NULL
++disable_so_rx_timeout_netdev_private_44200 rx_timeout netdev_private 0 44200 NULL
++disable_so_naddr_qib_user_sdma_pkt_44203 naddr qib_user_sdma_pkt 0 44203 NULL
++disable_so_block_to_cpu_fndecl_44212 block_to_cpu fndecl 0 44212 NULL
++disable_so_read_tail_n_tty_data_44226 read_tail n_tty_data 0 44226 NULL
++disable_so_bssidx_rt2x00lib_crypto_44239 bssidx rt2x00lib_crypto 0 44239 NULL
++disable_so_number_pci_bus_44243 number pci_bus 0 44243 NULL
++disable_so_watchdog_timeout_w83793_data_44253 watchdog_timeout w83793_data 0 44253 NULL
++disable_so_cz_clock_intel_rps_ei_44276 cz_clock intel_rps_ei 0 44276 NULL
++disable_so_proc_gid_map_open_fndecl_44293 proc_gid_map_open fndecl 0 44293 NULL
++disable_so_r2d_val_fc2580_freq_regs_44295 r2d_val fc2580_freq_regs 0 44295 NULL
++disable_so_wm8510_set_dai_clkdiv_fndecl_44299 wm8510_set_dai_clkdiv fndecl 3 44299 NULL
++disable_so_otime_jfs_inode_info_44300 otime jfs_inode_info 0 44300 NULL
++disable_so_rss_hash_be_rx_compl_info_44306 rss_hash be_rx_compl_info 0 44306 NULL
++disable_so_radio_tx_freq_vivid_dev_44308 radio_tx_freq vivid_dev 0 44308 NULL
++disable_so_smbhash_fndecl_44311 smbhash fndecl 0 44311 NULL
++disable_so_nla_put_in6_addr_fndecl_44317 nla_put_in6_addr fndecl 0 44317 NULL
++disable_so_fll_ref_freq__fll_div_44318 fll_ref_freq _fll_div 0 44318 NULL
++disable_so_prandom_bytes_state_fndecl_44332 prandom_bytes_state fndecl 3 44332 NULL
++disable_so_base_dma_addr_srp_map_state_44343 base_dma_addr srp_map_state 0 44343 NULL
++disable_so_addr_intel_plane_error_state_44366 addr intel_plane_error_state 0 44366 NULL
++disable_so_start_addr_acpi_memory_info_44372 start_addr acpi_memory_info 0 44372 NULL
++disable_so_bitmap_cpg_ocfs2_super_44373 bitmap_cpg ocfs2_super 0 44373 NULL
++disable_so_interval_zd_usb_interrupt_44381 interval zd_usb_interrupt 0 44381 NULL
++disable_so_neigh_proc_dointvec_ms_jiffies_fndecl_44384 neigh_proc_dointvec_ms_jiffies fndecl 0 44384 NULL
++disable_so_fsl_esai_divisor_cal_fndecl_44386 fsl_esai_divisor_cal fndecl 5-3 44386 NULL
++disable_so_sync_single_for_device_dma_map_ops_44393 sync_single_for_device dma_map_ops 2-3 44393 NULL
++disable_so_cl_lease_time_nfs_client_44400 cl_lease_time nfs_client 0 44400 NULL
++disable_so_asd_get_user_sas_addr_fndecl_44401 asd_get_user_sas_addr fndecl 0 44401 NULL
++disable_so_ss_tss_segment_16_44415 ss tss_segment_16 0 44415 NULL
++disable_so_ave_beacon_signal_ieee80211_if_managed_44440 ave_beacon_signal ieee80211_if_managed 0 44440 NULL
++disable_so_smsc911x_hash_fndecl_44443 smsc911x_hash fndecl 0 44443 NULL
++disable_so_flow_hash_from_keys_fndecl_44444 flow_hash_from_keys fndecl 0 44444 NULL
++disable_so_addr_vt8231_data_44455 addr vt8231_data 0 44455 NULL
++disable_so_drm_fixp_mul_fndecl_44461 drm_fixp_mul fndecl 0-1-2 44461 NULL
++disable_so_bind_evtchn_to_cpu_fndecl_44464 bind_evtchn_to_cpu fndecl 2-1 44464 NULL
++disable_so_rdma_set_reuseaddr_fndecl_44469 rdma_set_reuseaddr fndecl 0 44469 NULL
++disable_so_vx_calc_clock_from_freq_fndecl_44479 vx_calc_clock_from_freq fndecl 0-2 44479 NULL
++disable_so_rs_conn_addr_rds_sock_44482 rs_conn_addr rds_sock 0 44482 NULL
++disable_so_decode_attr_time_delta_fndecl_44484 decode_attr_time_delta fndecl 0 44484 NULL nohasharray
++disable_so_xfs_btree_get_bufs_fndecl_44484 xfs_btree_get_bufs fndecl 3-4 44484 &disable_so_decode_attr_time_delta_fndecl_44484
++disable_so_zd_chip_set_multicast_hash_fndecl_44491 zd_chip_set_multicast_hash fndecl 0 44491 NULL
++disable_so_write32_async_rtl_io_44499 write32_async rtl_io 2-3 44499 NULL
++disable_so_tcf_hashinfo_init_fndecl_44504 tcf_hashinfo_init fndecl 2 44504 NULL
++disable_so_buffer_addr_atl1c_rx_free_desc_44505 buffer_addr atl1c_rx_free_desc 0 44505 NULL
++disable_so_rqq_addr_hi_addr_ctrl_blk_44511 rqq_addr_hi addr_ctrl_blk 0 44511 NULL
++disable_so_max_pll_spi_speed_pll_clock_map_44513 max_pll_spi_speed pll_clock_map 0 44513 NULL
++disable_so_read_addr_qla8xxx_minidump_entry_mux_44516 read_addr qla8xxx_minidump_entry_mux 0 44516 NULL
++disable_so_abx500_set_register_interruptible_fndecl_44521 abx500_set_register_interruptible fndecl 0-4 44521 NULL
++disable_so_range_startk_var_mtrr_state_44530 range_startk var_mtrr_state 0 44530 NULL
++disable_so_dev_idx_sockaddr_nfc_44533 dev_idx sockaddr_nfc 0 44533 NULL
++disable_so_query_dv_timings_vivid_dev_44543 query_dv_timings vivid_dev 0 44543 NULL
++disable_so_saddr_ircomm_tty_cb_44557 saddr ircomm_tty_cb 0 44557 NULL
++disable_so_schedule_delay_balloon_stats_44561 schedule_delay balloon_stats 0 44561 NULL
++disable_so___start_cp_addr_fndecl_44569 __start_cp_addr fndecl 0 44569 NULL
++disable_so_m41t94_read_time_fndecl_44577 m41t94_read_time fndecl 0 44577 NULL
++disable_so_set_pte_vaddr_fndecl_44586 set_pte_vaddr fndecl 1 44586 NULL
++disable_so_sctp_getsockopt_peer_addrs_fndecl_44593 sctp_getsockopt_peer_addrs fndecl 0 44593 NULL
++disable_so_lu_reset_timeout_iscsi_session_44595 lu_reset_timeout iscsi_session 0 44595 NULL
++disable_so_jade_interrupt_fndecl_44602 jade_interrupt fndecl 2 44602 NULL nohasharray
++disable_so_ebx_smm_regs_44602 ebx smm_regs 0 44602 &disable_so_jade_interrupt_fndecl_44602 nohasharray
++disable_so_nilfs_btree_prepare_insert_fndecl_44602 nilfs_btree_prepare_insert fndecl 0-4 44602 &disable_so_ebx_smm_regs_44602
++disable_so_pcf50633_rtc_read_time_fndecl_44606 pcf50633_rtc_read_time fndecl 0 44606 NULL
++disable_so_active_time_evergreen_wm_params_44608 active_time evergreen_wm_params 0 44608 NULL
++disable_so_flags_inet6_ifaddr_44611 flags inet6_ifaddr 0 44611 NULL
++disable_so_sioaddr_watchdog_data_44614 sioaddr watchdog_data 0 44614 NULL
++disable_so_sense_addr_adv_scsi_req_q_44624 sense_addr adv_scsi_req_q 0 44624 NULL
++disable_so_maxfrags_snd_pcm_oss_runtime_44625 maxfrags snd_pcm_oss_runtime 0 44625 NULL
++disable_so_settle_delay_usecs_ads7846_platform_data_44627 settle_delay_usecs ads7846_platform_data 0 44627 NULL
++disable_so_get_random_int_fndecl_44628 get_random_int fndecl 0 44628 NULL
++disable_so_ahash_def_finup_finish1_fndecl_44631 ahash_def_finup_finish1 fndecl 0-2 44631 NULL
++disable_so_calib_time_b43_lo_calib_44633 calib_time b43_lo_calib 0 44633 NULL
++disable_so_timespec_to_jiffies_fndecl_44642 timespec_to_jiffies fndecl 0 44642 NULL
++disable_so_secid_netlbl_unlhsh_addr4_44654 secid netlbl_unlhsh_addr4 0 44654 NULL
++disable_so_tcp_init_nondata_skb_fndecl_44656 tcp_init_nondata_skb fndecl 2 44656 NULL
++disable_so_time_start_nfs_fattr_44666 time_start nfs_fattr 0 44666 NULL
++disable_so_nilfs_dev_uuid_show_fndecl_44683 nilfs_dev_uuid_show fndecl 0 44683 NULL
++disable_so_prctl_get_tid_address_fndecl_44684 prctl_get_tid_address fndecl 0 44684 NULL
++disable_so_rq_addr_t3_wq_44688 rq_addr t3_wq 0 44688 NULL
++disable_so_lpfc_max_scsicmpl_time_vardecl_lpfc_attr_c_44694 lpfc_max_scsicmpl_time vardecl_lpfc_attr.c 0 44694 NULL
++disable_so_show_guid_fndecl_44695 show_guid fndecl 0 44695 NULL
++disable_so_rsi_cmd52writebyte_fndecl_44700 rsi_cmd52writebyte fndecl 0-2-3 44700 NULL
++disable_so_rx_rx_timeout_read_fndecl_44710 rx_rx_timeout_read fndecl 3 44710 NULL
++disable_so_fw_localtime_wl_fw_status_44711 fw_localtime wl_fw_status 0 44711 NULL
++disable_so_sm501_calc_clock_fndecl_44717 sm501_calc_clock fndecl 1-4 44717 NULL
++disable_so_address_radio_20xx_regs_44719 address radio_20xx_regs 0 44719 NULL
++disable_so_round_jiffies_common_fndecl_44723 round_jiffies_common fndecl 0-2-1 44723 NULL
++disable_so_offtime_cbq_class_44730 offtime cbq_class 0 44730 NULL
++disable_so_cur_clock_rtsx_pcr_44731 cur_clock rtsx_pcr 0 44731 NULL
++disable_so_cik_set_uvd_clocks_fndecl_44739 cik_set_uvd_clocks fndecl 3-2-0 44739 NULL
++disable_so_write_reg_sja1000_priv_44741 write_reg sja1000_priv 3 44741 NULL
++disable_so_leaf_tail_hfs_btree_44745 leaf_tail hfs_btree 0 44745 NULL
++disable_so_ui_ctime_ufs2_inode_44748 ui_ctime ufs2_inode 0 44748 NULL nohasharray
++disable_so_addr_it87_data_44748 addr it87_data 0 44748 &disable_so_ui_ctime_ufs2_inode_44748
++disable_so_add_time_xfrm_lifetime_cur_44766 add_time xfrm_lifetime_cur 0 44766 NULL
++disable_so_genwqe_debugfs_curr_dbg_uid1_open_fndecl_44769 genwqe_debugfs_curr_dbg_uid1_open fndecl 0 44769 NULL
++disable_so_espibug_timeout_sge_44778 espibug_timeout sge 0 44778 NULL
++disable_so_buffer_addr_pch_gbe_tx_desc_44790 buffer_addr pch_gbe_tx_desc 0 44790 NULL
++disable_so_crypto_shash_init_fndecl_44815 crypto_shash_init fndecl 0 44815 NULL
++disable_so_get_evtchn_to_irq_fndecl_44824 get_evtchn_to_irq fndecl 0-1 44824 NULL nohasharray
++disable_so_jhash2_fndecl_44824 jhash2 fndecl 0-2-3 44824 &disable_so_get_evtchn_to_irq_fndecl_44824
++disable_so_s_mtime_nilfs_super_block_44839 s_mtime nilfs_super_block 0 44839 NULL
++disable_so_nilfs_segctor_last_nongc_write_time_show_fndecl_44843 nilfs_segctor_last_nongc_write_time_show fndecl 0 44843 NULL
++disable_so_usec_delay_ixgbe_mbx_info_44850 usec_delay ixgbe_mbx_info 0 44850 NULL
++disable_so_ecryptfs_cipher_code_to_string_fndecl_44859 ecryptfs_cipher_code_to_string fndecl 0 44859 NULL
++disable_so_ieee802154_hdr_get_addr_fndecl_44863 ieee802154_hdr_get_addr fndecl 0 44863 NULL
++disable_so_ecp_write_addr_parport_operations_44867 ecp_write_addr parport_operations 0 44867 NULL
++disable_so_mtrr_add_page_fndecl_44881 mtrr_add_page fndecl 1-2 44881 NULL
++disable_so_snd_via686_interrupt_fndecl_44897 snd_via686_interrupt fndecl 1 44897 NULL nohasharray
++disable_so_minor_hash_dx_hash_info_44897 minor_hash dx_hash_info 0 44897 &disable_so_snd_via686_interrupt_fndecl_44897
++disable_so_i2c_addr_dmi_onboard_device_info_44901 i2c_addr dmi_onboard_device_info 0 44901 NULL
++disable_so_tcp_conn_schedule_fndecl_44909 tcp_conn_schedule fndecl 1 44909 NULL nohasharray
++disable_so_udelay_fm10k_mbx_info_44909 udelay fm10k_mbx_info 0 44909 &disable_so_tcp_conn_schedule_fndecl_44909
++disable_so_c_timestamp_svc_cacherep_44918 c_timestamp svc_cacherep 0 44918 NULL
++disable_so_timeout_mpt2_ioctl_command_44920 timeout mpt2_ioctl_command 0 44920 NULL
++disable_so_sk_lingertime_sock_44923 sk_lingertime sock 0 44923 NULL
++disable_so_latency_timer_hpp_type0_44929 latency_timer hpp_type0 0 44929 NULL
++disable_so_mtime_squashfs_base_inode_44930 mtime squashfs_base_inode 0 44930 NULL
++disable_so_rpc_peeraddr_fndecl_44940 rpc_peeraddr fndecl 0-3 44940 NULL
++disable_so_dsap_sockaddr_nfc_llcp_44945 dsap sockaddr_nfc_llcp 0 44945 NULL
++disable_so_shash_ahash_mcryptd_finup_fndecl_44946 shash_ahash_mcryptd_finup fndecl 0 44946 NULL
++disable_so_SiS_SetRegANDOR_fndecl_44947 SiS_SetRegANDOR fndecl 1-2-3-4 44947 NULL
++disable_so_cpu_timer_sample_group_fndecl_44962 cpu_timer_sample_group fndecl 1 44962 NULL
++disable_so_key_timeout_rpc_authops_44963 key_timeout rpc_authops 0 44963 NULL
++disable_so_proc_uid_map_open_fndecl_44967 proc_uid_map_open fndecl 0 44967 NULL
++disable_so_spp_pathmtu_sctp_paddrparams_44974 spp_pathmtu sctp_paddrparams 0 44974 NULL
++disable_so_b43_radio_write_fndecl_44980 b43_radio_write fndecl 3 44980 NULL
++disable_so_level_btree_44981 level btree 0 44981 NULL
++disable_so_shift_clocksource_44992 shift clocksource 0 44992 NULL
++disable_so_mount_timeout_ceph_options_44999 mount_timeout ceph_options 0 44999 NULL
++disable_so_igmp_start_timer_fndecl_45000 igmp_start_timer fndecl 2 45000 NULL
++disable_so_force_addr_vardecl_via686a_c_45006 force_addr vardecl_via686a.c 0 45006 NULL
++disable_so_ahash_wait_fndecl_45017 ahash_wait fndecl 0-1 45017 NULL
++disable_so_acpi_pm_device_sleep_wake_fndecl_45036 acpi_pm_device_sleep_wake fndecl 0 45036 NULL
++disable_so_palette_qxl_bitmap_45040 palette qxl_bitmap 0 45040 NULL
++disable_so_subdevice_snd_timer_id_45046 subdevice snd_timer_id 0 45046 NULL
++disable_so_demod_address_sp887x_config_45051 demod_address sp887x_config 0 45051 NULL
++disable_so_end_address_acpi_address_range_45053 end_address acpi_address_range 0 45053 NULL
++disable_so_fm_rx_get_band_freq_range_fndecl_45055 fm_rx_get_band_freq_range fndecl 0 45055 NULL
++disable_so_tcp_time_wait_fndecl_45056 tcp_time_wait fndecl 3-2 45056 NULL nohasharray
++disable_so_mlx4_ib_gen_node_guid_fndecl_45056 mlx4_ib_gen_node_guid fndecl 0 45056 &disable_so_tcp_time_wait_fndecl_45056
++disable_so_gpio_get_value_cansleep_fndecl_45065 gpio_get_value_cansleep fndecl 0-1 45065 NULL
++disable_so_max6900_i2c_read_time_fndecl_45069 max6900_i2c_read_time fndecl 0 45069 NULL
++disable_so_sys_futimesat_fndecl_45070 sys_futimesat fndecl 1 45070 NULL
++disable_so_genwqe_debugfs_prev_dbg_uid2_open_fndecl_45072 genwqe_debugfs_prev_dbg_uid2_open fndecl 0 45072 NULL
++disable_so_cmd_attr_register_cpumask_fndecl_45074 cmd_attr_register_cpumask fndecl 0 45074 NULL
++disable_so_hdspm_get_aes_sample_rate_fndecl_45076 hdspm_get_aes_sample_rate fndecl 2 45076 NULL
++disable_so_set_magic_time_fndecl_45079 set_magic_time fndecl 3-2-1 45079 NULL
++disable_so_pci_bus_alloc_from_region_fndecl_45084 pci_bus_alloc_from_region fndecl 5-3-4 45084 NULL
++disable_so_set_pending_timer_val_fndecl_45111 set_pending_timer_val fndecl 2 45111 NULL
++disable_so_i_ctime_nsec_f2fs_inode_45121 i_ctime_nsec f2fs_inode 0 45121 NULL nohasharray
++disable_so_s_mtime_ext3_super_block_45121 s_mtime ext3_super_block 0 45121 &disable_so_i_ctime_nsec_f2fs_inode_45121
++disable_so_inet_csk_reset_keepalive_timer_fndecl_45127 inet_csk_reset_keepalive_timer fndecl 2 45127 NULL
++disable_so_x25_addr_ntoa_fndecl_45136 x25_addr_ntoa fndecl 0 45136 NULL
++disable_so_ltimeout_ia_vcc_45137 ltimeout ia_vcc 0 45137 NULL
++disable_so_high_addr_msgbuf_buf_addr_45142 high_addr msgbuf_buf_addr 0 45142 NULL
++disable_so_pit_calibrate_tsc_fndecl_45149 pit_calibrate_tsc fndecl 0-2 45149 NULL
++disable_so_fw_dma_addr_sproc_45154 fw_dma_addr sproc 0 45154 NULL
++disable_so_addr_lola_bar_45160 addr lola_bar 0 45160 NULL
++disable_so_set_normalized_timespec_fndecl_45161 set_normalized_timespec fndecl 2-3 45161 NULL
++disable_so_lp8788_show_eoc_time_fndecl_45162 lp8788_show_eoc_time fndecl 0 45162 NULL
++disable_so_set_ageing_time_fndecl_45172 set_ageing_time fndecl 2 45172 NULL
++disable_so_address_radio_regs_45181 address radio_regs 0 45181 NULL
++disable_so_do_set_sock_timeout_fndecl_45197 do_set_sock_timeout fndecl 0-5 45197 NULL
++disable_so_bootaddr_mic_device_45198 bootaddr mic_device 0 45198 NULL
++disable_so_ext4_max_bitmap_size_fndecl_45201 ext4_max_bitmap_size fndecl 0-1 45201 NULL
++disable_so_rapl_compute_time_window_atom_fndecl_45202 rapl_compute_time_window_atom fndecl 0-2 45202 NULL
++disable_so_di_atime_nsec_gfs2_dinode_45214 di_atime_nsec gfs2_dinode 0 45214 NULL
++disable_so_watchdog_get_timeout_fndecl_45215 watchdog_get_timeout fndecl 0 45215 NULL
++disable_so_undertime_tc_cbq_xstats_45217 undertime tc_cbq_xstats 0 45217 NULL
++disable_so_trace_clock_fndecl_45219 trace_clock fndecl 0 45219 NULL
++disable_so_usb_bulk_msg_fndecl_45230 usb_bulk_msg fndecl 0-4-2-6 45230 NULL
++disable_so_clock_es1968_45231 clock es1968 0 45231 NULL
++disable_so_fillvaddr_gru_tlb_fault_handle_45245 fillvaddr gru_tlb_fault_handle 0 45245 NULL
++disable_so_blocksize_crypto_report_blkcipher_45248 blocksize crypto_report_blkcipher 0 45248 NULL
++disable_so_cdc_ncm_store_tx_timer_usecs_fndecl_45252 cdc_ncm_store_tx_timer_usecs fndecl 0-4 45252 NULL
++disable_so_uv_nmi_loop_delay_vardecl_uv_nmi_c_45253 uv_nmi_loop_delay vardecl_uv_nmi.c 0 45253 NULL
++disable_so_default_timer_slack_ns_task_struct_45261 default_timer_slack_ns task_struct 0 45261 NULL
++disable_so_tsc_offset_adjustment_kvm_vcpu_arch_45263 tsc_offset_adjustment kvm_vcpu_arch 0 45263 NULL
++disable_so_bf_buf_addr_ath_buf_45279 bf_buf_addr ath_buf 0 45279 NULL
++disable_so_xen_clocksource_read_fndecl_45285 xen_clocksource_read fndecl 0 45285 NULL
++disable_so_iscsi_nacl_attrib_store_dataout_timeout_fndecl_45292 iscsi_nacl_attrib_store_dataout_timeout fndecl 0-3 45292 NULL
++disable_so_r8_kvm_regs_45295 r8 kvm_regs 0 45295 NULL
++disable_so_w1_master_attribute_show_timeout_fndecl_45297 w1_master_attribute_show_timeout fndecl 0 45297 NULL
++disable_so_uuid_show_fallback_fndecl_45299 uuid_show_fallback fndecl 0 45299 NULL
++disable_so_nv04_timer_read_fndecl_45300 nv04_timer_read fndecl 0 45300 NULL
++disable_so_write_port_cfg_addr_mvs_dispatch_45302 write_port_cfg_addr mvs_dispatch 2 45302 NULL
++disable_so_ixgbevf_check_for_bit_vf_fndecl_45303 ixgbevf_check_for_bit_vf fndecl 2 45303 NULL
++disable_so_radio_syn_reserved_addr29_b43_nphy_channeltab_entry_rev3_45310 radio_syn_reserved_addr29 b43_nphy_channeltab_entry_rev3 0 45310 NULL
++disable_so_blkcipher_walk_first_fndecl_45312 blkcipher_walk_first fndecl 0 45312 NULL
++disable_so_add_interrupt_randomness_fndecl_45315 add_interrupt_randomness fndecl 1-2 45315 NULL
++disable_so_lg2160_set_spi_clock_fndecl_45319 lg2160_set_spi_clock fndecl 0 45319 NULL
++disable_so_scaled_div32_fndecl_45321 scaled_div32 fndecl 0-1-2 45321 NULL
++disable_so_spkt_protocol_sockaddr_pkt_45330 spkt_protocol sockaddr_pkt 0 45330 NULL
++disable_so_drain_timeout_xenvif_45332 drain_timeout xenvif 0 45332 NULL
++disable_so_sysctl_tcp_fin_timeout_vardecl_45335 sysctl_tcp_fin_timeout vardecl 0 45335 NULL
++disable_so_dlm_dump_rsb_hash_fndecl_45352 dlm_dump_rsb_hash fndecl 2 45352 NULL
++disable_so_get_idle_time_fndecl_45358 get_idle_time fndecl 1-0 45358 NULL
++disable_so_demod_address_ves1x93_config_45359 demod_address ves1x93_config 0 45359 NULL
++disable_so_hid_sensor_write_samp_freq_value_fndecl_45374 hid_sensor_write_samp_freq_value fndecl 2-3 45374 NULL
++disable_so_tuner_addr_saa7134_dev_45377 tuner_addr saa7134_dev 0 45377 NULL
++disable_so_index_ptp_clock_45382 index ptp_clock 0 45382 NULL
++disable_so_rbd_dev_v2_header_onetime_fndecl_45386 rbd_dev_v2_header_onetime fndecl 0 45386 NULL
++disable_so_xfs_btree_make_block_unfull_fndecl_45388 xfs_btree_make_block_unfull fndecl 3-0 45388 NULL
++disable_so_crypto_shash_setkey_fndecl_45392 crypto_shash_setkey fndecl 0-3 45392 NULL
++disable_so_seq_devkmsg_user_45410 seq devkmsg_user 0 45410 NULL
++disable_so_ad799x_read_frequency_fndecl_45414 ad799x_read_frequency fndecl 0 45414 NULL
++disable_so_gid_ceph_mds_reply_inode_45416 gid ceph_mds_reply_inode 0 45416 NULL
++disable_so_zl10036_set_frequency_fndecl_45420 zl10036_set_frequency fndecl 2 45420 NULL
++disable_so_backlight_duty_cycle_drm_psb_private_45424 backlight_duty_cycle drm_psb_private 0 45424 NULL
++disable_so_devm_kvasprintf_fndecl_45431 devm_kvasprintf fndecl 2 45431 NULL
++disable_so_nvif_object_wr_fndecl_45438 nvif_object_wr fndecl 4-3 45438 NULL
++disable_so_expires_rpc_timer_45444 expires rpc_timer 0 45444 NULL
++disable_so_resource_address_pmcraid_config_table_entry_45452 resource_address pmcraid_config_table_entry 0 45452 NULL nohasharray
++disable_so_timer_active_bfa_fcdiag_qtest_s_45452 timer_active bfa_fcdiag_qtest_s 0 45452 &disable_so_resource_address_pmcraid_config_table_entry_45452 nohasharray
++disable_so_dev_addr_c67x00_td_45452 dev_addr c67x00_td 0 45452 &disable_so_timer_active_bfa_fcdiag_qtest_s_45452
++disable_so_asd_write_reg_word_fndecl_45465 asd_write_reg_word fndecl 2-3 45465 NULL
++disable_so_time_started_btrfs_dev_replace_45480 time_started btrfs_dev_replace 0 45480 NULL
++disable_so_btrfs_add_delayed_tree_ref_fndecl_45481 btrfs_add_delayed_tree_ref fndecl 0-10-3-4-5-6-7 45481 NULL
++disable_so_i2c_addr_fc2580_config_45482 i2c_addr fc2580_config 0 45482 NULL
++disable_so_device_missing_delay__MPT_ADAPTER_45485 device_missing_delay _MPT_ADAPTER 0 45485 NULL
++disable_so_pdiv_skl_wrpll_params_45498 pdiv skl_wrpll_params 0 45498 NULL
++disable_so_fast_RR_timeout_irlap_cb_45499 fast_RR_timeout irlap_cb 0 45499 NULL
++disable_so_usb_control_msg_fndecl_45507 usb_control_msg fndecl 8-0-2-9-5-4-6-3 45507 NULL
++disable_so_cpu_to_vhost16_fndecl_45510 cpu_to_vhost16 fndecl 2 45510 NULL
++disable_so_vma_interval_tree_compute_subtree_last_fndecl_45515 vma_interval_tree_compute_subtree_last fndecl 0 45515 NULL
++disable_so_paddr_mwifiex_evt_buf_desc_45527 paddr mwifiex_evt_buf_desc 0 45527 NULL nohasharray
++disable_so_saddr_lap_cb_45527 saddr lap_cb 0 45527 &disable_so_paddr_mwifiex_evt_buf_desc_45527
++disable_so_nilfs_btree_find_target_v_fndecl_45528 nilfs_btree_find_target_v fndecl 0-3 45528 NULL
++disable_so_pagf_btreeblks_xfs_perag_45534 pagf_btreeblks xfs_perag 0 45534 NULL
++disable_so_reestablish_timeout_rpc_xprt_45538 reestablish_timeout rpc_xprt 0 45538 NULL
++disable_so_show_falltime_fndecl_45545 show_falltime fndecl 0 45545 NULL
++disable_so_tl_time_tcon_link_45553 tl_time tcon_link 0 45553 NULL nohasharray
++disable_so_address_ips_sglist_45553 address ips_sglist 0 45553 &disable_so_tl_time_tcon_link_45553
++disable_so_phy_address_bcmgenet_platform_data_45558 phy_address bcmgenet_platform_data 0 45558 NULL
++disable_so_seq_kern_ipc_perm_45559 seq kern_ipc_perm 0 45559 NULL
++disable_so_verify_cpufreq_driver_45564 verify cpufreq_driver 0 45564 NULL
++disable_so_mcp795_set_time_fndecl_45573 mcp795_set_time fndecl 0 45573 NULL
++disable_so_sw_beacon_response_time_ath9k_ops_config_45576 sw_beacon_response_time ath9k_ops_config 0 45576 NULL
++disable_so_postsleep_min_us_mmc_ioc_cmd_45584 postsleep_min_us mmc_ioc_cmd 0 45584 NULL
++disable_so_write_reg_c_can_priv_45594 write_reg c_can_priv 3 45594 NULL
++disable_so_first_frag_time_prism2_frag_entry_45596 first_frag_time prism2_frag_entry 0 45596 NULL
++disable_so_rsa_init_fndecl_45605 rsa_init fndecl 0 45605 NULL
++disable_so_laddr_c2wr_ae_active_connect_results_45607 laddr c2wr_ae_active_connect_results 0 45607 NULL nohasharray
++disable_so_base_kvm_mtrr_range_45607 base kvm_mtrr_range 0 45607 &disable_so_laddr_c2wr_ae_active_connect_results_45607
++disable_so_readfreq_si476x_rsq_status_report_45610 readfreq si476x_rsq_status_report 0 45610 NULL
++disable_so_gss_krb5_aes_encrypt_fndecl_45613 gss_krb5_aes_encrypt fndecl 0-2 45613 NULL
++disable_so_igmp_ifc_start_timer_fndecl_45616 igmp_ifc_start_timer fndecl 2 45616 NULL
++disable_so_usb_addr_u132_endp_45622 usb_addr u132_endp 0 45622 NULL
++disable_so_manage_tempaddrs_fndecl_45628 manage_tempaddrs fndecl 3-4-6 45628 NULL
++disable_so_win_mask_latch_addr_flash_info_45634 win_mask latch_addr_flash_info 0 45634 NULL
++disable_so_tx_delay_rk_priv_data_45645 tx_delay rk_priv_data 0 45645 NULL
++disable_so_addr_high_viafb_vx855_dma_descr_45656 addr_high viafb_vx855_dma_descr 0 45656 NULL
++disable_so_snd_asihpi_tuner_freq_info_fndecl_45664 snd_asihpi_tuner_freq_info fndecl 0 45664 NULL
++disable_so_spt_assoc_id_sctp_paddrthlds_45665 spt_assoc_id sctp_paddrthlds 0 45665 NULL
++disable_so_xtfpga_i2s_runtime_resume_fndecl_45670 xtfpga_i2s_runtime_resume fndecl 0 45670 NULL
++disable_so_T44_address_mxt_data_45677 T44_address mxt_data 0 45677 NULL
++disable_so_crypto_cbc_encrypt_fndecl_45683 crypto_cbc_encrypt fndecl 0-4 45683 NULL
++disable_so_clockrate_ath_common_45695 clockrate ath_common 0 45695 NULL
++disable_so_wakeup_timer_p54_common_45703 wakeup_timer p54_common 0 45703 NULL
++disable_so_regulator_set_voltage_time_fndecl_45707 regulator_set_voltage_time fndecl 0 45707 NULL
++disable_so_i2c_addr_isl6405_45720 i2c_addr isl6405 0 45720 NULL
++disable_so_allocate_va_range_i915_address_space_45728 allocate_va_range i915_address_space 2-3 45728 NULL
++disable_so_lx_interrupt_test_ack_fndecl_45736 lx_interrupt_test_ack fndecl 0 45736 NULL
++disable_so_set_msr_mce_fndecl_45738 set_msr_mce fndecl 3 45738 NULL
++disable_so_ircomm_tty_start_watchdog_timer_fndecl_45741 ircomm_tty_start_watchdog_timer fndecl 2 45741 NULL
++disable_so_mount_time_nfs_server_45742 mount_time nfs_server 0 45742 NULL
++disable_so_padata_cpu_hash_fndecl_45743 padata_cpu_hash fndecl 0 45743 NULL
++disable_so_mtime_sec_ubifs_ino_node_45747 mtime_sec ubifs_ino_node 0 45747 NULL nohasharray
++disable_so_f1x_map_sysaddr_to_csrow_fndecl_45747 f1x_map_sysaddr_to_csrow fndecl 2 45747 &disable_so_mtime_sec_ubifs_ino_node_45747
++disable_so_set_static_address_fndecl_45752 set_static_address fndecl 0 45752 NULL
++disable_so_cmos_interrupt_fndecl_45753 cmos_interrupt fndecl 1 45753 NULL
++disable_so_addr_buffer_rcv_desc_45761 addr_buffer rcv_desc 0 45761 NULL
++disable_so_leddc_off_time_ssb_sprom_45764 leddc_off_time ssb_sprom 0 45764 NULL
++disable_so_ext4_page_crypto_fndecl_45770 ext4_page_crypto fndecl 4 45770 NULL
++disable_so_dqb_itime_if_dqblk_45773 dqb_itime if_dqblk 0 45773 NULL
++disable_so_addr_nvme_user_io_45777 addr nvme_user_io 0 45777 NULL
++disable_so_split_timeout_jiffies_fw_card_45779 split_timeout_jiffies fw_card 0 45779 NULL
++disable_so_buf_addr_mlx4_ib_create_qp_45781 buf_addr mlx4_ib_create_qp 0 45781 NULL
++disable_so_dax_get_addr_fndecl_45788 dax_get_addr fndecl 0-3 45788 NULL
++disable_so_select_addr_qla8044_minidump_entry_pollrd_45815 select_addr qla8044_minidump_entry_pollrd 0 45815 NULL nohasharray
++disable_so_sis190_get_mac_addr_from_eeprom_fndecl_45815 sis190_get_mac_addr_from_eeprom fndecl 0 45815 &disable_so_select_addr_qla8044_minidump_entry_pollrd_45815
++disable_so_hwt_wait_time_fndecl_45826 hwt_wait_time fndecl 2 45826 NULL
++disable_so_j_timestamp_reiserfs_journal_list_45839 j_timestamp reiserfs_journal_list 0 45839 NULL
++disable_so_kxcjk1013_setup_new_data_interrupt_fndecl_45841 kxcjk1013_setup_new_data_interrupt fndecl 0 45841 NULL
++disable_so_c2_add_addr_fndecl_45842 c2_add_addr fndecl 2-3 45842 NULL
++disable_so_saddr_ip_tunnel_dst_45850 saddr ip_tunnel_dst 0 45850 NULL
++disable_so_timeout_cdrom_generic_command_45854 timeout cdrom_generic_command 0 45854 NULL
++disable_so_tdm_delay_aic3x_priv_45859 tdm_delay aic3x_priv 0 45859 NULL
++disable_so_toshiba_usb_sleep_charge_get_fndecl_45863 toshiba_usb_sleep_charge_get fndecl 0 45863 NULL
++disable_so_acpi_subsys_runtime_resume_fndecl_45871 acpi_subsys_runtime_resume fndecl 0 45871 NULL
++disable_so_azx_command_addr_fndecl_45877 azx_command_addr fndecl 0-1 45877 NULL
++disable_so_node_guid_ib_device_45878 node_guid ib_device 0 45878 NULL
++disable_so_time_unit_rapl_package_45880 time_unit rapl_package 0 45880 NULL
++disable_so_bw_timer_intel_dsi_45883 bw_timer intel_dsi 0 45883 NULL nohasharray
++disable_so_sys_signalfd4_fndecl_45883 sys_signalfd4 fndecl 4 45883 &disable_so_bw_timer_intel_dsi_45883
++disable_so_addr_st_ss_sgitem_45905 addr st_ss_sgitem 0 45905 NULL
++disable_so_setlightfreq_fndecl_45914 setlightfreq fndecl 2 45914 NULL
++disable_so_sis_ata33_program_udma_timings_fndecl_45916 sis_ata33_program_udma_timings fndecl 2 45916 NULL nohasharray
++disable_so_str2hashbuf_fndecl_45916 str2hashbuf fndecl 2 45916 &disable_so_sis_ata33_program_udma_timings_fndecl_45916
++disable_so_presentation_position_register_address_sst_hsw_ipc_stream_alloc_reply_45919 presentation_position_register_address sst_hsw_ipc_stream_alloc_reply 0 45919 NULL
++disable_so_dbm_antsignal_hostap_radiotap_rx_45933 dbm_antsignal hostap_radiotap_rx 0 45933 NULL
++disable_so_time_s5m_rtc_reg_config_45934 time s5m_rtc_reg_config 0 45934 NULL
++disable_so_gro_flush_timeout_show_fndecl_45944 gro_flush_timeout_show fndecl 0 45944 NULL
++disable_so_suid_dumpable_vardecl_45948 suid_dumpable vardecl 0 45948 NULL
++disable_so_sel_addr___pollrd_45957 sel_addr __pollrd 0 45957 NULL
++disable_so_st_atime_nsec_stat_45960 st_atime_nsec stat 0 45960 NULL
++disable_so_mb862xx_i2c_do_address_fndecl_45962 mb862xx_i2c_do_address fndecl 2 45962 NULL nohasharray
++disable_so_radeon_atom_set_engine_dram_timings_fndecl_45962 radeon_atom_set_engine_dram_timings fndecl 2-3 45962 &disable_so_mb862xx_i2c_do_address_fndecl_45962
++disable_so_last_rx_signal_sta_info_45967 last_rx_signal sta_info 0 45967 NULL
++disable_so_current_frequency_lgdt330x_state_45968 current_frequency lgdt330x_state 0 45968 NULL
++disable_so_gpu_addr_radeon_semaphore_45975 gpu_addr radeon_semaphore 0 45975 NULL
++disable_so_hello_time_net_bridge_45982 hello_time net_bridge 0 45982 NULL
++disable_so_suspend_time_ipw2100_priv_45995 suspend_time ipw2100_priv 0 45995 NULL
++disable_so_mtime_nsec_ubifs_ino_node_46001 mtime_nsec ubifs_ino_node 0 46001 NULL
++disable_so_group_cipher_suite_atmel_private_46009 group_cipher_suite atmel_private 0 46009 NULL
++disable_so_fw_hash_fndecl_46017 fw_hash fndecl 0-1 46017 NULL
++disable_so_dualwatch_jiffies_cx18_46022 dualwatch_jiffies cx18 0 46022 NULL nohasharray
++disable_so_ufs_set_inode_gid_fndecl_46022 ufs_set_inode_gid fndecl 3 46022 &disable_so_dualwatch_jiffies_cx18_46022
++disable_so_hw_ptr_snd_rawmidi_runtime_46024 hw_ptr snd_rawmidi_runtime 0 46024 NULL
++disable_so_erst_exec_set_dst_address_base_fndecl_46025 erst_exec_set_dst_address_base fndecl 0 46025 NULL
++disable_so_port_expander_addr_mxl111sf_state_46026 port_expander_addr mxl111sf_state 0 46026 NULL
++disable_so_tea5764_set_freq_fndecl_46030 tea5764_set_freq fndecl 2 46030 NULL
++disable_so_timestamp_nfs4_delegreturndata_46035 timestamp nfs4_delegreturndata 0 46035 NULL
++disable_so_crypto_blkcipher_encrypt_fndecl_46038 crypto_blkcipher_encrypt fndecl 0-4 46038 NULL
++disable_so_sd_set_timing_fndecl_46047 sd_set_timing fndecl 0 46047 NULL
++disable_so_eflags_user_regs_struct32_46056 eflags user_regs_struct32 0 46056 NULL nohasharray
++disable_so_set_wqe_64bit_value_fndecl_46056 set_wqe_64bit_value fndecl 3 46056 &disable_so_eflags_user_regs_struct32_46056
++disable_so_crypto_cbc_encrypt_segment_fndecl_46064 crypto_cbc_encrypt_segment fndecl 0 46064 NULL
++disable_so_f_bavail_kstatfs_46066 f_bavail kstatfs 0 46066 NULL
++disable_so_inet6_dump_ifacaddr_fndecl_46071 inet6_dump_ifacaddr fndecl 0 46071 NULL
++disable_so_dma_addr_ipw_rx_mem_buffer_46073 dma_addr ipw_rx_mem_buffer 0 46073 NULL
++disable_so_rfkill_last_scheduled_vardecl_input_c_46074 rfkill_last_scheduled vardecl_input.c 0 46074 NULL
++disable_so_dma_addr_ntb_transport_mw_46085 dma_addr ntb_transport_mw 0 46085 NULL
++disable_so_qce_ahash_init_fndecl_46087 qce_ahash_init fndecl 0 46087 NULL
++disable_so_lambda_fll_div_46091 lambda fll_div 0 46091 NULL
++disable_so_amd_iommu_enable_interrupts_fndecl_46110 amd_iommu_enable_interrupts fndecl 0 46110 NULL
++disable_so_pineview_clock_fndecl_46122 pineview_clock fndecl 1 46122 NULL
++disable_so_aes_set_key_common_fndecl_46123 aes_set_key_common fndecl 0-4 46123 NULL
++disable_so_max_dwell_time_active_long_conf_scan_settings_46124 max_dwell_time_active_long conf_scan_settings 0 46124 NULL nohasharray
++disable_so_clock_khz_sym_hcb_46124 clock_khz sym_hcb 0 46124 &disable_so_max_dwell_time_active_long_conf_scan_settings_46124
++disable_so_mrp_periodic_time_vardecl_mrp_c_46127 mrp_periodic_time vardecl_mrp.c 0 46127 NULL
++disable_so_mlx5_query_hca_vport_node_guid_fndecl_46128 mlx5_query_hca_vport_node_guid fndecl 0 46128 NULL
++disable_so_xfs_kgid_to_gid_fndecl_46136 xfs_kgid_to_gid fndecl 0 46136 NULL
++disable_so_ata_msleep_fndecl_46137 ata_msleep fndecl 2 46137 NULL
++disable_so_ccp_sha_init_fndecl_46144 ccp_sha_init fndecl 0 46144 NULL
++disable_so___mv88e6xxx_write_addr_fndecl_46145 __mv88e6xxx_write_addr fndecl 0 46145 NULL
++disable_so_wdt_set_time_fndecl_46151 wdt_set_time fndecl 1-0 46151 NULL
++disable_so_first_above_time_codel_vars_46152 first_above_time codel_vars 0 46152 NULL
++disable_so_extclk_freq_max8649_platform_data_46157 extclk_freq max8649_platform_data 0 46157 NULL
++disable_so_init_clocksource_sysfs_fndecl_46161 init_clocksource_sysfs fndecl 0 46161 NULL
++disable_so_escape_clk_div_intel_dsi_46167 escape_clk_div intel_dsi 0 46167 NULL
++disable_so_l2cap_sock_get_sndtimeo_cb_fndecl_46168 l2cap_sock_get_sndtimeo_cb fndecl 0 46168 NULL
++disable_so_ebx_tss_segment_32_46181 ebx tss_segment_32 0 46181 NULL
++disable_so_freq_in_rule_band_fndecl_46182 freq_in_rule_band fndecl 2 46182 NULL
++disable_so_get_signal_to_noise_fndecl_46189 get_signal_to_noise fndecl 0 46189 NULL
++disable_so_bitmap_parse_user_fndecl_46193 bitmap_parse_user fndecl 0-2-4 46193 NULL
++disable_so_queue_delayed_work_fndecl_46205 queue_delayed_work fndecl 3 46205 NULL nohasharray
++e_rtt_us_ack_sample_46205 rtt_us ack_sample 0 46205 &disable_so_queue_delayed_work_fndecl_46205
++disable_so_phy_addr_adf_admin_comms_46206 phy_addr adf_admin_comms 0 46206 NULL nohasharray
++disable_so_hblank_lo_detailed_pixel_timing_46206 hblank_lo detailed_pixel_timing 0 46206 &disable_so_phy_addr_adf_admin_comms_46206
++disable_so_delay_time_NvRamType_46210 delay_time NvRamType 0 46210 NULL
++disable_so_subtree_max_end_memtype_46217 subtree_max_end memtype 0 46217 NULL
++disable_so_i_gid_ext3_inode_46225 i_gid ext3_inode 0 46225 NULL
++disable_so_dma_addr_rx_sw_desc_46234 dma_addr rx_sw_desc 0 46234 NULL
++disable_so_smsc_phy_ack_interrupt_fndecl_46236 smsc_phy_ack_interrupt fndecl 0 46236 NULL
++disable_so_crypto_ctr_setkey_fndecl_46238 crypto_ctr_setkey fndecl 0-3 46238 NULL
++disable_so_ap_beacon_time_iwl_mvm_vif_46241 ap_beacon_time iwl_mvm_vif 0 46241 NULL
++disable_so_phy_addr_base_niu_phy_template_46243 phy_addr_base niu_phy_template 0 46243 NULL
++disable_so_dev_getbyhwaddr_rcu_fndecl_46248 dev_getbyhwaddr_rcu fndecl 2 46248 NULL
++disable_so_delay_time_vardecl_pcnet_cs_c_46250 delay_time vardecl_pcnet_cs.c 0 46250 NULL
++disable_so_from_hash_fndecl_46264 from_hash fndecl 0-1 46264 NULL
++disable_so_lapic_timer_frequency_vardecl_46265 lapic_timer_frequency vardecl 0 46265 NULL
++disable_so_cs35l32_runtime_resume_fndecl_46274 cs35l32_runtime_resume fndecl 0 46274 NULL
++disable_so_clock_high_l3_pins_46276 clock_high l3_pins 0 46276 NULL
++disable_so_snd_opl3_timer2_init_fndecl_46281 snd_opl3_timer2_init fndecl 0-2 46281 NULL
++disable_so_demod_address_mb86a16_config_46282 demod_address mb86a16_config 0 46282 NULL
++disable_so_atime_fuse_attr_46283 atime fuse_attr 0 46283 NULL
++disable_so_blink_time_wm831x_status_46292 blink_time wm831x_status 0 46292 NULL
++disable_so_dm_btree_insert_notify_fndecl_46297 dm_btree_insert_notify fndecl 0-2 46297 NULL
++disable_so__rtl92c_signal_scale_mapping_fndecl_46298 _rtl92c_signal_scale_mapping fndecl 0-2 46298 NULL
++disable_so_usb_port_runtime_suspend_fndecl_46299 usb_port_runtime_suspend fndecl 0 46299 NULL
++disable_so___bitmap_start_sync_fndecl_46300 __bitmap_start_sync fndecl 2-4 46300 NULL
++disable_so_ep_timeout_secs_vardecl_cm_c_46302 ep_timeout_secs vardecl_cm.c 0 46302 NULL
++disable_so_prop_seg_can_bittiming_46312 prop_seg can_bittiming 0 46312 NULL
++disable_so_signalstrength_rtl_stats_46320 signalstrength rtl_stats 0 46320 NULL
++disable_so_xpc_hb_check_timeout_vardecl_xpc_main_c_46327 xpc_hb_check_timeout vardecl_xpc_main.c 0 46327 NULL
++disable_so_creation_time_se_dev_entry_46338 creation_time se_dev_entry 0 46338 NULL
++disable_so_ene_set_tx_duty_cycle_fndecl_46344 ene_set_tx_duty_cycle fndecl 2 46344 NULL
++disable_so_atimensec_fuse_setattr_in_46351 atimensec fuse_setattr_in 0 46351 NULL
++disable_so_ip_mce_46362 ip mce 0 46362 NULL
++disable_so_ntfs_bitmap_clear_run_fndecl_46364 ntfs_bitmap_clear_run fndecl 2-3 46364 NULL
++disable_so_ds1286_read_time_fndecl_46365 ds1286_read_time fndecl 0 46365 NULL
++disable_so_sd_uid_stat_data_v1_46367 sd_uid stat_data_v1 0 46367 NULL
++disable_so_bfa_fcs_lport_ns_sm_gid_ft_fndecl_46369 bfa_fcs_lport_ns_sm_gid_ft fndecl 2 46369 NULL
++disable_so_address_usb_ep_46374 address usb_ep 0 46374 NULL
++disable_so_txctl_measured_time_b43_txpower_lo_control_46377 txctl_measured_time b43_txpower_lo_control 0 46377 NULL
++disable_so_gru_start_paddr_vardecl_46378 gru_start_paddr vardecl 0 46378 NULL
++disable_so_second_timestamp_46379 second timestamp 0 46379 NULL
++disable_so_code_acpi_signal_fatal_info_46389 code acpi_signal_fatal_info 0 46389 NULL
++disable_so_cpu_hrtimer_cpu_base_46390 cpu hrtimer_cpu_base 0 46390 NULL
++disable_so_bcma_chipco_watchdog_timer_set_wdt_fndecl_46396 bcma_chipco_watchdog_timer_set_wdt fndecl 2-0 46396 NULL
++disable_so_check_intr_schedule_fndecl_46403 check_intr_schedule fndecl 2-3-0 46403 NULL
++disable_so_start_mtrr_iter_46427 start mtrr_iter 0 46427 NULL
++disable_so_cp_hqd_pq_wptr_poll_addr_hqd_registers_46430 cp_hqd_pq_wptr_poll_addr hqd_registers 0 46430 NULL
++disable_so_irlap_start_final_timer_fndecl_46431 irlap_start_final_timer fndecl 2 46431 NULL
++disable_so_tuner_pll_address_budget_ci_46436 tuner_pll_address budget_ci 0 46436 NULL
++disable_so_mmc35240_get_samp_freq_index_fndecl_46439 mmc35240_get_samp_freq_index fndecl 0 46439 NULL
++disable_so_addr_qat_alg_buf_46445 addr qat_alg_buf 0 46445 NULL
++disable_so_set_ifa_lifetime_fndecl_46447 set_ifa_lifetime fndecl 3-2 46447 NULL
++disable_so_crypto_authenc_module_init_fndecl_46455 crypto_authenc_module_init fndecl 0 46455 NULL
++disable_so_start_fw_address_region_46456 start fw_address_region 0 46456 NULL
++disable_so_snd_seq_queue_timer_open_fndecl_46460 snd_seq_queue_timer_open fndecl 1 46460 NULL
++disable_so_rt_mutex_lock_interruptible_fndecl_46473 rt_mutex_lock_interruptible fndecl 0 46473 NULL
++disable_so_link_set_timer_fndecl_46475 link_set_timer fndecl 2 46475 NULL
++disable_so_pci_bus_check_dev_fndecl_46486 pci_bus_check_dev fndecl 2 46486 NULL
++disable_so_header_dma_addr_tso_state_46489 header_dma_addr tso_state 0 46489 NULL
++disable_so_get_frequency_dvb_tuner_ops_46496 get_frequency dvb_tuner_ops 0 46496 NULL
++disable_so_eth_prepare_mac_addr_change_fndecl_46501 eth_prepare_mac_addr_change fndecl 0 46501 NULL
++disable_so_nfs_direct_write_schedule_iovec_fndecl_46504 nfs_direct_write_schedule_iovec fndecl 0-3 46504 NULL
++disable_so_sib_sid_mask_sockaddr_ib_46511 sib_sid_mask sockaddr_ib 0 46511 NULL
++disable_so_gc_upcall_timestamp_gss_cred_46522 gc_upcall_timestamp gss_cred 0 46522 NULL
++disable_so_zd_iowrite32a_fndecl_46529 zd_iowrite32a fndecl 0-3 46529 NULL
++disable_so_btrfs_delayed_item_reserve_metadata_fndecl_46535 btrfs_delayed_item_reserve_metadata fndecl 0 46535 NULL
++disable_so_qi_btimelimit_xfs_quotainfo_46536 qi_btimelimit xfs_quotainfo 0 46536 NULL
++disable_so_tick_do_timer_cpu_vardecl_46549 tick_do_timer_cpu vardecl 0 46549 NULL
++disable_so_dma_addr_rsxx_cs_buffer_46558 dma_addr rsxx_cs_buffer 0 46558 NULL
++disable_so_niu_set_hash_opts_fndecl_46560 niu_set_hash_opts fndecl 0 46560 NULL
++disable_so_ext_start_addr_i740fb_par_46564 ext_start_addr i740fb_par 0 46564 NULL nohasharray
++disable_so_s5h1420_setfreqoffset_fndecl_46564 s5h1420_setfreqoffset fndecl 2 46564 &disable_so_ext_start_addr_i740fb_par_46564
++disable_so_find_first_zero_bit_fndecl_46567 find_first_zero_bit fndecl 0-2 46567 NULL
++disable_so_ahd_print_register_fndecl_46568 ahd_print_register fndecl 5 46568 NULL
++disable_so_uid_autofs_v5_packet_46569 uid autofs_v5_packet 0 46569 NULL nohasharray
++disable_so_btrfs_find_delayed_ref_head_fndecl_46569 btrfs_find_delayed_ref_head fndecl 2 46569 &disable_so_uid_autofs_v5_packet_46569
++disable_so_beacon_time_stamp_iwl_rx_phy_res_46571 beacon_time_stamp iwl_rx_phy_res 0 46571 NULL
++disable_so_file_update_time_fndecl_46572 file_update_time fndecl 0 46572 NULL nohasharray
++disable_so_mlx4_bitmap_avail_fndecl_46572 mlx4_bitmap_avail fndecl 0 46572 &disable_so_file_update_time_fndecl_46572
++disable_so_lbase_mtrr_value_46577 lbase mtrr_value 0 46577 NULL
++disable_so_frame_bits_snd_pcm_runtime_46580 frame_bits snd_pcm_runtime 0 46580 NULL
++disable_so_mtrr_write_fndecl_46581 mtrr_write fndecl 3 46581 NULL
++disable_so_dm_btree_find_key_fndecl_46584 dm_btree_find_key fndecl 0-2 46584 NULL
++disable_so_timekeeping_set_tai_offset_fndecl_46587 timekeeping_set_tai_offset fndecl 1 46587 NULL
++disable_so_di_tss_segment_16_46594 di tss_segment_16 0 46594 NULL
++disable_so_tda10071_read_signal_strength_fndecl_46598 tda10071_read_signal_strength fndecl 0 46598 NULL
++disable_so___ipv6_addr_diff64_fndecl_46599 __ipv6_addr_diff64 fndecl 0 46599 NULL
++disable_so_ieee80211_runtime_change_iftype_fndecl_46603 ieee80211_runtime_change_iftype fndecl 0 46603 NULL
++disable_so_get_cpu_idle_time_fndecl_46620 get_cpu_idle_time fndecl 1-0 46620 NULL
++disable_so_max6900_i2c_set_time_fndecl_46626 max6900_i2c_set_time fndecl 0 46626 NULL nohasharray
++disable_so_sha1_ctx_mgr_submit_fndecl_46626 sha1_ctx_mgr_submit fndecl 4 46626 &disable_so_max6900_i2c_set_time_fndecl_46626
++disable_so_effective_len_mlx4_bitmap_46628 effective_len mlx4_bitmap 0 46628 NULL
++disable_so_hours_v4l2_timecode_46630 hours v4l2_timecode 0 46630 NULL
++disable_so_vivid_video_s_frequency_fndecl_46635 vivid_video_s_frequency fndecl 0 46635 NULL
++disable_so_rtpm_active_time_show_fndecl_46638 rtpm_active_time_show fndecl 0 46638 NULL
++disable_so___hw_addr_del_fndecl_46652 __hw_addr_del fndecl 0-3 46652 NULL
++disable_so_lp8788_select_buck_vout_addr_fndecl_46658 lp8788_select_buck_vout_addr fndecl 0-2 46658 NULL
++disable_so___flow_hash_from_keys_fndecl_46659 __flow_hash_from_keys fndecl 0 46659 NULL
++disable_so_addrconf_prefix_route_fndecl_46665 addrconf_prefix_route fndecl 2 46665 NULL
++disable_so_bmg160_runtime_resume_fndecl_46671 bmg160_runtime_resume fndecl 0 46671 NULL
++disable_so_msg_ctime_msqid64_ds_46672 msg_ctime msqid64_ds 0 46672 NULL
++disable_so_pvclock_scale_delta_fndecl_46676 pvclock_scale_delta fndecl 0 46676 NULL
++disable_so_rtsx_usb_switch_clock_fndecl_46677 rtsx_usb_switch_clock fndecl 3-2-0 46677 NULL
++disable_so_kstrtouint_fndecl_46682 kstrtouint fndecl 0 46682 NULL
++disable_so_read_addr_qla82xx_md_entry_queue_46684 read_addr qla82xx_md_entry_queue 0 46684 NULL
++disable_so_depth_blk_align_bitmap_46713 depth blk_align_bitmap 0 46713 NULL
++disable_so_sysctl_aarp_resolve_time_vardecl_46714 sysctl_aarp_resolve_time vardecl 0 46714 NULL nohasharray
++disable_so_zd_iowrite16_locked_fndecl_46714 zd_iowrite16_locked fndecl 0 46714 &disable_so_sysctl_aarp_resolve_time_vardecl_46714
++disable_so_rio_addr_tsi721_tx_desc_46721 rio_addr tsi721_tx_desc 0 46721 NULL
++disable_so_addr_mv_sg_46722 addr mv_sg 0 46722 NULL
++disable_so_plat_get_static_power_cpufreq_cooling_device_46723 plat_get_static_power cpufreq_cooling_device 3 46723 NULL
++disable_so_ebitmap_get_bit_fndecl_46726 ebitmap_get_bit fndecl 2 46726 NULL
++disable_so_st_mtime_compat_stat_46734 st_mtime compat_stat 0 46734 NULL
++disable_so_fw_core_add_address_handler_fndecl_46736 fw_core_add_address_handler fndecl 0 46736 NULL
++disable_so_spc_timelimit_qc_type_state_46739 spc_timelimit qc_type_state 0 46739 NULL
++disable_so_tcp_v4_md5_hash_pseudoheader_fndecl_46749 tcp_v4_md5_hash_pseudoheader fndecl 4 46749 NULL
++disable_so_bfa_get_log_time_fndecl_46750 bfa_get_log_time fndecl 0 46750 NULL
++disable_so_ghash_async_final_fndecl_46752 ghash_async_final fndecl 0 46752 NULL
++disable_so_sadb_address_proto_sadb_address_46755 sadb_address_proto sadb_address 0 46755 NULL
++disable_so_hard_use_expires_seconds_xfrm_lifetime_cfg_46763 hard_use_expires_seconds xfrm_lifetime_cfg 0 46763 NULL nohasharray
++disable_so_addrtype_mt_init_fndecl_46763 addrtype_mt_init fndecl 0 46763 &disable_so_hard_use_expires_seconds_xfrm_lifetime_cfg_46763
++disable_so_ipv6_addr_label_init_fndecl_46770 ipv6_addr_label_init fndecl 0 46770 NULL
++disable_so_nbytes_ccp_sha_req_ctx_46772 nbytes ccp_sha_req_ctx 0 46772 NULL
++disable_so_dr_addr_qla4_83xx_quad_entry_46781 dr_addr qla4_83xx_quad_entry 0 46781 NULL
++disable_so_s_csaddr_ufs_sb_private_info_46789 s_csaddr ufs_sb_private_info 0 46789 NULL
++disable_so_ubi_eba_atomic_leb_change_fndecl_46792 ubi_eba_atomic_leb_change fndecl 0 46792 NULL
++disable_so_qce_crypto_driver_init_fndecl_46810 qce_crypto_driver_init fndecl 0 46810 NULL
++disable_so_uuid_tree_generation_btrfs_super_block_46815 uuid_tree_generation btrfs_super_block 0 46815 NULL
++disable_so_panel_pwr_delay_radeon_encoder_lvds_46816 panel_pwr_delay radeon_encoder_lvds 0 46816 NULL
++disable_so_lambda__fll_div_46826 lambda _fll_div 0 46826 NULL
++disable_so_pre_div__pll_div_46827 pre_div _pll_div 0 46827 NULL
++disable_so_paging32_walk_addr_generic_fndecl_46828 paging32_walk_addr_generic fndecl 4-5 46828 NULL
++disable_so_timeout_brcmf_btcoex_info_46840 timeout brcmf_btcoex_info 0 46840 NULL
++disable_so_toshiba_sleep_functions_status_set_fndecl_46848 toshiba_sleep_functions_status_set fndecl 0 46848 NULL
++disable_so_i_gid_exofs_fcb_46849 i_gid exofs_fcb 0 46849 NULL
++disable_so_mounted_uid_compat_ncp_fs_info_v2_46851 mounted_uid compat_ncp_fs_info_v2 0 46851 NULL
++disable_so_ecryptfs_process_key_cipher_fndecl_46863 ecryptfs_process_key_cipher fndecl 0 46863 NULL
++disable_so_tuner_address_stb6100_config_46865 tuner_address stb6100_config 0 46865 NULL
++disable_so_clk_div_ti_tscadc_dev_46872 clk_div ti_tscadc_dev 0 46872 NULL
++disable_so_last_change_time_lpfc_nodelist_46878 last_change_time lpfc_nodelist 0 46878 NULL
++disable_so_addr_mthca_catas_err_46893 addr mthca_catas_err 0 46893 NULL
++disable_so_card_snd_timer_ginfo_46895 card snd_timer_ginfo 0 46895 NULL
++disable_so_svm_set_tsc_khz_fndecl_46900 svm_set_tsc_khz fndecl 2 46900 NULL
++disable_so_buffer_addr_atl1c_tpd_desc_46908 buffer_addr atl1c_tpd_desc 0 46908 NULL
++disable_so_last_expires_snd_timer_system_private_46917 last_expires snd_timer_system_private 0 46917 NULL
++disable_so___arch_hweight16_fndecl_46932 __arch_hweight16 fndecl 0-1 46932 NULL
++disable_so_clockevent_delta2ns_fndecl_46934 clockevent_delta2ns fndecl 1-0 46934 NULL
++disable_so_addr_PVSCSISGElement_46942 addr PVSCSISGElement 0 46942 NULL nohasharray
++disable_so_bg_inode_bitmap_hi_ext4_group_desc_46942 bg_inode_bitmap_hi ext4_group_desc 0 46942 &disable_so_addr_PVSCSISGElement_46942
++disable_so_ai_clkctl_fast_pwrup_delay_fndecl_46950 ai_clkctl_fast_pwrup_delay fndecl 0 46950 NULL
++disable_so_demod_address_mb86a20s_config_46954 demod_address mb86a20s_config 0 46954 NULL
++disable_so_ebitmap_set_bit_fndecl_46955 ebitmap_set_bit fndecl 0-2 46955 NULL
++disable_so_set_eth_addr_fndecl_46958 set_eth_addr fndecl 0 46958 NULL
++disable_so_ghash_async_setkey_fndecl_46962 ghash_async_setkey fndecl 0-3 46962 NULL
++disable_so_hid_time_platform_driver_init_fndecl_46963 hid_time_platform_driver_init fndecl 0 46963 NULL
++disable_so_ad9523_set_clock_provider_fndecl_46979 ad9523_set_clock_provider fndecl 2-0-3 46979 NULL
++disable_so_pbl_addr_tpt_attributes_46980 pbl_addr tpt_attributes 0 46980 NULL
++disable_so_ts_dev_1_peak_time_ref_46981 ts_dev_1 peak_time_ref 0 46981 NULL
++disable_so_buff_phy_addr_amd8111e_rx_dr_46984 buff_phy_addr amd8111e_rx_dr 0 46984 NULL
++disable_so_scan_index_timestamp_iio_dev_46989 scan_index_timestamp iio_dev 0 46989 NULL
++disable_so_ceph_str_hash_linux_fndecl_46991 ceph_str_hash_linux fndecl 0-2 46991 NULL
++disable_so_compq_addr_hi_addr_ctrl_blk_46993 compq_addr_hi addr_ctrl_blk 0 46993 NULL
++disable_so_ctime_sec_ubifs_ino_node_46994 ctime_sec ubifs_ino_node 0 46994 NULL
++disable_so_ring_addr_fe_priv_46998 ring_addr fe_priv 0 46998 NULL
++disable_so_scratch_addr_dwc3_47001 scratch_addr dwc3 0 47001 NULL
++disable_so_be_vf_eth_addr_config_fndecl_47005 be_vf_eth_addr_config fndecl 0 47005 NULL
++disable_so_timeout_pardevice_47010 timeout pardevice 0 47010 NULL
++disable_so_crypto_aes_set_key_fndecl_47018 crypto_aes_set_key fndecl 3 47018 NULL
++disable_so_esp_cur_dma_addr_fndecl_47025 esp_cur_dma_addr fndecl 0 47025 NULL
++disable_so_ba1_addr_snd_cs46xx_47035 ba1_addr snd_cs46xx 0 47035 NULL
++disable_so_decode_bitmap_c_fndecl_47038 decode_bitmap_c fndecl 0-4 47038 NULL
++disable_so_NCR5380_set_timer_fndecl_47039 NCR5380_set_timer fndecl 2 47039 NULL
++disable_so_schedule_copy_fndecl_47040 schedule_copy fndecl 2-4-5-8 47040 NULL
++disable_so_ipath_sdma_abort_jiffies_ipath_devdata_47057 ipath_sdma_abort_jiffies ipath_devdata 0 47057 NULL nohasharray
++disable_so_rpi_paddr_hi_lpfc_mbx_post_hdr_tmpl_47057 rpi_paddr_hi lpfc_mbx_post_hdr_tmpl 0 47057 &disable_so_ipath_sdma_abort_jiffies_ipath_devdata_47057
++disable_so_address_acpi_dmar_hardware_unit_47065 address acpi_dmar_hardware_unit 0 47065 NULL
++disable_so_try_address_fndecl_47083 try_address fndecl 2-3 47083 NULL
++disable_so_mclk_freq_codec_priv_47084 mclk_freq codec_priv 0 47084 NULL
++disable_so_diva_os_get_pci_bus_fndecl_47095 diva_os_get_pci_bus fndecl 0 47095 NULL
++disable_so_shm_atime_shmid64_ds_47100 shm_atime shmid64_ds 0 47100 NULL
++disable_so_tag_reg_addr_qla8044_minidump_entry_cache_47106 tag_reg_addr qla8044_minidump_entry_cache 0 47106 NULL
++disable_so_timestamp_hi_mlx4_ts_cqe_47113 timestamp_hi mlx4_ts_cqe 0 47113 NULL nohasharray
++disable_so_pcap_rtc_read_time_fndecl_47113 pcap_rtc_read_time fndecl 0 47113 &disable_so_timestamp_hi_mlx4_ts_cqe_47113
++disable_so_xircom_interrupt_fndecl_47114 xircom_interrupt fndecl 1 47114 NULL
++disable_so_atombios_crtc_set_base_atomic_fndecl_47122 atombios_crtc_set_base_atomic fndecl 0-3-4 47122 NULL
++disable_so_ath5k_eeprom_init_11a_pcal_freq_fndecl_47134 ath5k_eeprom_init_11a_pcal_freq fndecl 0 47134 NULL
++disable_so_tcs3472_show_int_time_available_fndecl_47135 tcs3472_show_int_time_available fndecl 0 47135 NULL
++disable_so_freq_cx88_core_47137 freq cx88_core 0 47137 NULL
++disable_so_gen6_signal_fndecl_47138 gen6_signal fndecl 0-2 47138 NULL
++disable_so_wlc_lcnphy_rx_signal_power_fndecl_47140 wlc_lcnphy_rx_signal_power fndecl 0 47140 NULL
++disable_so_sq_size_log2_t3_wq_47146 sq_size_log2 t3_wq 0 47146 NULL
++disable_so_rht_head_hashfn_fndecl_47148 rht_head_hashfn fndecl 0 47148 NULL
++disable_so_core_frequency_acpi_processor_px_47149 core_frequency acpi_processor_px 0 47149 NULL
++disable_so_nilfs_btree_do_lookup_last_fndecl_47151 nilfs_btree_do_lookup_last fndecl 0 47151 NULL
++disable_so_last_intr_timestamp_ctlr_info_47154 last_intr_timestamp ctlr_info 0 47154 NULL
++disable_so_curr_freq_rt2x00_dev_47156 curr_freq rt2x00_dev 0 47156 NULL
++disable_so_uid_cf_mod_47160 uid cf_mod 0 47160 NULL
++disable_so_rem_mceusb_dev_47168 rem mceusb_dev 0 47168 NULL
++disable_so_lpphy_qdiv_roundup_fndecl_47185 lpphy_qdiv_roundup fndecl 0-2-1 47185 NULL
++disable_so_start_phys_addr_qxl_memslot_47196 start_phys_addr qxl_memslot 0 47196 NULL
++disable_so_update_ia32_tsc_adjust_msr_fndecl_47211 update_ia32_tsc_adjust_msr fndecl 2 47211 NULL
++disable_so_radeon_atom_set_engine_clock_fndecl_47215 radeon_atom_set_engine_clock fndecl 2 47215 NULL
++disable_so_mtt_base_addr_l_mlx4_qp_context_47232 mtt_base_addr_l mlx4_qp_context 0 47232 NULL
++disable_so_mtt_base_addr_h_mlx4_srq_context_47233 mtt_base_addr_h mlx4_srq_context 0 47233 NULL
++disable_so_init_cpufreq_driver_47242 init cpufreq_driver 0 47242 NULL
++disable_so_gpio_nsleep_auok190x_board_47243 gpio_nsleep auok190x_board 0 47243 NULL
++disable_so_il4965_count_chain_bitmap_fndecl_47252 il4965_count_chain_bitmap fndecl 0-1 47252 NULL
++disable_so_fl_downgrade_time_file_lock_47257 fl_downgrade_time file_lock 0 47257 NULL
++disable_so_get_low_record_time_index_fndecl_47259 get_low_record_time_index fndecl 2 47259 NULL
++disable_so_efx_ptp_get_timestamp_corrections_fndecl_47266 efx_ptp_get_timestamp_corrections fndecl 0 47266 NULL nohasharray
++disable_so_hactive_timing_47266 hactive timing 0 47266 &disable_so_efx_ptp_get_timestamp_corrections_fndecl_47266
++disable_so_feedback_divider_aty128_pll_47275 feedback_divider aty128_pll 0 47275 NULL
++disable_so_daddr_max_pktgen_dev_47293 daddr_max pktgen_dev 0 47293 NULL
++disable_so_addr_ce_desc_47294 addr ce_desc 0 47294 NULL
++disable_so_val_addr0_nphy_rf_control_override_rev3_47315 val_addr0 nphy_rf_control_override_rev3 0 47315 NULL
++disable_so_SYSC_time_fndecl_47318 SYSC_time fndecl 0 47318 NULL
++disable_so_device_addr_hw_cmd_47322 device_addr hw_cmd 0 47322 NULL
++disable_so_cryptd_hash_init_fndecl_47329 cryptd_hash_init fndecl 2 47329 NULL
++disable_so_hpfs_add_sector_to_btree_fndecl_47344 hpfs_add_sector_to_btree fndecl 0-2-4 47344 NULL
++disable_so_vref_delay_usecs_ad7877_47346 vref_delay_usecs ad7877 0 47346 NULL
++disable_so_jiftime_fndecl_47359 jiftime fndecl 2 47359 NULL
++disable_so_year_timestamp_47377 year timestamp 0 47377 NULL
++disable_so_rt_runtime_rt_bandwidth_47380 rt_runtime rt_bandwidth 0 47380 NULL
++disable_so_team_port_set_orig_dev_addr_fndecl_47381 team_port_set_orig_dev_addr fndecl 0 47381 NULL
++disable_so_ldt_selector_tss_segment_32_47382 ldt_selector tss_segment_32 0 47382 NULL
++disable_so_atomic_check_drm_plane_helper_funcs_47383 atomic_check drm_plane_helper_funcs 0 47383 NULL
++disable_so_ath9k_hw_set_global_txtimeout_fndecl_47387 ath9k_hw_set_global_txtimeout fndecl 2 47387 NULL
++disable_so_crypto_blkcipher_setkey_fndecl_47393 crypto_blkcipher_setkey fndecl 0-3 47393 NULL
++disable_so_signal_libipw_rx_stats_47394 signal libipw_rx_stats 0 47394 NULL
++disable_so_wm831x_rtc_readtime_fndecl_47406 wm831x_rtc_readtime fndecl 0 47406 NULL nohasharray
++disable_so_reg_write_fndecl_47406 reg_write fndecl 2 47406 &disable_so_wm831x_rtc_readtime_fndecl_47406
++disable_so_rx_int_delay_e1000_adapter_47412 rx_int_delay e1000_adapter 0 47412 NULL
++disable_so_watchdog_timeo_net_device_47415 watchdog_timeo net_device 0 47415 NULL
++disable_so_m_hi_cfg_bridge_delay_drxk_state_47416 m_hi_cfg_bridge_delay drxk_state 0 47416 NULL
++disable_so_xfs_btree_get_rec_fndecl_47417 xfs_btree_get_rec fndecl 0 47417 NULL
++disable_so_del_timer_fndecl_47421 del_timer fndecl 0 47421 NULL
++disable_so_cq_dma_addr_nvme_queue_47424 cq_dma_addr nvme_queue 0 47424 NULL nohasharray
++disable_so_pci_bus_write_config_byte_fndecl_47424 pci_bus_write_config_byte fndecl 0-2-3-4 47424 &disable_so_cq_dma_addr_nvme_queue_47424
++disable_so_printk_timed_ratelimit_fndecl_47432 printk_timed_ratelimit fndecl 2 47432 NULL
++disable_so_addr_high_bufq_addr_element_47437 addr_high bufq_addr_element 0 47437 NULL
++disable_so_snd_seq_oss_timer_tempo_fndecl_47444 snd_seq_oss_timer_tempo fndecl 0 47444 NULL
++disable_so_radeon_atom_get_memory_pll_dividers_fndecl_47447 radeon_atom_get_memory_pll_dividers fndecl 0-2 47447 NULL
++disable_so_vdi_atime_vxfs_inode_info_47463 vdi_atime vxfs_inode_info 0 47463 NULL nohasharray
++disable_so_timestamp_iwl_priv_47463 timestamp iwl_priv 0 47463 &disable_so_vdi_atime_vxfs_inode_info_47463
++disable_so_ts_steal_jiffies_gru_thread_state_47477 ts_steal_jiffies gru_thread_state 0 47477 NULL
++disable_so_brcms_c_set_addrmatch_fndecl_47479 brcms_c_set_addrmatch fndecl 2 47479 NULL
++disable_so_cia_max_keysize_cipher_alg_47480 cia_max_keysize cipher_alg 0 47480 NULL
++disable_so_inet_addr_type_fndecl_47499 inet_addr_type fndecl 2 47499 NULL
++disable_so_sd_atime_stat_data_47502 sd_atime stat_data 0 47502 NULL
++disable_so_tcf_hash_create_fndecl_47512 tcf_hash_create fndecl 0-4 47512 NULL
++disable_so_addr_low_ssp_ini_io_start_req_47520 addr_low ssp_ini_io_start_req 0 47520 NULL nohasharray
++disable_so_mlx4_bitmap_free_range_fndecl_47520 mlx4_bitmap_free_range fndecl 2-3 47520 &disable_so_addr_low_ssp_ini_io_start_req_47520
++disable_so___xfrm4_dpref_spref_hash_fndecl_47524 __xfrm4_dpref_spref_hash fndecl 0 47524 NULL
++disable_so_error_info_addr_mvm_alive_resp_ver2_47529 error_info_addr mvm_alive_resp_ver2 0 47529 NULL
++disable_so_idle_freq_intel_gen6_power_mgmt_47531 idle_freq intel_gen6_power_mgmt 0 47531 NULL
++disable_so_regidx_ath9k_debug_47533 regidx ath9k_debug 0 47533 NULL
++disable_so___delay_fndecl_47535 __delay fndecl 1 47535 NULL
++disable_so_gid_vardecl_initramfs_c_47557 gid vardecl_initramfs.c 0 47557 NULL
++disable_so_channel_freq_wmi_scan_ev_arg_47561 channel_freq wmi_scan_ev_arg 0 47561 NULL nohasharray
++disable_so_rx_hash_log_tbl_sz_mlx5e_params_47561 rx_hash_log_tbl_sz mlx5e_params 0 47561 &disable_so_channel_freq_wmi_scan_ev_arg_47561
++disable_so_addr_high_sata_start_req_47563 addr_high sata_start_req 0 47563 NULL nohasharray
++disable_so_addr_pages_devres_47563 addr pages_devres 0 47563 &disable_so_addr_high_sata_start_req_47563
++disable_so_min_align_snd_pcm_runtime_47579 min_align snd_pcm_runtime 0 47579 NULL nohasharray
++disable_so_dev_set_mac_address_fndecl_47579 dev_set_mac_address fndecl 0 47579 &disable_so_min_align_snd_pcm_runtime_47579
++disable_so_sip_sprintf_addr_port_fndecl_47581 sip_sprintf_addr_port fndecl 0-4 47581 NULL
++disable_so_physical_addr_cper_sec_mem_err_47582 physical_addr cper_sec_mem_err 0 47582 NULL nohasharray
++disable_so_log2taps_oslec_state_47582 log2taps oslec_state 0 47582 &disable_so_physical_addr_cper_sec_mem_err_47582
++disable_so_rehash_time_sfb_sched_data_47586 rehash_time sfb_sched_data 0 47586 NULL nohasharray
++disable_so_x25_parse_address_block_fndecl_47586 x25_parse_address_block fndecl 0 47586 &disable_so_rehash_time_sfb_sched_data_47586
++disable_so_write_reg_fndecl_47589 write_reg fndecl 3-2 47589 NULL
++disable_so_buffer_addr_tx_packet_desc_47592 buffer_addr tx_packet_desc 0 47592 NULL
++disable_so_xfs_iomap_write_delay_fndecl_47595 xfs_iomap_write_delay fndecl 0-2-3 47595 NULL
++disable_so_valleyview_rps_min_freq_fndecl_47598 valleyview_rps_min_freq fndecl 0 47598 NULL
++disable_so_eft_addr_h_qla2xxx_fw_dump_47600 eft_addr_h qla2xxx_fw_dump 0 47600 NULL
++disable_so_tms_cstime_tms_47604 tms_cstime tms 0 47604 NULL nohasharray
++disable_so_btrfs_node_key_to_cpu_fndecl_47604 btrfs_node_key_to_cpu fndecl 3 47604 &disable_so_tms_cstime_tms_47604
++disable_so_base_reg_regcache_rbtree_node_47612 base_reg regcache_rbtree_node 0 47612 NULL
++disable_so_bd_list_addr_lo_bnx2i_cmd_request_47615 bd_list_addr_lo bnx2i_cmd_request 0 47615 NULL
++disable_so_ltr501_ps_read_samp_freq_fndecl_47616 ltr501_ps_read_samp_freq fndecl 0 47616 NULL
++disable_so_freq_pulse_event_47630 freq pulse_event 0 47630 NULL
++disable_so_ixgbe_set_rss_hash_opt_fndecl_47632 ixgbe_set_rss_hash_opt fndecl 0 47632 NULL
++disable_so_timeout_vardecl_hvc_console_c_47646 timeout vardecl_hvc_console.c 0 47646 NULL
++disable_so_buffer_addr_e1000_tx_desc_47648 buffer_addr e1000_tx_desc 0 47648 NULL
++disable_so_keyctl_set_timeout_fndecl_47649 keyctl_set_timeout fndecl 2-1-0 47649 NULL
++disable_so_cfg80211_wext_siwfreq_fndecl_47653 cfg80211_wext_siwfreq fndecl 0 47653 NULL
++disable_so_dw_wdt_time_left_fndecl_47654 dw_wdt_time_left fndecl 0 47654 NULL
++disable_so_tstep_addr_palmas_regs_info_47657 tstep_addr palmas_regs_info 0 47657 NULL
++disable_so_frac_period_rest_dummy_systimer_pcm_47674 frac_period_rest dummy_systimer_pcm 0 47674 NULL
++disable_so_fill_bitmap_rle_bits_fndecl_47678 fill_bitmap_rle_bits fndecl 0 47678 NULL
++disable_so_set_timebase_fndecl_47679 set_timebase fndecl 1 47679 NULL
++disable_so_i2c_addr_tua9001_config_47682 i2c_addr tua9001_config 0 47682 NULL
++disable_so_time_scan_survey_info_47684 time_scan survey_info 0 47684 NULL
++disable_so_lzo_decompress_fndecl_47694 lzo_decompress fndecl 2 47694 NULL
++disable_so_hsync_pulse_width_lvds_dvo_timing_47698 hsync_pulse_width lvds_dvo_timing 0 47698 NULL
++disable_so_bdc_address_device_fndecl_47704 bdc_address_device fndecl 0-2 47704 NULL
++disable_so_base_addr_ivtv_47705 base_addr ivtv 0 47705 NULL
++disable_so_clock_start_soc_camera_host_ops_47707 clock_start soc_camera_host_ops 0 47707 NULL
++disable_so_enum_dv_timings_v4l2_subdev_pad_ops_47708 enum_dv_timings v4l2_subdev_pad_ops 0 47708 NULL nohasharray
++disable_so_crypto_authenc_esn_encrypt_fndecl_47708 crypto_authenc_esn_encrypt fndecl 0 47708 &disable_so_enum_dv_timings_v4l2_subdev_pad_ops_47708
++disable_so_rv740_get_mclk_frequency_ratio_fndecl_47715 rv740_get_mclk_frequency_ratio fndecl 0-1 47715 NULL
++disable_so_lola_set_clock_fndecl_47716 lola_set_clock fndecl 0 47716 NULL
++disable_so_hid_rtc_read_time_fndecl_47725 hid_rtc_read_time fndecl 0 47725 NULL
++disable_so_ext4_update_other_inodes_time_fndecl_47730 ext4_update_other_inodes_time fndecl 2 47730 NULL
++disable_so_uartlite_inbe32_fndecl_47739 uartlite_inbe32 fndecl 0 47739 NULL
++disable_so_tm_yday_rtc_time_47740 tm_yday rtc_time 0 47740 NULL
++disable_so_snd_azf3328_timer_fndecl_47746 snd_azf3328_timer fndecl 0-2 47746 NULL
++disable_so_pci_bus_atto_channel_info_47747 pci_bus atto_channel_info 0 47747 NULL
++disable_so_control_addr_qla8044_minidump_entry_cache_47750 control_addr qla8044_minidump_entry_cache 0 47750 NULL
++disable_so_bit_enables_uv1h_lb_target_physical_apic_id_mask_s_47755 bit_enables uv1h_lb_target_physical_apic_id_mask_s 0 47755 NULL
++disable_so_tx_ring_dma_addr_amd8111e_priv_47757 tx_ring_dma_addr amd8111e_priv 0 47757 NULL
++disable_so_frac_period_size_dummy_systimer_pcm_47758 frac_period_size dummy_systimer_pcm 0 47758 NULL
++disable_so_inet6_addr_add_fndecl_47759 inet6_addr_add fndecl 0-2-5-7-8-6 47759 NULL
++disable_so_initial_descriptor_timeout_vardecl_hub_c_47763 initial_descriptor_timeout vardecl_hub.c 0 47763 NULL
++disable_so_nbytes_ccp_aes_cmac_req_ctx_47773 nbytes ccp_aes_cmac_req_ctx 0 47773 NULL
++disable_so_account_idle_time_fndecl_47777 account_idle_time fndecl 1 47777 NULL
++disable_so_ip_addr_nes_arp_entry_47790 ip_addr nes_arp_entry 0 47790 NULL
++disable_so_sha1_generic_mod_init_fndecl_47800 sha1_generic_mod_init fndecl 0 47800 NULL
++disable_so_nla_validate_nested_fndecl_47801 nla_validate_nested fndecl 2-0 47801 NULL
++disable_so_enable_refdiv_dibx000_bandwidth_config_47815 enable_refdiv dibx000_bandwidth_config 0 47815 NULL
++disable_so_demod_address_cx24123_config_47819 demod_address cx24123_config 0 47819 NULL
++disable_so_alloc_usb_address_fndecl_47822 alloc_usb_address fndecl 0 47822 NULL
++disable_so_compat_sys_signalfd_fndecl_47830 compat_sys_signalfd fndecl 0 47830 NULL
++disable_so_silence_filled_snd_pcm_runtime_47852 silence_filled snd_pcm_runtime 0 47852 NULL nohasharray
++disable_so_demod_addr_tm6000_core_47852 demod_addr tm6000_core 0 47852 &disable_so_silence_filled_snd_pcm_runtime_47852
++disable_so___net_get_random_once_fndecl_47854 __net_get_random_once fndecl 2 47854 NULL
++disable_so_add_device_randomness_fndecl_47860 add_device_randomness fndecl 2 47860 NULL nohasharray
++disable_so_put_dec_trunc8_fndecl_47860 put_dec_trunc8 fndecl 2 47860 &disable_so_add_device_randomness_fndecl_47860
++disable_so___ntfs_bitmap_set_bits_in_run_fndecl_47864 __ntfs_bitmap_set_bits_in_run fndecl 2-3 47864 NULL
++disable_so_qce_ahash_digest_fndecl_47873 qce_ahash_digest fndecl 0 47873 NULL
++disable_so_i_gid_f2fs_inode_47888 i_gid f2fs_inode 0 47888 NULL
++disable_so_currentfreq_s921_state_47895 currentfreq s921_state 0 47895 NULL
++disable_so_dma_ring_addr_i40e_virtchnl_rxq_info_47897 dma_ring_addr i40e_virtchnl_rxq_info 0 47897 NULL
++disable_so_qla82xx_decode_crb_addr_fndecl_47901 qla82xx_decode_crb_addr fndecl 0-1 47901 NULL
++disable_so_xtal_cap20p_r820t_freq_range_47903 xtal_cap20p r820t_freq_range 0 47903 NULL
++disable_so_drbd_uuid_dump_fndecl_47904 drbd_uuid_dump fndecl 4 47904 NULL
++disable_so_host_addr_gnttab_unmap_grant_ref_47911 host_addr gnttab_unmap_grant_ref 0 47911 NULL
++disable_so_crypto_ccm_setkey_fndecl_47913 crypto_ccm_setkey fndecl 0-3 47913 NULL
++disable_so_ipath_sdma_abort_intr_timeout_ipath_devdata_47922 ipath_sdma_abort_intr_timeout ipath_devdata 0 47922 NULL
++disable_so_think_time_usb_tt_47928 think_time usb_tt 0 47928 NULL
++disable_so_vaddr_ib_reth_47929 vaddr ib_reth 0 47929 NULL
++disable_so_num_clock_sources_echoaudio_47930 num_clock_sources echoaudio 0 47930 NULL nohasharray
++disable_so_shutdwn_delay_cs42l73_private_47930 shutdwn_delay cs42l73_private 0 47930 &disable_so_num_clock_sources_echoaudio_47930
++disable_so_count_bitmaps_fndecl_47942 count_bitmaps fndecl 0 47942 NULL
++disable_so_crypto_aead_ivsize_fndecl_47945 crypto_aead_ivsize fndecl 0 47945 NULL
++disable_so_rs5c348_rtc_read_time_fndecl_47948 rs5c348_rtc_read_time fndecl 0 47948 NULL
++disable_so_kvm_set_lapic_tscdeadline_msr_fndecl_47952 kvm_set_lapic_tscdeadline_msr fndecl 2 47952 NULL
++disable_so_ext4_inode_bitmap_set_fndecl_47957 ext4_inode_bitmap_set fndecl 3 47957 NULL
++disable_so_sysctl_llc2_busy_timeout_vardecl_47965 sysctl_llc2_busy_timeout vardecl 0 47965 NULL
++disable_so_atl2_hash_mc_addr_fndecl_47966 atl2_hash_mc_addr fndecl 0 47966 NULL
++disable_so_wm97xx_reg_write_fndecl_47973 wm97xx_reg_write fndecl 3-2 47973 NULL
++disable_so_isci_setup_interrupts_fndecl_47977 isci_setup_interrupts fndecl 0 47977 NULL
++disable_so_hdmi_mode_alternate_clock_fndecl_47981 hdmi_mode_alternate_clock fndecl 0 47981 NULL
++disable_so_xhci_address_device_fndecl_47987 xhci_address_device fndecl 0 47987 NULL
++disable_so_snd_timer_start1_fndecl_47992 snd_timer_start1 fndecl 3-0 47992 NULL
++disable_so_timing_setup_fndecl_48002 timing_setup fndecl 3-4 48002 NULL
++disable_so_clk_freq_g762_platform_data_48004 clk_freq g762_platform_data 0 48004 NULL
++disable_so_sh_addralign_elf64_shdr_48012 sh_addralign elf64_shdr 0 48012 NULL nohasharray
++disable_so_crypto_aead_reqsize_fndecl_48012 crypto_aead_reqsize fndecl 0 48012 &disable_so_sh_addralign_elf64_shdr_48012
++disable_so_qlcnic_82xx_get_mac_address_fndecl_48015 qlcnic_82xx_get_mac_address fndecl 0 48015 NULL
++disable_so_frequency_dvb_pll_priv_48016 frequency dvb_pll_priv 0 48016 NULL
++disable_so_i915_min_freq_set_fndecl_48019 i915_min_freq_set fndecl 2-0 48019 NULL
++disable_so_slave_addr_psb_intel_sdvo_48022 slave_addr psb_intel_sdvo 0 48022 NULL
++disable_so_si_get_ddr3_mclk_frequency_ratio_fndecl_48025 si_get_ddr3_mclk_frequency_ratio fndecl 0-1 48025 NULL
++disable_so_lgdt3306a_fe_sleep_fndecl_48026 lgdt3306a_fe_sleep fndecl 0 48026 NULL
++disable_so_ctnl_timeout_fill_info_fndecl_48030 ctnl_timeout_fill_info fndecl 3-5-0-2 48030 NULL
++disable_so_r69_val_fc2580_freq_regs_48037 r69_val fc2580_freq_regs 0 48037 NULL nohasharray
++disable_so_btree_lookup32_fndecl_48037 btree_lookup32 fndecl 2 48037 &disable_so_r69_val_fc2580_freq_regs_48037
++disable_so_reservation_object_wait_timeout_rcu_fndecl_48039 reservation_object_wait_timeout_rcu fndecl 0-4 48039 NULL
++disable_so_utimescaled_task_struct_48041 utimescaled task_struct 0 48041 NULL
++disable_so_hrtimer_init_fndecl_48048 hrtimer_init fndecl 2 48048 NULL
++disable_so_regmap_bulk_write_fndecl_48058 regmap_bulk_write fndecl 0-2-4 48058 NULL
++disable_so_rt_saddr_dn_route_48062 rt_saddr dn_route 0 48062 NULL
++disable_so_ring_interrupt_index_fndecl_48065 ring_interrupt_index fndecl 0 48065 NULL nohasharray
++disable_so_dclk_freq_i7core_pvt_48065 dclk_freq i7core_pvt 0 48065 &disable_so_ring_interrupt_index_fndecl_48065
++disable_so_di_atime_gfs2_dinode_48066 di_atime gfs2_dinode 0 48066 NULL
++disable_so_be32_add_cpu_fndecl_48069 be32_add_cpu fndecl 2 48069 NULL
++disable_so_keepalive_time_tcp_sock_48076 keepalive_time tcp_sock 0 48076 NULL nohasharray
++disable_so_mptscsih_get_tm_timeout_fndecl_48076 mptscsih_get_tm_timeout fndecl 0 48076 &disable_so_keepalive_time_tcp_sock_48076
++disable_so_set_channel_address_fndecl_48079 set_channel_address fndecl 2-3 48079 NULL
++disable_so_clock_vardecl_max6650_c_48080 clock vardecl_max6650.c 0 48080 NULL
++disable_so_mapped_loc_addr_nes_cm_node_48083 mapped_loc_addr nes_cm_node 0 48083 NULL
++disable_so___br_ip6_hash_fndecl_48084 __br_ip6_hash fndecl 0 48084 NULL
++disable_so_si4713_tx_tune_freq_fndecl_48092 si4713_tx_tune_freq fndecl 0-2 48092 NULL
++disable_so_wait_for_completion_killable_timeout_fndecl_48103 wait_for_completion_killable_timeout fndecl 2-0 48103 NULL
++disable_so_lpfc_max_scsicmpl_time_init_fndecl_48110 lpfc_max_scsicmpl_time_init fndecl 2 48110 NULL
++disable_so_lib80211_register_crypto_ops_fndecl_48112 lib80211_register_crypto_ops fndecl 0 48112 NULL
++disable_so_get_error_address_fndecl_48129 get_error_address fndecl 0 48129 NULL nohasharray
++disable_so_sfreq_sst_byt_pcm_params_48129 sfreq sst_byt_pcm_params 0 48129 &disable_so_get_error_address_fndecl_48129
++disable_so_vsync_off_lvds_dvo_timing_48134 vsync_off lvds_dvo_timing 0 48134 NULL
++disable_so_transop_timeout_ipr_ioa_cfg_48141 transop_timeout ipr_ioa_cfg 0 48141 NULL
++disable_so_addrconf_prefix_rcv_fndecl_48148 addrconf_prefix_rcv fndecl 3 48148 NULL
++disable_so_copied_seq_tcp_sock_48149 copied_seq tcp_sock 0 48149 NULL
++disable_so_pm_autosleep_set_state_fndecl_48154 pm_autosleep_set_state fndecl 0 48154 NULL
++disable_so_mlx4_en_read_clock_fndecl_48159 mlx4_en_read_clock fndecl 0 48159 NULL
++disable_so_ipmi_request_settime_fndecl_48166 ipmi_request_settime fndecl 0 48166 NULL
++disable_so_atime_p9_wstat_48170 atime p9_wstat 0 48170 NULL
++disable_so_sys_mq_timedsend_fndecl_48174 sys_mq_timedsend fndecl 3-1 48174 NULL
++disable_so_td_base_addr_c67x00_hcd_48184 td_base_addr c67x00_hcd 0 48184 NULL
++disable_so_mca_tstamp_ifmcaddr6_48186 mca_tstamp ifmcaddr6 0 48186 NULL
++disable_so_tobe_rx_coal_timeval_vnic_cq_48199 tobe_rx_coal_timeval vnic_cq 0 48199 NULL nohasharray
++disable_so_read_msr_fndecl_48199 read_msr fndecl 0 48199 &disable_so_tobe_rx_coal_timeval_vnic_cq_48199
++disable_so_main_blkaddr_f2fs_sm_info_48201 main_blkaddr f2fs_sm_info 0 48201 NULL
++disable_so_doorbell_physical_address_kgd2kfd_shared_resources_48202 doorbell_physical_address kgd2kfd_shared_resources 0 48202 NULL
++disable_so_aa_fs_seq_hash_open_fndecl_48204 aa_fs_seq_hash_open fndecl 0 48204 NULL
++disable_so_skcipher_all_sg_nents_fndecl_48207 skcipher_all_sg_nents fndecl 0 48207 NULL
++disable_so_addr_r10dev_48214 addr r10dev 0 48214 NULL
++disable_so_btc_set_ulv_dram_timing_fndecl_48216 btc_set_ulv_dram_timing fndecl 0 48216 NULL
++disable_so_gid_btrfs_inode_item_48221 gid btrfs_inode_item 0 48221 NULL
++disable_so_time_offset_vardecl_ntp_c_48224 time_offset vardecl_ntp.c 0 48224 NULL
++disable_so_bitmaps_hpfs_super_block_48227 bitmaps hpfs_super_block 0 48227 NULL
++disable_so_tpg_hdiv_fndecl_48235 tpg_hdiv fndecl 0-3 48235 NULL
++disable_so_nextmsg_time_vardecl_ipath_intr_c_48236 nextmsg_time vardecl_ipath_intr.c 0 48236 NULL
++disable_so_src_bitmap_qxl_copy_48243 src_bitmap qxl_copy 0 48243 NULL nohasharray
++disable_so_btree_split_sibling_fndecl_48243 btree_split_sibling fndecl 0-3 48243 &disable_so_src_bitmap_qxl_copy_48243
++disable_so_sm1_runtime_sc_48251 sm1 runtime_sc 0 48251 NULL nohasharray
++disable_so_r6f_val_fc2580_freq_regs_48251 r6f_val fc2580_freq_regs 0 48251 &disable_so_sm1_runtime_sc_48251
++disable_so_dp_daddr_rds_iw_connect_private_48258 dp_daddr rds_iw_connect_private 0 48258 NULL nohasharray
++disable_so_ceph_dentry_hash_fndecl_48258 ceph_dentry_hash fndecl 0 48258 &disable_so_dp_daddr_rds_iw_connect_private_48258
++disable_so_tm_delta_smt_timer_48263 tm_delta smt_timer 0 48263 NULL nohasharray
++disable_so_enabled_hrtimer_events_ehci_hcd_48263 enabled_hrtimer_events ehci_hcd 0 48263 &disable_so_tm_delta_smt_timer_48263
++disable_so_clock_task_rq_48277 clock_task rq 0 48277 NULL
++disable_so_ui_mtime_ufs2_inode_48286 ui_mtime ufs2_inode 0 48286 NULL
++disable_so_sumo_parse_pplib_clock_info_fndecl_48288 sumo_parse_pplib_clock_info fndecl 3 48288 NULL
++disable_so_crypto_shash_final_fndecl_48296 crypto_shash_final fndecl 0 48296 NULL
++disable_so_tproxy_handle_time_wait4_fndecl_48305 tproxy_handle_time_wait4 fndecl 2-3 48305 NULL
++disable_so_timeout_pg_48333 timeout pg 0 48333 NULL
++disable_so_set_next_event_clock_event_device_48353 set_next_event clock_event_device 1 48353 NULL
++disable_so_VCOdivider_cx24123_bandselect_val_48358 VCOdivider cx24123_bandselect_val 0 48358 NULL
++disable_so_pch_mac_start_address_pch_phub_reg_48361 pch_mac_start_address pch_phub_reg 0 48361 NULL nohasharray
++disable_so_dib8000_write_word_fndecl_48361 dib8000_write_word fndecl 2-3 48361 &disable_so_pch_mac_start_address_pch_phub_reg_48361
++disable_so_skcipher_wait_for_wmem_fndecl_48362 skcipher_wait_for_wmem fndecl 0-2 48362 NULL
++disable_so_num_mc_addrs_ixgb_hw_48363 num_mc_addrs ixgb_hw 0 48363 NULL
++disable_so_timeout_net_conf_48365 timeout net_conf 0 48365 NULL
++disable_so_last_awake_jiffies_rtl_ps_ctl_48378 last_awake_jiffies rtl_ps_ctl 0 48378 NULL
++disable_so_mphash_entries_vardecl_namespace_c_48379 mphash_entries vardecl_namespace.c 0 48379 NULL
++disable_so_dbs_freq_increase_fndecl_48380 dbs_freq_increase fndecl 2 48380 NULL nohasharray
++disable_so_crypto_register_rngs_fndecl_48380 crypto_register_rngs fndecl 0 48380 &disable_so_dbs_freq_increase_fndecl_48380
++disable_so_lgdt3306a_read_signal_strength_fndecl_48382 lgdt3306a_read_signal_strength fndecl 0 48382 NULL
++disable_so_di_atime_efs_dinode_48386 di_atime efs_dinode 0 48386 NULL
++disable_so_iscsi_nacl_attrib_show_nopin_timeout_fndecl_48391 iscsi_nacl_attrib_show_nopin_timeout fndecl 0 48391 NULL
++disable_so_update_streaming_control_runtime_48422 update_streaming control_runtime 0 48422 NULL
++disable_so_setpolicy_cpufreq_driver_48433 setpolicy cpufreq_driver 0 48433 NULL
++disable_so_clockid_timerfd_ctx_48442 clockid timerfd_ctx 0 48442 NULL
++disable_so_set_bau_on_time_bau_control_48444 set_bau_on_time bau_control 0 48444 NULL nohasharray
++disable_so_vclk_post_div_pll_ct_48444 vclk_post_div pll_ct 0 48444 &disable_so_set_bau_on_time_bau_control_48444
++disable_so_test_acipher_jiffies_fndecl_48452 test_acipher_jiffies fndecl 0 48452 NULL
++disable_so_radio_syn_reserved_addr27_b43_nphy_channeltab_entry_rev3_48453 radio_syn_reserved_addr27 b43_nphy_channeltab_entry_rev3 0 48453 NULL
++disable_so_fan_timer_f75375_data_48461 fan_timer f75375_data 0 48461 NULL nohasharray
++disable_so_address_ksm_scan_48461 address ksm_scan 0 48461 &disable_so_fan_timer_f75375_data_48461
++disable_so_elements_bitmap_port_48466 elements bitmap_port 0 48466 NULL
++disable_so_zd_chip_read_mac_addr_fw_fndecl_48469 zd_chip_read_mac_addr_fw fndecl 0 48469 NULL
++disable_so___round_jiffies_up_relative_fndecl_48487 __round_jiffies_up_relative fndecl 2-1-0 48487 NULL
++disable_so_gfs2_disk_hash_fndecl_48491 gfs2_disk_hash fndecl 2 48491 NULL
++disable_so_max6900_rtc_read_time_fndecl_48493 max6900_rtc_read_time fndecl 0 48493 NULL nohasharray
++disable_so_bsscfgidx_brcmf_mbss_ssid_le_48493 bsscfgidx brcmf_mbss_ssid_le 0 48493 &disable_so_max6900_rtc_read_time_fndecl_48493
++disable_so_kvm_set_tsc_khz_fndecl_48520 kvm_set_tsc_khz fndecl 2 48520 NULL
++disable_so_rx8025_set_time_fndecl_48524 rx8025_set_time fndecl 0 48524 NULL
++disable_so_usbvision_stream_interrupt_fndecl_48527 usbvision_stream_interrupt fndecl 0 48527 NULL nohasharray
++disable_so_ip_vs_lblc_hashkey_fndecl_48527 ip_vs_lblc_hashkey fndecl 1 48527 &disable_so_usbvision_stream_interrupt_fndecl_48527
++disable_so_timeout_cm_av_48528 timeout cm_av 0 48528 NULL nohasharray
++disable_so_ww_mutex_lock_slow_interruptible_fndecl_48528 ww_mutex_lock_slow_interruptible fndecl 0 48528 &disable_so_timeout_cm_av_48528
++disable_so___rmid_queue_time_ms_vardecl_perf_event_intel_cqm_c_48542 __rmid_queue_time_ms vardecl_perf_event_intel_cqm.c 0 48542 NULL
++disable_so_blk_addr_node_info_48545 blk_addr node_info 0 48545 NULL
++disable_so_SYSC_sched_getscheduler_fndecl_48547 SYSC_sched_getscheduler fndecl 0-1 48547 NULL
++disable_so_i915_max_freq_get_fndecl_48551 i915_max_freq_get fndecl 0 48551 NULL
++disable_so_min_dwell_time_active_long_conf_scan_settings_48560 min_dwell_time_active_long conf_scan_settings 0 48560 NULL nohasharray
++disable_so_set_memclock_fndecl_48560 set_memclock fndecl 2 48560 &disable_so_min_dwell_time_active_long_conf_scan_settings_48560
++disable_so_ext4_get_bitmap_fndecl_48566 ext4_get_bitmap fndecl 2 48566 NULL
++disable_so_read_addr___pollrd_48572 read_addr __pollrd 0 48572 NULL
++disable_so_cn_esc_printf_fndecl_48573 cn_esc_printf fndecl 0 48573 NULL
++disable_so_osd_keepalive_timeout_ceph_options_48576 osd_keepalive_timeout ceph_options 0 48576 NULL nohasharray
++disable_so_freq_cea_sad_48576 freq cea_sad 0 48576 &disable_so_osd_keepalive_timeout_ceph_options_48576
++disable_so_rp_down_timeout_vlv_s0ix_state_48583 rp_down_timeout vlv_s0ix_state 0 48583 NULL
++disable_so_x86_coreid_bits_cpuinfo_x86_48589 x86_coreid_bits cpuinfo_x86 0 48589 NULL nohasharray
++disable_so_radeon_fence_seq_signaled_fndecl_48589 radeon_fence_seq_signaled fndecl 3 48589 &disable_so_x86_coreid_bits_cpuinfo_x86_48589
++disable_so_timeval_to_jiffies_fndecl_48593 timeval_to_jiffies fndecl 0 48593 NULL
++disable_so_addr_hash_fndecl_48596 addr_hash fndecl 0-2-3 48596 NULL
++disable_so_frame_timestamp_iwl_tdls_channel_switch_timing_48601 frame_timestamp iwl_tdls_channel_switch_timing 0 48601 NULL
++disable_so_post_divider_pll_18818_48604 post_divider pll_18818 0 48604 NULL
++disable_so_mapaddr_ql_rcv_buf_cb_48606 mapaddr ql_rcv_buf_cb 0 48606 NULL
++disable_so_get_tsc_mode_fndecl_48608 get_tsc_mode fndecl 0-1 48608 NULL
++disable_so_parse_nl_saddr_fndecl_48609 parse_nl_saddr fndecl 0 48609 NULL
++disable_so_il_dbgfs_interrupt_write_fndecl_48612 il_dbgfs_interrupt_write fndecl 0-3 48612 NULL
++disable_so_timer_ticks_snd_ymfpci_48615 timer_ticks snd_ymfpci 0 48615 NULL
++disable_so_pause_time_e1000_fc_info_48619 pause_time e1000_fc_info 0 48619 NULL
++disable_so_curspataddr_banshee_reg_48622 curspataddr banshee_reg 0 48622 NULL
++disable_so_sysctl_discovery_timeout_vardecl_48636 sysctl_discovery_timeout vardecl 0 48636 NULL
++disable_so_pch_opt_rom_start_address_pch_phub_reg_48637 pch_opt_rom_start_address pch_phub_reg 0 48637 NULL
++disable_so_ocfs2_test_bg_bit_allocatable_fndecl_48640 ocfs2_test_bg_bit_allocatable fndecl 2 48640 NULL nohasharray
++disable_so_bit_count_syscon_gpio_data_48640 bit_count syscon_gpio_data 0 48640 &disable_so_ocfs2_test_bg_bit_allocatable_fndecl_48640
++disable_so_st_uid_compat_stat_48641 st_uid compat_stat 0 48641 NULL
++disable_so_zd1201_get_freq_fndecl_48656 zd1201_get_freq fndecl 0 48656 NULL nohasharray
++disable_so_set_key_lib80211_crypto_ops_48656 set_key lib80211_crypto_ops 2 48656 &disable_so_zd1201_get_freq_fndecl_48656
++disable_so_padata_set_cpumask_fndecl_48659 padata_set_cpumask fndecl 0 48659 NULL
++disable_so_addrconf_sysctl_mtu_fndecl_48662 addrconf_sysctl_mtu fndecl 0 48662 NULL
++disable_so_elapsed_time_sit_info_48663 elapsed_time sit_info 0 48663 NULL
++disable_so_irq_uart_port_48670 irq uart_port 0 48670 NULL
++disable_so_timeout_ib_qp_attr_48674 timeout ib_qp_attr 0 48674 NULL
++disable_so_read_addr_mdc_hw_list_desc_48675 read_addr mdc_hw_list_desc 0 48675 NULL
++disable_so_xfs_btree_update_fndecl_48676 xfs_btree_update fndecl 0 48676 NULL
++disable_so_phy_pm_runtime_put_sync_fndecl_48680 phy_pm_runtime_put_sync fndecl 0 48680 NULL
++disable_so_pcc_cpufreq_target_fndecl_48684 pcc_cpufreq_target fndecl 2 48684 NULL
++disable_so_call_timer_fn_fndecl_48686 call_timer_fn fndecl 3 48686 NULL
++disable_so_xfs_bmap_add_extent_delay_real_fndecl_48692 xfs_bmap_add_extent_delay_real fndecl 0 48692 NULL
++disable_so_bdi_position_ratio_fndecl_48698 bdi_position_ratio fndecl 0-2-3-4-5-6 48698 NULL
++disable_so_rcq_np_addr_vf_pf_rxq_params_48718 rcq_np_addr vf_pf_rxq_params 0 48718 NULL
++disable_so_rp_gid_ubifs_sb_node_48723 rp_gid ubifs_sb_node 0 48723 NULL
++disable_so_phys_addr_gen_pool_chunk_48730 phys_addr gen_pool_chunk 0 48730 NULL
++disable_so_addr_qla8044_minidump_entry_crb_48734 addr qla8044_minidump_entry_crb 0 48734 NULL
++disable_so_mt7601u_wr_fndecl_48735 mt7601u_wr fndecl 3-2 48735 NULL nohasharray
++disable_so_cpufreq_policy_restore_fndecl_48735 cpufreq_policy_restore fndecl 1 48735 &disable_so_mt7601u_wr_fndecl_48735
++disable_so_cpuid_read_fndecl_48739 cpuid_read fndecl 0 48739 NULL
++disable_so_be_cmd_modify_eq_delay_fndecl_48751 be_cmd_modify_eq_delay fndecl 0 48751 NULL
++disable_so_time_shift_perf_event_mmap_page_48757 time_shift perf_event_mmap_page 0 48757 NULL
++disable_so_i_ctime_ext2_inode_48758 i_ctime ext2_inode 0 48758 NULL nohasharray
++disable_so_ide_timing_find_mode_fndecl_48758 ide_timing_find_mode fndecl 1 48758 &disable_so_i_ctime_ext2_inode_48758
++disable_so_err_crypto_gcm_setkey_result_48768 err crypto_gcm_setkey_result 0 48768 NULL
++disable_so_baddr_videobuf_buffer_48769 baddr videobuf_buffer 0 48769 NULL
++disable_so_sys_utimes_fndecl_48778 sys_utimes fndecl 0 48778 NULL
++disable_so_kstrtos8_from_user_fndecl_48783 kstrtos8_from_user fndecl 2 48783 NULL
++disable_so_regmap_raw_read_fndecl_48789 regmap_raw_read fndecl 4-0-2 48789 NULL
++disable_so_map_sysaddr_to_csrow_low_ops_48803 map_sysaddr_to_csrow low_ops 2 48803 NULL
++disable_so_tg3_get_device_address_fndecl_48809 tg3_get_device_address fndecl 0 48809 NULL
++disable_so_mfgid_sz_cyttsp4_cydata_48812 mfgid_sz cyttsp4_cydata 0 48812 NULL
++disable_so_mceusb_cmd_datasize_fndecl_48817 mceusb_cmd_datasize fndecl 0 48817 NULL
++disable_so_tv_freq_vivid_dev_48830 tv_freq vivid_dev 0 48830 NULL
++disable_so_timecounter_init_fndecl_48837 timecounter_init fndecl 3 48837 NULL
++disable_so_udf_bitmap_free_blocks_fndecl_48841 udf_bitmap_free_blocks fndecl 4-5 48841 NULL
++disable_so__snd_timer_stop_fndecl_48842 _snd_timer_stop fndecl 0 48842 NULL
++disable_so_hash_bits_deflate_state_48850 hash_bits deflate_state 0 48850 NULL
++disable_so_if_freq_mb86a20s_state_48853 if_freq mb86a20s_state 0 48853 NULL
++disable_so_ieee80211_aes_ccm_encrypt_fndecl_48857 ieee80211_aes_ccm_encrypt fndecl 5-7 48857 NULL
++disable_so_msec20_to_jiffies_vardecl_enc28j60_c_48860 msec20_to_jiffies vardecl_enc28j60.c 0 48860 NULL
++disable_so_mmc_sd_get_max_clock_fndecl_48866 mmc_sd_get_max_clock fndecl 0 48866 NULL
++disable_so_s_def_resuid_ext4_super_block_48868 s_def_resuid ext4_super_block 0 48868 NULL
++disable_so_get_physaddr_fs_api_fndecl_48871 get_physaddr_fs_api fndecl 0 48871 NULL
++disable_so_selinux_task_setscheduler_fndecl_48872 selinux_task_setscheduler fndecl 0 48872 NULL
++disable_so_snd_timer_new_fndecl_48873 snd_timer_new fndecl 0 48873 NULL
++disable_so_register_write_rt2800_ops_48876 register_write rt2800_ops 2-3 48876 NULL
++disable_so_client_snd_seq_addr_48879 client snd_seq_addr 0 48879 NULL
++disable_so_saddr_iriap_cb_48880 saddr iriap_cb 0 48880 NULL
++disable_so_error_cpu_itimer_48884 error cpu_itimer 0 48884 NULL
++disable_so_buffer_write_time_flchip_48888 buffer_write_time flchip 0 48888 NULL
++disable_so_valleyview_rps_rpe_freq_fndecl_48901 valleyview_rps_rpe_freq fndecl 0 48901 NULL
++disable_so_bmg160_setup_any_motion_interrupt_fndecl_48906 bmg160_setup_any_motion_interrupt fndecl 0 48906 NULL
++disable_so_min_timing_entry_48911 min timing_entry 0 48911 NULL
++disable_so_tx_coalescing_timeo_bnad_48916 tx_coalescing_timeo bnad 0 48916 NULL
++disable_so___clockevents_try_unbind_fndecl_48918 __clockevents_try_unbind fndecl 2 48918 NULL
++disable_so_cyapa_get_wait_time_for_pwr_cmd_fndecl_48920 cyapa_get_wait_time_for_pwr_cmd fndecl 0-1 48920 NULL
++disable_so_uid_ubifs_ino_node_48950 uid ubifs_ino_node 0 48950 NULL nohasharray
++disable_so_missing_pages_bitmap_counts_48950 missing_pages bitmap_counts 0 48950 &disable_so_uid_ubifs_ino_node_48950
++disable_so_snd_es1968_interrupt_fndecl_48965 snd_es1968_interrupt fndecl 1 48965 NULL
++disable_so_img_ir_symbol_timing_preprocess_fndecl_48967 img_ir_symbol_timing_preprocess fndecl 2 48967 NULL
++disable_so_cryptomgr_init_fndecl_48976 cryptomgr_init fndecl 0 48976 NULL
++disable_so_sync_offset_clockdrift_max_ieee80211_if_mesh_48977 sync_offset_clockdrift_max ieee80211_if_mesh 0 48977 NULL nohasharray
++disable_so_br_mac_hash_fndecl_48977 br_mac_hash fndecl 2 48977 &disable_so_sync_offset_clockdrift_max_ieee80211_if_mesh_48977
++disable_so_rt_daddr_dn_route_48981 rt_daddr dn_route 0 48981 NULL
++disable_so_acpi_get_sleep_type_data_fndecl_48985 acpi_get_sleep_type_data fndecl 0-1 48985 NULL nohasharray
++disable_so_nilfs_btree_mark_fndecl_48985 nilfs_btree_mark fndecl 0-2 48985 &disable_so_acpi_get_sleep_type_data_fndecl_48985
++disable_so_led_on_time_adp8860_backlight_platform_data_48994 led_on_time adp8860_backlight_platform_data 0 48994 NULL nohasharray
++disable_so_jdvbt90502_pll_set_freq_fndecl_48994 jdvbt90502_pll_set_freq fndecl 2 48994 &disable_so_led_on_time_adp8860_backlight_platform_data_48994
++disable_so_max_duration_time_stats_48998 max_duration time_stats 0 48998 NULL
++disable_so_update_debugctlmsr_fndecl_49008 update_debugctlmsr fndecl 1 49008 NULL
++disable_so_default_dclk_div_ssd1307fb_deviceinfo_49014 default_dclk_div ssd1307fb_deviceinfo 0 49014 NULL
++disable_so_bound_addr_rds_info_socket_49019 bound_addr rds_info_socket 0 49019 NULL
++disable_so_output_mute_control_runtime_49021 output_mute control_runtime 0 49021 NULL
++disable_so_btree_csum_one_bio_fndecl_49026 btree_csum_one_bio fndecl 0 49026 NULL
++disable_so_xfs_btree_ptr_addr_fndecl_49031 xfs_btree_ptr_addr fndecl 2 49031 NULL
++disable_so_qs_rtbtimelimit_fs_quota_statv_49033 qs_rtbtimelimit fs_quota_statv 0 49033 NULL
++disable_so_min_cpufreq_policy_49035 min cpufreq_policy 0 49035 NULL nohasharray
++disable_so_semaphore_wait_to_signaller_ring_fndecl_49035 semaphore_wait_to_signaller_ring fndecl 3 49035 &disable_so_min_cpufreq_policy_49035
++disable_so_intr_coal_delay_myri10ge_priv_49037 intr_coal_delay myri10ge_priv 0 49037 NULL
++disable_so_set_public_address_fndecl_49049 set_public_address fndecl 0 49049 NULL
++disable_so_rtc_tm_to_time64_fndecl_49056 rtc_tm_to_time64 fndecl 0 49056 NULL
++disable_so_ext4_block_bitmap_fndecl_49058 ext4_block_bitmap fndecl 0 49058 NULL
++disable_so_nft_hash_key_fndecl_49062 nft_hash_key fndecl 0-2 49062 NULL
++disable_so_dma_addr_cb_49079 dma_addr cb 0 49079 NULL nohasharray
++disable_so_inet6_addr_modify_fndecl_49079 inet6_addr_modify fndecl 0-3-4-2 49079 &disable_so_dma_addr_cb_49079
++disable_so_rhashtable_walk_start_fndecl_49080 rhashtable_walk_start fndecl 0 49080 NULL
++disable_so_sctp_transport_timeout_fndecl_49094 sctp_transport_timeout fndecl 0 49094 NULL
++disable_so_hfdiv_dib0070_tuning_49097 hfdiv dib0070_tuning 0 49097 NULL
++disable_so_u132_hcd_interrupt_recv_fndecl_49098 u132_hcd_interrupt_recv fndecl 5 49098 NULL
++disable_so_test_ahash_jiffies_fndecl_49109 test_ahash_jiffies fndecl 0-3 49109 NULL
++disable_so_result_scsi_cmnd_49113 result scsi_cmnd 0 49113 NULL nohasharray
++disable_so_codel_get_time_fndecl_49113 codel_get_time fndecl 0 49113 &disable_so_result_scsi_cmnd_49113
++disable_so_mce_async_out_fndecl_49115 mce_async_out fndecl 3 49115 NULL
++disable_so_reg_write_fndecl_49116 reg_write fndecl 2-3 49116 NULL nohasharray
++disable_so_hash_htab_elem_49116 hash htab_elem 0 49116 &disable_so_reg_write_fndecl_49116
++disable_so_interrupt_r8a66597_49118 interrupt r8a66597 0 49118 NULL
++disable_so_start_threshold_snd_pcm_runtime_49130 start_threshold snd_pcm_runtime 0 49130 NULL
++disable_so_mt9m111_reg_write_fndecl_49148 mt9m111_reg_write fndecl 0-2-3 49148 NULL
++disable_so_ci_otg_add_timer_fndecl_49151 ci_otg_add_timer fndecl 2 49151 NULL
++disable_so_refa_r_div_ad9523_platform_data_49157 refa_r_div ad9523_platform_data 0 49157 NULL
++disable_so_paddr_setup_data_node_49166 paddr setup_data_node 0 49166 NULL
++disable_so_vactive_lo_lvds_dvo_timing_49180 vactive_lo lvds_dvo_timing 0 49180 NULL
++disable_so_init_dma_addr_pcnet32_private_49182 init_dma_addr pcnet32_private 0 49182 NULL
++disable_so_sh_dmae_runtime_resume_fndecl_49185 sh_dmae_runtime_resume fndecl 0 49185 NULL
++disable_so_timeout_tid_ampdu_tx_49186 timeout tid_ampdu_tx 0 49186 NULL nohasharray
++disable_so_read_peer_guid_fndecl_49186 read_peer_guid fndecl 0 49186 &disable_so_timeout_tid_ampdu_tx_49186
++disable_so_if_freq_tda18271_std_map_item_49207 if_freq tda18271_std_map_item 0 49207 NULL nohasharray
++disable_so_sd_hash_ptrs_gfs2_sbd_49207 sd_hash_ptrs gfs2_sbd 0 49207 &disable_so_if_freq_tda18271_std_map_item_49207
++disable_so_dma_addr_t4_sq_49217 dma_addr t4_sq 0 49217 NULL
++disable_so_suspend_sleep_time_cyapa_49219 suspend_sleep_time cyapa 0 49219 NULL
++disable_so_mtime_nsec_p9_iattr_dotl_49224 mtime_nsec p9_iattr_dotl 0 49224 NULL nohasharray
++disable_so_schedule_external_copy_fndecl_49224 schedule_external_copy fndecl 2-3 49224 &disable_so_mtime_nsec_p9_iattr_dotl_49224
++disable_so_clockevents_init_sysfs_fndecl_49238 clockevents_init_sysfs fndecl 0 49238 NULL
++disable_so_bus_settle_time_blogic_drvr_options_49241 bus_settle_time blogic_drvr_options 0 49241 NULL
++disable_so_nf_ct_timeout_ext_add_fndecl_49245 nf_ct_timeout_ext_add fndecl 3 49245 NULL
++disable_so_wm8350_rtc_readtime_fndecl_49258 wm8350_rtc_readtime fndecl 0 49258 NULL
++disable_so_wm8753_set_dai_clkdiv_fndecl_49259 wm8753_set_dai_clkdiv fndecl 3 49259 NULL nohasharray
++disable_so_di_gid_xfs_icdinode_49259 di_gid xfs_icdinode 0 49259 &disable_so_wm8753_set_dai_clkdiv_fndecl_49259
++disable_so_acpi_lapic_addr_vardecl_boot_c_49264 acpi_lapic_addr vardecl_boot.c 0 49264 NULL
++disable_so_ifa_tstamp_in_ifaddr_49266 ifa_tstamp in_ifaddr 0 49266 NULL
++disable_so_tboot_addr_boot_params_49267 tboot_addr boot_params 0 49267 NULL
++disable_so_rt5677_dsp_mode_i2c_write_addr_fndecl_49301 rt5677_dsp_mode_i2c_write_addr fndecl 0-2-3-4 49301 NULL
++disable_so_il_vbackporch_v4l2_bt_timings_49302 il_vbackporch v4l2_bt_timings 0 49302 NULL
++disable_so_jiffies_64_to_clock_t_fndecl_49307 jiffies_64_to_clock_t fndecl 0-1 49307 NULL nohasharray
++disable_so_crypto_ahash_extsize_fndecl_49307 crypto_ahash_extsize fndecl 0 49307 &disable_so_jiffies_64_to_clock_t_fndecl_49307
++disable_so_disptime_throtl_grp_49308 disptime throtl_grp 0 49308 NULL
++disable_so_k_fll_div_49317 k fll_div 0 49317 NULL
++disable_so_last_time_bictcp_49322 last_time bictcp 0 49322 NULL
++disable_so_qm1d1c0042_sleep_fndecl_49326 qm1d1c0042_sleep fndecl 0 49326 NULL
++disable_so_crypto_register_aeads_fndecl_49338 crypto_register_aeads fndecl 0 49338 NULL nohasharray
++disable_so_gcm_hash_init_continue_fndecl_49338 gcm_hash_init_continue fndecl 0 49338 &disable_so_crypto_register_aeads_fndecl_49338
++disable_so_rds_ib_laddr_check_fndecl_49343 rds_ib_laddr_check fndecl 0-1 49343 NULL
++disable_so_rv6xx_convert_clock_to_stepping_fndecl_49345 rv6xx_convert_clock_to_stepping fndecl 2-0 49345 NULL
++disable_so_io_addr_uhci_hcd_49351 io_addr uhci_hcd 0 49351 NULL
++disable_so_mcryptd_hash_update_enqueue_fndecl_49367 mcryptd_hash_update_enqueue fndecl 0 49367 NULL
++disable_so_dll_cntl_ci_clock_registers_49369 dll_cntl ci_clock_registers 0 49369 NULL
++disable_so_d_btimer_fs_disk_quota_49376 d_btimer fs_disk_quota 0 49376 NULL nohasharray
++disable_so_uv_nmi_initial_delay_vardecl_uv_nmi_c_49376 uv_nmi_initial_delay vardecl_uv_nmi.c 0 49376 &disable_so_d_btimer_fs_disk_quota_49376 nohasharray
++disable_so_s_addr_in_addr_49376 s_addr in_addr 0 49376 &disable_so_uv_nmi_initial_delay_vardecl_uv_nmi_c_49376
++disable_so_addrlow_dma64desc_49384 addrlow dma64desc 0 49384 NULL
++disable_so_tcn_timer_show_fndecl_49401 tcn_timer_show fndecl 0 49401 NULL
++disable_so_query_gid_ib_device_49415 query_gid ib_device 0-2-3 49415 NULL nohasharray
++disable_so_physaddr_qib_devdata_49415 physaddr qib_devdata 0 49415 &disable_so_query_gid_ib_device_49415
++disable_so_descsize_crypto_shash_49421 descsize crypto_shash 0 49421 NULL
++disable_so_gatt_bus_addr_agp_bridge_data_49422 gatt_bus_addr agp_bridge_data 0 49422 NULL
++disable_so_confq_pbl_base_addr_lo_fcoe_kwqe_conn_offload4_49427 confq_pbl_base_addr_lo fcoe_kwqe_conn_offload4 0 49427 NULL
++disable_so_fm_v4l2_vidioc_s_freq_fndecl_49444 fm_v4l2_vidioc_s_freq fndecl 0 49444 NULL
++disable_so_tidvaddr_qib_tid_info_49445 tidvaddr qib_tid_info 0 49445 NULL
++disable_so_hpi_cobranet_get_ip_address_fndecl_49449 hpi_cobranet_get_ip_address fndecl 1 49449 NULL
++disable_so_nla_put_s32_fndecl_49455 nla_put_s32 fndecl 0-3 49455 NULL
++disable_so_saa711x_s_clock_freq_fndecl_49457 saa711x_s_clock_freq fndecl 2 49457 NULL
++disable_so_timestamp_mwl8k_tx_desc_49459 timestamp mwl8k_tx_desc 0 49459 NULL
++disable_so___xfrm6_dpref_spref_hash_fndecl_49463 __xfrm6_dpref_spref_hash fndecl 0 49463 NULL
++disable_so_dn_hash_fndecl_49465 dn_hash fndecl 0-1-2 49465 NULL
++disable_so_x_runtime_sc_49473 x runtime_sc 0 49473 NULL
++disable_so_sgl_pg1_addr_hi_sgl_page_pairs_49474 sgl_pg1_addr_hi sgl_page_pairs 0 49474 NULL
++disable_so_mtime_sec_p9_iattr_dotl_49482 mtime_sec p9_iattr_dotl 0 49482 NULL
++disable_so_mpll_ad_func_cntl_ci_clock_registers_49490 mpll_ad_func_cntl ci_clock_registers 0 49490 NULL nohasharray
++disable_so_mounted_uid_ncp_mount_data_v4_49490 mounted_uid ncp_mount_data_v4 0 49490 &disable_so_mpll_ad_func_cntl_ci_clock_registers_49490
++disable_so_i2c_write_le16_fndecl_49491 i2c_write_le16 fndecl 0 49491 NULL nohasharray
++disable_so_svm_compute_tsc_offset_fndecl_49491 svm_compute_tsc_offset fndecl 0-2 49491 &disable_so_i2c_write_le16_fndecl_49491
++disable_so_d_rtbtimer_xfs_disk_dquot_49495 d_rtbtimer xfs_disk_dquot 0 49495 NULL
++disable_so_parport_set_timeout_fndecl_49497 parport_set_timeout fndecl 2-0 49497 NULL
++disable_so_radelay_esp_49498 radelay esp 0 49498 NULL
++disable_so_addr_i2c_board_info_49507 addr i2c_board_info 0 49507 NULL
++disable_so_adma_addr_sdhci_host_49508 adma_addr sdhci_host 0 49508 NULL
++disable_so_rq_addr_t3_rdma_init_wr_49515 rq_addr t3_rdma_init_wr 0 49515 NULL
++disable_so_runtime_remaining_cfs_rq_49516 runtime_remaining cfs_rq 0 49516 NULL
++disable_so_dreq_timestamp_time_dccp_request_sock_49520 dreq_timestamp_time dccp_request_sock 0 49520 NULL
++disable_so_regmap_add_irq_chip_fndecl_49529 regmap_add_irq_chip fndecl 4-0-2-3 49529 NULL
++disable_so_drm_fixp_div_fndecl_49535 drm_fixp_div fndecl 0-1-2 49535 NULL
++disable_so_ar_addr_qla8044_quad_entry_49543 ar_addr qla8044_quad_entry 0 49543 NULL
++disable_so_regcache_lzo_compress_cache_block_fndecl_49544 regcache_lzo_compress_cache_block fndecl 0 49544 NULL
++disable_so___subtree_last_interval_tree_node_49547 __subtree_last interval_tree_node 0 49547 NULL
++disable_so_pll1_feedback_div_ad9523_platform_data_49550 pll1_feedback_div ad9523_platform_data 0 49550 NULL nohasharray
++disable_so_uncore_get_attr_cpumask_fndecl_49550 uncore_get_attr_cpumask fndecl 0 49550 &disable_so_pll1_feedback_div_ad9523_platform_data_49550
++disable_so_read_clocksource_49555 read clocksource 0 49555 NULL
++disable_so_hash_sk_buff_49561 hash sk_buff 0 49561 NULL
++disable_so_I_T_nexus_loss_timeout_sas_end_device_49562 I_T_nexus_loss_timeout sas_end_device 0 49562 NULL nohasharray
++disable_so_enc_addr_high_ssp_ini_io_start_req_49562 enc_addr_high ssp_ini_io_start_req 0 49562 &disable_so_I_T_nexus_loss_timeout_sas_end_device_49562
++disable_so_alarm_clock_getres_fndecl_49575 alarm_clock_getres fndecl 1 49575 NULL
++disable_so_regcache_lzo_get_blkpos_fndecl_49577 regcache_lzo_get_blkpos fndecl 0-2 49577 NULL
++disable_so_atyfb_get_pixclock_fndecl_49582 atyfb_get_pixclock fndecl 0 49582 NULL
++disable_so_mclkdiv_pll_div_49594 mclkdiv pll_div 0 49594 NULL
++disable_so_frame_phys_addr_megasas_cmd_49601 frame_phys_addr megasas_cmd 0 49601 NULL nohasharray
++disable_so_ccp_sha_digest_fndecl_49601 ccp_sha_digest fndecl 0 49601 &disable_so_frame_phys_addr_megasas_cmd_49601
++disable_so_si476x_core_cmd_am_tune_freq_a10_fndecl_49610 si476x_core_cmd_am_tune_freq_a10 fndecl 0 49610 NULL
++disable_so_sctp_setsockopt_delayed_ack_fndecl_49618 sctp_setsockopt_delayed_ack fndecl 3-0 49618 NULL
++disable_so_gpu_addr_radeon_ring_49632 gpu_addr radeon_ring 0 49632 NULL
++disable_so_uac_clock_selector_get_val_fndecl_49639 uac_clock_selector_get_val fndecl 0-2 49639 NULL nohasharray
++disable_so_osc_clock_freq_drxd_state_49639 osc_clock_freq drxd_state 0 49639 &disable_so_uac_clock_selector_get_val_fndecl_49639
++disable_so_addr_rx_desc_49640 addr rx_desc 0 49640 NULL
++disable_so_r600_engine_clock_entry_set_reference_divider_fndecl_49644 r600_engine_clock_entry_set_reference_divider fndecl 3 49644 NULL
++disable_so_set_fan_div_fndecl_49645 set_fan_div fndecl 0-4 49645 NULL nohasharray
++disable_so_intermediate_freq_drx_common_attr_49645 intermediate_freq drx_common_attr 0 49645 &disable_so_set_fan_div_fndecl_49645
++disable_so_wr32_nvkm_ofuncs_49648 wr32 nvkm_ofuncs 2-3 49648 NULL
++disable_so__rtl8821ae_phy_calculate_bit_shift_fndecl_49649 _rtl8821ae_phy_calculate_bit_shift fndecl 0-1 49649 NULL
++disable_so_cpufreq_governor_start_fndecl_49658 cpufreq_governor_start fndecl 0 49658 NULL
++disable_so_mcgstatus_mce_49682 mcgstatus mce 0 49682 NULL
++disable_so_bitmap_size_f2fs_nm_info_49684 bitmap_size f2fs_nm_info 0 49684 NULL
++disable_so_SYSC_setgid_fndecl_49688 SYSC_setgid fndecl 0 49688 NULL
++disable_so_dx_tss_segment_16_49692 dx tss_segment_16 0 49692 NULL
++disable_so_tg3_test_interrupt_fndecl_49694 tg3_test_interrupt fndecl 0 49694 NULL
++disable_so_rv6xx_compute_count_for_delay_fndecl_49697 rv6xx_compute_count_for_delay fndecl 0-2-3 49697 NULL
++disable_so_read_time_mei_cl_cb_49706 read_time mei_cl_cb 0 49706 NULL
++disable_so_addrconf_forward_change_fndecl_49711 addrconf_forward_change fndecl 2 49711 NULL
++disable_so_cx24113_writereg_fndecl_49714 cx24113_writereg fndecl 0-3 49714 NULL
++disable_so_demod_address_tda1004x_config_49721 demod_address tda1004x_config 0 49721 NULL
++disable_so_device_timestamp_ieee80211_channel_switch_49722 device_timestamp ieee80211_channel_switch 0 49722 NULL
++disable_so_gid_fileEntry_49725 gid fileEntry 0 49725 NULL
++disable_so_dma_addr_clx2_queue_49729 dma_addr clx2_queue 0 49729 NULL
++disable_so_extsize_crypto_type_49730 extsize crypto_type 0 49730 NULL
++disable_so_k__fll_div_49732 k _fll_div 0 49732 NULL
++disable_so_sumo_set_ss_dividers_fndecl_49747 sumo_set_ss_dividers fndecl 2-3 49747 NULL
++disable_so_i2c_clock_i2c_algo_pca_data_49751 i2c_clock i2c_algo_pca_data 0 49751 NULL nohasharray
++disable_so_skb_get_hash_perturb_fndecl_49751 skb_get_hash_perturb fndecl 0 49751 &disable_so_i2c_clock_i2c_algo_pca_data_49751
++disable_so_expire_llc_timer_49752 expire llc_timer 0 49752 NULL
++disable_so_rdma_copy_addr_fndecl_49754 rdma_copy_addr fndecl 0 49754 NULL
++disable_so_hblank___fb_timings_49755 hblank __fb_timings 0 49755 NULL
++disable_so_stripe_count_nfs4_file_layout_dsaddr_49758 stripe_count nfs4_file_layout_dsaddr 0 49758 NULL
++disable_so_inet_rtm_newaddr_fndecl_49766 inet_rtm_newaddr fndecl 0 49766 NULL nohasharray
++disable_so_generic_handle_irq_fndecl_49766 generic_handle_irq fndecl 1 49766 &disable_so_inet_rtm_newaddr_fndecl_49766
++disable_so_parport_ieee1284_ecp_write_addr_fndecl_49769 parport_ieee1284_ecp_write_addr fndecl 0 49769 NULL
++disable_so_dl_runtime_sched_dl_entity_49775 dl_runtime sched_dl_entity 0 49775 NULL
++disable_so_cur_saddr_pktgen_dev_49776 cur_saddr pktgen_dev 0 49776 NULL
++disable_so_nf_ct_expect_dst_hash_fndecl_49778 nf_ct_expect_dst_hash fndecl 0 49778 NULL
++disable_so_compat_sys_times_fndecl_49783 compat_sys_times fndecl 0 49783 NULL nohasharray
++disable_so___bitmap_shift_left_fndecl_49783 __bitmap_shift_left fndecl 3-4 49783 &disable_so_compat_sys_times_fndecl_49783
++disable_so_sq_addr_high_nes_qp_context_49784 sq_addr_high nes_qp_context 0 49784 NULL
++disable_so_phy_address_ethtool_cmd_49790 phy_address ethtool_cmd 0 49790 NULL
++disable_so_intr_timer_type_vnic_enet_config_49793 intr_timer_type vnic_enet_config 0 49793 NULL
++disable_so_end_time_bfa_diag_dport_result_s_49798 end_time bfa_diag_dport_result_s 0 49798 NULL
++disable_so_prot_addr_saa7146_video_dma_49808 prot_addr saa7146_video_dma 0 49808 NULL
++disable_so_p2m_timeout_show_fndecl_49814 p2m_timeout_show fndecl 0 49814 NULL
++disable_so_pr_uid_compat_elf_prpsinfo_49815 pr_uid compat_elf_prpsinfo 0 49815 NULL
++disable_so_pch_udc_disable_ep_interrupts_fndecl_49816 pch_udc_disable_ep_interrupts fndecl 2 49816 NULL
++disable_so_bd_list_addr_lo_bnx2i_login_request_49817 bd_list_addr_lo bnx2i_login_request 0 49817 NULL
++disable_so_nsec_pvclock_wall_clock_49833 nsec pvclock_wall_clock 0 49833 NULL
++disable_so_bss_lose_timeout_conf_conn_settings_49850 bss_lose_timeout conf_conn_settings 0 49850 NULL
++disable_so_snd_opl3_timer1_init_fndecl_49852 snd_opl3_timer1_init fndecl 0-2 49852 NULL
++disable_so_data_crb_addr_pair_49859 data crb_addr_pair 0 49859 NULL
++disable_so_txeol_interrupt_mask_ath_hw_49864 txeol_interrupt_mask ath_hw 0 49864 NULL
++disable_so_ctrl_freq_set_fndecl_49865 ctrl_freq_set fndecl 3 49865 NULL
++disable_so_freq_pda_iq_autocal_entry_49869 freq pda_iq_autocal_entry 0 49869 NULL
++disable_so_kempld_wdt_set_timeout_fndecl_49893 kempld_wdt_set_timeout fndecl 2 49893 NULL
++disable_so_nilfs_btree_node_set_ptr_fndecl_49897 nilfs_btree_node_set_ptr fndecl 2-3 49897 NULL
++disable_so_time_to_val_fndecl_49902 time_to_val fndecl 0-4-2-3 49902 NULL
++disable_so_capture_timestamp_qla27xx_fwdt_template_49904 capture_timestamp qla27xx_fwdt_template 0 49904 NULL nohasharray
++disable_so_wl1273_fm_set_rx_freq_fndecl_49904 wl1273_fm_set_rx_freq fndecl 2 49904 &disable_so_capture_timestamp_qla27xx_fwdt_template_49904
++disable_so_set_spdif_clock_snd_ice1712_49905 set_spdif_clock snd_ice1712 2 49905 NULL
++disable_so_nmi_evntsel_msr_to_bit_fndecl_49906 nmi_evntsel_msr_to_bit fndecl 0-1 49906 NULL
++disable_so_get_ipv6_addr_fndecl_49909 get_ipv6_addr fndecl 2 49909 NULL
++disable_so_bitstream_cursor_advance_fndecl_49911 bitstream_cursor_advance fndecl 2 49911 NULL
++disable_so_trap_addr_sdpcm_shared_49924 trap_addr sdpcm_shared 0 49924 NULL
++disable_so_show_port_gid_fndecl_49927 show_port_gid fndecl 0 49927 NULL
++disable_so_ib_sa_guid_info_rec_query_fndecl_49928 ib_sa_guid_info_rec_query fndecl 0-3-5-7-8 49928 NULL
++disable_so_mtrr_type_lookup_fndecl_49929 mtrr_type_lookup fndecl 1-2 49929 NULL
++disable_so_persistent_offset_sst_module_runtime_49933 persistent_offset sst_module_runtime 0 49933 NULL
++disable_so_lvb_ictime_packed_ocfs2_meta_lvb_49940 lvb_ictime_packed ocfs2_meta_lvb 0 49940 NULL
++enable_so_inode_number_squashfs_dir_entry_49943 inode_number squashfs_dir_entry 0 49943 NULL nohasharray
++disable_so_boost_freq_lm3533_platform_data_49943 boost_freq lm3533_platform_data 0 49943 &enable_so_inode_number_squashfs_dir_entry_49943
++disable_so_inet_twsk_schedule_fndecl_49946 inet_twsk_schedule fndecl 2 49946 NULL
++disable_so_host_time_adj_time_work_49952 host_time adj_time_work 0 49952 NULL
++disable_so_b43_dma_address_fndecl_49953 b43_dma_address fndecl 0-2 49953 NULL
++disable_so_max_delay_iwl_time_event_cmd_49957 max_delay iwl_time_event_cmd 0 49957 NULL
++disable_so_shash_final_unaligned_fndecl_49961 shash_final_unaligned fndecl 0 49961 NULL
++disable_so_mpll_func_cntl_si_clock_registers_49965 mpll_func_cntl si_clock_registers 0 49965 NULL
++disable_so_nfsd4_write_time_fndecl_49969 nfsd4_write_time fndecl 0 49969 NULL
++disable_so_ds1374_set_time_fndecl_49975 ds1374_set_time fndecl 0 49975 NULL
++disable_so_batadv_hash_new_fndecl_49976 batadv_hash_new fndecl 1 49976 NULL
++disable_so_timeout_i2c_adapter_49981 timeout i2c_adapter 0 49981 NULL nohasharray
++disable_so_delay_radeon_voltage_49981 delay radeon_voltage 0 49981 &disable_so_timeout_i2c_adapter_49981 nohasharray
++disable_so___cpufreq_stats_create_table_fndecl_49981 __cpufreq_stats_create_table fndecl 0 49981 &disable_so_delay_radeon_voltage_49981
++disable_so_op_x86_virt_to_phys_fndecl_49986 op_x86_virt_to_phys fndecl 0-1 49986 NULL nohasharray
++disable_so_freq_time_stamp_hw_perf_event_49986 freq_time_stamp hw_perf_event 0 49986 &disable_so_op_x86_virt_to_phys_fndecl_49986
++disable_so_dib7000p_get_internal_freq_fndecl_49987 dib7000p_get_internal_freq fndecl 0 49987 NULL nohasharray
++disable_so_msr_daio_desc_49987 msr daio_desc 0 49987 &disable_so_dib7000p_get_internal_freq_fndecl_49987
++disable_so_RF_SYN_reserved_addr28_chan_info_nphy_radio205x_49990 RF_SYN_reserved_addr28 chan_info_nphy_radio205x 0 49990 NULL
++disable_so_timer_vardecl_iphase_c_49991 timer vardecl_iphase.c 0 49991 NULL
++disable_so_typhoon_sleep_fndecl_49999 typhoon_sleep fndecl 0-2 49999 NULL
++disable_so_confq_first_pbe_addr_lo_fcoe_kwqe_conn_offload3_50012 confq_first_pbe_addr_lo fcoe_kwqe_conn_offload3 0 50012 NULL
++disable_so__rtl92d_phy_calculate_bit_shift_fndecl_50016 _rtl92d_phy_calculate_bit_shift fndecl 0-1 50016 NULL
++disable_so_ds1307_set_time_fndecl_50017 ds1307_set_time fndecl 0 50017 NULL
++disable_so_dma_addr__DMABUFFERENTRY_50032 dma_addr _DMABUFFERENTRY 0 50032 NULL
++disable_so_payload_addr_isp1760_qtd_50045 payload_addr isp1760_qtd 0 50045 NULL
++disable_so_crypto_pcbc_encrypt_fndecl_50054 crypto_pcbc_encrypt fndecl 0-4 50054 NULL
++disable_so_tcp_shift_skb_data_fndecl_50056 tcp_shift_skb_data fndecl 5-4 50056 NULL
++disable_so_reference_div_radeon_pll_50062 reference_div radeon_pll 0 50062 NULL
++disable_so_io_addr_blogic_adapter_50066 io_addr blogic_adapter 0 50066 NULL
++disable_so_bfs_paprd_timestamp_ath_buf_state_50090 bfs_paprd_timestamp ath_buf_state 0 50090 NULL
++disable_so_address_bau_msg_payload_50110 address bau_msg_payload 0 50110 NULL
++disable_so_scsi_reset_delay_adveep_3550_config_50118 scsi_reset_delay adveep_3550_config 0 50118 NULL
++disable_so_start_bit_alps_bitmap_point_50119 start_bit alps_bitmap_point 0 50119 NULL
++disable_so_i_atime_ext2_inode_50120 i_atime ext2_inode 0 50120 NULL nohasharray
++disable_so_link_down_time_swStat_50120 link_down_time swStat 0 50120 &disable_so_i_atime_ext2_inode_50120
++disable_so_sys_timerfd_settime_fndecl_50127 sys_timerfd_settime fndecl 1 50127 NULL nohasharray
++disable_so_t1timer_lapb_parms_struct_50127 t1timer lapb_parms_struct 0 50127 &disable_so_sys_timerfd_settime_fndecl_50127
++disable_so_lp8755_buck_enable_time_fndecl_50128 lp8755_buck_enable_time fndecl 0 50128 NULL
++disable_so_hash_v4_fndecl_50129 hash_v4 fndecl 0 50129 NULL
++disable_so_btree_lookup128_fndecl_50132 btree_lookup128 fndecl 3 50132 NULL
++disable_so_data_msr_data_50133 data msr_data 0 50133 NULL
++disable_so_max_freq_ufs_clk_info_50134 max_freq ufs_clk_info 0 50134 NULL
++disable_so_carl9170_debugfs_tx_ampdu_scheduler_read_fndecl_50136 carl9170_debugfs_tx_ampdu_scheduler_read fndecl 3 50136 NULL nohasharray
++disable_so_write32_tg3_50136 write32 tg3 3 50136 &disable_so_carl9170_debugfs_tx_ampdu_scheduler_read_fndecl_50136
++disable_so_vm_addr_fndecl_50143 vm_addr fndecl 0-2-3-4 50143 NULL
++disable_so_mmc_sd_runtime_suspend_fndecl_50164 mmc_sd_runtime_suspend fndecl 0 50164 NULL
++disable_so_msr_pcap_chip_50171 msr pcap_chip 0 50171 NULL
++disable_so_ptp_clock_index_fndecl_50179 ptp_clock_index fndecl 0 50179 NULL nohasharray
++disable_so_str2hashbuf_signed_fndecl_50179 str2hashbuf_signed fndecl 2 50179 &disable_so_ptp_clock_index_fndecl_50179
++disable_so_dapm_clock_event_fndecl_50184 dapm_clock_event fndecl 0 50184 NULL nohasharray
++disable_so_skcipher_null_givdecrypt_fndecl_50184 skcipher_null_givdecrypt fndecl 0 50184 &disable_so_dapm_clock_event_fndecl_50184
++disable_so_nlm_timeout_vardecl_svc_c_50197 nlm_timeout vardecl_svc.c 0 50197 NULL
++disable_so_st_mtime_nsec_stat_50200 st_mtime_nsec stat 0 50200 NULL
++disable_so_haddr_tpd_haddr_50202 haddr tpd_haddr 0 50202 NULL
++disable_so_cx24116_sleep_fndecl_50204 cx24116_sleep fndecl 0 50204 NULL
++disable_so_printframe_fndecl_50210 printframe fndecl 3 50210 NULL nohasharray
++disable_so_pch_udc_write_device_interrupts_fndecl_50210 pch_udc_write_device_interrupts fndecl 2 50210 &disable_so_printframe_fndecl_50210
++disable_so_measure_12bit_voltage_fndecl_50211 measure_12bit_voltage fndecl 0-2 50211 NULL
++disable_so_mcheck_init_device_fndecl_50223 mcheck_init_device fndecl 0 50223 NULL
++disable_so_igb_init_rx_addrs_fndecl_50228 igb_init_rx_addrs fndecl 2 50228 NULL
++disable_so_s11_img_ir_timing_regvals_50232 s11 img_ir_timing_regvals 0 50232 NULL
++disable_so_paddr_mwifiex_pcie_buf_desc_50236 paddr mwifiex_pcie_buf_desc 0 50236 NULL
++disable_so_rdma_resolve_addr_fndecl_50240 rdma_resolve_addr fndecl 0 50240 NULL
++disable_so_mlx4_ib_notify_slaves_on_guid_change_fndecl_50248 mlx4_ib_notify_slaves_on_guid_change fndecl 2-3 50248 NULL
++disable_so_si476x_core_cmd_am_tune_freq_a20_fndecl_50250 si476x_core_cmd_am_tune_freq_a20 fndecl 0 50250 NULL
++disable_so_addr_lo_dma_address_50252 addr_lo dma_address 0 50252 NULL
++disable_so_scsi_runtime_resume_fndecl_50254 scsi_runtime_resume fndecl 0 50254 NULL
++disable_so_pkt_rbtree_find_fndecl_50259 pkt_rbtree_find fndecl 2 50259 NULL
++disable_so_p_div_aic31xx_priv_50261 p_div aic31xx_priv 0 50261 NULL
++disable_so_da9052_rtc_set_time_fndecl_50269 da9052_rtc_set_time fndecl 0 50269 NULL
++disable_so_read_addr_qla4_83xx_minidump_entry_rdmem_pex_dma_50271 read_addr qla4_83xx_minidump_entry_rdmem_pex_dma 0 50271 NULL
++disable_so_timeout_jiffies_qib_qp_50276 timeout_jiffies qib_qp 0 50276 NULL
++disable_so_tmr_restart_sound_lowlev_timer_50278 tmr_restart sound_lowlev_timer 1 50278 NULL
++disable_so_irq_domain_free_irqs_common_fndecl_50279 irq_domain_free_irqs_common fndecl 2-3 50279 NULL nohasharray
++disable_so_hsync_vsync_offset_pulse_width_hi_detailed_pixel_timing_50279 hsync_vsync_offset_pulse_width_hi detailed_pixel_timing 0 50279 &disable_so_irq_domain_free_irqs_common_fndecl_50279
++disable_so_eop_ring_buffer_address_queue_properties_50280 eop_ring_buffer_address queue_properties 0 50280 NULL
++disable_so_bna_rx_coalescing_timeo_set_fndecl_50282 bna_rx_coalescing_timeo_set fndecl 2 50282 NULL
++disable_so_shash_compat_update_fndecl_50285 shash_compat_update fndecl 0-3 50285 NULL
++disable_so_get_physaddr_buffered_ioctl_fndecl_50286 get_physaddr_buffered_ioctl fndecl 0 50286 NULL
++disable_so_snd_hrtimer_init_fndecl_50291 snd_hrtimer_init fndecl 0 50291 NULL
++disable_so_cpuidle_add_state_sysfs_fndecl_50292 cpuidle_add_state_sysfs fndecl 0 50292 NULL
++disable_so_bitmap_set_bits_fndecl_50299 bitmap_set_bits fndecl 3-4 50299 NULL
++disable_so_cur_sge_off_fcoe_mul_sges_ctx_50300 cur_sge_off fcoe_mul_sges_ctx 0 50300 NULL
++disable_so_mpll_func_cntl_1_si_clock_registers_50301 mpll_func_cntl_1 si_clock_registers 0 50301 NULL
++disable_so_genwqe_debugfs_curr_dbg_uid0_open_fndecl_50304 genwqe_debugfs_curr_dbg_uid0_open fndecl 0 50304 NULL
++disable_so_tx_interframe_timeout_wil6210_priv_50305 tx_interframe_timeout wil6210_priv 0 50305 NULL
++disable_so_pending_csums_btrfs_delayed_ref_root_50311 pending_csums btrfs_delayed_ref_root 0 50311 NULL
++disable_so_addr_count_blogic_adapter_50326 addr_count blogic_adapter 0 50326 NULL
++disable_so_cpufreq_out_of_sync_fndecl_50327 cpufreq_out_of_sync fndecl 2 50327 NULL nohasharray
++disable_so_typ_timing_entry_50327 typ timing_entry 0 50327 &disable_so_cpufreq_out_of_sync_fndecl_50327
++disable_so_used_skcipher_ctx_50342 used skcipher_ctx 0 50342 NULL
++disable_so_iscsit_create_random_array_fndecl_50360 iscsit_create_random_array fndecl 2 50360 NULL
++disable_so_current_frequency_s5h1409_state_50366 current_frequency s5h1409_state 0 50366 NULL
++disable_so_cb_camif_addr_50371 cb camif_addr 0 50371 NULL
++disable_so_prepare_kswapd_sleep_fndecl_50377 prepare_kswapd_sleep fndecl 2-3 50377 NULL
++disable_so___tcf_hash_release_fndecl_50380 __tcf_hash_release fndecl 0 50380 NULL
++disable_so_ntfs_bitmap_clear_bit_fndecl_50382 ntfs_bitmap_clear_bit fndecl 2 50382 NULL
++disable_so_tg3_ptp_adjtime_fndecl_50384 tg3_ptp_adjtime fndecl 2 50384 NULL
++disable_so_xfs_btree_copy_recs_fndecl_50385 xfs_btree_copy_recs fndecl 4 50385 NULL
++disable_so___cpufreq_get_fndecl_50397 __cpufreq_get fndecl 0 50397 NULL
++disable_so_rtl821x_ack_interrupt_fndecl_50399 rtl821x_ack_interrupt fndecl 0 50399 NULL
++disable_so_ss_divider_index_sumo_pl_50401 ss_divider_index sumo_pl 0 50401 NULL
++disable_so_igb_runtime_suspend_fndecl_50408 igb_runtime_suspend fndecl 0 50408 NULL nohasharray
++disable_so_hash_ipmark4_expire_fndecl_50408 hash_ipmark4_expire fndecl 4 50408 &disable_so_igb_runtime_suspend_fndecl_50408
++disable_so_addr_TxDesc_50413 addr TxDesc 0 50413 NULL
++disable_so_xfs_btree_dup_cursor_fndecl_50417 xfs_btree_dup_cursor fndecl 0 50417 NULL
++disable_so_channel2freq_bg_fndecl_50421 channel2freq_bg fndecl 0-1 50421 NULL
++disable_so_freq_lo_jiffies_od_cpu_dbs_info_s_50424 freq_lo_jiffies od_cpu_dbs_info_s 0 50424 NULL
++disable_so_time_cifsInodeInfo_50431 time cifsInodeInfo 0 50431 NULL
++disable_so_tps65910_rtc_read_time_fndecl_50446 tps65910_rtc_read_time fndecl 0 50446 NULL
++disable_so_freq_wmi_p2p_rx_probe_req_event_50455 freq wmi_p2p_rx_probe_req_event 0 50455 NULL
++disable_so_ifa_cstamp_in_ifaddr_50464 ifa_cstamp in_ifaddr 0 50464 NULL
++disable_so_reg_ds1685_rtc_time_regs_50466 reg ds1685_rtc_time_regs 0 50466 NULL
++disable_so_n_freq_tbl_50468 n freq_tbl 0 50468 NULL
++disable_so_hash_code_f2fs_dir_entry_50474 hash_code f2fs_dir_entry 0 50474 NULL
++disable_so_link_check_timeout_i40e_pf_50476 link_check_timeout i40e_pf 0 50476 NULL
++disable_so_addr_lo_eth_rx_cqe_next_page_50479 addr_lo eth_rx_cqe_next_page 0 50479 NULL
++disable_so_sr_timestamp_nfs4_sequence_res_50481 sr_timestamp nfs4_sequence_res 0 50481 NULL nohasharray
++disable_so_cpumask_parse_fndecl_50481 cpumask_parse fndecl 0 50481 &disable_so_sr_timestamp_nfs4_sequence_res_50481
++disable_so_set_pte_vaddr_pud_fndecl_50497 set_pte_vaddr_pud fndecl 2 50497 NULL
++disable_so_pa_rxrf_lna1_freq_tune_chan_info_2064_lcnphy_50502 pa_rxrf_lna1_freq_tune chan_info_2064_lcnphy 0 50502 NULL
++disable_so_uv_global_gru_mmr_address_fndecl_50507 uv_global_gru_mmr_address fndecl 0-1-2 50507 NULL
++disable_so_address_desc_ptr_50509 address desc_ptr 0 50509 NULL
++disable_so_crypto_aead_alg_maxauthsize_fndecl_50510 crypto_aead_alg_maxauthsize fndecl 0 50510 NULL
++disable_so_pci_get_interrupt_pin_fndecl_50512 pci_get_interrupt_pin fndecl 0 50512 NULL
++disable_so_addr_assign_type_show_fndecl_50513 addr_assign_type_show fndecl 0 50513 NULL
++disable_so_frequency_si4713_device_50518 frequency si4713_device 0 50518 NULL
++disable_so__iommu_cpumask_show_fndecl_50522 _iommu_cpumask_show fndecl 0 50522 NULL
++disable_so_mma9551_runtime_resume_fndecl_50531 mma9551_runtime_resume fndecl 0 50531 NULL
++disable_so_mvs_set_sas_addr_fndecl_50535 mvs_set_sas_addr fndecl 2-5 50535 NULL
++disable_so_rv3029c2_rtc_set_time_fndecl_50537 rv3029c2_rtc_set_time fndecl 0 50537 NULL nohasharray
++disable_so__zd_iowrite32v_async_locked_fndecl_50537 _zd_iowrite32v_async_locked fndecl 3-0 50537 &disable_so_rv3029c2_rtc_set_time_fndecl_50537
++disable_so_demod_addr_m88rs2000_config_50543 demod_addr m88rs2000_config 0 50543 NULL
++disable_so_mv88e6xxx_set_addr_indirect_fndecl_50547 mv88e6xxx_set_addr_indirect fndecl 0 50547 NULL nohasharray
++disable_so_bind_evtchn_to_irqhandler_fndecl_50547 bind_evtchn_to_irqhandler fndecl 0-1 50547 &disable_so_mv88e6xxx_set_addr_indirect_fndecl_50547
++disable_so_twl6030_interrupt_unmask_fndecl_50550 twl6030_interrupt_unmask fndecl 2-0 50550 NULL
++disable_so_recovery_pio_clocks_50551 recovery pio_clocks 0 50551 NULL
++disable_so_lp8788_rtc_read_time_fndecl_50573 lp8788_rtc_read_time fndecl 0 50573 NULL nohasharray
++disable_so_dummy_buffer_addr_hi_fcoe_kwqe_init1_50573 dummy_buffer_addr_hi fcoe_kwqe_init1 0 50573 &disable_so_lp8788_rtc_read_time_fndecl_50573 nohasharray
++disable_so_power_page_addr_pm80x_subchip_50573 power_page_addr pm80x_subchip 0 50573 &disable_so_dummy_buffer_addr_hi_fcoe_kwqe_init1_50573
++disable_so_beacon_timeout_ieee80211_if_managed_50580 beacon_timeout ieee80211_if_managed 0 50580 NULL
++disable_so_mag3110_get_samp_freq_index_fndecl_50581 mag3110_get_samp_freq_index fndecl 0 50581 NULL
++disable_so_sock_get_timestamp_fndecl_50582 sock_get_timestamp fndecl 0 50582 NULL
++disable_so_addr_low_lancer_cmd_req_read_object_50585 addr_low lancer_cmd_req_read_object 0 50585 NULL
++disable_so_regcache_lzo_write_fndecl_50595 regcache_lzo_write fndecl 0-2-3 50595 NULL
++disable_so_enable_time_regulator_desc_50604 enable_time regulator_desc 0 50604 NULL
++disable_so___cpufreq_driver_target_fndecl_50610 __cpufreq_driver_target fndecl 2 50610 NULL
++disable_so_mt_ctxbitmap_gru_mm_tracker_50612 mt_ctxbitmap gru_mm_tracker 0 50612 NULL
++disable_so_compat_sys_futimesat_fndecl_50617 compat_sys_futimesat fndecl 1-0 50617 NULL
++disable_so_bind_timeout_rpc_xprt_50622 bind_timeout rpc_xprt 0 50622 NULL
++disable_so_wait_conversion_complete_interrupt_fndecl_50628 wait_conversion_complete_interrupt fndecl 0 50628 NULL
++disable_so_minimum_acpi_address64_attribute_50631 minimum acpi_address64_attribute 0 50631 NULL
++disable_so_radix_tree_delete_fndecl_50632 radix_tree_delete fndecl 2 50632 NULL
++disable_so_snd_timer_user_stop_fndecl_50656 snd_timer_user_stop fndecl 0 50656 NULL
++disable_so_m_hi_cfg_timing_div_drxk_state_50665 m_hi_cfg_timing_div drxk_state 0 50665 NULL
++disable_so_r_timeout_ceph_mds_request_50669 r_timeout ceph_mds_request 0 50669 NULL
++disable_so_snd_timer_continue_fndecl_50670 snd_timer_continue fndecl 0 50670 NULL
++disable_so_dwc3_ep0_set_isoch_delay_fndecl_50672 dwc3_ep0_set_isoch_delay fndecl 0 50672 NULL
++disable_so_btree_submit_bio_hook_fndecl_50677 btree_submit_bio_hook fndecl 0-2-6 50677 NULL
++disable_so_start_pid_hrtimer_50687 start_pid hrtimer 0 50687 NULL
++disable_so_deliver_posted_interrupt_kvm_x86_ops_50698 deliver_posted_interrupt kvm_x86_ops 2 50698 NULL
++disable_so_pwm_divisor_max8997_haptic_50704 pwm_divisor max8997_haptic 0 50704 NULL
++disable_so_dma_addr_iwl_queue_50725 dma_addr iwl_queue 0 50725 NULL
++disable_so_di_uid_qnx4_inode_entry_50728 di_uid qnx4_inode_entry 0 50728 NULL
++disable_so_nfs_idmap_cache_timeout_vardecl_50733 nfs_idmap_cache_timeout vardecl 0 50733 NULL
++disable_so_carl9170_set_beacon_timers_fndecl_50741 carl9170_set_beacon_timers fndecl 0 50741 NULL
++disable_so_msg_addr_hi_vf_pf_event_data_50756 msg_addr_hi vf_pf_event_data 0 50756 NULL
++disable_so_jiffies_vid_cap_vivid_dev_50760 jiffies_vid_cap vivid_dev 0 50760 NULL
++disable_so_addr_amdgpu_dummy_page_50765 addr amdgpu_dummy_page 0 50765 NULL
++disable_so_img_i2c_raw_atomic_delay_handler_fndecl_50779 img_i2c_raw_atomic_delay_handler fndecl 0 50779 NULL
++disable_so_dst_addr_filter_ipv4_5tuple_50793 dst_addr filter_ipv4_5tuple 0 50793 NULL
++disable_so_remote_ca_guid_ib_cm_rep_event_param_50795 remote_ca_guid ib_cm_rep_event_param 0 50795 NULL nohasharray
++disable_so_ioaddr_physical_voice_info_50795 ioaddr physical_voice_info 0 50795 &disable_so_remote_ca_guid_ib_cm_rep_event_param_50795
++disable_so_xfs_btree_log_recs_fndecl_50800 xfs_btree_log_recs fndecl 3-4 50800 NULL
++disable_so_iwl_sta_modify_sleep_tx_count_fndecl_50811 iwl_sta_modify_sleep_tx_count fndecl 2 50811 NULL nohasharray
++disable_so_ldt_tss_segment_16_50811 ldt tss_segment_16 0 50811 &disable_so_iwl_sta_modify_sleep_tx_count_fndecl_50811
++disable_so_adxl34x_autosleep_store_fndecl_50816 adxl34x_autosleep_store fndecl 0-4 50816 NULL
++disable_so_io_schedule_timeout_fndecl_50822 io_schedule_timeout fndecl 1-0 50822 NULL
++disable_so_addr_pm8001_prd_50827 addr pm8001_prd 0 50827 NULL
++disable_so_hfsplus_btree_write_fndecl_50829 hfsplus_btree_write fndecl 0 50829 NULL
++disable_so_jfs_strfromUCS_le_fndecl_50830 jfs_strfromUCS_le fndecl 0-3 50830 NULL
++disable_so_dmaaddr_b43_dmadesc_meta_50842 dmaaddr b43_dmadesc_meta 0 50842 NULL
++disable_so_eh_timeout_scsi_device_50843 eh_timeout scsi_device 0 50843 NULL
++disable_so_max_buffer_time_batadv_priv_nc_50848 max_buffer_time batadv_priv_nc 0 50848 NULL
++disable_so_mask_timecounter_50851 mask timecounter 0 50851 NULL
++disable_so_i2c_addr_cx24113_config_50855 i2c_addr cx24113_config 0 50855 NULL
++disable_so_clock_khz_ocores_i2c_platform_data_50856 clock_khz ocores_i2c_platform_data 0 50856 NULL nohasharray
++disable_so_i2c_addr_i2c_device_addr_50856 i2c_addr i2c_device_addr 0 50856 &disable_so_clock_khz_ocores_i2c_platform_data_50856
++disable_so_lp_rx_timeout_intel_dsi_50859 lp_rx_timeout intel_dsi 0 50859 NULL nohasharray
++disable_so_crypto_authenc_givencrypt_done_fndecl_50859 crypto_authenc_givencrypt_done fndecl 2 50859 &disable_so_lp_rx_timeout_intel_dsi_50859
++disable_so_origninator_host_cmd_ds_11n_batimeout_50866 origninator host_cmd_ds_11n_batimeout 0 50866 NULL
++disable_so_ip_vs_conn_hashkey_fndecl_50872 ip_vs_conn_hashkey fndecl 0-2-3 50872 NULL
++disable_so_twa_aen_sync_time_fndecl_50875 twa_aen_sync_time fndecl 2 50875 NULL
++disable_so_cachedaddr_irda_sock_50876 cachedaddr irda_sock 0 50876 NULL
++disable_so_carl9170_find_freq_idx_fndecl_50881 carl9170_find_freq_idx fndecl 3 50881 NULL
++disable_so___next_timer_interrupt_fndecl_50887 __next_timer_interrupt fndecl 0 50887 NULL
++disable_so_reg_addr_reg_val_50891 reg_addr reg_val 0 50891 NULL
++disable_so_dma_ring_addr_i40e_virtchnl_txq_info_50900 dma_ring_addr i40e_virtchnl_txq_info 0 50900 NULL
++disable_so_interval_tree_subtree_search_fndecl_50901 interval_tree_subtree_search fndecl 2-3 50901 NULL
++disable_so_xfs_btree_log_ptrs_fndecl_50906 xfs_btree_log_ptrs fndecl 3-4 50906 NULL
++disable_so_dib8000_get_time_us_fndecl_50908 dib8000_get_time_us fndecl 0 50908 NULL
++disable_so_iscsi_nacl_attrib_store_random_datain_pdu_offsets_fndecl_50909 iscsi_nacl_attrib_store_random_datain_pdu_offsets fndecl 0-3 50909 NULL nohasharray
++disable_so_seq_ceph_snap_context_50909 seq ceph_snap_context 0 50909 &disable_so_iscsi_nacl_attrib_store_random_datain_pdu_offsets_fndecl_50909
++disable_so_v_radeon_vce_clock_voltage_dependency_entry_50914 v radeon_vce_clock_voltage_dependency_entry 0 50914 NULL
++disable_so_authenc_verify_ahash_update_done_fndecl_50918 authenc_verify_ahash_update_done fndecl 2 50918 NULL
++disable_so___get_order_fndecl_50924 __get_order fndecl 0-1 50924 NULL
++disable_so_ahash_complete_fndecl_50926 ahash_complete fndecl 2 50926 NULL
++disable_so_aes_encrypt_interrupt_read_fndecl_50940 aes_encrypt_interrupt_read fndecl 3-0 50940 NULL
++disable_so_m_freq_tbl_50942 m freq_tbl 0 50942 NULL
++disable_so_faddr_ptd_50953 faddr ptd 0 50953 NULL
++disable_so_ceph_mdsmap_get_addr_fndecl_50967 ceph_mdsmap_get_addr fndecl 2 50967 NULL
++disable_so_cma_bitmap_aligned_mask_fndecl_50977 cma_bitmap_aligned_mask fndecl 0-2 50977 NULL
++disable_so_iscsi_tpg_attrib_show_login_timeout_fndecl_50979 iscsi_tpg_attrib_show_login_timeout fndecl 0 50979 NULL
++disable_so_send_set_imon_clock_fndecl_50982 send_set_imon_clock fndecl 0 50982 NULL
++disable_so_inet_saddr_inet_sock_50990 inet_saddr inet_sock 0 50990 NULL
++disable_so_qlcnic_get_mac_address_fndecl_50991 qlcnic_get_mac_address fndecl 3 50991 NULL
++disable_so_afs_get_MAC_address_fndecl_50999 afs_get_MAC_address fndecl 0 50999 NULL
++disable_so_timestamp_batadv_frag_table_entry_51002 timestamp batadv_frag_table_entry 0 51002 NULL nohasharray
++disable_so_dn_rt_hash_mask_vardecl_dn_route_c_51002 dn_rt_hash_mask vardecl_dn_route.c 0 51002 &disable_so_timestamp_batadv_frag_table_entry_51002
++disable_so_phy_addr_tg3_51010 phy_addr tg3 0 51010 NULL
++disable_so_vmx_set_tss_addr_fndecl_51020 vmx_set_tss_addr fndecl 0-2 51020 NULL
++disable_so_dialed_frequency_ptp_clock_51022 dialed_frequency ptp_clock 0 51022 NULL nohasharray
++disable_so_get_std_timing_fndecl_51022 get_std_timing fndecl 0 51022 &disable_so_dialed_frequency_ptp_clock_51022
++disable_so_hdspm_get_pll_freq_fndecl_51023 hdspm_get_pll_freq fndecl 0 51023 NULL
++disable_so_sb_timeshift_hpfs_sb_info_51027 sb_timeshift hpfs_sb_info 0 51027 NULL
++disable_so_ob_baseaddr_l_mvumi_hs_page4_51028 ob_baseaddr_l mvumi_hs_page4 0 51028 NULL
++disable_so_tw_snd_nxt_tcp_timewait_sock_51035 tw_snd_nxt tcp_timewait_sock 0 51035 NULL
++disable_so_buffer_used_snd_pcm_oss_runtime_51041 buffer_used snd_pcm_oss_runtime 0 51041 NULL
++disable_so_read_addr_qla8xxx_minidump_entry_queue_51046 read_addr qla8xxx_minidump_entry_queue 0 51046 NULL
++disable_so_address_vardecl_it8712f_wdt_c_51057 address vardecl_it8712f_wdt.c 0 51057 NULL
++disable_so_kr_rcvhdraddr_ipath_kregs_51063 kr_rcvhdraddr ipath_kregs 0 51063 NULL
++disable_so_wlcore_hw_ap_sleep_fndecl_51069 wlcore_hw_ap_sleep fndecl 0 51069 NULL
++disable_so_vnic_dev_intr_coal_timer_info_fndecl_51076 vnic_dev_intr_coal_timer_info fndecl 0 51076 NULL
++disable_so_table2_addr_ipw2100_ordinals_51081 table2_addr ipw2100_ordinals 0 51081 NULL
++disable_so_addr_bnx2x_phy_51087 addr bnx2x_phy 0 51087 NULL
++disable_so_xfs_btree_copy_ptrs_fndecl_51093 xfs_btree_copy_ptrs fndecl 4 51093 NULL
++disable_so_core_frequency_transition_fndecl_51097 core_frequency_transition fndecl 2 51097 NULL
++disable_so_msr_ioctl_fndecl_51103 msr_ioctl fndecl 0 51103 NULL
++disable_so_split_timeout_hi_fw_card_51105 split_timeout_hi fw_card 0 51105 NULL
++disable_so_msg_bits_ccp_sha_req_ctx_51106 msg_bits ccp_sha_req_ctx 0 51106 NULL
++disable_so_page_order_btree_keys_51110 page_order btree_keys 0 51110 NULL
++disable_so_pvclock_gtod_register_notifier_fndecl_51113 pvclock_gtod_register_notifier fndecl 0 51113 NULL
++disable_so_cfg80211_ibss_wext_siwfreq_fndecl_51119 cfg80211_ibss_wext_siwfreq fndecl 0 51119 NULL
++disable_so_pan_id_ieee802154_hw_addr_filt_51121 pan_id ieee802154_hw_addr_filt 0 51121 NULL
++disable_so_alignmask_blkcipher_walk_51130 alignmask blkcipher_walk 0 51130 NULL
++disable_so_i2c_master_send_fndecl_51152 i2c_master_send fndecl 3-0 51152 NULL
++disable_so_skcipher_null_givencrypt_fndecl_51153 skcipher_null_givencrypt fndecl 0 51153 NULL
++disable_so_hr_last_timeout_start_o2hb_region_51155 hr_last_timeout_start o2hb_region 0 51155 NULL
++disable_so_cycles_ath_cycle_counters_51156 cycles ath_cycle_counters 0 51156 NULL
++disable_so_notify_remote_via_irq_fndecl_51164 notify_remote_via_irq fndecl 1 51164 NULL
++disable_so_onenand_block_address_fndecl_51167 onenand_block_address fndecl 0-2 51167 NULL
++disable_so_ctimensec_fuse_setattr_in_51177 ctimensec fuse_setattr_in 0 51177 NULL
++disable_so_exp_time_mesh_path_51180 exp_time mesh_path 0 51180 NULL
++disable_so_tcp_try_rmem_schedule_fndecl_51194 tcp_try_rmem_schedule fndecl 3 51194 NULL
++disable_so_avail_mlx4_bitmap_51198 avail mlx4_bitmap 0 51198 NULL
++disable_so_s2mpa01_set_ramp_delay_fndecl_51200 s2mpa01_set_ramp_delay fndecl 0 51200 NULL
++disable_so_addr_e820entry_51224 addr e820entry 0 51224 NULL
++disable_so_rx_dma_addr_smsc9420_pdata_51225 rx_dma_addr smsc9420_pdata 0 51225 NULL
++disable_so_trf7970a_pm_runtime_resume_fndecl_51233 trf7970a_pm_runtime_resume fndecl 0 51233 NULL
++disable_so_pfkey_sockaddr_extract_fndecl_51238 pfkey_sockaddr_extract fndecl 0 51238 NULL
++disable_so_clock_snd_ac97_bus_51245 clock snd_ac97_bus 0 51245 NULL
++disable_so_mtime_dir_entry_51261 mtime dir_entry 0 51261 NULL
++disable_so_address_upper_scu_sgl_element_51271 address_upper scu_sgl_element 0 51271 NULL
++disable_so_resolution_vardecl_hrtimer_c_51279 resolution vardecl_hrtimer.c 0 51279 NULL nohasharray
++disable_so_r600_dpm_get_vblank_time_fndecl_51279 r600_dpm_get_vblank_time fndecl 0 51279 &disable_so_resolution_vardecl_hrtimer_c_51279
++disable_so___ndelay_fndecl_51287 __ndelay fndecl 1 51287 NULL
++disable_so_hashbin_lock_find_fndecl_51294 hashbin_lock_find fndecl 2 51294 NULL
++disable_so_snd_es1968_apu_set_freq_fndecl_51295 snd_es1968_apu_set_freq fndecl 3 51295 NULL
++disable_so_lvb_iuid_ocfs2_meta_lvb_51297 lvb_iuid ocfs2_meta_lvb 0 51297 NULL
++disable_so_usb2_lpm_l1_timeout_show_fndecl_51308 usb2_lpm_l1_timeout_show fndecl 0 51308 NULL
++disable_so_addrHigh_ULP_BDL_51312 addrHigh ULP_BDL 0 51312 NULL
++disable_so_alarm_timer_nsleep_fndecl_51313 alarm_timer_nsleep fndecl 1 51313 NULL nohasharray
++disable_so_cpufreq_get_max_state_fndecl_51313 cpufreq_get_max_state fndecl 1 51313 &disable_so_alarm_timer_nsleep_fndecl_51313
++disable_so_addr_buffer2_cmd_desc_type0_51316 addr_buffer2 cmd_desc_type0 0 51316 NULL
++disable_so___mlx4_cmd_fndecl_51319 __mlx4_cmd fndecl 0-2-5 51319 NULL
++disable_so_addr_nvif_ioctl_rd_v0_51321 addr nvif_ioctl_rd_v0 0 51321 NULL
++disable_so_register_write_lock_rt2800_ops_51323 register_write_lock rt2800_ops 3 51323 NULL
++disable_so_addr_host_sg_desc_51324 addr host_sg_desc 0 51324 NULL
++disable_so_swc_base_addr_vardecl_pc87413_wdt_c_51328 swc_base_addr vardecl_pc87413_wdt.c 0 51328 NULL
++disable_so_myri10ge_set_mac_address_fndecl_51332 myri10ge_set_mac_address fndecl 0 51332 NULL
++disable_so_xt_ct_set_timeout_fndecl_51333 xt_ct_set_timeout fndecl 0 51333 NULL
++disable_so_crypto_ahash_digest_fndecl_51343 crypto_ahash_digest fndecl 0 51343 NULL
++disable_so_calculate_next_time_fndecl_51345 calculate_next_time fndecl 0 51345 NULL
++disable_so_from_kgid_fndecl_51359 from_kgid fndecl 0 51359 NULL
++disable_so_dm9161_ack_interrupt_fndecl_51361 dm9161_ack_interrupt fndecl 0 51361 NULL nohasharray
++disable_so_write_addr_mdc_hw_list_desc_51361 write_addr mdc_hw_list_desc 0 51361 &disable_so_dm9161_ack_interrupt_fndecl_51361
++disable_so_clock_kvm_clock_data_51363 clock kvm_clock_data 0 51363 NULL
++disable_so_sapi_sockaddr_mISDN_51369 sapi sockaddr_mISDN 0 51369 NULL
++disable_so_act8b_ide_timing_51373 act8b ide_timing 0 51373 NULL
++disable_so_driver_data_cpufreq_frequency_table_51376 driver_data cpufreq_frequency_table 0 51376 NULL
++disable_so_timeout_clk_sdhci_host_51378 timeout_clk sdhci_host 0 51378 NULL
++disable_so_ref_div_rv7xx_power_info_51381 ref_div rv7xx_power_info 0 51381 NULL
++disable_so_event_jiffies_atkbd_51387 event_jiffies atkbd 0 51387 NULL
++disable_so_addr_kvm_coalesced_mmio_zone_51392 addr kvm_coalesced_mmio_zone 0 51392 NULL
++disable_so_print_fatal_signal_fndecl_51397 print_fatal_signal fndecl 1 51397 NULL
++disable_so_de_media_interrupt_fndecl_51410 de_media_interrupt fndecl 2 51410 NULL nohasharray
++disable_so_cryptomgr_schedule_probe_fndecl_51410 cryptomgr_schedule_probe fndecl 0 51410 &disable_so_de_media_interrupt_fndecl_51410
++disable_so_ql_set_mac_addr_reg_fndecl_51414 ql_set_mac_addr_reg fndecl 0-4 51414 NULL
++disable_so_iscsi_stat_sess_show_attr_conn_timeout_errors_fndecl_51417 iscsi_stat_sess_show_attr_conn_timeout_errors fndecl 0 51417 NULL
++disable_so_read_addr_qla8044_minidump_entry_cache_51419 read_addr qla8044_minidump_entry_cache 0 51419 NULL
++disable_so_clk_freq_khz_pll_tab_51420 clk_freq_khz pll_tab 0 51420 NULL
++disable_so_pll_d_aic32x4_rate_divs_51425 pll_d aic32x4_rate_divs 0 51425 NULL
++disable_so_T6_address_mxt_data_51429 T6_address mxt_data 0 51429 NULL
++disable_so_q_addr_ioat_pq_descriptor_51439 q_addr ioat_pq_descriptor 0 51439 NULL
++disable_so_imx_phy_crbit_assert_fndecl_51461 imx_phy_crbit_assert fndecl 0 51461 NULL
++disable_so_soc_camera_clock_start_fndecl_51464 soc_camera_clock_start fndecl 0 51464 NULL
++disable_so_after_ctime_nsec_nfsd4_change_info_51470 after_ctime_nsec nfsd4_change_info 0 51470 NULL
++disable_so_free_fall_time_adxl34x_platform_data_51477 free_fall_time adxl34x_platform_data 0 51477 NULL
++disable_so_new_c_uuid_parms_from_attrs_fndecl_51480 new_c_uuid_parms_from_attrs fndecl 0 51480 NULL
++disable_so_addr_high_mcp_kreq_ether_recv_51484 addr_high mcp_kreq_ether_recv 0 51484 NULL
++disable_so_min_freq_ufs_clk_info_51485 min_freq ufs_clk_info 0 51485 NULL
++disable_so_force_addr_vardecl_sis5595_c_51490 force_addr vardecl_sis5595.c 0 51490 NULL
++disable_so_byt_freq_opcode_fndecl_51497 byt_freq_opcode fndecl 0-2 51497 NULL
++disable_so_vco_gma_clock_t_51506 vco gma_clock_t 0 51506 NULL
++disable_so_saddr_irlan_cb_51519 saddr irlan_cb 0 51519 NULL
++disable_so_r14_kvm_regs_51526 r14 kvm_regs 0 51526 NULL
++disable_so_sys_image_guid_ib_device_modify_51537 sys_image_guid ib_device_modify 0 51537 NULL
++disable_so_abx500_mask_and_set_register_interruptible_fndecl_51542 abx500_mask_and_set_register_interruptible fndecl 0-5 51542 NULL
++disable_so_show_constraint_min_time_window_us_fndecl_51544 show_constraint_min_time_window_us fndecl 0 51544 NULL
++disable_so_phys_addr_sge_rspq_51550 phys_addr sge_rspq 0 51550 NULL
++disable_so_tw_substate_inet_timewait_sock_51564 tw_substate inet_timewait_sock 0 51564 NULL
++disable_so_ebx_user_regs_struct32_51572 ebx user_regs_struct32 0 51572 NULL
++disable_so_snd_azf3328_interrupt_fndecl_51583 snd_azf3328_interrupt fndecl 1 51583 NULL
++disable_so_wl1251_acx_rx_msdu_life_time_fndecl_51591 wl1251_acx_rx_msdu_life_time fndecl 0 51591 NULL
++disable_so_grh_gid_fl_mlx5_av_51610 grh_gid_fl mlx5_av 0 51610 NULL
++disable_so_space_id_acpi_object_addr_handler_51611 space_id acpi_object_addr_handler 0 51611 NULL
++disable_so_pick_local_ip6addrs_fndecl_51615 pick_local_ip6addrs fndecl 0 51615 NULL
++disable_so_nmi_perfctr_msr_to_bit_fndecl_51618 nmi_perfctr_msr_to_bit fndecl 0-1 51618 NULL
++disable_so_dcc_timeout_vardecl_nf_conntrack_irc_c_51622 dcc_timeout vardecl_nf_conntrack_irc.c 0 51622 NULL
++disable_so_ath9k_hw_fbin2freq_fndecl_51628 ath9k_hw_fbin2freq fndecl 0-1 51628 NULL
++disable_so_audit_signal_info_fndecl_51630 audit_signal_info fndecl 0-1 51630 NULL
++disable_so_sirdev_schedule_request_fndecl_51632 sirdev_schedule_request fndecl 3-0 51632 NULL
++disable_so_stb0899_write_s2reg_fndecl_51642 stb0899_write_s2reg fndecl 5-0 51642 NULL nohasharray
++disable_so_sha512_ssse3_mod_init_fndecl_51642 sha512_ssse3_mod_init fndecl 0 51642 &disable_so_stb0899_write_s2reg_fndecl_51642
++disable_so_get_bitmap_fndecl_51645 get_bitmap fndecl 0-2 51645 NULL
++disable_so_total_bitmaps_btrfs_free_space_ctl_51648 total_bitmaps btrfs_free_space_ctl 0 51648 NULL
++disable_so_sk_wmem_schedule_fndecl_51651 sk_wmem_schedule fndecl 2 51651 NULL
++disable_so_btree_readpage_end_io_hook_fndecl_51654 btree_readpage_end_io_hook fndecl 0 51654 NULL
++disable_so_delay_pi_adapter_51655 delay pi_adapter 0 51655 NULL
++disable_so_snd_pcm_new_fndecl_51660 snd_pcm_new fndecl 0-3-4-5 51660 NULL
++disable_so_soft_add_expires_seconds_xfrm_lifetime_cfg_51674 soft_add_expires_seconds xfrm_lifetime_cfg 0 51674 NULL
++disable_so_ib_query_gid_fndecl_51677 ib_query_gid fndecl 0-2-3 51677 NULL
++disable_so_m_hi_cfg_timeout_drxk_state_51689 m_hi_cfg_timeout drxk_state 0 51689 NULL
++disable_so_mma9553_runtime_resume_fndecl_51690 mma9553_runtime_resume fndecl 0 51690 NULL
++disable_so_phy_pm_runtime_put_fndecl_51692 phy_pm_runtime_put fndecl 0 51692 NULL
++disable_so_cdclk_freq_drm_i915_private_51693 cdclk_freq drm_i915_private 0 51693 NULL
++disable_so__get_div_fndecl_51696 _get_div fndecl 2-0 51696 NULL
++disable_so_sit_ver_bitmap_bytesize_f2fs_checkpoint_51697 sit_ver_bitmap_bytesize f2fs_checkpoint 0 51697 NULL
++disable_so_seq_framebuf_51700 seq framebuf 0 51700 NULL nohasharray
++disable_so_tsc_drv_init_fndecl_51700 tsc_drv_init fndecl 0 51700 &disable_so_seq_framebuf_51700
++disable_so_lower_first_uid_gid_extent_51714 lower_first uid_gid_extent 0 51714 NULL
++disable_so_acpi_enter_sleep_state_prep_fndecl_51716 acpi_enter_sleep_state_prep fndecl 0-1 51716 NULL
++disable_so_set_data_timeout_fndecl_51718 set_data_timeout fndecl 2-3 51718 NULL
++disable_so_suspend_test_start_time_vardecl_suspend_test_c_51720 suspend_test_start_time vardecl_suspend_test.c 0 51720 NULL
++disable_so_phy_addr_uli526x_board_info_51722 phy_addr uli526x_board_info 0 51722 NULL
++disable_so_vdelay_bttv_geometry_51725 vdelay bttv_geometry 0 51725 NULL
++disable_so_rv6xx_find_memory_clock_with_highest_vco_fndecl_51726 rv6xx_find_memory_clock_with_highest_vco fndecl 2-3 51726 NULL
++disable_so_blocksize_crypto_report_hash_51730 blocksize crypto_report_hash 0 51730 NULL
++disable_so_set_param_timeout_fndecl_51735 set_param_timeout fndecl 0 51735 NULL
++disable_so_iowrite16be_fndecl_51739 iowrite16be fndecl 1 51739 NULL
++disable_so_lvds_chip_slave_addr_lvds_chip_information_51750 lvds_chip_slave_addr lvds_chip_information 0 51750 NULL
++disable_so_xhci_queue_address_device_fndecl_51755 xhci_queue_address_device fndecl 0-3-4 51755 NULL
++disable_so_rx_abs_int_delay_e1000_adapter_51763 rx_abs_int_delay e1000_adapter 0 51763 NULL
++disable_so_ext4_wait_block_bitmap_fndecl_51764 ext4_wait_block_bitmap fndecl 2 51764 NULL
++disable_so_tid_host_cmd_ds_11n_batimeout_51772 tid host_cmd_ds_11n_batimeout 0 51772 NULL
++disable_so_mpll_ss1_rv770_clock_registers_51773 mpll_ss1 rv770_clock_registers 0 51773 NULL
++disable_so_xpc_disengage_timelimit_vardecl_51789 xpc_disengage_timelimit vardecl 0 51789 NULL
++disable_so_current_dispclk_radeon_clock_51795 current_dispclk radeon_clock 0 51795 NULL
++disable_so_mclk_sm501_clock_51799 mclk sm501_clock 0 51799 NULL
++disable_so_frequency_mixart_clock_properties_51800 frequency mixart_clock_properties 0 51800 NULL nohasharray
++disable_so_freq_p54_rssi_db_entry_51800 freq p54_rssi_db_entry 0 51800 &disable_so_frequency_mixart_clock_properties_51800
++disable_so_display_delay_enable_s5p_mfc_ctx_51814 display_delay_enable s5p_mfc_ctx 0 51814 NULL
++disable_so_phys_to_virt_fndecl_51830 phys_to_virt fndecl 1 51830 NULL
++disable_so___lock_timer_fndecl_51836 __lock_timer fndecl 1 51836 NULL
++disable_so_gid_index_mthca_av_51840 gid_index mthca_av 0 51840 NULL
++disable_so_physical_address_smbios_cru64_info_51854 physical_address smbios_cru64_info 0 51854 NULL
++disable_so_sleep_em28xx_reg_seq_51857 sleep em28xx_reg_seq 0 51857 NULL
++disable_so_current_frequency_or51211_state_51860 current_frequency or51211_state 0 51860 NULL
++disable_so_timer_trig_init_fndecl_51865 timer_trig_init fndecl 0 51865 NULL
++disable_so___posix_timers_find_fndecl_51867 __posix_timers_find fndecl 3 51867 NULL
++disable_so_xattr_hash_fndecl_51881 xattr_hash fndecl 2 51881 NULL
++disable_so_ntfs_bitmap_set_bit_fndecl_51888 ntfs_bitmap_set_bit fndecl 2 51888 NULL
++disable_so_hp_ntimer_hpets_51897 hp_ntimer hpets 0 51897 NULL
++disable_so_crypto_blkcipher_decrypt_iv_fndecl_51901 crypto_blkcipher_decrypt_iv fndecl 0-4 51901 NULL
++disable_so_emitted_jiffies_drm_i915_gem_request_51929 emitted_jiffies drm_i915_gem_request 0 51929 NULL
++disable_so_PageAddress__MPI2_CONFIG_REQUEST_51930 PageAddress _MPI2_CONFIG_REQUEST 0 51930 NULL
++disable_so_mlx4_read_clock_fndecl_51933 mlx4_read_clock fndecl 0 51933 NULL
++disable_so_plh_retry_timestamp_pnfs_layout_hdr_51936 plh_retry_timestamp pnfs_layout_hdr 0 51936 NULL nohasharray
++disable_so_ext4_set_bitmap_checksums_fndecl_51936 ext4_set_bitmap_checksums fndecl 0-2 51936 &disable_so_plh_retry_timestamp_pnfs_layout_hdr_51936
++disable_so_padlock_sha256_finup_fndecl_51938 padlock_sha256_finup fndecl 0 51938 NULL
++disable_so_delay_usec_e1000_nvm_info_51943 delay_usec e1000_nvm_info 0 51943 NULL
++disable_so_guest_phys_addr_kvm_userspace_memory_region_51947 guest_phys_addr kvm_userspace_memory_region 0 51947 NULL
++disable_so_addr_drm_radeon_gem_userptr_51948 addr drm_radeon_gem_userptr 0 51948 NULL
++disable_so__regulator_enable_delay_fndecl_51949 _regulator_enable_delay fndecl 1 51949 NULL
++disable_so_grp_time_xfs_mru_cache_51952 grp_time xfs_mru_cache 0 51952 NULL
++disable_so_clock_realtek_pci_ms_51953 clock realtek_pci_ms 0 51953 NULL
++disable_so_sm_ll_lookup_bitmap_fndecl_51973 sm_ll_lookup_bitmap fndecl 0-2 51973 NULL
++disable_so_sa_family_sockaddr_51986 sa_family sockaddr 0 51986 NULL
++disable_so_i_dtime_ext3_inode_info_51992 i_dtime ext3_inode_info 0 51992 NULL
++disable_so_bitmap_ipmac_gc_test_fndecl_51993 bitmap_ipmac_gc_test fndecl 3 51993 NULL
++disable_so_ocfs2_change_ctime_fndecl_52000 ocfs2_change_ctime fndecl 0 52000 NULL
++disable_so_sadb_lifetime_usetime_sadb_lifetime_52005 sadb_lifetime_usetime sadb_lifetime 0 52005 NULL
++disable_so_sysctl_lap_keepalive_time_vardecl_52006 sysctl_lap_keepalive_time vardecl 0 52006 NULL nohasharray
++disable_so_address_u132_command_52006 address u132_command 0 52006 &disable_so_sysctl_lap_keepalive_time_vardecl_52006
++disable_so_txdesc_interrupt_mask_ath_hw_52011 txdesc_interrupt_mask ath_hw 0 52011 NULL
++disable_so_rebind_irq_to_cpu_fndecl_52013 rebind_irq_to_cpu fndecl 1-2 52013 NULL
++disable_so_gid_numa_group_52023 gid numa_group 0 52023 NULL
++disable_so_cpuidle_add_sysfs_fndecl_52026 cpuidle_add_sysfs fndecl 0 52026 NULL
++disable_so_selinux_task_getpgid_fndecl_52032 selinux_task_getpgid fndecl 0 52032 NULL
++disable_so_demod_address_cx24116_config_52035 demod_address cx24116_config 0 52035 NULL
++disable_so_sched_group_set_rt_runtime_fndecl_52036 sched_group_set_rt_runtime fndecl 2-0 52036 NULL
++disable_so_ntp_error_timekeeper_52044 ntp_error timekeeper 0 52044 NULL
++disable_so_sys_addr_to_dram_addr_fndecl_52052 sys_addr_to_dram_addr fndecl 0-2 52052 NULL
++disable_so_shared_data_busaddr_ahc_softc_52059 shared_data_busaddr ahc_softc 0 52059 NULL
++disable_so_gl_demote_time_gfs2_glock_52068 gl_demote_time gfs2_glock 0 52068 NULL
++disable_so_m41t93_get_time_fndecl_52075 m41t93_get_time fndecl 0 52075 NULL
++disable_so_reg_val_coeff_clk_div_52082 reg_val coeff_clk_div 0 52082 NULL
++disable_so_dap_fcgs_gidpn_resp_s_52084 dap fcgs_gidpn_resp_s 0 52084 NULL
++disable_so_kbd_backlight_timeout_show_fndecl_52086 kbd_backlight_timeout_show fndecl 0 52086 NULL
++disable_so_ifa_address_in_ifaddr_52095 ifa_address in_ifaddr 0 52095 NULL
++disable_so_mmc_set_clock_fndecl_52096 mmc_set_clock fndecl 2 52096 NULL
++disable_so_constant_timex_52100 constant timex 0 52100 NULL
++disable_so_rds_ib_remove_ipaddr_fndecl_52103 rds_ib_remove_ipaddr fndecl 2 52103 NULL
++disable_so_adf4350_set_freq_fndecl_52106 adf4350_set_freq fndecl 0-2 52106 NULL
++disable_so_max_mtime_sit_info_52107 max_mtime sit_info 0 52107 NULL
++disable_so_retry_delay_timestamp_fc_port_52109 retry_delay_timestamp fc_port 0 52109 NULL
++disable_so_sha256_ssse3_mod_init_fndecl_52112 sha256_ssse3_mod_init fndecl 0 52112 NULL
++disable_so_nilfs_btree_init_fndecl_52115 nilfs_btree_init fndecl 0 52115 NULL
++disable_so_baseaddr_ds1685_priv_52117 baseaddr ds1685_priv 0 52117 NULL
++disable_so_vga_get_uninterruptible_fndecl_52134 vga_get_uninterruptible fndecl 0 52134 NULL
++disable_so_gr_handle_signal_fndecl_52137 gr_handle_signal fndecl 2 52137 NULL
++disable_so_sample_bits_snd_pcm_runtime_52138 sample_bits snd_pcm_runtime 0 52138 NULL
++disable_so_make_kgid_fndecl_52149 make_kgid fndecl 2 52149 NULL
++disable_so_skcipher_sendmsg_fndecl_52153 skcipher_sendmsg fndecl 0-3 52153 NULL
++disable_so_base_addr_ce_space_ath10k_ce_ring_52154 base_addr_ce_space ath10k_ce_ring 0 52154 NULL
++disable_so_msr_guest_kernel_gs_base_vcpu_vmx_52157 msr_guest_kernel_gs_base vcpu_vmx 0 52157 NULL
++disable_so_mpll_func_cntl_rv730_clock_registers_52160 mpll_func_cntl rv730_clock_registers 0 52160 NULL
++disable_so_system_time_xenpf_settime_52164 system_time xenpf_settime 0 52164 NULL
++disable_so_ddiv_gk104_clk_info_52171 ddiv gk104_clk_info 0 52171 NULL
++disable_so_detect_pll_input_clock_fndecl_52172 detect_pll_input_clock fndecl 1-0 52172 NULL
++disable_so_mpll_dq_func_cntl_2_ni_clock_registers_52173 mpll_dq_func_cntl_2 ni_clock_registers 0 52173 NULL
++disable_so_opmode_delay_picolcd_data_52176 opmode_delay picolcd_data 0 52176 NULL
++disable_so_get_display_clock_speed_drm_i915_display_funcs_52177 get_display_clock_speed drm_i915_display_funcs 0 52177 NULL
++disable_so_addr_lp8788_chg_param_52185 addr lp8788_chg_param 0 52185 NULL
++disable_so_beacon_interval_il_rxon_time_cmd_52191 beacon_interval il_rxon_time_cmd 0 52191 NULL
++disable_so_threshold_high_nes_hw_tune_timer_52193 threshold_high nes_hw_tune_timer 0 52193 NULL
++disable_so_timeout_ms_rdma_ucm_resolve_route_52203 timeout_ms rdma_ucm_resolve_route 0 52203 NULL
++disable_so___mmc_set_signal_voltage_fndecl_52208 __mmc_set_signal_voltage fndecl 0 52208 NULL
++disable_so_jhash_2words_fndecl_52211 jhash_2words fndecl 0-1-2 52211 NULL
++disable_so_suspend_time_iwl_scan_cmd_52218 suspend_time iwl_scan_cmd 0 52218 NULL
++disable_so_sha1_mb_async_update_fndecl_52220 sha1_mb_async_update fndecl 0 52220 NULL
++disable_so_sleep_cx231xx_reg_seq_52228 sleep cx231xx_reg_seq 0 52228 NULL
++disable_so_select_addr_1_qla8044_minidump_entry_rdmux2_52243 select_addr_1 qla8044_minidump_entry_rdmux2 0 52243 NULL nohasharray
++disable_so_SYSC_setregid_fndecl_52243 SYSC_setregid fndecl 0 52243 &disable_so_select_addr_1_qla8044_minidump_entry_rdmux2_52243
++disable_so_snd_pcm_timer_resolution_fndecl_52247 snd_pcm_timer_resolution fndecl 0 52247 NULL
++disable_so_s_hash_function_reiserfs_sb_info_52248 s_hash_function reiserfs_sb_info 0-2 52248 NULL
++disable_so_read_addr_qla8044_minidump_entry_rdmux2_52249 read_addr qla8044_minidump_entry_rdmux2 0 52249 NULL
++disable_so_comp_addr_lo_dmae_command_52260 comp_addr_lo dmae_command 0 52260 NULL
++disable_so_tsl2563_read_interrupt_config_fndecl_52267 tsl2563_read_interrupt_config fndecl 0 52267 NULL
++disable_so_mlx4_ib_init_alias_guid_service_fndecl_52269 mlx4_ib_init_alias_guid_service fndecl 0 52269 NULL
++disable_so_pvr2_hdw_get_eeprom_addr_fndecl_52271 pvr2_hdw_get_eeprom_addr fndecl 0 52271 NULL
++disable_so_coalescing_timeo_bna_ib_52276 coalescing_timeo bna_ib 0 52276 NULL
++disable_so_sll_protocol_sockaddr_ll_52284 sll_protocol sockaddr_ll 0 52284 NULL nohasharray
++disable_so_cmd64x_set_timing_fndecl_52284 cmd64x_set_timing fndecl 3 52284 &disable_so_sll_protocol_sockaddr_ll_52284
++disable_so_entrytime_batadv_bcast_duplist_entry_52297 entrytime batadv_bcast_duplist_entry 0 52297 NULL
++disable_so_cumul_ack_westwood_52298 cumul_ack westwood 0 52298 NULL
++disable_so_r2b_val_fc2580_freq_regs_52299 r2b_val fc2580_freq_regs 0 52299 NULL
++disable_so_btree_remove32_fndecl_52302 btree_remove32 fndecl 2 52302 NULL
++disable_so_btrfs_insert_delayed_items_fndecl_52308 btrfs_insert_delayed_items fndecl 0 52308 NULL
++disable_so_bios_limit_cpufreq_driver_52312 bios_limit cpufreq_driver 1 52312 NULL
++disable_so___nf_conntrack_hash_insert_fndecl_52323 __nf_conntrack_hash_insert fndecl 2-3 52323 NULL
++disable_so_rapl_get_attr_cpumask_fndecl_52324 rapl_get_attr_cpumask fndecl 0 52324 NULL
++disable_so_frequency_dst_state_52328 frequency dst_state 0 52328 NULL
++disable_so_status_fifo_addr_sbp_login_descriptor_52353 status_fifo_addr sbp_login_descriptor 0 52353 NULL
++disable_so_musb_write_txhubaddr_fndecl_52354 musb_write_txhubaddr fndecl 2-3 52354 NULL
++disable_so_cx18_msleep_timeout_fndecl_52356 cx18_msleep_timeout fndecl 1 52356 NULL
++disable_so_input_event_fndecl_52364 input_event fndecl 3-4 52364 NULL
++disable_so_timeout_ip_vs_sync_v6_52374 timeout ip_vs_sync_v6 0 52374 NULL
++disable_so_wait_on_bit_io_fndecl_52381 wait_on_bit_io fndecl 0 52381 NULL
++disable_so_mthca_mr_alloc_notrans_fndecl_52385 mthca_mr_alloc_notrans fndecl 0-2 52385 NULL
++disable_so_pwm_divisor_nvbios_perf_fan_52386 pwm_divisor nvbios_perf_fan 0 52386 NULL nohasharray
++disable_so_iscsi_ipv4addr_port_info_52386 iscsi_ipv4addr port_info 0 52386 &disable_so_pwm_divisor_nvbios_perf_fan_52386
++disable_so_dpp_unmapped_addr_be_dev_info_52388 dpp_unmapped_addr be_dev_info 0 52388 NULL nohasharray
++disable_so_request_threaded_irq_fndecl_52388 request_threaded_irq fndecl 0-1-4 52388 &disable_so_dpp_unmapped_addr_be_dev_info_52388
++disable_so_g84_cipher_ctor_fndecl_52389 g84_cipher_ctor fndecl 0 52389 NULL
++disable_so_time_constant_vardecl_ntp_c_52392 time_constant vardecl_ntp.c 0 52392 NULL nohasharray
++disable_so_sis_ata100_program_timings_fndecl_52392 sis_ata100_program_timings fndecl 2 52392 &disable_so_time_constant_vardecl_ntp_c_52392
++disable_so_hbqaddrHigh_config_hbq_var_52395 hbqaddrHigh config_hbq_var 0 52395 NULL
++disable_so_objectid_btrfs_delayed_data_ref_52398 objectid btrfs_delayed_data_ref 0 52398 NULL
++disable_so_btrfs_schedule_bio_fndecl_52412 btrfs_schedule_bio fndecl 3 52412 NULL
++disable_so_wm8804_set_clkdiv_fndecl_52423 wm8804_set_clkdiv fndecl 3 52423 NULL
++disable_so_tm_year_rtc_time_52437 tm_year rtc_time 0 52437 NULL
++disable_so_message_age_timer_value___port_info_52442 message_age_timer_value __port_info 0 52442 NULL nohasharray
++disable_so_genwqe_debugfs_prev_dbg_uid0_open_fndecl_52442 genwqe_debugfs_prev_dbg_uid0_open fndecl 0 52442 &disable_so_message_age_timer_value___port_info_52442
++disable_so_time_stamp_pch_gbe_buffer_52453 time_stamp pch_gbe_buffer 0 52453 NULL
++disable_so_fsl_pwm_calculate_cycles_fndecl_52454 fsl_pwm_calculate_cycles fndecl 0-2 52454 NULL
++disable_so_default_timetolive_sctp_association_52455 default_timetolive sctp_association 0 52455 NULL
++disable_so_xc2028_sleep_fndecl_52469 xc2028_sleep fndecl 0 52469 NULL
++disable_so_regulator_map_voltage_linear_fndecl_52488 regulator_map_voltage_linear fndecl 0-2-3 52488 NULL
++disable_so_nsecs_to_jiffies64_fndecl_52497 nsecs_to_jiffies64 fndecl 0-1 52497 NULL
++disable_so_pm_runtime_resume_fndecl_52501 pm_runtime_resume fndecl 0 52501 NULL
++disable_so_stop_threshold_snd_pcm_runtime_52503 stop_threshold snd_pcm_runtime 0 52503 NULL
++disable_so_il_get_passive_dwell_time_fndecl_52511 il_get_passive_dwell_time fndecl 0 52511 NULL nohasharray
++disable_so_show_src_clock_sel_fndecl_52511 show_src_clock_sel fndecl 0 52511 &disable_so_il_get_passive_dwell_time_fndecl_52511
++disable_so_mxl111sf_frontend_attach_atsc_mh_fndecl_52518 mxl111sf_frontend_attach_atsc_mh fndecl 0 52518 NULL
++disable_so_gcm_hash_assoc_continue_fndecl_52527 gcm_hash_assoc_continue fndecl 0 52527 NULL
++disable_so_time_next_packet_fq_flow_52535 time_next_packet fq_flow 0 52535 NULL nohasharray
++disable_so_exit_deep_sleep_lbs_private_52535 exit_deep_sleep lbs_private 0 52535 &disable_so_time_next_packet_fq_flow_52535
++disable_so_page_check_address_pmd_fndecl_52537 page_check_address_pmd fndecl 3 52537 NULL
++disable_so_stime_signal_struct_52540 stime signal_struct 0 52540 NULL nohasharray
++disable_so_hblank_lo_oaktrail_timing_info_52540 hblank_lo oaktrail_timing_info 0 52540 &disable_so_stime_signal_struct_52540
++disable_so_sgl_pg1_addr_lo_sgl_page_pairs_52550 sgl_pg1_addr_lo sgl_page_pairs 0 52550 NULL
++disable_so_tx_timeout_last_recovery_i40e_pf_52564 tx_timeout_last_recovery i40e_pf 0 52564 NULL nohasharray
++disable_so_clock_name_show_fndecl_52564 clock_name_show fndecl 0 52564 &disable_so_tx_timeout_last_recovery_i40e_pf_52564
++disable_so_c67x00_sched_start_scheduler_fndecl_52570 c67x00_sched_start_scheduler fndecl 0 52570 NULL
++disable_so_acpi_sleep_tts_switch_fndecl_52575 acpi_sleep_tts_switch fndecl 1 52575 NULL
++disable_so_addr0_nphy_rf_control_override_rev2_52577 addr0 nphy_rf_control_override_rev2 0 52577 NULL
++disable_so_tv_nsec_xfs_bstime_52584 tv_nsec xfs_bstime 0 52584 NULL
++disable_so_xfs_btree_check_sptr_fndecl_52587 xfs_btree_check_sptr fndecl 0 52587 NULL
++disable_so_get_vmx_mem_address_fndecl_52590 get_vmx_mem_address fndecl 3 52590 NULL
++disable_so_suspend_time_il3945_scan_cmd_52601 suspend_time il3945_scan_cmd 0 52601 NULL nohasharray
++disable_so_ahash_def_finup_finish2_fndecl_52601 ahash_def_finup_finish2 fndecl 2 52601 &disable_so_suspend_time_il3945_scan_cmd_52601
++disable_so_si4713_s_frequency_fndecl_52608 si4713_s_frequency fndecl 0 52608 NULL
++disable_so_icsk_timeout_inet_connection_sock_52623 icsk_timeout inet_connection_sock 0 52623 NULL
++disable_so____skb_get_hash_fndecl_52630 ___skb_get_hash fndecl 0 52630 NULL
++disable_so_dn_nl_fill_ifaddr_fndecl_52641 dn_nl_fill_ifaddr fndecl 0-3-5 52641 NULL
++disable_so_physical_reg_addr_wl1251_52646 physical_reg_addr wl1251 0 52646 NULL
++disable_so_setup_ata_timing_52661 setup ata_timing 0 52661 NULL
++disable_so_delay_tc_pie_xstats_52665 delay tc_pie_xstats 0 52665 NULL
++disable_so_sys_utimensat_fndecl_52666 sys_utimensat fndecl 1 52666 NULL
++disable_so_ringid_wmi_vring_cfg_52670 ringid wmi_vring_cfg 0 52670 NULL
++disable_so_cmd_timeout_ms_mmc_ioc_cmd_52681 cmd_timeout_ms mmc_ioc_cmd 0 52681 NULL
++disable_so_fr_timer_fndecl_52687 fr_timer fndecl 1 52687 NULL
++disable_so_if_sdio_enter_deep_sleep_fndecl_52688 if_sdio_enter_deep_sleep fndecl 0 52688 NULL
++disable_so_set_rate_control_runtime_52697 set_rate control_runtime 0 52697 NULL
++disable_so_req_consumer_index_phy_addr_low_ql3_adapter_52703 req_consumer_index_phy_addr_low ql3_adapter 0 52703 NULL
++disable_so_addr_max17042_reg_data_52712 addr max17042_reg_data 0 52712 NULL
++disable_so_cit_get_clock_div_fndecl_52713 cit_get_clock_div fndecl 0 52713 NULL nohasharray
++disable_so_mpll_ss2_si_clock_registers_52713 mpll_ss2 si_clock_registers 0 52713 &disable_so_cit_get_clock_div_fndecl_52713
++disable_so_addr_pt1_table_52714 addr pt1_table 0 52714 NULL
++disable_so_ds1742_rtc_read_time_fndecl_52716 ds1742_rtc_read_time fndecl 0 52716 NULL nohasharray
++disable_so_control_cache_address_on_dsp_dsp_obj_52716 control_cache_address_on_dsp dsp_obj 0 52716 &disable_so_ds1742_rtc_read_time_fndecl_52716
++disable_so_ide_get_lba_addr_fndecl_52722 ide_get_lba_addr fndecl 0 52722 NULL
++disable_so_msi_addr_drm_psb_private_52725 msi_addr drm_psb_private 0 52725 NULL
++disable_so_migratepage_address_space_operations_52735 migratepage address_space_operations 0 52735 NULL
++disable_so_apicid_cpuinfo_x86_52743 apicid cpuinfo_x86 0 52743 NULL
++disable_so_ageing_time_show_fndecl_52746 ageing_time_show fndecl 0 52746 NULL
++disable_so___hw_addr_add_fndecl_52752 __hw_addr_add fndecl 0-3 52752 NULL
++disable_so_addr_end_vardecl_init_64_c_52755 addr_end vardecl_init_64.c 0 52755 NULL
++disable_so_cmd_box_addr_wl1271_52756 cmd_box_addr wl1271 0 52756 NULL
++disable_so_crypto_cipher_setkey_fndecl_52762 crypto_cipher_setkey fndecl 0-3 52762 NULL
++disable_so_wmi_del_cipher_key_fndecl_52767 wmi_del_cipher_key fndecl 0 52767 NULL
++disable_so_ptp_dp83640_adjtime_fndecl_52770 ptp_dp83640_adjtime fndecl 2 52770 NULL nohasharray
++disable_so___hw_addr_del_ex_fndecl_52770 __hw_addr_del_ex fndecl 0-3 52770 &disable_so_ptp_dp83640_adjtime_fndecl_52770
++disable_so_reiserfs_init_bitmap_cache_fndecl_52773 reiserfs_init_bitmap_cache fndecl 0 52773 NULL
++disable_so_time_to_jiffies_fndecl_52778 time_to_jiffies fndecl 1-2-0 52778 NULL nohasharray
++disable_so_cleanup_addr_jit_context_52778 cleanup_addr jit_context 0 52778 &disable_so_time_to_jiffies_fndecl_52778 nohasharray
++disable_so_vmx_set_apic_access_page_addr_fndecl_52778 vmx_set_apic_access_page_addr fndecl 2 52778 &disable_so_cleanup_addr_jit_context_52778
++disable_so_sxgbe_rx_interrupt_fndecl_52784 sxgbe_rx_interrupt fndecl 1 52784 NULL
++disable_so_twl_rtc_set_time_fndecl_52785 twl_rtc_set_time fndecl 0 52785 NULL
++disable_so_mwifiex_set_aes_key_v2_fndecl_52787 mwifiex_set_aes_key_v2 fndecl 0 52787 NULL
++disable_so_start_address_rtl2832_reg_entry_52792 start_address rtl2832_reg_entry 0 52792 NULL nohasharray
++disable_so_encrypt_crypto_aead_52792 encrypt crypto_aead 0 52792 &disable_so_start_address_rtl2832_reg_entry_52792
++disable_so_dynamic_ps_timeout_write_fndecl_52802 dynamic_ps_timeout_write fndecl 3-0 52802 NULL
++disable_so_sge_addr_vf_pf_rxq_params_52803 sge_addr vf_pf_rxq_params 0 52803 NULL
++disable_so_rtc_time64_to_tm_fndecl_52820 rtc_time64_to_tm fndecl 1 52820 NULL
++disable_so_fwnet_hwaddr_fifo_fndecl_52824 fwnet_hwaddr_fifo fndecl 0 52824 NULL
++disable_so_clock_khz_dib0090_io_config_52827 clock_khz dib0090_io_config 0 52827 NULL
++disable_so_tuner_frequency_m88rs2000_state_52828 tuner_frequency m88rs2000_state 0 52828 NULL
++disable_so_twl4030_wdt_set_timeout_fndecl_52829 twl4030_wdt_set_timeout fndecl 2 52829 NULL
++disable_so_min_vruntime_cfs_rq_52838 min_vruntime cfs_rq 0 52838 NULL
++disable_so_nv04_timer_alarm_fndecl_52840 nv04_timer_alarm fndecl 2 52840 NULL
++disable_so_sched_runtime_sched_attr_52849 sched_runtime sched_attr 0 52849 NULL
++disable_so_seq_netlink_callback_52857 seq netlink_callback 0 52857 NULL
++disable_so_addr_hi_tg3_tx_buffer_desc_52858 addr_hi tg3_tx_buffer_desc 0 52858 NULL
++disable_so_dev_addr_add_fndecl_52865 dev_addr_add fndecl 0 52865 NULL
++disable_so_mxt_lookup_bootloader_address_fndecl_52874 mxt_lookup_bootloader_address fndecl 0 52874 NULL
++disable_so_rhashtable_init_fndecl_52886 rhashtable_init fndecl 0 52886 NULL
++disable_so_log_unit_to_scsi3addr_fndecl_52888 log_unit_to_scsi3addr fndecl 3 52888 NULL
++disable_so_warmup_time_tc_sfb_qopt_52893 warmup_time tc_sfb_qopt 0 52893 NULL
++disable_so_acpi_ex_system_signal_event_fndecl_52910 acpi_ex_system_signal_event fndecl 0 52910 NULL
++disable_so_ccp_aes_rfc3686_crypt_fndecl_52911 ccp_aes_rfc3686_crypt fndecl 0 52911 NULL
++disable_so_bf_daddr_ath_rxbuf_52915 bf_daddr ath_rxbuf 0 52915 NULL
++disable_so_addr_aac_entry_52921 addr aac_entry 0 52921 NULL
++disable_so_slack_start_time_dql_52922 slack_start_time dql 0 52922 NULL
++disable_so_mma8452_set_hp_filter_frequency_fndecl_52927 mma8452_set_hp_filter_frequency fndecl 0-2-3 52927 NULL
++disable_so_dqb_btime_mem_dqblk_52929 dqb_btime mem_dqblk 0 52929 NULL
++disable_so_mthca_cmd_fndecl_52930 mthca_cmd fndecl 0-2-3 52930 NULL
++disable_so_signal_nr_nvkm_specdom_52941 signal_nr nvkm_specdom 0 52941 NULL
++disable_so_bitmap_find_next_zero_area_fndecl_52944 bitmap_find_next_zero_area fndecl 0-2-3-4-5 52944 NULL
++disable_so_host_addr_p54p_desc_52948 host_addr p54p_desc 0 52948 NULL
++disable_so_signal_strength_wireless_stats_52949 signal_strength wireless_stats 0 52949 NULL
++disable_so_vnic_dev_intr_coal_timer_hw_to_usec_fndecl_52950 vnic_dev_intr_coal_timer_hw_to_usec fndecl 0-2 52950 NULL
++disable_so_base_time_dummy_systimer_pcm_52952 base_time dummy_systimer_pcm 0 52952 NULL
++disable_so_setkey_crypto_ahash_52959 setkey crypto_ahash 0-3 52959 NULL
++disable_so_sll_hatype_sockaddr_ll_52974 sll_hatype sockaddr_ll 0 52974 NULL
++disable_so_ktime_get_raw_fast_ns_fndecl_52986 ktime_get_raw_fast_ns fndecl 0 52986 NULL
++disable_so_tv_freq_tuner_52988 tv_freq tuner 0 52988 NULL
++disable_so_cifs_ci_hash_fndecl_52999 cifs_ci_hash fndecl 0 52999 NULL
++disable_so_last_jiffies_rtc_plat_data_53004 last_jiffies rtc_plat_data 0 53004 NULL
++disable_so_base_addr_eisa_device_53008 base_addr eisa_device 0 53008 NULL
++disable_so_vbaddr_drm_savage_common_state_53015 vbaddr drm_savage_common_state 0 53015 NULL
++disable_so_cal_timeout_at86rf230_local_53017 cal_timeout at86rf230_local 0 53017 NULL
++disable_so_alarmtimer_init_fndecl_53028 alarmtimer_init fndecl 0 53028 NULL
++disable_so_compat_sys_timerfd_gettime_fndecl_53031 compat_sys_timerfd_gettime fndecl 1 53031 NULL
++disable_so_gpu_addr_radeon_vce_53033 gpu_addr radeon_vce 0 53033 NULL
++disable_so_valleyview_get_display_clock_speed_fndecl_53041 valleyview_get_display_clock_speed fndecl 0 53041 NULL
++disable_so__base_interrupt_fndecl_53046 _base_interrupt fndecl 1 53046 NULL
++disable_so_qtail_snd_timer_user_53048 qtail snd_timer_user 0 53048 NULL
++disable_so_max14577_set_fast_charge_timer_fndecl_53049 max14577_set_fast_charge_timer fndecl 2-0 53049 NULL nohasharray
++disable_so_addr_mce_53049 addr mce 0 53049 &disable_so_max14577_set_fast_charge_timer_fndecl_53049
++disable_so_find_next_bit_fndecl_53053 find_next_bit fndecl 0-2-3 53053 NULL
++disable_so_sci_apc_agent_start_timer_fndecl_53055 sci_apc_agent_start_timer fndecl 2 53055 NULL
++disable_so_padlock_sha_update_fndecl_53061 padlock_sha_update fndecl 0-3 53061 NULL
++disable_so_soft_byte_limit_xfrm_lifetime_cfg_53071 soft_byte_limit xfrm_lifetime_cfg 0 53071 NULL
++disable_so_addr_ahd_dma64_seg_53072 addr ahd_dma64_seg 0 53072 NULL
++disable_so_address_bus_request_53084 address bus_request 0 53084 NULL
++disable_so_xfs_btree_dec_cursor_fndecl_53087 xfs_btree_dec_cursor fndecl 0 53087 NULL
++disable_so_gro_flush_timeout_store_fndecl_53088 gro_flush_timeout_store fndecl 4-0 53088 NULL
++disable_so_handle_nested_irq_fndecl_53092 handle_nested_irq fndecl 1 53092 NULL
++disable_so_hi_cfg_bridge_delay_drxd_state_53095 hi_cfg_bridge_delay drxd_state 0 53095 NULL nohasharray
++disable_so___scale_tsc_fndecl_53095 __scale_tsc fndecl 0-1-2 53095 &disable_so_hi_cfg_bridge_delay_drxd_state_53095
++disable_so_bitmap_dirty_bits_fndecl_53100 bitmap_dirty_bits fndecl 2 53100 NULL
++disable_so_ufs_data_ptr_to_cpu_fndecl_53104 ufs_data_ptr_to_cpu fndecl 0 53104 NULL
++disable_so_i_mtime_ocfs2_dinode_53106 i_mtime ocfs2_dinode 0 53106 NULL
++disable_so_raddr_c2wr_ae_active_connect_results_53114 raddr c2wr_ae_active_connect_results 0 53114 NULL
++disable_so_freerunning_timer_show_fndecl_53117 freerunning_timer_show fndecl 0 53117 NULL
++disable_so_get_est_timing_fndecl_53119 get_est_timing fndecl 0 53119 NULL
++disable_so_irq_clock_event_device_53122 irq clock_event_device 0 53122 NULL nohasharray
++disable_so_address_iio_dev_attr_53122 address iio_dev_attr 0 53122 &disable_so_irq_clock_event_device_53122
++disable_so__get_maxdiv_fndecl_53128 _get_maxdiv fndecl 0-2 53128 NULL
++disable_so_boot_time_nfsd_net_53147 boot_time nfsd_net 0 53147 NULL
++disable_so_fl_init_hashtable_fndecl_53150 fl_init_hashtable fndecl 0 53150 NULL
++disable_so_nh_saddr_fib_nh_53152 nh_saddr fib_nh 0 53152 NULL
++disable_so_direct_IO_address_space_operations_53153 direct_IO address_space_operations 0-3 53153 NULL
++disable_so_db_addr_mlx5_ib_create_cq_53177 db_addr mlx5_ib_create_cq 0 53177 NULL nohasharray
++disable_so_page_address_in_vma_fndecl_53177 page_address_in_vma fndecl 0 53177 &disable_so_db_addr_mlx5_ib_create_cq_53177
++disable_so_current_freq_av7110_53182 current_freq av7110 0 53182 NULL
++disable_so_wdt_set_timeout_fndecl_53183 wdt_set_timeout fndecl 2 53183 NULL
++disable_so_uid_min_xt_owner_match_info_53195 uid_min xt_owner_match_info 0 53195 NULL
++disable_so_clear_range_i915_address_space_53198 clear_range i915_address_space 2-3 53198 NULL nohasharray
++disable_so_mipi_dsi_dcs_set_page_address_fndecl_53198 mipi_dsi_dcs_set_page_address fndecl 0 53198 &disable_so_clear_range_i915_address_space_53198
++disable_so_timestamp_il_priv_53208 timestamp il_priv 0 53208 NULL
++disable_so_nbytes_ablkcipher_request_53222 nbytes ablkcipher_request 0 53222 NULL
++disable_so_bitmap_size_sit_info_53224 bitmap_size sit_info 0 53224 NULL
++disable_so_minlen_img_ir_free_timing_53227 minlen img_ir_free_timing 0 53227 NULL
++disable_so_btrfs_alloc_from_bitmap_fndecl_53249 btrfs_alloc_from_bitmap fndecl 0-4-5 53249 NULL
++disable_so_micd_timeout_arizona_extcon_info_53253 micd_timeout arizona_extcon_info 0 53253 NULL
++disable_so_mipi_dsi_dcs_exit_sleep_mode_fndecl_53255 mipi_dsi_dcs_exit_sleep_mode fndecl 0 53255 NULL
++disable_so_btc_find_valid_clock_fndecl_53267 btc_find_valid_clock fndecl 0-3-2 53267 NULL nohasharray
++disable_so_cnsmr_idx_addr_wqicb_53267 cnsmr_idx_addr wqicb 0 53267 &disable_so_btc_find_valid_clock_fndecl_53267
++disable_so_cg_spll_func_cntl_3_rv730_clock_registers_53272 cg_spll_func_cntl_3 rv730_clock_registers 0 53272 NULL
++disable_so_switch_time_il4965_channel_switch_cmd_53281 switch_time il4965_channel_switch_cmd 0 53281 NULL
++disable_so_mic_x100_ack_interrupt_fndecl_53283 mic_x100_ack_interrupt fndecl 0 53283 NULL nohasharray
++disable_so_bitmap_set_ll_fndecl_53283 bitmap_set_ll fndecl 0-2-3 53283 &disable_so_mic_x100_ack_interrupt_fndecl_53283
++disable_so_ci_otg_del_timer_fndecl_53284 ci_otg_del_timer fndecl 2 53284 NULL
++disable_so_elapsed_jiffies_msecs_fndecl_53288 elapsed_jiffies_msecs fndecl 0 53288 NULL
++disable_so_neigh_add_timer_fndecl_53296 neigh_add_timer fndecl 2 53296 NULL
++disable_so_chunk_sizek_var_mtrr_state_53302 chunk_sizek var_mtrr_state 0 53302 NULL
++disable_so_set_flexbg_block_bitmap_fndecl_53307 set_flexbg_block_bitmap fndecl 0-4-5 53307 NULL
++disable_so_tw_rcv_wscale_inet_timewait_sock_53312 tw_rcv_wscale inet_timewait_sock 0 53312 NULL
++disable_so_ablkcipher_walk_next_fndecl_53328 ablkcipher_walk_next fndecl 0 53328 NULL
++disable_so_xen_mce_chrdev_open_fndecl_53331 xen_mce_chrdev_open fndecl 0 53331 NULL
++disable_so_be16_add_cpu_fndecl_53336 be16_add_cpu fndecl 2 53336 NULL
++disable_so_write_end_address_space_operations_53339 write_end address_space_operations 0-3-4-5 53339 NULL
++disable_so_kobj_cpu_cpufreq_policy_53349 kobj_cpu cpufreq_policy 0 53349 NULL
++disable_so_cticks_snd_timer_instance_53353 cticks snd_timer_instance 0 53353 NULL
++disable_so_bus_num_atto_csmi_get_pci_bus_addr_53363 bus_num atto_csmi_get_pci_bus_addr 0 53363 NULL
++disable_so_wall_time_sec_vsyscall_gtod_data_53364 wall_time_sec vsyscall_gtod_data 0 53364 NULL
++disable_so_vfrontporch_v4l2_bt_timings_53369 vfrontporch v4l2_bt_timings 0 53369 NULL
++disable_so_dataset_patch_addr_ath6kl_hw_53371 dataset_patch_addr ath6kl_hw 0 53371 NULL
++disable_so___bitmap_subset_fndecl_53372 __bitmap_subset fndecl 3 53372 NULL
++disable_so_sii9234_runtime_resume_fndecl_53375 sii9234_runtime_resume fndecl 0 53375 NULL
++disable_so_ccp_crypto_init_fndecl_53377 ccp_crypto_init fndecl 0 53377 NULL
++disable_so_inaddr_usnic_fwd_dev_53382 inaddr usnic_fwd_dev 0 53382 NULL
++disable_so_ndo_validate_addr_net_device_ops_53392 ndo_validate_addr net_device_ops 0 53392 NULL nohasharray
++disable_so_valid_msr_intercept_fndecl_53392 valid_msr_intercept fndecl 1 53392 &disable_so_ndo_validate_addr_net_device_ops_53392
++disable_so_ept_walk_addr_fndecl_53393 ept_walk_addr fndecl 3-4 53393 NULL
++disable_so_dma_alloc_attrs_fndecl_53394 dma_alloc_attrs fndecl 2-4 53394 NULL
++disable_so_btrfs_delayed_inode_init_fndecl_53395 btrfs_delayed_inode_init fndecl 0 53395 NULL
++disable_so_atomic_stats_read_fndecl_53399 atomic_stats_read fndecl 3-0 53399 NULL
++disable_so_src_slave_addr_rcar_dmac_chan_53400 src_slave_addr rcar_dmac_chan 0 53400 NULL
++disable_so_sys_guid_ib_node_info_53401 sys_guid ib_node_info 0 53401 NULL
++disable_so_freqValTelevision_pvr2_hdw_53403 freqValTelevision pvr2_hdw 0 53403 NULL
++disable_so_quotad_check_timeo_fndecl_53409 quotad_check_timeo fndecl 4 53409 NULL
++disable_so_smp_size_set_mtrr_data_53411 smp_size set_mtrr_data 0 53411 NULL
++disable_so_addr_wil_fw_data_gw_53417 addr wil_fw_data_gw 0 53417 NULL
++disable_so_irlap_start_wd_timer_fndecl_53423 irlap_start_wd_timer fndecl 2 53423 NULL
++disable_so_nla_put_u32_fndecl_53424 nla_put_u32 fndecl 0-3 53424 NULL
++disable_so_ucode_start_addr_smc_firmware_header_v1_0_53438 ucode_start_addr smc_firmware_header_v1_0 0 53438 NULL
++disable_so_dma_addr_tso_state_53442 dma_addr tso_state 0 53442 NULL
++disable_so___down_common_fndecl_53444 __down_common fndecl 2 53444 NULL
++disable_so_bma180_set_sleep_state_fndecl_53447 bma180_set_sleep_state fndecl 0 53447 NULL
++disable_so_reqsize_crypto_ahash_53448 reqsize crypto_ahash 0 53448 NULL
++disable_so_qs_rtbtimelimit_fs_quota_stat_53453 qs_rtbtimelimit fs_quota_stat 0 53453 NULL
++disable_so_mmc_set_relative_addr_fndecl_53454 mmc_set_relative_addr fndecl 0 53454 NULL
++disable_so_genwqe_debugfs_jtimer_open_fndecl_53455 genwqe_debugfs_jtimer_open fndecl 0 53455 NULL
++disable_so_xruns_snd_rawmidi_runtime_53458 xruns snd_rawmidi_runtime 0 53458 NULL
++disable_so_cpumask_local_spread_fndecl_53460 cpumask_local_spread fndecl 0-1-2 53460 NULL
++disable_so_peer_addr_rds_info_tcp_socket_53463 peer_addr rds_info_tcp_socket 0 53463 NULL
++disable_so_do_set_fan_div_fndecl_53464 do_set_fan_div fndecl 0 53464 NULL
++disable_so_nfs_map_uid_to_name_fndecl_53467 nfs_map_uid_to_name fndecl 4-0 53467 NULL
++disable_so_handle_drm_vmw_fence_signaled_arg_53472 handle drm_vmw_fence_signaled_arg 0 53472 NULL
++disable_so_guest_perf_guest_switch_msr_53477 guest perf_guest_switch_msr 0 53477 NULL
++disable_so_encrypt_blkcipher_alg_53493 encrypt blkcipher_alg 4 53493 NULL
++disable_so_tmr_disable_sound_lowlev_timer_53495 tmr_disable sound_lowlev_timer 1 53495 NULL nohasharray
++disable_so_shim_phy_addr_sst_res_info_53495 shim_phy_addr sst_res_info 0 53495 &disable_so_tmr_disable_sound_lowlev_timer_53495
++disable_so_conversion_time_smm665_data_53516 conversion_time smm665_data 0 53516 NULL
++disable_so_iscsi_tpg_attrib_store_netif_timeout_fndecl_53517 iscsi_tpg_attrib_store_netif_timeout fndecl 0-3 53517 NULL
++disable_so_address_ib_umem_53524 address ib_umem 0 53524 NULL
++disable_so_di_gid_gfs2_dinode_53528 di_gid gfs2_dinode 0 53528 NULL
++disable_so_mem_busaddr_ahc_platform_data_53533 mem_busaddr ahc_platform_data 0 53533 NULL nohasharray
++disable_so_sg_list_busaddr_scb_53533 sg_list_busaddr scb 0 53533 &disable_so_mem_busaddr_ahc_platform_data_53533
++disable_so_vactive_hi_lvds_dvo_timing_53549 vactive_hi lvds_dvo_timing 0 53549 NULL
++disable_so_block_dma_addr_rx_block_info_53550 block_dma_addr rx_block_info 0 53550 NULL
++disable_so_st_ctime_nsec_compat_stat_53567 st_ctime_nsec compat_stat 0 53567 NULL
++disable_so_storm_memset_hc_timeout_fndecl_53596 storm_memset_hc_timeout fndecl 2-3-5 53596 NULL
++disable_so_vapic_addr_kvm_lapic_53599 vapic_addr kvm_lapic 0 53599 NULL
++disable_so_schedule_irq_fndecl_53600 schedule_irq fndecl 2 53600 NULL
++disable_so_smp_cmd_ident_addr_info_fndecl_53602 smp_cmd_ident_addr_info fndecl 0 53602 NULL
++disable_so_rsp_dmaaddr_fw_scsi_cmd_wr_53609 rsp_dmaaddr fw_scsi_cmd_wr 0 53609 NULL
++disable_so_device_addr_p54p_desc_53612 device_addr p54p_desc 0 53612 NULL nohasharray
++disable_so_wm8350_reg_write_fndecl_53612 wm8350_reg_write fndecl 2-3-0 53612 &disable_so_device_addr_p54p_desc_53612
++disable_so_ringid_wil_back_tx_53620 ringid wil_back_tx 0 53620 NULL nohasharray
++disable_so_ahd_resolve_seqaddr_fndecl_53620 ahd_resolve_seqaddr fndecl 0-2 53620 &disable_so_ringid_wil_back_tx_53620
++disable_so_sleep_control_elan_transport_ops_53622 sleep_control elan_transport_ops 0 53622 NULL
++disable_so_btrfs_set_token_inode_gid_fndecl_53628 btrfs_set_token_inode_gid fndecl 3 53628 NULL
++disable_so_format_gro_flush_timeout_fndecl_53638 format_gro_flush_timeout fndecl 0 53638 NULL
++disable_so_one_bits_word_at_a_time_53641 one_bits word_at_a_time 0 53641 NULL
++disable_so_i2c_addr_xc2028_config_53658 i2c_addr xc2028_config 0 53658 NULL
++disable_so_ss_tss_segment_32_53663 ss tss_segment_32 0 53663 NULL
++disable_so_backlight_off_delay_cdv_intel_dp_53664 backlight_off_delay cdv_intel_dp 0 53664 NULL
++disable_so_genwqe_debugfs_prev_dbg_uid1_open_fndecl_53665 genwqe_debugfs_prev_dbg_uid1_open fndecl 0 53665 NULL
++disable_so_mult_clocksource_53667 mult clocksource 0 53667 NULL nohasharray
++disable_so_parse_nl_addr_fndecl_53667 parse_nl_addr fndecl 0 53667 &disable_so_mult_clocksource_53667
++disable_so_irq_parport_53669 irq parport 0 53669 NULL
++disable_so_apparmor_hash_size_vardecl_crypto_c_53670 apparmor_hash_size vardecl_crypto.c 0 53670 NULL
++disable_so_vnic_dev_intr_coal_timer_usec_to_hw_fndecl_53671 vnic_dev_intr_coal_timer_usec_to_hw fndecl 0-2 53671 NULL
++disable_so_si_do_program_memory_timing_parameters_fndecl_53672 si_do_program_memory_timing_parameters fndecl 0 53672 NULL
++disable_so_addr_tx_desc_53676 addr tx_desc 0 53676 NULL
++disable_so_put_unaligned_be16_fndecl_53677 put_unaligned_be16 fndecl 1 53677 NULL
++disable_so_family_xfrm_usersa_id_53678 family xfrm_usersa_id 0 53678 NULL
++disable_so_bcm54xx_ack_interrupt_fndecl_53685 bcm54xx_ack_interrupt fndecl 0 53685 NULL nohasharray
++disable_so_svga_check_timings_fndecl_53685 svga_check_timings fndecl 3 53685 &disable_so_bcm54xx_ack_interrupt_fndecl_53685
++disable_so_i40e_vc_add_mac_addr_msg_fndecl_53688 i40e_vc_add_mac_addr_msg fndecl 0-3 53688 NULL
++disable_so_addr_mvfrey_inlist_entry_53690 addr mvfrey_inlist_entry 0 53690 NULL
++disable_so_pch_src_uuid_hi_read_fndecl_53692 pch_src_uuid_hi_read fndecl 0 53692 NULL
++disable_so___bitmap_intersects_fndecl_53698 __bitmap_intersects fndecl 3 53698 NULL
++disable_so_atomic_open_fndecl_53702 atomic_open fndecl 0 53702 NULL
++disable_so_address_dsp_scb_descriptor_53708 address dsp_scb_descriptor 0 53708 NULL
++disable_so_timestamp_il_rx_phy_res_53714 timestamp il_rx_phy_res 0 53714 NULL
++disable_so_start_time_edac_pci_ctl_info_53715 start_time edac_pci_ctl_info 0 53715 NULL
++disable_so_show_forward_delay_timer_fndecl_53717 show_forward_delay_timer fndecl 0 53717 NULL nohasharray
++disable_so_iscsi_nacl_attrib_show_random_datain_pdu_offsets_fndecl_53717 iscsi_nacl_attrib_show_random_datain_pdu_offsets fndecl 0 53717 &disable_so_show_forward_delay_timer_fndecl_53717
++disable_so_memory_address_range_set_error_type_with_address_53722 memory_address_range set_error_type_with_address 0 53722 NULL
++disable_so_sm501_find_clock_fndecl_53729 sm501_find_clock fndecl 3-0 53729 NULL
++disable_so___round_jiffies_relative_fndecl_53743 __round_jiffies_relative fndecl 2-0-1 53743 NULL
++disable_so_ccp_aes_xts_crypt_fndecl_53745 ccp_aes_xts_crypt fndecl 0 53745 NULL
++disable_so_buf_addr_mlx5_ib_create_cq_53754 buf_addr mlx5_ib_create_cq 0 53754 NULL
++disable_so_i_gid_sysv_inode_53757 i_gid sysv_inode 0 53757 NULL
++disable_so_address_fm10k_fault_53764 address fm10k_fault 0 53764 NULL
++disable_so_ntb_set_mw_addr_fndecl_53775 ntb_set_mw_addr fndecl 3 53775 NULL
++disable_so_rx_bd_haddr_lo_bnx2_rx_bd_53781 rx_bd_haddr_lo bnx2_rx_bd 0 53781 NULL
++disable_so_set_rfreg_rtl_hal_ops_53782 set_rfreg rtl_hal_ops 3-5 53782 NULL
++disable_so_kstrtoll_fndecl_53783 kstrtoll fndecl 0 53783 NULL
++disable_so_btrfs_set_token_64_fndecl_53792 btrfs_set_token_64 fndecl 3-4 53792 NULL
++disable_so_clock_dw_mci_slot_53801 clock dw_mci_slot 0 53801 NULL nohasharray
++disable_so_i_uid_nilfs_inode_53801 i_uid nilfs_inode 0 53801 &disable_so_clock_dw_mci_slot_53801
++disable_so_packet_len_2_sched_time_fndecl_53809 packet_len_2_sched_time fndecl 0-1 53809 NULL
++disable_so_calc_div_fndecl_53821 calc_div fndecl 0-1 53821 NULL
++disable_so_rsvd_pbl_addr_tpt_entry_53834 rsvd_pbl_addr tpt_entry 0 53834 NULL nohasharray
++disable_so_dsc_rw_frequency_idetape_config_53834 dsc_rw_frequency idetape_config 0 53834 &disable_so_rsvd_pbl_addr_tpt_entry_53834
++disable_so_ahc_get_sense_bufaddr_fndecl_53837 ahc_get_sense_bufaddr fndecl 0 53837 NULL
++disable_so_jiffies_at_alloc_scsi_cmnd_53839 jiffies_at_alloc scsi_cmnd 0 53839 NULL
++disable_so_sense_addr_orc_scb_53841 sense_addr orc_scb 0 53841 NULL
++disable_so_stall_timeout_xenvif_53851 stall_timeout xenvif 0 53851 NULL
++disable_so_tlv_put_btrfs_timespec_fndecl_53854 tlv_put_btrfs_timespec fndecl 0 53854 NULL
++disable_so_nfsd4_decode_time_fndecl_53864 nfsd4_decode_time fndecl 0 53864 NULL
++disable_so_threshold_target_nes_hw_tune_timer_53868 threshold_target nes_hw_tune_timer 0 53868 NULL
++disable_so_i_uid_bfs_inode_53869 i_uid bfs_inode 0 53869 NULL
++disable_so_vidioc_query_dv_timings_fndecl_53872 vidioc_query_dv_timings fndecl 0 53872 NULL
++disable_so_rtl2832_sleep_fndecl_53873 rtl2832_sleep fndecl 0 53873 NULL
++disable_so_snd_soc_update_bits_fndecl_53881 snd_soc_update_bits fndecl 0-2-4-3 53881 NULL
++disable_so_sched_clock_fndecl_53886 sched_clock fndecl 0 53886 NULL
++disable_so_ps_poll_upsd_timeouts_read_fndecl_53888 ps_poll_upsd_timeouts_read fndecl 3 53888 NULL
++disable_so_pmdown_time_set_fndecl_53891 pmdown_time_set fndecl 0-4 53891 NULL
++disable_so_sync_endtime_ip_vs_conn_53903 sync_endtime ip_vs_conn 0 53903 NULL
++disable_so_timeout_c_tpm_vendor_specific_53905 timeout_c tpm_vendor_specific 0 53905 NULL
++disable_so_i2c_address_mxl5005s_config_53906 i2c_address mxl5005s_config 0 53906 NULL
++disable_so_bin_dn_node_address_fndecl_53909 bin_dn_node_address fndecl 0 53909 NULL
++disable_so_i2c_addr_dib3000mc_state_53912 i2c_addr dib3000mc_state 0 53912 NULL
++disable_so_musb_schedule_fndecl_53920 musb_schedule fndecl 3-0 53920 NULL
++disable_so_card_addr_pcmcia_device_53921 card_addr pcmcia_device 0 53921 NULL
++disable_so_freq_si476x_tune_freq_args_53927 freq si476x_tune_freq_args 0 53927 NULL
++disable_so_xfrm_dst_hash_transfer_fndecl_53935 xfrm_dst_hash_transfer fndecl 4 53935 NULL
++disable_so_fs_time_ufs_super_block_first_53936 fs_time ufs_super_block_first 0 53936 NULL
++disable_so_buffer_addr_ath6kl_dbglog_buf_53947 buffer_addr ath6kl_dbglog_buf 0 53947 NULL
++disable_so_drbd_send_bitmap_fndecl_53952 drbd_send_bitmap fndecl 0 53952 NULL
++disable_so_xfs_kuid_to_uid_fndecl_53958 xfs_kuid_to_uid fndecl 0 53958 NULL
++disable_so_addr_off_bfa_flash_53970 addr_off bfa_flash 0 53970 NULL
++disable_so_string_langid_usb_device_53974 string_langid usb_device 0 53974 NULL
++disable_so_src_addr_qla4_83xx_pex_dma_descriptor_53995 src_addr qla4_83xx_pex_dma_descriptor 0 53995 NULL
++disable_so_crc32_pclmul_mod_init_fndecl_53996 crc32_pclmul_mod_init fndecl 0 53996 NULL
++disable_so_range_to_mtrr_with_hole_fndecl_53998 range_to_mtrr_with_hole fndecl 0-2-3 53998 NULL
++disable_so_cpu_cpufreq_freqs_54025 cpu cpufreq_freqs 0 54025 NULL
++disable_so_read_addr_qla83xx_minidump_entry_pollrd_54033 read_addr qla83xx_minidump_entry_pollrd 0 54033 NULL
++disable_so_wall_time_coarse_nsec_vsyscall_gtod_data_54044 wall_time_coarse_nsec vsyscall_gtod_data 0 54044 NULL
++disable_so_HTotal_xtimings_54045 HTotal xtimings 0 54045 NULL
++disable_so_hpi_cobranet_get_static_ip_address_fndecl_54046 hpi_cobranet_get_static_ip_address fndecl 1 54046 NULL
++disable_so_device_reset_timer_mipi_config_54052 device_reset_timer mipi_config 0 54052 NULL
++disable_so_myri10ge_watchdog_timeout_vardecl_myri10ge_c_54061 myri10ge_watchdog_timeout vardecl_myri10ge.c 0 54061 NULL
++disable_so_slope_div_nvbios_therm_sensor_54063 slope_div nvbios_therm_sensor 0 54063 NULL
++disable_so_cg_spll_func_cntl_rv770_clock_registers_54065 cg_spll_func_cntl rv770_clock_registers 0 54065 NULL
++disable_so_custom_divisor_serial_struct_54066 custom_divisor serial_struct 0 54066 NULL
++disable_so_cq_get_mtt_addr_fndecl_54071 cq_get_mtt_addr fndecl 0 54071 NULL
++disable_so_stack_maxrandom_size_fndecl_54078 stack_maxrandom_size fndecl 0 54078 NULL
++disable_so_ktime_get_mono_fast_ns_fndecl_54083 ktime_get_mono_fast_ns fndecl 0 54083 NULL
++disable_so_reachable_time_neigh_parms_54094 reachable_time neigh_parms 0 54094 NULL
++disable_so_hid_time_parse_report_fndecl_54114 hid_time_parse_report fndecl 0 54114 NULL
++disable_so_baddr0_gru_instruction_54117 baddr0 gru_instruction 0 54117 NULL
++disable_so_time_in_queue_disk_stats_54131 time_in_queue disk_stats 0 54131 NULL
++disable_so_smsc95xx_set_mac_address_fndecl_54135 smsc95xx_set_mac_address fndecl 0 54135 NULL
++disable_so_sysctl_numa_balancing_scan_delay_vardecl_54140 sysctl_numa_balancing_scan_delay vardecl 0 54140 NULL nohasharray
++disable_so_tun16_to_cpu_fndecl_54140 tun16_to_cpu fndecl 0-2 54140 &disable_so_sysctl_numa_balancing_scan_delay_vardecl_54140
++disable_so_addr_2_qla8044_minidump_entry_pollrdmwr_54142 addr_2 qla8044_minidump_entry_pollrdmwr 0 54142 NULL
++disable_so___xfrm6_pref_hash_fndecl_54144 __xfrm6_pref_hash fndecl 0 54144 NULL
++disable_so_sm501_select_clock_fndecl_54146 sm501_select_clock fndecl 1-0 54146 NULL
++disable_so_x86_acpi_enter_sleep_state_fndecl_54149 x86_acpi_enter_sleep_state fndecl 0-1 54149 NULL
++disable_so_ips_fix_ffdc_time_fndecl_54151 ips_fix_ffdc_time fndecl 3 54151 NULL
++disable_so_set_var_mtrr_range_fndecl_54160 set_var_mtrr_range fndecl 2-3 54160 NULL nohasharray
++disable_so_bi_blocks_gfs2_bitmap_54160 bi_blocks gfs2_bitmap 0 54160 &disable_so_set_var_mtrr_range_fndecl_54160
++disable_so_ath10k_recalc_rtscts_prot_fndecl_54161 ath10k_recalc_rtscts_prot fndecl 0 54161 NULL
++disable_so_i915_frequency_info_fndecl_54168 i915_frequency_info fndecl 0 54168 NULL
++disable_so_store_fast_charge_timer_fndecl_54173 store_fast_charge_timer fndecl 0-4 54173 NULL
++disable_so_compat_put_bitmap_fndecl_54182 compat_put_bitmap fndecl 0-3 54182 NULL
++disable_so_cccr_address_p4_counter_binding_54184 cccr_address p4_counter_binding 0 54184 NULL
++disable_so_extra_buf2_address_ene_device_54188 extra_buf2_address ene_device 0 54188 NULL
++disable_so_gr_insert_uid_fndecl_54189 gr_insert_uid fndecl 2 54189 NULL
++disable_so_addr_wil_fw_record_data_54198 addr wil_fw_record_data 0 54198 NULL
++disable_so_hash_mask_dm_exception_table_54212 hash_mask dm_exception_table 0 54212 NULL
++disable_so_cir_addr_ite_dev_54217 cir_addr ite_dev 0 54217 NULL
++disable_so_end_fixed_mtrr_segment_54218 end fixed_mtrr_segment 0 54218 NULL
++disable_so_timer_in_use_min_nes_hw_tune_timer_54220 timer_in_use_min nes_hw_tune_timer 0 54220 NULL
++disable_so_act8b_ata_timing_54221 act8b ata_timing 0 54221 NULL
++disable_so_psmouse_interrupt_fndecl_54222 psmouse_interrupt fndecl 2 54222 NULL
++disable_so_reply_queue_start_phys_addr_lo_megasas_init_queue_info_54244 reply_queue_start_phys_addr_lo megasas_init_queue_info 0 54244 NULL
++disable_so__freq_tbl_determine_rate_fndecl_54245 _freq_tbl_determine_rate fndecl 0 54245 NULL
++disable_so_tm_hour_rtc_time_54254 tm_hour rtc_time 0 54254 NULL
++disable_so_efx_nic_init_interrupt_fndecl_54259 efx_nic_init_interrupt fndecl 0 54259 NULL
++disable_so_dr_addr_qla8044_quad_entry_54260 dr_addr qla8044_quad_entry 0 54260 NULL
++disable_so_integer_pll_div_54261 integer pll_div 0 54261 NULL nohasharray
++disable_so_buf_addr_brcmf_pcie_console_54261 buf_addr brcmf_pcie_console 0 54261 &disable_so_integer_pll_div_54261
++disable_so_fandiv2_w83627ehf_data_54263 fandiv2 w83627ehf_data 0 54263 NULL
++disable_so_gf_numsrc_group_filter_54274 gf_numsrc group_filter 0 54274 NULL
++disable_so_adis_write_reg_fndecl_54282 adis_write_reg fndecl 0 54282 NULL
++disable_so_last_commit_jiffies_pool_54290 last_commit_jiffies pool 0 54290 NULL nohasharray
++disable_so_btree_cache_used_cache_set_54290 btree_cache_used cache_set 0 54290 &disable_so_last_commit_jiffies_pool_54290
++disable_so_hid_time_probe_fndecl_54292 hid_time_probe fndecl 0 54292 NULL
++disable_so_cgroup_subtree_control_write_fndecl_54294 cgroup_subtree_control_write fndecl 0-3 54294 NULL
++disable_so_hpt3x2n_set_clock_fndecl_54295 hpt3x2n_set_clock fndecl 2 54295 NULL
++disable_so_timestamp_nfs4_layoutget_args_54296 timestamp nfs4_layoutget_args 0 54296 NULL
++disable_so_mic_setup_interrupts_fndecl_54300 mic_setup_interrupts fndecl 0 54300 NULL
++disable_so_imsf_numsrc_ip_msfilter_54312 imsf_numsrc ip_msfilter 0 54312 NULL
++disable_so_dma_addr_solos_skb_cb_54324 dma_addr solos_skb_cb 0 54324 NULL
++disable_so_irq_domain_set_info_fndecl_54334 irq_domain_set_info fndecl 3-2 54334 NULL
++disable_so_ks108_set_yaddr_fndecl_54335 ks108_set_yaddr fndecl 2-3 54335 NULL
++disable_so_lfo1delay_soundfont_voice_parm_54350 lfo1delay soundfont_voice_parm 0 54350 NULL
++disable_so_netxen_get_ioaddr_fndecl_54354 netxen_get_ioaddr fndecl 2 54354 NULL
++disable_so_addrs_per_inode_fndecl_54364 addrs_per_inode fndecl 0 54364 NULL
++disable_so_msr_rsc_54369 msr rsc 0 54369 NULL
++disable_so_busaddr_CommandList_54370 busaddr CommandList 0 54370 NULL
++disable_so_paddr_mwifiex_pfu_buf_desc_54374 paddr mwifiex_pfu_buf_desc 0 54374 NULL
++disable_so_ieee80211_aes_key_setup_encrypt_fndecl_54383 ieee80211_aes_key_setup_encrypt fndecl 2-3 54383 NULL
++disable_so_cpumask_parse_user_fndecl_54390 cpumask_parse_user fndecl 0-2 54390 NULL
++disable_so_ack_signal_zd_mac_54391 ack_signal zd_mac 0 54391 NULL
++disable_so_addr_lp855x_rom_data_54408 addr lp855x_rom_data 0 54408 NULL
++disable_so_ar9003_mci_wait_for_interrupt_fndecl_54411 ar9003_mci_wait_for_interrupt fndecl 2-3 54411 NULL
++disable_so_enable_timeout_sdio_func_54417 enable_timeout sdio_func 0 54417 NULL
++disable_so_overrun_time_n_tty_data_54426 overrun_time n_tty_data 0 54426 NULL
++disable_so_seq_netlbl_cipsov4_doiwalk_arg_54427 seq netlbl_cipsov4_doiwalk_arg 0 54427 NULL
++disable_so_addr_hi_ocrdma_sge_54434 addr_hi ocrdma_sge 0 54434 NULL
++disable_so_lcq_addr_hi_fcoe_kwqe_conn_offload4_54436 lcq_addr_hi fcoe_kwqe_conn_offload4 0 54436 NULL
++disable_so_avc_ca_get_time_date_fndecl_54437 avc_ca_get_time_date fndecl 0 54437 NULL
++disable_so_msg_rtime_msqid64_ds_54442 msg_rtime msqid64_ds 0 54442 NULL
++disable_so_delay_vardecl_wm9705_c_54454 delay vardecl_wm9705.c 0 54454 NULL
++disable_so_hpi_set_address_fndecl_54461 hpi_set_address fndecl 2 54461 NULL
++disable_so_seq_nft_ctx_54462 seq nft_ctx 0 54462 NULL
++disable_so_dm_btree_remove_fndecl_54463 dm_btree_remove fndecl 0-2 54463 NULL
++disable_so_stv0297_set_initialdemodfreq_fndecl_54465 stv0297_set_initialdemodfreq fndecl 2 54465 NULL
++disable_so_shdwreg_addr_lo_addr_ctrl_blk_54466 shdwreg_addr_lo addr_ctrl_blk 0 54466 NULL
++disable_so_i2c_dev_addr_au0828_rc_54470 i2c_dev_addr au0828_rc 0 54470 NULL
++disable_so_sha256_generic_mod_init_fndecl_54474 sha256_generic_mod_init fndecl 0 54474 NULL
++disable_so_kdiv_skl_wrpll_params_54475 kdiv skl_wrpll_params 0 54475 NULL
++disable_so_ocfs2_divide_xattr_cluster_fndecl_54477 ocfs2_divide_xattr_cluster fndecl 0 54477 NULL
++disable_so_addr_gsm_msg_54481 addr gsm_msg 0 54481 NULL
++disable_so_select_delay_floppy_drive_params_54487 select_delay floppy_drive_params 0 54487 NULL
++disable_so_dm_btree_find_highest_key_fndecl_54489 dm_btree_find_highest_key fndecl 0-2 54489 NULL
++disable_so_last_retry_addr_kvm_vcpu_arch_54492 last_retry_addr kvm_vcpu_arch 0 54492 NULL
++disable_so_default_delay_pi_protocol_54493 default_delay pi_protocol 0 54493 NULL
++disable_so_dummy_dma_page_physical_address_r592_device_54497 dummy_dma_page_physical_address r592_device 0 54497 NULL
++disable_so_drbg_hash_update_fndecl_54501 drbg_hash_update fndecl 0 54501 NULL
++disable_so_cryptd_blkcipher_setkey_fndecl_54506 cryptd_blkcipher_setkey fndecl 0-3 54506 NULL
++disable_so_mounted_uid_ncp_fs_info_v2_54511 mounted_uid ncp_fs_info_v2 0 54511 NULL
++disable_so_htc_ext_addr_ath6kl_mbox_info_54517 htc_ext_addr ath6kl_mbox_info 0 54517 NULL
++disable_so_xen_pmd_val_fndecl_54519 xen_pmd_val fndecl 0 54519 NULL
++disable_so_incr_cpu_itimer_54530 incr cpu_itimer 0 54530 NULL
++disable_so_fw_blob_dest_addr_pn544_i2c_phy_54532 fw_blob_dest_addr pn544_i2c_phy 0 54532 NULL
++disable_so_ip_addr_nx_ip_list_54540 ip_addr nx_ip_list 0 54540 NULL
++disable_so_test_ahash_cycles_digest_fndecl_54541 test_ahash_cycles_digest fndecl 0 54541 NULL
++disable_so_tegra_sflash_runtime_resume_fndecl_54543 tegra_sflash_runtime_resume fndecl 0 54543 NULL
++disable_so_start_addr_qlcnic_flt_entry_54564 start_addr qlcnic_flt_entry 0 54564 NULL
++disable_so_addr_lo_tg3_rx_buffer_desc_54565 addr_lo tg3_rx_buffer_desc 0 54565 NULL
++disable_so_btrfs_free_space_bitmaps_fndecl_54566 btrfs_free_space_bitmaps fndecl 0 54566 NULL nohasharray
++disable_so_crypto_rfc4309_decrypt_fndecl_54566 crypto_rfc4309_decrypt fndecl 0 54566 &disable_so_btrfs_free_space_bitmaps_fndecl_54566
++disable_so_crypto_ahash_op_fndecl_54569 crypto_ahash_op fndecl 0 54569 NULL
++disable_so_rbt_ib_umem_compute_subtree_last_fndecl_54589 rbt_ib_umem_compute_subtree_last fndecl 0 54589 NULL
++disable_so_ap_sleep_wlcore_ops_54591 ap_sleep wlcore_ops 0 54591 NULL
++disable_so_get_freq_adis16400_chip_info_54596 get_freq adis16400_chip_info 0 54596 NULL
++disable_so_entries_dmaaddr_snd_trident_tlb_54601 entries_dmaaddr snd_trident_tlb 0 54601 NULL
++disable_so_hwrqaddr_fw_ri_init_54619 hwrqaddr fw_ri_init 0 54619 NULL
++disable_so_rs_user_addr_rds_sock_54620 rs_user_addr rds_sock 0 54620 NULL
++disable_so_snd_timer_global_new_fndecl_54623 snd_timer_global_new fndecl 2-0 54623 NULL
++disable_so_rsi_setclock_fndecl_54628 rsi_setclock fndecl 2 54628 NULL
++disable_so_addr_ct_vm_block_54632 addr ct_vm_block 0 54632 NULL
++disable_so_read_addr_qla8044_minidump_entry_mux_54633 read_addr qla8044_minidump_entry_mux 0 54633 NULL
++disable_so_queue_delayed_work_on_fndecl_54644 queue_delayed_work_on fndecl 1-4 54644 NULL
++disable_so_arcmsr_adjust_disk_queue_depth_fndecl_54647 arcmsr_adjust_disk_queue_depth fndecl 0-2 54647 NULL
++disable_so_mpihelp_mul_1_fndecl_54658 mpihelp_mul_1 fndecl 3 54658 NULL
++disable_so_bitmap_ipmac_do_add_fndecl_54672 bitmap_ipmac_do_add fndecl 4 54672 NULL
++disable_so_paddr_fsl_asrc_54677 paddr fsl_asrc 0 54677 NULL
++disable_so_sil_iowrite32_fndecl_54679 sil_iowrite32 fndecl 3-2 54679 NULL
++disable_so_adv_smbus_write_byte_data_fndecl_54684 adv_smbus_write_byte_data fndecl 2-3-0 54684 NULL
++disable_so_delay_snd_pcm_runtime_54685 delay snd_pcm_runtime 0 54685 NULL
++disable_so_cp_blkaddr_f2fs_super_block_54690 cp_blkaddr f2fs_super_block 0 54690 NULL
++disable_so_schedule_erase_fndecl_54695 schedule_erase fndecl 4-3 54695 NULL
++disable_so_mesh_set_short_slot_time_fndecl_54696 mesh_set_short_slot_time fndecl 0 54696 NULL
++disable_so_pll2_ndiv_a_cnt_ad9523_platform_data_54701 pll2_ndiv_a_cnt ad9523_platform_data 0 54701 NULL
++disable_so_dirtytime_expire_interval_vardecl_54714 dirtytime_expire_interval vardecl 0 54714 NULL nohasharray
++disable_so_cdv_intel_crtc_clock_get_fndecl_54714 cdv_intel_crtc_clock_get fndecl 0 54714 &disable_so_dirtytime_expire_interval_vardecl_54714
++disable_so_timeout_vardecl_w83627hf_wdt_c_54716 timeout vardecl_w83627hf_wdt.c 0 54716 NULL
++disable_so_ccp_addr_hi_fndecl_54724 ccp_addr_hi fndecl 0 54724 NULL nohasharray
++disable_so_usnic_fwd_add_ipaddr_fndecl_54724 usnic_fwd_add_ipaddr fndecl 2 54724 &disable_so_ccp_addr_hi_fndecl_54724
++disable_so_encrypt_ablkcipher_tfm_54728 encrypt ablkcipher_tfm 0 54728 NULL
++disable_so_dp83640_ack_interrupt_fndecl_54729 dp83640_ack_interrupt fndecl 0 54729 NULL
++disable_so_crypto_pcbc_decrypt_fndecl_54732 crypto_pcbc_decrypt fndecl 0-4 54732 NULL
++disable_so_jackdetect_debounce_time_adau1761_platform_data_54736 jackdetect_debounce_time adau1761_platform_data 0 54736 NULL
++disable_so_ism1_runtime_sc_54739 ism1 runtime_sc 0 54739 NULL
++disable_so___hw_addr_sync_multiple_fndecl_54744 __hw_addr_sync_multiple fndecl 0-3 54744 NULL nohasharray
++disable_so_irq_modify_status_fndecl_54744 irq_modify_status fndecl 1 54744 &disable_so___hw_addr_sync_multiple_fndecl_54744
++disable_so_vfreq_aspect_std_timing_54751 vfreq_aspect std_timing 0 54751 NULL
++disable_so_sd_gid_stat_data_54756 sd_gid stat_data 0 54756 NULL
++disable_so_buffer_addr_m3_dma_54757 buffer_addr m3_dma 0 54757 NULL
++disable_so_driver_timestamp_qla4_8xxx_minidump_template_hdr_54761 driver_timestamp qla4_8xxx_minidump_template_hdr 0 54761 NULL
++disable_so_bitmap_root_ll_disk_54791 bitmap_root ll_disk 0 54791 NULL
++disable_so_addr_to_sbp2_pointer_fndecl_54805 addr_to_sbp2_pointer fndecl 1 54805 NULL
++disable_so_i2c_addr_af9013_config_54806 i2c_addr af9013_config 0 54806 NULL
++disable_so_runtime_sched_dl_entity_54815 runtime sched_dl_entity 0 54815 NULL
++disable_so_signal_rtl8187_rx_hdr_54828 signal rtl8187_rx_hdr 0 54828 NULL
++disable_so_gid_list_dma_qla_hw_data_54829 gid_list_dma qla_hw_data 0 54829 NULL
++disable_so_tsi721_omsg_interrupt_enable_fndecl_54831 tsi721_omsg_interrupt_enable fndecl 3-2 54831 NULL
++disable_so_nsec_pps_ktime_54835 nsec pps_ktime 0 54835 NULL
++disable_so_timeout_xfrm_policy_queue_54847 timeout xfrm_policy_queue 0 54847 NULL
++disable_so_uid_used_vardecl_gracl_segv_c_54850 uid_used vardecl_gracl_segv.c 0 54850 NULL
++disable_so_regmap_update_bits_fndecl_54855 regmap_update_bits fndecl 0-2-4-3 54855 NULL
++disable_so_next_status_checked_time_netup_ci_state_54858 next_status_checked_time netup_ci_state 0 54858 NULL
++disable_so_dma_addr_s_txd_os_54860 dma_addr s_txd_os 0 54860 NULL
++disable_so_tms_cstime_compat_tms_54864 tms_cstime compat_tms 0 54864 NULL
++disable_so_reply_dma_max_address_MPT3SAS_ADAPTER_54869 reply_dma_max_address MPT3SAS_ADAPTER 0 54869 NULL
++disable_so_tsc_read_refs_fndecl_54873 tsc_read_refs fndecl 0 54873 NULL
++disable_so_tpm_get_timeouts_fndecl_54878 tpm_get_timeouts fndecl 0 54878 NULL
++disable_so_dn_hash_dump_bucket_fndecl_54884 dn_hash_dump_bucket fndecl 0 54884 NULL
++disable_so_queue_timeout_fndecl_54887 queue_timeout fndecl 2 54887 NULL
++disable_so_T5_address_mxt_data_54888 T5_address mxt_data 0 54888 NULL
++disable_so_arizona_runtime_resume_fndecl_54897 arizona_runtime_resume fndecl 0 54897 NULL
++disable_so_udp_timeout_ip_vs_timeout_user_54908 udp_timeout ip_vs_timeout_user 0 54908 NULL
++disable_so_idiag_uid_inet_diag_msg_54913 idiag_uid inet_diag_msg 0 54913 NULL nohasharray
++disable_so_last_semaphore_wait_addr_radeon_ring_54913 last_semaphore_wait_addr radeon_ring 0 54913 &disable_so_idiag_uid_inet_diag_msg_54913
++disable_so_aty_st_le32_fndecl_54925 aty_st_le32 fndecl 2 54925 NULL
++disable_so_saffirepro_both_clk_freq_set_fndecl_54935 saffirepro_both_clk_freq_set fndecl 0 54935 NULL
++disable_so_mcryptd_hash_finup_fndecl_54940 mcryptd_hash_finup fndecl 2 54940 NULL
++disable_so_nla_put_be64_fndecl_54942 nla_put_be64 fndecl 0 54942 NULL
++disable_so_delay_qlc_83xx_entry_hdr_54949 delay qlc_83xx_entry_hdr 0 54949 NULL
++disable_so_dac33_dai_delay_fndecl_54952 dac33_dai_delay fndecl 0 54952 NULL nohasharray
++disable_so_dmaaddr_cafe_priv_54952 dmaaddr cafe_priv 0 54952 &disable_so_dac33_dai_delay_fndecl_54952
++disable_so_addr_hda_codec_54956 addr hda_codec 0 54956 NULL
++disable_so_dummy_buffer_addr_lo_fcoe_kwqe_init1_54962 dummy_buffer_addr_lo fcoe_kwqe_init1 0 54962 NULL nohasharray
++disable_so_magn_3d_adjust_channel_bit_mask_fndecl_54962 magn_3d_adjust_channel_bit_mask fndecl 3 54962 &disable_so_dummy_buffer_addr_lo_fcoe_kwqe_init1_54962
++disable_so_default_timetolive_sctp_sock_54963 default_timetolive sctp_sock 0 54963 NULL
++disable_so_test_acipher_cycles_fndecl_54972 test_acipher_cycles fndecl 0 54972 NULL
++disable_so_last_jiffies_tick_sched_54974 last_jiffies tick_sched 0 54974 NULL
++disable_so_offset_btrfs_delayed_data_ref_54980 offset btrfs_delayed_data_ref 0 54980 NULL
++disable_so_toshiba_usb_sleep_music_set_fndecl_54986 toshiba_usb_sleep_music_set fndecl 0 54986 NULL
++disable_so_addr_start_vardecl_init_64_c_54989 addr_start vardecl_init_64.c 0 54989 NULL
++disable_so_seq_xfrm_user_acquire_54990 seq xfrm_user_acquire 0 54990 NULL
++disable_so_setup_ide_timing_54997 setup ide_timing 0 54997 NULL
++disable_so_dirtytime_interval_handler_fndecl_54998 dirtytime_interval_handler fndecl 0 54998 NULL
++disable_so_last_heartbeat_timestamp_ctlr_info_55000 last_heartbeat_timestamp ctlr_info 0 55000 NULL
++disable_so_bond_set_mac_address_fndecl_55006 bond_set_mac_address fndecl 0 55006 NULL
++disable_so_curfreq_amradio_device_55017 curfreq amradio_device 0 55017 NULL
++disable_so_time_mult_perf_event_mmap_page_55031 time_mult perf_event_mmap_page 0 55031 NULL nohasharray
++disable_so___i2c_bit_add_bus_fndecl_55031 __i2c_bit_add_bus fndecl 0 55031 &disable_so_time_mult_perf_event_mmap_page_55031
++disable_so_addr_f71882fg_data_55035 addr f71882fg_data 0 55035 NULL
++disable_so_time_stamp_igb_tx_buffer_55041 time_stamp igb_tx_buffer 0 55041 NULL
++disable_so_fsl_spdif_txclk_caldiv_fndecl_55042 fsl_spdif_txclk_caldiv fndecl 3-0 55042 NULL
++disable_so_wall_time_coarse_sec_vsyscall_gtod_data_55048 wall_time_coarse_sec vsyscall_gtod_data 0 55048 NULL nohasharray
++disable_so_rv770_set_smc_sram_address_fndecl_55048 rv770_set_smc_sram_address fndecl 0-2 55048 &disable_so_wall_time_coarse_sec_vsyscall_gtod_data_55048
++disable_so_enic_set_mac_address_fndecl_55049 enic_set_mac_address fndecl 0 55049 NULL
++disable_so_bitmap_shift_left_fndecl_55055 bitmap_shift_left fndecl 3-4 55055 NULL
++disable_so_uea_set_bulk_timeout_fndecl_55059 uea_set_bulk_timeout fndecl 2 55059 NULL
++disable_so_xfs_btree_check_lblock_fndecl_55062 xfs_btree_check_lblock fndecl 0 55062 NULL
++disable_so_addr_num_sctp_getaddrs_old_55065 addr_num sctp_getaddrs_old 0 55065 NULL
++disable_so_random_ri_fndecl_55094 random_ri fndecl 0 55094 NULL
++disable_so_rhashtable_insert_fast_fndecl_55105 rhashtable_insert_fast fndecl 0 55105 NULL
++disable_so_val_nla_map_55108 val nla_map 0 55108 NULL
++disable_so_sis_program_timings_fndecl_55111 sis_program_timings fndecl 2 55111 NULL
++disable_so_crypto_authenc_esn_module_init_fndecl_55112 crypto_authenc_esn_module_init fndecl 0 55112 NULL
++disable_so_open_d_r820t_freq_range_55124 open_d r820t_freq_range 0 55124 NULL
++disable_so_b43legacy_set_slot_time_fndecl_55128 b43legacy_set_slot_time fndecl 2 55128 NULL nohasharray
++disable_so_rowaddr_fndecl_55128 rowaddr fndecl 2 55128 &disable_so_b43legacy_set_slot_time_fndecl_55128 nohasharray
++disable_so_iscsit_do_crypto_hash_sg_fndecl_55128 iscsit_do_crypto_hash_sg fndecl 4-5 55128 &disable_so_rowaddr_fndecl_55128 nohasharray
++disable_so_padlock_sha1_final_fndecl_55128 padlock_sha1_final fndecl 0 55128 &disable_so_iscsit_do_crypto_hash_sg_fndecl_55128
++disable_so_st_ctime_stat_55144 st_ctime stat 0 55144 NULL
++disable_so_bma150_set_low_g_interrupt_fndecl_55166 bma150_set_low_g_interrupt fndecl 4-5-3-0 55166 NULL
++disable_so_atomic_commit_drm_mode_config_funcs_55169 atomic_commit drm_mode_config_funcs 0 55169 NULL
++disable_so_timeout_ns_mmc_data_55170 timeout_ns mmc_data 0 55170 NULL
++disable_so_rq_addr_low_nes_qp_context_55197 rq_addr_low nes_qp_context 0 55197 NULL
++disable_so_gaintime_tsl2563_gainlevel_coeff_55201 gaintime tsl2563_gainlevel_coeff 0 55201 NULL
++disable_so_attr_timeout_fndecl_55204 attr_timeout fndecl 0 55204 NULL
++disable_so_tx_addr_happy_meal_txd_55205 tx_addr happy_meal_txd 0 55205 NULL nohasharray
++disable_so_hsync_v4l2_bt_timings_55205 hsync v4l2_bt_timings 0 55205 &disable_so_tx_addr_happy_meal_txd_55205
++disable_so_decode_bitmap_fndecl_55218 decode_bitmap fndecl 0 55218 NULL
++disable_so_p1_gma_clock_t_55221 p1 gma_clock_t 0 55221 NULL
++disable_so_bitrate_can_bittiming_55225 bitrate can_bittiming 0 55225 NULL
++disable_so_tqi_ready_time_ath5k_txq_info_55226 tqi_ready_time ath5k_txq_info 0 55226 NULL
++disable_so_msr_seek_fndecl_55235 msr_seek fndecl 0-2 55235 NULL
++disable_so_fw_mon_cycle_cnt_iwl_fw_error_dump_fw_mon_55239 fw_mon_cycle_cnt iwl_fw_error_dump_fw_mon 0 55239 NULL
++disable_so_ac97_clock_vardecl_via82xx_c_55242 ac97_clock vardecl_via82xx.c 0 55242 NULL
++disable_so_si2157_sleep_fndecl_55246 si2157_sleep fndecl 0 55246 NULL
++disable_so_max8925_rtc_read_time_fndecl_55254 max8925_rtc_read_time fndecl 0 55254 NULL
++disable_so_di_gid_efs_dinode_55256 di_gid efs_dinode 0 55256 NULL
++disable_so_elan_i2c_sleep_control_fndecl_55264 elan_i2c_sleep_control fndecl 0 55264 NULL
++disable_so_freq_reg_info_regd_fndecl_55266 freq_reg_info_regd fndecl 2 55266 NULL
++disable_so_int_coalescing_timer_ahd_softc_55267 int_coalescing_timer ahd_softc 0 55267 NULL
++disable_so_grsec_alert_wtime_vardecl_55279 grsec_alert_wtime vardecl 0 55279 NULL
++disable_so_btrfs_inode_gid_fndecl_55281 btrfs_inode_gid fndecl 0 55281 NULL
++disable_so_ebitmap_node_set_bit_fndecl_55285 ebitmap_node_set_bit fndecl 2 55285 NULL
++disable_so_gpu_addr_kfd_mem_obj_55286 gpu_addr kfd_mem_obj 0 55286 NULL
++disable_so_smp_random_fndecl_55288 smp_random fndecl 0 55288 NULL
++disable_so_start_rmt_timer1_fndecl_55290 start_rmt_timer1 fndecl 2 55290 NULL
++disable_so_cit_setkey_cipher_tfm_55304 cit_setkey cipher_tfm 0-3 55304 NULL
++disable_so_grpfreq_pca963x_chipdef_55310 grpfreq pca963x_chipdef 0 55310 NULL
++disable_so_mb_dma_address_skd_special_context_55312 mb_dma_address skd_special_context 0 55312 NULL
++disable_so_t4_fwaddrspace_write_fndecl_55313 t4_fwaddrspace_write fndecl 0-2 55313 NULL
++disable_so_num_msrs_to_save_vardecl_x86_c_55317 num_msrs_to_save vardecl_x86.c 0 55317 NULL
++disable_so_cdc_ncm_show_tx_timer_usecs_fndecl_55319 cdc_ncm_show_tx_timer_usecs fndecl 0 55319 NULL
++disable_so_sum_exec_runtime_task_cputime_55320 sum_exec_runtime task_cputime 0 55320 NULL
++disable_so_crypto_hash_final_fndecl_55327 crypto_hash_final fndecl 0 55327 NULL
++disable_so___irq_domain_add_fndecl_55334 __irq_domain_add fndecl 2-3 55334 NULL
++disable_so_end_addr_p54_tx_info_55335 end_addr p54_tx_info 0 55335 NULL
++disable_so_pre_div_pll__55336 pre_div pll_ 0 55336 NULL nohasharray
++disable_so_als_adjust_channel_bit_mask_fndecl_55336 als_adjust_channel_bit_mask fndecl 3 55336 &disable_so_pre_div_pll__55336
++disable_so_write_timeout_cdrom_info_55346 write_timeout cdrom_info 0 55346 NULL nohasharray
++disable_so_crypto_ecb_decrypt_fndecl_55346 crypto_ecb_decrypt fndecl 0-4 55346 &disable_so_write_timeout_cdrom_info_55346
++disable_so_audit_set_backlog_wait_time_fndecl_55349 audit_set_backlog_wait_time fndecl 1-0 55349 NULL
++disable_so_show_risefalltime_fndecl_55351 show_risefalltime fndecl 4-0 55351 NULL
++disable_so_ahash_def_finup_done2_fndecl_55353 ahash_def_finup_done2 fndecl 2 55353 NULL
++disable_so_dm_btree_lookup_fndecl_55361 dm_btree_lookup fndecl 0-2 55361 NULL
++disable_so_drm_prime_sg_to_page_addr_arrays_fndecl_55369 drm_prime_sg_to_page_addr_arrays fndecl 4 55369 NULL
++disable_so_real_clock_atom_clock_dividers_55377 real_clock atom_clock_dividers 0 55377 NULL
++disable_so_div_f1_pll_values_55378 div_f1 pll_values 0 55378 NULL
++disable_so_pci_address_hpt_iopsg_55384 pci_address hpt_iopsg 0 55384 NULL
++disable_so_inode_id_btrfs_delayed_node_55390 inode_id btrfs_delayed_node 0 55390 NULL
++disable_so_write32_bcma_host_ops_55392 write32 bcma_host_ops 3 55392 NULL
++disable_so_freq_libipw_channel_55395 freq libipw_channel 0 55395 NULL nohasharray
++disable_so_maxlen_img_ir_free_timing_55395 maxlen img_ir_free_timing 0 55395 &disable_so_freq_libipw_channel_55395
++disable_so_tgid_autofs_wait_queue_55396 tgid autofs_wait_queue 0 55396 NULL
++disable_so_init_latch_addr_flash_data_55405 init latch_addr_flash_data 2 55405 NULL
++disable_so_di_ctime_nsec_gfs2_dinode_55408 di_ctime_nsec gfs2_dinode 0 55408 NULL nohasharray
++disable_so_hdspm_round_frequency_fndecl_55408 hdspm_round_frequency fndecl 0-1 55408 &disable_so_di_ctime_nsec_gfs2_dinode_55408
++disable_so_time_expires_NCR5380_hostdata_55415 time_expires NCR5380_hostdata 0 55415 NULL
++disable_so___cpu_to_virtio16_fndecl_55418 __cpu_to_virtio16 fndecl 0-2 55418 NULL
++disable_so_ktime_get_seconds_fndecl_55426 ktime_get_seconds fndecl 0 55426 NULL
++disable_so_start_pci_bus_region_55432 start pci_bus_region 0 55432 NULL
++disable_so_uid_h_misc_55433 uid h_misc 0 55433 NULL
++disable_so_clock_drm_display_mode_55440 clock drm_display_mode 0 55440 NULL
++disable_so_show_pci_clock_fndecl_55445 show_pci_clock fndecl 0 55445 NULL
++disable_so_locks_mul_rhashtable_params_55448 locks_mul rhashtable_params 0 55448 NULL
++disable_so_ds2404_read_time_fndecl_55458 ds2404_read_time fndecl 0 55458 NULL
++disable_so_freq_reg_info_fndecl_55465 freq_reg_info fndecl 2 55465 NULL
++disable_so_buffer_addr_nm256_55469 buffer_addr nm256 0 55469 NULL
++disable_so_gr_find_uid_fndecl_55479 gr_find_uid fndecl 0-1 55479 NULL
++disable_so_crypto_report_fndecl_55482 crypto_report fndecl 0 55482 NULL
++disable_so_si470x_set_freq_fndecl_55487 si470x_set_freq fndecl 2 55487 NULL
++disable_so_addr_nvif_ioctl_wr_v0_55489 addr nvif_ioctl_wr_v0 0 55489 NULL
++disable_so_vruntime_sched_entity_55490 vruntime sched_entity 0 55490 NULL nohasharray
++disable_so_hdelay_bttv_geometry_55490 hdelay bttv_geometry 0 55490 &disable_so_vruntime_sched_entity_55490 nohasharray
++disable_so_btrfs_bitmap_cluster_fndecl_55490 btrfs_bitmap_cluster fndecl 4-5-6-7 55490 &disable_so_hdelay_bttv_geometry_55490
++disable_so_height_intel_sdvo_preferred_input_timing_args_55498 height intel_sdvo_preferred_input_timing_args 0 55498 NULL
++disable_so_bosr__coeff_div_55501 bosr _coeff_div 0 55501 NULL
++disable_so_logical_address_ms_extra_data_register_55503 logical_address ms_extra_data_register 0 55503 NULL
++disable_so_last_timeout_iscsi_task_55509 last_timeout iscsi_task 0 55509 NULL
++disable_so_ip_vs_addr_set_fndecl_55530 ip_vs_addr_set fndecl 1 55530 NULL
++disable_so_cg_spll_func_cntl_3_si_clock_registers_55541 cg_spll_func_cntl_3 si_clock_registers 0 55541 NULL nohasharray
++disable_so_pwr_delay_panel_info_55541 pwr_delay panel_info 0 55541 &disable_so_cg_spll_func_cntl_3_si_clock_registers_55541 nohasharray
++disable_so_desc_card_addr___mem_55541 desc_card_addr __mem 0 55541 &disable_so_pwr_delay_panel_info_55541
++disable_so_read_addr_qla8xxx_minidump_entry_rdmem_55551 read_addr qla8xxx_minidump_entry_rdmem 0 55551 NULL nohasharray
++disable_so_xgmac_reg_addr_write_fndecl_55551 xgmac_reg_addr_write fndecl 3-0 55551 &disable_so_read_addr_qla8xxx_minidump_entry_rdmem_55551
++disable_so_timing_hpt_clock_55565 timing hpt_clock 0 55565 NULL
++disable_so_kvm_get_tsc_khz_fndecl_55570 kvm_get_tsc_khz fndecl 0 55570 NULL
++disable_so_demod_address_tda8083_config_55572 demod_address tda8083_config 0 55572 NULL
++disable_so_ql_set_mac_addr_fndecl_55574 ql_set_mac_addr fndecl 0 55574 NULL
++disable_so_lzo1x_1_compress_fndecl_55575 lzo1x_1_compress fndecl 2 55575 NULL
++disable_so_psb_intel_sdvo_get_slave_addr_fndecl_55586 psb_intel_sdvo_get_slave_addr fndecl 0 55586 NULL
++disable_so_tseg1_max_can_bittiming_const_55596 tseg1_max can_bittiming_const 0 55596 NULL
++disable_so_cap_mmap_addr_fndecl_55598 cap_mmap_addr fndecl 0 55598 NULL nohasharray
++disable_so_i_saddr_rds_incoming_55598 i_saddr rds_incoming 0 55598 &disable_so_cap_mmap_addr_fndecl_55598
++disable_so_scan_cycle_time_adp5589_kpad_platform_data_55611 scan_cycle_time adp5589_kpad_platform_data 0 55611 NULL
++disable_so_timeout_usb3_lpm_parameters_55617 timeout usb3_lpm_parameters 0 55617 NULL
++disable_so_dma_addr0_flexcop_dma_55619 dma_addr0 flexcop_dma 0 55619 NULL nohasharray
++disable_so_pci_bus_alloc_resource_fndecl_55619 pci_bus_alloc_resource fndecl 5-3-4 55619 &disable_so_dma_addr0_flexcop_dma_55619
++disable_so_drm_legacy_ctxbitmap_free_fndecl_55620 drm_legacy_ctxbitmap_free fndecl 2 55620 NULL
++disable_so_dp_saddr_rds_iw_connect_private_55621 dp_saddr rds_iw_connect_private 0 55621 NULL
++disable_so_get_fan1_div_fndecl_55629 get_fan1_div fndecl 0 55629 NULL
++disable_so_cfg_rrq_xri_bitmap_sz_lpfc_hba_55637 cfg_rrq_xri_bitmap_sz lpfc_hba 0 55637 NULL
++disable_so_timeout_ms_rdma_ucm_resolve_addr_55643 timeout_ms rdma_ucm_resolve_addr 0 55643 NULL
++disable_so_elv_rqhash_find_fndecl_55656 elv_rqhash_find fndecl 2 55656 NULL
++disable_so_addrconf_sysctl_disable_fndecl_55663 addrconf_sysctl_disable fndecl 0 55663 NULL
++disable_so_cx24117_read_signal_strength_fndecl_55668 cx24117_read_signal_strength fndecl 0 55668 NULL
++disable_so_table2_addr_ipw_priv_55672 table2_addr ipw_priv 0 55672 NULL
++disable_so_lock_time_drm_lock_data_55680 lock_time drm_lock_data 0 55680 NULL
++disable_so_timeout_init_vardecl_ch_c_55683 timeout_init vardecl_ch.c 0 55683 NULL
++disable_so_btrfs_uuid_tree_rem_fndecl_55691 btrfs_uuid_tree_rem fndecl 0-4-5 55691 NULL
++disable_so_n_cipher_schemes_ieee80211_hw_55692 n_cipher_schemes ieee80211_hw 0 55692 NULL
++disable_so_wcid_rt2x00lib_crypto_55695 wcid rt2x00lib_crypto 0 55695 NULL
++disable_so_beiscsi_get_macaddr_fndecl_55699 beiscsi_get_macaddr fndecl 0 55699 NULL
++disable_so_fdb_delete_by_addr_fndecl_55704 fdb_delete_by_addr fndecl 3 55704 NULL
++disable_so_hpi_compander_get_decay_time_constant_fndecl_55715 hpi_compander_get_decay_time_constant fndecl 1-0 55715 NULL
++disable_so_pcc_get_freq_fndecl_55717 pcc_get_freq fndecl 0 55717 NULL
++disable_so_mca_cstamp_ifmcaddr6_55724 mca_cstamp ifmcaddr6 0 55724 NULL
++disable_so_seltime_ahd_softc_55725 seltime ahd_softc 0 55725 NULL nohasharray
++disable_so_addr_2_qla8044_minidump_entry_pollwr_55725 addr_2 qla8044_minidump_entry_pollwr 0 55725 &disable_so_seltime_ahd_softc_55725
++disable_so_vm_exit_msr_load_addr_vmcs12_55733 vm_exit_msr_load_addr vmcs12 0 55733 NULL
++disable_so_mclk_pwrmgt_cntl_ci_clock_registers_55735 mclk_pwrmgt_cntl ci_clock_registers 0 55735 NULL
++disable_so_gcm_hash_update_fndecl_55740 gcm_hash_update fndecl 0-4 55740 NULL
++disable_so_ab3100_set_test_register_interruptible_fndecl_55741 ab3100_set_test_register_interruptible fndecl 0 55741 NULL
++disable_so_ieee802154_hdr_get_addrs_fndecl_55743 ieee802154_hdr_get_addrs fndecl 0 55743 NULL
++disable_so_devfreq_userspace_handler_fndecl_55748 devfreq_userspace_handler fndecl 0 55748 NULL
++disable_so_host_sg_tbl_addr_rtsx_pcr_55750 host_sg_tbl_addr rtsx_pcr 0 55750 NULL
++disable_so_crypto_hash_walk_first_compat_fndecl_55757 crypto_hash_walk_first_compat fndecl 0-4 55757 NULL
++disable_so_mpll_dq_func_cntl_si_clock_registers_55759 mpll_dq_func_cntl si_clock_registers 0 55759 NULL
++disable_so_check_gran_clock_compatibility_fndecl_55761 check_gran_clock_compatibility fndecl 2 55761 NULL
++disable_so_watchdog_set_timeout_fndecl_55765 watchdog_set_timeout fndecl 2-0 55765 NULL
++disable_so_c_laddr_rds_connection_55766 c_laddr rds_connection 0 55766 NULL
++disable_so_slot_timeout_irlap_cb_55778 slot_timeout irlap_cb 0 55778 NULL
++disable_so_timer_quantum_ns_efx_nic_55779 timer_quantum_ns efx_nic 0 55779 NULL
++disable_so_me_addr_hbm_props_request_55786 me_addr hbm_props_request 0 55786 NULL
++disable_so_snd_timer_user_continue_fndecl_55796 snd_timer_user_continue fndecl 0 55796 NULL
++disable_so_last_rx_timestamp_ixgbe_adapter_55801 last_rx_timestamp ixgbe_adapter 0 55801 NULL
++disable_so_di_mtime_logfs_disk_inode_55807 di_mtime logfs_disk_inode 0 55807 NULL
++disable_so_mxr_runtime_resume_fndecl_55814 mxr_runtime_resume fndecl 0 55814 NULL
++disable_so_write_tsc_offset_kvm_x86_ops_55825 write_tsc_offset kvm_x86_ops 2 55825 NULL
++disable_so_suspended_jiffies_dev_pm_info_55833 suspended_jiffies dev_pm_info 0 55833 NULL
++disable_so_daddr_flowi4_55835 daddr flowi4 0 55835 NULL
++disable_so_arcmsr_Read_iop_rqbuffer_data_fndecl_55838 arcmsr_Read_iop_rqbuffer_data fndecl 0 55838 NULL
++disable_so_ac_utime_pacct_struct_55849 ac_utime pacct_struct 0 55849 NULL
++disable_so_si476x_radio_s_frequency_fndecl_55854 si476x_radio_s_frequency fndecl 0 55854 NULL
++disable_so_tg3_nvram_logical_addr_fndecl_55858 tg3_nvram_logical_addr fndecl 0-2 55858 NULL
++disable_so_last_delay_mult_qib_chippport_specific_55859 last_delay_mult qib_chippport_specific 0 55859 NULL nohasharray
++disable_so_addr_offset_x86_pmu_55859 addr_offset x86_pmu 0-1 55859 &disable_so_last_delay_mult_qib_chippport_specific_55859
++disable_so_nvkm_timer_alarm_fndecl_55870 nvkm_timer_alarm fndecl 2 55870 NULL
++disable_so_num_mc_addrs_ixgbe_addr_filter_info_55888 num_mc_addrs ixgbe_addr_filter_info 0 55888 NULL
++disable_so_snd_interval_muldivk_fndecl_55894 snd_interval_muldivk fndecl 3 55894 NULL
++disable_so_read_time_rtc_class_ops_55898 read_time rtc_class_ops 0 55898 NULL
++disable_so_timeouts_size_ip_vs_app_55902 timeouts_size ip_vs_app 0 55902 NULL
++disable_so_mwifiex_process_sleep_confirm_resp_fndecl_55909 mwifiex_process_sleep_confirm_resp fndecl 3 55909 NULL
++disable_so_sleep_auth_write_fndecl_55911 sleep_auth_write fndecl 0-3 55911 NULL
++disable_so_addr_hi_pm4_query_status_55924 addr_hi pm4_query_status 0 55924 NULL
++disable_so_rpc_anyaddr_fndecl_55925 rpc_anyaddr fndecl 0-1 55925 NULL
++disable_so_fence_gpu_addr_device_queue_manager_55932 fence_gpu_addr device_queue_manager 0 55932 NULL
++disable_so_send_guid_cmd_fndecl_55933 send_guid_cmd fndecl 0 55933 NULL
++disable_so_next_id_mISDNtimerdev_55935 next_id mISDNtimerdev 0 55935 NULL
++disable_so_ref_freq_arizona_fll_55939 ref_freq arizona_fll 0 55939 NULL
++disable_so_find_prop_handlers_by_hash_fndecl_55957 find_prop_handlers_by_hash fndecl 1 55957 NULL
++disable_so_cg_spll_spread_spectrum_ci_clock_registers_55960 cg_spll_spread_spectrum ci_clock_registers 0 55960 NULL
++disable_so___xfrm_src_hash_fndecl_55965 __xfrm_src_hash fndecl 0-3-4 55965 NULL
++disable_so_tps80031_rtc_read_time_fndecl_55978 tps80031_rtc_read_time fndecl 0 55978 NULL
++disable_so_dvb_pll_sleep_fndecl_55979 dvb_pll_sleep fndecl 0 55979 NULL
++disable_so_lose_cover_sizek_mtrr_cleanup_result_55990 lose_cover_sizek mtrr_cleanup_result 0 55990 NULL
++disable_so_wil_ioc_addr_fndecl_55992 wil_ioc_addr fndecl 2-3 55992 NULL
++disable_so_ste10Xp_ack_interrupt_fndecl_55999 ste10Xp_ack_interrupt fndecl 0 55999 NULL
++disable_so_btc_skip_blacklist_clocks_fndecl_56010 btc_skip_blacklist_clocks fndecl 2-3 56010 NULL
++disable_so_sleep_mask_palmas_clk32k_desc_56015 sleep_mask palmas_clk32k_desc 0 56015 NULL
++disable_so_cs_pt_regs_56018 cs pt_regs 0 56018 NULL nohasharray
++disable_so_vmcs_writel_fndecl_56018 vmcs_writel fndecl 2 56018 &disable_so_cs_pt_regs_56018
++disable_so_i_mtime_nsec_f2fs_inode_56019 i_mtime_nsec f2fs_inode 0 56019 NULL
++disable_so_ecx_user_regs_struct32_56025 ecx user_regs_struct32 0 56025 NULL
++disable_so_k8_map_sysaddr_to_csrow_fndecl_56032 k8_map_sysaddr_to_csrow fndecl 2 56032 NULL
++disable_so_max_busy_timeout_mmc_host_56037 max_busy_timeout mmc_host 0 56037 NULL
++disable_so_snd_tea575x_get_freq_fndecl_56045 snd_tea575x_get_freq fndecl 0 56045 NULL
++disable_so_timer_interval_r8a66597_pipe_info_56047 timer_interval r8a66597_pipe_info 0 56047 NULL nohasharray
++disable_so_wc_ct_timer_56047 wc ct_timer 0 56047 &disable_so_timer_interval_r8a66597_pipe_info_56047
++disable_so_gs_tss_segment_32_56052 gs tss_segment_32 0 56052 NULL
++disable_so_bg_inode_bitmap_lo_ext4_group_desc_56060 bg_inode_bitmap_lo ext4_group_desc 0 56060 NULL
++disable_so_debounce_jiffies_gpio_extcon_data_56062 debounce_jiffies gpio_extcon_data 0 56062 NULL
++disable_so_timestamp_perf_event_context_56076 timestamp perf_event_context 0 56076 NULL
++disable_so_s10_img_ir_timing_regvals_56082 s10 img_ir_timing_regvals 0 56082 NULL
++disable_so_addr_nv50_instmem_priv_56092 addr nv50_instmem_priv 0 56092 NULL
++disable_so_stock_freq_vardecl_p4_clockmod_c_56103 stock_freq vardecl_p4-clockmod.c 0 56103 NULL
++disable_so_nfs4_xdr_dec_get_lease_time_fndecl_56110 nfs4_xdr_dec_get_lease_time fndecl 0 56110 NULL
++disable_so_dclk_div_ssd1307fb_par_56111 dclk_div ssd1307fb_par 0 56111 NULL
++disable_so_ad1889_load_wave_interrupt_count_fndecl_56114 ad1889_load_wave_interrupt_count fndecl 2 56114 NULL
++disable_so_tm_sec_rtc_time_56120 tm_sec rtc_time 0 56120 NULL
++disable_so_setsck_fndecl_56125 setsck fndecl 2 56125 NULL
++disable_so_acpi_ut_remove_address_range_fndecl_56141 acpi_ut_remove_address_range fndecl 1 56141 NULL
++disable_so_ssa_blkaddr_f2fs_sm_info_56145 ssa_blkaddr f2fs_sm_info 0 56145 NULL
++disable_so_ack_time_rtl8180_priv_56151 ack_time rtl8180_priv 0 56151 NULL
++disable_so_updelay_bond_params_56155 updelay bond_params 0 56155 NULL
++disable_so_pch_can_bit_clear_fndecl_56156 pch_can_bit_clear fndecl 2 56156 NULL
++disable_so_i2c_addr_si2165_config_56160 i2c_addr si2165_config 0 56160 NULL
++disable_so_gen8_rcs_signal_fndecl_56195 gen8_rcs_signal fndecl 0-2 56195 NULL
++disable_so_bmg160_setup_new_data_interrupt_fndecl_56196 bmg160_setup_new_data_interrupt fndecl 0 56196 NULL
++disable_so_addrhigh_dma64desc_56199 addrhigh dma64desc 0 56199 NULL
++disable_so_kvm_get_time_scale_fndecl_56201 kvm_get_time_scale fndecl 1 56201 NULL
++disable_so_post_divider_atom_clock_dividers_56220 post_divider atom_clock_dividers 0 56220 NULL
++disable_so_max6900_rtc_set_time_fndecl_56236 max6900_rtc_set_time fndecl 0 56236 NULL
++disable_so_crypto_rfc3686_setkey_fndecl_56237 crypto_rfc3686_setkey fndecl 0-3 56237 NULL
++disable_so_mtt_base_addr_l_mlx4_eq_context_56245 mtt_base_addr_l mlx4_eq_context 0 56245 NULL nohasharray
++disable_so_sq_read_base_addr_a0_btmrvl_sdio_card_reg_56245 sq_read_base_addr_a0 btmrvl_sdio_card_reg 0 56245 &disable_so_mtt_base_addr_l_mlx4_eq_context_56245
++disable_so_lbs_cmd_802_11_sleep_params_fndecl_56246 lbs_cmd_802_11_sleep_params fndecl 0 56246 NULL
++disable_so_verity_hash_at_level_fndecl_56248 verity_hash_at_level fndecl 2 56248 NULL
++disable_so_sk_reset_timer_fndecl_56251 sk_reset_timer fndecl 3 56251 NULL
++disable_so_skcipher_sndbuf_fndecl_56255 skcipher_sndbuf fndecl 0 56255 NULL
++disable_so_st_ctime_nsec_p9_stat_dotl_56256 st_ctime_nsec p9_stat_dotl 0 56256 NULL nohasharray
++disable_so_r29_val_fc2580_freq_regs_56256 r29_val fc2580_freq_regs 0 56256 &disable_so_st_ctime_nsec_p9_stat_dotl_56256
++disable_so_qmi_wwan_mac_addr_fndecl_56258 qmi_wwan_mac_addr fndecl 0 56258 NULL
++disable_so_cik_set_vce_clocks_fndecl_56266 cik_set_vce_clocks fndecl 3-0 56266 NULL nohasharray
++disable_so_bitmap_copy_from_slot_fndecl_56266 bitmap_copy_from_slot fndecl 0-2 56266 &disable_so_cik_set_vce_clocks_fndecl_56266
++disable_so_delay_mult_ipath_devdata_56277 delay_mult ipath_devdata 0 56277 NULL
++disable_so_esas2r_disc_get_phys_addr_fndecl_56278 esas2r_disc_get_phys_addr fndecl 0 56278 NULL
++disable_so_sst_module_runtime_get_from_id_fndecl_56286 sst_module_runtime_get_from_id fndecl 2 56286 NULL
++disable_so_freq_req_adf4350_state_56294 freq_req adf4350_state 0 56294 NULL
++disable_so_max_bandwidth_khz_ieee80211_freq_range_56300 max_bandwidth_khz ieee80211_freq_range 0 56300 NULL
++disable_so_faddr_rds_info_connection_56313 faddr rds_info_connection 0 56313 NULL
++disable_so_pcm_delay_pcm_stream_info_56329 pcm_delay pcm_stream_info 0 56329 NULL nohasharray
++disable_so_dev_addr_pch_dma_desc_regs_56329 dev_addr pch_dma_desc_regs 0 56329 &disable_so_pcm_delay_pcm_stream_info_56329
++disable_so_show_sgid_fndecl_56331 show_sgid fndecl 0 56331 NULL
++disable_so_sumo_get_valid_engine_clock_fndecl_56332 sumo_get_valid_engine_clock fndecl 0 56332 NULL
++disable_so_bitmap_resize_fndecl_56333 bitmap_resize fndecl 0-2 56333 NULL
++disable_so_get_cpufreq_driver_56334 get cpufreq_driver 0-1 56334 NULL
++disable_so_cg_spll_spread_spectrum_2_rv770_clock_registers_56343 cg_spll_spread_spectrum_2 rv770_clock_registers 0 56343 NULL
++disable_so_dsa_slave_set_mac_address_fndecl_56363 dsa_slave_set_mac_address fndecl 0 56363 NULL nohasharray
++disable_so_log2secsize_adfs_discrecord_56363 log2secsize adfs_discrecord 0 56363 &disable_so_dsa_slave_set_mac_address_fndecl_56363 nohasharray
++enable_so_i_ino_xfs_inode_56363 i_ino xfs_inode 0 56363 &disable_so_log2secsize_adfs_discrecord_56363
++disable_so_offset_bit_entry_56370 offset bit_entry 0 56370 NULL
++disable_so_serio_interrupt_fndecl_56371 serio_interrupt fndecl 2 56371 NULL
++disable_so_nla_put_s8_fndecl_56378 nla_put_s8 fndecl 0 56378 NULL
++disable_so_max_timing_entry_56381 max timing_entry 0 56381 NULL
++disable_so_clk_div_chip_data_56404 clk_div chip_data 0 56404 NULL
++disable_so_index_addr_fndecl_56405 index_addr fndecl 2-3 56405 NULL
++disable_so_sysctl_tipc_named_timeout_vardecl_56406 sysctl_tipc_named_timeout vardecl 0 56406 NULL nohasharray
++disable_so_pci_bus_clock_list_ultra_fndecl_56406 pci_bus_clock_list_ultra fndecl 0-1 56406 &disable_so_sysctl_tipc_named_timeout_vardecl_56406
++disable_so_pwm_freq_to_reg_fndecl_56419 pwm_freq_to_reg fndecl 0-1 56419 NULL
++disable_so_compaq_ioaddr_vardecl_3c59x_c_56423 compaq_ioaddr vardecl_3c59x.c 0 56423 NULL
++disable_so_nv04_timer_ctor_fndecl_56428 nv04_timer_ctor fndecl 0 56428 NULL
++disable_so_last_jiffies_dm_kcopyd_throttle_56429 last_jiffies dm_kcopyd_throttle 0 56429 NULL
++disable_so_prev_xfer_time_if_spi_card_56430 prev_xfer_time if_spi_card 0 56430 NULL
++disable_so_cpufreq_governor_dbs_fndecl_56433 cpufreq_governor_dbs fndecl 0 56433 NULL
++disable_so_align_vdso_addr_fndecl_56438 align_vdso_addr fndecl 0-1 56438 NULL
++disable_so_addresshigh_SG64ENTRY_56440 addresshigh SG64ENTRY 0 56440 NULL
++disable_so_freq_nvbios_M0205T_56458 freq nvbios_M0205T 0 56458 NULL
++disable_so_hfs_bnode_hash_fndecl_56462 hfs_bnode_hash fndecl 0-1 56462 NULL
++disable_so_address_rmap_item_56465 address rmap_item 0 56465 NULL
++disable_so_tseg1_pucan_timing_fast_56466 tseg1 pucan_timing_fast 0 56466 NULL
++disable_so_read_reg_qlcnic_hardware_ops_56470 read_reg qlcnic_hardware_ops 0-2 56470 NULL
++disable_so_ba0_addr_cs4281_56471 ba0_addr cs4281 0 56471 NULL
++disable_so_seltime_ahc_softc_56482 seltime ahc_softc 0 56482 NULL
++disable_so_preferred_resolution_snd_seq_timer_56486 preferred_resolution snd_seq_timer 0 56486 NULL
++disable_so_rtl8723e_dm_bt_set_sw_full_time_dac_swing_fndecl_56491 rtl8723e_dm_bt_set_sw_full_time_dac_swing fndecl 3 56491 NULL
++disable_so_compat_sys_utime_fndecl_56499 compat_sys_utime fndecl 0 56499 NULL
++disable_so_max_cpufreq_policy_56505 max cpufreq_policy 0 56505 NULL
++disable_so_gpm_addr_ath9k_hw_mci_56507 gpm_addr ath9k_hw_mci 0 56507 NULL
++disable_so_local_cm_response_timeout_ib_cm_req_event_param_56527 local_cm_response_timeout ib_cm_req_event_param 0 56527 NULL
++disable_so_di_ctime_qnx4_inode_entry_56528 di_ctime qnx4_inode_entry 0 56528 NULL
++disable_so_check_object_size_fndecl_56537 check_object_size fndecl 2 56537 NULL
++disable_so_netlbl_unlhsh_remove_addr4_fndecl_56540 netlbl_unlhsh_remove_addr4 fndecl 0 56540 NULL
++disable_so_pio_address_qla_hw_data_56550 pio_address qla_hw_data 0 56550 NULL
++disable_so_clockdelay_te_vardecl_hfcmulti_c_56569 clockdelay_te vardecl_hfcmulti.c 0 56569 NULL
++disable_so_cfg80211_get_start_freq_fndecl_56579 cfg80211_get_start_freq fndecl 0-1-2 56579 NULL
++disable_so_crypto_info_open_fndecl_56585 crypto_info_open fndecl 0 56585 NULL
++disable_so_iio_interrupt_trigger_probe_fndecl_56586 iio_interrupt_trigger_probe fndecl 0 56586 NULL
++disable_so_csize_lattime_ahd_suspend_pci_state_56599 csize_lattime ahd_suspend_pci_state 0 56599 NULL
++disable_so_pcxhr_get_clock_reg_fndecl_56600 pcxhr_get_clock_reg fndecl 2-0 56600 NULL
++disable_so_ib_find_cached_gid_fndecl_56608 ib_find_cached_gid fndecl 0 56608 NULL
++disable_so_btree_node_write_endio_fndecl_56609 btree_node_write_endio fndecl 2 56609 NULL
++disable_so_rxdescmem_busaddr_altera_tse_private_56610 rxdescmem_busaddr altera_tse_private 0 56610 NULL
++disable_so_pwm_downtime_w83793_data_56624 pwm_downtime w83793_data 0 56624 NULL
++disable_so_nl80211_crypto_settings_fndecl_56625 nl80211_crypto_settings fndecl 0 56625 NULL
++disable_so_freq_pmu0_plltab_entry_56630 freq pmu0_plltab_entry 0 56630 NULL
++disable_so_get_register_page_interruptible_fndecl_56634 get_register_page_interruptible fndecl 0 56634 NULL
++disable_so_time_rx_survey_info_56644 time_rx survey_info 0 56644 NULL
++disable_so_isp1362_write_diraddr_fndecl_56658 isp1362_write_diraddr fndecl 2-3 56658 NULL
++disable_so_utime_task_cputime_56665 utime task_cputime 0 56665 NULL
++disable_so_blogic_add_probeaddr_isa_fndecl_56669 blogic_add_probeaddr_isa fndecl 1 56669 NULL
++disable_so_memsize_bitmap_ip_56671 memsize bitmap_ip 0 56671 NULL
++disable_so_ssb_pmu_get_alp_clock_fndecl_56673 ssb_pmu_get_alp_clock fndecl 0 56673 NULL nohasharray
++disable_so_crypto_xor_fndecl_56673 crypto_xor fndecl 3 56673 &disable_so_ssb_pmu_get_alp_clock_fndecl_56673
++disable_so_addr_wqicb_56680 addr wqicb 0 56680 NULL
++disable_so_post_div_atom_clock_dividers_56686 post_div atom_clock_dividers 0 56686 NULL
++disable_so_local_ca_guid_cm_req_msg_56691 local_ca_guid cm_req_msg 0 56691 NULL
++disable_so_ath5k_hw_check_beacon_timers_fndecl_56701 ath5k_hw_check_beacon_timers fndecl 2 56701 NULL
++disable_so_resultjiffies_vardecl_floppy_c_56702 resultjiffies vardecl_floppy.c 0 56702 NULL
++disable_so_snd_tea575x_s_hw_freq_seek_fndecl_56703 snd_tea575x_s_hw_freq_seek fndecl 0 56703 NULL
++disable_so_ir_clock_mhz_vardecl_tm6000_input_c_56706 ir_clock_mhz vardecl_tm6000-input.c 0 56706 NULL
++disable_so_mei_me_pm_runtime_suspend_fndecl_56711 mei_me_pm_runtime_suspend fndecl 0 56711 NULL
++disable_so_deftype_kvm_mtrr_56712 deftype kvm_mtrr 0 56712 NULL
++disable_so_base_addr_phys__adpt_hba_56713 base_addr_phys _adpt_hba 0 56713 NULL
++disable_so_addr_nvkm_instobj_56715 addr nvkm_instobj 0 56715 NULL
++disable_so_do_wait_for_common_fndecl_56721 do_wait_for_common fndecl 4 56721 NULL
++disable_so_i_uid_minix_inode_56733 i_uid minix_inode 0 56733 NULL
++disable_so_addr_nvkm_engctx_56734 addr nvkm_engctx 0 56734 NULL nohasharray
++disable_so_RF_SYN_reserved_addr27_chan_info_nphy_radio205x_56734 RF_SYN_reserved_addr27 chan_info_nphy_radio205x 0 56734 &disable_so_addr_nvkm_engctx_56734
++disable_so_bp_pt_regs_56736 bp pt_regs 0 56736 NULL
++disable_so_hor_blank_end_via_display_timing_56738 hor_blank_end via_display_timing 0 56738 NULL
++disable_so_panel_power_cycle_delay_intel_dp_56739 panel_power_cycle_delay intel_dp 0 56739 NULL
++disable_so_dib8000_sleep_fndecl_56740 dib8000_sleep fndecl 0 56740 NULL
++disable_so_ext4_valid_block_bitmap_fndecl_56749 ext4_valid_block_bitmap fndecl 0-3 56749 NULL
++disable_so_func_bit_map_vif_list_event_data_56753 func_bit_map vif_list_event_data 0 56753 NULL
++disable_so_netxen_nic_set_mcast_addr_fndecl_56754 netxen_nic_set_mcast_addr fndecl 2 56754 NULL
++disable_so_wrmsr_on_cpu_fndecl_56757 wrmsr_on_cpu fndecl 0-1-3-4 56757 NULL
++disable_so_rmap_recycle_fndecl_56761 rmap_recycle fndecl 3 56761 NULL
++disable_so_cyapa_gen5_get_interval_time_fndecl_56783 cyapa_gen5_get_interval_time fndecl 0 56783 NULL nohasharray
++disable_so_laddr_rds_info_message_56783 laddr rds_info_message 0 56783 &disable_so_cyapa_gen5_get_interval_time_fndecl_56783
++disable_so_btrfs_set_inode_uid_fndecl_56785 btrfs_set_inode_uid fndecl 3 56785 NULL
++disable_so_wl1251_acx_group_address_tbl_fndecl_56786 wl1251_acx_group_address_tbl fndecl 0 56786 NULL
++disable_so_idletimer_tg_show_fndecl_56792 idletimer_tg_show fndecl 0 56792 NULL
++disable_so_ofdmtab_addr_b43_phy_g_56793 ofdmtab_addr b43_phy_g 0 56793 NULL
++disable_so_count_radeon_clock_voltage_dependency_table_56794 count radeon_clock_voltage_dependency_table 0 56794 NULL
++disable_so_nla_put_in_addr_fndecl_56802 nla_put_in_addr fndecl 0 56802 NULL
++disable_so_br_multicast_set_hash_max_fndecl_56807 br_multicast_set_hash_max fndecl 0-2 56807 NULL
++disable_so_runtime_expires_cfs_rq_56808 runtime_expires cfs_rq 0 56808 NULL nohasharray
++disable_so_write_file_bt_ant_diversity_fndecl_56808 write_file_bt_ant_diversity fndecl 0 56808 &disable_so_runtime_expires_cfs_rq_56808
++disable_so_sisfb_post_xgi_setclocks_fndecl_56821 sisfb_post_xgi_setclocks fndecl 2 56821 NULL
++disable_so_ipath_signal_procs_fndecl_56823 ipath_signal_procs fndecl 2 56823 NULL
++disable_so_seqtimer_scaling_vardecl_azt3328_c_56829 seqtimer_scaling vardecl_azt3328.c 0 56829 NULL
++disable_so_bar_bus_addr_usnic_ib_create_qp_resp_56831 bar_bus_addr usnic_ib_create_qp_resp 0 56831 NULL
++disable_so_fib_laddr_hashfn_fndecl_56832 fib_laddr_hashfn fndecl 0-1 56832 NULL
++disable_so_qlcnic_82xx_sre_macaddr_change_fndecl_56836 qlcnic_82xx_sre_macaddr_change fndecl 0 56836 NULL
++disable_so_dm_btree_find_lowest_key_fndecl_56845 dm_btree_find_lowest_key fndecl 0-2 56845 NULL
++disable_so_get_fan_div_fndecl_56857 get_fan_div fndecl 0 56857 NULL
++disable_so_neigh_proc_dointvec_jiffies_fndecl_56860 neigh_proc_dointvec_jiffies fndecl 0 56860 NULL
++disable_so_last_delay_snd_usb_substream_56861 last_delay snd_usb_substream 0 56861 NULL
++disable_so_memory_address_set_error_type_with_address_56863 memory_address set_error_type_with_address 0 56863 NULL
++disable_so_seq_b43_txstatus_56873 seq b43_txstatus 0 56873 NULL
++disable_so_phonet_address_notify_fndecl_56877 phonet_address_notify fndecl 1-3 56877 NULL
++disable_so_msp_sleep_fndecl_56878 msp_sleep fndecl 2 56878 NULL nohasharray
++disable_so_ltr501_match_samp_freq_fndecl_56878 ltr501_match_samp_freq fndecl 0 56878 &disable_so_msp_sleep_fndecl_56878
++disable_so_signalled_used_vhost_virtqueue_56881 signalled_used vhost_virtqueue 0 56881 NULL
++disable_so_titsc_probe_fndecl_56883 titsc_probe fndecl 0 56883 NULL
++disable_so_xfs_btree_check_sblock_fndecl_56897 xfs_btree_check_sblock fndecl 0 56897 NULL
++disable_so_jiffies_next_hackrf_dev_56900 jiffies_next hackrf_dev 0 56900 NULL
++disable_so_bpf_get_prandom_u32_fndecl_56904 bpf_get_prandom_u32 fndecl 0 56904 NULL
++disable_so_rt_lifetime_icmpv6_nd_ra_56907 rt_lifetime icmpv6_nd_ra 0 56907 NULL
++disable_so_base_addr_ufshcd_sg_entry_56924 base_addr ufshcd_sg_entry 0 56924 NULL
++disable_so_crypto_gcm_decrypt_fndecl_56932 crypto_gcm_decrypt fndecl 0 56932 NULL
++disable_so_pll_d_aic31xx_rate_divs_56933 pll_d aic31xx_rate_divs 0 56933 NULL
++disable_so_mc_arb_burst_time_SMC_SIslands_MCArbDramTimingRegisterSet_56938 mc_arb_burst_time SMC_SIslands_MCArbDramTimingRegisterSet 0 56938 NULL
++disable_so_hfc_jiffies_vardecl_hfcpci_c_56949 hfc_jiffies vardecl_hfcpci.c 0 56949 NULL
++disable_so_pm_timeout_orinoco_private_56953 pm_timeout orinoco_private 0 56953 NULL
++disable_so_cpu_delayed_work_56959 cpu delayed_work 0 56959 NULL
++disable_so_sys_sched_setscheduler_fndecl_56964 sys_sched_setscheduler fndecl 2-1-0 56964 NULL
++disable_so_ucode_beacon_time_il_priv_56968 ucode_beacon_time il_priv 0 56968 NULL
++disable_so_ntsc_tvdac_adj_radeon_encoder_tv_dac_56984 ntsc_tvdac_adj radeon_encoder_tv_dac 0 56984 NULL
++disable_so_hbqaddrLow_config_hbq_var_56996 hbqaddrLow config_hbq_var 0 56996 NULL
++disable_so_hpios_delay_micro_seconds_fndecl_57000 hpios_delay_micro_seconds fndecl 1 57000 NULL
++disable_so_pwm_freq_nvbios_therm_fan_57021 pwm_freq nvbios_therm_fan 0 57021 NULL
++disable_so_cycle_interval_timekeeper_57030 cycle_interval timekeeper 0 57030 NULL
++disable_so_qce_ablkcipher_register_fndecl_57031 qce_ablkcipher_register fndecl 0 57031 NULL
++disable_so_posix_cpu_clock_set_fndecl_57033 posix_cpu_clock_set fndecl 1 57033 NULL
++disable_so_ac97_clock_via82xx_modem_57034 ac97_clock via82xx_modem 0 57034 NULL
++disable_so_ip_set_get_ipaddr4_fndecl_57035 ip_set_get_ipaddr4 fndecl 0 57035 NULL
++disable_so_mmap_min_addr_handler_fndecl_57042 mmap_min_addr_handler fndecl 0 57042 NULL
++disable_so___mutex_lock_interruptible_slowpath_fndecl_57044 __mutex_lock_interruptible_slowpath fndecl 0 57044 NULL
++disable_so_round_jiffies_relative_fndecl_57045 round_jiffies_relative fndecl 0-1 57045 NULL
++disable_so_addr2___pollrdmwr_57048 addr2 __pollrdmwr 0 57048 NULL
++disable_so_opmode_ioaddr_mxser_port_57052 opmode_ioaddr mxser_port 0 57052 NULL nohasharray
++disable_so_xfrm_hash_transfer_fndecl_57052 xfrm_hash_transfer fndecl 5 57052 &disable_so_opmode_ioaddr_mxser_port_57052
++disable_so_hpi_sample_clock_query_source_index_fndecl_57055 hpi_sample_clock_query_source_index fndecl 1-0 57055 NULL
++disable_so_bitmap_full_fndecl_57072 bitmap_full fndecl 2 57072 NULL
++disable_so_cmd_attr_deregister_cpumask_fndecl_57077 cmd_attr_deregister_cpumask fndecl 0 57077 NULL
++disable_so_hashtab_create_fndecl_57082 hashtab_create fndecl 3 57082 NULL
++disable_so_laddr_c2wr_ae_connection_request_57084 laddr c2wr_ae_connection_request 0 57084 NULL
++disable_so_alarmtimer_suspend_fndecl_57099 alarmtimer_suspend fndecl 0 57099 NULL
++disable_so___cpufreq_cooling_register_fndecl_57101 __cpufreq_cooling_register fndecl 3 57101 NULL
++disable_so_fll_clk_ref_div__fll_div_57104 fll_clk_ref_div _fll_div 0 57104 NULL
++disable_so_tsc_to_system_mul_pvclock_vcpu_time_info_57110 tsc_to_system_mul pvclock_vcpu_time_info 0 57110 NULL nohasharray
++disable_so_dp_clock_radeon_dp_link_train_info_57110 dp_clock radeon_dp_link_train_info 0 57110 &disable_so_tsc_to_system_mul_pvclock_vcpu_time_info_57110
++disable_so_d_spc_timer_qc_dqblk_57112 d_spc_timer qc_dqblk 0 57112 NULL
++disable_so_ntp_error_shift_timekeeper_57130 ntp_error_shift timekeeper 0 57130 NULL
++disable_so_tuner_addr_cx88_board_57133 tuner_addr cx88_board 0 57133 NULL
++disable_so_width_v4l2_bt_timings_57137 width v4l2_bt_timings 0 57137 NULL
++disable_so_function_timer_list_57140 function timer_list 1 57140 NULL
++disable_so_tuner_address_ts2020_config_57154 tuner_address ts2020_config 0 57154 NULL
++disable_so_sm501_set_clock_fndecl_57155 sm501_set_clock fndecl 3-0 57155 NULL
++disable_so_addrlimit_qib_user_sdma_pkt_57160 addrlimit qib_user_sdma_pkt 0 57160 NULL
++disable_so_read_file_regidx_fndecl_57161 read_file_regidx fndecl 3-0 57161 NULL
++disable_so_slot_time_rt2x00lib_erp_57170 slot_time rt2x00lib_erp 0 57170 NULL
++disable_so_bx_pt_regs_57172 bx pt_regs 0 57172 NULL
++disable_so_ssb_pmu_get_controlclock_fndecl_57187 ssb_pmu_get_controlclock fndecl 0 57187 NULL
++disable_so_inet_fill_ifaddr_fndecl_57209 inet_fill_ifaddr fndecl 0-3-5 57209 NULL
++disable_so_mem_addr_vardecl_debugfs_c_57210 mem_addr vardecl_debugfs.c 0 57210 NULL
++disable_so_iwl_static_sleep_cmd_fndecl_57211 iwl_static_sleep_cmd fndecl 4 57211 NULL
++disable_so_frequency_khz_ts2020_priv_57218 frequency_khz ts2020_priv 0 57218 NULL
++disable_so_hashm_dcb_output_57225 hashm dcb_output 0 57225 NULL
++disable_so_show_risetime_fndecl_57236 show_risetime fndecl 0 57236 NULL
++disable_so_iscsi_nacl_attrib_store_random_r2t_offsets_fndecl_57241 iscsi_nacl_attrib_store_random_r2t_offsets fndecl 0-3 57241 NULL
++disable_so_hash_netiface6_expire_fndecl_57246 hash_netiface6_expire fndecl 4 57246 NULL
++disable_so_delayed_ack_bictcp_57249 delayed_ack bictcp 0 57249 NULL
++disable_so_addr_he_ioctl_reg_57251 addr he_ioctl_reg 0 57251 NULL
++disable_so_crystalfreq_ssb_chipcommon_pmu_57260 crystalfreq ssb_chipcommon_pmu 0 57260 NULL
++disable_so_i_dtime_ext4_inode_info_57265 i_dtime ext4_inode_info 0 57265 NULL
++disable_so_qlcnic_schedule_work_fndecl_57272 qlcnic_schedule_work fndecl 3 57272 NULL
++disable_so_uid_affs_tail_57279 uid affs_tail 0 57279 NULL nohasharray
++disable_so_delay_slave_57279 delay slave 0 57279 &disable_so_uid_affs_tail_57279 nohasharray
++disable_so_pwm_freq_to_reg_627hf_fndecl_57279 pwm_freq_to_reg_627hf fndecl 0 57279 &disable_so_delay_slave_57279
++disable_so_sock_set_timeout_fndecl_57281 sock_set_timeout fndecl 0-3 57281 NULL
++disable_so_phys_addr_fndecl_57284 phys_addr fndecl 0 57284 NULL
++disable_so_i_uid_minix2_inode_57288 i_uid minix2_inode 0 57288 NULL
++disable_so_hash_netnet4_expire_fndecl_57295 hash_netnet4_expire fndecl 4 57295 NULL
++disable_so_mtrr_file_add_fndecl_57296 mtrr_file_add fndecl 1-2 57296 NULL
++disable_so_rd_addr_gfs2_rgrpd_57301 rd_addr gfs2_rgrpd 0 57301 NULL
++disable_so_elf_map_fndecl_57308 elf_map fndecl 0-2-4-5 57308 NULL
++disable_so_frame_len_stv0900_signal_info_57310 frame_len stv0900_signal_info 0 57310 NULL nohasharray
++disable_so_crypto_pcbc_encrypt_segment_fndecl_57310 crypto_pcbc_encrypt_segment fndecl 0 57310 &disable_so_frame_len_stv0900_signal_info_57310
++disable_so_xs_init_anyaddr_fndecl_57311 xs_init_anyaddr fndecl 1 57311 NULL
++disable_so_ahash_setkey_unaligned_fndecl_57314 ahash_setkey_unaligned fndecl 3 57314 NULL
++disable_so_active_time_lm8333_platform_data_57318 active_time lm8333_platform_data 0 57318 NULL
++disable_so_snd_timer_start_slave_fndecl_57320 snd_timer_start_slave fndecl 0 57320 NULL
++disable_so_dma_addr_pluto_57323 dma_addr pluto 0 57323 NULL nohasharray
++disable_so_bitmap_print_to_pagebuf_fndecl_57323 bitmap_print_to_pagebuf fndecl 4 57323 &disable_so_dma_addr_pluto_57323
++disable_so_sgl_pg0_addr_hi_sgl_page_pairs_57333 sgl_pg0_addr_hi sgl_page_pairs 0 57333 NULL
++disable_so_scd_base_addr_iwl_trans_pcie_57336 scd_base_addr iwl_trans_pcie 0 57336 NULL
++disable_so_vfio_msi_set_vector_signal_fndecl_57339 vfio_msi_set_vector_signal fndecl 0-2 57339 NULL
++disable_so_sfq_hash_fndecl_57343 sfq_hash fndecl 0 57343 NULL
++disable_so_security_task_getscheduler_fndecl_57345 security_task_getscheduler fndecl 0 57345 NULL
++disable_so_xfrm_idx_hash_transfer_fndecl_57346 xfrm_idx_hash_transfer fndecl 3 57346 NULL
++disable_so_hblank_hi_lvds_dvo_timing_57349 hblank_hi lvds_dvo_timing 0 57349 NULL
++disable_so_try_cancel_split_timeout_fndecl_57358 try_cancel_split_timeout fndecl 0 57358 NULL
++disable_so_node_read_cpumask_fndecl_57363 node_read_cpumask fndecl 0 57363 NULL
++disable_so_module_addr_max_rw_vardecl_module_c_57377 module_addr_max_rw vardecl_module.c 0 57377 NULL
++disable_so_timecounter_read_delta_fndecl_57378 timecounter_read_delta fndecl 0 57378 NULL
++disable_so_addr_hi_ahci_sg_57386 addr_hi ahci_sg 0 57386 NULL
++disable_so_rpi_paddr_lo_lpfc_mbx_post_hdr_tmpl_57387 rpi_paddr_lo lpfc_mbx_post_hdr_tmpl 0 57387 NULL
++disable_so_read_signal_strength_dvb_frontend_ops_57393 read_signal_strength dvb_frontend_ops 0 57393 NULL nohasharray
++disable_so_aes_init_fndecl_57393 aes_init fndecl 0 57393 &disable_so_read_signal_strength_dvb_frontend_ops_57393
++disable_so_iscsi_stat_instance_show_attr_disc_time_fndecl_57397 iscsi_stat_instance_show_attr_disc_time fndecl 0 57397 NULL nohasharray
++disable_so_inblock_signal_struct_57397 inblock signal_struct 0 57397 &disable_so_iscsi_stat_instance_show_attr_disc_time_fndecl_57397
++disable_so_ks0108_address_fndecl_57399 ks0108_address fndecl 1 57399 NULL
++disable_so_set_mtrr_fndecl_57402 set_mtrr fndecl 2-3 57402 NULL
++disable_so___hw_addr_del_entry_fndecl_57405 __hw_addr_del_entry fndecl 0 57405 NULL
++disable_so_adis16136_write_frequency_fndecl_57414 adis16136_write_frequency fndecl 0-4 57414 NULL
++disable_so_addr_hi_eth_rx_cqe_next_page_57432 addr_hi eth_rx_cqe_next_page 0 57432 NULL
++disable_so_vp_iowrite64_twopart_fndecl_57440 vp_iowrite64_twopart fndecl 1 57440 NULL
++disable_so_demod_i2c_addr_tda10071_config_57445 demod_i2c_addr tda10071_config 0 57445 NULL
++disable_so___mcheck_cpu_mce_banks_init_fndecl_57446 __mcheck_cpu_mce_banks_init fndecl 0 57446 NULL
++disable_so_reference_freq_amdgpu_pll_57451 reference_freq amdgpu_pll 0 57451 NULL
++disable_so_default_dispclk_radeon_clock_57469 default_dispclk radeon_clock 0 57469 NULL
++disable_so_dma_pool_free_fndecl_57472 dma_pool_free fndecl 3 57472 NULL
++disable_so_ds1307_get_time_fndecl_57477 ds1307_get_time fndecl 0 57477 NULL
++disable_so_addr_ch_mem_range_57497 addr ch_mem_range 0 57497 NULL
++disable_so_ip_hash_netiface4_elem_57501 ip hash_netiface4_elem 0 57501 NULL
++disable_so_dt_cpufreq_platdrv_init_fndecl_57502 dt_cpufreq_platdrv_init fndecl 0 57502 NULL
++disable_so_fuse_flush_times_fndecl_57514 fuse_flush_times fndecl 0 57514 NULL
++disable_so_nl_pid_sockaddr_nl_57515 nl_pid sockaddr_nl 0 57515 NULL
++disable_so_plane_vaddr_fndecl_57531 plane_vaddr fndecl 5 57531 NULL
++disable_so_addr_nv_adma_prd_57534 addr nv_adma_prd 0 57534 NULL
++disable_so_task_tgid_vnr_fndecl_57539 task_tgid_vnr fndecl 0 57539 NULL
++disable_so_get_register_interruptible_fndecl_57541 get_register_interruptible fndecl 0 57541 NULL
++disable_so_spi_rcvhdr_tailaddr_ipath_base_info_57542 spi_rcvhdr_tailaddr ipath_base_info 0 57542 NULL
++disable_so_ath9k_hw_clear_queue_interrupts_fndecl_57543 ath9k_hw_clear_queue_interrupts fndecl 2 57543 NULL
++disable_so_cl_recover_timer_dlm_cluster_57553 cl_recover_timer dlm_cluster 0 57553 NULL nohasharray
++disable_so_boot_addr_pmu_nvbios_pmuR_57553 boot_addr_pmu nvbios_pmuR 0 57553 &disable_so_cl_recover_timer_dlm_cluster_57553 nohasharray
++disable_so___mod_timer_fndecl_57553 __mod_timer fndecl 2 57553 &disable_so_boot_addr_pmu_nvbios_pmuR_57553
++disable_so_hpfb_freq_cs42l56_platform_data_57565 hpfb_freq cs42l56_platform_data 0 57565 NULL nohasharray
++disable_so_i915_max_freq_set_fndecl_57565 i915_max_freq_set fndecl 2-0 57565 &disable_so_hpfb_freq_cs42l56_platform_data_57565
++disable_so_frequency_v4l2_frequency_57580 frequency v4l2_frequency 0 57580 NULL
++disable_so_time_mce_57593 time mce 0 57593 NULL
++disable_so_addr_abituguru3_data_57605 addr abituguru3_data 0 57605 NULL
++disable_so_bitmap_onto_fndecl_57611 bitmap_onto fndecl 4 57611 NULL
++disable_so_rx4581_get_datetime_fndecl_57612 rx4581_get_datetime fndecl 0 57612 NULL
++disable_so_rem_addr_nes_cm_info_57615 rem_addr nes_cm_info 0 57615 NULL
++disable_so_lease_time_nfs_fsinfo_57627 lease_time nfs_fsinfo 0 57627 NULL
++disable_so_hash_tbl_pbl_addr_hi_fcoe_kwqe_init2_57631 hash_tbl_pbl_addr_hi fcoe_kwqe_init2 0 57631 NULL
++disable_so_pci_addr_blogic_probeinfo_57646 pci_addr blogic_probeinfo 0 57646 NULL
++disable_so_intel_gpio_runtime_idle_fndecl_57650 intel_gpio_runtime_idle fndecl 0 57650 NULL
++disable_so_clock_div_par_info_57652 clock_div par_info 0 57652 NULL
++disable_so_overflowuid_vardecl_57653 overflowuid vardecl 0 57653 NULL
++disable_so_start_time_request_57657 start_time request 0 57657 NULL nohasharray
++disable_so_wil_freq_seq_open_fndecl_57657 wil_freq_seq_open fndecl 0 57657 &disable_so_start_time_request_57657 nohasharray
++disable_so_ocfs2_find_next_zero_bit_unaligned_fndecl_57657 ocfs2_find_next_zero_bit_unaligned fndecl 0-2 57657 &disable_so_wil_freq_seq_open_fndecl_57657
++disable_so_addr_hi_dma_address_57659 addr_hi dma_address 0 57659 NULL
++disable_so_wm2200_runtime_resume_fndecl_57661 wm2200_runtime_resume fndecl 0 57661 NULL nohasharray
++disable_so_w_idx_addr_brcmf_pcie_ringbuf_57661 w_idx_addr brcmf_pcie_ringbuf 0 57661 &disable_so_wm2200_runtime_resume_fndecl_57661
++disable_so_timeout_us_vardecl_tlb_uv_c_57666 timeout_us vardecl_tlb_uv.c 0 57666 NULL
++disable_so_fence_wait_timeout_fndecl_57667 fence_wait_timeout fndecl 0-3 57667 NULL nohasharray
++disable_so_signal_cfg80211_bss_57667 signal cfg80211_bss 0 57667 &disable_so_fence_wait_timeout_fndecl_57667
++disable_so_admin_timeout_vardecl_nvme_core_c_57668 admin_timeout vardecl_nvme-core.c 0 57668 NULL
++disable_so_next_gid_index_mlx4_mgm_57670 next_gid_index mlx4_mgm 0 57670 NULL
++disable_so_sdn_objnamel_sockaddr_dn_57674 sdn_objnamel sockaddr_dn 0 57674 NULL
++disable_so_diolan_set_clock_synch_timeout_fndecl_57678 diolan_set_clock_synch_timeout fndecl 0 57678 NULL
++disable_so_pioaddr_rhine_private_57682 pioaddr rhine_private 0 57682 NULL nohasharray
++disable_so_or51132_read_signal_strength_fndecl_57682 or51132_read_signal_strength fndecl 0 57682 &disable_so_pioaddr_rhine_private_57682
++disable_so_np_oaktrail_hdmi_clock_57683 np oaktrail_hdmi_clock 0 57683 NULL
++disable_so_laddr_check_rds_transport_57695 laddr_check rds_transport 1 57695 NULL
++disable_so_pause_time_ixgbe_fc_info_57702 pause_time ixgbe_fc_info 0 57702 NULL
++disable_so_img_spfi_runtime_resume_fndecl_57703 img_spfi_runtime_resume fndecl 0 57703 NULL
++disable_so_y_runtime_sc_57719 y runtime_sc 0 57719 NULL nohasharray
++disable_so_tscdeadline_kvm_timer_57719 tscdeadline kvm_timer 0 57719 &disable_so_y_runtime_sc_57719
++disable_so_dmaaddr_avmcard_dmabuf_57720 dmaaddr avmcard_dmabuf 0 57720 NULL nohasharray
++disable_so_cg_spll_func_cntl_4_ni_clock_registers_57720 cg_spll_func_cntl_4 ni_clock_registers 0 57720 &disable_so_dmaaddr_avmcard_dmabuf_57720
++disable_so_xgene_rtc_read_time_fndecl_57728 xgene_rtc_read_time fndecl 0 57728 NULL
++disable_so_dma_addr_vnic_wq_buf_57732 dma_addr vnic_wq_buf 0 57732 NULL
++disable_so_E_md4hash_fndecl_57735 E_md4hash fndecl 0 57735 NULL
++disable_so_azx_timecounter_init_fndecl_57762 azx_timecounter_init fndecl 3 57762 NULL
++disable_so_pcibios_save_fw_addr_fndecl_57765 pcibios_save_fw_addr fndecl 3 57765 NULL nohasharray
++disable_so_hash_setkey_fndecl_57765 hash_setkey fndecl 0-3 57765 &disable_so_pcibios_save_fw_addr_fndecl_57765
++disable_so_dlm_master_hash_fndecl_57794 dlm_master_hash fndecl 2 57794 NULL
++disable_so_bitmap_or_fndecl_57806 bitmap_or fndecl 4 57806 NULL
++disable_so_iso_stream_schedule_fndecl_57815 iso_stream_schedule fndecl 0 57815 NULL nohasharray
++disable_so_crypto_register_rng_fndecl_57815 crypto_register_rng fndecl 0 57815 &disable_so_iso_stream_schedule_fndecl_57815
++disable_so_authenc_verify_ahash_done_fndecl_57820 authenc_verify_ahash_done fndecl 2 57820 NULL
++disable_so___timespec_to_jiffies_fndecl_57822 __timespec_to_jiffies fndecl 0-2-1 57822 NULL
++disable_so_sys_addr_to_csrow_fndecl_57824 sys_addr_to_csrow fndecl 0-2 57824 NULL
++disable_so_req_q_phy_addr_ql3_adapter_57830 req_q_phy_addr ql3_adapter 0 57830 NULL
++disable_so_htod_mb_data_addr_brcmf_pcie_shared_info_57843 htod_mb_data_addr brcmf_pcie_shared_info 0 57843 NULL
++disable_so_xfs_btree_rec_offset_fndecl_57864 xfs_btree_rec_offset fndecl 0-2 57864 NULL
++disable_so_write_phy_reg_fndecl_57868 write_phy_reg fndecl 3-2 57868 NULL
++disable_so_bg_block_bitmap_lo_ext4_group_desc_57870 bg_block_bitmap_lo ext4_group_desc 0 57870 NULL
++disable_so_s_wtime_ext4_super_block_57871 s_wtime ext4_super_block 0 57871 NULL
++disable_so_bridge_hello_time_net_bridge_57884 bridge_hello_time net_bridge 0 57884 NULL
++disable_so_gpu_addr_radeon_wb_57894 gpu_addr radeon_wb 0 57894 NULL
++disable_so_addr_vxge_hw_mempool_dma_57895 addr vxge_hw_mempool_dma 0 57895 NULL nohasharray
++disable_so_command_setecptiming_fndecl_57895 command_setecptiming fndecl 0 57895 &disable_so_addr_vxge_hw_mempool_dma_57895
++disable_so_kbd_led_timeout_show_fndecl_57896 kbd_led_timeout_show fndecl 0 57896 NULL
++disable_so_ceph_aes_encrypt2_fndecl_57897 ceph_aes_encrypt2 fndecl 2-6-8 57897 NULL
++disable_so_mask_lo_mtrr_var_range_57901 mask_lo mtrr_var_range 0 57901 NULL
++disable_so_family_xfrm_kmaddress_57907 family xfrm_kmaddress 0 57907 NULL
++disable_so_ks0108_delay_vardecl_ks0108_c_57914 ks0108_delay vardecl_ks0108.c 0 57914 NULL
++disable_so_mtime_server_afs_file_status_57920 mtime_server afs_file_status 0 57920 NULL
++disable_so_base_guid_qib_devdata_57924 base_guid qib_devdata 0 57924 NULL
++disable_so_btrfs_delete_delayed_insertion_item_fndecl_57926 btrfs_delete_delayed_insertion_item fndecl 0 57926 NULL
++disable_so_atime_sec_p9_iattr_dotl_57931 atime_sec p9_iattr_dotl 0 57931 NULL
++disable_so_io_bitmap_max_thread_struct_57932 io_bitmap_max thread_struct 0 57932 NULL
++disable_so_cpu_has_cpufreq_fndecl_57939 cpu_has_cpufreq fndecl 1 57939 NULL
++disable_so_discov_interleaved_timeout_hci_dev_57944 discov_interleaved_timeout hci_dev 0 57944 NULL
++disable_so_batadv_orig_hash_del_if_fndecl_57951 batadv_orig_hash_del_if fndecl 2 57951 NULL
++disable_so_vapic_addr_kvm_vapic_addr_57958 vapic_addr kvm_vapic_addr 0 57958 NULL
++disable_so_qce_ahash_update_fndecl_57959 qce_ahash_update fndecl 0 57959 NULL
++disable_so_work_base_addr_snd_ymfpci_57965 work_base_addr snd_ymfpci 0 57965 NULL
++disable_so_enable_cpuidle_governor_57967 enable cpuidle_governor 0 57967 NULL
++disable_so_hash_write_fndecl_57980 hash_write fndecl 0 57980 NULL
++disable_so_addr_cs5535audio_dma_desc_57981 addr cs5535audio_dma_desc 0 57981 NULL nohasharray
++disable_so_wdt_set_timeout_fndecl_57981 wdt_set_timeout fndecl 0 57981 &disable_so_addr_cs5535audio_dma_desc_57981
++disable_so_memaddr_velocity_info_57982 memaddr velocity_info 0 57982 NULL
++disable_so_uuids_open_fndecl_57986 uuids_open fndecl 0 57986 NULL
++disable_so_p6_mt9t112_pll_divider_58006 p6 mt9t112_pll_divider 0 58006 NULL
++disable_so_buffer_addr_lo_iscsi_bd_58012 buffer_addr_lo iscsi_bd 0 58012 NULL
++disable_so_piix_set_timings_fndecl_58017 piix_set_timings fndecl 3 58017 NULL
++disable_so_rqt_hwaddr_t4_rq_58021 rqt_hwaddr t4_rq 0 58021 NULL
++disable_so_fc_gidpn_build_fndecl_58022 fc_gidpn_build fndecl 0-3-5 58022 NULL nohasharray
++disable_so_ia32_misc_enable_msr_kvm_vcpu_arch_58022 ia32_misc_enable_msr kvm_vcpu_arch 0 58022 &disable_so_fc_gidpn_build_fndecl_58022
++disable_so_sdev_runtime_suspend_fndecl_58023 sdev_runtime_suspend fndecl 0 58023 NULL
++disable_so_check_msr_fndecl_58027 check_msr fndecl 2 58027 NULL
++disable_so_init_addr_pmu_nvbios_pmuR_58030 init_addr_pmu nvbios_pmuR 0 58030 NULL
++disable_so_read_addr_qla82xx_md_entry_mux_58034 read_addr qla82xx_md_entry_mux 0 58034 NULL
++disable_so_vclk_post_div_real_pll_ct_58036 vclk_post_div_real pll_ct 0 58036 NULL
++disable_so_mv88e6060_set_addr_fndecl_58039 mv88e6060_set_addr fndecl 0 58039 NULL
++disable_so_skb_tx_hash_fndecl_58044 skb_tx_hash fndecl 0 58044 NULL
++disable_so_kvm_mtrr_valid_fndecl_58049 kvm_mtrr_valid fndecl 3 58049 NULL
++disable_so_enic_dev_del_station_addr_fndecl_58050 enic_dev_del_station_addr fndecl 0 58050 NULL
++disable_so_divisor_flow_filter_58055 divisor flow_filter 0 58055 NULL nohasharray
++disable_so_sg_addr_orc_scb_58055 sg_addr orc_scb 0 58055 &disable_so_divisor_flow_filter_58055
++disable_so_read_addr_qla8xxx_minidump_entry_rdrom_58060 read_addr qla8xxx_minidump_entry_rdrom 0 58060 NULL
++disable_so_op2_value_baddr1_gru_instruction_58062 op2_value_baddr1 gru_instruction 0 58062 NULL
++disable_so_wait_table_hash_nr_entries_zone_58067 wait_table_hash_nr_entries zone 0 58067 NULL
++disable_so_write_delay_adis_data_58068 write_delay adis_data 0 58068 NULL
++disable_so_paging64_walk_addr_nested_fndecl_58079 paging64_walk_addr_nested fndecl 3-4 58079 NULL
++disable_so_pm860x_rtc_set_time_fndecl_58084 pm860x_rtc_set_time fndecl 0 58084 NULL nohasharray
++disable_so_setup_clock_dw_mci_drv_data_58084 setup_clock dw_mci_drv_data 0 58084 &disable_so_pm860x_rtc_set_time_fndecl_58084
++disable_so_regvalue__coeff_div_58086 regvalue _coeff_div 0 58086 NULL
++disable_so_ext_addr_solo_p2m_desc_58103 ext_addr solo_p2m_desc 0 58103 NULL
++disable_so_vclk_radeon_uvd_clock_voltage_dependency_entry_58107 vclk radeon_uvd_clock_voltage_dependency_entry 0 58107 NULL
++disable_so_freq_ath5k_chan_pcal_info_58109 freq ath5k_chan_pcal_info 0 58109 NULL
++disable_so_d_ino_timer_qc_dqblk_58112 d_ino_timer qc_dqblk 0 58112 NULL nohasharray
++disable_so_hpi_sample_clock_get_source_index_fndecl_58112 hpi_sample_clock_get_source_index fndecl 1-0 58112 &disable_so_d_ino_timer_qc_dqblk_58112
++disable_so_src_addr_low_qlcnic_pex_dma_descriptor_58115 src_addr_low qlcnic_pex_dma_descriptor 0 58115 NULL
++disable_so_dvb_buf_tscnt_vardecl_cx88_dvb_c_58119 dvb_buf_tscnt vardecl_cx88-dvb.c 0 58119 NULL
++disable_so_aes_encrypt_packets_read_fndecl_58121 aes_encrypt_packets_read fndecl 0-3 58121 NULL
++disable_so_cq_dma_address_skd_device_58128 cq_dma_address skd_device 0 58128 NULL
++disable_so_mtrr_type_lookup_fixed_fndecl_58157 mtrr_type_lookup_fixed fndecl 1 58157 NULL
++disable_so_start_rmt_timer0_fndecl_58158 start_rmt_timer0 fndecl 2 58158 NULL nohasharray
++disable_so_pneigh_hash_fndecl_58158 pneigh_hash fndecl 2 58158 &disable_so_start_rmt_timer0_fndecl_58158
++disable_so_spi_rcvhdr_tailaddr_qib_base_info_58167 spi_rcvhdr_tailaddr qib_base_info 0 58167 NULL
++disable_so_high_bkey_58171 high bkey 0 58171 NULL
++disable_so_remove_journal_hash_fndecl_58179 remove_journal_hash fndecl 4 58179 NULL
++disable_so_snd_sgbuf_get_addr_fndecl_58188 snd_sgbuf_get_addr fndecl 0-2 58188 NULL
++disable_so_get_cpu_topology_fndecl_58189 get_cpu_topology fndecl 1 58189 NULL
++disable_so_mwl8k_cmd_update_mac_addr_fndecl_58193 mwl8k_cmd_update_mac_addr fndecl 0 58193 NULL
++disable_so_i_mode_inode_58204 i_mode inode 0 58204 NULL
++disable_so_qla4xxx_fw_uptime_show_fndecl_58212 qla4xxx_fw_uptime_show fndecl 0 58212 NULL
++disable_so_ct_xfitimer_irq_rearm_fndecl_58216 ct_xfitimer_irq_rearm fndecl 2 58216 NULL
++disable_so_r820t_set_analog_freq_fndecl_58223 r820t_set_analog_freq fndecl 0 58223 NULL
++disable_so_devlink_sound_timer_operations_58261 devlink sound_timer_operations 0 58261 NULL
++disable_so_lx_dsp_get_clock_frequency_fndecl_58263 lx_dsp_get_clock_frequency fndecl 0 58263 NULL
++disable_so_qdr_dfe_time_qib_chippport_specific_58265 qdr_dfe_time qib_chippport_specific 0 58265 NULL
++disable_so_boottime_set_fndecl_58270 boottime_set fndecl 0 58270 NULL
++disable_so_unhandled_signal_fndecl_58272 unhandled_signal fndecl 2 58272 NULL
++disable_so_nested_vmx_check_msr_switch_fndecl_58274 nested_vmx_check_msr_switch fndecl 2-3 58274 NULL
++disable_so_atomic_counters_read_fndecl_58280 atomic_counters_read fndecl 3-0 58280 NULL
++disable_so_read_delay_adis_data_58281 read_delay adis_data 0 58281 NULL
++disable_so_rsi_sdio_set_cmd52_arg_fndecl_58288 rsi_sdio_set_cmd52_arg fndecl 0-2-3-4-5 58288 NULL
++disable_so_ipv6_dev_get_saddr_fndecl_58290 ipv6_dev_get_saddr fndecl 0 58290 NULL
++disable_so_futex_atomic_cmpxchg_inatomic_fndecl_58294 futex_atomic_cmpxchg_inatomic fndecl 4 58294 NULL
++disable_so_gcm_hash_assoc_remain_done_fndecl_58296 gcm_hash_assoc_remain_done fndecl 2 58296 NULL
++disable_so_regmap_update_bits_async_fndecl_58298 regmap_update_bits_async fndecl 2-4-3-0 58298 NULL
++disable_so_dialwait_timer_isdn_net_local_s_58300 dialwait_timer isdn_net_local_s 0 58300 NULL
++disable_so_addr_mISDNchannel_58316 addr mISDNchannel 0 58316 NULL
++disable_so_incr_error_cpu_itimer_58327 incr_error cpu_itimer 0 58327 NULL
++disable_so_tai_offset_timekeeper_58331 tai_offset timekeeper 0 58331 NULL
++disable_so_mce_rdmsrl_fndecl_58332 mce_rdmsrl fndecl 0 58332 NULL
++disable_so_start_ecm_timer_fndecl_58359 start_ecm_timer fndecl 2 58359 NULL
++disable_so_autoconfig_read_divisor_id_fndecl_58367 autoconfig_read_divisor_id fndecl 0 58367 NULL
++disable_so_x86_get_mtrr_mem_range_fndecl_58379 x86_get_mtrr_mem_range fndecl 3-4-2-0 58379 NULL
++disable_so_mpc_ioapic_addr_fndecl_58384 mpc_ioapic_addr fndecl 0 58384 NULL
++disable_so_addr_type_ipv6_saddr_score_58395 addr_type ipv6_saddr_score 0 58395 NULL
++disable_so_setfreq_i_fndecl_58400 setfreq_i fndecl 2 58400 NULL
++disable_so_tcp_md5_hash_skb_data_fndecl_58401 tcp_md5_hash_skb_data fndecl 3 58401 NULL
++disable_so_aca_cstamp_ifacaddr6_58402 aca_cstamp ifacaddr6 0 58402 NULL
++disable_so_old_cpufreq_freqs_58403 old cpufreq_freqs 0 58403 NULL
++disable_so_jiffies_to_timeval_fndecl_58407 jiffies_to_timeval fndecl 1 58407 NULL
++disable_so_vnic_dev_set_mac_addr_fndecl_58408 vnic_dev_set_mac_addr fndecl 0 58408 NULL
++disable_so_sadb_lifetime_addtime_sadb_lifetime_58416 sadb_lifetime_addtime sadb_lifetime 0 58416 NULL
++disable_so_addr_smsc47m1_data_58419 addr smsc47m1_data 0 58419 NULL
++disable_so_clk_freq_g762_data_58420 clk_freq g762_data 0 58420 NULL
++disable_so_khugepaged_scan_sleep_millisecs_vardecl_huge_memory_c_58427 khugepaged_scan_sleep_millisecs vardecl_huge_memory.c 0 58427 NULL nohasharray
++disable_so_pairwise_cipher_suite_atmel_private_58427 pairwise_cipher_suite atmel_private 0 58427 &disable_so_khugepaged_scan_sleep_millisecs_vardecl_huge_memory_c_58427
++disable_so_max_addr_dmar_domain_58431 max_addr dmar_domain 0 58431 NULL
++disable_so_snd_ice1712_pro_internal_clock_default_info_fndecl_58437 snd_ice1712_pro_internal_clock_default_info fndecl 0 58437 NULL nohasharray
++disable_so_memory_add_physaddr_to_nid_fndecl_58437 memory_add_physaddr_to_nid fndecl 0-1 58437 &disable_so_snd_ice1712_pro_internal_clock_default_info_fndecl_58437
++disable_so_bnx2fc_cmd_timer_set_fndecl_58441 bnx2fc_cmd_timer_set fndecl 2 58441 NULL
++disable_so_do_settimeofday64_fndecl_58445 do_settimeofday64 fndecl 0 58445 NULL
++disable_so_uv_mmtimer_ioctl_fndecl_58452 uv_mmtimer_ioctl fndecl 0 58452 NULL
++disable_so_r61_val_fc2580_freq_regs_58455 r61_val fc2580_freq_regs 0 58455 NULL
++disable_so_epp_read_addr_parport_operations_58468 epp_read_addr parport_operations 0-3 58468 NULL
++disable_so_audio_config_hdmi_pixel_clock_fndecl_58471 audio_config_hdmi_pixel_clock fndecl 0 58471 NULL
++disable_so_bufaddr_epic_tx_desc_58478 bufaddr epic_tx_desc 0 58478 NULL nohasharray
++disable_so_qlcnic_sre_macaddr_change_fndecl_58478 qlcnic_sre_macaddr_change fndecl 0 58478 &disable_so_bufaddr_epic_tx_desc_58478
++disable_so_gtime_task_struct_58480 gtime task_struct 0 58480 NULL nohasharray
++disable_so_dma_addr_vpdma_buf_58480 dma_addr vpdma_buf 0 58480 &disable_so_gtime_task_struct_58480
++disable_so_div_sync_wait_dib7000m_state_58486 div_sync_wait dib7000m_state 0 58486 NULL
++disable_so_long_press_time_val_palmas_pwron_config_58497 long_press_time_val palmas_pwron_config 0 58497 NULL
++disable_so_primary_pci_bus_58515 primary pci_bus 0 58515 NULL
++disable_so_clk_frequency_imx_wm8962_data_58525 clk_frequency imx_wm8962_data 0 58525 NULL
++disable_so_ieee80211_if_fmt_min_discovery_timeout_fndecl_58528 ieee80211_if_fmt_min_discovery_timeout fndecl 0-3 58528 NULL
++disable_so_vidioc_s_frequency_fndecl_58543 vidioc_s_frequency fndecl 0 58543 NULL
++disable_so_bitstream_put_bits_fndecl_58552 bitstream_put_bits fndecl 0-3 58552 NULL
++disable_so_rbp_kvm_regs_58553 rbp kvm_regs 0 58553 NULL
++disable_so_dosr_aic32x4_rate_divs_58555 dosr aic32x4_rate_divs 0 58555 NULL
++disable_so_vscnprintf_fndecl_58558 vscnprintf fndecl 0-2 58558 NULL
++disable_so_static_address_open_fndecl_58572 static_address_open fndecl 0 58572 NULL
++disable_so_sysctl_rose_clear_request_timeout_vardecl_58580 sysctl_rose_clear_request_timeout vardecl 0 58580 NULL
++disable_so_di_uid_dinode_58581 di_uid dinode 0 58581 NULL
++disable_so_crypto_cts_decrypt_fndecl_58584 crypto_cts_decrypt fndecl 0-4 58584 NULL
++disable_so_igu_base_addr_bnx2x_58589 igu_base_addr bnx2x 0 58589 NULL
++disable_so_ifa_address_dn_ifaddr_58593 ifa_address dn_ifaddr 0 58593 NULL
++disable_so_p54_get_band_from_freq_fndecl_58594 p54_get_band_from_freq fndecl 1 58594 NULL
++disable_so_csk_ddp_setup_pgidx_cxgbi_device_58611 csk_ddp_setup_pgidx cxgbi_device 2 58611 NULL
++disable_so_ref_mod_btrfs_delayed_ref_node_58614 ref_mod btrfs_delayed_ref_node 0 58614 NULL
++disable_so_gr_remove_uid_fndecl_58619 gr_remove_uid fndecl 1 58619 NULL
++disable_so_i2c_address_fc0012_config_58626 i2c_address fc0012_config 0 58626 NULL nohasharray
++disable_so_ablkcipher_done_slow_fndecl_58626 ablkcipher_done_slow fndecl 0-2 58626 &disable_so_i2c_address_fc0012_config_58626
++disable_so_address_b43legacy_dmadesc32_58627 address b43legacy_dmadesc32 0 58627 NULL
++disable_so_di_atime_qnx6_inode_entry_58654 di_atime qnx6_inode_entry 0 58654 NULL nohasharray
++disable_so_hactive_lo_lvds_dvo_timing_58654 hactive_lo lvds_dvo_timing 0 58654 &disable_so_di_atime_qnx6_inode_entry_58654
++disable_so_ack_seq_tcp_skb_cb_58657 ack_seq tcp_skb_cb 0 58657 NULL
++disable_so_matroxfb_PLL_mavenclock_fndecl_58658 matroxfb_PLL_mavenclock fndecl 3-4 58658 NULL nohasharray
++disable_so_assert_exp_addr_sdpcm_shared_58658 assert_exp_addr sdpcm_shared 0 58658 &disable_so_matroxfb_PLL_mavenclock_fndecl_58658
++disable_so_pre_div_freq_tbl_58661 pre_div freq_tbl 0 58661 NULL
++disable_so_alsa_timer_init_fndecl_58667 alsa_timer_init fndecl 0 58667 NULL
++disable_so_alloc_cpumask_var_node_fndecl_58668 alloc_cpumask_var_node fndecl 2-3 58668 NULL
++disable_so_genwqe_debugfs_curr_dbg_uid2_open_fndecl_58673 genwqe_debugfs_curr_dbg_uid2_open fndecl 0 58673 NULL
++disable_so_pixclock_fb_videomode_58678 pixclock fb_videomode 0 58678 NULL
++disable_so_h_addr_reg_musb_qh_58681 h_addr_reg musb_qh 0 58681 NULL
++disable_so_timeout_cyclades_port_58683 timeout cyclades_port 0 58683 NULL
++disable_so_cxio_init_resource_fifo_random_fndecl_58684 cxio_init_resource_fifo_random fndecl 3 58684 NULL
++disable_so_dib8000_get_timeout_fndecl_58702 dib8000_get_timeout fndecl 2-0 58702 NULL nohasharray
++disable_so_xfs_btree_get_buf_block_fndecl_58702 xfs_btree_get_buf_block fndecl 0 58702 &disable_so_dib8000_get_timeout_fndecl_58702
++disable_so_apds9300_write_interrupt_config_fndecl_58703 apds9300_write_interrupt_config fndecl 0 58703 NULL
++disable_so_ath9k_hw_computetxtime_fndecl_58711 ath9k_hw_computetxtime fndecl 0-3-4-5 58711 NULL
++disable_so_bus_address_drm_buf_58716 bus_address drm_buf 0 58716 NULL
++disable_so_nr_irqs_vardecl_58723 nr_irqs vardecl 0 58723 NULL nohasharray
++disable_so_hashbin_find_next_fndecl_58723 hashbin_find_next fndecl 2 58723 &disable_so_nr_irqs_vardecl_58723
++disable_so_snd_usb_find_clock_selector_fndecl_58728 snd_usb_find_clock_selector fndecl 2 58728 NULL
++disable_so_radio_freq_bttv_58729 radio_freq bttv 0 58729 NULL
++disable_so_xc_set_signal_source_fndecl_58733 xc_set_signal_source fndecl 0 58733 NULL
++disable_so_doorbell_write_vardecl_pcc_cpufreq_c_58745 doorbell_write vardecl_pcc-cpufreq.c 0 58745 NULL
++disable_so_cpu_clock_counter_kfd_ioctl_get_clock_counters_args_58758 cpu_clock_counter kfd_ioctl_get_clock_counters_args 0 58758 NULL
++disable_so_btrfs_set_dev_replace_time_started_fndecl_58761 btrfs_set_dev_replace_time_started fndecl 3 58761 NULL
++disable_so_i_hash_mask_vardecl_inode_c_58762 i_hash_mask vardecl_inode.c 0 58762 NULL
++disable_so_gr_set_address_fndecl_58765 gr_set_address fndecl 2 58765 NULL
++disable_so_perfect_tx_time_minstrel_rate_58766 perfect_tx_time minstrel_rate 0 58766 NULL
++disable_so_min_ref_div_radeon_pll_58768 min_ref_div radeon_pll 0 58768 NULL
++disable_so_demod_address_ec100_config_58771 demod_address ec100_config 0 58771 NULL
++disable_so_phys_addr_vm_struct_58777 phys_addr vm_struct 0 58777 NULL
++disable_so_addr_ramfuc_reg_58780 addr ramfuc_reg 0 58780 NULL nohasharray
++disable_so_start_addr_p54_tx_info_58780 start_addr p54_tx_info 0 58780 &disable_so_addr_ramfuc_reg_58780
++disable_so_interrupt_mask_oxygen_58792 interrupt_mask oxygen 0 58792 NULL
++disable_so_time_to_tm_fndecl_58793 time_to_tm fndecl 2-1 58793 NULL
++disable_so_irq_pci_dev_58794 irq pci_dev 0 58794 NULL
++disable_so_reg_write_fndecl_58795 reg_write fndecl 0-2-3-4 58795 NULL
++disable_so_eof_uid_xfs_fs_eofblocks_58796 eof_uid xfs_fs_eofblocks 0 58796 NULL
++disable_so_s_dv_timings_v4l2_subdev_video_ops_58798 s_dv_timings v4l2_subdev_video_ops 0 58798 NULL
++disable_so_iscsit_do_crypto_hash_buf_fndecl_58805 iscsit_do_crypto_hash_buf fndecl 3-4 58805 NULL
++disable_so_ablkcipher_next_slow_fndecl_58809 ablkcipher_next_slow fndecl 3-4 58809 NULL
++disable_so_set_process_cpu_timer_fndecl_58820 set_process_cpu_timer fndecl 2 58820 NULL
++disable_so_btbcm_check_bdaddr_fndecl_58825 btbcm_check_bdaddr fndecl 0 58825 NULL
++disable_so_seek_timeout_vardecl_radio_si470x_common_c_58832 seek_timeout vardecl_radio-si470x-common.c 0 58832 NULL
++disable_so_rhashtable_rehash_attach_fndecl_58833 rhashtable_rehash_attach fndecl 0 58833 NULL
++disable_so_read_posix_clock_operations_58837 read posix_clock_operations 2 58837 NULL
++disable_so_atomic_open_inode_operations_58838 atomic_open inode_operations 4-5 58838 NULL nohasharray
++disable_so_vnic_dev_get_intr_coal_timer_max_fndecl_58838 vnic_dev_get_intr_coal_timer_max fndecl 0 58838 &disable_so_atomic_open_inode_operations_58838
++disable_so_timeout_cmd_bidir_58846 timeout cmd_bidir 0 58846 NULL
++disable_so_bank_mce_58847 bank mce 0 58847 NULL
++disable_so_hw_ptr_wrap_snd_pcm_runtime_58849 hw_ptr_wrap snd_pcm_runtime 0 58849 NULL
++disable_so_batadv_iv_ogm_fwd_send_time_fndecl_58851 batadv_iv_ogm_fwd_send_time fndecl 0 58851 NULL
++disable_so_lrg_buf_q_alloc_phy_addr_ql3_adapter_58856 lrg_buf_q_alloc_phy_addr ql3_adapter 0 58856 NULL
++disable_so_avc_get_hash_stats_fndecl_58860 avc_get_hash_stats fndecl 0 58860 NULL
++disable_so_do_utimes_fndecl_58870 do_utimes fndecl 0-1 58870 NULL
++disable_so_get_max_timeout_count_sdhci_ops_58875 get_max_timeout_count sdhci_ops 0 58875 NULL
++disable_so_sys_setuid16_fndecl_58881 sys_setuid16 fndecl 0-1 58881 NULL
++disable_so_pq_gpu_addr_kernel_queue_58891 pq_gpu_addr kernel_queue 0 58891 NULL
++disable_so_suspend_time_ipw_priv_58911 suspend_time ipw_priv 0 58911 NULL
++disable_so_Ti3026_calcclock_fndecl_58917 Ti3026_calcclock fndecl 2-3-0 58917 NULL
++disable_so_virtual_reg_addr_wl1251_58918 virtual_reg_addr wl1251 0 58918 NULL
++disable_so_timeout_read_fndecl_58936 timeout_read fndecl 3 58936 NULL
++disable_so_bank_base_playback_addr_snd_ymfpci_58940 bank_base_playback_addr snd_ymfpci 0 58940 NULL
++disable_so_sunkbd_interrupt_fndecl_58943 sunkbd_interrupt fndecl 2 58943 NULL
++disable_so_cpufreq_add_policy_cpu_fndecl_58948 cpufreq_add_policy_cpu fndecl 0-2 58948 NULL
++disable_so_vfreq___fb_timings_58967 vfreq __fb_timings 0 58967 NULL
++disable_so___fdget_fndecl_58975 __fdget fndecl 1 58975 NULL
++disable_so_log_addr_vhost_virtqueue_58983 log_addr vhost_virtqueue 0 58983 NULL
++disable_so_start_addr_bnx2_mips_fw_file_entry_58985 start_addr bnx2_mips_fw_file_entry 0 58985 NULL
++disable_so_wt_timeout_st21nfca_se_info_58988 wt_timeout st21nfca_se_info 0 58988 NULL
++disable_so_sg_physaddr_sg_map_node_59010 sg_physaddr sg_map_node 0 59010 NULL
++disable_so_hsync_pulse_width_hi_oaktrail_timing_info_59019 hsync_pulse_width_hi oaktrail_timing_info 0 59019 NULL
++disable_so_cx88_set_freq_fndecl_59030 cx88_set_freq fndecl 0 59030 NULL
++disable_so_daddr_ircomm_info_59034 daddr ircomm_info 0 59034 NULL
++disable_so_iscsit_ta_netif_timeout_fndecl_59038 iscsit_ta_netif_timeout fndecl 0 59038 NULL
++disable_so_frequency_stv090x_state_59044 frequency stv090x_state 0 59044 NULL
++disable_so_slave_address_cp2112_write_req_report_59049 slave_address cp2112_write_req_report 0 59049 NULL
++disable_so_ipath_hol_timeout_ms_vardecl_ipath_driver_c_59051 ipath_hol_timeout_ms vardecl_ipath_driver.c 0 59051 NULL
++disable_so_acpi_throttling_wrmsr_fndecl_59058 acpi_throttling_wrmsr fndecl 1 59058 NULL
++disable_so_acpi_cpufreq_init_fndecl_59061 acpi_cpufreq_init fndecl 0 59061 NULL
++disable_so_evtbd_addr_hi_host_cmd_ds_pcie_details_59067 evtbd_addr_hi host_cmd_ds_pcie_details 0 59067 NULL
++disable_so_addr_lo_dma_desc_59074 addr_lo dma_desc 0 59074 NULL
++disable_so_xen_mce_chrdev_read_fndecl_59076 xen_mce_chrdev_read fndecl 0 59076 NULL
++disable_so_addr_max8998_reg_dump_59086 addr max8998_reg_dump 0 59086 NULL
++disable_so_card_snd_timer_id_59096 card snd_timer_id 0 59096 NULL
++disable_so_addr_qib_sdma_txreq_59099 addr qib_sdma_txreq 0 59099 NULL
++disable_so_rx_coalescing_timeo_bnad_59109 rx_coalescing_timeo bnad 0 59109 NULL
++disable_so_dm_btree_del_fndecl_59119 dm_btree_del fndecl 0-2 59119 NULL
++disable_so_topology_change_timer_show_fndecl_59122 topology_change_timer_show fndecl 0 59122 NULL
++disable_so_ip_vs_addr_copy_fndecl_59129 ip_vs_addr_copy fndecl 1 59129 NULL
++disable_so_i2c_address_cxd2820r_config_59130 i2c_address cxd2820r_config 0 59130 NULL
++disable_so_panel_ref_divider_radeon_encoder_lvds_59134 panel_ref_divider radeon_encoder_lvds 0 59134 NULL nohasharray
++disable_so_clock_lvds_dvo_timing_59134 clock lvds_dvo_timing 0 59134 &disable_so_panel_ref_divider_radeon_encoder_lvds_59134
++disable_so_skcipher_setkey_fndecl_59135 skcipher_setkey fndecl 0-3 59135 NULL
++disable_so_pcxhr_clock_type_info_fndecl_59137 pcxhr_clock_type_info fndecl 0 59137 NULL
++disable_so_ccp_sha_setkey_fndecl_59138 ccp_sha_setkey fndecl 3 59138 NULL
++disable_so_xfs_btree_shift_recs_fndecl_59139 xfs_btree_shift_recs fndecl 4 59139 NULL
++disable_so_irq_set_chip_fndecl_59141 irq_set_chip fndecl 1 59141 NULL
++disable_so_prech_timeout_midi_parms_59145 prech_timeout midi_parms 0 59145 NULL
++disable_so_ecryptfs_message_wait_timeout_vardecl_59150 ecryptfs_message_wait_timeout vardecl 0 59150 NULL
++disable_so_max_time_dib3000mc_config_59165 max_time dib3000mc_config 0 59165 NULL
++disable_so_freq_snd_tea575x_59172 freq snd_tea575x 0 59172 NULL nohasharray
++disable_so_hactive_hblank_hi_detailed_pixel_timing_59172 hactive_hblank_hi detailed_pixel_timing 0 59172 &disable_so_freq_snd_tea575x_59172
++disable_so_last_port_bitmap_port_59176 last_port bitmap_port 0 59176 NULL
++disable_so_svm_cid_sockaddr_vm_59186 svm_cid sockaddr_vm 0 59186 NULL
++disable_so_divisor_tc_u_hnode_59196 divisor tc_u_hnode 0 59196 NULL
++disable_so_address_r8a66597_pipe_info_59198 address r8a66597_pipe_info 0 59198 NULL
++disable_so_val_addr_core0_nphy_rf_control_override_rev7_59213 val_addr_core0 nphy_rf_control_override_rev7 0 59213 NULL
++disable_so_hv_signal_event_fndecl_59215 hv_signal_event fndecl 0 59215 NULL
++disable_so_rv740_get_decoded_reference_divider_fndecl_59216 rv740_get_decoded_reference_divider fndecl 0-1 59216 NULL
++disable_so_ecb_aes_decrypt_fndecl_59224 ecb_aes_decrypt fndecl 0-4 59224 NULL
++disable_so_b44_interrupt_fndecl_59225 b44_interrupt fndecl 1 59225 NULL
++disable_so_cpufreq_sysfs_create_file_fndecl_59228 cpufreq_sysfs_create_file fndecl 0 59228 NULL
++disable_so_err_msr_regs_info_59233 err msr_regs_info 0 59233 NULL
++disable_so_hci_dev_sockaddr_hci_59237 hci_dev sockaddr_hci 0 59237 NULL
++disable_so_paddr_scq_info_59242 paddr scq_info 0 59242 NULL
++disable_so_saddr_dat_cx231xx_i2c_xfer_data_59247 saddr_dat cx231xx_i2c_xfer_data 0 59247 NULL
++disable_so_hash_cnt_ccp_aes_cmac_req_ctx_59249 hash_cnt ccp_aes_cmac_req_ctx 0 59249 NULL
++disable_so_read_addr___cache_59255 read_addr __cache 0 59255 NULL
++disable_so_freq_wmi_p2p_probe_response_cmd_59256 freq wmi_p2p_probe_response_cmd 0 59256 NULL
++disable_so_ack_seq_tcphdr_59257 ack_seq tcphdr 0 59257 NULL
++disable_so_i_uid_ext4_inode_59259 i_uid ext4_inode 0 59259 NULL
++disable_so_prandom_seed_fndecl_59265 prandom_seed fndecl 1 59265 NULL nohasharray
++disable_so_table1_addr_ipw_priv_59265 table1_addr ipw_priv 0 59265 &disable_so_prandom_seed_fndecl_59265
++disable_so_set_mtrr_ops_59267 set mtrr_ops 2-3 59267 NULL
++disable_so_signal_adm8211_tx_hdr_59276 signal adm8211_tx_hdr 0 59276 NULL
++disable_so_n_pll_div_59277 n pll_div 0 59277 NULL
++disable_so_burst_time_pie_vars_59278 burst_time pie_vars 0 59278 NULL
++disable_so_atp867x_get_active_clocks_shifted_fndecl_59292 atp867x_get_active_clocks_shifted fndecl 0-2 59292 NULL
++disable_so_hello_timer_show_fndecl_59304 hello_timer_show fndecl 0 59304 NULL
++disable_so_pc_timeout_ubifs_debug_info_59317 pc_timeout ubifs_debug_info 0 59317 NULL
++disable_so_reg_se_cache_ti_tscadc_dev_59318 reg_se_cache ti_tscadc_dev 0 59318 NULL
++disable_so_hv_init_clockevent_device_fndecl_59324 hv_init_clockevent_device fndecl 2 59324 NULL nohasharray
++disable_so_error_async_delayed_refs_59324 error async_delayed_refs 0 59324 &disable_so_hv_init_clockevent_device_fndecl_59324
++disable_so_query_dv_timings_v4l2_subdev_video_ops_59327 query_dv_timings v4l2_subdev_video_ops 0 59327 NULL
++disable_so_pwr_vec_read_time_b43_txpower_lo_control_59329 pwr_vec_read_time b43_txpower_lo_control 0 59329 NULL
++disable_so_proc_do_uuid_fndecl_59345 proc_do_uuid fndecl 0 59345 NULL
++disable_so_nilfs_segctor_last_seg_write_time_show_fndecl_59356 nilfs_segctor_last_seg_write_time_show fndecl 0 59356 NULL nohasharray
++disable_so_hpi_tuner_get_hd_radio_signal_quality_fndecl_59356 hpi_tuner_get_hd_radio_signal_quality fndecl 0-1 59356 &disable_so_nilfs_segctor_last_seg_write_time_show_fndecl_59356
++disable_so_usb_start_wait_urb_fndecl_59365 usb_start_wait_urb fndecl 0 59365 NULL
++disable_so_cpuid_xenpf_cpu_ol_59386 cpuid xenpf_cpu_ol 0 59386 NULL
++disable_so_mem_addr_ips_ha_59397 mem_addr ips_ha 0 59397 NULL
++disable_so_ip6addrlbl_fill_fndecl_59401 ip6addrlbl_fill fndecl 0-4-6 59401 NULL
++disable_so_cq_addr_lo_fcoe_kwqe_conn_offload2_59405 cq_addr_lo fcoe_kwqe_conn_offload2 0 59405 NULL
++disable_so_l_pll_freq_tbl_59406 l pll_freq_tbl 0 59406 NULL
++disable_so_sgid_idx_ocrdma_qp_59415 sgid_idx ocrdma_qp 0 59415 NULL
++disable_so_i2c_bit_add_numbered_bus_fndecl_59416 i2c_bit_add_numbered_bus fndecl 0 59416 NULL
++disable_so_trb_addr_lo_mv_u3d_ep_context_59424 trb_addr_lo mv_u3d_ep_context 0 59424 NULL
++disable_so_shash_compat_init_fndecl_59445 shash_compat_init fndecl 0 59445 NULL
++disable_so_currentfreq_cx24123_state_59448 currentfreq cx24123_state 0 59448 NULL
++disable_so_neigh_proc_dointvec_userhz_jiffies_fndecl_59453 neigh_proc_dointvec_userhz_jiffies fndecl 0 59453 NULL
++disable_so_panel_fb_divider_radeon_encoder_lvds_59458 panel_fb_divider radeon_encoder_lvds 0 59458 NULL nohasharray
++disable_so_sec_pvclock_wall_clock_59458 sec pvclock_wall_clock 0 59458 &disable_so_panel_fb_divider_radeon_encoder_lvds_59458
++disable_so_wl18xx_acx_host_if_cfg_bitmap_fndecl_59465 wl18xx_acx_host_if_cfg_bitmap fndecl 0 59465 NULL
++disable_so_addr_erase_info_59472 addr erase_info 0 59472 NULL nohasharray
++disable_so_ath9k_hw_addrxbuf_edma_fndecl_59472 ath9k_hw_addrxbuf_edma fndecl 2 59472 &disable_so_addr_erase_info_59472
++disable_so_hour_timestamp_59476 hour timestamp 0 59476 NULL
++disable_so_check_cpu_itimer_fndecl_59478 check_cpu_itimer fndecl 5-4 59478 NULL
++disable_so_flush_time_cache_detail_59492 flush_time cache_detail 0 59492 NULL
++disable_so_error0_timeout_si_sm_data_59495 error0_timeout si_sm_data 0 59495 NULL
++disable_so_sampling_freq_mixart_stream_param_desc_59502 sampling_freq mixart_stream_param_desc 0 59502 NULL
++disable_so_enc_addr_low_sata_start_req_59503 enc_addr_low sata_start_req 0 59503 NULL
++disable_so_hash_unix_address_59504 hash unix_address 0 59504 NULL nohasharray
++disable_so_ufs_get_inode_uid_fndecl_59504 ufs_get_inode_uid fndecl 0 59504 &disable_so_hash_unix_address_59504
++disable_so_demod_address_tda1002x_config_59516 demod_address tda1002x_config 0 59516 NULL
++disable_so_getaddr_dumpit_fndecl_59518 getaddr_dumpit fndecl 0 59518 NULL
++disable_so_tg3_interrupt_fndecl_59519 tg3_interrupt fndecl 1 59519 NULL
++disable_so_utime_task_struct_59526 utime task_struct 0 59526 NULL
++disable_so_decrypt_ablkcipher_tfm_59537 decrypt ablkcipher_tfm 0 59537 NULL
++disable_so_dma_addr_bnad_rx_vector_59551 dma_addr bnad_rx_vector 0 59551 NULL
++disable_so_vram_addr_viafb_par_59552 vram_addr viafb_par 0 59552 NULL
++disable_so_s00_img_ir_timing_regvals_59579 s00 img_ir_timing_regvals 0 59579 NULL
++disable_so_pci_swizzle_interrupt_pin_fndecl_59580 pci_swizzle_interrupt_pin fndecl 0-2 59580 NULL
++disable_so_iscsi_nacl_attrib_store_random_datain_seq_offsets_fndecl_59581 iscsi_nacl_attrib_store_random_datain_seq_offsets fndecl 0-3 59581 NULL
++disable_so_time_next_delayed_flow_fq_sched_data_59598 time_next_delayed_flow fq_sched_data 0 59598 NULL
++disable_so_signal_ttm_lock_59613 signal ttm_lock 0 59613 NULL
++disable_so_trap_timeout_qib_ibport_59624 trap_timeout qib_ibport 0 59624 NULL
++disable_so_hash_sendpage_fndecl_59633 hash_sendpage fndecl 0-3-4 59633 NULL
++disable_so_address_i2c_algo_dp_aux_data_59643 address i2c_algo_dp_aux_data 0 59643 NULL
++disable_so_baddr_pmcraid_hostrcb_59651 baddr pmcraid_hostrcb 0 59651 NULL
++disable_so_jiffies_drm_i915_error_request_59653 jiffies drm_i915_error_request 0 59653 NULL
++disable_so_niu_enable_interrupts_fndecl_59655 niu_enable_interrupts fndecl 0 59655 NULL nohasharray
++disable_so_addr_nvkm_gpuobj_59655 addr nvkm_gpuobj 0 59655 &disable_so_niu_enable_interrupts_fndecl_59655
++disable_so_irlap_start_backoff_timer_fndecl_59668 irlap_start_backoff_timer fndecl 2 59668 NULL
++disable_so_cs_chp_time_transaction_chp_stats_s_59671 cs_chp_time transaction_chp_stats_s 0 59671 NULL nohasharray
++disable_so_bufferinfo_array_phy_address_mixart_flowinfo_59671 bufferinfo_array_phy_address mixart_flowinfo 0 59671 &disable_so_cs_chp_time_transaction_chp_stats_s_59671
++disable_so_start_time_bfa_ioim_s_59693 start_time bfa_ioim_s 0 59693 NULL nohasharray
++disable_so_nilfs_btree_assign_p_fndecl_59693 nilfs_btree_assign_p fndecl 0-5 59693 &disable_so_start_time_bfa_ioim_s_59693
++disable_so_pid_pppol2tp_addr_59696 pid pppol2tp_addr 0 59696 NULL
++disable_so_paging32_walk_addr_nested_fndecl_59706 paging32_walk_addr_nested fndecl 3-4 59706 NULL
++disable_so_set_timer_tick_hw_59707 set_timer_tick hw 2 59707 NULL
++disable_so_irq_domain_alloc_irqs_parent_fndecl_59718 irq_domain_alloc_irqs_parent fndecl 2-3-0 59718 NULL
++disable_so_pcf8583_rtc_read_time_fndecl_59722 pcf8583_rtc_read_time fndecl 0 59722 NULL
++disable_so_i_rx_jiffies_rds_incoming_59727 i_rx_jiffies rds_incoming 0 59727 NULL
++disable_so_addr_pt1_buffer_59731 addr pt1_buffer 0 59731 NULL
++disable_so_od_cpufreq_governor_dbs_fndecl_59745 od_cpufreq_governor_dbs fndecl 0 59745 NULL
++disable_so_atmel_set_mac_address_fndecl_59747 atmel_set_mac_address fndecl 0 59747 NULL nohasharray
++disable_so_ioaddr_mxser_port_59747 ioaddr mxser_port 0 59747 &disable_so_atmel_set_mac_address_fndecl_59747
++disable_so_kvm_mtrr_check_gfn_range_consistency_fndecl_59759 kvm_mtrr_check_gfn_range_consistency fndecl 3-2 59759 NULL
++disable_so_mul_n_fndecl_59766 mul_n fndecl 4 59766 NULL
++disable_so_mlx4_bitmap_alloc_fndecl_59767 mlx4_bitmap_alloc fndecl 0 59767 NULL
++disable_so_device_num_atto_csmi_get_pci_bus_addr_59770 device_num atto_csmi_get_pci_bus_addr 0 59770 NULL
++disable_so_ksz_init_timer_fndecl_59771 ksz_init_timer fndecl 2 59771 NULL
++disable_so_signr_usbdevfs_disconnectsignal_59774 signr usbdevfs_disconnectsignal 0 59774 NULL
++disable_so_hash_netiface4_expire_fndecl_59777 hash_netiface4_expire fndecl 4 59777 NULL
++disable_so_timeoutValue_RAID_CONTEXT_59780 timeoutValue RAID_CONTEXT 0 59780 NULL
++disable_so_vsync_pulse_width_hi_oaktrail_timing_info_59785 vsync_pulse_width_hi oaktrail_timing_info 0 59785 NULL
++disable_so_macvtap16_to_cpu_fndecl_59790 macvtap16_to_cpu fndecl 0-2 59790 NULL
++disable_so_ns_ack_interrupt_fndecl_59791 ns_ack_interrupt fndecl 0 59791 NULL
++disable_so_btrfs_commit_inode_delayed_inode_fndecl_59792 btrfs_commit_inode_delayed_inode fndecl 0 59792 NULL
++disable_so_lg_addr_ns_dev_59797 lg_addr ns_dev 0 59797 NULL
++disable_so_nr_divisor_sym_chip_59803 nr_divisor sym_chip 0 59803 NULL
++disable_so_cpu_power_to_freq_fndecl_59806 cpu_power_to_freq fndecl 2 59806 NULL nohasharray
++disable_so_hash_sfq_slot_59806 hash sfq_slot 0 59806 &disable_so_cpu_power_to_freq_fndecl_59806
++disable_so_netvsc_set_mac_addr_fndecl_59822 netvsc_set_mac_addr fndecl 0 59822 NULL
++disable_so_kxcjk1013_get_startup_times_fndecl_59827 kxcjk1013_get_startup_times fndecl 0 59827 NULL nohasharray
++disable_so_bitmap_ipmac_do_test_fndecl_59827 bitmap_ipmac_do_test fndecl 3 59827 &disable_so_kxcjk1013_get_startup_times_fndecl_59827
++disable_so_decnet_time_wait_vardecl_59833 decnet_time_wait vardecl 0 59833 NULL
++disable_so_delay_multiplier_be_set_eqd_59834 delay_multiplier be_set_eqd 0 59834 NULL
++disable_so_asr_get_base_address_fndecl_59835 asr_get_base_address fndecl 0 59835 NULL
++disable_so_timeout_nouveau_fence_59837 timeout nouveau_fence 0 59837 NULL
++disable_so_m_pll_freq_tbl_59838 m pll_freq_tbl 0 59838 NULL
++disable_so_tea5764_get_freq_fndecl_59848 tea5764_get_freq fndecl 0 59848 NULL
++disable_so_seq_km_event_59849 seq km_event 0 59849 NULL nohasharray
++disable_so_dst_addr_lo_dmae_command_59849 dst_addr_lo dmae_command 0 59849 &disable_so_seq_km_event_59849
++disable_so_get_ep_by_addr_fndecl_59856 get_ep_by_addr fndecl 2 59856 NULL
++disable_so_txbd_addr_hi_host_cmd_ds_pcie_details_59885 txbd_addr_hi host_cmd_ds_pcie_details 0 59885 NULL
++disable_so_hash_v6_fndecl_59887 hash_v6 fndecl 0 59887 NULL
++disable_so_sst_module_runtime_restore_fndecl_59893 sst_module_runtime_restore fndecl 0 59893 NULL
++disable_so_pvclock_clocksource_read_fndecl_59895 pvclock_clocksource_read fndecl 0 59895 NULL nohasharray
++disable_so_hdspm_set_interrupt_interval_fndecl_59895 hdspm_set_interrupt_interval fndecl 2-0 59895 &disable_so_pvclock_clocksource_read_fndecl_59895
++disable_so_i2c_addr_r820t_config_59896 i2c_addr r820t_config 0 59896 NULL
++disable_so_i2400m_check_mac_addr_fndecl_59899 i2400m_check_mac_addr fndecl 0 59899 NULL
++disable_so_get_uuid_export_operations_59904 get_uuid export_operations 0 59904 NULL
++disable_so_last_tx_jiffies_fmdev_59908 last_tx_jiffies fmdev 0 59908 NULL nohasharray
++disable_so_delay_use_vardecl_usb_c_59908 delay_use vardecl_usb.c 0 59908 &disable_so_last_tx_jiffies_fmdev_59908
++disable_so_show_telclock_version_fndecl_59913 show_telclock_version fndecl 0 59913 NULL
++disable_so_flush_time_il3945_rs_sta_59914 flush_time il3945_rs_sta 0 59914 NULL
++disable_so_sip_sprintf_addr_fndecl_59915 sip_sprintf_addr fndecl 0 59915 NULL
++disable_so_lola_set_clock_index_fndecl_59921 lola_set_clock_index fndecl 0 59921 NULL nohasharray
++disable_so_addr_stv0900_reg_59921 addr stv0900_reg 0 59921 &disable_so_lola_set_clock_index_fndecl_59921
++disable_so_vsnprintf_fndecl_59932 vsnprintf fndecl 0-2 59932 NULL
++disable_so_nfs4_delay_fndecl_59938 nfs4_delay fndecl 0 59938 NULL nohasharray
++disable_so___bch_btree_map_nodes_fndecl_59938 __bch_btree_map_nodes fndecl 0 59938 &disable_so_nfs4_delay_fndecl_59938
++disable_so_freq_before_jump_fm_rx_59940 freq_before_jump fm_rx 0 59940 NULL
++disable_so_vt8623_set_pixclock_fndecl_59944 vt8623_set_pixclock fndecl 2 59944 NULL
++disable_so_seq_ieee80211_fragment_entry_59945 seq ieee80211_fragment_entry 0 59945 NULL
++disable_so_map_nr_blk_mq_bitmap_tags_59947 map_nr blk_mq_bitmap_tags 0 59947 NULL nohasharray
++disable_so_r5_hash_fndecl_59947 r5_hash fndecl 2 59947 &disable_so_map_nr_blk_mq_bitmap_tags_59947
++disable_so_s_first_error_time_ext4_super_block_59952 s_first_error_time ext4_super_block 0 59952 NULL
++disable_so_crypto_ablkcipher_decrypt_fndecl_59964 crypto_ablkcipher_decrypt fndecl 0 59964 NULL
++disable_so_i_gid_write_fndecl_59978 i_gid_write fndecl 2 59978 NULL
++disable_so_dst_nents_qce_cipher_reqctx_59989 dst_nents qce_cipher_reqctx 0 59989 NULL
++disable_so_addr_nvme_passthru_cmd_59990 addr nvme_passthru_cmd 0 59990 NULL
++disable_so_vsprintf_fndecl_59994 vsprintf fndecl 0 59994 NULL
++disable_so_desc_daddr_ath5k_hw_59995 desc_daddr ath5k_hw 0 59995 NULL
++disable_so_n_pll_freq_tbl_60004 n pll_freq_tbl 0 60004 NULL
++disable_so_ufshcd_parse_clock_info_fndecl_60006 ufshcd_parse_clock_info fndecl 0 60006 NULL
++disable_so_max_timer_ms_bcm47xx_wdt_60015 max_timer_ms bcm47xx_wdt 0 60015 NULL
++disable_so_add_monitor_signal_fndecl_60038 add_monitor_signal fndecl 4 60038 NULL
++disable_so_check_matrix_bitmap_fndecl_60054 check_matrix_bitmap fndecl 0-2-3-4 60054 NULL
++disable_so_bitmap_file_clear_bit_fndecl_60061 bitmap_file_clear_bit fndecl 2 60061 NULL nohasharray
++disable_so_nvkm_ramht_hash_fndecl_60061 nvkm_ramht_hash fndecl 0-2-3 60061 &disable_so_bitmap_file_clear_bit_fndecl_60061
++disable_so_radeon_ib_schedule_fndecl_60075 radeon_ib_schedule fndecl 0 60075 NULL
++disable_so_sleep_cookie_addr_hi_host_cmd_ds_pcie_details_60083 sleep_cookie_addr_hi host_cmd_ds_pcie_details 0 60083 NULL
++disable_so_crypto_cbc_decrypt_fndecl_60087 crypto_cbc_decrypt fndecl 0-4 60087 NULL
++disable_so_calc_mode_timings_fndecl_60088 calc_mode_timings fndecl 1-2-3 60088 NULL
++disable_so_jiffies_till_first_fqs_vardecl_tree_c_60090 jiffies_till_first_fqs vardecl_tree.c 0 60090 NULL
++disable_so_reorder_timeout_l2tp_session_60091 reorder_timeout l2tp_session 0 60091 NULL
++disable_so_ieee80211_get_noa_absent_time_fndecl_60093 ieee80211_get_noa_absent_time fndecl 0-2 60093 NULL
++disable_so_vsync_offset_lo_oaktrail_timing_info_60096 vsync_offset_lo oaktrail_timing_info 0 60096 NULL
++disable_so_daddr_flowidn_60098 daddr flowidn 0 60098 NULL
++disable_so_mwifiex_set_mac_address_fndecl_60110 mwifiex_set_mac_address fndecl 0 60110 NULL
++disable_so_xgbe_get_tstamp_time_fndecl_60114 xgbe_get_tstamp_time fndecl 0 60114 NULL
++disable_so_end_seq_bictcp_60116 end_seq bictcp 0 60116 NULL
++disable_so_rv770_calculate_fractional_mpll_feedback_divider_fndecl_60119 rv770_calculate_fractional_mpll_feedback_divider fndecl 1-2 60119 NULL nohasharray
++disable_so_set_msr_x86_emulate_ops_60119 set_msr x86_emulate_ops 2-3 60119 &disable_so_rv770_calculate_fractional_mpll_feedback_divider_fndecl_60119
++disable_so_radeon_vm_bo_set_addr_fndecl_60122 radeon_vm_bo_set_addr fndecl 3-0 60122 NULL
++disable_so_reload_jiffies_iwl_priv_60123 reload_jiffies iwl_priv 0 60123 NULL
++disable_so_shdntimer_max17042_config_data_60124 shdntimer max17042_config_data 0 60124 NULL nohasharray
++disable_so_timestamp_lec_arp_table_60124 timestamp lec_arp_table 0 60124 &disable_so_shdntimer_max17042_config_data_60124
++disable_so_reg_duty_cycle_pm860x_backlight_data_60125 reg_duty_cycle pm860x_backlight_data 0 60125 NULL
++disable_so_buff_phy_addr_amd8111e_tx_dr_60126 buff_phy_addr amd8111e_tx_dr 0 60126 NULL
++disable_so_nilfs_btree_seek_key_fndecl_60131 nilfs_btree_seek_key fndecl 0-2 60131 NULL
++disable_so_local_addr_mm_dma_desc_60141 local_addr mm_dma_desc 0 60141 NULL
++disable_so_cmd_attr_tgid_fndecl_60158 cmd_attr_tgid fndecl 0 60158 NULL
++disable_so_read_addr_qla8044_minidump_entry_queue_60166 read_addr qla8044_minidump_entry_queue 0 60166 NULL
++disable_so_snd_soc_runtime_deactivate_fndecl_60170 snd_soc_runtime_deactivate fndecl 2 60170 NULL
++disable_so_addr_lo_tg3_tx_buffer_desc_60173 addr_lo tg3_tx_buffer_desc 0 60173 NULL
++disable_so_addr_c4iw_mm_entry_60182 addr c4iw_mm_entry 0 60182 NULL
++disable_so_gid_index_ib_user_mad_hdr_60188 gid_index ib_user_mad_hdr 0 60188 NULL
++disable_so_div_vnic_intr_coal_timer_info_60192 div vnic_intr_coal_timer_info 0 60192 NULL
++disable_so_udf_bitmap_prealloc_blocks_fndecl_60195 udf_bitmap_prealloc_blocks fndecl 0-4-5 60195 NULL
++disable_so_i_atime_nsec_ocfs2_dinode_60196 i_atime_nsec ocfs2_dinode 0 60196 NULL
++disable_so_addr_buffer3_cmd_desc_type0_60201 addr_buffer3 cmd_desc_type0 0 60201 NULL
++disable_so_mac_time_rtl8187b_rx_hdr_60213 mac_time rtl8187b_rx_hdr 0 60213 NULL
++disable_so_regmap_read_fndecl_60217 regmap_read fndecl 0-2 60217 NULL
++disable_so_oprofile_time_slice_vardecl_60220 oprofile_time_slice vardecl 0 60220 NULL
++disable_so_monotonic_time_coarse_nsec_vsyscall_gtod_data_60224 monotonic_time_coarse_nsec vsyscall_gtod_data 0 60224 NULL
++disable_so_toshiba_usb_sleep_music_get_fndecl_60227 toshiba_usb_sleep_music_get fndecl 0 60227 NULL
++disable_so_msr_read_fndecl_60228 msr_read fndecl 0 60228 NULL
++disable_so_via_set_primary_address_fndecl_60230 via_set_primary_address fndecl 1 60230 NULL
++disable_so_hpfs_stop_cycles_fndecl_60236 hpfs_stop_cycles fndecl 2 60236 NULL
++disable_so_cpumask_any_but_fndecl_60246 cpumask_any_but fndecl 0-2 60246 NULL
++disable_so_hash_cnt_ccp_sha_req_ctx_60248 hash_cnt ccp_sha_req_ctx 0 60248 NULL
++disable_so_atime_nsec_p9_iattr_dotl_60254 atime_nsec p9_iattr_dotl 0 60254 NULL
++disable_so___ilog2_u32_fndecl_60257 __ilog2_u32 fndecl 0-1 60257 NULL
++disable_so_it_clock_k_itimer_60276 it_clock k_itimer 0 60276 NULL
++disable_so_stats_addr_vfpf_init_tlv_60282 stats_addr vfpf_init_tlv 0 60282 NULL
++disable_so_zd1201_set_freq_fndecl_60293 zd1201_set_freq fndecl 0 60293 NULL
++disable_so_freq_sc18is602_60297 freq sc18is602 0 60297 NULL
++disable_so_imr_multiaddr_ip_mreq_source_60300 imr_multiaddr ip_mreq_source 0 60300 NULL
++disable_so_skbaddr_ath5k_buf_60306 skbaddr ath5k_buf 0 60306 NULL
++disable_so_bus_addr_sg_el_60307 bus_addr sg_el 0 60307 NULL
++disable_so_iwl_add_beacon_time_fndecl_60324 iwl_add_beacon_time fndecl 0-4-3-2 60324 NULL
++disable_so_regcache_lzo_sync_fndecl_60330 regcache_lzo_sync fndecl 0 60330 NULL
++disable_so___mlx4_find_zone_by_uid_unique_fndecl_60331 __mlx4_find_zone_by_uid_unique fndecl 2 60331 NULL nohasharray
++disable_so_ucma_query_addr_fndecl_60331 ucma_query_addr fndecl 3 60331 &disable_so___mlx4_find_zone_by_uid_unique_fndecl_60331
++disable_so_nilfs_btree_commit_insert_fndecl_60335 nilfs_btree_commit_insert fndecl 4 60335 NULL
++disable_so_rbtree_open_fndecl_60337 rbtree_open fndecl 0 60337 NULL
++disable_so_addr_off_bfa_phy_s_60341 addr_off bfa_phy_s 0 60341 NULL
++disable_so_rj54n1_set_clock_fndecl_60342 rj54n1_set_clock fndecl 0 60342 NULL nohasharray
++disable_so___udelay_fndecl_60342 __udelay fndecl 1 60342 &disable_so_rj54n1_set_clock_fndecl_60342
++disable_so_sysctl_llc2_p_timeout_vardecl_60348 sysctl_llc2_p_timeout vardecl 0 60348 NULL
++disable_so_dwc3_ep0_set_address_fndecl_60355 dwc3_ep0_set_address fndecl 0 60355 NULL
++disable_so_nla_put_msecs_fndecl_60358 nla_put_msecs fndecl 0 60358 NULL
++disable_so_div_factor_fndecl_60362 div_factor fndecl 0-1 60362 NULL
++disable_so_sense_busaddr_scb_60364 sense_busaddr scb 0 60364 NULL
++disable_so_ufshcd_pltfrm_runtime_resume_fndecl_60367 ufshcd_pltfrm_runtime_resume fndecl 0 60367 NULL
++disable_so_pixel_clock_vbe_crtc_ib_60373 pixel_clock vbe_crtc_ib 0 60373 NULL
++disable_so_erst_timedout_fndecl_60378 erst_timedout fndecl 2 60378 NULL
++disable_so_crypto_ecb_encrypt_fndecl_60388 crypto_ecb_encrypt fndecl 0-4 60388 NULL
++disable_so_rtsx_resv_buf_addr_rtsx_pcr_60399 rtsx_resv_buf_addr rtsx_pcr 0 60399 NULL
++disable_so_i2c_address_mc44s803_config_60409 i2c_address mc44s803_config 0 60409 NULL
++disable_so_ath_hw_get_listen_time_fndecl_60410 ath_hw_get_listen_time fndecl 0 60410 NULL
++disable_so_rpc_sockaddr2uaddr_fndecl_60418 rpc_sockaddr2uaddr fndecl 2 60418 NULL
++disable_so_sys_setresgid16_fndecl_60419 sys_setresgid16 fndecl 0-1-2-3 60419 NULL
++disable_so_mc_addr_inet_sock_60425 mc_addr inet_sock 0 60425 NULL
++disable_so_txqueue_timer_velocity_opt_60430 txqueue_timer velocity_opt 0 60430 NULL
++disable_so_set_mtrr_from_inactive_cpu_fndecl_60437 set_mtrr_from_inactive_cpu fndecl 2-3 60437 NULL
++disable_so_i915_interrupt_info_fndecl_60441 i915_interrupt_info fndecl 0 60441 NULL
++disable_so_bmiss_timeout_ath_beacon_config_60451 bmiss_timeout ath_beacon_config 0 60451 NULL
++disable_so_callback_addr_req_60459 callback addr_req 1 60459 NULL
++disable_so_vmx_compute_tsc_offset_fndecl_60461 vmx_compute_tsc_offset fndecl 0-2 60461 NULL
++disable_so_ncpus_uv_rtc_timer_head_60462 ncpus uv_rtc_timer_head 0 60462 NULL
++disable_so_passed_seqno_drm_vmw_fence_signaled_arg_60464 passed_seqno drm_vmw_fence_signaled_arg 0 60464 NULL
++disable_so_send_signal_fndecl_60468 send_signal fndecl 0-1 60468 NULL
++disable_so_isl1208_rtc_read_time_fndecl_60479 isl1208_rtc_read_time fndecl 0 60479 NULL
++disable_so_cbs_dma_addr_nic_60500 cbs_dma_addr nic 0 60500 NULL
++disable_so_mpihelp_divrem_fndecl_60501 mpihelp_divrem fndecl 6-0-4 60501 NULL
++disable_so_branch_address_descriptor_60510 branch_address descriptor 0 60510 NULL
++disable_so_hash_lock_index_stripe_head_60512 hash_lock_index stripe_head 0 60512 NULL
++disable_so_brl_timeout_vardecl_keyboard_c_60524 brl_timeout vardecl_keyboard.c 0 60524 NULL
++disable_so_chip_addr_dsp_image_seg_60530 chip_addr dsp_image_seg 0 60530 NULL
++disable_so_test_hash_cycles_fndecl_60535 test_hash_cycles fndecl 4 60535 NULL
++disable_so_dma_addr_srr_60537 dma_addr srr 0 60537 NULL
++disable_so_spinfo_assoc_id_sctp_paddrinfo_60539 spinfo_assoc_id sctp_paddrinfo 0 60539 NULL
++disable_so_nvkm_timer_wait_eq_fndecl_60542 nvkm_timer_wait_eq fndecl 3-4-5 60542 NULL
++disable_so_eq_get_mtt_addr_fndecl_60544 eq_get_mtt_addr fndecl 0 60544 NULL
++disable_so_cq_page_table_addr_lo_iscsi_kwqe_conn_offload1_60567 cq_page_table_addr_lo iscsi_kwqe_conn_offload1 0 60567 NULL
++disable_so_tk_timeout_rpc_task_60572 tk_timeout rpc_task 0 60572 NULL
++disable_so_cn_printf_fndecl_60575 cn_printf fndecl 0 60575 NULL nohasharray
++disable_so_sgl_addr_hi_fw_flash_Update_req_60575 sgl_addr_hi fw_flash_Update_req 0 60575 &disable_so_cn_printf_fndecl_60575 nohasharray
++disable_so_sysfs_idx_addr_vardecl_nes_c_60575 sysfs_idx_addr vardecl_nes.c 0 60575 &disable_so_sgl_addr_hi_fw_flash_Update_req_60575
++disable_so___xfs_btree_split_fndecl_60576 __xfs_btree_split fndecl 0 60576 NULL
++disable_so_lun_atto_csmi_get_dev_addr_60579 lun atto_csmi_get_dev_addr 0 60579 NULL
++disable_so_xfs_btree_block_change_owner_fndecl_60599 xfs_btree_block_change_owner fndecl 0-3 60599 NULL
++disable_so_k_wm8978_pll_div_60623 k wm8978_pll_div 0 60623 NULL
++disable_so_saved_clock_vardecl_cr_pll_c_60624 saved_clock vardecl_cr_pll.c 0 60624 NULL
++disable_so_mapaddr_tx_ring_info_60630 mapaddr tx_ring_info 0 60630 NULL nohasharray
++disable_so_derot_freq_stb0899_internal_60630 derot_freq stb0899_internal 0 60630 &disable_so_mapaddr_tx_ring_info_60630
++disable_so_edx_user_regs_struct32_60635 edx user_regs_struct32 0 60635 NULL
++disable_so_cgtime_signal_struct_60641 cgtime signal_struct 0 60641 NULL
++disable_so_ide_timing_compute_fndecl_60642 ide_timing_compute fndecl 2 60642 NULL
++disable_so_btree_read_extent_buffer_pages_fndecl_60645 btree_read_extent_buffer_pages fndecl 0-4 60645 NULL
++disable_so_sys_sched_getscheduler_fndecl_60650 sys_sched_getscheduler fndecl 1-0 60650 NULL
++disable_so_hpi_compander_set_decay_time_constant_fndecl_60651 hpi_compander_set_decay_time_constant fndecl 1-0 60651 NULL
++disable_so_uwb_rc_addr_get_fndecl_60653 uwb_rc_addr_get fndecl 0 60653 NULL
++disable_so_max_chan_time_wsm_scan_ch_60669 max_chan_time wsm_scan_ch 0 60669 NULL
++disable_so_ci_otg_fsm_del_timer_fndecl_60676 ci_otg_fsm_del_timer fndecl 2 60676 NULL
++disable_so_clockdelay_nt_vardecl_hfcmulti_c_60678 clockdelay_nt vardecl_hfcmulti.c 0 60678 NULL
++disable_so_hsync_off_lo_lvds_dvo_timing_60681 hsync_off_lo lvds_dvo_timing 0 60681 NULL
++disable_so_leaf_head_hfs_btree_60686 leaf_head hfs_btree 0 60686 NULL
++disable_so_signal_user32_60695 signal user32 0 60695 NULL
++disable_so_timeout_netns_frags_60708 timeout netns_frags 0 60708 NULL
++disable_so_time_to_send_netem_skb_cb_60711 time_to_send netem_skb_cb 0 60711 NULL nohasharray
++disable_so_ref_div_atom_clock_dividers_60711 ref_div atom_clock_dividers 0 60711 &disable_so_time_to_send_netem_skb_cb_60711
++disable_so_dev_sof_uvc_clock_sample_60716 dev_sof uvc_clock_sample 0 60716 NULL
++disable_so_addr_reg_musb_qh_60718 addr_reg musb_qh 0 60718 NULL nohasharray
++enable_so_acpi_ex_do_math_op_fndecl_60718 acpi_ex_do_math_op fndecl 0-3-2 60718 &disable_so_addr_reg_musb_qh_60718
++disable_so_reg_clock_sx150x_789_pri_60721 reg_clock sx150x_789_pri 0 60721 NULL
++disable_so___parse_nl_addr_fndecl_60734 __parse_nl_addr fndecl 0 60734 NULL
++disable_so_frequency_zl10036_state_60737 frequency zl10036_state 0 60737 NULL
++disable_so_acpi_sleep_state_supported_fndecl_60743 acpi_sleep_state_supported fndecl 1 60743 NULL
++disable_so_put_dec_full8_fndecl_60744 put_dec_full8 fndecl 2 60744 NULL
++disable_so_atkbd_interrupt_fndecl_60746 atkbd_interrupt fndecl 2 60746 NULL
++disable_so_signal_station_info_60755 signal station_info 0 60755 NULL
++disable_so_r15_kvm_regs_60757 r15 kvm_regs 0 60757 NULL
++disable_so_tx_dma_addr_sh_msiof_spi_priv_60773 tx_dma_addr sh_msiof_spi_priv 0 60773 NULL
++disable_so_handler_acpi_object_addr_handler_60775 handler acpi_object_addr_handler 0-2-3 60775 NULL nohasharray
++disable_so_sctp_bind_addr_init_fndecl_60775 sctp_bind_addr_init fndecl 2 60775 &disable_so_handler_acpi_object_addr_handler_60775
++disable_so_hfsplus_calc_btree_clump_size_fndecl_60777 hfsplus_calc_btree_clump_size fndecl 0-1-2-3 60777 NULL
++disable_so_xc2028_set_analog_freq_fndecl_60787 xc2028_set_analog_freq fndecl 0 60787 NULL
++disable_so_reg_w_val_fndecl_60792 reg_w_val fndecl 2-3 60792 NULL
++disable_so_mlx4_mtt_addr_fndecl_60804 mlx4_mtt_addr fndecl 0 60804 NULL
++disable_so_kstrtos16_fndecl_60808 kstrtos16 fndecl 0 60808 NULL
++disable_so_demod_address_bcm3510_config_60810 demod_address bcm3510_config 0 60810 NULL
++disable_so_xt_addr_cmp_fndecl_60817 xt_addr_cmp fndecl 4 60817 NULL
++disable_so_kstrtou16_fndecl_60828 kstrtou16 fndecl 0 60828 NULL
++disable_so_crypto_cbc_decrypt_segment_fndecl_60829 crypto_cbc_decrypt_segment fndecl 0 60829 NULL
++disable_so_cs_last_clocksource_60836 cs_last clocksource 0 60836 NULL
++disable_so_decrypt_blkcipher_alg_60844 decrypt blkcipher_alg 4 60844 NULL
++disable_so_demod_address_drxd_config_60850 demod_address drxd_config 0 60850 NULL
++disable_so_rs_bound_addr_rds_sock_60851 rs_bound_addr rds_sock 0 60851 NULL
++disable_so_pcxhr_sub_set_clock_fndecl_60853 pcxhr_sub_set_clock fndecl 2-0 60853 NULL nohasharray
++disable_so_inet6_dump_ifmcaddr_fndecl_60853 inet6_dump_ifmcaddr fndecl 0 60853 &disable_so_pcxhr_sub_set_clock_fndecl_60853
++disable_so_mpll_ref_div_rv6xx_power_info_60865 mpll_ref_div rv6xx_power_info 0 60865 NULL
++disable_so_clk_mul_sdhci_host_60866 clk_mul sdhci_host 0 60866 NULL
++disable_so_cryptd_hash_finup_enqueue_fndecl_60873 cryptd_hash_finup_enqueue fndecl 0 60873 NULL
++disable_so_pc87360_autodiv_fndecl_60877 pc87360_autodiv fndecl 2 60877 NULL nohasharray
++disable_so_si_get_gpu_clock_counter_fndecl_60877 si_get_gpu_clock_counter fndecl 0 60877 &disable_so_pc87360_autodiv_fndecl_60877
++disable_so_dma_addr___vxge_hw_blockpool_entry_60895 dma_addr __vxge_hw_blockpool_entry 0 60895 NULL
++disable_so_write32_ssb_bus_ops_60906 write32 ssb_bus_ops 3 60906 NULL
++disable_so_bfa_fcs_lport_ns_process_gidft_pids_fndecl_60914 bfa_fcs_lport_ns_process_gidft_pids fndecl 3 60914 NULL
++disable_so_hash_walk_next_fndecl_60955 hash_walk_next fndecl 0 60955 NULL
++disable_so_tm_min_rtc_time_60965 tm_min rtc_time 0 60965 NULL
++disable_so_m48t86_rtc_read_time_fndecl_60966 m48t86_rtc_read_time fndecl 0 60966 NULL
++disable_so_alloc_gen8_temp_bitmaps_fndecl_60972 alloc_gen8_temp_bitmaps fndecl 0 60972 NULL
++disable_so_max_dwell_time_delta_conf_sched_scan_settings_60976 max_dwell_time_delta conf_sched_scan_settings 0 60976 NULL
++disable_so_src_addr_filter_ipv4_5tuple_60977 src_addr filter_ipv4_5tuple 0 60977 NULL nohasharray
++disable_so_intel_freq_opcode_fndecl_60977 intel_freq_opcode fndecl 0-2 60977 &disable_so_src_addr_filter_ipv4_5tuple_60977
++disable_so_btree_pages_cache_set_60979 btree_pages cache_set 0 60979 NULL
++disable_so_pop_time_snd_soc_card_60984 pop_time snd_soc_card 0 60984 NULL
++disable_so_v4l2_i2c_subdev_addr_fndecl_60994 v4l2_i2c_subdev_addr fndecl 0 60994 NULL
++disable_so_find_and_set_predefined_video_timings_fndecl_61004 find_and_set_predefined_video_timings fndecl 2 61004 NULL
++disable_so_bus_ipr_res_addr_61007 bus ipr_res_addr 0 61007 NULL
++disable_so_t2timer_lapb_parms_struct_61011 t2timer lapb_parms_struct 0 61011 NULL nohasharray
++disable_so_size_log2_t3_cq_61011 size_log2 t3_cq 0 61011 &disable_so_t2timer_lapb_parms_struct_61011
++disable_so_virtual_apic_page_addr_vmcs12_61020 virtual_apic_page_addr vmcs12 0 61020 NULL
++disable_so_show_sas_end_dev_I_T_nexus_loss_timeout_fndecl_61033 show_sas_end_dev_I_T_nexus_loss_timeout fndecl 0 61033 NULL
++disable_so_first_time_batadv_tt_roam_node_61055 first_time batadv_tt_roam_node 0 61055 NULL
++disable_so_blank_time_evergreen_wm_params_61058 blank_time evergreen_wm_params 0 61058 NULL
++disable_so_crypto_hash_walk_done_fndecl_61061 crypto_hash_walk_done fndecl 0-2 61061 NULL
++disable_so_qi_rtbtimelimit_xfs_quotainfo_61067 qi_rtbtimelimit xfs_quotainfo 0 61067 NULL
++disable_so_dma_addr_freelQ_61069 dma_addr freelQ 0 61069 NULL
++disable_so_gateway_value_addr_wil_fw_record_gateway_data_61071 gateway_value_addr wil_fw_record_gateway_data 0 61071 NULL
++disable_so_ndisc_opt_addr_space_fndecl_61076 ndisc_opt_addr_space fndecl 0 61076 NULL nohasharray
++disable_so_pcan_usb_fd_set_bittiming_fast_fndecl_61076 pcan_usb_fd_set_bittiming_fast fndecl 0 61076 &disable_so_ndisc_opt_addr_space_fndecl_61076
++disable_so_wl1251_translate_reg_addr_fndecl_61077 wl1251_translate_reg_addr fndecl 0-2 61077 NULL
++disable_so_irq_set_handler_data_fndecl_61096 irq_set_handler_data fndecl 1 61096 NULL nohasharray
++disable_so_be64_add_cpu_fndecl_61096 be64_add_cpu fndecl 2 61096 &disable_so_irq_set_handler_data_fndecl_61096
++disable_so_find_first_extent_bit_state_fndecl_61098 find_first_extent_bit_state fndecl 2 61098 NULL
++disable_so_confirm_addr_indev_fndecl_61106 confirm_addr_indev fndecl 0 61106 NULL
++disable_so_ci_otg_init_timers_fndecl_61122 ci_otg_init_timers fndecl 0 61122 NULL
++disable_so_rangehigh_v4l2_frequency_band_61125 rangehigh v4l2_frequency_band 0 61125 NULL
++disable_so_rdb_PartitionList_RigidDiskBlock_61126 rdb_PartitionList RigidDiskBlock 0 61126 NULL
++disable_so_qat_alg_ablkcipher_setkey_fndecl_61127 qat_alg_ablkcipher_setkey fndecl 3 61127 NULL
++disable_so_ath6kl_cfg80211_deepsleep_suspend_fndecl_61128 ath6kl_cfg80211_deepsleep_suspend fndecl 0 61128 NULL
++disable_so_phase_seg2_can_bittiming_61132 phase_seg2 can_bittiming 0 61132 NULL
++disable_so_mii_address_fndecl_61157 mii_address fndecl 1-2 61157 NULL
++disable_so_dent_key_init_hash_fndecl_61159 dent_key_init_hash fndecl 3-4 61159 NULL
++disable_so__drbd_send_uuids_fndecl_61164 _drbd_send_uuids fndecl 0 61164 NULL
++disable_so_addr_gf100_gr_mmio_61167 addr gf100_gr_mmio 0 61167 NULL
++disable_so_xfrm_dst_hash_fndecl_61174 xfrm_dst_hash fndecl 0-4-5 61174 NULL
++disable_so_i2c_smbus_read_i2c_block_data_fndecl_61176 i2c_smbus_read_i2c_block_data fndecl 0-2-3 61176 NULL
++disable_so_mthca_HW2SW_SRQ_fndecl_61199 mthca_HW2SW_SRQ fndecl 0-3 61199 NULL
++disable_so_bit_fields_len_ocrdma_srq_61200 bit_fields_len ocrdma_srq 0 61200 NULL
++disable_so_cpuidle_add_device_sysfs_fndecl_61204 cpuidle_add_device_sysfs fndecl 0 61204 NULL
++disable_so_avail_snd_rawmidi_runtime_61205 avail snd_rawmidi_runtime 0 61205 NULL
++disable_so_fib_info_hashfn_fndecl_61213 fib_info_hashfn fndecl 0 61213 NULL
++disable_so_zd_usb_iowrite16v_async_end_fndecl_61215 zd_usb_iowrite16v_async_end fndecl 0 61215 NULL nohasharray
++disable_so_shash_ahash_mcryptd_update_fndecl_61215 shash_ahash_mcryptd_update fndecl 0 61215 &disable_so_zd_usb_iowrite16v_async_end_fndecl_61215
++disable_so_buf_addr_mlx4_ib_create_srq_61216 buf_addr mlx4_ib_create_srq 0 61216 NULL
++disable_so_post_divider_panel_info_61220 post_divider panel_info 0 61220 NULL
++disable_so_wrmsr_safe_regs_fndecl_61235 wrmsr_safe_regs fndecl 0 61235 NULL
++disable_so_get_stats_jiffies_smsdvb_client_t_61240 get_stats_jiffies smsdvb_client_t 0 61240 NULL
++disable_so_ebitmap_next_positive_fndecl_61248 ebitmap_next_positive fndecl 0-3 61248 NULL
++disable_so_ieee80211_aes_gcm_decrypt_fndecl_61254 ieee80211_aes_gcm_decrypt fndecl 0-5 61254 NULL
++disable_so_sprintf_string_fndecl_61260 sprintf_string fndecl 0 61260 NULL nohasharray
++disable_so_ci_do_program_memory_timing_parameters_fndecl_61260 ci_do_program_memory_timing_parameters fndecl 0 61260 &disable_so_sprintf_string_fndecl_61260
++disable_so_be32_to_cpu_array_fndecl_61277 be32_to_cpu_array fndecl 3 61277 NULL
++disable_so_ds_tss_segment_16_61290 ds tss_segment_16 0 61290 NULL
++disable_so_start_delay_ns_cc10001_adc_device_61303 start_delay_ns cc10001_adc_device 0 61303 NULL
++disable_so_data_addr_nvbios_pmuR_61307 data_addr nvbios_pmuR 0 61307 NULL
++disable_so_time_stamp_il_traffic_load_61308 time_stamp il_traffic_load 0 61308 NULL nohasharray
++disable_so_crypto_ccm_encrypt_done_fndecl_61308 crypto_ccm_encrypt_done fndecl 2 61308 &disable_so_time_stamp_il_traffic_load_61308
++disable_so_max_pixclock_tdfx_par_61310 max_pixclock tdfx_par 0 61310 NULL
++disable_so_nilfs_btree_node_get_key_fndecl_61317 nilfs_btree_node_get_key fndecl 0-2 61317 NULL
++disable_so_sk_forced_wmem_schedule_fndecl_61322 sk_forced_wmem_schedule fndecl 2 61322 NULL
++disable_so_rxhash_tun_flow_entry_61325 rxhash tun_flow_entry 0 61325 NULL
++disable_so___spin_time_accum_fndecl_61328 __spin_time_accum fndecl 1 61328 NULL
++disable_so_iscsi_nacl_attrib_store_nopin_timeout_fndecl_61329 iscsi_nacl_attrib_store_nopin_timeout fndecl 0-3 61329 NULL
++disable_so_dqb_itime_v1_disk_dqblk_61340 dqb_itime v1_disk_dqblk 0 61340 NULL nohasharray
++disable_so_rds_iw_laddr_check_fndecl_61340 rds_iw_laddr_check fndecl 0-1 61340 &disable_so_dqb_itime_v1_disk_dqblk_61340
++disable_so_pcibios_retrieve_fw_addr_fndecl_61341 pcibios_retrieve_fw_addr fndecl 0-2 61341 NULL
++disable_so_iwl_scan_cancel_timeout_fndecl_61342 iwl_scan_cancel_timeout fndecl 2 61342 NULL
++disable_so_m41t80_sysfs_set_sqwfreq_fndecl_61345 m41t80_sysfs_set_sqwfreq fndecl 0-4 61345 NULL
++disable_so_atl1_hash_mc_addr_fndecl_61348 atl1_hash_mc_addr fndecl 0 61348 NULL
++disable_so_daddr_irda_device_info_61349 daddr irda_device_info 0 61349 NULL
++disable_so_read_addr_qla82xx_md_entry_rdmem_61354 read_addr qla82xx_md_entry_rdmem 0 61354 NULL
++disable_so_wm8990_set_dai_clkdiv_fndecl_61357 wm8990_set_dai_clkdiv fndecl 3 61357 NULL
++disable_so_btrfs_delete_delayed_dir_index_fndecl_61358 btrfs_delete_delayed_dir_index fndecl 0-4 61358 NULL
++disable_so_disable_irq_fndecl_61372 disable_irq fndecl 1 61372 NULL
++disable_so_parport_ieee1284_epp_read_addr_fndecl_61382 parport_ieee1284_epp_read_addr fndecl 0 61382 NULL nohasharray
++disable_so_num_to_str_fndecl_61382 num_to_str fndecl 0-3-2 61382 &disable_so_parport_ieee1284_epp_read_addr_fndecl_61382
++disable_so_period_timeriomem_rng_data_61395 period timeriomem_rng_data 0 61395 NULL
++disable_so_crypto_gcm_setkey_done_fndecl_61396 crypto_gcm_setkey_done fndecl 2 61396 NULL
++disable_so_ocfs2_journal_addressable_fndecl_61399 ocfs2_journal_addressable fndecl 0 61399 NULL
++disable_so_smsdvb_read_signal_strength_fndecl_61408 smsdvb_read_signal_strength fndecl 0 61408 NULL
++disable_so_flash_busaddr_ips_ha_61415 flash_busaddr ips_ha 0 61415 NULL
++disable_so_enable_time_us_tps_info_61417 enable_time_us tps_info 0 61417 NULL
++disable_so_mtrr_chunk_size_vardecl_cleanup_c_61418 mtrr_chunk_size vardecl_cleanup.c 0 61418 NULL
++disable_so_show_dock_uid_fndecl_61419 show_dock_uid fndecl 0 61419 NULL
++disable_so_get_pageblock_bitmap_fndecl_61435 get_pageblock_bitmap fndecl 2 61435 NULL
++disable_so_s5p_jpeg_runtime_resume_fndecl_61449 s5p_jpeg_runtime_resume fndecl 0 61449 NULL nohasharray
++disable_so_last_ramp_down_time_lpfc_hba_61449 last_ramp_down_time lpfc_hba 0 61449 &disable_so_s5p_jpeg_runtime_resume_fndecl_61449
++disable_so_rsp_dmaaddr_fw_fcoe_els_ct_wr_61457 rsp_dmaaddr fw_fcoe_els_ct_wr 0 61457 NULL
++disable_so_pcsp_timer_update_fndecl_61473 pcsp_timer_update fndecl 0 61473 NULL
++disable_so_i8042_start_time_vardecl_i8042_h_61479 i8042_start_time vardecl_i8042.h 0 61479 NULL nohasharray
++disable_so_insert_into_bitmap_fndecl_61479 insert_into_bitmap fndecl 0 61479 &disable_so_i8042_start_time_vardecl_i8042_h_61479
++disable_so_xclkmaxrasdelay_pll_ct_61489 xclkmaxrasdelay pll_ct 0 61489 NULL
++disable_so_ioa_cb_bus_addr_pmcraid_cmd_61490 ioa_cb_bus_addr pmcraid_cmd 0 61490 NULL
++disable_so_sis_ata16_program_timings_fndecl_61491 sis_ata16_program_timings fndecl 2 61491 NULL
++disable_so_read_addr_stride___queue_61493 read_addr_stride __queue 0 61493 NULL
++disable_so_w1_timeout_vardecl_w1_c_61497 w1_timeout vardecl_w1.c 0 61497 NULL nohasharray
++disable_so_beacon_init_val_iwl_rxon_time_cmd_61497 beacon_init_val iwl_rxon_time_cmd 0 61497 &disable_so_w1_timeout_vardecl_w1_c_61497
++disable_so_split_timeout_lo_fw_card_61499 split_timeout_lo fw_card 0 61499 NULL
++disable_so_nla_find_fndecl_61508 nla_find fndecl 2 61508 NULL
++disable_so_timer_period_frag_pcxhr_stream_61512 timer_period_frag pcxhr_stream 0 61512 NULL
++disable_so_addr_hi_tg3_rx_buffer_desc_61522 addr_hi tg3_rx_buffer_desc 0 61522 NULL
++disable_so_i_uid_ext3_inode_61529 i_uid ext3_inode 0 61529 NULL nohasharray
++disable_so_r30_val_fc2580_freq_regs_61529 r30_val fc2580_freq_regs 0 61529 &disable_so_i_uid_ext3_inode_61529
++disable_so_i_delayed_blks_xfs_inode_61540 i_delayed_blks xfs_inode 0 61540 NULL nohasharray
++disable_so_aes_set_key_fndecl_61540 aes_set_key fndecl 0-3 61540 &disable_so_i_delayed_blks_xfs_inode_61540
++disable_so_loc_addr_nes_cm_listener_61541 loc_addr nes_cm_listener 0 61541 NULL
++disable_so_addr_w6692_hw_61546 addr w6692_hw 0 61546 NULL
++disable_so_mvs_write_port_vsr_addr_fndecl_61549 mvs_write_port_vsr_addr fndecl 3 61549 NULL
++disable_so_s_addr_per_block_bits_ext3_sb_info_61550 s_addr_per_block_bits ext3_sb_info 0 61550 NULL
++disable_so_o2net_set_nodelay_fndecl_61551 o2net_set_nodelay fndecl 0 61551 NULL
++disable_so_mlx5_ib_query_gid_fndecl_61553 mlx5_ib_query_gid fndecl 2-3 61553 NULL
++disable_so_pdl_paddr_hp100_ring_61561 pdl_paddr hp100_ring 0 61561 NULL
++disable_so_pci_bus_read_dev_vendor_id_fndecl_61562 pci_bus_read_dev_vendor_id fndecl 2 61562 NULL
++disable_so_fs16_to_cpu_fndecl_61568 fs16_to_cpu fndecl 0-2 61568 NULL
++disable_so_prandom_u32_state_fndecl_61582 prandom_u32_state fndecl 0 61582 NULL
++disable_so_high_bits_word_at_a_time_61595 high_bits word_at_a_time 0 61595 NULL
++disable_so_broadsheet_spiflash_op_on_address_fndecl_61596 broadsheet_spiflash_op_on_address fndecl 0-2-3 61596 NULL
++disable_so_device_create_fndecl_61600 device_create fndecl 3 61600 NULL
++disable_so_mce_wrmsrl_fndecl_61602 mce_wrmsrl fndecl 2 61602 NULL
++disable_so_jiffies_to_msecs_fndecl_61603 jiffies_to_msecs fndecl 0-1 61603 NULL
++disable_so_desc_card_addr_qla4_83xx_minidump_entry_rdmem_pex_dma_61605 desc_card_addr qla4_83xx_minidump_entry_rdmem_pex_dma 0 61605 NULL
++disable_so_remote_cm_response_timeout_ib_cm_req_param_61617 remote_cm_response_timeout ib_cm_req_param 0 61617 NULL
++disable_so_i_ctime_ocfs2_dinode_61629 i_ctime ocfs2_dinode 0 61629 NULL
++disable_so_uac_clock_selector_set_val_fndecl_61640 uac_clock_selector_set_val fndecl 2-0 61640 NULL
++disable_so_throtl_schedule_pending_timer_fndecl_61645 throtl_schedule_pending_timer fndecl 2 61645 NULL
++disable_so_t_nsec_xfs_ictimestamp_61648 t_nsec xfs_ictimestamp 0 61648 NULL
++disable_so_hashbits_rpc_cred_cache_61651 hashbits rpc_cred_cache 0 61651 NULL
++disable_so_iscsi_nacl_attrib_show_nopin_response_timeout_fndecl_61655 iscsi_nacl_attrib_show_nopin_response_timeout fndecl 0 61655 NULL
++disable_so_address_SG64ENTRY_61656 address SG64ENTRY 0 61656 NULL
++disable_so_cputime_advance_fndecl_61661 cputime_advance fndecl 2 61661 NULL
++disable_so_ts_delay_pressure_vardecl_ucb1400_ts_c_61663 ts_delay_pressure vardecl_ucb1400_ts.c 0 61663 NULL
++disable_so_mapaddr_skge_element_61673 mapaddr skge_element 0 61673 NULL
++disable_so_resetcal_timer_ath_ani_61692 resetcal_timer ath_ani 0 61692 NULL
++disable_so_btrfs_check_uuid_tree_entry_fndecl_61694 btrfs_check_uuid_tree_entry fndecl 4 61694 NULL
++disable_so_tuner_addr_tm6000_core_61695 tuner_addr tm6000_core 0 61695 NULL
++disable_so_last_msgtime_vardecl_ide_io_c_61702 last_msgtime vardecl_ide-io.c 0 61702 NULL
++disable_so_hpi_sample_clock_get_auto_fndecl_61704 hpi_sample_clock_get_auto fndecl 1-0 61704 NULL
++disable_so_ext4_find_delayed_extent_fndecl_61709 ext4_find_delayed_extent fndecl 0 61709 NULL
++disable_so_freq_offset_khz_uhf_dib0090_config_61716 freq_offset_khz_uhf dib0090_config 0 61716 NULL
++disable_so_sha1_generic_block_fn_fndecl_61724 sha1_generic_block_fn fndecl 3 61724 NULL
++disable_so_xc4000_get_signal_fndecl_61727 xc4000_get_signal fndecl 0 61727 NULL
++disable_so_vf_addr_hi_bnx2x_vf_mbx_61734 vf_addr_hi bnx2x_vf_mbx 0 61734 NULL nohasharray
++enable_so_exit_info_2_vmcb_control_area_61734 exit_info_2 vmcb_control_area 0 61734 &disable_so_vf_addr_hi_bnx2x_vf_mbx_61734
++disable_so_pcxhr_update_timer_pos_fndecl_61736 pcxhr_update_timer_pos fndecl 3 61736 NULL nohasharray
++disable_so_adis16480_set_filter_freq_fndecl_61736 adis16480_set_filter_freq fndecl 0 61736 &disable_so_pcxhr_update_timer_pos_fndecl_61736 nohasharray
++disable_so_xfs_daddr_to_agbno_fndecl_61736 xfs_daddr_to_agbno fndecl 0-2 61736 &disable_so_adis16480_set_filter_freq_fndecl_61736
++disable_so_stb0899_calc_derot_time_fndecl_61753 stb0899_calc_derot_time fndecl 0-1 61753 NULL nohasharray
++disable_so_fb_end_aligned_physaddr_osd_info_61753 fb_end_aligned_physaddr osd_info 0 61753 &disable_so_stb0899_calc_derot_time_fndecl_61753
++disable_so_ssb_calc_clock_rate_fndecl_61754 ssb_calc_clock_rate fndecl 0-3-2 61754 NULL nohasharray
++disable_so_seq_amdgpu_fence_61754 seq amdgpu_fence 0 61754 &disable_so_ssb_calc_clock_rate_fndecl_61754
++disable_so_disable_irq_nosync_fndecl_61758 disable_irq_nosync fndecl 1 61758 NULL
++disable_so_nft_dump_register_fndecl_61766 nft_dump_register fndecl 0 61766 NULL
++disable_so_file_remove_suid_fndecl_61769 file_remove_suid fndecl 0 61769 NULL
++disable_so_ltr501_als_write_samp_freq_fndecl_61771 ltr501_als_write_samp_freq fndecl 0 61771 NULL
++disable_so_pixclock_my_timming_61772 pixclock my_timming 0 61772 NULL
++disable_so_rtl818x_iowrite8_fndecl_61778 rtl818x_iowrite8 fndecl 3 61778 NULL
++disable_so_bql_show_hold_time_fndecl_61783 bql_show_hold_time fndecl 0 61783 NULL
++disable_so_db_addr_mlx4_ib_create_srq_61795 db_addr mlx4_ib_create_srq 0 61795 NULL
++disable_so_lgdt3306a_sleep_fndecl_61796 lgdt3306a_sleep fndecl 0 61796 NULL
++disable_so_cpuid_nent_kvm_vcpu_arch_61798 cpuid_nent kvm_vcpu_arch 0 61798 NULL
++disable_so_addr_hdac_device_61804 addr hdac_device 0 61804 NULL
++disable_so_center_freq_stb0899_internal_61821 center_freq stb0899_internal 0 61821 NULL
++disable_so_addr_cqicb_61823 addr cqicb 0 61823 NULL
++disable_so_oprofile_hrtimer_setup_fndecl_61824 oprofile_hrtimer_setup fndecl 0 61824 NULL
++disable_so_tvaudio_addr_em28xx_board_61828 tvaudio_addr em28xx_board 0 61828 NULL
++disable_so__ocrdma_pd_mgr_get_bitmap_fndecl_61833 _ocrdma_pd_mgr_get_bitmap fndecl 0 61833 NULL
++disable_so_rd08_nvkm_ofuncs_61836 rd08 nvkm_ofuncs 0-2 61836 NULL
++disable_so_clipped_freq_cpufreq_cooling_device_61837 clipped_freq cpufreq_cooling_device 0 61837 NULL
++disable_so_config_addend_stmmac_hwtimestamp_61840 config_addend stmmac_hwtimestamp 2 61840 NULL
++disable_so_crypto_authenc_givencrypt_fndecl_61841 crypto_authenc_givencrypt fndecl 0 61841 NULL
++disable_so_freq_table_get_index_fndecl_61842 freq_table_get_index fndecl 2 61842 NULL
++disable_so_qla2x00_issue_iocb_timeout_fndecl_61848 qla2x00_issue_iocb_timeout fndecl 0-3-5 61848 NULL
++disable_so_afs_vlocation_timeout_vardecl_vlocation_c_61850 afs_vlocation_timeout vardecl_vlocation.c 0 61850 NULL
++disable_so_dev_addr__drm_via_descriptor_61860 dev_addr _drm_via_descriptor 0 61860 NULL
++disable_so_inet_confirm_addr_fndecl_61869 inet_confirm_addr fndecl 0 61869 NULL nohasharray
++enable_so__eip_x86_emulate_ctxt_61869 _eip x86_emulate_ctxt 0 61869 &disable_so_inet_confirm_addr_fndecl_61869
++disable_so_ethtool_get_perm_addr_fndecl_61870 ethtool_get_perm_addr fndecl 0 61870 NULL
++disable_so_sctp_ulpevent_make_peer_addr_change_fndecl_61876 sctp_ulpevent_make_peer_addr_change fndecl 6 61876 NULL nohasharray
++disable_so_calc_lanman_hash_fndecl_61876 calc_lanman_hash fndecl 0 61876 &disable_so_sctp_ulpevent_make_peer_addr_change_fndecl_61876
++disable_so_init_blkcipher_desc_fndecl_61877 init_blkcipher_desc fndecl 0-3-5 61877 NULL
++disable_so_address_acpi_pci_routing_table_61886 address acpi_pci_routing_table 0 61886 NULL
++disable_so_tx_tone_freq_b43_phy_lp_61888 tx_tone_freq b43_phy_lp 0 61888 NULL
++disable_so___ip6addrlbl_match_fndecl_61894 __ip6addrlbl_match fndecl 4-5 61894 NULL
++disable_so_irq_domain_free_irqs_top_fndecl_61898 irq_domain_free_irqs_top fndecl 2-3 61898 NULL
++disable_so_freq_tm6000_core_61902 freq tm6000_core 0 61902 NULL
++disable_so_addr_lo_ocrdma_sge_61909 addr_lo ocrdma_sge 0 61909 NULL
++disable_so_ctlr_ka_time_fcoe_ctlr_61922 ctlr_ka_time fcoe_ctlr 0 61922 NULL
++disable_so_mcryptd_hash_final_enqueue_fndecl_61941 mcryptd_hash_final_enqueue fndecl 0 61941 NULL
++disable_so_dn_match_addr_fndecl_61944 dn_match_addr fndecl 1 61944 NULL
++disable_so_mac_time_b43legacy_rxhdr_fw3_61952 mac_time b43legacy_rxhdr_fw3 0 61952 NULL nohasharray
++disable_so_force_static_address_write_fndecl_61952 force_static_address_write fndecl 3 61952 &disable_so_mac_time_b43legacy_rxhdr_fw3_61952
++disable_so_delay_adp5588_kpad_61963 delay adp5588_kpad 0 61963 NULL
++disable_so_cg_time_ufs_cylinder_group_61969 cg_time ufs_cylinder_group 0 61969 NULL
++disable_so_pll_freq_ene_device_61971 pll_freq ene_device 0 61971 NULL
++disable_so_iscsit_na_random_datain_seq_offsets_fndecl_61975 iscsit_na_random_datain_seq_offsets fndecl 0 61975 NULL
++disable_so_addr_dme1737_data_61978 addr dme1737_data 0 61978 NULL
++disable_so_crypto_probing_notify_fndecl_61991 crypto_probing_notify fndecl 0-1 61991 NULL
++disable_so_offset_fw_address_handler_61992 offset fw_address_handler 0 61992 NULL
++disable_so_vsel_addr_palmas_regs_info_61997 vsel_addr palmas_regs_info 0 61997 NULL
++disable_so_last_time_ecne_reduced_sctp_transport_61998 last_time_ecne_reduced sctp_transport 0 61998 NULL
++disable_so_units_sprintf_fndecl_62002 units_sprintf fndecl 0 62002 NULL
++disable_so_gpu_addr_radeon_uvd_62004 gpu_addr radeon_uvd 0 62004 NULL
++disable_so_adc_freq_stmpe_touch_62006 adc_freq stmpe_touch 0 62006 NULL
++disable_so_dosr_aic31xx_rate_divs_62015 dosr aic31xx_rate_divs 0 62015 NULL
++disable_so_tsc_khz_vardecl_62031 tsc_khz vardecl 0 62031 NULL
++disable_so_accounting_timestamp_dev_pm_info_62040 accounting_timestamp dev_pm_info 0 62040 NULL nohasharray
++disable_so_sensor_addr_mcam_camera_62040 sensor_addr mcam_camera 0 62040 &disable_so_accounting_timestamp_dev_pm_info_62040
++disable_so___sw_hweight16_fndecl_62046 __sw_hweight16 fndecl 1-0 62046 NULL
++disable_so_st_atime_stat_62052 st_atime stat 0 62052 NULL nohasharray
++disable_so_dsi_pll_div_dsi_mnp_62052 dsi_pll_div dsi_mnp 0 62052 &disable_so_st_atime_stat_62052
++disable_so_ath5k_hw_write_ofdm_timings_fndecl_62063 ath5k_hw_write_ofdm_timings fndecl 0 62063 NULL
++disable_so_addr_dn_neigh_62067 addr dn_neigh 0 62067 NULL
++disable_so_small_buf_q_alloc_phy_addr_ql3_adapter_62071 small_buf_q_alloc_phy_addr ql3_adapter 0 62071 NULL
++disable_so_in6_dump_addrs_fndecl_62073 in6_dump_addrs fndecl 0 62073 NULL nohasharray
++disable_so_toggle_hw_mce_inject_fndecl_62073 toggle_hw_mce_inject fndecl 0-1 62073 &disable_so_in6_dump_addrs_fndecl_62073
++disable_so_addr_mthca_data_seg_62083 addr mthca_data_seg 0 62083 NULL
++disable_so_err_interrupt_orion_mdio_dev_62099 err_interrupt orion_mdio_dev 0 62099 NULL
++disable_so_callback_snd_timer_instance_62100 callback snd_timer_instance 2-3 62100 NULL
++disable_so_acc_jiffies_ati_remote_62109 acc_jiffies ati_remote 0 62109 NULL
++disable_so_regcache_rbtree_drop_fndecl_62111 regcache_rbtree_drop fndecl 2-3 62111 NULL
++disable_so_post_div_radeon_pll_62120 post_div radeon_pll 0 62120 NULL
++disable_so_local_addr_rds_atomic_args_62123 local_addr rds_atomic_args 0 62123 NULL
++disable_so_rds_tcp_laddr_check_fndecl_62131 rds_tcp_laddr_check fndecl 1 62131 NULL
++disable_so_sock_get_timestampns_fndecl_62145 sock_get_timestampns fndecl 0 62145 NULL
++disable_so_beacon_time_stamp_il_rx_phy_res_62147 beacon_time_stamp il_rx_phy_res 0 62147 NULL
++disable_so_panel_power_up_delay_cdv_intel_dp_62150 panel_power_up_delay cdv_intel_dp 0 62150 NULL
++disable_so_dma_addr_solo_p2m_desc_62151 dma_addr solo_p2m_desc 0 62151 NULL
++disable_so_hangcheck_tick_vardecl_hangcheck_timer_c_62154 hangcheck_tick vardecl_hangcheck-timer.c 0 62154 NULL nohasharray
++disable_so_kbd_backlight_timeout_store_fndecl_62154 kbd_backlight_timeout_store fndecl 0-4 62154 &disable_so_hangcheck_tick_vardecl_hangcheck_timer_c_62154
++disable_so_xhci_call_host_update_timeout_for_endpoint_fndecl_62155 xhci_call_host_update_timeout_for_endpoint fndecl 0 62155 NULL
++disable_so_read_block_bitmap_fndecl_62158 read_block_bitmap fndecl 2 62158 NULL
++disable_so_ceph_aes_decrypt_fndecl_62159 ceph_aes_decrypt fndecl 2-6 62159 NULL
++disable_so_mpll_func_cntl_2_si_clock_registers_62165 mpll_func_cntl_2 si_clock_registers 0 62165 NULL
++disable_so_s01_img_ir_timing_regvals_62168 s01 img_ir_timing_regvals 0 62168 NULL
++disable_so_xmit_hashtype_vardecl_bond_main_c_62175 xmit_hashtype vardecl_bond_main.c 0 62175 NULL
++disable_so_seconds_v4l2_timecode_62177 seconds v4l2_timecode 0 62177 NULL
++disable_so_dma_addr_t3_wq_62178 dma_addr t3_wq 0 62178 NULL
++disable_so_cryptd_hash_export_fndecl_62185 cryptd_hash_export fndecl 0 62185 NULL
++disable_so_get_qam_signal_to_noise_fndecl_62191 get_qam_signal_to_noise fndecl 0 62191 NULL
++disable_so_dp_daddr_rds_ib_connect_private_62196 dp_daddr rds_ib_connect_private 0 62196 NULL
++disable_so_max77693_muic_set_debounce_time_fndecl_62200 max77693_muic_set_debounce_time fndecl 0-2 62200 NULL
++disable_so_bch_time_stats_update_fndecl_62214 bch_time_stats_update fndecl 2 62214 NULL
++disable_so_t4_set_addr_hash_fndecl_62216 t4_set_addr_hash fndecl 0-2-3 62216 NULL
++disable_so_proc_disconnectsignal_compat_fndecl_62217 proc_disconnectsignal_compat fndecl 0 62217 NULL
++disable_so_rtsx_pci_switch_clock_fndecl_62219 rtsx_pci_switch_clock fndecl 2-0 62219 NULL
++disable_so_addr_chip_data_62229 addr chip_data 0 62229 NULL
++disable_so_timer_abs_periods_pcxhr_stream_62230 timer_abs_periods pcxhr_stream 0 62230 NULL
++disable_so_tty_ldisc_lock_pair_timeout_fndecl_62232 tty_ldisc_lock_pair_timeout fndecl 3 62232 NULL
++disable_so_fd_pppol2tpv3in6_addr_62243 fd pppol2tpv3in6_addr 0 62243 NULL
++disable_so_hrtimer_start_range_ns_fndecl_62253 hrtimer_start_range_ns fndecl 3 62253 NULL
++disable_so_r9_kvm_regs_62259 r9 kvm_regs 0 62259 NULL
++disable_so_supported_addrs_sctp_pf_62261 supported_addrs sctp_pf 0 62261 NULL
++disable_so_xfs_bmapi_delay_fndecl_62277 xfs_bmapi_delay fndecl 0-2-3 62277 NULL
++disable_so_tseg2_pucan_timing_slow_62290 tseg2 pucan_timing_slow 0 62290 NULL
++disable_so_mtime_ncp_cache_head_62294 mtime ncp_cache_head 0 62294 NULL
++disable_so_get_ramp_delay_fndecl_62302 get_ramp_delay fndecl 0 62302 NULL
++disable_so_decrypt_crypto_aead_62305 decrypt crypto_aead 0 62305 NULL
++disable_so_paddr_mmd_fw_ldst_mdio_62306 paddr_mmd fw_ldst_mdio 0 62306 NULL
++disable_so_start_address___osdv1_cdb_addr_len_62309 start_address __osdv1_cdb_addr_len 0 62309 NULL
++disable_so_freq_as10x_tune_args_62312 freq as10x_tune_args 0 62312 NULL nohasharray
++e_rtt_min_westwood_62312 rtt_min westwood 0 62312 &disable_so_freq_as10x_tune_args_62312
++disable_so_timestamp_low_rtl_stats_62314 timestamp_low rtl_stats 0 62314 NULL
++disable_so_uid_fuse_in_header_62319 uid fuse_in_header 0 62319 NULL
++disable_so_bfa_fcs_rport_del_timeout_vardecl_bfa_fcs_rport_c_62320 bfa_fcs_rport_del_timeout vardecl_bfa_fcs_rport.c 0 62320 NULL nohasharray
++disable_so_argidx_mc_buffer_62320 argidx mc_buffer 0 62320 &disable_so_bfa_fcs_rport_del_timeout_vardecl_bfa_fcs_rport_c_62320
++disable_so_ci_recover_timer_dlm_config_info_62321 ci_recover_timer dlm_config_info 0 62321 NULL nohasharray
++disable_so_gart_bus_addr_agp_bridge_data_62321 gart_bus_addr agp_bridge_data 0 62321 &disable_so_ci_recover_timer_dlm_config_info_62321
++disable_so_ci_get_ddr3_mclk_frequency_ratio_fndecl_62335 ci_get_ddr3_mclk_frequency_ratio fndecl 0-1 62335 NULL
++disable_so_addr_flags_ec_params_i2c_passthru_msg_62337 addr_flags ec_params_i2c_passthru_msg 0 62337 NULL
++disable_so_mISDN_clock_get_fndecl_62339 mISDN_clock_get fndecl 0 62339 NULL nohasharray
++disable_so_beacon_paddr_ath10k_vif_62339 beacon_paddr ath10k_vif 0 62339 &disable_so_mISDN_clock_get_fndecl_62339 nohasharray
++disable_so_tda10023_writereg_fndecl_62339 tda10023_writereg fndecl 3 62339 &disable_so_beacon_paddr_ath10k_vif_62339
++disable_so___iowrite32_copy_fndecl_62342 __iowrite32_copy fndecl 3 62342 NULL
++disable_so_bit_offset_acpi_pct_register_62348 bit_offset acpi_pct_register 0 62348 NULL
++disable_so_ccp_aes_encrypt_fndecl_62350 ccp_aes_encrypt fndecl 0 62350 NULL
++disable_so_crypto_cbc_module_init_fndecl_62352 crypto_cbc_module_init fndecl 0 62352 NULL
++disable_so_decode_attr_time_fndecl_62359 decode_attr_time fndecl 0 62359 NULL
++disable_so_btrfs_set_dev_replace_time_stopped_fndecl_62364 btrfs_set_dev_replace_time_stopped fndecl 3 62364 NULL
++disable_so_i2c_addr_stv0900_internal_62365 i2c_addr stv0900_internal 0 62365 NULL
++disable_so_sys_setfsgid16_fndecl_62369 sys_setfsgid16 fndecl 0-1 62369 NULL
++disable_so__zd_iowrite32v_locked_fndecl_62374 _zd_iowrite32v_locked fndecl 3-0 62374 NULL nohasharray
++disable_so_C_SYSC_semtimedop_fndecl_62374 C_SYSC_semtimedop fndecl 0-1-3 62374 &disable_so__zd_iowrite32v_locked_fndecl_62374
++disable_so_native_mode_display_timings_62375 native_mode display_timings 0 62375 NULL
++disable_so_wm8400_set_dai_clkdiv_fndecl_62376 wm8400_set_dai_clkdiv fndecl 3 62376 NULL
++disable_so_phy_fixed_addr_vardecl_fixed_phy_c_62380 phy_fixed_addr vardecl_fixed_phy.c 0 62380 NULL
++disable_so_lo_phys_addr_62383 lo phys_addr 0 62383 NULL
++disable_so_schedule_resp_fndecl_62394 schedule_resp fndecl 4-3 62394 NULL
++disable_so_tw_ts_recent_tcp_timewait_sock_62395 tw_ts_recent tcp_timewait_sock 0 62395 NULL
++disable_so_bus_addr_videobuf_dmabuf_62402 bus_addr videobuf_dmabuf 0 62402 NULL
++disable_so_i_uid_exofs_fcb_62409 i_uid exofs_fcb 0 62409 NULL
++disable_so_pc_clock_getres_fndecl_62422 pc_clock_getres fndecl 1 62422 NULL
++disable_so_lock_addr_ulp_mem_io_62424 lock_addr ulp_mem_io 0 62424 NULL
++disable_so___set_radio_freq_fndecl_62425 __set_radio_freq fndecl 2 62425 NULL
++disable_so_ath5k_hw_set_cts_timeout_fndecl_62429 ath5k_hw_set_cts_timeout fndecl 2 62429 NULL
++disable_so_ni_program_memory_timing_parameters_fndecl_62435 ni_program_memory_timing_parameters fndecl 0 62435 NULL
++disable_so_stv6110_set_frequency_fndecl_62438 stv6110_set_frequency fndecl 2 62438 NULL
++disable_so_padata_index_to_cpu_fndecl_62451 padata_index_to_cpu fndecl 0-2 62451 NULL
++disable_so_btree_insert_fndecl_62456 btree_insert fndecl 5 62456 NULL
++disable_so_time_hfa384x_rx_frame_62462 time hfa384x_rx_frame 0 62462 NULL
++disable_so_qat_alg_ablkcipher_init_dec_fndecl_62464 qat_alg_ablkcipher_init_dec fndecl 4 62464 NULL
++disable_so_addr_mcp23s08_62465 addr mcp23s08 0 62465 NULL
++disable_so_faddr_ip_options_62466 faddr ip_options 0 62466 NULL nohasharray
++disable_so_ufs_get_inode_gid_fndecl_62466 ufs_get_inode_gid fndecl 0 62466 &disable_so_faddr_ip_options_62466
++disable_so_min_rnr_timer_ib_qp_attr_62467 min_rnr_timer ib_qp_attr 0 62467 NULL
++disable_so_update_timestamp_of_queue_fndecl_62482 update_timestamp_of_queue fndecl 2 62482 NULL
++disable_so_center_freq1_cfg80211_chan_def_62486 center_freq1 cfg80211_chan_def 0 62486 NULL
++disable_so_watchdog_set_timeout_fndecl_62487 watchdog_set_timeout fndecl 0 62487 NULL
++disable_so_bitmap_parselist_user_fndecl_62492 bitmap_parselist_user fndecl 0-2-4 62492 NULL
++disable_so_tuner_address_tda1004x_config_62514 tuner_address tda1004x_config 0 62514 NULL
++disable_so_src_addr_l_wcn36xx_dxe_desc_62516 src_addr_l wcn36xx_dxe_desc 0 62516 NULL
++disable_so_loadaddr_object_info_62521 loadaddr object_info 0 62521 NULL
++disable_so_store_cpumask_fndecl_62525 store_cpumask fndecl 4-0 62525 NULL
++disable_so_sysctl_llc2_rej_timeout_vardecl_62533 sysctl_llc2_rej_timeout vardecl 0 62533 NULL nohasharray
++disable_so_symbol_rate_stv0900_signal_info_62533 symbol_rate stv0900_signal_info 0 62533 &disable_so_sysctl_llc2_rej_timeout_vardecl_62533
++disable_so_get_pending_timer_val_fndecl_62535 get_pending_timer_val fndecl 0-1 62535 NULL
++disable_so_acpi_tb_init_generic_address_fndecl_62545 acpi_tb_init_generic_address fndecl 2-3-4 62545 NULL
++disable_so_laddr_xt_tproxy_target_info_62546 laddr xt_tproxy_target_info 0 62546 NULL
++disable_so_bitmaps_btrfs_io_ctl_62547 bitmaps btrfs_io_ctl 0 62547 NULL
++disable_so_phy_tx_tone_freq_brcms_phy_62552 phy_tx_tone_freq brcms_phy 0 62552 NULL
++disable_so_rdaddr_irnet_socket_62558 rdaddr irnet_socket 0 62558 NULL
++disable_so_uid_ucred_62560 uid ucred 0 62560 NULL
++disable_so_mod_delayed_work_fndecl_62563 mod_delayed_work fndecl 3 62563 NULL
++disable_so_base_pfn_var_mtrr_range_state_62564 base_pfn var_mtrr_range_state 0 62564 NULL
++disable_so_cx_pt_regs_62574 cx pt_regs 0 62574 NULL
++disable_so_cpuid_device_destroy_fndecl_62575 cpuid_device_destroy fndecl 1 62575 NULL
++disable_so_pm_print_times_show_fndecl_62583 pm_print_times_show fndecl 0 62583 NULL
++disable_so_blkaddr_discard_entry_62585 blkaddr discard_entry 0 62585 NULL
++disable_so_wl1271_acx_group_address_tbl_fndecl_62591 wl1271_acx_group_address_tbl fndecl 0 62591 NULL nohasharray
++disable_so_rangelow_v4l2_hw_freq_seek_62591 rangelow v4l2_hw_freq_seek 0 62591 &disable_so_wl1271_acx_group_address_tbl_fndecl_62591
++disable_so_crc32_le_fndecl_62601 crc32_le fndecl 0-1-3 62601 NULL
++disable_so_freq_cx23885_dev_62605 freq cx23885_dev 0 62605 NULL
++disable_so_sysctl_netrom_transport_no_activity_timeout_vardecl_62608 sysctl_netrom_transport_no_activity_timeout vardecl 0 62608 NULL
++disable_so_xfs_btree_new_iroot_fndecl_62611 xfs_btree_new_iroot fndecl 0 62611 NULL
++disable_so_tproxy_handle_time_wait6_fndecl_62612 tproxy_handle_time_wait6 fndecl 3-2 62612 NULL
++disable_so_sys_getpgid_fndecl_62613 sys_getpgid fndecl 0-1 62613 NULL
++disable_so_next_td_addr_c67x00_hcd_62615 next_td_addr c67x00_hcd 0 62615 NULL
++disable_so_hdspm_aes_sync_check_fndecl_62629 hdspm_aes_sync_check fndecl 2 62629 NULL
++disable_so_ebitmap_node_get_bit_fndecl_62633 ebitmap_node_get_bit fndecl 2 62633 NULL
++disable_so_nilfs_palloc_get_bitmap_block_fndecl_62635 nilfs_palloc_get_bitmap_block fndecl 0-2 62635 NULL
++disable_so_spll_ref_div_rv6xx_power_info_62638 spll_ref_div rv6xx_power_info 0 62638 NULL nohasharray
++disable_so_center_freq_seg1_idx_ieee80211_vht_operation_62638 center_freq_seg1_idx ieee80211_vht_operation 0 62638 &disable_so_spll_ref_div_rv6xx_power_info_62638
++disable_so_swc_base_asd_ha_addrspace_62642 swc_base asd_ha_addrspace 0 62642 NULL nohasharray
++disable_so__abb5zes3_rtc_update_timer_fndecl_62642 _abb5zes3_rtc_update_timer fndecl 0 62642 &disable_so_swc_base_asd_ha_addrspace_62642
++disable_so_cgcdiv_saa711x_state_62643 cgcdiv saa711x_state 0 62643 NULL
++disable_so_igmp_mod_timer_fndecl_62656 igmp_mod_timer fndecl 2 62656 NULL
++disable_so_write16_comm_runtime_62657 write16 comm_runtime 0 62657 NULL
++disable_so_sib_sid_sockaddr_ib_62658 sib_sid sockaddr_ib 0 62658 NULL
++disable_so_srx_service_sockaddr_rxrpc_62661 srx_service sockaddr_rxrpc 0 62661 NULL
++disable_so_sh_cmt_clocksource_read_fndecl_62671 sh_cmt_clocksource_read fndecl 0 62671 NULL
++disable_so_freq_saa7164_port_62674 freq saa7164_port 0 62674 NULL
++disable_so_nilfs_btree_node_lookup_fndecl_62675 nilfs_btree_node_lookup fndecl 2 62675 NULL
++disable_so_addr_1_qla8044_minidump_entry_rddfe_62676 addr_1 qla8044_minidump_entry_rddfe 0 62676 NULL
++disable_so_rtl_udelay_fndecl_62677 rtl_udelay fndecl 1 62677 NULL nohasharray
++disable_so_VTotal_xtimings_62677 VTotal xtimings 0 62677 &disable_so_rtl_udelay_fndecl_62677
++disable_so_ib_get_cached_gid_fndecl_62698 ib_get_cached_gid fndecl 2-3 62698 NULL
++disable_so_dvb_frontend_sleep_until_fndecl_62701 dvb_frontend_sleep_until fndecl 2 62701 NULL
++disable_so_i2c_address_stv6110_config_62706 i2c_address stv6110_config 0 62706 NULL
++disable_so_address_ihex_record_62713 address ihex_record 0 62713 NULL
++disable_so_next_rptr_gpu_addr_radeon_ring_62716 next_rptr_gpu_addr radeon_ring 0 62716 NULL
++disable_so_wusb_trust_timeout_store_fndecl_62719 wusb_trust_timeout_store fndecl 0-4 62719 NULL
++disable_so_add_bytes_to_bitmap_fndecl_62721 add_bytes_to_bitmap fndecl 0-3-4 62721 NULL
++disable_so_set_ethernet_addr_fndecl_62733 set_ethernet_addr fndecl 0 62733 NULL
++disable_so_nmsrs_kvm_msrs_62744 nmsrs kvm_msrs 0 62744 NULL
++disable_so_ant_div_control_ar9300_BaseExtension_1_62759 ant_div_control ar9300_BaseExtension_1 0 62759 NULL
++disable_so_padlock_sha_import_fndecl_62760 padlock_sha_import fndecl 0 62760 NULL
++disable_so_do_timerfd_settime_fndecl_62764 do_timerfd_settime fndecl 1 62764 NULL nohasharray
++disable_so_phy_addr_netdev_private_62764 phy_addr netdev_private 0 62764 &disable_so_do_timerfd_settime_fndecl_62764
++disable_so_bd_list_addr_lo_bnx2i_nop_out_request_62766 bd_list_addr_lo bnx2i_nop_out_request 0 62766 NULL
++disable_so_get_sndtimeo_l2cap_ops_62767 get_sndtimeo l2cap_ops 0 62767 NULL
++disable_so_active_jiffies_dev_pm_info_62774 active_jiffies dev_pm_info 0 62774 NULL
++disable_so_r5f_val_fc2580_freq_regs_62778 r5f_val fc2580_freq_regs 0 62778 NULL
++disable_so_ac97_clock_vardecl_via82xx_modem_c_62781 ac97_clock vardecl_via82xx_modem.c 0 62781 NULL
++disable_so_after_ctime_sec_nfsd4_change_info_62785 after_ctime_sec nfsd4_change_info 0 62785 NULL
++disable_so_vma_compute_subtree_gap_fndecl_62794 vma_compute_subtree_gap fndecl 0 62794 NULL
++disable_so_fll_freq_out_wm8350_data_62801 fll_freq_out wm8350_data 0 62801 NULL
++disable_so_nfs_map_group_to_gid_fndecl_62809 nfs_map_group_to_gid fndecl 0-3 62809 NULL
++disable_so_saddr_irnet_socket_62828 saddr irnet_socket 0 62828 NULL
++disable_so_fixed_mtrr_range_end_addr_fndecl_62835 fixed_mtrr_range_end_addr fndecl 2-0 62835 NULL
++disable_so_sis_program_udma_timings_fndecl_62837 sis_program_udma_timings fndecl 2 62837 NULL
++disable_so_timeout_lpfc_scsi_buf_62845 timeout lpfc_scsi_buf 0 62845 NULL
++disable_so_brp_inc_can_bittiming_const_62858 brp_inc can_bittiming_const 0 62858 NULL
++disable_so_timer_counter_tg3_62864 timer_counter tg3 0 62864 NULL
++disable_so_slave_addr_psb_intel_i2c_chan_62869 slave_addr psb_intel_i2c_chan 0 62869 NULL
++disable_so_mapaddr_rocker_desc_info_62870 mapaddr rocker_desc_info 0 62870 NULL
++disable_so_cid_addr_drv_ctl_io_62879 cid_addr drv_ctl_io 0 62879 NULL
++disable_so_ifreq_dibx000_bandwidth_config_62891 ifreq dibx000_bandwidth_config 0 62891 NULL
++disable_so_m_iw_freq_62894 m iw_freq 0 62894 NULL
++disable_so___nci_request_fndecl_62899 __nci_request fndecl 0 62899 NULL
++disable_so_tuner_addr_cx23885_dev_62908 tuner_addr cx23885_dev 0 62908 NULL
++disable_so_acpi_remove_address_space_handler_fndecl_62916 acpi_remove_address_space_handler fndecl 0-2 62916 NULL
++disable_so_vma_address_fndecl_62917 vma_address fndecl 0 62917 NULL
++disable_so_cg_spll_func_cntl_2_rv770_clock_registers_62925 cg_spll_func_cntl_2 rv770_clock_registers 0 62925 NULL
++disable_so_clear_state_gpu_addr_radeon_rlc_62934 clear_state_gpu_addr radeon_rlc 0 62934 NULL
++disable_so_timeout__x_config_parms_62944 timeout _x_config_parms 0 62944 NULL
++disable_so_vbackporch_v4l2_bt_timings_62951 vbackporch v4l2_bt_timings 0 62951 NULL
++disable_so_crypto_rfc4543_setkey_fndecl_62960 crypto_rfc4543_setkey fndecl 0-3 62960 NULL
++disable_so_xc_get_hsync_freq_fndecl_62961 xc_get_hsync_freq fndecl 0 62961 NULL
++disable_so_run_delayed_start_btrfs_delayed_ref_root_62962 run_delayed_start btrfs_delayed_ref_root 0 62962 NULL nohasharray
++disable_so_netxen_nic_pci_get_crb_addr_2M_fndecl_62962 netxen_nic_pci_get_crb_addr_2M fndecl 2 62962 &disable_so_run_delayed_start_btrfs_delayed_ref_root_62962
++disable_so_frac_top_pll_div_62988 frac_top pll_div 0 62988 NULL nohasharray
++disable_so_busaddr__CommandList_struct_62988 busaddr _CommandList_struct 0 62988 &disable_so_frac_top_pll_div_62988
++disable_so_buffer_paddr_ghes_62992 buffer_paddr ghes 0 62992 NULL
++disable_so_be32_to_cpu_n_fndecl_62994 be32_to_cpu_n fndecl 3 62994 NULL
++disable_so_ccp_sha_update_fndecl_63000 ccp_sha_update fndecl 0 63000 NULL
++disable_so_chipco_pctl_clockfreqlimit_fndecl_63008 chipco_pctl_clockfreqlimit fndecl 0 63008 NULL
++disable_so_sys_gettimeofday_fndecl_63009 sys_gettimeofday fndecl 0 63009 NULL
++disable_so_ext4_read_block_bitmap_fndecl_63029 ext4_read_block_bitmap fndecl 2 63029 NULL
++disable_so_sis900_interrupt_fndecl_63044 sis900_interrupt fndecl 1 63044 NULL
++disable_so_tv_usec_compat_timeval_63056 tv_usec compat_timeval 0 63056 NULL
++disable_so_timeout_ct_entry_24xx_63060 timeout ct_entry_24xx 0 63060 NULL
++disable_so_ib_reset_mad_timeout_fndecl_63061 ib_reset_mad_timeout fndecl 2 63061 NULL
++disable_so_register_lapic_address_fndecl_63066 register_lapic_address fndecl 1 63066 NULL
++disable_so_sgl_dma_addr_genwqe_sgl_63082 sgl_dma_addr genwqe_sgl 0 63082 NULL
++disable_so_nf_conntrack_hash_rnd_vardecl_63088 nf_conntrack_hash_rnd vardecl 0 63088 NULL
++disable_so_snd_emu10k1_ptr_write_fndecl_63094 snd_emu10k1_ptr_write fndecl 2-3-4 63094 NULL
++disable_so_index_svm_direct_access_msrs_63098 index svm_direct_access_msrs 0 63098 NULL
++disable_so_crypto_authenc_genicv_fndecl_63111 crypto_authenc_genicv fndecl 0 63111 NULL
++disable_so_pcf50633_rtc_set_time_fndecl_63123 pcf50633_rtc_set_time fndecl 0 63123 NULL
++disable_so_hsyn_pol_hdmi_timings_63136 hsyn_pol hdmi_timings 0 63136 NULL
++disable_so_ri_addr_gfs2_rindex_63138 ri_addr gfs2_rindex 0 63138 NULL
++disable_so_nr_oaktrail_hdmi_clock_63155 nr oaktrail_hdmi_clock 0 63155 NULL nohasharray
++disable_so_dma_addr_nic_63155 dma_addr nic 0 63155 &disable_so_nr_oaktrail_hdmi_clock_63155
++disable_so_dlm_hash2nodeid_fndecl_63162 dlm_hash2nodeid fndecl 2 63162 NULL
++disable_so_efx_enable_interrupts_fndecl_63163 efx_enable_interrupts fndecl 0 63163 NULL nohasharray
++disable_so_freq_offset_rt2x00_dev_63163 freq_offset rt2x00_dev 0 63163 &disable_so_efx_enable_interrupts_fndecl_63163
++disable_so_dma_addr_il_queue_63172 dma_addr il_queue 0 63172 NULL
++disable_so_buf_addr_hi_fcoe_bd_ctx_63176 buf_addr_hi fcoe_bd_ctx 0 63176 NULL
++disable_so_i2c_addr_lgdt3305_config_63179 i2c_addr lgdt3305_config 0 63179 NULL nohasharray
++disable_so_sched_addr_ath9k_hw_mci_63179 sched_addr ath9k_hw_mci 0 63179 &disable_so_i2c_addr_lgdt3305_config_63179
++disable_so_mic_x100_get_boot_addr_fndecl_63190 mic_x100_get_boot_addr fndecl 0 63190 NULL
++disable_so_i2c_clock_period_ivtv_options_63202 i2c_clock_period ivtv_options 0 63202 NULL
++disable_so_f2fs_init_crypto_fndecl_63218 f2fs_init_crypto fndecl 0 63218 NULL
++disable_so_snd_ymfpci_interrupt_fndecl_63224 snd_ymfpci_interrupt fndecl 1 63224 NULL
++disable_so_set_tsc_mode_fndecl_63231 set_tsc_mode fndecl 0-1 63231 NULL
++disable_so_update_crypto_ahash_63235 update crypto_ahash 0 63235 NULL
++disable_so_base_freq_stv0297_state_63242 base_freq stv0297_state 0 63242 NULL
++disable_so_mounted_uid_ncp_mount_data_63250 mounted_uid ncp_mount_data 0 63250 NULL
++disable_so_wall_clock_kvm_arch_63252 wall_clock kvm_arch 0 63252 NULL nohasharray
++disable_so_system_clock_counter_kfd_ioctl_get_clock_counters_args_63252 system_clock_counter kfd_ioctl_get_clock_counters_args 0 63252 &disable_so_wall_clock_kvm_arch_63252
++disable_so_r100_mm_wreg_slow_fndecl_63255 r100_mm_wreg_slow fndecl 2-3 63255 NULL
++disable_so_ocrdma_query_gid_fndecl_63259 ocrdma_query_gid fndecl 0-3 63259 NULL
++disable_so_sha1_mb_async_init_fndecl_63263 sha1_mb_async_init fndecl 0 63263 NULL
++disable_so_i_mtime_nsec_nilfs_inode_63266 i_mtime_nsec nilfs_inode 0 63266 NULL
++disable_so_s_pkt_delay_ipath_qp_63270 s_pkt_delay ipath_qp 0 63270 NULL
++disable_so_ecryptfs_read_update_atime_fndecl_63272 ecryptfs_read_update_atime fndecl 0 63272 NULL
++disable_so_seq_auto_out_pin_63274 seq auto_out_pin 0 63274 NULL
++disable_so_pmdown_time_show_fndecl_63283 pmdown_time_show fndecl 0 63283 NULL
++disable_so_pwm_freq_div_dib7000m_config_63285 pwm_freq_div dib7000m_config 0 63285 NULL
++disable_so_bit_width_acpi_generic_address_63286 bit_width acpi_generic_address 0 63286 NULL
++disable_so_addr_sg_entry_63287 addr sg_entry 0 63287 NULL
++disable_so_ocfs2_pack_timespec_fndecl_63293 ocfs2_pack_timespec fndecl 0 63293 NULL
++disable_so_ipv6_addr_label_fndecl_63298 ipv6_addr_label fndecl 3-4 63298 NULL
++disable_so_chgfreq_cs42l56_platform_data_63299 chgfreq cs42l56_platform_data 0 63299 NULL
++disable_so_sco_sock_set_timer_fndecl_63304 sco_sock_set_timer fndecl 2 63304 NULL nohasharray
++disable_so_skb_get_hash_fndecl_63304 skb_get_hash fndecl 0 63304 &disable_so_sco_sock_set_timer_fndecl_63304
++disable_so_timeout_tsk_mgmt_entry_63307 timeout tsk_mgmt_entry 0 63307 NULL
++disable_so_sysctl_slot_timeout_vardecl_63317 sysctl_slot_timeout vardecl 0 63317 NULL
++disable_so_set_sadb_address_fndecl_63320 set_sadb_address fndecl 2 63320 NULL
++disable_so_handle_frequent_errors_fndecl_63324 handle_frequent_errors fndecl 4 63324 NULL
++disable_so_last_ramp_up_time_bfad_itnim_s_63328 last_ramp_up_time bfad_itnim_s 0 63328 NULL
++disable_so_timeout_vardecl_xen_wdt_c_63339 timeout vardecl_xen_wdt.c 0 63339 NULL nohasharray
++disable_so_padlock_sha_export_fndecl_63339 padlock_sha_export fndecl 0 63339 &disable_so_timeout_vardecl_xen_wdt_c_63339
++disable_so_mt9t112_set_pll_dividers_fndecl_63341 mt9t112_set_pll_dividers fndecl 2-3-4-5-6-7-8-9-10-0 63341 NULL
++disable_so_uv_cpu_to_pnode_fndecl_63343 uv_cpu_to_pnode fndecl 0 63343 NULL
++disable_so_gsc_runtime_resume_fndecl_63355 gsc_runtime_resume fndecl 0 63355 NULL
++disable_so_pci_bus_find_capability_fndecl_63357 pci_bus_find_capability fndecl 0-2 63357 NULL
++disable_so_addr_af9013_reg_bit_63363 addr af9013_reg_bit 0 63363 NULL
++disable_so_ath5k_eeprom_bin2freq_fndecl_63364 ath5k_eeprom_bin2freq fndecl 0-2 63364 NULL
++disable_so_sd_mtime_stat_data_63370 sd_mtime stat_data 0 63370 NULL
++disable_so_next_hscb_busaddr_hardware_scb_63375 next_hscb_busaddr hardware_scb 0 63375 NULL nohasharray
++disable_so_cpufreq_set_policy_fndecl_63375 cpufreq_set_policy fndecl 0 63375 &disable_so_next_hscb_busaddr_hardware_scb_63375
++disable_so_cache_tsc_vardecl_max8925_core_c_63377 cache_tsc vardecl_max8925-core.c 0 63377 NULL
++disable_so_xtime_remainder_timekeeper_63380 xtime_remainder timekeeper 0 63380 NULL
++disable_so_st_uid___old_kernel_stat_63381 st_uid __old_kernel_stat 0 63381 NULL
++disable_so_timeout_b_tpm_vendor_specific_63382 timeout_b tpm_vendor_specific 0 63382 NULL
++disable_so_vol_bit_shift_anatop_regulator_63384 vol_bit_shift anatop_regulator 0 63384 NULL
++disable_so_msr_offset_intel_uncore_type_63385 msr_offset intel_uncore_type 0 63385 NULL
++disable_so_random_write_fndecl_63387 random_write fndecl 0-3 63387 NULL
++disable_so_bcma_chipco_watchdog_timer_set_ms_wdt_fndecl_63389 bcma_chipco_watchdog_timer_set_ms_wdt fndecl 2-0 63389 NULL
++disable_so__div_round_closest_fndecl_63400 _div_round_closest fndecl 0-3-2 63400 NULL
++disable_so_acpi_ut_strtoul64_fndecl_63410 acpi_ut_strtoul64 fndecl 0 63410 NULL
++disable_so_alarm_time_xgene_rtc_dev_63411 alarm_time xgene_rtc_dev 0 63411 NULL nohasharray
++disable_so_dynamic_ps_timeout_ieee80211_conf_63411 dynamic_ps_timeout ieee80211_conf 0 63411 &disable_so_alarm_time_xgene_rtc_dev_63411 nohasharray
++disable_so_split_timeout_cycles_fw_card_63411 split_timeout_cycles fw_card 0 63411 &disable_so_dynamic_ps_timeout_ieee80211_conf_63411
++disable_so_bitstream_get_bits_fndecl_63423 bitstream_get_bits fndecl 0-3 63423 NULL
++disable_so_tw_timeout_inet_timewait_sock_63424 tw_timeout inet_timewait_sock 0 63424 NULL
++disable_so_drbg_kcapi_hash_fndecl_63433 drbg_kcapi_hash fndecl 0 63433 NULL
++disable_so_wait_for_completion_interruptible_fndecl_63448 wait_for_completion_interruptible fndecl 0 63448 NULL
++disable_so_sys_clock_nanosleep_fndecl_63449 sys_clock_nanosleep fndecl 1 63449 NULL
++disable_so_nouveau_hw_get_clock_fndecl_63456 nouveau_hw_get_clock fndecl 0-2 63456 NULL
++disable_so_nilfs_btree_propagate_gc_fndecl_63460 nilfs_btree_propagate_gc fndecl 0 63460 NULL
++disable_so_crypto_xcbc_module_init_fndecl_63471 crypto_xcbc_module_init fndecl 0 63471 NULL
++disable_so_amradio_set_freq_fndecl_63479 amradio_set_freq fndecl 0-2 63479 NULL
++disable_so_task_getpgid_security_operations_63489 task_getpgid security_operations 0 63489 NULL nohasharray
++disable_so_crypto_register_akcipher_fndecl_63489 crypto_register_akcipher fndecl 0 63489 &disable_so_task_getpgid_security_operations_63489
++disable_so_netxen_nic_map_indirect_address_128M_fndecl_63490 netxen_nic_map_indirect_address_128M fndecl 2 63490 NULL
++disable_so_vnic_intr_coalescing_timer_set_fndecl_63494 vnic_intr_coalescing_timer_set fndecl 2 63494 NULL
++disable_so_chipset_settings_chipset_bus_clock_list_entry_63497 chipset_settings chipset_bus_clock_list_entry 0 63497 NULL
++disable_so_new_cycle_state_xhci_dequeue_state_63499 new_cycle_state xhci_dequeue_state 0 63499 NULL
++disable_so_radeon_legacy_set_engine_clock_fndecl_63512 radeon_legacy_set_engine_clock fndecl 2 63512 NULL
++disable_so_addr___ctrl_63513 addr __ctrl 0 63513 NULL
++disable_so_asix_get_phy_addr_fndecl_63534 asix_get_phy_addr fndecl 0 63534 NULL
++disable_so_time_in_queue_dm_stat_percpu_63541 time_in_queue dm_stat_percpu 0 63541 NULL
++disable_so_ufshcd_pltfrm_runtime_suspend_fndecl_63543 ufshcd_pltfrm_runtime_suspend fndecl 0 63543 NULL
++disable_so_spu_port_delay_if_spi_card_63548 spu_port_delay if_spi_card 0 63548 NULL nohasharray
++disable_so_cs_cpufreq_governor_dbs_fndecl_63548 cs_cpufreq_governor_dbs fndecl 0 63548 &disable_so_spu_port_delay_if_spi_card_63548
++disable_so_type_ceph_crypto_key_63565 type ceph_crypto_key 0 63565 NULL
++disable_so_bus_settle_time_blogic_adapter_63575 bus_settle_time blogic_adapter 0 63575 NULL
++disable_so_ref_divider_aty128_constants_63576 ref_divider aty128_constants 0 63576 NULL
++disable_so_remote_qpn_cm_timewait_info_63581 remote_qpn cm_timewait_info 0 63581 NULL
++disable_so_boot_time_fc_lport_63585 boot_time fc_lport 0 63585 NULL
++disable_so_imx_phy_reg_addressing_fndecl_63588 imx_phy_reg_addressing fndecl 0 63588 NULL
++disable_so_irq_set_irq_type_fndecl_63590 irq_set_irq_type fndecl 2-1 63590 NULL
++disable_so_appl_ptr_snd_rawmidi_runtime_63609 appl_ptr snd_rawmidi_runtime 0 63609 NULL
++disable_so_snd_hdac_regmap_write_raw_fndecl_63613 snd_hdac_regmap_write_raw fndecl 0-3-2 63613 NULL
++disable_so_control_addr_qla82xx_md_entry_cache_63615 control_addr qla82xx_md_entry_cache 0 63615 NULL
++disable_so_nla_put_ipaddr6_fndecl_63618 nla_put_ipaddr6 fndecl 0 63618 NULL
++disable_so_da9052_wdt_set_timeout_fndecl_63621 da9052_wdt_set_timeout fndecl 2-0 63621 NULL
++disable_so_cstime_signal_struct_63629 cstime signal_struct 0 63629 NULL
++disable_so_dm_region_hash_create_fndecl_63649 dm_region_hash_create fndecl 5-8-9 63649 NULL
++disable_so_krng_get_random_fndecl_63655 krng_get_random fndecl 3 63655 NULL
++disable_so_r9701_get_datetime_fndecl_63665 r9701_get_datetime fndecl 0 63665 NULL
++disable_so_crypto_rfc3686_crypt_fndecl_63668 crypto_rfc3686_crypt fndecl 0 63668 NULL
++disable_so_xen_late_init_mcelog_fndecl_63669 xen_late_init_mcelog fndecl 0 63669 NULL
++disable_so_prot_res_gid_63673 prot res_gid 0 63673 NULL
++disable_so_ext3_valid_block_bitmap_fndecl_63688 ext3_valid_block_bitmap fndecl 3 63688 NULL
++disable_so_smt_timer_start_fndecl_63691 smt_timer_start fndecl 3 63691 NULL nohasharray
++disable_so_port_tomoyo_inet_addr_info_63691 port tomoyo_inet_addr_info 0 63691 &disable_so_smt_timer_start_fndecl_63691
++disable_so_generic_check_addressable_fndecl_63696 generic_check_addressable fndecl 1-2 63696 NULL nohasharray
++disable_so___check_object_size_fndecl_63696 __check_object_size fndecl 2 63696 &disable_so_generic_check_addressable_fndecl_63696
++disable_so_r820t_sleep_fndecl_63717 r820t_sleep fndecl 0 63717 NULL
++disable_so_lgdt3305_read_signal_strength_fndecl_63720 lgdt3305_read_signal_strength fndecl 0 63720 NULL
++disable_so_wl1251_acx_sleep_auth_fndecl_63727 wl1251_acx_sleep_auth fndecl 0 63727 NULL
++disable_so_clk_out_div_ts2020_priv_63728 clk_out_div ts2020_priv 0 63728 NULL
++disable_so_sys_clock_adjtime_fndecl_63736 sys_clock_adjtime fndecl 1 63736 NULL
++disable_so_radio_addr_cx88_board_63745 radio_addr cx88_board 0 63745 NULL
++disable_so_input_print_bitmap_fndecl_63755 input_print_bitmap fndecl 0-2 63755 NULL
++disable_so_memstick_set_rw_addr_fndecl_63757 memstick_set_rw_addr fndecl 0 63757 NULL
++disable_so_simple_strtoll_fndecl_63758 simple_strtoll fndecl 0 63758 NULL
++disable_so___mv88e6xxx_read_addr_fndecl_63766 __mv88e6xxx_read_addr fndecl 0 63766 NULL
++disable_so_nf_conntrack_timeout_init_fndecl_63771 nf_conntrack_timeout_init fndecl 0 63771 NULL
++disable_so_ob_baseaddr_h_mvumi_hs_page4_63775 ob_baseaddr_h mvumi_hs_page4 0 63775 NULL
++disable_so_stored_addr_hi_amd_iommu_63784 stored_addr_hi amd_iommu 0 63784 NULL
++disable_so_HSyncEnd_xtimings_63785 HSyncEnd xtimings 0 63785 NULL
++disable_so_addr_h_xfer_desc_63789 addr_h xfer_desc 0 63789 NULL
++disable_so_i2c_address_stb6000_priv_63790 i2c_address stb6000_priv 0 63790 NULL
++disable_so_runtime_expires_cfs_bandwidth_63800 runtime_expires cfs_bandwidth 0 63800 NULL
++disable_so_account_steal_time_fndecl_63806 account_steal_time fndecl 1 63806 NULL
++disable_so_sleep_max_sched_statistics_63826 sleep_max sched_statistics 0 63826 NULL
++disable_so_usecs_to_jiffies_fndecl_63832 usecs_to_jiffies fndecl 0-1 63832 NULL
++disable_so_dsp_iram_offset_sst_addr_63833 dsp_iram_offset sst_addr 0 63833 NULL
++disable_so_central_freq_skl_wrpll_params_63836 central_freq skl_wrpll_params 0 63836 NULL
++disable_so_bitmap_release_region_fndecl_63837 bitmap_release_region fndecl 2-3 63837 NULL
++disable_so_dx_hack_hash_signed_fndecl_63847 dx_hack_hash_signed fndecl 0-2 63847 NULL
++disable_so_qhead_snd_timer_user_63855 qhead snd_timer_user 0 63855 NULL
++disable_so_table1_addr_ipw2100_ordinals_63856 table1_addr ipw2100_ordinals 0 63856 NULL
++disable_so_dec_cd_paddr_qat_alg_aead_ctx_63860 dec_cd_paddr qat_alg_aead_ctx 0 63860 NULL
++disable_so_ppll_div_3_radeon_regs_63862 ppll_div_3 radeon_regs 0 63862 NULL
++disable_so_sys_addr_to_input_addr_fndecl_63863 sys_addr_to_input_addr fndecl 0-2 63863 NULL
++disable_so_dma_rx_timeout_lpuart_port_63878 dma_rx_timeout lpuart_port 0 63878 NULL
++disable_so_dma_addr_t4_rq_63886 dma_addr t4_rq 0 63886 NULL
++disable_so_radeon_semaphore_emit_signal_fndecl_63895 radeon_semaphore_emit_signal fndecl 2 63895 NULL
++disable_so_probe_timeout_ieee80211_if_managed_63910 probe_timeout ieee80211_if_managed 0 63910 NULL
++disable_so_mthca_MAD_IFC_fndecl_63923 mthca_MAD_IFC fndecl 4-0 63923 NULL
++disable_so_get_strength_time_mb86a20s_state_63926 get_strength_time mb86a20s_state 0 63926 NULL
++disable_so_rx_frequency_wl1273_device_63933 rx_frequency wl1273_device 0 63933 NULL nohasharray
++disable_so_arcmsr_module_init_fndecl_63933 arcmsr_module_init fndecl 0 63933 &disable_so_rx_frequency_wl1273_device_63933
++disable_so_timeout_vardecl_alim1535_wdt_c_63935 timeout vardecl_alim1535_wdt.c 0 63935 NULL
++disable_so_query_dv_timings_size_vivid_dev_63943 query_dv_timings_size vivid_dev 0 63943 NULL
++disable_so_nf_nat_sdp_addr_fndecl_63949 nf_nat_sdp_addr fndecl 2-3 63949 NULL
++disable_so_shash_finup_unaligned_fndecl_63955 shash_finup_unaligned fndecl 0-3 63955 NULL
++disable_so_rdmsr_on_cpu_fndecl_63956 rdmsr_on_cpu fndecl 0-1 63956 NULL
++disable_so_qlge_set_mac_address_fndecl_63968 qlge_set_mac_address fndecl 0 63968 NULL
++disable_so_config_ipaddr_qlcnic_nic_template_63973 config_ipaddr qlcnic_nic_template 2 63973 NULL
++disable_so_timer_enable_snd_opl3_63986 timer_enable snd_opl3 0 63986 NULL
++disable_so_virtio16_to_cpu_fndecl_63994 virtio16_to_cpu fndecl 0-2 63994 NULL
++disable_so_ecryptfs_init_crypto_fndecl_63995 ecryptfs_init_crypto fndecl 0 63995 NULL
++disable_so_address_ccp_dma_info_64001 address ccp_dma_info 0 64001 NULL
++disable_so_rx_packet_ring_addr_acx_data_path_params_resp_64002 rx_packet_ring_addr acx_data_path_params_resp 0 64002 NULL nohasharray
++disable_so_cfg80211_wext_siwfreq_fndecl_64002 cfg80211_wext_siwfreq fndecl 0 64002 &disable_so_rx_packet_ring_addr_acx_data_path_params_resp_64002
++disable_so_settime_security_operations_64006 settime security_operations 0 64006 NULL nohasharray
++disable_so_SYSC_timerfd_create_fndecl_64006 SYSC_timerfd_create fndecl 2 64006 &disable_so_settime_security_operations_64006
++disable_so_cryptd_hash_setkey_fndecl_64014 cryptd_hash_setkey fndecl 0-3 64014 NULL
++disable_so_irq_net_device_64015 irq net_device 0 64015 NULL
++disable_so_sysfs_show_available_clocksources_fndecl_64024 sysfs_show_available_clocksources fndecl 0 64024 NULL
++disable_so_s_frequency_v4l2_subdev_tuner_ops_64037 s_frequency v4l2_subdev_tuner_ops 0 64037 NULL
++disable_so_tcp_v6_md5_hash_pseudoheader_fndecl_64051 tcp_v6_md5_hash_pseudoheader fndecl 4 64051 NULL
++disable_so_ieee80211_queue_delayed_work_fndecl_64056 ieee80211_queue_delayed_work fndecl 3 64056 NULL
++disable_so_rtc_set_time_fndecl_64057 rtc_set_time fndecl 0 64057 NULL
++disable_so_addr_i2c_msg_64074 addr i2c_msg 0 64074 NULL
++disable_so_cea_mode_alternate_clock_fndecl_64078 cea_mode_alternate_clock fndecl 0 64078 NULL
++disable_so_cfreq_esp_64080 cfreq esp 0 64080 NULL
++disable_so___irq_get_desc_lock_fndecl_64081 __irq_get_desc_lock fndecl 1 64081 NULL
++disable_so_pticks_snd_timer_instance_64084 pticks snd_timer_instance 0 64084 NULL
++disable_so_ip6addrlbl_get_fndecl_64092 ip6addrlbl_get fndecl 0 64092 NULL nohasharray
++disable_so_ocfs2_desc_bitmap_to_cluster_off_fndecl_64092 ocfs2_desc_bitmap_to_cluster_off fndecl 0-2-3 64092 &disable_so_ip6addrlbl_get_fndecl_64092
++disable_so_nilfs_btree_commit_convert_and_insert_fndecl_64095 nilfs_btree_commit_convert_and_insert fndecl 2-6 64095 NULL
++disable_so_prandom_u32_fndecl_64118 prandom_u32 fndecl 0 64118 NULL
++disable_so_mask_ds1685_rtc_time_regs_64121 mask ds1685_rtc_time_regs 0 64121 NULL
++disable_so_ic_servaddr_vardecl_64122 ic_servaddr vardecl 0 64122 NULL
++disable_so_hashval2_0_rx_pkt_hdr1_64124 hashval2_0 rx_pkt_hdr1 0 64124 NULL
++disable_so_xfrm_addr_equal_fndecl_64155 xfrm_addr_equal fndecl 3 64155 NULL
++disable_so_cq_addr_hi_fcoe_kwqe_conn_offload2_64157 cq_addr_hi fcoe_kwqe_conn_offload2 0 64157 NULL
++disable_so_rq_tmo_jiffies_srp_target_port_64158 rq_tmo_jiffies srp_target_port 0 64158 NULL
++disable_so_xen_sysfs_uuid_init_fndecl_64160 xen_sysfs_uuid_init fndecl 0 64160 NULL
++disable_so___dm_stat_init_temporary_percpu_totals_fndecl_64162 __dm_stat_init_temporary_percpu_totals fndecl 3 64162 NULL
++disable_so_pcxhr_set_clock_fndecl_64184 pcxhr_set_clock fndecl 2-0 64184 NULL
++disable_so_bitmap_endwrite_fndecl_64188 bitmap_endwrite fndecl 2-3 64188 NULL
++disable_so_pages_bitmap_counts_64197 pages bitmap_counts 0 64197 NULL
++disable_so_base_address_dmar_rmrr_unit_64199 base_address dmar_rmrr_unit 0 64199 NULL
++disable_so_udp_conn_schedule_fndecl_64203 udp_conn_schedule fndecl 1 64203 NULL
++disable_so_max_timebase_img_pwm_soc_data_64210 max_timebase img_pwm_soc_data 0 64210 NULL
++disable_so_cycles_at_suspend_vardecl_timekeeping_c_64211 cycles_at_suspend vardecl_timekeeping.c 0 64211 NULL nohasharray
++disable_so_get_unmapped_area_fndecl_64211 get_unmapped_area fndecl 0-2-4-5 64211 &disable_so_cycles_at_suspend_vardecl_timekeeping_c_64211
++disable_so_addr_psb_pipe_64215 addr psb_pipe 0 64215 NULL
++disable_so_acpi_subsys_runtime_suspend_fndecl_64232 acpi_subsys_runtime_suspend fndecl 0 64232 NULL
++disable_so_pci_bus_read_config_word_fndecl_64248 pci_bus_read_config_word fndecl 0-2-3 64248 NULL
++disable_so_last_rx_timestamp_igb_adapter_64249 last_rx_timestamp igb_adapter 0 64249 NULL
++disable_so_snd_timer_user_ioctl_compat_fndecl_64250 snd_timer_user_ioctl_compat fndecl 0 64250 NULL
++disable_so_tag_reg_addr_qla82xx_md_entry_cache_64251 tag_reg_addr qla82xx_md_entry_cache 0 64251 NULL
++disable_so_cond_wait_interruptible_timeout_irqrestore_fndecl_64253 cond_wait_interruptible_timeout_irqrestore fndecl 2-0 64253 NULL
++disable_so_signr_usbdevfs_disconnectsignal32_64254 signr usbdevfs_disconnectsignal32 0 64254 NULL
++disable_so_inet6_addr_del_fndecl_64255 inet6_addr_del fndecl 0-2-5-3 64255 NULL
++disable_so_pci_quatech_clock_fndecl_64264 pci_quatech_clock fndecl 0 64264 NULL nohasharray
++disable_so_crypto_null_mod_init_fndecl_64264 crypto_null_mod_init fndecl 0 64264 &disable_so_pci_quatech_clock_fndecl_64264
++disable_so_kvm_write_wall_clock_fndecl_64267 kvm_write_wall_clock fndecl 2 64267 NULL
++disable_so_smk_write_netlbladdr_fndecl_64270 smk_write_netlbladdr fndecl 3 64270 NULL
++disable_so_iscsi_nacl_attrib_show_dataout_timeout_fndecl_64272 iscsi_nacl_attrib_show_dataout_timeout fndecl 0 64272 NULL
++disable_so_sched_setscheduler_nocheck_fndecl_64274 sched_setscheduler_nocheck fndecl 2-0 64274 NULL
++disable_so_target_stat_scsi_auth_intr_show_attr_creation_time_fndecl_64275 target_stat_scsi_auth_intr_show_attr_creation_time fndecl 0 64275 NULL
++disable_so_dx_hack_hash_unsigned_fndecl_64277 dx_hack_hash_unsigned fndecl 0-2 64277 NULL
++disable_so_xsdt_physical_address_acpi_table_rsdp_64302 xsdt_physical_address acpi_table_rsdp 0 64302 NULL
++disable_so_timeout_watchdog_device_64303 timeout watchdog_device 0 64303 NULL
++disable_so_crypto_shash_digest_fndecl_64307 crypto_shash_digest fndecl 0-3 64307 NULL
++disable_so_jiffies_ati_remote2_64334 jiffies ati_remote2 0 64334 NULL
++disable_so_target_stat_scsi_lu_show_attr_creation_time_fndecl_64336 target_stat_scsi_lu_show_attr_creation_time fndecl 0 64336 NULL
++disable_so_intel_increase_pllclock_fndecl_64342 intel_increase_pllclock fndecl 2 64342 NULL
++disable_so_wm8350_rtc_settime_fndecl_64353 wm8350_rtc_settime fndecl 0 64353 NULL
++disable_so_saa711x_s_crystal_freq_fndecl_64358 saa711x_s_crystal_freq fndecl 2 64358 NULL
++disable_so_get_div_fndecl_64359 get_div fndecl 0 64359 NULL
++disable_so_dln2_spi_runtime_resume_fndecl_64364 dln2_spi_runtime_resume fndecl 0 64364 NULL
++disable_so_register_address_fndecl_64366 register_address fndecl 0-2 64366 NULL
++disable_so_ipath_guid_ipath_devdata_64367 ipath_guid ipath_devdata 0 64367 NULL
++disable_so_dma_address_edgeport_port_64376 dma_address edgeport_port 0 64376 NULL
++disable_so_tlb_rd_addr_vlv_s0ix_state_64377 tlb_rd_addr vlv_s0ix_state 0 64377 NULL
++disable_so_br_mdb_rehash_fndecl_64384 br_mdb_rehash fndecl 2 64384 NULL
++disable_so_irq_ti_tscadc_dev_64390 irq ti_tscadc_dev 0 64390 NULL
++disable_so_rh_hash_fndecl_64392 rh_hash fndecl 0-2 64392 NULL
++disable_so_addr_Vmxnet3_RxDesc_64395 addr Vmxnet3_RxDesc 0 64395 NULL
++disable_so_wptr_gpu_addr_kernel_queue_64396 wptr_gpu_addr kernel_queue 0 64396 NULL
++disable_so__regmap_raw_write_fndecl_64399 _regmap_raw_write fndecl 2-4-0 64399 NULL
++disable_so_crypto_ahash_walk_first_fndecl_64405 crypto_ahash_walk_first fndecl 0 64405 NULL
++disable_so_host_start_efx_ptp_timeset_64407 host_start efx_ptp_timeset 0 64407 NULL
++disable_so___compat_put_timeval_fndecl_64422 __compat_put_timeval fndecl 0 64422 NULL nohasharray
++disable_so_img_ir_timings_preprocess_fndecl_64422 img_ir_timings_preprocess fndecl 2 64422 &disable_so___compat_put_timeval_fndecl_64422
++disable_so_addr_sst_byt_address_info_64439 addr sst_byt_address_info 0 64439 NULL nohasharray
++disable_so_hashhi_smsc911x_data_64439 hashhi smsc911x_data 0 64439 &disable_so_addr_sst_byt_address_info_64439
++disable_so_do_set_clk_freq_fndecl_64447 do_set_clk_freq fndecl 2 64447 NULL
++disable_so_sctp_bind_addr_dup_fndecl_64448 sctp_bind_addr_dup fndecl 3 64448 NULL
++disable_so_rtsc_init_fndecl_64458 rtsc_init fndecl 3-4 64458 NULL
++disable_so_bg_inode_bitmap_ext3_group_desc_64471 bg_inode_bitmap ext3_group_desc 0 64471 NULL
++disable_so_qla8044_wr_reg_indirect_fndecl_64475 qla8044_wr_reg_indirect fndecl 2-3 64475 NULL
++disable_so_switch_time_wl18xx_cmd_channel_switch_64491 switch_time wl18xx_cmd_channel_switch 0 64491 NULL
++disable_so_address_acpi_table_desc_64497 address acpi_table_desc 0 64497 NULL
++disable_so_loading_timeout_vardecl_firmware_class_c_64498 loading_timeout vardecl_firmware_class.c 0 64498 NULL nohasharray
++disable_so_ceph_aes_encrypt_fndecl_64498 ceph_aes_encrypt fndecl 2-6 64498 &disable_so_loading_timeout_vardecl_firmware_class_c_64498
++disable_so_xfrm_state_addr_cmp_fndecl_64504 xfrm_state_addr_cmp fndecl 3 64504 NULL
++disable_so_gc_timer_value___bridge_info_64506 gc_timer_value __bridge_info 0 64506 NULL
++disable_so_x25_addr_aton_fndecl_64507 x25_addr_aton fndecl 0 64507 NULL
++disable_so_nci_request_fndecl_64508 nci_request fndecl 0-4 64508 NULL
++disable_so_ufs_get_de_namlen_fndecl_64510 ufs_get_de_namlen fndecl 0 64510 NULL
++disable_so_crypto_blkcipher_encrypt_iv_fndecl_64517 crypto_blkcipher_encrypt_iv fndecl 0-4 64517 NULL
++disable_so_bfa_fcs_lport_ns_gid_ft_response_fndecl_64527 bfa_fcs_lport_ns_gid_ft_response fndecl 4-5-6 64527 NULL
++disable_so_memtype_devlog_memaddr16_devlog_fw_devlog_cmd_64529 memtype_devlog_memaddr16_devlog fw_devlog_cmd 0 64529 NULL
++disable_so_osc_clock_deviation_drxd_state_64533 osc_clock_deviation drxd_state 0 64533 NULL
++disable_so_mwl8k_cmd_del_mac_addr_fndecl_64540 mwl8k_cmd_del_mac_addr fndecl 0 64540 NULL
++disable_so_sysctl_llc2_ack_timeout_vardecl_64541 sysctl_llc2_ack_timeout vardecl 0 64541 NULL
++disable_so_dm_hash_init_fndecl_64547 dm_hash_init fndecl 0 64547 NULL
++disable_so_setup_cluster_bitmap_fndecl_64549 setup_cluster_bitmap fndecl 4-5-6-7 64549 NULL
++disable_so_regcache_rbtree_get_register_fndecl_64551 regcache_rbtree_get_register fndecl 0-3 64551 NULL
++disable_so_seq_put_decimal_ll_fndecl_64554 seq_put_decimal_ll fndecl 3 64554 NULL
++disable_so_do_timerfd_gettime_fndecl_64594 do_timerfd_gettime fndecl 1 64594 NULL
++disable_so_ctrl_addr___cache_64596 ctrl_addr __cache 0 64596 NULL
++disable_so_writepage_address_space_operations_64597 writepage address_space_operations 0 64597 NULL
++disable_so_hcd_pci_runtime_suspend_fndecl_64602 hcd_pci_runtime_suspend fndecl 0 64602 NULL
++disable_so_maxadj_clocksource_64615 maxadj clocksource 0 64615 NULL nohasharray
++disable_so_delay_lms283gf05_seq_64615 delay lms283gf05_seq 0 64615 &disable_so_maxadj_clocksource_64615
++disable_so_stv0900_get_lock_timeout_fndecl_64620 stv0900_get_lock_timeout fndecl 3 64620 NULL
++disable_so_clk_div_tifm_sd_64621 clk_div tifm_sd 0 64621 NULL
++disable_so_sleep_dvb_frontend_ops_64644 sleep dvb_frontend_ops 0 64644 NULL
++disable_so_tuner_addr_au0828_board_64647 tuner_addr au0828_board 0 64647 NULL
++disable_so_ds1305_get_time_fndecl_64652 ds1305_get_time fndecl 0 64652 NULL
++disable_so_efx_soft_enable_interrupts_fndecl_64659 efx_soft_enable_interrupts fndecl 0 64659 NULL
++disable_so_elements_bitmap_ip_64674 elements bitmap_ip 0 64674 NULL
++disable_so_pcf8563_get_datetime_fndecl_64678 pcf8563_get_datetime fndecl 0 64678 NULL
++disable_so_buf_dma_addr_slgt_desc_64694 buf_dma_addr slgt_desc 0 64694 NULL
++disable_so_twl_aen_sync_time_fndecl_64703 twl_aen_sync_time fndecl 2 64703 NULL
++disable_so_exit_signal_task_struct_64705 exit_signal task_struct 0 64705 NULL
++disable_so_wm8804_runtime_resume_fndecl_64707 wm8804_runtime_resume fndecl 0 64707 NULL
++disable_so_adis16334_set_freq_fndecl_64712 adis16334_set_freq fndecl 0 64712 NULL
++disable_so_menf21bmc_wdt_settimeout_fndecl_64721 menf21bmc_wdt_settimeout fndecl 2-0 64721 NULL
++disable_so_sec_pps_ktime_64728 sec pps_ktime 0 64728 NULL nohasharray
++disable_so_virtual_tsc_khz_kvm_vcpu_arch_64728 virtual_tsc_khz kvm_vcpu_arch 0 64728 &disable_so_sec_pps_ktime_64728
++disable_so_set_timeout_fndecl_64741 set_timeout fndecl 1 64741 NULL
++disable_so_posix_timer_by_id_fndecl_64744 posix_timer_by_id fndecl 1 64744 NULL
++disable_so_sclk_fb_div_pll_ct_64751 sclk_fb_div pll_ct 0 64751 NULL nohasharray
++disable_so_add_msr_offset_fndecl_64751 add_msr_offset fndecl 1 64751 &disable_so_sclk_fb_div_pll_ct_64751
++disable_so_il_get_active_dwell_time_fndecl_64753 il_get_active_dwell_time fndecl 0-3 64753 NULL
++disable_so_crypto_cbc_decrypt_inplace_fndecl_64755 crypto_cbc_decrypt_inplace fndecl 0 64755 NULL
++disable_so_undertime_cbq_class_64773 undertime cbq_class 0 64773 NULL nohasharray
++disable_so_beacon_time_iwl_mac_data_ap_64773 beacon_time iwl_mac_data_ap 0 64773 &disable_so_undertime_cbq_class_64773
++disable_so_gpio_to_desc_fndecl_64785 gpio_to_desc fndecl 1 64785 NULL nohasharray
++disable_so_rtl8723_phy_calculate_bit_shift_fndecl_64785 rtl8723_phy_calculate_bit_shift fndecl 0-1 64785 &disable_so_gpio_to_desc_fndecl_64785
++disable_so_cherryview_rps_rpe_freq_fndecl_64792 cherryview_rps_rpe_freq fndecl 0 64792 NULL
++disable_so_phys_addr_matrox_device_64795 phys_addr matrox_device 0 64795 NULL
++disable_so_iwl_mvm_time_event_send_add_fndecl_64805 iwl_mvm_time_event_send_add fndecl 0 64805 NULL nohasharray
++disable_so_p_addr_ioat_pq_descriptor_64805 p_addr ioat_pq_descriptor 0 64805 &disable_so_iwl_mvm_time_event_send_add_fndecl_64805
++disable_so_hub_set_address_fndecl_64806 hub_set_address fndecl 2 64806 NULL
++disable_so_tegra_slink_runtime_resume_fndecl_64822 tegra_slink_runtime_resume fndecl 0 64822 NULL
++disable_so_head_hashfn_fndecl_64825 head_hashfn fndecl 0 64825 NULL
++disable_so_time_queue_snd_seq_client_port_64827 time_queue snd_seq_client_port 0 64827 NULL
++disable_so_bitmap_clear_ll_fndecl_64837 bitmap_clear_ll fndecl 0-2-3 64837 NULL
++disable_so_dma_beacon_response_time_ath9k_ops_config_64844 dma_beacon_response_time ath9k_ops_config 0 64844 NULL
++disable_so_aic_cal_start_time_ath9k_hw_aic_64848 aic_cal_start_time ath9k_hw_aic 0 64848 NULL
++disable_so_dram_freq_ast2300_dram_param_64872 dram_freq ast2300_dram_param 0 64872 NULL
++disable_so_uv_rtc_unset_timer_fndecl_64879 uv_rtc_unset_timer fndecl 1 64879 NULL
++disable_so_xclkpagefaultdelay_pll_ct_64883 xclkpagefaultdelay pll_ct 0 64883 NULL
++disable_so_ipvs_mt_addrcmp_fndecl_64884 ipvs_mt_addrcmp fndecl 4 64884 NULL
++disable_so_base_addr_adf_bar_64885 base_addr adf_bar 0 64885 NULL
++disable_so_ctimensec_fuse_attr_64891 ctimensec fuse_attr 0 64891 NULL
++disable_so_ims_pcu_ofn_bit_show_fndecl_64893 ims_pcu_ofn_bit_show fndecl 0 64893 NULL
++disable_so_regvalue__pll_div_64897 regvalue _pll_div 0 64897 NULL
++disable_so_mode_ata_timing_64902 mode ata_timing 0 64902 NULL
++disable_so_size_mtrr_sentry_64908 size mtrr_sentry 0 64908 NULL
++disable_so_i2c_addr_dibx000_i2c_master_64923 i2c_addr dibx000_i2c_master 0 64923 NULL
++disable_so_go7007_usb_read_interrupt_fndecl_64943 go7007_usb_read_interrupt fndecl 0 64943 NULL
++disable_so_db_page_addr_ocrdma_create_srq_uresp_64946 db_page_addr ocrdma_create_srq_uresp 0 64946 NULL
++disable_so_resolution_snd_timer_hardware_64953 resolution snd_timer_hardware 0 64953 NULL
++disable_so___virt_addr_valid_fndecl_64955 __virt_addr_valid fndecl 1 64955 NULL
++disable_so_nilfs_btree_insert_fndecl_64974 nilfs_btree_insert fndecl 0-2 64974 NULL
++disable_so_nearest_clock_vml_sys_64980 nearest_clock vml_sys 2-0 64980 NULL
++disable_so_crypto_cmac_module_init_fndecl_64981 crypto_cmac_module_init fndecl 0 64981 NULL
++disable_so_cx23885_set_freq_via_ops_fndecl_64991 cx23885_set_freq_via_ops fndecl 0 64991 NULL
++disable_so_hfdiv_code_dib0090_pll_64992 hfdiv_code dib0090_pll 0 64992 NULL
++disable_so_phonet_address_get_fndecl_65002 phonet_address_get fndecl 0-2 65002 NULL
++disable_so_xtime_sec_timekeeper_65003 xtime_sec timekeeper 0 65003 NULL
++disable_so_fll_outdiv__fll_div_65007 fll_outdiv _fll_div 0 65007 NULL
++disable_so_spi_max_frequency_ti_qspi_65008 spi_max_frequency ti_qspi 0 65008 NULL
++disable_so_switch_time_iwl6000_channel_switch_cmd_65010 switch_time iwl6000_channel_switch_cmd 0 65010 NULL
++disable_so_timeout_usdhi6_host_65012 timeout usdhi6_host 0 65012 NULL nohasharray
++disable_so_dirtied_time_when_inode_65012 dirtied_time_when inode 0 65012 &disable_so_timeout_usdhi6_host_65012
++disable_so_sys_settimeofday_fndecl_65021 sys_settimeofday fndecl 0 65021 NULL
++disable_so_dummy_clock_read_fndecl_65029 dummy_clock_read fndecl 0 65029 NULL
++disable_so_bitmap_load_fndecl_65032 bitmap_load fndecl 0 65032 NULL
++disable_so_crypto_register_aead_fndecl_65065 crypto_register_aead fndecl 0 65065 NULL
++disable_so_clock_frequency_sc18is602_platform_data_65066 clock_frequency sc18is602_platform_data 0 65066 NULL
++disable_so_zd1201_get_freq_fndecl_65079 zd1201_get_freq fndecl 0 65079 NULL
++disable_so_test_bitmaps_fndecl_65080 test_bitmaps fndecl 0 65080 NULL
++disable_so_before_ctime_nsec_nfsd4_change_info_65085 before_ctime_nsec nfsd4_change_info 0 65085 NULL
++disable_so_evtbd_addr_lo_host_cmd_ds_pcie_details_65086 evtbd_addr_lo host_cmd_ds_pcie_details 0 65086 NULL
++disable_so_cursor_addr_gma_crtc_65091 cursor_addr gma_crtc 0 65091 NULL
++disable_so_atomic_set_property_drm_crtc_funcs_65096 atomic_set_property drm_crtc_funcs 0-4 65096 NULL
++disable_so_add_timer_on_fndecl_65097 add_timer_on fndecl 2 65097 NULL
++disable_so_ccp_sha_final_fndecl_65104 ccp_sha_final fndecl 0 65104 NULL
++disable_so_ip_vs_dbg_addr_fndecl_65105 ip_vs_dbg_addr fndecl 1 65105 NULL
++disable_so_gl_hold_time_gfs2_glock_65107 gl_hold_time gfs2_glock 0 65107 NULL
++disable_so_crypto_shash_update_fndecl_65113 crypto_shash_update fndecl 0-3 65113 NULL
++disable_so_sleep_wake_pci_platform_pm_ops_65121 sleep_wake pci_platform_pm_ops 0 65121 NULL
++disable_so_snd_hdsp_info_clock_source_fndecl_65123 snd_hdsp_info_clock_source fndecl 0 65123 NULL
++disable_so_trace_clock_global_fndecl_65145 trace_clock_global fndecl 0 65145 NULL
++disable_so_timestamp_iwl_rx_phy_info_65153 timestamp iwl_rx_phy_info 0 65153 NULL
++disable_so_d_btimer_xfs_disk_dquot_65155 d_btimer xfs_disk_dquot 0 65155 NULL
++disable_so_mthca_mr_alloc_phys_fndecl_65161 mthca_mr_alloc_phys fndecl 7-5-2-4-0 65161 NULL
++disable_so_var_to_timing_fndecl_65170 var_to_timing fndecl 2-3 65170 NULL
++disable_so_p2div_pmu1_plltab_entry_65173 p2div pmu1_plltab_entry 0 65173 NULL nohasharray
++disable_so_kszphy_ack_interrupt_fndecl_65173 kszphy_ack_interrupt fndecl 0 65173 &disable_so_p2div_pmu1_plltab_entry_65173
++disable_so_timeout_mgsl_struct_65176 timeout mgsl_struct 0 65176 NULL nohasharray
++disable_so_amd_uncore_attr_show_cpumask_fndecl_65176 amd_uncore_attr_show_cpumask fndecl 0 65176 &disable_so_timeout_mgsl_struct_65176
++disable_so_padata_register_cpumask_notifier_fndecl_65178 padata_register_cpumask_notifier fndecl 0 65178 NULL
++disable_so_bit_clear_fndecl_65181 bit_clear fndecl 3-4-5-6 65181 NULL
++disable_so_addr_wil_fw_data_gw4_65184 addr wil_fw_data_gw4 0 65184 NULL
++disable_so_phy_addr_skge_hw_65197 phy_addr skge_hw 0 65197 NULL
++disable_so_xen_cpuid_xenpf_pcpuinfo_65200 xen_cpuid xenpf_pcpuinfo 0 65200 NULL
++disable_so_vsync_v4l2_bt_timings_65208 vsync v4l2_bt_timings 0 65208 NULL nohasharray
++disable_so_vmcb_msrpm_nested_state_65208 vmcb_msrpm nested_state 0 65208 &disable_so_vsync_v4l2_bt_timings_65208
++disable_so_determine_event_timeout_rsi_hw_65216 determine_event_timeout rsi_hw 0 65216 NULL
++disable_so_rax_kvm_regs_65218 rax kvm_regs 0 65218 NULL
++disable_so_tms_utime_compat_tms_65221 tms_utime compat_tms 0 65221 NULL
++disable_so_ip_vs_ftp_get_addrport_fndecl_65224 ip_vs_ftp_get_addrport fndecl 4 65224 NULL
++disable_so_dclk_radeon_uvd_clock_voltage_dependency_entry_65235 dclk radeon_uvd_clock_voltage_dependency_entry 0 65235 NULL
++disable_so_sin6_port_sockaddr_in6_65238 sin6_port sockaddr_in6 0 65238 NULL
++disable_so_mtrr_del_page_fndecl_65239 mtrr_del_page fndecl 2-3 65239 NULL
++disable_so_timestamp_sec_rt2x00dump_hdr_65245 timestamp_sec rt2x00dump_hdr 0 65245 NULL
++disable_so_snd_interval_mulkdiv_fndecl_65264 snd_interval_mulkdiv fndecl 2 65264 NULL
++disable_so_ktime_sec_timekeeper_65270 ktime_sec timekeeper 0 65270 NULL nohasharray
++disable_so_pid_fcgs_gidft_resp_s_65270 pid fcgs_gidft_resp_s 0 65270 &disable_so_ktime_sec_timekeeper_65270
++disable_so_mmc_set_signal_voltage_fndecl_65277 mmc_set_signal_voltage fndecl 0-3 65277 NULL
++disable_so_addr_lo_pm4_query_status_65283 addr_lo pm4_query_status 0 65283 NULL
++disable_so_wep_interrupt_read_fndecl_65287 wep_interrupt_read fndecl 3-0 65287 NULL
++disable_so_timeout_qib_qp_65289 timeout qib_qp 0 65289 NULL
++disable_so_cpuid_edx_fndecl_65291 cpuid_edx fndecl 0 65291 NULL
++disable_so_q2_addr_high_nes_qp_context_65298 q2_addr_high nes_qp_context 0 65298 NULL
++disable_so_addr_f7188x_sio_65304 addr f7188x_sio 0 65304 NULL
++disable_so_st_mtime___old_kernel_stat_65306 st_mtime __old_kernel_stat 0 65306 NULL
++disable_so_radeon_fence_wait_seq_timeout_fndecl_65307 radeon_fence_wait_seq_timeout fndecl 4-0 65307 NULL
++disable_so_runtime_suspend_power_mode_cyapa_65317 runtime_suspend_power_mode cyapa 0 65317 NULL
++disable_so_ieee80211_crypto_ccmp_encrypt_fndecl_65319 ieee80211_crypto_ccmp_encrypt fndecl 2 65319 NULL
++disable_so_bbaddr_drm_i915_error_ring_65323 bbaddr drm_i915_error_ring 0 65323 NULL
++disable_so_nmi_timer_stop_cpu_fndecl_65325 nmi_timer_stop_cpu fndecl 1 65325 NULL
++disable_so_crypto_aead_encrypt_fndecl_65326 crypto_aead_encrypt fndecl 0 65326 NULL
++disable_so_d_rtbtimer_fs_disk_quota_65332 d_rtbtimer fs_disk_quota 0 65332 NULL
++disable_so_si_calculate_cac_wintime_fndecl_65336 si_calculate_cac_wintime fndecl 0 65336 NULL
++disable_so_baseaddr_l_mvumi_sgl_65375 baseaddr_l mvumi_sgl 0 65375 NULL
++disable_so_current_flash_timeout_max77693_led_device_65379 current_flash_timeout max77693_led_device 0 65379 NULL
++disable_so_shunt_div_ina2xx_config_65385 shunt_div ina2xx_config 0 65385 NULL
++disable_so_waiting_set_timer_fndecl_65387 waiting_set_timer fndecl 2 65387 NULL
++disable_so_tms_cutime_tms_65396 tms_cutime tms 0 65396 NULL
++disable_so_wl1271_acx_rx_msdu_life_time_fndecl_65398 wl1271_acx_rx_msdu_life_time fndecl 0 65398 NULL
++disable_so_phy_addr_ax88172a_private_65403 phy_addr ax88172a_private 0 65403 NULL
++disable_so_vm_exit_msr_store_addr_vmcs12_65409 vm_exit_msr_store_addr vmcs12 0 65409 NULL
++disable_so_reorder_timeout_l2tp_session_cfg_65412 reorder_timeout l2tp_session_cfg 0 65412 NULL nohasharray
++disable_so_bit_spin_lock_fndecl_65412 bit_spin_lock fndecl 1 65412 &disable_so_reorder_timeout_l2tp_session_cfg_65412
++disable_so_data_address_mspro_param_register_65413 data_address mspro_param_register 0 65413 NULL
++disable_so_addr_hwsq_reg_65417 addr hwsq_reg 0 65417 NULL
++disable_so_nla_put_u64_fndecl_65419 nla_put_u64 fndecl 3-0 65419 NULL
++disable_so_dma_addr_vb2_dc_buf_65420 dma_addr vb2_dc_buf 0 65420 NULL
++disable_so_snd_timer_stop_fndecl_65441 snd_timer_stop fndecl 0 65441 NULL
++disable_so_down_timeout_fndecl_65445 down_timeout fndecl 2-0 65445 NULL
++disable_so_sys_timer_gettime_fndecl_65465 sys_timer_gettime fndecl 1 65465 NULL
++disable_so_pnp_printf_fndecl_65468 pnp_printf fndecl 0 65468 NULL
++disable_so_write_reg_cc770_priv_65479 write_reg cc770_priv 3 65479 NULL
++disable_so_create_time_stateowner_id_65480 create_time stateowner_id 0 65480 NULL
++disable_so_q2_addr_low_nes_qp_context_65481 q2_addr_low nes_qp_context 0 65481 NULL
++disable_so_nvme_io_timeout_vardecl_65489 nvme_io_timeout vardecl 0 65489 NULL nohasharray
++disable_so_index_nilfs_btree_readahead_info_65489 index nilfs_btree_readahead_info 0 65489 &disable_so_nvme_io_timeout_vardecl_65489
++disable_so_i_uid_f2fs_inode_65496 i_uid f2fs_inode 0 65496 NULL
++disable_so_enc_cd_paddr_qat_alg_aead_ctx_65505 enc_cd_paddr qat_alg_aead_ctx 0 65505 NULL
++disable_so_s5m_rtc_set_time_fndecl_65518 s5m_rtc_set_time fndecl 0 65518 NULL
++disable_so_addr_w83627hf_data_65526 addr w83627hf_data 0 65526 NULL
++disable_so_si_pt_regs_65527 si pt_regs 0 65527 NULL
++enable_so_rts_threshold_wiphy_15170 rts_threshold wiphy 0 15170 NULL
++enable_so_value_iw_param_65472 value iw_param 0 65472 NULL
++enable_so_value_acpi_object_integer_44755 value acpi_object_integer 0 44755 NULL
++enable_so_idx_ieee80211_tx_rate_64646 idx ieee80211_tx_rate 0 64646 NULL
++enable_so_rs_get_adjacent_rate_fndecl_28334 rs_get_adjacent_rate fndecl 0-2 28334 NULL
++enable_so_index_rs_rate_53 index rs_rate 0 53 NULL
++enable_so_l1_xfs_bmbt_rec_host_22094 l1 xfs_bmbt_rec_host 0 22094 NULL
++enable_so_l0_xfs_bmbt_rec_host_34805 l0 xfs_bmbt_rec_host 0 34805 NULL
++enable_so_max_scsi_cmds_megasas_instance_35835 max_scsi_cmds megasas_instance 0 35835 NULL
++enable_so_throttlequeuedepth_megasas_instance_42316 throttlequeuedepth megasas_instance 0 42316 NULL
++enable_so_max_fw_cmds_megasas_instance_53309 max_fw_cmds megasas_instance 0 53309 NULL
++enable_so_max_num_sge_megasas_instance_55755 max_num_sge megasas_instance 0 55755 NULL
++enable_so_max_sectors_per_req_megasas_instance_56408 max_sectors_per_req megasas_instance 0 56408 NULL
++enable_so_max_mfi_cmds_megasas_instance_19731 max_mfi_cmds megasas_instance 0 19731 NULL
++enable_so_read_fw_status_reg_megasas_instance_template_13572 read_fw_status_reg megasas_instance_template 0 13572 NULL
++enable_so_eip_x86_emulate_ctxt_12354 eip x86_emulate_ctxt 0 12354 NULL
++enable_so_next_rip_x86_instruction_info_56868 next_rip x86_instruction_info 0 56868 NULL
++enable_so_exit_int_info_vmcb_control_area_18357 exit_int_info vmcb_control_area 0 18357 NULL
++enable_so_exit_info_1_vmcb_control_area_20200 exit_info_1 vmcb_control_area 0 20200 NULL
++enable_so_event_inj_vmcb_control_area_23434 event_inj vmcb_control_area 0 23434 NULL
++enable_so_iopm_base_pa_vmcb_control_area_57998 iopm_base_pa vmcb_control_area 0 57998 NULL
++enable_so_i_size_lo_ext4_inode_40153 i_size_lo ext4_inode 0 40153 NULL
++enable_so_i_size_high_ext4_inode_18545 i_size_high ext4_inode 0 18545 NULL
++enable_so_nr_kvm_queued_interrupt_34927 nr kvm_queued_interrupt 0 34927 NULL
++enable_so_last_used_idx_vhost_virtqueue_40059 last_used_idx vhost_virtqueue 0 40059 NULL
++enable_so___load_segment_descriptor_fndecl_30833 __load_segment_descriptor fndecl 2-4 30833 NULL
++enable_so_resource_size_38580 resource_size nvkm_device_func 0 38580 NULL
++enable_so_rate_n_flags_iwlagn_tx_resp_63401 rate_n_flags iwlagn_tx_resp 0 63401 NULL
++enable_so_iwlagn_hwrate_to_mac80211_idx_fndecl_57485 iwlagn_hwrate_to_mac80211_idx fndecl 0-1 57485 NULL
++enable_so_rate_n_flags_iwl_rx_phy_info_45542 rate_n_flags iwl_rx_phy_info 0 45542 NULL
++enable_so_deh_location_reiserfs_de_head_7682 deh_location reiserfs_de_head 0 7682 NULL
++enable_so_deh_offset_reiserfs_de_head_42314 deh_offset reiserfs_de_head 0 42314 NULL
++enable_so_dsack_tcp_options_received_27706 dsack tcp_options_received 0 27706 NULL
++enable_so_inbufBits_bunzip_data_13788 inbufBits bunzip_data 0 13788 NULL
++enable_so_i_ino_inode_8428 i_ino inode 0 8428 NULL
++enable_so_squashfs_iget_fndecl_37485 squashfs_iget fndecl 3 37485 NULL
++enable_so_new_offset_mdp_superblock_1_6501 new_offset mdp_superblock_1 0 6501 NULL
++enable_so_lookup_memtype_fndecl_20192 lookup_memtype fndecl 1 20192 NULL
++enable_so_inofree_iagctl_5194 inofree iagctl 0 5194 NULL
++enable_so_inofreefwd_iag_4921 inofreefwd iag 0 4921 NULL
++enable_so_iagnum_iag_23227 iagnum iag 0 23227 NULL
++enable_so_offset_lv_35617 offset lv 0 35617 NULL
++e_cnt_bictcp_9780 cnt bictcp 0 9780 NULL
++e_last_max_cwnd_bictcp_22377 last_max_cwnd bictcp 0 22377 NULL
++e_bic_K_bictcp_33591 bic_K bictcp 0 33591 NULL
++e_tcp_cwnd_bictcp_64346 tcp_cwnd bictcp 0 64346 NULL
++e_bic_origin_point_bictcp_64414 bic_origin_point bictcp 0 64414 NULL
++e_srtt_us_tcp_sock_62907 srtt_us tcp_sock 0 62907 NULL
++e_tcp_rtt_estimator_fndecl_7853 tcp_rtt_estimator fndecl 2 7853 NULL
++e_tcp_ack_update_rtt_fndecl_26581 tcp_ack_update_rtt fndecl 4-3 26581 NULL
++e_rtt_westwood_52592 rtt westwood 0 52592 NULL
++e_minRTT_vegas_62707 minRTT vegas 0 62707 NULL
++e_tcp_westwood_bw_rttmin_fndecl_63713 tcp_westwood_bw_rttmin fndecl 0 63713 NULL
++e_cube_rtt_scale_vardecl_tcp_cubic_c_2638 cube_rtt_scale vardecl_tcp_cubic.c 0 2638 NULL
++e_rtt0_vardecl_tcp_hybla_c_51134 rtt0 vardecl_tcp_hybla.c 0 51134 NULL
++e_rtt_win_sx_westwood_41723 rtt_win_sx westwood 0 41723 NULL
++e_baseRTT_vegas_18174 baseRTT vegas 0 18174 NULL
++e_init_special_inode_fndecl_7054 init_special_inode fndecl 3 7054 NULL
++e_new_decode_dev_fndecl_38477 new_decode_dev fndecl 0-1 38477 NULL
++e_new_encode_dev_fndecl_48964 new_encode_dev fndecl 0-1 48964 NULL
++e_jffs2_encode_dev_fndecl_39156 jffs2_encode_dev fndecl 2-0 39156 NULL
++btrfs_get_token_32_fndecl_7192_fns btrfs_get_token_32 fndecl 0 7192 NULL
++btrfs_get_token_16_fndecl_46639_fns btrfs_get_token_16 fndecl 0 46639 NULL
++btrfs_get_token_64_fndecl_54223_fns btrfs_get_token_64 fndecl 0 54223 NULL
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/e_aux.data b/scripts/gcc-plugins/size_overflow_plugin/e_aux.data
+new file mode 100644
+index 0000000..74e91b2
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/e_aux.data
+@@ -0,0 +1,97 @@
++enable_so_spa_set_aux_vdevs_fndecl_746 spa_set_aux_vdevs fndecl 3 746 NULL
++enable_so_zfs_lookup_fndecl_2144 zfs_lookup fndecl 0 2144 NULL
++enable_so_mappedread_fndecl_2627 mappedread fndecl 2 2627 NULL
++enable_so_SMACL_Alloc_fndecl_2775 SMACL_Alloc fndecl 1 2775 NULL
++enable_so_vdev_disk_dio_alloc_fndecl_2957 vdev_disk_dio_alloc fndecl 1 2957 NULL
++enable_so_nv_alloc_pushpage_spl_fndecl_4286 nv_alloc_pushpage_spl fndecl 2 4286 NULL
++enable_so_zpl_xattr_get_fndecl_4574 zpl_xattr_get fndecl 0 4574 NULL
++enable_so_sa_replace_all_by_template_fndecl_5699 sa_replace_all_by_template fndecl 3 5699 NULL
++enable_so_dmu_write_fndecl_6048 dmu_write fndecl 4-3 6048 NULL
++enable_so_dmu_buf_hold_array_fndecl_6095 dmu_buf_hold_array fndecl 4-3 6095 NULL
++enable_so_update_pages_fndecl_6225 update_pages fndecl 2-3 6225 NULL
++enable_so_bio_nr_pages_fndecl_7117 bio_nr_pages fndecl 0-2 7117 NULL
++enable_so_dmu_buf_hold_array_by_bonus_fndecl_8562 dmu_buf_hold_array_by_bonus fndecl 3-2 8562 NULL
++enable_so_zpios_dmu_write_fndecl_8858 zpios_dmu_write fndecl 4-5 8858 NULL
++enable_so_ddi_copyout_fndecl_9401 ddi_copyout fndecl 3 9401 NULL
++enable_so_avl_numnodes_fndecl_12384 avl_numnodes fndecl 0 12384 NULL
++enable_so_dmu_write_uio_dnode_fndecl_12473 dmu_write_uio_dnode fndecl 3 12473 NULL
++enable_so_dmu_xuio_init_fndecl_12866 dmu_xuio_init fndecl 2 12866 NULL
++enable_so_zpl_read_common_fndecl_14389 zpl_read_common fndecl 0 14389 NULL
++enable_so_dmu_snapshot_realname_fndecl_14632 dmu_snapshot_realname fndecl 4 14632 NULL
++enable_so_kmem_alloc_debug_fndecl_14852 kmem_alloc_debug fndecl 1 14852 NULL
++enable_so_kmalloc_node_nofail_fndecl_15151 kmalloc_node_nofail fndecl 1 15151 NULL
++enable_so_size_VNet_EventHeader_15382 size VNet_EventHeader 0 15382 NULL
++enable_so_dmu_write_uio_fndecl_16351 dmu_write_uio fndecl 4 16351 NULL
++enable_so_zfs_log_write_fndecl_16524 zfs_log_write fndecl 6-5 16524 NULL
++enable_so_sa_build_layouts_fndecl_16910 sa_build_layouts fndecl 3 16910 NULL
++enable_so_dsl_dir_namelen_fndecl_17053 dsl_dir_namelen fndecl 0 17053 NULL
++enable_so_kcopy_copy_to_user_fndecl_17336 kcopy_copy_to_user fndecl 5 17336 NULL
++enable_so_sa_add_layout_entry_fndecl_17507 sa_add_layout_entry fndecl 3 17507 NULL
++enable_so_sa_attr_table_setup_fndecl_18029 sa_attr_table_setup fndecl 3 18029 NULL
++enable_so_uiocopy_fndecl_18680 uiocopy fndecl 2 18680 NULL
++enable_so_dmu_buf_hold_array_by_dnode_fndecl_19125 dmu_buf_hold_array_by_dnode fndecl 2-3 19125 NULL
++enable_so_zpl_acl_from_xattr_fndecl_21141 zpl_acl_from_xattr fndecl 2 21141 NULL
++enable_so_dsl_pool_tx_assign_init_fndecl_22518 dsl_pool_tx_assign_init fndecl 2 22518 NULL
++enable_so_nvlist_lookup_byte_array_fndecl_22527 nvlist_lookup_byte_array fndecl 0 22527 NULL
++enable_so_sa_replace_all_by_template_locked_fndecl_22533 sa_replace_all_by_template_locked fndecl 3 22533 NULL
++enable_so_tsd_hash_table_init_fndecl_22559 tsd_hash_table_init fndecl 1 22559 NULL
++enable_so_spa_vdev_remove_aux_fndecl_23966 spa_vdev_remove_aux fndecl 4 23966 NULL
++enable_so_zpl_xattr_acl_set_access_fndecl_24129 zpl_xattr_acl_set_access fndecl 4 24129 NULL
++enable_so_dmu_assign_arcbuf_fndecl_24622 dmu_assign_arcbuf fndecl 2 24622 NULL
++enable_so_zap_lookup_norm_fndecl_25166 zap_lookup_norm fndecl 9 25166 NULL
++enable_so_dmu_prealloc_fndecl_25456 dmu_prealloc fndecl 4-3 25456 NULL
++enable_so_kmalloc_nofail_fndecl_26347 kmalloc_nofail fndecl 1 26347 NULL
++enable_so_zfsctl_snapshot_zpath_fndecl_27578 zfsctl_snapshot_zpath fndecl 2 27578 NULL
++enable_so_zpios_dmu_read_fndecl_30015 zpios_dmu_read fndecl 4-5 30015 NULL
++enable_so_splat_write_fndecl_30943 splat_write fndecl 3 30943 NULL
++enable_so_zpl_xattr_get_sa_fndecl_31183 zpl_xattr_get_sa fndecl 0 31183 NULL
++enable_so_dmu_read_uio_fndecl_31467 dmu_read_uio fndecl 4 31467 NULL
++enable_so_zfs_replay_fuids_fndecl_31479 zfs_replay_fuids fndecl 4 31479 NULL
++enable_so_spa_history_log_to_phys_fndecl_31632 spa_history_log_to_phys fndecl 0-1 31632 NULL
++enable_so___zpl_xattr_get_fndecl_32601 __zpl_xattr_get fndecl 0 32601 NULL
++enable_so_VNetUserListenerRead_fndecl_34039 VNetUserListenerRead fndecl 4 34039 NULL
++enable_so_proc_copyout_string_fndecl_34049 proc_copyout_string fndecl 2 34049 NULL
++enable_so_nv_alloc_sleep_spl_fndecl_34544 nv_alloc_sleep_spl fndecl 2 34544 NULL
++enable_so_nv_alloc_nosleep_spl_fndecl_34761 nv_alloc_nosleep_spl fndecl 2 34761 NULL
++enable_so_zap_leaf_array_match_fndecl_36922 zap_leaf_array_match fndecl 4 36922 NULL
++enable_so_copyinstr_fndecl_36980 copyinstr fndecl 3 36980 NULL
++enable_so_zpl_xattr_acl_set_default_fndecl_37864 zpl_xattr_acl_set_default fndecl 4 37864 NULL
++enable_so_splat_read_fndecl_38116 splat_read fndecl 3 38116 NULL
++enable_so_sa_setup_fndecl_38756 sa_setup fndecl 4 38756 NULL
++enable_so_vdev_disk_physio_fndecl_39898 vdev_disk_physio fndecl 3 39898 NULL
++enable_so_arc_buf_size_fndecl_39982 arc_buf_size fndecl 0 39982 NULL
++enable_so_kzalloc_nofail_fndecl_40719 kzalloc_nofail fndecl 1 40719 NULL
++enable_so_fuidstr_to_sid_fndecl_40777 fuidstr_to_sid fndecl 4 40777 NULL
++enable_so_vdev_raidz_matrix_reconstruct_fndecl_40852 vdev_raidz_matrix_reconstruct fndecl 2-3 40852 NULL
++enable_so_sa_find_layout_fndecl_40892 sa_find_layout fndecl 4 40892 NULL
++enable_so_zpl_xattr_get_dir_fndecl_41918 zpl_xattr_get_dir fndecl 0 41918 NULL
++enable_so_zfs_sa_get_xattr_fndecl_42600 zfs_sa_get_xattr fndecl 0 42600 NULL
++enable_so_zpl_xattr_acl_set_fndecl_42808 zpl_xattr_acl_set fndecl 4 42808 NULL
++enable_so_xdr_dec_array_fndecl_43091 xdr_dec_array fndecl 5 43091 NULL
++enable_so_dsl_dataset_namelen_fndecl_43136 dsl_dataset_namelen fndecl 0 43136 NULL
++enable_so_kcopy_write_fndecl_43683 kcopy_write fndecl 3 43683 NULL
++enable_so_uiomove_fndecl_44355 uiomove fndecl 2 44355 NULL
++enable_so_dmu_read_fndecl_44418 dmu_read fndecl 4-3 44418 NULL
++enable_so_ddi_copyin_fndecl_44846 ddi_copyin fndecl 3 44846 NULL
++enable_so_kcopy_do_get_fndecl_45061 kcopy_do_get fndecl 5 45061 NULL
++enable_so_copyin_fndecl_45945 copyin fndecl 3 45945 NULL
++enable_so_zil_itx_create_fndecl_46555 zil_itx_create fndecl 2 46555 NULL
++enable_so_dmu_write_uio_dbuf_fndecl_48064 dmu_write_uio_dbuf fndecl 3 48064 NULL
++enable_so_blk_rq_pos_fndecl_48233 blk_rq_pos fndecl 0 48233 NULL
++enable_so_spa_history_write_fndecl_49650 spa_history_write fndecl 3 49650 NULL
++enable_so_kcopy_copy_pages_to_user_fndecl_49823 kcopy_copy_pages_to_user fndecl 3-4 49823 NULL
++enable_so_zfs_log_write_fndecl_50162 zfs_log_write fndecl 6-5 50162 NULL
++enable_so_i_fm_alloc_fndecl_51038 i_fm_alloc fndecl 2 51038 NULL
++enable_so_copyout_fndecl_51409 copyout fndecl 3 51409 NULL
++enable_so_VNetKernel_MemoryAllocate_fndecl_53131 VNetKernel_MemoryAllocate fndecl 1 53131 NULL
++enable_so_VNetUserIfWrite_fndecl_54044 VNetUserIfWrite fndecl 4 54044 NULL
++enable_so_zvol_log_write_fndecl_54898 zvol_log_write fndecl 4-3 54898 NULL
++enable_so_zfs_acl_node_alloc_fndecl_55641 zfs_acl_node_alloc fndecl 1 55641 NULL
++enable_so_get_nvlist_fndecl_56685 get_nvlist fndecl 2 56685 NULL
++enable_so_zprop_get_numprops_fndecl_56820 zprop_get_numprops fndecl 0 56820 NULL
++enable_so_splat_taskq_test4_common_fndecl_59829 splat_taskq_test4_common fndecl 5 59829 NULL
++enable_so_zfs_replay_domain_cnt_fndecl_61399 zfs_replay_domain_cnt fndecl 0 61399 NULL
++enable_so_zpios_write_fndecl_61823 zpios_write fndecl 3 61823 NULL
++enable_so_proc_copyin_string_fndecl_62019 proc_copyin_string fndecl 4 62019 NULL
++enable_so_random_get_pseudo_bytes_fndecl_64611 random_get_pseudo_bytes fndecl 2 64611 NULL
++enable_so_zpios_read_fndecl_64734 zpios_read fndecl 3 64734 NULL
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/e_fields.data b/scripts/gcc-plugins/size_overflow_plugin/e_fields.data
+new file mode 100644
+index 0000000..4aabb55
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/e_fields.data
+@@ -0,0 +1,16262 @@
++recv_ctrl_pipe_us_data_0_fields recv_ctrl_pipe us_data 0 0 NULL
++__earlyonly_bootmem_alloc_fndecl_3_fields __earlyonly_bootmem_alloc fndecl 2-3-4 3 NULL
++size_ttm_mem_reg_8_fields size ttm_mem_reg 0 8 NULL
++char2uni_nls_table_12_fields char2uni nls_table 0 12 NULL
++nrbufs_pipe_inode_info_13_fields nrbufs pipe_inode_info 0 13 NULL
++NumPhys__EVENT_DATA_SAS_EXPANDER_STATUS_CHANGE_17_fields NumPhys _EVENT_DATA_SAS_EXPANDER_STATUS_CHANGE 0 17 NULL
++pci_mem_start_qed_dev_info_18_fields pci_mem_start qed_dev_info 0 18 NULL
++ext4_seek_data_fndecl_21_fields ext4_seek_data fndecl 2 21 NULL
++dma_buf_sz_sxgbe_priv_data_24_fields dma_buf_sz sxgbe_priv_data 0 24 NULL nohasharray
++max_cache_pages_snd_emu10k1_24_fields max_cache_pages snd_emu10k1 0 24 &dma_buf_sz_sxgbe_priv_data_24_fields
++T9_reportid_max_mxt_data_25_fields T9_reportid_max mxt_data 0 25 NULL
++max_frags_vxge_hw_fifo_config_26_fields max_frags vxge_hw_fifo_config 0 26 NULL
++ocfs2_xattr_get_clusters_fndecl_34_fields ocfs2_xattr_get_clusters fndecl 0 34 NULL nohasharray
++ath10k_core_create_fndecl_34_fields ath10k_core_create fndecl 1 34 &ocfs2_xattr_get_clusters_fndecl_34_fields
++total_drm_buf_35_fields total drm_buf 0 35 NULL
++sis5595_device_add_fndecl_39_fields sis5595_device_add fndecl 1 39 NULL
++nr_rings_blkfront_info_42_fields nr_rings blkfront_info 0 42 NULL
++mc_vram_size_amdgpu_mc_45_fields mc_vram_size amdgpu_mc 0 45 NULL
++pattern_len_tcf_em_text_57_fields pattern_len tcf_em_text 0 57 NULL nohasharray
++p54_init_common_fndecl_57_fields p54_init_common fndecl 1 57 &pattern_len_tcf_em_text_57_fields
++rx_desc_count_i40evf_adapter_62_fields rx_desc_count i40evf_adapter 0 62 NULL
++len_nf_ct_ext_63_fields len nf_ct_ext 0 63 NULL
++sl811_hc_init_fndecl_66_fields sl811_hc_init fndecl 2-3 66 NULL
++cipso_v4_delopt_fndecl_67_fields cipso_v4_delopt fndecl 0 67 NULL
++mtt_seg_size_mthca_limits_72_fields mtt_seg_size mthca_limits 0 72 NULL
++iov_iter_get_pages_alloc_fndecl_76_fields iov_iter_get_pages_alloc fndecl 0 76 NULL
++iwch_reject_cr_fndecl_78_fields iwch_reject_cr fndecl 3 78 NULL
++data_size_data_queue_85_fields data_size data_queue 0 85 NULL
++ceph_dir_llseek_fndecl_99_fields ceph_dir_llseek fndecl 2 99 NULL
++erase_size_flash_info_100_fields erase_size flash_info 0 100 NULL
++ncp_do_request_fndecl_102_fields ncp_do_request fndecl 2-4-0 102 NULL
++fi_blkno_ocfs2_find_inode_args_104_fields fi_blkno ocfs2_find_inode_args 0 104 NULL
++phase_snd_usb_endpoint_106_fields phase snd_usb_endpoint 0 106 NULL
++num_leds_hidled_config_108_fields num_leds hidled_config 0 108 NULL
++add_new_gdb_meta_bg_fndecl_116_fields add_new_gdb_meta_bg fndecl 3 116 NULL
++buffer_min_vardecl_floppy_c_117_fields buffer_min vardecl_floppy.c 0 117 NULL
++needed_tailroom_net_device_118_fields needed_tailroom net_device 0 118 NULL
++send_remove_xattr_fndecl_122_fields send_remove_xattr fndecl 4 122 NULL
++in_ep_rtl_usb_128_fields in_ep rtl_usb 0 128 NULL nohasharray
++number_i40e_aqc_list_capabilities_element_resp_128_fields number i40e_aqc_list_capabilities_element_resp 0 128 &in_ep_rtl_usb_128_fields
++in_num_nct6683_data_132_fields in_num nct6683_data 0 132 NULL
++xfs_dir_removename_fndecl_133_fields xfs_dir_removename fndecl 7 133 NULL
++nr_pages_dma_mapping_136_fields nr_pages dma_mapping 0 136 NULL
++data_offset_netup_dma_139_fields data_offset netup_dma 0 139 NULL nohasharray
++len_io_failure_record_139_fields len io_failure_record 0 139 &data_offset_netup_dma_139_fields
++n_mac_vlan_filters_vfpf_set_q_filters_tlv_142_fields n_mac_vlan_filters vfpf_set_q_filters_tlv 0 142 NULL
++leaf_move_items_fndecl_145_fields leaf_move_items fndecl 4 145 NULL
++ir_context_support_fw_ohci_147_fields ir_context_support fw_ohci 0 147 NULL
++uvc_endpoint_max_bpi_fndecl_155_fields uvc_endpoint_max_bpi fndecl 0 155 NULL
++ext4_ext_remove_space_fndecl_170_fields ext4_ext_remove_space fndecl 3-2 170 NULL
++vfs_write_fndecl_176_fields vfs_write fndecl 3-0 176 NULL
++length_sl811h_ep_186_fields length sl811h_ep 0 186 NULL
++sddr55_write_data_fndecl_188_fields sddr55_write_data fndecl 3 188 NULL
++sys_pwrite64_fndecl_206_fields sys_pwrite64 fndecl 3 206 NULL
++xfs_zero_file_space_fndecl_211_fields xfs_zero_file_space fndecl 2-3 211 NULL nohasharray
++bn_shadow_fndecl_211_fields bn_shadow fndecl 2 211 &xfs_zero_file_space_fndecl_211_fields
++copies_r10conf_216_fields copies r10conf 0 216 NULL
++drm_universal_plane_init_fndecl_219_fields drm_universal_plane_init fndecl 6 219 NULL
++encap_hlen_ip6_tnl_encap_ops_223_fields encap_hlen ip6_tnl_encap_ops 0 223 NULL
++optrom_size_qla_hw_data_230_fields optrom_size qla_hw_data 0 230 NULL
++ad9523_write_fndecl_233_fields ad9523_write fndecl 2 233 NULL
++ocfs2_mark_extent_refcounted_fndecl_240_fields ocfs2_mark_extent_refcounted fndecl 6-4 240 NULL
++musb_readw_vardecl_241_fields musb_readw vardecl 0 241 NULL
++sysv_inode_by_name_fndecl_242_fields sysv_inode_by_name fndecl 0 242 NULL
++offset_nvkm_vma_248_fields offset nvkm_vma 0 248 NULL
++amdgpu_vm_directory_size_fndecl_249_fields amdgpu_vm_directory_size fndecl 0 249 NULL
++ixgbevf_change_mtu_fndecl_251_fields ixgbevf_change_mtu fndecl 2 251 NULL nohasharray
++pclk_limit_ov6650_251_fields pclk_limit ov6650 0 251 &ixgbevf_change_mtu_fndecl_251_fields
++minimum_acpi_address32_attribute_256_fields minimum acpi_address32_attribute 0 256 NULL
++l2cap_parse_conf_req_fndecl_260_fields l2cap_parse_conf_req fndecl 0 260 NULL
++max_can_queue_fc_fcp_internal_270_fields max_can_queue fc_fcp_internal 0 270 NULL
++dbg_leb_change_fndecl_272_fields dbg_leb_change fndecl 4 272 NULL
++tcp_current_mss_fndecl_275_fields tcp_current_mss fndecl 0 275 NULL
++vmbus_sendpacket_multipagebuffer_fndecl_276_fields vmbus_sendpacket_multipagebuffer fndecl 4 276 NULL
++es_lblk_extent_status_280_fields es_lblk extent_status 0 280 NULL
++bytesperline_sh_veu_vfmt_288_fields bytesperline sh_veu_vfmt 0 288 NULL nohasharray
++vmscsi_size_delta_vardecl_storvsc_drv_c_288_fields vmscsi_size_delta vardecl_storvsc_drv.c 0 288 &bytesperline_sh_veu_vfmt_288_fields
++xfs_qm_dqread_fndecl_302_fields xfs_qm_dqread fndecl 0 302 NULL nohasharray
++num_targets_dm_table_302_fields num_targets dm_table 0 302 &xfs_qm_dqread_fndecl_302_fields
++tx_ring_size_mvneta_port_307_fields tx_ring_size mvneta_port 0 307 NULL
++omapdss_update_prop_fndecl_309_fields omapdss_update_prop fndecl 3 309 NULL
++cfpkt_create_pfx_fndecl_313_fields cfpkt_create_pfx fndecl 2 313 NULL
++MaxBufferSize_negotiate_rsp_314_fields MaxBufferSize negotiate_rsp 0 314 NULL
++name_len_jffs2_raw_xattr_318_fields name_len jffs2_raw_xattr 0 318 NULL
++bo_handle_count_drm_vc4_submit_cl_326_fields bo_handle_count drm_vc4_submit_cl 0 326 NULL
++start_fb_cmap_user_333_fields start fb_cmap_user 0 333 NULL
++block_size_se_dev_attrib_334_fields block_size se_dev_attrib 0 334 NULL
++xfs_file_iomap_begin_fndecl_341_fields xfs_file_iomap_begin fndecl 2-3 341 NULL
++udl_submit_urb_fndecl_353_fields udl_submit_urb fndecl 3 353 NULL
++tx_idx_bchannel_355_fields tx_idx bchannel 0 355 NULL
++link_buf_size_dvb_ca_slot_365_fields link_buf_size dvb_ca_slot 0 365 NULL
++length_st21nfca_atr_req_366_fields length st21nfca_atr_req 0 366 NULL
++setup_ctxt_fndecl_374_fields setup_ctxt fndecl 2 374 NULL
++cxgbit_ppod_init_idata_fndecl_384_fields cxgbit_ppod_init_idata fndecl 4 384 NULL
++duplex_tg3_link_config_395_fields duplex tg3_link_config 0 395 NULL
++keyspan_pda_write_fndecl_398_fields keyspan_pda_write fndecl 4 398 NULL
++cyberjack_write_fndecl_399_fields cyberjack_write fndecl 4 399 NULL
++fcp_resid_bnx2fc_cmd_412_fields fcp_resid bnx2fc_cmd 0 412 NULL
++base_cbuf_417_fields base cbuf 0 417 NULL
++mp_config_acpi_gsi_fndecl_419_fields mp_config_acpi_gsi fndecl 2 419 NULL
++fat_short2uni_fndecl_423_fields fat_short2uni fndecl 0 423 NULL
++vol_reg_size_tas571x_chip_426_fields vol_reg_size tas571x_chip 0 426 NULL
++status_netdev_desc_430_fields status netdev_desc 0 430 NULL
++twsk_obj_size_timewait_sock_ops_433_fields twsk_obj_size timewait_sock_ops 0 433 NULL
++rx_buf_sz_rhine_private_435_fields rx_buf_sz rhine_private 0 435 NULL
++id_alias_prop_438_fields id alias_prop 0 438 NULL
++get_conn_info_fndecl_440_fields get_conn_info fndecl 4 440 NULL
++intr_count_ql_adapter_442_fields intr_count ql_adapter 0 442 NULL nohasharray
++pdata_size_mfd_cell_442_fields pdata_size mfd_cell 0 442 &intr_count_ql_adapter_442_fields
++challenge_len_ieee802_11_elems_444_fields challenge_len ieee802_11_elems 0 444 NULL nohasharray
++btrfs_map_bio_fndecl_444_fields btrfs_map_bio fndecl 0 444 &challenge_len_ieee802_11_elems_444_fields
++cem_build_path_fndecl_451_fields cem_build_path fndecl 0 451 NULL
++pkts_acked_yeah_452_fields pkts_acked yeah 0 452 NULL
++root_entry_lctp_fndecl_459_fields root_entry_lctp fndecl 0 459 NULL
++e_shnum_elf64_hdr_461_fields e_shnum elf64_hdr 0 461 NULL
++udf_load_logicalvol_fndecl_471_fields udf_load_logicalvol fndecl 2 471 NULL
++mlx5_ib_rereg_user_mr_fndecl_473_fields mlx5_ib_rereg_user_mr fndecl 5-4 473 NULL
++make_checksum_v2_fndecl_475_fields make_checksum_v2 fndecl 3-5 475 NULL
++map_write_fndecl_480_fields map_write fndecl 3 480 NULL
++diva_alloc_dma_map_fndecl_485_fields diva_alloc_dma_map fndecl 2 485 NULL
++ext_start_xfs_extent_486_fields ext_start xfs_extent 0 486 NULL
++consumed_sg_mapping_iter_487_fields consumed sg_mapping_iter 0 487 NULL
++nr_local_rds_rdma_args_488_fields nr_local rds_rdma_args 0 488 NULL
++sp2_read_i2c_fndecl_489_fields sp2_read_i2c fndecl 4 489 NULL
++edid_store_fndecl_491_fields edid_store fndecl 6 491 NULL
++max_seg_sz_mmc_test_area_502_fields max_seg_sz mmc_test_area 0 502 NULL
++tracing_map_create_fndecl_506_fields tracing_map_create fndecl 2-1 506 NULL nohasharray
++wa_xfer_status_to_errno_fndecl_506_fields wa_xfer_status_to_errno fndecl 0 506 &tracing_map_create_fndecl_506_fields
++hlen_ip6_tnl_510_fields hlen ip6_tnl 0 510 NULL
++gfn_guest_walkerEPT_517_fields gfn guest_walkerEPT 0 517 NULL
++dig_rate_snd_bt87x_board_522_fields dig_rate snd_bt87x_board 0 522 NULL
++read_mv88e6xxx_ops_525_fields read mv88e6xxx_ops 0 525 NULL
++v9fs_xattr_set_acl_fndecl_526_fields v9fs_xattr_set_acl fndecl 6 526 NULL
++videobuf_read_zerocopy_fndecl_546_fields videobuf_read_zerocopy fndecl 3 546 NULL
++iscsi_add_hdr_fndecl_551_fields iscsi_add_hdr fndecl 2 551 NULL
++leaf_paste_in_buffer_fndecl_552_fields leaf_paste_in_buffer fndecl 4 552 NULL
++behind_page_count_r1bio_557_fields behind_page_count r1bio 0 557 NULL
++cmd_amdkfd_ioctl_desc_560_fields cmd amdkfd_ioctl_desc 0 560 NULL
++disk_secno_bplus_leaf_node_574_fields disk_secno bplus_leaf_node 0 574 NULL
++ext4_swap_extents_fndecl_577_fields ext4_swap_extents fndecl 6-0-5-4 577 NULL
++log_mc_entry_sz_mlx4_init_hca_param_595_fields log_mc_entry_sz mlx4_init_hca_param 0 595 NULL
++max_send_sge_ib_qp_cap_601_fields max_send_sge ib_qp_cap 0 601 NULL
++nr_groups_pcpu_alloc_info_602_fields nr_groups pcpu_alloc_info 0 602 NULL
++xfs_bmapi_read_fndecl_603_fields xfs_bmapi_read fndecl 0-3-2 603 NULL nohasharray
++lcm_not_zero_fndecl_603_fields lcm_not_zero fndecl 0-1-2 603 &xfs_bmapi_read_fndecl_603_fields nohasharray
++sock_xmit_fndecl_603_fields sock_xmit fndecl 4 603 &lcm_not_zero_fndecl_603_fields
++ceph_oloc_encoding_size_fndecl_604_fields ceph_oloc_encoding_size fndecl 0 604 NULL nohasharray
++FormattedSize_erase_unit_header_t_604_fields FormattedSize erase_unit_header_t 0 604 &ceph_oloc_encoding_size_fndecl_604_fields
++pvr2_v4l2_ioctl_fndecl_605_fields pvr2_v4l2_ioctl fndecl 2 605 NULL
++num_queue_pairs_i40e_virtchnl_vf_resource_613_fields num_queue_pairs i40e_virtchnl_vf_resource 0 613 NULL
++virt_end_dm_thin_new_mapping_616_fields virt_end dm_thin_new_mapping 0 616 NULL
++maxsize_tm6000_endpoint_618_fields maxsize tm6000_endpoint 0 618 NULL
++priv_size_mlxsw_driver_636_fields priv_size mlxsw_driver 0 636 NULL nohasharray
++hfi1_make_grh_fndecl_636_fields hfi1_make_grh fndecl 0 636 &priv_size_mlxsw_driver_636_fields
++ieee80211_rx_mgmt_beacon_fndecl_637_fields ieee80211_rx_mgmt_beacon fndecl 3 637 NULL
++msg_len_dvb_diseqc_master_cmd_643_fields msg_len dvb_diseqc_master_cmd 0 643 NULL nohasharray
++d1_vring_rx_mac_643_fields d1 vring_rx_mac 0 643 &msg_len_dvb_diseqc_master_cmd_643_fields
++size_si_sm_handlers_648_fields size si_sm_handlers 0 648 NULL
++ddp_ppod_write_idata_fndecl_649_fields ddp_ppod_write_idata fndecl 5 649 NULL nohasharray
++set_vmcore_list_offsets_fndecl_649_fields set_vmcore_list_offsets fndecl 2-1 649 &ddp_ppod_write_idata_fndecl_649_fields
++fat_sync_bhs_fndecl_655_fields fat_sync_bhs fndecl 0 655 NULL
++rtsx_usb_read_ppbuf_fndecl_659_fields rtsx_usb_read_ppbuf fndecl 3 659 NULL
++start_async_extent_663_fields start async_extent 0 663 NULL
++tx_max_size_cxgbi_device_664_fields tx_max_size cxgbi_device 0 664 NULL
++cw_cursor_fndecl_666_fields cw_cursor fndecl 4 666 NULL
++__push_leaf_left_fndecl_667_fields __push_leaf_left fndecl 8 667 NULL
++dccph_seq2_dccp_hdr_669_fields dccph_seq2 dccp_hdr 0 669 NULL
++num_leds_led_pwm_platform_data_670_fields num_leds led_pwm_platform_data 0 670 NULL
++lbs_highsnr_write_fndecl_671_fields lbs_highsnr_write fndecl 3 671 NULL
++skb_size_nx_host_rds_ring_672_fields skb_size nx_host_rds_ring 0 672 NULL
++bond_change_mtu_fndecl_674_fields bond_change_mtu fndecl 2 674 NULL
++mac_len_sk_buff_676_fields mac_len sk_buff 0 676 NULL
++mbox_offset_sst_res_info_678_fields mbox_offset sst_res_info 0 678 NULL
++page_order_sg_scatter_hold_679_fields page_order sg_scatter_hold 0 679 NULL
++stats_count_smsdvb_debugfs_683_fields stats_count smsdvb_debugfs 0 683 NULL
++get_eeprom_len_ethtool_ops_686_fields get_eeprom_len ethtool_ops 0 686 NULL
++follow_page_pte_fndecl_687_fields follow_page_pte fndecl 2 687 NULL
++mchip_get_frame_fndecl_692_fields mchip_get_frame fndecl 0 692 NULL
++sig_size_s3fwrn5_fw_info_719_fields sig_size s3fwrn5_fw_info 0 719 NULL
++qib_ib_rcv_fndecl_734_fields qib_ib_rcv fndecl 4 734 NULL
++tsi148_alloc_resource_fndecl_736_fields tsi148_alloc_resource fndecl 2 736 NULL
++write_cache_pages_fndecl_737_fields write_cache_pages fndecl 0 737 NULL
++count_TxFifo_750_fields count TxFifo 0 750 NULL
++add_falloc_range_fndecl_751_fields add_falloc_range fndecl 2-3 751 NULL
++DataBufsSize_snd_korg1212_758_fields DataBufsSize snd_korg1212 0 758 NULL
++ilf_len_xfs_inode_log_format_759_fields ilf_len xfs_inode_log_format 0 759 NULL
++tda8083_readregs_fndecl_764_fields tda8083_readregs fndecl 4 764 NULL nohasharray
++controller_code_mspro_sys_info_764_fields controller_code mspro_sys_info 0 764 &tda8083_readregs_fndecl_764_fields
++iwl_trans_alloc_fndecl_767_fields iwl_trans_alloc fndecl 5 767 NULL
++len_vnic_dev_bar_768_fields len vnic_dev_bar 0 768 NULL
++vb2_fop_read_fndecl_771_fields vb2_fop_read fndecl 3 771 NULL
++truncate_one_csum_fndecl_777_fields truncate_one_csum fndecl 4-5 777 NULL
++gem_change_mtu_fndecl_785_fields gem_change_mtu fndecl 2 785 NULL
++prepare_reply_buffer_fndecl_793_fields prepare_reply_buffer fndecl 4-3-5 793 NULL
++extent_direct_795_fields extent direct 0 795 NULL
++height_qxl_head_799_fields height qxl_head 0 799 NULL
++pci_iomap_range_fndecl_809_fields pci_iomap_range fndecl 4-3 809 NULL
++sdp1length__SpiCfgData_813_fields sdp1length _SpiCfgData 0 813 NULL
++alloc_nvdimm_map_fndecl_828_fields alloc_nvdimm_map fndecl 3-2 828 NULL
++mdata_ofsh_cyttsp4_sysinfo_data_844_fields mdata_ofsh cyttsp4_sysinfo_data 0 844 NULL
++s_inopb_ufs_sb_private_info_849_fields s_inopb ufs_sb_private_info 0 849 NULL
++rsi_copy_to_card_fndecl_858_fields rsi_copy_to_card fndecl 3 858 NULL
++unix_seqpacket_recvmsg_fndecl_861_fields unix_seqpacket_recvmsg fndecl 3 861 NULL
++qi_dqperchunk_xfs_quotainfo_863_fields qi_dqperchunk xfs_quotainfo 0 863 NULL
++adu_read_fndecl_866_fields adu_read fndecl 3 866 NULL
++safe_prepare_write_buffer_fndecl_872_fields safe_prepare_write_buffer fndecl 3 872 NULL
++orinoco_change_mtu_fndecl_895_fields orinoco_change_mtu fndecl 2 895 NULL nohasharray
++forw_xfs_attr3_icleaf_hdr_895_fields forw xfs_attr3_icleaf_hdr 0 895 &orinoco_change_mtu_fndecl_895_fields
++p_srate_f_uac2_opts_896_fields p_srate f_uac2_opts 0 896 NULL
++vm_normal_page_fndecl_897_fields vm_normal_page fndecl 2 897 NULL
++rdma_copy_tail_fndecl_898_fields rdma_copy_tail fndecl 3 898 NULL nohasharray
++cpu_mask_len_res_opts_898_fields cpu_mask_len res_opts 0 898 &rdma_copy_tail_fndecl_898_fields
++user_bs_factor_ide_tape_obj_906_fields user_bs_factor ide_tape_obj 0 906 NULL
++good_bytes_nfs_pgio_header_909_fields good_bytes nfs_pgio_header 0 909 NULL
++num_channels_wmi_start_scan_cmd_915_fields num_channels wmi_start_scan_cmd 0 915 NULL
++set_args_iw_priv_args_916_fields set_args iw_priv_args 0 916 NULL
++post_fifo_size__adpt_hba_919_fields post_fifo_size _adpt_hba 0 919 NULL
++nci_nfcc_loopback_fndecl_923_fields nci_nfcc_loopback fndecl 3 923 NULL
++status_word_gem_rxd_925_fields status_word gem_rxd 0 925 NULL nohasharray
++video_hsize_solo_dev_925_fields video_hsize solo_dev 0 925 &status_word_gem_rxd_925_fields nohasharray
++amt_complete_orangefs_io_response_925_fields amt_complete orangefs_io_response 0 925 &video_hsize_solo_dev_925_fields
++isofs_bread_fndecl_929_fields isofs_bread fndecl 2 929 NULL
++xpnet_dev_change_mtu_fndecl_932_fields xpnet_dev_change_mtu fndecl 2 932 NULL
++nfrags_pkt_gl_937_fields nfrags pkt_gl 0 937 NULL
++size_skl_algo_data_942_fields size skl_algo_data 0 942 NULL nohasharray
++num_spis_alpine_msix_data_942_fields num_spis alpine_msix_data 0 942 &size_skl_algo_data_942_fields
++pci_num_vf_fndecl_952_fields pci_num_vf fndecl 0 952 NULL
++ssid_len_wireless_dev_954_fields ssid_len wireless_dev 0 954 NULL
++length_ndis_80211_bssid_ex_955_fields length ndis_80211_bssid_ex 0 955 NULL
++xfs_bmap_rtalloc_fndecl_958_fields xfs_bmap_rtalloc fndecl 0 958 NULL
++size_wl3501_md_ind_961_fields size wl3501_md_ind 0 961 NULL
++calculate_sizes_fndecl_962_fields calculate_sizes fndecl 2 962 NULL
++compat_sys_preadv64_fndecl_968_fields compat_sys_preadv64 fndecl 3 968 NULL
++tx_ring_size_tx_queue_982_fields tx_ring_size tx_queue 0 982 NULL
++s_blocks_count_hi_ext4_super_block_983_fields s_blocks_count_hi ext4_super_block 0 983 NULL nohasharray
++em28xx_alloc_urbs_fndecl_983_fields em28xx_alloc_urbs fndecl 5-6 983 &s_blocks_count_hi_ext4_super_block_983_fields
++nd_integrity_init_fndecl_985_fields nd_integrity_init fndecl 2 985 NULL nohasharray
++sm501_create_subio_fndecl_985_fields sm501_create_subio fndecl 4-3 985 &nd_integrity_init_fndecl_985_fields
++esp6_get_mtu_fndecl_987_fields esp6_get_mtu fndecl 0-2 987 NULL
++acc_userl_accessdata_dn_989_fields acc_userl accessdata_dn 0 989 NULL
++gtt_size_amdgpu_mc_994_fields gtt_size amdgpu_mc 0 994 NULL
++ContainerSwitchEntries_aac_get_container_count_resp_1001_fields ContainerSwitchEntries aac_get_container_count_resp 0 1001 NULL
++reserve_metadata_bytes_fndecl_1002_fields reserve_metadata_bytes fndecl 0 1002 NULL
++cpu_count_MPT3SAS_ADAPTER_1003_fields cpu_count MPT3SAS_ADAPTER 0 1003 NULL
++xfs_dir3_leafn_read_fndecl_1004_fields xfs_dir3_leafn_read fndecl 3 1004 NULL
++__dm_get_module_param_fndecl_1008_fields __dm_get_module_param fndecl 2-3-0 1008 NULL
++assoc_req_len_wmi_connect_event_1014_fields assoc_req_len wmi_connect_event 0 1014 NULL
++i2c_smbus_check_pec_fndecl_1018_fields i2c_smbus_check_pec fndecl 0 1018 NULL
++nvram_size_chip_desc_1022_fields nvram_size chip_desc 0 1022 NULL
++len_wcn36xx_hal_msg_header_1023_fields len wcn36xx_hal_msg_header 0 1023 NULL
++dlm_len_mt76_fw_header_1030_fields dlm_len mt76_fw_header 0 1030 NULL
++pci_scan_single_device_fndecl_1034_fields pci_scan_single_device fndecl 2 1034 NULL
++wq_ecount_lpfc_sli4_hba_1039_fields wq_ecount lpfc_sli4_hba 0 1039 NULL
++page_shift_mlx5_buf_1041_fields page_shift mlx5_buf 0 1041 NULL nohasharray
++ssb_admatch_size_fndecl_1041_fields ssb_admatch_size fndecl 0-1 1041 &page_shift_mlx5_buf_1041_fields
++iv_len_txentry_desc_1042_fields iv_len txentry_desc 0 1042 NULL nohasharray
++address_length_acpi_resource_fixed_io_1042_fields address_length acpi_resource_fixed_io 0 1042 &iv_len_txentry_desc_1042_fields
++read_data_done_iscsi_datain_req_1049_fields read_data_done iscsi_datain_req 0 1049 NULL nohasharray
++registers_gen_74x164_chip_1049_fields registers gen_74x164_chip 0 1049 &read_data_done_iscsi_datain_req_1049_fields
++amdgpu_cgs_alloc_gpu_mem_fndecl_1052_fields amdgpu_cgs_alloc_gpu_mem fndecl 3 1052 NULL nohasharray
++m5602_urb_complete_fndecl_1052_fields m5602_urb_complete fndecl 3 1052 &amdgpu_cgs_alloc_gpu_mem_fndecl_1052_fields
++nentries_ebt_replace_1059_fields nentries ebt_replace 0 1059 NULL
++ch_r_tail_jsm_channel_1063_fields ch_r_tail jsm_channel 0 1063 NULL
++data_ep_set_params_fndecl_1064_fields data_ep_set_params fndecl 3-4 1064 NULL
++cw_clear_fndecl_1066_fields cw_clear fndecl 5-3-4-6 1066 NULL
++len_left_brcmf_sdio_hdrinfo_1067_fields len_left brcmf_sdio_hdrinfo 0 1067 NULL nohasharray
++tcp_scalable_cong_avoid_fndecl_1067_fields tcp_scalable_cong_avoid fndecl 3 1067 &len_left_brcmf_sdio_hdrinfo_1067_fields
++i_dno_hpfs_inode_info_1070_fields i_dno hpfs_inode_info 0 1070 NULL nohasharray
++line__mgslpc_info_1070_fields line _mgslpc_info 0 1070 &i_dno_hpfs_inode_info_1070_fields
++num_min_snd_ratden_1071_fields num_min snd_ratden 0 1071 NULL
++private_data_len_iw_cm_conn_param_1076_fields private_data_len iw_cm_conn_param 0 1076 NULL
++rq_wqe_count_mlx5_ib_create_qp_1079_fields rq_wqe_count mlx5_ib_create_qp 0 1079 NULL
++ReadEEProm_fndecl_1081_fields ReadEEProm fndecl 3 1081 NULL
++max_srq_sz_mthca_dev_lim_1088_fields max_srq_sz mthca_dev_lim 0 1088 NULL
++libipw_classify_fndecl_1089_fields libipw_classify fndecl 0 1089 NULL
++data_start_msdos_sb_info_1100_fields data_start msdos_sb_info 0 1100 NULL
++rx_ring_count_e1000_adapter_1107_fields rx_ring_count e1000_adapter 0 1107 NULL
++ResponseDataLength__MPI2_SMP_PASSTHROUGH_REPLY_1113_fields ResponseDataLength _MPI2_SMP_PASSTHROUGH_REPLY 0 1113 NULL
++io_free_memtype_fndecl_1116_fields io_free_memtype fndecl 1-2 1116 NULL
++slave_cnt_bonding_1119_fields slave_cnt bonding 0 1119 NULL
++rxkad_decrypt_ticket_fndecl_1120_fields rxkad_decrypt_ticket fndecl 3 1120 NULL
++ctl_in_pipe_brcmf_usbdev_info_1124_fields ctl_in_pipe brcmf_usbdev_info 0 1124 NULL
++forw_xfs_dir3_icleaf_hdr_1136_fields forw xfs_dir3_icleaf_hdr 0 1136 NULL
++log_num_mlx4_resource_1137_fields log_num mlx4_resource 0 1137 NULL
++alloc_rss_size_i40e_pf_1138_fields alloc_rss_size i40e_pf 0 1138 NULL
++p54spi_spi_read_fndecl_1149_fields p54spi_spi_read fndecl 4 1149 NULL
++offset_mirror_1150_fields offset mirror 0 1150 NULL
++ntfs_rl_vcn_to_lcn_fndecl_1155_fields ntfs_rl_vcn_to_lcn fndecl 0-2 1155 NULL
++cbuf_data_fndecl_1158_fields cbuf_data fndecl 0 1158 NULL
++sysctl_tcp_max_reordering_vardecl_1161_fields sysctl_tcp_max_reordering vardecl 0 1161 NULL
++rtsx_usb_write_ppbuf_fndecl_1165_fields rtsx_usb_write_ppbuf fndecl 3 1165 NULL
++nfs4_acl_bytes_fndecl_1168_fields nfs4_acl_bytes fndecl 1 1168 NULL nohasharray
++sg_len_mmc_data_1168_fields sg_len mmc_data 0 1168 &nfs4_acl_bytes_fndecl_1168_fields
++__set_xattr_fndecl_1176_fields __set_xattr fndecl 5-3 1176 NULL nohasharray
++indata_len_ceph_osd_req_op_1176_fields indata_len ceph_osd_req_op 0 1176 &__set_xattr_fndecl_1176_fields
++br_vlan_add_fndecl_1177_fields br_vlan_add fndecl 2 1177 NULL
++nr_push_drm_nouveau_gem_pushbuf_1184_fields nr_push drm_nouveau_gem_pushbuf 0 1184 NULL
++probe_resp_len_cfg80211_beacon_data_1195_fields probe_resp_len cfg80211_beacon_data 0 1195 NULL
++rdmarc_per_qp_mlx4_profile_1197_fields rdmarc_per_qp mlx4_profile 0 1197 NULL
++nfs4_get_security_label_fndecl_1201_fields nfs4_get_security_label fndecl 3 1201 NULL nohasharray
++rx_sdu_size_tsap_cb_1201_fields rx_sdu_size tsap_cb 0 1201 &nfs4_get_security_label_fndecl_1201_fields
++pvscsi_ring_pages_vardecl_vmw_pvscsi_c_1202_fields pvscsi_ring_pages vardecl_vmw_pvscsi.c 0 1202 NULL
++max_sge_mvumi_hba_1213_fields max_sge mvumi_hba 0 1213 NULL
++max_transfer_bytes_storvsc_device_1221_fields max_transfer_bytes storvsc_device 0 1221 NULL
++max_pkt_size_au0828_dev_1222_fields max_pkt_size au0828_dev 0 1222 NULL nohasharray
++tcp_synack_options_fndecl_1222_fields tcp_synack_options fndecl 0 1222 &max_pkt_size_au0828_dev_1222_fields
++segno_curseg_info_1223_fields segno curseg_info 0 1223 NULL
++pfkey_sendmsg_fndecl_1225_fields pfkey_sendmsg fndecl 3 1225 NULL
++i_sblock_bfs_inode_info_1228_fields i_sblock bfs_inode_info 0 1228 NULL
++cached_dev_cache_miss_fndecl_1232_fields cached_dev_cache_miss fndecl 4 1232 NULL
++prev_chunk_sectors_r5conf_1237_fields prev_chunk_sectors r5conf 0 1237 NULL
++elf_headers_sz_kimage_arch_1238_fields elf_headers_sz kimage_arch 0 1238 NULL
++buffer_dma_zd_usb_interrupt_1239_fields buffer_dma zd_usb_interrupt 0 1239 NULL
++iwl_mvm_sta_tx_agg_start_fndecl_1243_fields iwl_mvm_sta_tx_agg_start fndecl 4 1243 NULL
++dlc_leaf_msg_log_message_1244_fields dlc leaf_msg_log_message 0 1244 NULL
++max_vports_lpfc_hba_1253_fields max_vports lpfc_hba 0 1253 NULL
++find_highest_prio_tid_fndecl_1254_fields find_highest_prio_tid fndecl 0 1254 NULL
++num_slaves_mlx4_dev_1258_fields num_slaves mlx4_dev 0 1258 NULL
++alloc32_mon_bin_get32_1260_fields alloc32 mon_bin_get32 0 1260 NULL
++nfs_readdir_xdr_filler_fndecl_1265_fields nfs_readdir_xdr_filler fndecl 0 1265 NULL
++nlmsg_len_nlmsghdr_1272_fields nlmsg_len nlmsghdr 0 1272 NULL
++bictcp_cong_avoid_fndecl_1278_fields bictcp_cong_avoid fndecl 3 1278 NULL
++__lbtf_cmd_async_fndecl_1280_fields __lbtf_cmd_async fndecl 4 1280 NULL
++ocfs2_read_extent_block_fndecl_1285_fields ocfs2_read_extent_block fndecl 0-2 1285 NULL
++fw_epd_frame_1293_fields fw epd_frame 0 1293 NULL
++ieee80211_stop_rx_ba_session_offl_fndecl_1297_fields ieee80211_stop_rx_ba_session_offl fndecl 3 1297 NULL
++prv_size_override_lpss_device_desc_1301_fields prv_size_override lpss_device_desc 0 1301 NULL
++wMaxControlMessage_usb_cdc_mbim_desc_1308_fields wMaxControlMessage usb_cdc_mbim_desc 0 1308 NULL
++vmw_kms_stdu_surface_dirty_fndecl_1310_fields vmw_kms_stdu_surface_dirty fndecl 8 1310 NULL
++txhdr_len_mlxsw_driver_1313_fields txhdr_len mlxsw_driver 0 1313 NULL nohasharray
++number_snd_pcm_substream_1313_fields number snd_pcm_substream 0 1313 &txhdr_len_mlxsw_driver_1313_fields nohasharray
++curr_resync_mddev_1313_fields curr_resync mddev 0 1313 &number_snd_pcm_substream_1313_fields
++vd_cbr_au_count_gru_vma_data_1314_fields vd_cbr_au_count gru_vma_data 0 1314 NULL
++win_size_async_state_1326_fields win_size async_state 0 1326 NULL
++ufs_alloc_lastblock_fndecl_1339_fields ufs_alloc_lastblock fndecl 2 1339 NULL
++fat_parse_short_fndecl_1348_fields fat_parse_short fndecl 0 1348 NULL
++current_limit_memblock_1350_fields current_limit memblock 0 1350 NULL
++ccp_set_dm_area_fndecl_1351_fields ccp_set_dm_area fndecl 4 1351 NULL
++found_index_locate_info_1355_fields found_index locate_info 0 1355 NULL
++smaps_pte_entry_fndecl_1359_fields smaps_pte_entry fndecl 2 1359 NULL
++MemReadHSCX_fndecl_1364_fields MemReadHSCX fndecl 0 1364 NULL
++len_btrfs_ordered_sum_1365_fields len btrfs_ordered_sum 0 1365 NULL nohasharray
++ssram_size_telemetry_unit_config_1365_fields ssram_size telemetry_unit_config 0 1365 &len_btrfs_ordered_sum_1365_fields
++tx_ring_count_xgbe_prv_data_1366_fields tx_ring_count xgbe_prv_data 0 1366 NULL
++len_orinoco_scan_data_1370_fields len orinoco_scan_data 0 1370 NULL nohasharray
++dlen_hci_sco_hdr_1370_fields dlen hci_sco_hdr 0 1370 &len_orinoco_scan_data_1370_fields
++v_total_aty128_crtc_1375_fields v_total aty128_crtc 0 1375 NULL
++rx_tpa_start_cmp_hdr_info_rx_tpa_start_cmp_ext_1380_fields rx_tpa_start_cmp_hdr_info rx_tpa_start_cmp_ext 0 1380 NULL
++w_drm_vmw_rect_1383_fields w drm_vmw_rect 0 1383 NULL
++ieee80211_probereq_get_fndecl_1384_fields ieee80211_probereq_get fndecl 5-4 1384 NULL
++vlen_nfsd3_writeargs_1388_fields vlen nfsd3_writeargs 0 1388 NULL
++smsc911x_rx_get_rxstatus_fndecl_1389_fields smsc911x_rx_get_rxstatus fndecl 0 1389 NULL
++stepped_offset_skb_seq_state_1395_fields stepped_offset skb_seq_state 0 1395 NULL
++len_wsm_hdr_1398_fields len wsm_hdr 0 1398 NULL
++dev_size_amd_flash_info_1399_fields dev_size amd_flash_info 0 1399 NULL
++cmd_size_scsi_host_template_1404_fields cmd_size scsi_host_template 0 1404 NULL
++num_hsi_port_1406_fields num hsi_port 0 1406 NULL
++ec_hdr_alsize_ubi_device_1411_fields ec_hdr_alsize ubi_device 0 1411 NULL
++ubifs_leb_write_fndecl_1412_fields ubifs_leb_write fndecl 5-4 1412 NULL
++copy_pages_to_kvecs_fndecl_1417_fields copy_pages_to_kvecs fndecl 0 1417 NULL
++fill_gap_fndecl_1418_fields fill_gap fndecl 4-3 1418 NULL
++wpa_ie_len_orinoco_private_1421_fields wpa_ie_len orinoco_private 0 1421 NULL nohasharray
++reg_umr_fndecl_1421_fields reg_umr fndecl 3 1421 &wpa_ie_len_orinoco_private_1421_fields
++bch_dump_read_fndecl_1422_fields bch_dump_read fndecl 3 1422 NULL
++tnc_insert_fndecl_1431_fields tnc_insert fndecl 4 1431 NULL
++relocation_count_drm_i915_gem_exec_object2_1435_fields relocation_count drm_i915_gem_exec_object2 0 1435 NULL
++security_set_fndecl_1439_fields security_set fndecl 6 1439 NULL
++loc_addr_rio_transfer_io_1447_fields loc_addr rio_transfer_io 0 1447 NULL nohasharray
++alloc_libipw_fndecl_1447_fields alloc_libipw fndecl 1 1447 &loc_addr_rio_transfer_io_1447_fields
++fixup_user_fault_fndecl_1456_fields fixup_user_fault fndecl 3 1456 NULL
++size_fw_sec_1464_fields size fw_sec 0 1464 NULL
++net_header_len_sctp_af_1467_fields net_header_len sctp_af 0 1467 NULL
++btrfs_del_inode_ref_in_log_fndecl_1471_fields btrfs_del_inode_ref_in_log fndecl 4 1471 NULL
++ceph_decode_32_fndecl_1473_fields ceph_decode_32 fndecl 0 1473 NULL
++xenbus_map_ring_valloc_pv_fndecl_1474_fields xenbus_map_ring_valloc_pv fndecl 3 1474 NULL
++ax25_output_fndecl_1475_fields ax25_output fndecl 2 1475 NULL
++pbus_size_io_fndecl_1478_fields pbus_size_io fndecl 2 1478 NULL
++nfs3_proc_symlink_fndecl_1479_fields nfs3_proc_symlink fndecl 4 1479 NULL
++iscsi_sw_tcp_send_data_prep_fndecl_1485_fields iscsi_sw_tcp_send_data_prep fndecl 5-4 1485 NULL
++irq_base_max8925_chip_1487_fields irq_base max8925_chip 0 1487 NULL
++ecryptfs_write_metadata_to_contents_fndecl_1490_fields ecryptfs_write_metadata_to_contents fndecl 3 1490 NULL
++de4x5_alloc_rx_buff_fndecl_1491_fields de4x5_alloc_rx_buff fndecl 3 1491 NULL
++n_channels_ieee80211_supported_band_1494_fields n_channels ieee80211_supported_band 0 1494 NULL
++blocks_count_ext4_new_group_data_1496_fields blocks_count ext4_new_group_data 0 1496 NULL
++ext4_mpage_readpages_fndecl_1499_fields ext4_mpage_readpages fndecl 4 1499 NULL
++cx18_copy_buf_to_user_fndecl_1500_fields cx18_copy_buf_to_user fndecl 4 1500 NULL nohasharray
++num_step_snd_ratden_1500_fields num_step snd_ratden 0 1500 &cx18_copy_buf_to_user_fndecl_1500_fields
++bo_info_size_drm_amdgpu_bo_list_in_1510_fields bo_info_size drm_amdgpu_bo_list_in 0 1510 NULL
++dma_data_req_size_ivtv_1512_fields dma_data_req_size ivtv 0 1512 NULL
++initiate_new_session_fndecl_1514_fields initiate_new_session fndecl 6 1514 NULL nohasharray
++__break_lease_fndecl_1514_fields __break_lease fndecl 0 1514 &initiate_new_session_fndecl_1514_fields
++sk_sndbuf_sock_1516_fields sk_sndbuf sock 0 1516 NULL
++shmem_file_setup_fndecl_1517_fields shmem_file_setup fndecl 2 1517 NULL
++buf_size_mlx4_ib_qp_1529_fields buf_size mlx4_ib_qp 0 1529 NULL
++max_rqe_ocrdma_dev_attr_1534_fields max_rqe ocrdma_dev_attr 0 1534 NULL
++grcan_allocate_dma_buffers_fndecl_1535_fields grcan_allocate_dma_buffers fndecl 2-3 1535 NULL
++readlink_inode_operations_1540_fields readlink inode_operations 0 1540 NULL
++__es_remove_extent_fndecl_1544_fields __es_remove_extent fndecl 0-3-2 1544 NULL
++max_gs_mlx4_srq_1550_fields max_gs mlx4_srq 0 1550 NULL
++prio_read_fndecl_1564_fields prio_read fndecl 2 1564 NULL
++i2cdev_write_fndecl_1565_fields i2cdev_write fndecl 3 1565 NULL
++alignment_acpi_resource_io_1569_fields alignment acpi_resource_io 0 1569 NULL
++mc13xxx_get_num_regulators_dt_fndecl_1571_fields mc13xxx_get_num_regulators_dt fndecl 0 1571 NULL
++size_drm_qxl_alloc_1578_fields size drm_qxl_alloc 0 1578 NULL
++ndesc_srp_map_state_1582_fields ndesc srp_map_state 0 1582 NULL
++sector_clone_info_1593_fields sector clone_info 0 1593 NULL
++size_icp_qat_uof_batch_init_1600_fields size icp_qat_uof_batch_init 0 1600 NULL nohasharray
++length_cpc_can_msg_1600_fields length cpc_can_msg 0 1600 &size_icp_qat_uof_batch_init_1600_fields
++block_size_c2port_ops_1610_fields block_size c2port_ops 0 1610 NULL
++pppoe_sendmsg_fndecl_1612_fields pppoe_sendmsg fndecl 3 1612 NULL
++rawv6_send_hdrinc_fndecl_1625_fields rawv6_send_hdrinc fndecl 3 1625 NULL nohasharray
++max_frame_size_usb_usbvision_1625_fields max_frame_size usb_usbvision 0 1625 &rawv6_send_hdrinc_fndecl_1625_fields
++dt_num_devices_exofs_device_table_1626_fields dt_num_devices exofs_device_table 0 1626 NULL
++size_bin_attribute_1632_fields size bin_attribute 0 1632 NULL
++num_fw_rsc_vdev_vring_1645_fields num fw_rsc_vdev_vring 0 1645 NULL
++cblock_policy_result_1648_fields cblock policy_result 0 1648 NULL
++kobil_write_fndecl_1651_fields kobil_write fndecl 4 1651 NULL
++st_set_pages_fndecl_1655_fields st_set_pages fndecl 3 1655 NULL
++onenand_fill_auto_oob_fndecl_1663_fields onenand_fill_auto_oob fndecl 4 1663 NULL
++rds_tcp_sendmsg_fndecl_1668_fields rds_tcp_sendmsg fndecl 3 1668 NULL
++num_clips_drm_vmw_present_arg_1671_fields num_clips drm_vmw_present_arg 0 1671 NULL
++hidraw_send_report_fndecl_1674_fields hidraw_send_report fndecl 3 1674 NULL
++rsrc_len_usb_hcd_1686_fields rsrc_len usb_hcd 0 1686 NULL
++file_size_squashfs_ldir_inode_1687_fields file_size squashfs_ldir_inode 0 1687 NULL
++remain_bytes_asc_q_done_info_1696_fields remain_bytes asc_q_done_info 0 1696 NULL
++size_grcan_dma_buffer_1702_fields size grcan_dma_buffer 0 1702 NULL
++divasa_remap_pci_bar_fndecl_1710_fields divasa_remap_pci_bar fndecl 4-3 1710 NULL nohasharray
++get_cap_size_qlcnic_hardware_ops_1710_fields get_cap_size qlcnic_hardware_ops 0 1710 &divasa_remap_pci_bar_fndecl_1710_fields
++ext4_getblk_fndecl_1720_fields ext4_getblk fndecl 3 1720 NULL
++osd_req_op_notify_init_fndecl_1721_fields osd_req_op_notify_init fndecl 7 1721 NULL
++yres_drm_cmdline_mode_1722_fields yres drm_cmdline_mode 0 1722 NULL
++qtd_fill_fndecl_1725_fields qtd_fill fndecl 4-5-2-0-3 1725 NULL
++submit_io_fndecl_1726_fields submit_io fndecl 3 1726 NULL
++ts_num_ids_nfsd4_test_stateid_1732_fields ts_num_ids nfsd4_test_stateid 0 1732 NULL nohasharray
++xfs_rmap_get_rec_fndecl_1732_fields xfs_rmap_get_rec fndecl 0 1732 &ts_num_ids_nfsd4_test_stateid_1732_fields
++state_hmask_netns_xfrm_1733_fields state_hmask netns_xfrm 0 1733 NULL
++__gfn_to_hva_many_fndecl_1735_fields __gfn_to_hva_many fndecl 0-2 1735 NULL
++l4_hdr_size_vmxnet3_tx_ctx_1737_fields l4_hdr_size vmxnet3_tx_ctx 0 1737 NULL
++userspace_do_request_fndecl_1738_fields userspace_do_request fndecl 5 1738 NULL
++size_nhlt_specific_cfg_1740_fields size nhlt_specific_cfg 0 1740 NULL
++reg_list_format_size_bytes_amdgpu_rlc_1742_fields reg_list_format_size_bytes amdgpu_rlc 0 1742 NULL
++nr_packets_saa7134_ts_1743_fields nr_packets saa7134_ts 0 1743 NULL nohasharray
++ad_sd_write_reg_fndecl_1743_fields ad_sd_write_reg fndecl 3 1743 &nr_packets_saa7134_ts_1743_fields
++sectorsize_btrfs_root_1747_fields sectorsize btrfs_root 0 1747 NULL
++si4713_send_command_fndecl_1750_fields si4713_send_command fndecl 6 1750 NULL
++hugetlbfs_fallocate_fndecl_1752_fields hugetlbfs_fallocate fndecl 3 1752 NULL
++ext4_remove_blocks_fndecl_1754_fields ext4_remove_blocks fndecl 5 1754 NULL nohasharray
++st_nci_hci_dm_field_generator_fndecl_1754_fields st_nci_hci_dm_field_generator fndecl 3 1754 &ext4_remove_blocks_fndecl_1754_fields
++len_pda_custom_wrapper_1757_fields len pda_custom_wrapper 0 1757 NULL
++offset_scrub_nocow_inode_1762_fields offset scrub_nocow_inode 0 1762 NULL
++__es_insert_extent_fndecl_1764_fields __es_insert_extent fndecl 0 1764 NULL
++nentries_hfi1_user_sdma_comp_q_1768_fields nentries hfi1_user_sdma_comp_q 0 1768 NULL
++eqe_size_mlx4_caps_1775_fields eqe_size mlx4_caps 0 1775 NULL
++overlay_num_mmp_path_info_1781_fields overlay_num mmp_path_info 0 1781 NULL
++key_length_mwifiex_wep_key_1784_fields key_length mwifiex_wep_key 0 1784 NULL
++__of_translate_address_fndecl_1786_fields __of_translate_address fndecl 0 1786 NULL
++pitch_radeonfb_info_1792_fields pitch radeonfb_info 0 1792 NULL
++vub300_usb_bulk_msg_fndecl_1799_fields vub300_usb_bulk_msg fndecl 4-2 1799 NULL nohasharray
++security_inode_killpriv_fndecl_1799_fields security_inode_killpriv fndecl 0 1799 &vub300_usb_bulk_msg_fndecl_1799_fields
++wl1273_fm_write_data_fndecl_1803_fields wl1273_fm_write_data fndecl 3 1803 NULL
++num_mtt_segs_mthca_limits_1806_fields num_mtt_segs mthca_limits 0 1806 NULL
++dataInSize_mpt_ioctl_command_1808_fields dataInSize mpt_ioctl_command 0 1808 NULL
++udl_gem_alloc_object_fndecl_1811_fields udl_gem_alloc_object fndecl 2 1811 NULL
++__hugepage_set_anon_rmap_fndecl_1814_fields __hugepage_set_anon_rmap fndecl 3 1814 NULL nohasharray
++sv_nrpools_svc_serv_1814_fields sv_nrpools svc_serv 0 1814 &__hugepage_set_anon_rmap_fndecl_1814_fields
++fuse_dir_ioctl_fndecl_1818_fields fuse_dir_ioctl fndecl 2 1818 NULL
++bufsize_saa7134_dmasound_1821_fields bufsize saa7134_dmasound 0 1821 NULL
++lleft_ext4_allocation_request_1823_fields lleft ext4_allocation_request 0 1823 NULL
++__add_prelim_ref_fndecl_1828_fields __add_prelim_ref fndecl 6-5 1828 NULL
++dev_number_vardecl_rio_mport_cdev_c_1836_fields dev_number vardecl_rio_mport_cdev.c 0 1836 NULL
++cpu_port_b53_device_1841_fields cpu_port b53_device 0 1841 NULL
++walk_system_ram_range_fndecl_1842_fields walk_system_ram_range fndecl 2-1 1842 NULL
++check_free_sectors_fndecl_1843_fields check_free_sectors fndecl 2 1843 NULL
++ncpus_xen_mc_physcpuinfo_1849_fields ncpus xen_mc_physcpuinfo 0 1849 NULL
++qla4_82xx_pci_mem_read_2M_fndecl_1850_fields qla4_82xx_pci_mem_read_2M fndecl 2 1850 NULL
++maximum_cx88_ctrl_1852_fields maximum cx88_ctrl 0 1852 NULL
++dm_write_async_fndecl_1859_fields dm_write_async fndecl 3 1859 NULL
++rxq_req_tg3_1873_fields rxq_req tg3 0 1873 NULL
++buf_size_cx18_stream_1878_fields buf_size cx18_stream 0 1878 NULL nohasharray
++sisusb_bulkin_msg_fndecl_1878_fields sisusb_bulkin_msg fndecl 4-2 1878 &buf_size_cx18_stream_1878_fields
++__clear_user_fndecl_1885_fields __clear_user fndecl 0 1885 NULL nohasharray
++menu_count_uvc_control_mapping_1885_fields menu_count uvc_control_mapping 0 1885 &__clear_user_fndecl_1885_fields
++vmxnet3_get_hdr_len_fndecl_1891_fields vmxnet3_get_hdr_len fndecl 0 1891 NULL
++cq_ecount_lpfc_sli4_hba_1907_fields cq_ecount lpfc_sli4_hba 0 1907 NULL
++ca91cx42_master_set_fndecl_1913_fields ca91cx42_master_set fndecl 4 1913 NULL
++fix_unclean_leb_fndecl_1927_fields fix_unclean_leb fndecl 3 1927 NULL
++convert_ip_to_linear_fndecl_1933_fields convert_ip_to_linear fndecl 0 1933 NULL
++sv_resid_sym_ccb_1947_fields sv_resid sym_ccb 0 1947 NULL
++ieee80211_get_mesh_hdrlen_fndecl_1948_fields ieee80211_get_mesh_hdrlen fndecl 0 1948 NULL
++num_adcs_cs42xx8_driver_data_1953_fields num_adcs cs42xx8_driver_data 0 1953 NULL
++dax_major_vardecl_dax_c_1960_fields dax_major vardecl_dax.c 0 1960 NULL
++shmem_getpage_fndecl_1965_fields shmem_getpage fndecl 2 1965 NULL
++xlog_get_bp_fndecl_1966_fields xlog_get_bp fndecl 2 1966 NULL
++partitionLength_partitionDesc_1977_fields partitionLength partitionDesc 0 1977 NULL nohasharray
++to_dio_submit_1977_fields to dio_submit 0 1977 &partitionLength_partitionDesc_1977_fields nohasharray
++of_irq_get_byname_fndecl_1977_fields of_irq_get_byname fndecl 0 1977 &to_dio_submit_1977_fields
++tipc_sendmcast_fndecl_1981_fields tipc_sendmcast fndecl 4 1981 NULL nohasharray
++ll_md_brw_size_ll_sb_info_1981_fields ll_md_brw_size ll_sb_info 0 1981 &tipc_sendmcast_fndecl_1981_fields
++i5k_find_amb_registers_fndecl_1986_fields i5k_find_amb_registers fndecl 2 1986 NULL
++acpi_dev_gpio_irq_get_fndecl_1997_fields acpi_dev_gpio_irq_get fndecl 0 1997 NULL
++total_memory_vbe_ib_1999_fields total_memory vbe_ib 0 1999 NULL
++idx_len_tg3_rx_buffer_desc_2006_fields idx_len tg3_rx_buffer_desc 0 2006 NULL
++ipv6_skip_exthdr_fndecl_2016_fields ipv6_skip_exthdr fndecl 0-2 2016 NULL
++madvise_vma_fndecl_2019_fields madvise_vma fndecl 4-3 2019 NULL
++complicated_alloc_urb_fndecl_2022_fields complicated_alloc_urb fndecl 2 2022 NULL nohasharray
++doc_probe_fndecl_2022_fields doc_probe fndecl 1 2022 &complicated_alloc_urb_fndecl_2022_fields
++vga_vram_base_vardecl_vgacon_c_2024_fields vga_vram_base vardecl_vgacon.c 0 2024 NULL
++max_write_fuse_conn_2028_fields max_write fuse_conn 0 2028 NULL
++process_adv_report_fndecl_2030_fields process_adv_report fndecl 9 2030 NULL
++ib_umem_odp_map_dma_single_page_fndecl_2040_fields ib_umem_odp_map_dma_single_page fndecl 0 2040 NULL
++num_phy_chans_d40_base_2049_fields num_phy_chans d40_base 0 2049 NULL
++gss_encrypt_xdr_buf_fndecl_2050_fields gss_encrypt_xdr_buf fndecl 3 2050 NULL
++set_sock_size_fndecl_2051_fields set_sock_size fndecl 3 2051 NULL
++fscrypt_zeroout_range_fndecl_2052_fields fscrypt_zeroout_range fndecl 3 2052 NULL
++xfs_da_grow_inode_int_fndecl_2058_fields xfs_da_grow_inode_int fndecl 3 2058 NULL
++rt2x00queue_remove_l2pad_fndecl_2059_fields rt2x00queue_remove_l2pad fndecl 2 2059 NULL nohasharray
++wdt87xx_i2c_xfer_fndecl_2059_fields wdt87xx_i2c_xfer fndecl 3-5 2059 &rt2x00queue_remove_l2pad_fndecl_2059_fields nohasharray
++getgain_fndecl_2059_fields getgain fndecl 0 2059 &wdt87xx_i2c_xfer_fndecl_2059_fields
++receive_n_bytes_fndecl_2063_fields receive_n_bytes fndecl 3 2063 NULL
++val_bytes_regmap_format_2064_fields val_bytes regmap_format 0 2064 NULL
++total_copied_iscsi_segment_2071_fields total_copied iscsi_segment 0 2071 NULL
++mei_io_cb_alloc_buf_fndecl_2088_fields mei_io_cb_alloc_buf fndecl 0 2088 NULL
++__kernel_write_fndecl_2090_fields __kernel_write fndecl 3-0 2090 NULL
++rxd_size_bdx_priv_2091_fields rxd_size bdx_priv 0 2091 NULL
++sensor_xres_em28xx_v4l2_2095_fields sensor_xres em28xx_v4l2 0 2095 NULL
++size_nfs_fattr_2101_fields size nfs_fattr 0 2101 NULL
++namelen_extended_attribute_2109_fields namelen extended_attribute 0 2109 NULL
++dlen_nft_immediate_expr_2110_fields dlen nft_immediate_expr 0 2110 NULL
++max_pkt_payload_len_nci_conn_info_2111_fields max_pkt_payload_len nci_conn_info 0 2111 NULL
++ecryptfs_truncate_fndecl_2118_fields ecryptfs_truncate fndecl 2 2118 NULL
++untrack_pfn_fndecl_2124_fields untrack_pfn fndecl 3 2124 NULL
++hdrs_min_io_size_ubi_device_2134_fields hdrs_min_io_size ubi_device 0 2134 NULL
++offset_resp_ies_ndis_80211_assoc_info_2135_fields offset_resp_ies ndis_80211_assoc_info 0 2135 NULL
++count_skge_ring_2140_fields count skge_ring 0 2140 NULL
++capacity_p9_fcall_2144_fields capacity p9_fcall 0 2144 NULL nohasharray
++xfs_do_writepage_fndecl_2144_fields xfs_do_writepage fndecl 0 2144 &capacity_p9_fcall_2144_fields
++multi_ios_hda_gen_spec_2147_fields multi_ios hda_gen_spec 0 2147 NULL
++ioc_len_obd_ioctl_hdr_2148_fields ioc_len obd_ioctl_hdr 0 2148 NULL
++mpc_new_length_vardecl_mpparse_c_2163_fields mpc_new_length vardecl_mpparse.c 0 2163 NULL nohasharray
++block_size__drive_info_struct_2163_fields block_size _drive_info_struct 0 2163 &mpc_new_length_vardecl_mpparse_c_2163_fields
++log_early_fndecl_2170_fields log_early fndecl 3 2170 NULL
++read_size_perf_event_2173_fields read_size perf_event 0 2173 NULL
++ext4_setup_next_flex_gd_fndecl_2174_fields ext4_setup_next_flex_gd fndecl 4 2174 NULL
++rate_max_audioformat_2186_fields rate_max audioformat 0 2186 NULL nohasharray
++max_txsz_ulp_iscsi_info_2186_fields max_txsz ulp_iscsi_info 0 2186 &rate_max_audioformat_2186_fields
++ast_ttm_tt_create_fndecl_2190_fields ast_ttm_tt_create fndecl 2 2190 NULL
++__alloc_reserved_percpu_fndecl_2196_fields __alloc_reserved_percpu fndecl 1 2196 NULL
++max_header_size_irlan_provider_cb_2198_fields max_header_size irlan_provider_cb 0 2198 NULL nohasharray
++num_vlans_b53_device_2198_fields num_vlans b53_device 0 2198 &max_header_size_irlan_provider_cb_2198_fields
++ib_map_mr_sg_fndecl_2213_fields ib_map_mr_sg fndecl 0-5 2213 NULL
++valuelen_xfs_attr_inactive_list_2216_fields valuelen xfs_attr_inactive_list 0 2216 NULL
++DH_length_eg_ctrl_info_2234_fields DH_length eg_ctrl_info 0 2234 NULL
++nfs_proc_readdir_fndecl_2240_fields nfs_proc_readdir fndecl 5 2240 NULL
++macb_change_mtu_fndecl_2242_fields macb_change_mtu fndecl 2 2242 NULL
++s_mb_group_prealloc_ext4_sb_info_2246_fields s_mb_group_prealloc ext4_sb_info 0 2246 NULL
++d_reclen_ufs_dir_entry_2247_fields d_reclen ufs_dir_entry 0 2247 NULL
++xfs_rmap_finish_one_fndecl_2257_fields xfs_rmap_finish_one fndecl 6 2257 NULL
++ncommunities_intel_pinctrl_soc_data_2270_fields ncommunities intel_pinctrl_soc_data 0 2270 NULL
++transport_init_se_cmd_fndecl_2277_fields transport_init_se_cmd fndecl 4 2277 NULL
++num_touchids_mxt_data_2284_fields num_touchids mxt_data 0 2284 NULL
++write_phy_fndecl_2290_fields write_phy fndecl 3 2290 NULL
++scrub_extent_fndecl_2293_fields scrub_extent fndecl 3-2-9-4 2293 NULL
++bulk_out_endpointAddr_usb_lcd_2303_fields bulk_out_endpointAddr usb_lcd 0 2303 NULL
++sensf_res_len_nfc_target_2304_fields sensf_res_len nfc_target 0 2304 NULL
++af9033_wr_regs_fndecl_2314_fields af9033_wr_regs fndecl 4 2314 NULL
++clipcount_v4l2_window_2316_fields clipcount v4l2_window 0 2316 NULL
++ieee80211_tdls_prep_mgmt_packet_fndecl_2320_fields ieee80211_tdls_prep_mgmt_packet fndecl 10 2320 NULL
++i915_gem_object_create_from_data_fndecl_2325_fields i915_gem_object_create_from_data fndecl 3 2325 NULL
++sendmsg_proto_ops_2329_fields sendmsg proto_ops 0 2329 NULL
++gfx_partition_size_amdgpu_gds_asic_info_2339_fields gfx_partition_size amdgpu_gds_asic_info 0 2339 NULL nohasharray
++wait_for_matching_downcall_fndecl_2339_fields wait_for_matching_downcall fndecl 0 2339 &gfx_partition_size_amdgpu_gds_asic_info_2339_fields
++memsz_kexec_segment_2340_fields memsz kexec_segment 0 2340 NULL
++sg_copy_to_buffer_fndecl_2349_fields sg_copy_to_buffer fndecl 4 2349 NULL
++sk_gso_max_size_sock_2353_fields sk_gso_max_size sock 0 2353 NULL
++internal_set_rx_headroom_fndecl_2359_fields internal_set_rx_headroom fndecl 2 2359 NULL
++ReplUnitNum_nftl_uci0_2366_fields ReplUnitNum nftl_uci0 0 2366 NULL
++packet_size_st5481_in_2373_fields packet_size st5481_in 0 2373 NULL nohasharray
++count_brcmf_pno_scanresults_le_2373_fields count brcmf_pno_scanresults_le 0 2373 &packet_size_st5481_in_2373_fields
++d_reclen_vxfs_direct_2382_fields d_reclen vxfs_direct 0 2382 NULL
++cache_block_lba_msb_data_2385_fields cache_block_lba msb_data 0 2385 NULL
++tx_buffer_size_peak_usb_adapter_2386_fields tx_buffer_size peak_usb_adapter 0 2386 NULL
++pcifront_rescan_root_fndecl_2389_fields pcifront_rescan_root fndecl 2-3 2389 NULL
++check_and_mark_free_block_fndecl_2391_fields check_and_mark_free_block fndecl 2 2391 NULL
++xfs_bmap_add_free_fndecl_2392_fields xfs_bmap_add_free fndecl 3-4 2392 NULL
++asd_get_cmdctx_size_fndecl_2408_fields asd_get_cmdctx_size fndecl 0 2408 NULL
++pci_cardbus_resource_alignment_fndecl_2410_fields pci_cardbus_resource_alignment fndecl 0 2410 NULL
++cfi_intelext_write_buffers_fndecl_2417_fields cfi_intelext_write_buffers fndecl 3 2417 NULL
++get_count_dm_space_map_2419_fields get_count dm_space_map 0 2419 NULL
++phys_addr_sfi_rtc_table_entry_2421_fields phys_addr sfi_rtc_table_entry 0 2421 NULL
++ocfs2_acl_from_xattr_fndecl_2423_fields ocfs2_acl_from_xattr fndecl 2 2423 NULL
++omtu_l2cap_chan_2424_fields omtu l2cap_chan 0 2424 NULL
++len_xpad_output_packet_2430_fields len xpad_output_packet 0 2430 NULL
++ib_umem_copy_from_fndecl_2435_fields ib_umem_copy_from fndecl 3-4 2435 NULL
++bcm3510_writebytes_fndecl_2436_fields bcm3510_writebytes fndecl 4 2436 NULL
++init_asiliant_fndecl_2438_fields init_asiliant fndecl 2 2438 NULL
++carl9170_rx_copy_data_fndecl_2443_fields carl9170_rx_copy_data fndecl 2 2443 NULL
++key_len_key_params_2447_fields key_len key_params 0 2447 NULL nohasharray
++hrqsize_nvme_rdma_cm_req_2447_fields hrqsize nvme_rdma_cm_req 0 2447 &key_len_key_params_2447_fields
++fb_base_bochs_device_2461_fields fb_base bochs_device 0 2461 NULL
++tcp_tso_autosize_fndecl_2464_fields tcp_tso_autosize fndecl 0-2 2464 NULL
++proc_maps_open_fndecl_2468_fields proc_maps_open fndecl 4 2468 NULL
++maxpacket_usb_ep_2473_fields maxpacket usb_ep 0 2473 NULL
++gpio_devt_vardecl_gpiolib_c_2478_fields gpio_devt vardecl_gpiolib.c 0 2478 NULL
++ixgb_change_mtu_fndecl_2482_fields ixgb_change_mtu fndecl 2 2482 NULL
++num_vf_en_nicpf_2486_fields num_vf_en nicpf 0 2486 NULL
++tcp_sacktag_one_fndecl_2487_fields tcp_sacktag_one fndecl 7 2487 NULL
++in_ports_f_midi_opts_2502_fields in_ports f_midi_opts 0 2502 NULL
++vfs_copy_file_range_fndecl_2503_fields vfs_copy_file_range fndecl 0-5 2503 NULL
++hard_mtu_lan78xx_net_2507_fields hard_mtu lan78xx_net 0 2507 NULL
++size_arpt_replace_2509_fields size arpt_replace 0 2509 NULL
++unmap_alignment_scsi_disk_2514_fields unmap_alignment scsi_disk 0 2514 NULL
++usbpn_set_mtu_fndecl_2527_fields usbpn_set_mtu fndecl 2 2527 NULL
++__nf_nat_mangle_tcp_packet_fndecl_2531_fields __nf_nat_mangle_tcp_packet fndecl 6-8 2531 NULL
++should_remove_suid_fndecl_2532_fields should_remove_suid fndecl 0 2532 NULL
++l2down_create_fndecl_2536_fields l2down_create fndecl 4 2536 NULL
++mthca_alloc_init_fndecl_2537_fields mthca_alloc_init fndecl 3 2537 NULL
++tcp_shifted_skb_fndecl_2543_fields tcp_shifted_skb fndecl 4 2543 NULL
++__wa_seg_submit_fndecl_2547_fields __wa_seg_submit fndecl 0 2547 NULL
++__kmem_cache_alias_fndecl_2551_fields __kmem_cache_alias fndecl 2 2551 NULL
++vm_brk_fndecl_2552_fields vm_brk fndecl 1-2 2552 NULL
++off_fuse_dirent_2561_fields off fuse_dirent 0 2561 NULL
++b_error_xfs_buf_2563_fields b_error xfs_buf 0 2563 NULL
++active_duplex_niu_link_config_2566_fields active_duplex niu_link_config 0 2566 NULL
++hdsp_external_sample_rate_fndecl_2568_fields hdsp_external_sample_rate fndecl 0 2568 NULL
++extend_brk_fndecl_2574_fields extend_brk fndecl 2-1 2574 NULL
++skb_checksum_trimmed_fndecl_2576_fields skb_checksum_trimmed fndecl 2 2576 NULL nohasharray
++aio_offset_iocb_2576_fields aio_offset iocb 0 2576 &skb_checksum_trimmed_fndecl_2576_fields
++ieee80211_reserve_tid_fndecl_2578_fields ieee80211_reserve_tid fndecl 2 2578 NULL
++len_patch_info_2583_fields len patch_info 0 2583 NULL
++nr_pages_scif_pinned_pages_2586_fields nr_pages scif_pinned_pages 0 2586 NULL
++page_cache_tree_insert_fndecl_2600_fields page_cache_tree_insert fndecl 0 2600 NULL
++maxfrsize_bfa_fcs_rport_s_2601_fields maxfrsize bfa_fcs_rport_s 0 2601 NULL
++ld_active_tgt_count_lov_desc_2613_fields ld_active_tgt_count lov_desc 0 2613 NULL
++of_phandle_iterator_init_fndecl_2614_fields of_phandle_iterator_init fndecl 0 2614 NULL
++dst_maxburst_dma_slave_config_2619_fields dst_maxburst dma_slave_config 0 2619 NULL
++ptn3460_read_bytes_fndecl_2627_fields ptn3460_read_bytes fndecl 4 2627 NULL
++snd_soc_params_to_frame_size_fndecl_2630_fields snd_soc_params_to_frame_size fndecl 0 2630 NULL
++radeon_vram_location_fndecl_2634_fields radeon_vram_location fndecl 3 2634 NULL
++regmap_spi_gather_write_fndecl_2639_fields regmap_spi_gather_write fndecl 3-5 2639 NULL
++rx_bufshift_rtl_stats_2641_fields rx_bufshift rtl_stats 0 2641 NULL
++sys_read_fndecl_2644_fields sys_read fndecl 3 2644 NULL
++bitmap_cond_end_sync_fndecl_2649_fields bitmap_cond_end_sync fndecl 2 2649 NULL
++max_low_pfn_mapped_vardecl_2650_fields max_low_pfn_mapped vardecl 0 2650 NULL
++resync_max_mddev_2658_fields resync_max mddev 0 2658 NULL nohasharray
++pktgen_alloc_skb_fndecl_2658_fields pktgen_alloc_skb fndecl 3 2658 &resync_max_mddev_2658_fields
++dlen_hci_acl_hdr_2672_fields dlen hci_acl_hdr 0 2672 NULL
++ee_block_ext4_extent_2673_fields ee_block ext4_extent 0 2673 NULL
++bbt_erase_shift_bbm_info_2675_fields bbt_erase_shift bbm_info 0 2675 NULL
++TmpDcm_zoran_jpg_settings_2679_fields TmpDcm zoran_jpg_settings 0 2679 NULL
++mad_len_ib_mad_recv_wc_2683_fields mad_len ib_mad_recv_wc 0 2683 NULL
++logo_lines_vardecl_fbcon_c_2685_fields logo_lines vardecl_fbcon.c 0 2685 NULL
++pkt_finish_packet_fndecl_2701_fields pkt_finish_packet fndecl 2 2701 NULL
++crash_shrink_memory_fndecl_2706_fields crash_shrink_memory fndecl 1 2706 NULL
++src_len_ccp_sha_engine_2711_fields src_len ccp_sha_engine 0 2711 NULL
++u132_hcd_bulk_output_sent_fndecl_2715_fields u132_hcd_bulk_output_sent fndecl 4 2715 NULL
++mt7601u_usb_alloc_buf_fndecl_2716_fields mt7601u_usb_alloc_buf fndecl 2 2716 NULL
++bytesused_v4l2_buffer_2717_fields bytesused v4l2_buffer 0 2717 NULL
++get_res_add_size_fndecl_2740_fields get_res_add_size fndecl 0 2740 NULL
++iov_iter_get_pages_fndecl_2747_fields iov_iter_get_pages fndecl 0-4-3 2747 NULL
++of_flat_dt_translate_address_fndecl_2750_fields of_flat_dt_translate_address fndecl 0 2750 NULL
++mem_vardecl_applicom_c_2753_fields mem vardecl_applicom.c 0 2753 NULL
++rfcomm_send_test_fndecl_2760_fields rfcomm_send_test fndecl 4 2760 NULL
++next_swap_swap_map_page_2761_fields next_swap swap_map_page 0 2761 NULL
++size_rx_module_layout_2762_fields size_rx module_layout 0 2762 NULL
++ecryptfs_write_fndecl_2763_fields ecryptfs_write fndecl 4-3 2763 NULL
++u_ssize_user32_2770_fields u_ssize user32 0 2770 NULL
++ieee80211_alloc_hw_nm_fndecl_2774_fields ieee80211_alloc_hw_nm fndecl 1 2774 NULL
++batadv_check_unicast_packet_fndecl_2775_fields batadv_check_unicast_packet fndecl 3 2775 NULL nohasharray
++fw_mon_size_iwl_trans_pcie_2775_fields fw_mon_size iwl_trans_pcie 0 2775 &batadv_check_unicast_packet_fndecl_2775_fields
++num_bo_handles_drm_virtgpu_execbuffer_2779_fields num_bo_handles drm_virtgpu_execbuffer 0 2779 NULL
++uhci_result_common_fndecl_2788_fields uhci_result_common fndecl 0 2788 NULL
++pkcs7_sig_note_skid_fndecl_2795_fields pkcs7_sig_note_skid fndecl 5 2795 NULL
++iobase_vardecl_l440gx_c_2797_fields iobase vardecl_l440gx.c 0 2797 NULL
++sb_inodelog_xfs_sb_2799_fields sb_inodelog xfs_sb 0 2799 NULL
++st21nfca_hci_se_io_fndecl_2800_fields st21nfca_hci_se_io fndecl 4 2800 NULL nohasharray
++mp_find_ioapic_pin_fndecl_2800_fields mp_find_ioapic_pin fndecl 0-2 2800 &st21nfca_hci_se_io_fndecl_2800_fields
++put_chars_fndecl_2801_fields put_chars fndecl 3 2801 NULL
++bytesused_vb2_plane_2804_fields bytesused vb2_plane 0 2804 NULL
++usb_stor_set_xfer_buf_fndecl_2809_fields usb_stor_set_xfer_buf fndecl 2 2809 NULL
++num_active_queues_i40evf_adapter_2813_fields num_active_queues i40evf_adapter 0 2813 NULL
++num_cnic_queues_bnx2x_2816_fields num_cnic_queues bnx2x 0 2816 NULL
++lo_offset_loop_device_2817_fields lo_offset loop_device 0 2817 NULL
++VerDcm_zoran_jpg_settings_2823_fields VerDcm zoran_jpg_settings 0 2823 NULL
++nbufs_dm_verity_fec_io_2825_fields nbufs dm_verity_fec_io 0 2825 NULL
++ureg_align_qib_devdata_2841_fields ureg_align qib_devdata 0 2841 NULL
++max_data_size_ath6kl_bmi_2842_fields max_data_size ath6kl_bmi 0 2842 NULL
++dccm2_len_iwl_cfg_2852_fields dccm2_len iwl_cfg 0 2852 NULL
++bit_offset_nvmem_cell_2856_fields bit_offset nvmem_cell 0 2856 NULL nohasharray
++phys_size_hfs_inode_info_2856_fields phys_size hfs_inode_info 0 2856 &bit_offset_nvmem_cell_2856_fields
++btrfs_reloc_clone_csums_fndecl_2862_fields btrfs_reloc_clone_csums fndecl 3-2 2862 NULL
++q_depth_nvme_dev_2866_fields q_depth nvme_dev 0 2866 NULL
++max_sst_algo_control_2868_fields max sst_algo_control 0 2868 NULL
++secondary_bin_size_drm_mga_dma_bootstrap_2869_fields secondary_bin_size drm_mga_dma_bootstrap 0 2869 NULL nohasharray
++sys_recvfrom_fndecl_2869_fields sys_recvfrom fndecl 3 2869 &secondary_bin_size_drm_mga_dma_bootstrap_2869_fields
++cmodio_id_vardecl_janz_cmodio_c_2872_fields cmodio_id vardecl_janz-cmodio.c 0 2872 NULL
++drm_gem_object_init_fndecl_2882_fields drm_gem_object_init fndecl 3 2882 NULL nohasharray
++sg_init_one_fndecl_2882_fields sg_init_one fndecl 3 2882 &drm_gem_object_init_fndecl_2882_fields
++qlcnic_sriov_pf_enable_fndecl_2884_fields qlcnic_sriov_pf_enable fndecl 2 2884 NULL
++len_falloc_range_2886_fields len falloc_range 0 2886 NULL
++n_notifiers_vmci_ctx_2889_fields n_notifiers vmci_ctx 0 2889 NULL
++pca953x_setup_gpio_fndecl_2892_fields pca953x_setup_gpio fndecl 2 2892 NULL nohasharray
++ieee80211_tdls_add_chan_switch_resp_ies_fndecl_2892_fields ieee80211_tdls_add_chan_switch_resp_ies fndecl 7 2892 &pca953x_setup_gpio_fndecl_2892_fields
++set_max_cos_est_fndecl_2893_fields set_max_cos_est fndecl 0 2893 NULL
++xfs_bmapi_reserve_delalloc_fndecl_2901_fields xfs_bmapi_reserve_delalloc fndecl 2 2901 NULL nohasharray
++nf_ct_seq_adjust_fndecl_2901_fields nf_ct_seq_adjust fndecl 4 2901 &xfs_bmapi_reserve_delalloc_fndecl_2901_fields
++tda1004x_do_upload_fndecl_2916_fields tda1004x_do_upload fndecl 3 2916 NULL
++snd_hdac_acomp_get_eld_fndecl_2924_fields snd_hdac_acomp_get_eld fndecl 0 2924 NULL
++discard_swap_cluster_fndecl_2926_fields discard_swap_cluster fndecl 3-2 2926 NULL
++bytes_left_nfs_direct_req_2928_fields bytes_left nfs_direct_req 0 2928 NULL nohasharray
++rx_buf_size_octeon_nic_if_config_2928_fields rx_buf_size octeon_nic_if_config 0 2928 &bytes_left_nfs_direct_req_2928_fields
++rx_num_pgs_tp_params_2929_fields rx_num_pgs tp_params 0 2929 NULL
++tx_cnt_isac_2931_fields tx_cnt isac 0 2931 NULL nohasharray
++pno_blkpg_partition_2931_fields pno blkpg_partition 0 2931 &tx_cnt_isac_2931_fields
++fnic_fc_trace_max_pages_vardecl_2932_fields fnic_fc_trace_max_pages vardecl 0 2932 NULL
++tx_ring_count_ixgbevf_adapter_2933_fields tx_ring_count ixgbevf_adapter 0 2933 NULL
++max_ndp_size_cdc_ncm_ctx_2942_fields max_ndp_size cdc_ncm_ctx 0 2942 NULL
++sys_remap_file_pages_fndecl_2943_fields sys_remap_file_pages fndecl 2-1-4 2943 NULL
++devm_ioremap_wc_fndecl_2945_fields devm_ioremap_wc fndecl 3-2 2945 NULL
++HorDcm_zoran_jpg_settings_2947_fields HorDcm zoran_jpg_settings 0 2947 NULL nohasharray
++tx_idx_dchannel_2947_fields tx_idx dchannel 0 2947 &HorDcm_zoran_jpg_settings_2947_fields
++cydata_ofs_cyttsp4_sysinfo_ofs_2952_fields cydata_ofs cyttsp4_sysinfo_ofs 0 2952 NULL
++alloc_blksz_hfsplus_sb_info_2955_fields alloc_blksz hfsplus_sb_info 0 2955 NULL
++__kfifo_alloc_fndecl_2958_fields __kfifo_alloc fndecl 3 2958 NULL
++info_len_ib_ucm_event_2963_fields info_len ib_ucm_event 0 2963 NULL
++s_ipg_ufs_sb_private_info_2965_fields s_ipg ufs_sb_private_info 0 2965 NULL
++do_tcp_sendpages_fndecl_2968_fields do_tcp_sendpages fndecl 4-3 2968 NULL
++pn533_dep_link_up_fndecl_2969_fields pn533_dep_link_up fndecl 5 2969 NULL
++align_ip_set_ext_type_2975_fields align ip_set_ext_type 0 2975 NULL
++mrp_pdu_append_vecattr_hdr_fndecl_2982_fields mrp_pdu_append_vecattr_hdr fndecl 3 2982 NULL
++reiserfs_cut_from_item_fndecl_2988_fields reiserfs_cut_from_item fndecl 6 2988 NULL
++iscsi_start_cid_cnic_local_2995_fields iscsi_start_cid cnic_local 0 2995 NULL
++offset_fuse_notify_retrieve_out_2999_fields offset fuse_notify_retrieve_out 0 2999 NULL
++page_cnt_qed_chain_3000_fields page_cnt qed_chain 0 3000 NULL
++hdr_len_iscsi_task_3003_fields hdr_len iscsi_task 0 3003 NULL
++id_rio_mport_3010_fields id rio_mport 0 3010 NULL
++rdma_build_arg_xdr_fndecl_3012_fields rdma_build_arg_xdr fndecl 3 3012 NULL
++acpi_rsdp_vardecl_osl_c_3017_fields acpi_rsdp vardecl_osl.c 0 3017 NULL
++de_rec_len_gfs2_dirent_3029_fields de_rec_len gfs2_dirent 0 3029 NULL
++dual_channel_active_fndecl_3033_fields dual_channel_active fndecl 0 3033 NULL
++num_hwfns_qed_dev_3034_fields num_hwfns qed_dev 0 3034 NULL
++xfs_bulkstat_grab_ichunk_fndecl_3041_fields xfs_bulkstat_grab_ichunk fndecl 2 3041 NULL
++ping_common_sendmsg_fndecl_3046_fields ping_common_sendmsg fndecl 5 3046 NULL
++skb_seq_read_fndecl_3054_fields skb_seq_read fndecl 0-1 3054 NULL
++size_ecryptfs_cache_info_3056_fields size ecryptfs_cache_info 0 3056 NULL
++prepare_to_wait_event_fndecl_3060_fields prepare_to_wait_event fndecl 0 3060 NULL
++ntfs_map_runlist_fndecl_3068_fields ntfs_map_runlist fndecl 2 3068 NULL nohasharray
++dst_addr_width_dma_slave_config_3068_fields dst_addr_width dma_slave_config 0 3068 &ntfs_map_runlist_fndecl_3068_fields
++compat_process_vm_rw_fndecl_3069_fields compat_process_vm_rw fndecl 3 3069 NULL
++punch_hole_fndecl_3070_fields punch_hole fndecl 2-3 3070 NULL
++hbuf_max_len_mei_hw_ops_3071_fields hbuf_max_len mei_hw_ops 0 3071 NULL
++height_au0828_dev_3073_fields height au0828_dev 0 3073 NULL
++tpm_tis_spi_write_bytes_fndecl_3074_fields tpm_tis_spi_write_bytes fndecl 3 3074 NULL
++sg_addr_size__MPT_ADAPTER_3079_fields sg_addr_size _MPT_ADAPTER 0 3079 NULL
++mnt_clone_write_fndecl_3080_fields mnt_clone_write fndecl 0 3080 NULL
++cluster_next_swap_info_struct_3087_fields cluster_next swap_info_struct 0 3087 NULL
++total_h_mt9t031_3088_fields total_h mt9t031 0 3088 NULL
++gtt_mappable_entries__intel_private_3099_fields gtt_mappable_entries _intel_private 0 3099 NULL
++vol_cdev_direct_write_fndecl_3100_fields vol_cdev_direct_write fndecl 3 3100 NULL
++mt76_init_sband_fndecl_3112_fields mt76_init_sband fndecl 4 3112 NULL
++fb_alloc_cmap_gfp_fndecl_3115_fields fb_alloc_cmap_gfp fndecl 2 3115 NULL
++edid_write_fndecl_3118_fields edid_write fndecl 3 3118 NULL
++key_size_tracing_map_3119_fields key_size tracing_map 0 3119 NULL nohasharray
++ipip6_tunnel_change_mtu_fndecl_3119_fields ipip6_tunnel_change_mtu fndecl 2 3119 &key_size_tracing_map_3119_fields nohasharray
++blk_rq_map_user_fndecl_3119_fields blk_rq_map_user fndecl 5 3119 &ipip6_tunnel_change_mtu_fndecl_3119_fields nohasharray
++controller_function_ms_boot_attr_info_3119_fields controller_function ms_boot_attr_info 0 3119 &blk_rq_map_user_fndecl_3119_fields
++status_whc_qhead_3133_fields status whc_qhead 0 3133 NULL
++ext4_block_zero_page_range_fndecl_3135_fields ext4_block_zero_page_range fndecl 3 3135 NULL
++strndup_user_fndecl_3136_fields strndup_user fndecl 2 3136 NULL
++brcmf_usb_dlstart_fndecl_3138_fields brcmf_usb_dlstart fndecl 3 3138 NULL
++fotg210_urb_done_fndecl_3144_fields fotg210_urb_done fndecl 3 3144 NULL
++tx_room_keyspan_pda_private_3146_fields tx_room keyspan_pda_private 0 3146 NULL
++fragment_length_zd_usb_rx_3148_fields fragment_length zd_usb_rx 0 3148 NULL nohasharray
++nilfs_scan_dsync_log_fndecl_3148_fields nilfs_scan_dsync_log fndecl 2 3148 &fragment_length_zd_usb_rx_3148_fields
++iseg_base_mlx5_core_dev_3151_fields iseg_base mlx5_core_dev 0 3151 NULL
++udf_get_last_session_fndecl_3152_fields udf_get_last_session fndecl 0 3152 NULL
++mmio_size_drm_mga_private_3160_fields mmio_size drm_mga_private 0 3160 NULL
++prealloc_size_ich_pcm_table_3162_fields prealloc_size ich_pcm_table 0 3162 NULL nohasharray
++sys_sendto_fndecl_3162_fields sys_sendto fndecl 3 3162 &prealloc_size_ich_pcm_table_3162_fields
++send_ext_msg_udp_fndecl_3163_fields send_ext_msg_udp fndecl 3 3163 NULL
++cfv_alloc_and_copy_skb_fndecl_3167_fields cfv_alloc_and_copy_skb fndecl 4 3167 NULL
++bytes_per_pixel_vivid_dev_3174_fields bytes_per_pixel vivid_dev 0 3174 NULL
++keyspan_write_fndecl_3189_fields keyspan_write fndecl 4 3189 NULL
++min_io_size_ubi_device_3191_fields min_io_size ubi_device 0 3191 NULL
++mspi_apply_cpu_mode_quirks_fndecl_3197_fields mspi_apply_cpu_mode_quirks fndecl 0-4 3197 NULL
++lcd_hblank_len_atyfb_par_3198_fields lcd_hblank_len atyfb_par 0 3198 NULL
++import_iovec_fndecl_3201_fields import_iovec fndecl 3 3201 NULL
++num_leds_led_platform_data_3203_fields num_leds led_platform_data 0 3203 NULL
++bus_count_i2c_mux_pinctrl_platform_data_3204_fields bus_count i2c_mux_pinctrl_platform_data 0 3204 NULL
++chunk_size_mdu_array_info_s_3205_fields chunk_size mdu_array_info_s 0 3205 NULL
++usbvision_set_output_fndecl_3216_fields usbvision_set_output fndecl 2-3 3216 NULL
++rx_buffer_len_ixgb_adapter_3217_fields rx_buffer_len ixgb_adapter 0 3217 NULL nohasharray
++cw1200_sdio_memcpy_fromio_fndecl_3217_fields cw1200_sdio_memcpy_fromio fndecl 4 3217 &rx_buffer_len_ixgb_adapter_3217_fields
++mad_size_ib_mad_private_3230_fields mad_size ib_mad_private 0 3230 NULL
++sq_num_entries_c4iw_qp_attributes_3234_fields sq_num_entries c4iw_qp_attributes 0 3234 NULL
++lbs_rdbbp_write_fndecl_3237_fields lbs_rdbbp_write fndecl 3 3237 NULL
++inlen_ib_udata_3242_fields inlen ib_udata 0 3242 NULL
++uniforms_size_drm_vc4_submit_cl_3245_fields uniforms_size drm_vc4_submit_cl 0 3245 NULL
++max_wqe_ocrdma_dev_attr_3246_fields max_wqe ocrdma_dev_attr 0 3246 NULL
++s_max_sge_rvt_qp_3248_fields s_max_sge rvt_qp 0 3248 NULL
++of_property_match_string_fndecl_3250_fields of_property_match_string fndecl 0 3250 NULL
++shmem_kernel_file_setup_fndecl_3251_fields shmem_kernel_file_setup fndecl 2 3251 NULL
++taglen_cb_compound_hdr_res_3259_fields taglen cb_compound_hdr_res 0 3259 NULL
++compat_sys_readv_fndecl_3260_fields compat_sys_readv fndecl 3 3260 NULL
++altera_set_ir_post_fndecl_3271_fields altera_set_ir_post fndecl 2 3271 NULL
++doff_tcphdr_3280_fields doff tcphdr 0 3280 NULL nohasharray
++ds1305_nvram_read_fndecl_3280_fields ds1305_nvram_read fndecl 6 3280 &doff_tcphdr_3280_fields
++stolen_base_drm_psb_private_3285_fields stolen_base drm_psb_private 0 3285 NULL nohasharray
++cfg80211_rx_assoc_resp_fndecl_3285_fields cfg80211_rx_assoc_resp fndecl 4 3285 &stolen_base_drm_psb_private_3285_fields
++read_configfs_bin_attribute_3290_fields read configfs_bin_attribute 0 3290 NULL
++check_eofblocks_fl_fndecl_3293_fields check_eofblocks_fl fndecl 0 3293 NULL
++iov_count_iscsi_data_count_3301_fields iov_count iscsi_data_count 0 3301 NULL
++rds_page_remainder_alloc_fndecl_3303_fields rds_page_remainder_alloc fndecl 2 3303 NULL
++transfer_size_zr364xx_pipeinfo_3312_fields transfer_size zr364xx_pipeinfo 0 3312 NULL
++bulk_out_ep_irda_usb_cb_3322_fields bulk_out_ep irda_usb_cb 0 3322 NULL
++length_ima_digest_data_3329_fields length ima_digest_data 0 3329 NULL
++i_xattr_loc_ocfs2_dinode_3335_fields i_xattr_loc ocfs2_dinode 0 3335 NULL
++fc_cpu_mask_vardecl_3336_fields fc_cpu_mask vardecl 0 3336 NULL
++amdtp_dot_set_parameters_fndecl_3341_fields amdtp_dot_set_parameters fndecl 3 3341 NULL
++base_drm_agp_head_3348_fields base drm_agp_head 0 3348 NULL nohasharray
++curchunk_hdrlen_drm_dp_sideband_msg_rx_3348_fields curchunk_hdrlen drm_dp_sideband_msg_rx 0 3348 &base_drm_agp_head_3348_fields
++ext4_finish_convert_inline_dir_fndecl_3350_fields ext4_finish_convert_inline_dir fndecl 5 3350 NULL
++pgt_bits_nvkm_mmu_func_3353_fields pgt_bits nvkm_mmu_func 0 3353 NULL nohasharray
++max_bands_multiq_sched_data_3353_fields max_bands multiq_sched_data 0 3353 &pgt_bits_nvkm_mmu_func_3353_fields
++__process_changed_new_xattr_fndecl_3360_fields __process_changed_new_xattr fndecl 6-4 3360 NULL
++essidlen_zd1201_3366_fields essidlen zd1201 0 3366 NULL
++xfs_dir3_leaf_get_buf_fndecl_3380_fields xfs_dir3_leaf_get_buf fndecl 2 3380 NULL
++phys_hw_bank_3381_fields phys hw_bank 0 3381 NULL
++udf_split_extents_fndecl_3382_fields udf_split_extents fndecl 3 3382 NULL
++pgoff_vm_fault_3385_fields pgoff vm_fault 0 3385 NULL
++xfs_iext_realloc_direct_fndecl_3386_fields xfs_iext_realloc_direct fndecl 2 3386 NULL
++rport_priv_size_fc_lport_3388_fields rport_priv_size fc_lport 0 3388 NULL nohasharray
++beacon_ie_len_wmi_connect_event_3388_fields beacon_ie_len wmi_connect_event 0 3388 &rport_priv_size_fc_lport_3388_fields
++xz_dec_lzma2_reset_fndecl_3390_fields xz_dec_lzma2_reset fndecl 2 3390 NULL
++max_frame_size_nes_vnic_3395_fields max_frame_size nes_vnic 0 3395 NULL nohasharray
++st_nci_hci_dm_get_data_fndecl_3395_fields st_nci_hci_dm_get_data fndecl 3 3395 &max_frame_size_nes_vnic_3395_fields
++xfs_bmap_isaeof_fndecl_3401_fields xfs_bmap_isaeof fndecl 0 3401 NULL
++pos_in_item_treepath_3409_fields pos_in_item treepath 0 3409 NULL
++minLen_group_data_3411_fields minLen group_data 0 3411 NULL
++scsi_report_opcode_fndecl_3412_fields scsi_report_opcode fndecl 3 3412 NULL
++mtu_tipc_link_entry_3415_fields mtu tipc_link_entry 0 3415 NULL
++opts1_RxDesc_3421_fields opts1 RxDesc 0 3421 NULL
++rionet_change_mtu_fndecl_3422_fields rionet_change_mtu fndecl 2 3422 NULL
++rlim_cur_rlimit_3431_fields rlim_cur rlimit 0 3431 NULL nohasharray
++set_secure_conn_fndecl_3431_fields set_secure_conn fndecl 4 3431 &rlim_cur_rlimit_3431_fields
++gtp_check_src_ms_ipv4_fndecl_3432_fields gtp_check_src_ms_ipv4 fndecl 3 3432 NULL
++gfs2_meta_read_fndecl_3434_fields gfs2_meta_read fndecl 2 3434 NULL
++len_nft_bitwise_3441_fields len nft_bitwise 0 3441 NULL
++uc_inSize_upc_req_3444_fields uc_inSize upc_req 0 3444 NULL
++cifs_read_page_from_socket_fndecl_3452_fields cifs_read_page_from_socket fndecl 3 3452 NULL
++rpipe_check_aim_fndecl_3456_fields rpipe_check_aim fndecl 0 3456 NULL
++s_itb_per_group_ext4_sb_info_3459_fields s_itb_per_group ext4_sb_info 0 3459 NULL
++adfs_dir_read_fndecl_3464_fields adfs_dir_read fndecl 2 3464 NULL
++intel_th_populate_fndecl_3473_fields intel_th_populate fndecl 4 3473 NULL
++acpi_aml_write_fndecl_3476_fields acpi_aml_write fndecl 3 3476 NULL nohasharray
++ngpios_chv_community_3476_fields ngpios chv_community 0 3476 &acpi_aml_write_fndecl_3476_fields
++chip_send_contexts_hfi1_devdata_3481_fields chip_send_contexts hfi1_devdata 0 3481 NULL nohasharray
++namelen_xfs_dir2_sf_entry_3481_fields namelen xfs_dir2_sf_entry 0 3481 &chip_send_contexts_hfi1_devdata_3481_fields
++xfer_len_nvme_trans_io_cdb_3486_fields xfer_len nvme_trans_io_cdb 0 3486 NULL
++from_dio_submit_3494_fields from dio_submit 0 3494 NULL
++hs_bkt_bits_cfs_hash_3509_fields hs_bkt_bits cfs_hash 0 3509 NULL
++statesize_hash_alg_common_3517_fields statesize hash_alg_common 0 3517 NULL
++gru_vtop_fndecl_3522_fields gru_vtop fndecl 2 3522 NULL
++cl_out_max_entry_size_mvumi_hs_page1_3540_fields cl_out_max_entry_size mvumi_hs_page1 0 3540 NULL
++mult_count_ide_drive_s_3550_fields mult_count ide_drive_s 0 3550 NULL
++ocfs2_read_xattr_bucket_fndecl_3553_fields ocfs2_read_xattr_bucket fndecl 2 3553 NULL
++sg_copy_from_buffer_fndecl_3557_fields sg_copy_from_buffer fndecl 0-4 3557 NULL
++mt2063_write_fndecl_3567_fields mt2063_write fndecl 4 3567 NULL
++page_cache_sync_readahead_fndecl_3569_fields page_cache_sync_readahead fndecl 4 3569 NULL nohasharray
++nr_clk_ids_samsung_cmu_info_3569_fields nr_clk_ids samsung_cmu_info 0 3569 &page_cache_sync_readahead_fndecl_3569_fields
++encode_diropargs3_fndecl_3574_fields encode_diropargs3 fndecl 4 3574 NULL
++len_capiloaddatapart_3577_fields len capiloaddatapart 0 3577 NULL
++pkcs7_view_content_fndecl_3589_fields pkcs7_view_content fndecl 3 3589 NULL nohasharray
++ddr_av_base_mthca_av_table_3589_fields ddr_av_base mthca_av_table 0 3589 &pkcs7_view_content_fndecl_3589_fields
++ip_vs_icmp_xmit_fndecl_3590_fields ip_vs_icmp_xmit fndecl 4 3590 NULL nohasharray
++npads_xtpg_device_3590_fields npads xtpg_device 0 3590 &ip_vs_icmp_xmit_fndecl_3590_fields
++get_tmp_page_fndecl_3591_fields get_tmp_page fndecl 2 3591 NULL
++buf_size_i1480_3593_fields buf_size i1480 0 3593 NULL
++xfs_alloc_ag_vextent_size_fndecl_3599_fields xfs_alloc_ag_vextent_size fndecl 0 3599 NULL nohasharray
++brcmf_chip_tcm_rambase_fndecl_3599_fields brcmf_chip_tcm_rambase fndecl 0 3599 &xfs_alloc_ag_vextent_size_fndecl_3599_fields
++e820_update_range_fndecl_3600_fields e820_update_range fndecl 1-2 3600 NULL
++cdns_uart_get_port_fndecl_3601_fields cdns_uart_get_port fndecl 1 3601 NULL
++xdr_extend_head_fndecl_3606_fields xdr_extend_head fndecl 3 3606 NULL
++engine_len_viafb_dev_3608_fields engine_len viafb_dev 0 3608 NULL
++ss_out_channels_hdsp_3619_fields ss_out_channels hdsp 0 3619 NULL
++ns_blocksize_the_nilfs_3624_fields ns_blocksize the_nilfs 0 3624 NULL nohasharray
++bytes_btrfs_dio_private_3624_fields bytes btrfs_dio_private 0 3624 &ns_blocksize_the_nilfs_3624_fields
++tail_timestamp_event_queue_3626_fields tail timestamp_event_queue 0 3626 NULL
++cbuf_eat_fndecl_3631_fields cbuf_eat fndecl 2 3631 NULL
++out_words_ib_uverbs_cmd_hdr_3637_fields out_words ib_uverbs_cmd_hdr 0 3637 NULL
++xfs_attr3_leaf_freextent_fndecl_3639_fields xfs_attr3_leaf_freextent fndecl 4-3 3639 NULL nohasharray
++vmci_transport_queue_pair_alloc_fndecl_3639_fields vmci_transport_queue_pair_alloc fndecl 3-4 3639 &xfs_attr3_leaf_freextent_fndecl_3639_fields
++count_phm_clock_voltage_dependency_table_3642_fields count phm_clock_voltage_dependency_table 0 3642 NULL
++pci_id_imc_uncore_pci_dev_3656_fields pci_id imc_uncore_pci_dev 0 3656 NULL
++c_plan_ahead_disk_conf_3660_fields c_plan_ahead disk_conf 0 3660 NULL
++im_len_xfs_imap_3661_fields im_len xfs_imap 0 3661 NULL nohasharray
++ext2_get_blocks_fndecl_3661_fields ext2_get_blocks fndecl 0 3661 &im_len_xfs_imap_3661_fields
++arch_reserve_mem_area_fndecl_3662_fields arch_reserve_mem_area fndecl 2 3662 NULL
++aper_base_amdgpu_mc_3664_fields aper_base amdgpu_mc 0 3664 NULL
++child_cnt_ubifs_znode_3667_fields child_cnt ubifs_znode 0 3667 NULL
++bio_find_or_create_slab_fndecl_3671_fields bio_find_or_create_slab fndecl 1 3671 NULL
++interfaces_count_ffs_data_3677_fields interfaces_count ffs_data 0 3677 NULL
++alloc_orinocodev_fndecl_3688_fields alloc_orinocodev fndecl 1 3688 NULL
++len_mic_mw_3689_fields len mic_mw 0 3689 NULL
++ath10k_wmi_tlv_op_gen_vdev_sta_uapsd_fndecl_3692_fields ath10k_wmi_tlv_op_gen_vdev_sta_uapsd fndecl 5 3692 NULL
++vmw_cmdbuf_space_pool_fndecl_3702_fields vmw_cmdbuf_space_pool fndecl 3 3702 NULL nohasharray
++get_urb_error_fndecl_3702_fields get_urb_error fndecl 0 3702 &vmw_cmdbuf_space_pool_fndecl_3702_fields
++ceph_msg_data_add_pages_fndecl_3704_fields ceph_msg_data_add_pages fndecl 3 3704 NULL
++vlan_netdev_private_3705_fields vlan netdev_private 0 3705 NULL
++len_sctp_auth_bytes_3715_fields len sctp_auth_bytes 0 3715 NULL
++byte_len_ib_wc_3716_fields byte_len ib_wc 0 3716 NULL
++test_find_delalloc_fndecl_3723_fields test_find_delalloc fndecl 1 3723 NULL
++len_amp_assoc_3724_fields len amp_assoc 0 3724 NULL
++__v4l2_ctrl_modify_range_fndecl_3726_fields __v4l2_ctrl_modify_range fndecl 2-5 3726 NULL
++mcs_wrap_fir_skb_fndecl_3729_fields mcs_wrap_fir_skb fndecl 0 3729 NULL
++peer_buf_alloc_virtio_vsock_sock_3738_fields peer_buf_alloc virtio_vsock_sock 0 3738 NULL
++nr_reserved_tags_blk_mq_tags_3751_fields nr_reserved_tags blk_mq_tags 0 3751 NULL
++e_value_size_f2fs_xattr_entry_3755_fields e_value_size f2fs_xattr_entry 0 3755 NULL
++vchnl_vf_send_del_hmc_objs_req_fndecl_3761_fields vchnl_vf_send_del_hmc_objs_req fndecl 5 3761 NULL
++private_value_sbmix_elem_3773_fields private_value sbmix_elem 0 3773 NULL
++size_m48t35_priv_3775_fields size m48t35_priv 0 3775 NULL
++ag_shift_befs_sb_info_3778_fields ag_shift befs_sb_info 0 3778 NULL
++fl_starve_thres_sge_3779_fields fl_starve_thres sge 0 3779 NULL
++cxgbi_ppm_init_fndecl_3787_fields cxgbi_ppm_init fndecl 6 3787 NULL
++rx_status_len_ath9k_hw_capabilities_3793_fields rx_status_len ath9k_hw_capabilities 0 3793 NULL
++concat_writev_fndecl_3800_fields concat_writev fndecl 4-3 3800 NULL
++nfc_hci_send_event_fndecl_3807_fields nfc_hci_send_event fndecl 5 3807 NULL
++nextLineNumber_vardecl_rocket_c_3809_fields nextLineNumber vardecl_rocket.c 0 3809 NULL
++ip_last_used_group_ocfs2_inode_info_3814_fields ip_last_used_group ocfs2_inode_info 0 3814 NULL
++e_cpos_ocfs2_extent_rec_3815_fields e_cpos ocfs2_extent_rec 0 3815 NULL
++fnic_trace_debugfs_lseek_fndecl_3819_fields fnic_trace_debugfs_lseek fndecl 2 3819 NULL nohasharray
++dccp_recvmsg_fndecl_3819_fields dccp_recvmsg fndecl 3 3819 &fnic_trace_debugfs_lseek_fndecl_3819_fields
++bits_per_word_spi_device_3828_fields bits_per_word spi_device 0 3828 NULL
++bnxt_gro_func_5730x_fndecl_3830_fields bnxt_gro_func_5730x fndecl 2 3830 NULL
++num_counters_ipt_replace_3837_fields num_counters ipt_replace 0 3837 NULL
++error_btrfs_end_io_wq_3838_fields error btrfs_end_io_wq 0 3838 NULL
++find_end_of_node_fndecl_3843_fields find_end_of_node fndecl 0-3-1-2 3843 NULL
++bg_inode_table_hi_ext4_group_desc_3844_fields bg_inode_table_hi ext4_group_desc 0 3844 NULL
++btrfs_dirty_pages_fndecl_3848_fields btrfs_dirty_pages fndecl 6-5 3848 NULL
++qdisc_tree_reduce_backlog_fndecl_3865_fields qdisc_tree_reduce_backlog fndecl 2 3865 NULL
++ocfs2_free_clusters_fndecl_3866_fields ocfs2_free_clusters fndecl 4 3866 NULL
++minlen_fstrim_range_3870_fields minlen fstrim_range 0 3870 NULL
++size_of_priv_dvb_usb_adapter_fe_properties_3875_fields size_of_priv dvb_usb_adapter_fe_properties 0 3875 NULL
++fs_div_hfs_sb_info_3890_fields fs_div hfs_sb_info 0 3890 NULL
++snd_pcm_lib_preallocate_pages_fndecl_3892_fields snd_pcm_lib_preallocate_pages fndecl 4 3892 NULL
++rootdir_empty_fndecl_3895_fields rootdir_empty fndecl 2 3895 NULL
++xfs_extent_busy_trim_fndecl_3898_fields xfs_extent_busy_trim fndecl 3-2 3898 NULL
++gfs2_meta_wipe_fndecl_3900_fields gfs2_meta_wipe fndecl 2 3900 NULL
++endpoint_usb_data_stream_properties_3909_fields endpoint usb_data_stream_properties 0 3909 NULL
++mp_map_gsi_to_irq_fndecl_3923_fields mp_map_gsi_to_irq fndecl 1 3923 NULL
++me_startblock_xfs_map_extent_3934_fields me_startblock xfs_map_extent 0 3934 NULL
++cfpkt_set_prio_fndecl_3935_fields cfpkt_set_prio fndecl 2 3935 NULL
++unix_dgram_sendmsg_fndecl_3944_fields unix_dgram_sendmsg fndecl 3 3944 NULL
++atalk_recvmsg_fndecl_3950_fields atalk_recvmsg fndecl 3 3950 NULL
++mem_end_pci_params_3955_fields mem_end pci_params 0 3955 NULL
++backup_src_sz_kimage_arch_3957_fields backup_src_sz kimage_arch 0 3957 NULL nohasharray
++resync_min_mddev_3957_fields resync_min mddev 0 3957 &backup_src_sz_kimage_arch_3957_fields
++make_le_item_head_fndecl_3961_fields make_le_item_head fndecl 4-5-6 3961 NULL
++hpfs_de_as_down_as_possible_fndecl_3967_fields hpfs_de_as_down_as_possible fndecl 0-2 3967 NULL
++dgram_sendmsg_fndecl_3972_fields dgram_sendmsg fndecl 3 3972 NULL
++wrbs_per_cxn_hba_parameters_3974_fields wrbs_per_cxn hba_parameters 0 3974 NULL
++uc_cnt_ncsi_rsp_gc_pkt_3982_fields uc_cnt ncsi_rsp_gc_pkt 0 3982 NULL nohasharray
++r_len_rvt_qp_3982_fields r_len rvt_qp 0 3982 &uc_cnt_ncsi_rsp_gc_pkt_3982_fields
++num_entries_aper_size_info_lvl2_3983_fields num_entries aper_size_info_lvl2 0 3983 NULL
++num_pages_ttm_mem_reg_3986_fields num_pages ttm_mem_reg 0 3986 NULL nohasharray
++nv50_chan_create_fndecl_3986_fields nv50_chan_create fndecl 6 3986 &num_pages_ttm_mem_reg_3986_fields
++i2400m_rx_trace_fndecl_3988_fields i2400m_rx_trace fndecl 3 3988 NULL
++tp_len_tpacket2_hdr_3990_fields tp_len tpacket2_hdr 0 3990 NULL nohasharray
++__acpi_register_gsi_vardecl_3990_fields __acpi_register_gsi vardecl 0 3990 &tp_len_tpacket2_hdr_3990_fields
++rfcomm_sock_recvmsg_fndecl_3992_fields rfcomm_sock_recvmsg fndecl 3 3992 NULL
++opt_nflen_ipv6_txoptions_3998_fields opt_nflen ipv6_txoptions 0 3998 NULL nohasharray
++len_be_queue_info_3998_fields len be_queue_info 0 3998 &opt_nflen_ipv6_txoptions_3998_fields
++buffer_bytes_max_snd_pcm_hardware_4001_fields buffer_bytes_max snd_pcm_hardware 0 4001 NULL
++t4_init_clip_tbl_fndecl_4007_fields t4_init_clip_tbl fndecl 1-2 4007 NULL nohasharray
++format_supported_num_psb_intel_sdvo_connector_4007_fields format_supported_num psb_intel_sdvo_connector 0 4007 &t4_init_clip_tbl_fndecl_4007_fields
++rx_data_max_size_sst_generic_ipc_4011_fields rx_data_max_size sst_generic_ipc 0 4011 NULL nohasharray
++onenand_default_block_markbad_fndecl_4011_fields onenand_default_block_markbad fndecl 2 4011 &rx_data_max_size_sst_generic_ipc_4011_fields
++bioset_create_nobvec_fndecl_4015_fields bioset_create_nobvec fndecl 2-1 4015 NULL
++f1_id_amd64_family_type_4017_fields f1_id amd64_family_type 0 4017 NULL
++rtl2830_regmap_gather_write_fndecl_4018_fields rtl2830_regmap_gather_write fndecl 5 4018 NULL
++b_size_mon_reader_bin_4021_fields b_size mon_reader_bin 0 4021 NULL
++j_start_reiserfs_journal_list_4030_fields j_start reiserfs_journal_list 0 4030 NULL
++length_usb_request_4031_fields length usb_request 0 4031 NULL
++rx_buf_sz_netdev_private_4035_fields rx_buf_sz netdev_private 0 4035 NULL
++MsgLength__MSG_EVENT_NOTIFY_REPLY_4038_fields MsgLength _MSG_EVENT_NOTIFY_REPLY 0 4038 NULL
++brcmf_sdio_txpkt_hdalign_fndecl_4040_fields brcmf_sdio_txpkt_hdalign fndecl 0 4040 NULL
++user_mss_tcp_options_received_4043_fields user_mss tcp_options_received 0 4043 NULL
++scsi_execute_req_flags_fndecl_4044_fields scsi_execute_req_flags fndecl 5 4044 NULL
++tx_data_count_hso_serial_4046_fields tx_data_count hso_serial 0 4046 NULL
++prepare_header_fndecl_4047_fields prepare_header fndecl 0 4047 NULL
++ssid_len_cfg80211_connect_params_4052_fields ssid_len cfg80211_connect_params 0 4052 NULL
++isoc_packet_size_usb_usbvision_4066_fields isoc_packet_size usb_usbvision 0 4066 NULL
++cfg80211_notify_new_peer_candidate_fndecl_4073_fields cfg80211_notify_new_peer_candidate fndecl 4 4073 NULL
++iscsi_max_snd_data_seg_len_dev_db_entry_4074_fields iscsi_max_snd_data_seg_len dev_db_entry 0 4074 NULL
++do_validate_mem_fndecl_4075_fields do_validate_mem fndecl 3-2 4075 NULL
++mlx4_en_get_num_flows_fndecl_4078_fields mlx4_en_get_num_flows fndecl 0 4078 NULL
++IOCRequestFrameSize_mpt3sas_facts_4079_fields IOCRequestFrameSize mpt3sas_facts 0 4079 NULL
++__set_extent_bit_fndecl_4083_fields __set_extent_bit fndecl 0-3-2 4083 NULL
++n_drm_r128_depth_4085_fields n drm_r128_depth 0 4085 NULL
++skb_copy_and_csum_datagram_fndecl_4086_fields skb_copy_and_csum_datagram fndecl 4-2 4086 NULL
++_ocfs2_free_clusters_fndecl_4087_fields _ocfs2_free_clusters fndecl 4 4087 NULL
++base_intel_initial_plane_config_4088_fields base intel_initial_plane_config 0 4088 NULL
++num_pipes_intel_device_info_4092_fields num_pipes intel_device_info 0 4092 NULL
++sca_keylength_sctp_authkey_4095_fields sca_keylength sctp_authkey 0 4095 NULL
++ae_res_sd_4099_fields ae_res sd 0 4099 NULL
++nbuttons_tca6416_keys_platform_data_4107_fields nbuttons tca6416_keys_platform_data 0 4107 NULL nohasharray
++special_ixgb_rx_desc_4107_fields special ixgb_rx_desc 0 4107 &nbuttons_tca6416_keys_platform_data_4107_fields
++blkno_xfs_da_args_4112_fields blkno xfs_da_args 0 4112 NULL
++vringh_iov_pull_kern_fndecl_4115_fields vringh_iov_pull_kern fndecl 3 4115 NULL
++read_reg_fndecl_4120_fields read_reg fndecl 0 4120 NULL
++jffs2_acl_from_medium_fndecl_4129_fields jffs2_acl_from_medium fndecl 2 4129 NULL
++tx_desc_size_rtl8xxxu_fileops_4133_fields tx_desc_size rtl8xxxu_fileops 0 4133 NULL
++ocfs2_read_group_descriptor_fndecl_4136_fields ocfs2_read_group_descriptor fndecl 3 4136 NULL
++v9fs_xattr_handler_get_fndecl_4139_fields v9fs_xattr_handler_get fndecl 6 4139 NULL nohasharray
++ssid_len_mwifiex_802_11_ssid_4139_fields ssid_len mwifiex_802_11_ssid 0 4139 &v9fs_xattr_handler_get_fndecl_4139_fields
++size_badblocks_4142_fields size badblocks 0 4142 NULL
++interleave_cfi_private_4153_fields interleave cfi_private 0 4153 NULL
++ocfs2_readpages_fndecl_4156_fields ocfs2_readpages fndecl 4 4156 NULL nohasharray
++num_msix_vec_be_adapter_4156_fields num_msix_vec be_adapter 0 4156 &ocfs2_readpages_fndecl_4156_fields
++team_change_mtu_fndecl_4186_fields team_change_mtu fndecl 2 4186 NULL
++iin_ep_usbtmc_device_data_4195_fields iin_ep usbtmc_device_data 0 4195 NULL
++xfs_bmap_add_extent_hole_real_fndecl_4199_fields xfs_bmap_add_extent_hole_real fndecl 0 4199 NULL
++wBeaconInfoLength_uwb_rc_evt_beacon_WUSB_0100_4200_fields wBeaconInfoLength uwb_rc_evt_beacon_WUSB_0100 0 4200 NULL
++bd_dev_block_device_4202_fields bd_dev block_device 0 4202 NULL
++parent___prelim_ref_4206_fields parent __prelim_ref 0 4206 NULL nohasharray
++sample_bits_snd_soc_dai_4206_fields sample_bits snd_soc_dai 0 4206 &parent___prelim_ref_4206_fields
++rx_page_order_il_hw_params_4208_fields rx_page_order il_hw_params 0 4208 NULL
++rx_pkt_offset_rxpd_4210_fields rx_pkt_offset rxpd 0 4210 NULL
++max_vectors_i40e_virtchnl_vf_resource_4213_fields max_vectors i40e_virtchnl_vf_resource 0 4213 NULL
++ext2_setsize_fndecl_4215_fields ext2_setsize fndecl 2 4215 NULL
++count_sc_config_sizes_4217_fields count sc_config_sizes 0 4217 NULL
++store_pending_adv_report_fndecl_4222_fields store_pending_adv_report fndecl 7 4222 NULL
++nilfs_segbuf_map_fndecl_4225_fields nilfs_segbuf_map fndecl 3 4225 NULL
++__nla_put_fndecl_4226_fields __nla_put fndecl 3 4226 NULL
++data_len_nci_data_4237_fields data_len nci_data 0 4237 NULL
++ip6gre_err_fndecl_4238_fields ip6gre_err fndecl 5 4238 NULL
++alloc_size_debug_buffer_4240_fields alloc_size debug_buffer 0 4240 NULL
++subpage_sft_mtd_info_4249_fields subpage_sft mtd_info 0 4249 NULL
++ieee80211_mesh_rx_mgmt_action_fndecl_4250_fields ieee80211_mesh_rx_mgmt_action fndecl 3 4250 NULL nohasharray
++duplex_ethtool_cmd_4250_fields duplex ethtool_cmd 0 4250 &ieee80211_mesh_rx_mgmt_action_fndecl_4250_fields
++fb_y_vmw_fb_par_4260_fields fb_y vmw_fb_par 0 4260 NULL
++user_width_soc_camera_device_4262_fields user_width soc_camera_device 0 4262 NULL
++nilfs_gccache_submit_read_node_fndecl_4267_fields nilfs_gccache_submit_read_node fndecl 2-3 4267 NULL
++ide_set_pio_fndecl_4272_fields ide_set_pio fndecl 2 4272 NULL
++mp_map_pin_to_irq_fndecl_4276_fields mp_map_pin_to_irq fndecl 1 4276 NULL
++fuse_ioctl_copy_user_fndecl_4279_fields fuse_ioctl_copy_user fndecl 4-3 4279 NULL
++rx_packet_len_nci_uart_4280_fields rx_packet_len nci_uart 0 4280 NULL
++gfs2_getbuf_fndecl_4283_fields gfs2_getbuf fndecl 2 4283 NULL
++route_mtu_cached_xfrm_dst_4288_fields route_mtu_cached xfrm_dst 0 4288 NULL
++connector_count_drm_fb_helper_4290_fields connector_count drm_fb_helper 0 4290 NULL
++h_next_leaf_blk_ocfs2_extent_block_4292_fields h_next_leaf_blk ocfs2_extent_block 0 4292 NULL
++src_h_drm_plane_state_4303_fields src_h drm_plane_state 0 4303 NULL nohasharray
++maxpacket_musb_qh_4303_fields maxpacket musb_qh 0 4303 &src_h_drm_plane_state_4303_fields
++nr_gpios_gpio_regulator_config_4306_fields nr_gpios gpio_regulator_config 0 4306 NULL
++rx_frm_len_mask_macb_4310_fields rx_frm_len_mask macb 0 4310 NULL
++bufsize_i2c_hid_4318_fields bufsize i2c_hid 0 4318 NULL
++old_chunk_dm_exception_4333_fields old_chunk dm_exception 0 4333 NULL
++length_rbd_obj_request_4337_fields length rbd_obj_request 0 4337 NULL
++stripe_len_btrfs_raid_bio_4340_fields stripe_len btrfs_raid_bio 0 4340 NULL
++v4l2_ctrl_new_fndecl_4341_fields v4l2_ctrl_new fndecl 8-12-7-10 4341 NULL
++key_len_neigh_table_4347_fields key_len neigh_table 0 4347 NULL
++scrbuf_size_sisusb_usb_data_4350_fields scrbuf_size sisusb_usb_data 0 4350 NULL
++len_mwifiex_ds_misc_gen_ie_4351_fields len mwifiex_ds_misc_gen_ie 0 4351 NULL
++musb_giveback_fndecl_4352_fields musb_giveback fndecl 3 4352 NULL
++o_size_x509_parse_context_4358_fields o_size x509_parse_context 0 4358 NULL
++snd_emu10k1_synth_alloc_fndecl_4366_fields snd_emu10k1_synth_alloc fndecl 2 4366 NULL
++size_rio_cm_msg_4375_fields size rio_cm_msg 0 4375 NULL
++isdn_tty_edit_at_fndecl_4376_fields isdn_tty_edit_at fndecl 0 4376 NULL nohasharray
++nilfs_sufile_resize_fndecl_4376_fields nilfs_sufile_resize fndecl 2 4376 &isdn_tty_edit_at_fndecl_4376_fields
++ip_vs_conn_tab_bits_vardecl_ip_vs_conn_c_4379_fields ip_vs_conn_tab_bits vardecl_ip_vs_conn.c 0 4379 NULL
++ts_packet_size_cx8802_dev_4383_fields ts_packet_size cx8802_dev 0 4383 NULL nohasharray
++dir_entries_msdos_sb_info_4383_fields dir_entries msdos_sb_info 0 4383 &ts_packet_size_cx8802_dev_4383_fields
++ext4_add_new_descs_fndecl_4390_fields ext4_add_new_descs fndecl 3 4390 NULL
++err_vlan_tg3_rx_buffer_desc_4391_fields err_vlan tg3_rx_buffer_desc 0 4391 NULL
++ivtv_udma_setup_fndecl_4395_fields ivtv_udma_setup fndecl 4 4395 NULL
++mgag200_bo_create_fndecl_4398_fields mgag200_bo_create fndecl 2 4398 NULL
++skb_realloc_headroom_fndecl_4399_fields skb_realloc_headroom fndecl 2 4399 NULL
++leadin_ignore_xpnet_message_4402_fields leadin_ignore xpnet_message 0 4402 NULL
++page_ofs__ntfs_inode_4407_fields page_ofs _ntfs_inode 0 4407 NULL
++rxe_reg_user_mr_fndecl_4415_fields rxe_reg_user_mr fndecl 2-3 4415 NULL
++new_bytenr_backref_node_4416_fields new_bytenr backref_node 0 4416 NULL
++bRefresh_usb_endpoint_descriptor_4444_fields bRefresh usb_endpoint_descriptor 0 4444 NULL
++number_mdu_disk_info_s_4445_fields number mdu_disk_info_s 0 4445 NULL
++width_simplefb_params_4449_fields width simplefb_params 0 4449 NULL
++nfsd_read_fndecl_4451_fields nfsd_read fndecl 3-5 4451 NULL
++ieee80211_key_alloc_fndecl_4452_fields ieee80211_key_alloc fndecl 3 4452 NULL
++mnt_want_write_file_fndecl_4456_fields mnt_want_write_file fndecl 0 4456 NULL
++sftid_base_tid_info_4462_fields sftid_base tid_info 0 4462 NULL
++fifo_size_fritz_bcs_4463_fields fifo_size fritz_bcs 0 4463 NULL
++kernel_read_fndecl_4468_fields kernel_read fndecl 0-4 4468 NULL nohasharray
++filemap_map_pages_fndecl_4468_fields filemap_map_pages fndecl 2 4468 &kernel_read_fndecl_4468_fields
++complete_request_fndecl_4479_fields complete_request fndecl 2 4479 NULL
++hdmi_create_eld_ctl_fndecl_4485_fields hdmi_create_eld_ctl fndecl 2 4485 NULL
++hdr_len_l2tp_session_4486_fields hdr_len l2tp_session 0 4486 NULL nohasharray
++fragments_squashfs_super_block_4486_fields fragments squashfs_super_block 0 4486 &hdr_len_l2tp_session_4486_fields
++fw_size_amdgpu_firmware_4488_fields fw_size amdgpu_firmware 0 4488 NULL
++fallocate_chunk_fndecl_4489_fields fallocate_chunk fndecl 3 4489 NULL
++load_xattr_datum_fndecl_4505_fields load_xattr_datum fndecl 0 4505 NULL
++__mei_cl_recv_fndecl_4519_fields __mei_cl_recv fndecl 0-3 4519 NULL
++result_MOSDOpReply_4530_fields result MOSDOpReply 0 4530 NULL
++to_irq_gpio_chip_4534_fields to_irq gpio_chip 0 4534 NULL
++ovl_posix_acl_xattr_set_fndecl_4535_fields ovl_posix_acl_xattr_set fndecl 6 4535 NULL
++log_ind_tbl_size_ib_rwq_ind_table_init_attr_4542_fields log_ind_tbl_size ib_rwq_ind_table_init_attr 0 4542 NULL
++nfs3_proc_readdir_fndecl_4544_fields nfs3_proc_readdir fndecl 5 4544 NULL
++BlocksPerUnit_partition_t_4545_fields BlocksPerUnit partition_t 0 4545 NULL
++uhci_giveback_urb_fndecl_4547_fields uhci_giveback_urb fndecl 4 4547 NULL
++data_size_cz_buffer_entry_4548_fields data_size cz_buffer_entry 0 4548 NULL
++qdepth_uas_dev_info_4551_fields qdepth uas_dev_info 0 4551 NULL
++__collapse_huge_page_swapin_fndecl_4553_fields __collapse_huge_page_swapin fndecl 3 4553 NULL nohasharray
++data_len_o2net_msg_4553_fields data_len o2net_msg 0 4553 &__collapse_huge_page_swapin_fndecl_4553_fields
++usbnet_write_cmd_fndecl_4556_fields usbnet_write_cmd fndecl 7 4556 NULL
++hwcursor_size_sis_video_info_4560_fields hwcursor_size sis_video_info 0 4560 NULL
++channels_snd_korg1212_4562_fields channels snd_korg1212 0 4562 NULL
++usbvision_rvmalloc_fndecl_4564_fields usbvision_rvmalloc fndecl 1 4564 NULL
++word1_pkt_stat_desc_4565_fields word1 pkt_stat_desc 0 4565 NULL
++far_copies_geom_4570_fields far_copies geom 0 4570 NULL
++dlen_nft_set_4577_fields dlen nft_set 0 4577 NULL
++netvsc_recv_callback_fndecl_4592_fields netvsc_recv_callback fndecl 6 4592 NULL
++rx_buf_sz_gem_4593_fields rx_buf_sz gem 0 4593 NULL nohasharray
++cxd2841er_read_regs_fndecl_4593_fields cxd2841er_read_regs fndecl 5 4593 &rx_buf_sz_gem_4593_fields
++header_size_partition_4606_fields header_size partition 0 4606 NULL
++btrfs_del_inode_extref_fndecl_4607_fields btrfs_del_inode_extref fndecl 4 4607 NULL
++hdr_dwords_verbs_txreq_4608_fields hdr_dwords verbs_txreq 0 4608 NULL
++max_event_log_size_iwl_base_params_4612_fields max_event_log_size iwl_base_params 0 4612 NULL
++sxgbe_change_mtu_fndecl_4613_fields sxgbe_change_mtu fndecl 2 4613 NULL
++tm6000_i2c_send_regs_fndecl_4617_fields tm6000_i2c_send_regs fndecl 5 4617 NULL
++cksumlength_gss_krb5_enctype_4630_fields cksumlength gss_krb5_enctype 0 4630 NULL
++tcam_size_mc5_4631_fields tcam_size mc5 0 4631 NULL nohasharray
++size_minus_one_mxt_object_4631_fields size_minus_one mxt_object 0 4631 &tcam_size_mc5_4631_fields
++total_bytes__osd_req_data_segment_4634_fields total_bytes _osd_req_data_segment 0 4634 NULL
++setup_efi_state_fndecl_4639_fields setup_efi_state fndecl 4-5-2-3 4639 NULL
++irq_nvecs_bnx2_4644_fields irq_nvecs bnx2 0 4644 NULL
++read_eeprom_bytes_fndecl_4649_fields read_eeprom_bytes fndecl 4 4649 NULL
++size_simple_transaction_argresp_4650_fields size simple_transaction_argresp 0 4650 NULL
++ie_len_mesh_setup_4661_fields ie_len mesh_setup 0 4661 NULL
++buffer_size_smsusb_device_t_4667_fields buffer_size smsusb_device_t 0 4667 NULL
++overridesize_vardecl_nandsim_c_4668_fields overridesize vardecl_nandsim.c 0 4668 NULL
++r10_sync_page_io_fndecl_4672_fields r10_sync_page_io fndecl 3-2 4672 NULL
++bytenr_btrfs_ordered_sum_4679_fields bytenr btrfs_ordered_sum 0 4679 NULL
++dm_get_reserved_bio_based_ios_fndecl_4680_fields dm_get_reserved_bio_based_ios fndecl 0 4680 NULL
++l1_dirbase_vardecl_acpi_extlog_c_4681_fields l1_dirbase vardecl_acpi_extlog.c 0 4681 NULL
++_rtl92s_get_h2c_cmdlen_fndecl_4683_fields _rtl92s_get_h2c_cmdlen fndecl 0 4683 NULL
++snd_pcm_hw_param_near_fndecl_4691_fields snd_pcm_hw_param_near fndecl 4 4691 NULL
++optlen_ip_options_4698_fields optlen ip_options 0 4698 NULL
++bpf_func_bpf_prog_4701_fields bpf_func bpf_prog 0 4701 NULL
++xdr_decode_word_fndecl_4707_fields xdr_decode_word fndecl 2 4707 NULL
++count_user_sgentry64_4714_fields count user_sgentry64 0 4714 NULL
++hpfs_ea_remove_fndecl_4717_fields hpfs_ea_remove fndecl 4-2 4717 NULL
++bits_pca955x_chipdef_4718_fields bits pca955x_chipdef 0 4718 NULL
++next_fpm_addr_i40iw_hmc_pble_rsrc_4719_fields next_fpm_addr i40iw_hmc_pble_rsrc 0 4719 NULL
++cur_swap_swap_map_handle_4724_fields cur_swap swap_map_handle 0 4724 NULL
++next_page_mpage_da_data_4726_fields next_page mpage_da_data 0 4726 NULL
++displacement_bts_phys_4728_fields displacement bts_phys 0 4728 NULL
++net2272_read_packet_fndecl_4735_fields net2272_read_packet fndecl 4 4735 NULL
++ndigits_ecdh_ctx_4737_fields ndigits ecdh_ctx 0 4737 NULL
++qla82xx_pci_mem_read_direct_fndecl_4739_fields qla82xx_pci_mem_read_direct fndecl 2 4739 NULL
++smk_set_cipso_fndecl_4744_fields smk_set_cipso fndecl 3 4744 NULL
++num_srq_mthca_profile_4747_fields num_srq mthca_profile 0 4747 NULL
++netlbl_catmap_setrng_fndecl_4749_fields netlbl_catmap_setrng fndecl 2 4749 NULL
++page_offset_i40e_rx_buffer_4750_fields page_offset i40e_rx_buffer 0 4750 NULL
++format_count_drm_plane_4754_fields format_count drm_plane 0 4754 NULL
++maxpacket_sl811h_ep_4755_fields maxpacket sl811h_ep 0 4755 NULL
++igbvf_receive_skb_fndecl_4757_fields igbvf_receive_skb fndecl 5 4757 NULL
++read_reg_cc770_priv_4760_fields read_reg cc770_priv 0 4760 NULL
++max_i2s_chan_img_i2s_in_4765_fields max_i2s_chan img_i2s_in 0 4765 NULL
++iomap_begin_iomap_ops_4769_fields iomap_begin iomap_ops 0 4769 NULL nohasharray
++map_sz_cyttsp4_sysinfo_ofs_4769_fields map_sz cyttsp4_sysinfo_ofs 0 4769 &iomap_begin_iomap_ops_4769_fields
++length_property_4777_fields length property 0 4777 NULL
++stride_snd_usb_endpoint_4779_fields stride snd_usb_endpoint 0 4779 NULL
++qed_ilt_cli_blk_fill_fndecl_4780_fields qed_ilt_cli_blk_fill fndecl 4-5 4780 NULL
++n_channels_cfg80211_scan_request_4785_fields n_channels cfg80211_scan_request 0 4785 NULL nohasharray
++crtc_vsync_start_drm_display_mode_4785_fields crtc_vsync_start drm_display_mode 0 4785 &n_channels_cfg80211_scan_request_4785_fields
++fmc_send_cmd_fndecl_4800_fields fmc_send_cmd fndecl 5-0 4800 NULL
++drbd_issue_discard_or_zero_out_fndecl_4809_fields drbd_issue_discard_or_zero_out fndecl 2-3 4809 NULL
++set_indirect_ea_fndecl_4810_fields set_indirect_ea fndecl 5-3 4810 NULL
++INFTL_deleteblock_fndecl_4811_fields INFTL_deleteblock fndecl 2 4811 NULL
++length_reiserfs_security_handle_4813_fields length reiserfs_security_handle 0 4813 NULL
++buffer_size_ide_tape_obj_4815_fields buffer_size ide_tape_obj 0 4815 NULL nohasharray
++width_tw686x_video_channel_4815_fields width tw686x_video_channel 0 4815 &buffer_size_ide_tape_obj_4815_fields
++drm_mode_vrefresh_fndecl_4817_fields drm_mode_vrefresh fndecl 0 4817 NULL
++ov534_reg_read_fndecl_4820_fields ov534_reg_read fndecl 0 4820 NULL
++ext4_dir_llseek_fndecl_4826_fields ext4_dir_llseek fndecl 2 4826 NULL
++new_orphans_ubifs_info_4827_fields new_orphans ubifs_info 0 4827 NULL
++i2c_read_fndecl_4828_fields i2c_read fndecl 4-6 4828 NULL nohasharray
++find_skb_fndecl_4828_fields find_skb fndecl 3 4828 &i2c_read_fndecl_4828_fields nohasharray
++period_bytes_snd_card_asihpi_pcm_4828_fields period_bytes snd_card_asihpi_pcm 0 4828 &find_skb_fndecl_4828_fields
++nelems_cciss_scsi_cmd_stack_t_4829_fields nelems cciss_scsi_cmd_stack_t 0 4829 NULL
++compat_ipv6_setsockopt_fndecl_4839_fields compat_ipv6_setsockopt fndecl 5 4839 NULL
++bio_trim_fndecl_4843_fields bio_trim fndecl 2-3 4843 NULL
++start_service_discovery_fndecl_4846_fields start_service_discovery fndecl 4 4846 NULL
++hash_size_cache_detail_4852_fields hash_size cache_detail 0 4852 NULL
++iommu_bit_gk20a_instmem_4857_fields iommu_bit gk20a_instmem 0 4857 NULL nohasharray
++start__iohandle_4857_fields start _iohandle 0 4857 &iommu_bit_gk20a_instmem_4857_fields
++max_tgts_snic_fw_info_4861_fields max_tgts snic_fw_info 0 4861 NULL
++encode_path_fndecl_4865_fields encode_path fndecl 3 4865 NULL
++i40e_reserve_msix_vectors_fndecl_4870_fields i40e_reserve_msix_vectors fndecl 0 4870 NULL
++i_lenEAttr_udf_inode_info_4872_fields i_lenEAttr udf_inode_info 0 4872 NULL nohasharray
++find_overflow_devnum_fndecl_4872_fields find_overflow_devnum fndecl 0 4872 &i_lenEAttr_udf_inode_info_4872_fields
++out_args_qlcnic_mailbox_metadata_4881_fields out_args qlcnic_mailbox_metadata 0 4881 NULL
++op_remote_addr_rm_atomic_op_4890_fields op_remote_addr rm_atomic_op 0 4890 NULL
++mlx4_get_eqs_per_port_fndecl_4892_fields mlx4_get_eqs_per_port fndecl 0 4892 NULL
++credits_send_context_info_4894_fields credits send_context_info 0 4894 NULL nohasharray
++snd_interval_refine_min_fndecl_4894_fields snd_interval_refine_min fndecl 2 4894 &credits_send_context_info_4894_fields nohasharray
++sc_datablk_cnt_nilfs_sc_info_4894_fields sc_datablk_cnt nilfs_sc_info 0 4894 &snd_interval_refine_min_fndecl_4894_fields
++head_circ_buf_4897_fields head circ_buf 0 4897 NULL
++wMaxSegmentSize_usb_cdc_ether_desc_4898_fields wMaxSegmentSize usb_cdc_ether_desc 0 4898 NULL
++upper_size_to_lower_size_fndecl_4899_fields upper_size_to_lower_size fndecl 2-0 4899 NULL
++need_tx_headroom_prism2_helper_functions_4902_fields need_tx_headroom prism2_helper_functions 0 4902 NULL
++build_verbs_ulp_payload_fndecl_4906_fields build_verbs_ulp_payload fndecl 3 4906 NULL
++rcvhdrq_size_hfi1_ctxtdata_4912_fields rcvhdrq_size hfi1_ctxtdata 0 4912 NULL
++leaf_copy_items_fndecl_4923_fields leaf_copy_items fndecl 5 4923 NULL
++ui_size_ubifs_inode_4934_fields ui_size ubifs_inode 0 4934 NULL
++bpp_drm_mode_fb_cmd_4936_fields bpp drm_mode_fb_cmd 0 4936 NULL
++mlx5_ib_db_map_user_fndecl_4950_fields mlx5_ib_db_map_user fndecl 2 4950 NULL nohasharray
++update_tind_extent_range_fndecl_4950_fields update_tind_extent_range fndecl 3 4950 &mlx5_ib_db_map_user_fndecl_4950_fields
++myri10ge_get_txrx_fndecl_4953_fields myri10ge_get_txrx fndecl 2 4953 NULL
++radeon_align_pitch_fndecl_4969_fields radeon_align_pitch fndecl 0-2 4969 NULL
++len_htc_record_hdr_4978_fields len htc_record_hdr 0 4978 NULL
++len_i40iw_sge_4979_fields len i40iw_sge 0 4979 NULL
++t_data_nents_se_cmd_4981_fields t_data_nents se_cmd 0 4981 NULL
++buffer_size_most_channel_config_4986_fields buffer_size most_channel_config 0 4986 NULL
++stripe_unit_ore_layout_4991_fields stripe_unit ore_layout 0 4991 NULL
++__mt7601u_dma_fw_fndecl_4994_fields __mt7601u_dma_fw fndecl 4 4994 NULL
++kmem_cache_create_fndecl_5007_fields kmem_cache_create fndecl 2-3 5007 NULL
++read_int_fndecl_5009_fields read_int fndecl 0 5009 NULL
++numEntries__ATOM_PPLIB_SAMClk_Voltage_Limit_Table_5010_fields numEntries _ATOM_PPLIB_SAMClk_Voltage_Limit_Table 0 5010 NULL
++xfs_qm_dqget_fndecl_5012_fields xfs_qm_dqget fndecl 0 5012 NULL nohasharray
++o2net_send_message_fndecl_5012_fields o2net_send_message fndecl 4 5012 &xfs_qm_dqget_fndecl_5012_fields nohasharray
++mgmt_limited_event_fndecl_5012_fields mgmt_limited_event fndecl 4 5012 &o2net_send_message_fndecl_5012_fields
++xenvif_gop_skb_fndecl_5015_fields xenvif_gop_skb fndecl 0 5015 NULL
++info1_htt_rx_indication_hdr_5016_fields info1 htt_rx_indication_hdr 0 5016 NULL
++hard_header_len_net_device_5025_fields hard_header_len net_device 0 5025 NULL
++ubifs_unpack_bits_fndecl_5033_fields ubifs_unpack_bits fndecl 0-3 5033 NULL
++ext2_xattr_security_set_fndecl_5039_fields ext2_xattr_security_set fndecl 6 5039 NULL nohasharray
++nr_pages_firmware_buf_5039_fields nr_pages firmware_buf 0 5039 &ext2_xattr_security_set_fndecl_5039_fields
++device_tg3_dev_id_5042_fields device tg3_dev_id 0 5042 NULL nohasharray
++mlx4_log_num_mgm_entry_size_vardecl_5042_fields mlx4_log_num_mgm_entry_size vardecl 0 5042 &device_tg3_dev_id_5042_fields
++start_vhost_umem_node_5046_fields start vhost_umem_node 0 5046 NULL
++index_squashfs_dir_index_5053_fields index squashfs_dir_index 0 5053 NULL
++rcvidx_IsdnCardState_5055_fields rcvidx IsdnCardState 0 5055 NULL nohasharray
++compress_raw_buf_fndecl_5055_fields compress_raw_buf fndecl 0 5055 &rcvidx_IsdnCardState_5055_fields
++ext4_llseek_fndecl_5060_fields ext4_llseek fndecl 2 5060 NULL
++len_BufferControl_5068_fields len BufferControl 0 5068 NULL
++cmd_q_count_ccp_device_5069_fields cmd_q_count ccp_device 0 5069 NULL
++size_compat_arpt_replace_5071_fields size compat_arpt_replace 0 5071 NULL
++ie_len_cfg80211_scan_request_5073_fields ie_len cfg80211_scan_request 0 5073 NULL
++brcmf_sdiod_txglomsz_vardecl_common_c_5079_fields brcmf_sdiod_txglomsz vardecl_common.c 0 5079 NULL
++udf_do_extend_file_fndecl_5093_fields udf_do_extend_file fndecl 4 5093 NULL nohasharray
++domain_a_len_ccp_ecc_point_math_5093_fields domain_a_len ccp_ecc_point_math 0 5093 &udf_do_extend_file_fndecl_5093_fields
++at25_ee_write_fndecl_5099_fields at25_ee_write fndecl 4-2 5099 NULL
++default_file_splice_write_fndecl_5103_fields default_file_splice_write fndecl 4 5103 NULL
++efi_get_runtime_map_desc_size_fndecl_5111_fields efi_get_runtime_map_desc_size fndecl 0 5111 NULL
++mem_eni_dev_5112_fields mem eni_dev 0 5112 NULL
++num_banks_adf_hw_device_data_5115_fields num_banks adf_hw_device_data 0 5115 NULL
++__link_buffer_fndecl_5117_fields __link_buffer fndecl 2 5117 NULL nohasharray
++spi_bits_per_word_cw1200_platform_data_spi_5117_fields spi_bits_per_word cw1200_platform_data_spi 0 5117 &__link_buffer_fndecl_5117_fields
++num_gpio_tc3589x_5118_fields num_gpio tc3589x 0 5118 NULL
++replay_log_leb_fndecl_5123_fields replay_log_leb fndecl 3 5123 NULL
++ocfs2_trim_extent_fndecl_5124_fields ocfs2_trim_extent fndecl 0-4-3 5124 NULL
++ccp_init_sg_workarea_fndecl_5128_fields ccp_init_sg_workarea fndecl 4 5128 NULL
++fuse_dev_splice_write_fndecl_5131_fields fuse_dev_splice_write fndecl 4 5131 NULL
++nfs4_init_callback_netid_fndecl_5134_fields nfs4_init_callback_netid fndecl 0 5134 NULL
++rate_num_snd_pcm_hw_params_5135_fields rate_num snd_pcm_hw_params 0 5135 NULL
++channel_count_il_priv_5138_fields channel_count il_priv 0 5138 NULL nohasharray
++rlen_si2157_cmd_5138_fields rlen si2157_cmd 0 5138 &channel_count_il_priv_5138_fields
++__nvme_submit_user_cmd_fndecl_5142_fields __nvme_submit_user_cmd fndecl 4-7 5142 NULL
++xefi_blockcount_xfs_extent_free_item_5146_fields xefi_blockcount xfs_extent_free_item 0 5146 NULL nohasharray
++csio_scsi_eqsize_vardecl_5146_fields csio_scsi_eqsize vardecl 0 5146 &xefi_blockcount_xfs_extent_free_item_5146_fields
++ocfs2_iget_fndecl_5154_fields ocfs2_iget fndecl 2 5154 NULL
++stv0297_readregs_fndecl_5156_fields stv0297_readregs fndecl 4 5156 NULL nohasharray
++fw_cfg_p_base_vardecl_qemu_fw_cfg_c_5156_fields fw_cfg_p_base vardecl_qemu_fw_cfg.c 0 5156 &stv0297_readregs_fndecl_5156_fields
++tx_hdr_len_p54_common_5164_fields tx_hdr_len p54_common 0 5164 NULL
++indices_ixgbe_ring_feature_5170_fields indices ixgbe_ring_feature 0 5170 NULL
++ext4_es_insert_extent_fndecl_5178_fields ext4_es_insert_extent fndecl 0-3-2 5178 NULL nohasharray
++len_bts_file_action_5178_fields len bts_file_action 0 5178 &ext4_es_insert_extent_fndecl_5178_fields
++lpfc_issue_ct_rsp_fndecl_5182_fields lpfc_issue_ct_rsp fndecl 6 5182 NULL
++size_drm_amdgpu_gem_userptr_5196_fields size drm_amdgpu_gem_userptr 0 5196 NULL
++hidp_raw_request_fndecl_5198_fields hidp_raw_request fndecl 4 5198 NULL
++nr_nvkm_fifo_5199_fields nr nvkm_fifo 0 5199 NULL nohasharray
++alloc_fcdev_fndecl_5199_fields alloc_fcdev fndecl 1 5199 &nr_nvkm_fifo_5199_fields
++vtbl_size_ubi_device_5209_fields vtbl_size ubi_device 0 5209 NULL
++snd_midi_event_encode_fndecl_5210_fields snd_midi_event_encode fndecl 0 5210 NULL
++drm_gem_private_object_init_fndecl_5217_fields drm_gem_private_object_init fndecl 3 5217 NULL
++phys_ichxrom_window_5221_fields phys ichxrom_window 0 5221 NULL
++mmc_test_broken_transfer_fndecl_5224_fields mmc_test_broken_transfer fndecl 3-2 5224 NULL
++madvise_hwpoison_fndecl_5231_fields madvise_hwpoison fndecl 2 5231 NULL
++__ieee80211_stop_rx_ba_session_fndecl_5236_fields __ieee80211_stop_rx_ba_session fndecl 2 5236 NULL
++__scif_pin_pages_fndecl_5243_fields __scif_pin_pages fndecl 2 5243 NULL
++feednum_dvb_demux_5252_fields feednum dvb_demux 0 5252 NULL
++len_fstrim_range_5265_fields len fstrim_range 0 5265 NULL
++h_total_aty128_crtc_5275_fields h_total aty128_crtc 0 5275 NULL
++upload_data_fndecl_5277_fields upload_data fndecl 2 5277 NULL
++xlog_find_verify_log_record_fndecl_5285_fields xlog_find_verify_log_record fndecl 2 5285 NULL
++count_mpc8xxx_spi_5287_fields count mpc8xxx_spi 0 5287 NULL
++slba_nvme_dsm_range_5292_fields slba nvme_dsm_range 0 5292 NULL
++lpt_hght_ubifs_info_5299_fields lpt_hght ubifs_info 0 5299 NULL nohasharray
++dma_offset_freelQ_5299_fields dma_offset freelQ 0 5299 &lpt_hght_ubifs_info_5299_fields
++beep_amp_alc_spec_5315_fields beep_amp alc_spec 0 5315 NULL
++matchsize_xt_match_5320_fields matchsize xt_match 0 5320 NULL
++___alloc_bootmem_node_fndecl_5329_fields ___alloc_bootmem_node fndecl 3-4-5 5329 NULL
++devcd_read_from_sgtable_fndecl_5341_fields devcd_read_from_sgtable fndecl 2-5-3 5341 NULL nohasharray
++jfs_quota_read_fndecl_5341_fields jfs_quota_read fndecl 5 5341 &devcd_read_from_sgtable_fndecl_5341_fields
++lock_and_cleanup_extent_if_need_fndecl_5347_fields lock_and_cleanup_extent_if_need fndecl 5-4 5347 NULL
++data_count_iscsi_task_5350_fields data_count iscsi_task 0 5350 NULL
++brcmf_usb_send_ctl_fndecl_5357_fields brcmf_usb_send_ctl fndecl 3 5357 NULL nohasharray
++fmc_device_register_n_fndecl_5357_fields fmc_device_register_n fndecl 2 5357 &brcmf_usb_send_ctl_fndecl_5357_fields
++michael_mic_fndecl_5363_fields michael_mic fndecl 5 5363 NULL
++nfs4_proc_readdir_fndecl_5367_fields nfs4_proc_readdir fndecl 5 5367 NULL
++xfs_buf_read_uncached_fndecl_5369_fields xfs_buf_read_uncached fndecl 2-3 5369 NULL
++max_skl_dfw_algo_data_5374_fields max skl_dfw_algo_data 0 5374 NULL
++mwifiex_write_data_to_card_fndecl_5375_fields mwifiex_write_data_to_card fndecl 3 5375 NULL
++max_header_size_irlan_client_cb_5378_fields max_header_size irlan_client_cb 0 5378 NULL nohasharray
++block_size_squashfs_sb_info_5378_fields block_size squashfs_sb_info 0 5378 &max_header_size_irlan_client_cb_5378_fields
++skbprio_ip_set_ext_5381_fields skbprio ip_set_ext 0 5381 NULL nohasharray
++flash_dev_cache_miss_fndecl_5381_fields flash_dev_cache_miss fndecl 4 5381 &skbprio_ip_set_ext_5381_fields
++fuse_perform_write_fndecl_5386_fields fuse_perform_write fndecl 0-4 5386 NULL
++max_gen_clk_probe_fndecl_5389_fields max_gen_clk_probe fndecl 5 5389 NULL
++check_iommu_size_fndecl_5390_fields check_iommu_size fndecl 0-2-1 5390 NULL
++pcibios_window_alignment_fndecl_5391_fields pcibios_window_alignment fndecl 0 5391 NULL
++error_thin_bio_list_fndecl_5394_fields error_thin_bio_list fndecl 3 5394 NULL
++remap_oldmem_pfn_checked_fndecl_5398_fields remap_oldmem_pfn_checked fndecl 2-3 5398 NULL nohasharray
++snd_hda_get_connections_fndecl_5398_fields snd_hda_get_connections fndecl 0 5398 &remap_oldmem_pfn_checked_fndecl_5398_fields
++len_iw_mgmt_info_element_5411_fields len iw_mgmt_info_element 0 5411 NULL
++rq_size_i40iw_puda_rsrc_info_5413_fields rq_size i40iw_puda_rsrc_info 0 5413 NULL
++ies_len_user_conn_req_5414_fields ies_len user_conn_req 0 5414 NULL
++value_xen_pci_op_5416_fields value xen_pci_op 0 5416 NULL
++allocmin_nilfs_sufile_info_5418_fields allocmin nilfs_sufile_info 0 5418 NULL
++reg_size_intel_iommu_5423_fields reg_size intel_iommu 0 5423 NULL nohasharray
++nilfs_sufile_truncate_range_fndecl_5423_fields nilfs_sufile_truncate_range fndecl 3-2 5423 &reg_size_intel_iommu_5423_fields
++sigmadsp_read_i2c_fndecl_5435_fields sigmadsp_read_i2c fndecl 4 5435 NULL
++size_drm_radeon_gem_create_5440_fields size drm_radeon_gem_create 0 5440 NULL
++cap_nvme_loop_ctrl_5458_fields cap nvme_loop_ctrl 0 5458 NULL
++vlen_nfsd_writeargs_5461_fields vlen nfsd_writeargs 0 5461 NULL
++btrfs_fiemap_fndecl_5462_fields btrfs_fiemap fndecl 4-3 5462 NULL
++num_stations_il_priv_5465_fields num_stations il_priv 0 5465 NULL
++acpi_register_gsi_ioapic_fndecl_5477_fields acpi_register_gsi_ioapic fndecl 2 5477 NULL
++max_pkeys_mthca_dev_lim_5481_fields max_pkeys mthca_dev_lim 0 5481 NULL
++virtio_transport_put_credit_fndecl_5482_fields virtio_transport_put_credit fndecl 2 5482 NULL
++valuelen_xfs_attr_sf_entry_5490_fields valuelen xfs_attr_sf_entry 0 5490 NULL
++block_isofs_fid_5500_fields block isofs_fid 0 5500 NULL
++s_fpb_ufs_sb_private_info_5504_fields s_fpb ufs_sb_private_info 0 5504 NULL
++__tipc_sendmsg_fndecl_5510_fields __tipc_sendmsg fndecl 3 5510 NULL
++vmw_execbuf_submit_cmdbuf_fndecl_5516_fields vmw_execbuf_submit_cmdbuf fndecl 3 5516 NULL
++smk_write_rules_list_fndecl_5526_fields smk_write_rules_list fndecl 3 5526 NULL
++line_slgt_info_5527_fields line slgt_info 0 5527 NULL
++ceph_tcp_sendpage_fndecl_5531_fields ceph_tcp_sendpage fndecl 0-4 5531 NULL
++batadv_arp_get_type_fndecl_5538_fields batadv_arp_get_type fndecl 3 5538 NULL nohasharray
++__vmalloc_node_range_fndecl_5538_fields __vmalloc_node_range fndecl 1-3 5538 &batadv_arp_get_type_fndecl_5538_fields
++vector_acpi_hest_notify_5540_fields vector acpi_hest_notify 0 5540 NULL
++logical_ext4_allocation_request_5548_fields logical ext4_allocation_request 0 5548 NULL
++__netdev_alloc_skb_fndecl_5552_fields __netdev_alloc_skb fndecl 2 5552 NULL
++hpfs_search_hotfix_map_fndecl_5559_fields hpfs_search_hotfix_map fndecl 0-2 5559 NULL
++filemap_fdatawait_range_fndecl_5563_fields filemap_fdatawait_range fndecl 0 5563 NULL
++nfs41_maxread_overhead_vardecl_5564_fields nfs41_maxread_overhead vardecl 0 5564 NULL
++raid10_format_to_md_layout_fndecl_5567_fields raid10_format_to_md_layout fndecl 0-3 5567 NULL
++ihl_xfrm_mode_skb_cb_5571_fields ihl xfrm_mode_skb_cb 0 5571 NULL nohasharray
++session_udf_options_5571_fields session udf_options 0 5571 &ihl_xfrm_mode_skb_cb_5571_fields
++__dev_set_mtu_fndecl_5572_fields __dev_set_mtu fndecl 2 5572 NULL
++nblocks_range2trim_5574_fields nblocks range2trim 0 5574 NULL
++target_check_max_data_sg_nents_fndecl_5575_fields target_check_max_data_sg_nents fndecl 3 5575 NULL
++i2c_read_eeprom_fndecl_5583_fields i2c_read_eeprom fndecl 5 5583 NULL
++nfqnl_get_sk_secctx_fndecl_5586_fields nfqnl_get_sk_secctx fndecl 0 5586 NULL
++bg_itable_unused_lo_ext4_group_desc_5594_fields bg_itable_unused_lo ext4_group_desc 0 5594 NULL
++memory_map_bottom_up_fndecl_5599_fields memory_map_bottom_up fndecl 1 5599 NULL
++scsiback_send_response_fndecl_5601_fields scsiback_send_response fndecl 4 5601 NULL
++nftl_write_fndecl_5605_fields nftl_write fndecl 2 5605 NULL
++pbl_base_rdma_info_5607_fields pbl_base rdma_info 0 5607 NULL
++odata_dma_usb_xpad_5619_fields odata_dma usb_xpad 0 5619 NULL
++shmem_fallocate_fndecl_5621_fields shmem_fallocate fndecl 3-4 5621 NULL
++xfs_iext_insert_fndecl_5624_fields xfs_iext_insert fndecl 3 5624 NULL
++gtt_end_radeon_mc_5628_fields gtt_end radeon_mc 0 5628 NULL
++max_sectors_ide_port_info_5629_fields max_sectors ide_port_info 0 5629 NULL
++id_iio_dev_5631_fields id iio_dev 0 5631 NULL
++screen_width_vardecl_hyperv_fb_c_5635_fields screen_width vardecl_hyperv_fb.c 0 5635 NULL nohasharray
++platform_mmio_alloc_vardecl_platform_pci_c_5635_fields platform_mmio_alloc vardecl_platform-pci.c 0 5635 &screen_width_vardecl_hyperv_fb_c_5635_fields
++num_counters_compat_ip6t_replace_5636_fields num_counters compat_ip6t_replace 0 5636 NULL
++udpv6_recvmsg_fndecl_5638_fields udpv6_recvmsg fndecl 3 5638 NULL
++efi_memdesc_size_efi_info_5654_fields efi_memdesc_size efi_info 0 5654 NULL
++__spi_map_msg_fndecl_5657_fields __spi_map_msg fndecl 0 5657 NULL nohasharray
++dev_id_pci_id_descr_5657_fields dev_id pci_id_descr 0 5657 &__spi_map_msg_fndecl_5657_fields
++vmw_kms_stdu_dma_fndecl_5659_fields vmw_kms_stdu_dma fndecl 7 5659 NULL
++isert_put_login_tx_fndecl_5660_fields isert_put_login_tx fndecl 3 5660 NULL
++block_mask_htc_target_5671_fields block_mask htc_target 0 5671 NULL
++sgl_read_to_frags_fndecl_5672_fields sgl_read_to_frags fndecl 3-2 5672 NULL
++blklen_regcache_rbtree_node_5679_fields blklen regcache_rbtree_node 0 5679 NULL nohasharray
++mtu_ppp_channel_5679_fields mtu ppp_channel 0 5679 &blklen_regcache_rbtree_node_5679_fields
++ext4_es_alloc_extent_fndecl_5681_fields ext4_es_alloc_extent fndecl 2-3 5681 NULL
++_find_first_zero_bit_le_fndecl_5684_fields _find_first_zero_bit_le fndecl 0 5684 NULL
++bio_alloc_mddev_fndecl_5685_fields bio_alloc_mddev fndecl 2 5685 NULL
++lbtf_cmd_async_fndecl_5691_fields lbtf_cmd_async fndecl 4 5691 NULL
++s_blocks_count_ext2_super_block_5695_fields s_blocks_count ext2_super_block 0 5695 NULL
++write_bytes_to_xdr_buf_fndecl_5702_fields write_bytes_to_xdr_buf fndecl 4-2 5702 NULL
++virtnet_change_mtu_fndecl_5709_fields virtnet_change_mtu fndecl 2 5709 NULL
++zm_wmfw_adsp1_alg_hdr_5710_fields zm wmfw_adsp1_alg_hdr 0 5710 NULL
++vt_hdr_vxfs_typed_5715_fields vt_hdr vxfs_typed 0 5715 NULL
++hfsplus_get_block_fndecl_5725_fields hfsplus_get_block fndecl 2 5725 NULL
++max_phys_sect_nvm_dev_ops_5745_fields max_phys_sect nvm_dev_ops 0 5745 NULL
++scrbuf_sisusb_usb_data_5749_fields scrbuf sisusb_usb_data 0 5749 NULL
++skb_checksum_maybe_trim_fndecl_5755_fields skb_checksum_maybe_trim fndecl 2 5755 NULL
++nci_prop_cmd_fndecl_5756_fields nci_prop_cmd fndecl 3 5756 NULL
++setup_extent_mapping_fndecl_5768_fields setup_extent_mapping fndecl 3-2-4 5768 NULL
++xfs_map_at_offset_fndecl_5785_fields xfs_map_at_offset fndecl 4 5785 NULL
++mc_handle_file_pte_fndecl_5787_fields mc_handle_file_pte fndecl 2 5787 NULL
++bq32k_read_fndecl_5789_fields bq32k_read fndecl 4 5789 NULL
++pci_mem_start_vardecl_5790_fields pci_mem_start vardecl 0 5790 NULL
++msix_count_i40e_info_5794_fields msix_count i40e_info 0 5794 NULL nohasharray
++init_req_packet_fndecl_5794_fields init_req_packet fndecl 4 5794 &msix_count_i40e_info_5794_fields
++p9_check_zc_errors_fndecl_5806_fields p9_check_zc_errors fndecl 4 5806 NULL
++usb_ftdi_elan_edset_output_fndecl_5808_fields usb_ftdi_elan_edset_output fndecl 0 5808 NULL
++NumPhys__CONFIG_PAGE_SAS_EXPANDER_0_5809_fields NumPhys _CONFIG_PAGE_SAS_EXPANDER_0 0 5809 NULL nohasharray
++ubifs_recover_size_accum_fndecl_5809_fields ubifs_recover_size_accum fndecl 4 5809 &NumPhys__CONFIG_PAGE_SAS_EXPANDER_0_5809_fields
++length_uwb_ie_hdr_5811_fields length uwb_ie_hdr 0 5811 NULL nohasharray
++firmware_data_write_fndecl_5811_fields firmware_data_write fndecl 6-5 5811 &length_uwb_ie_hdr_5811_fields
++ncp_read_bounce_fndecl_5812_fields ncp_read_bounce fndecl 8 5812 NULL
++compr_flush_fndecl_5826_fields compr_flush fndecl 2 5826 NULL
++dvbdmx_write_fndecl_5836_fields dvbdmx_write fndecl 3 5836 NULL
++start_uffdio_range_5837_fields start uffdio_range 0 5837 NULL nohasharray
++synproxy_options_size_fndecl_5837_fields synproxy_options_size fndecl 0 5837 &start_uffdio_range_5837_fields
++i2c_mux_add_adapter_fndecl_5840_fields i2c_mux_add_adapter fndecl 2 5840 NULL
++transferred_vardecl_shuttle_usbat_c_5845_fields transferred vardecl_shuttle_usbat.c 0 5845 NULL
++sound_insert_unit_fndecl_5861_fields sound_insert_unit fndecl 3-4 5861 NULL
++len_hv_mpb_array_5864_fields len hv_mpb_array 0 5864 NULL
++um_size_bcm5974_config_5867_fields um_size bcm5974_config 0 5867 NULL
++e1000_receive_skb_fndecl_5875_fields e1000_receive_skb fndecl 5 5875 NULL
++get_rx_status_altera_dmaops_5878_fields get_rx_status altera_dmaops 0 5878 NULL nohasharray
++sq_db_page_mthca_create_qp_5878_fields sq_db_page mthca_create_qp 0 5878 &get_rx_status_altera_dmaops_5878_fields
++cydata_ofsh_cyttsp4_sysinfo_data_5887_fields cydata_ofsh cyttsp4_sysinfo_data 0 5887 NULL
++entity_internal_idx_max_media_device_5890_fields entity_internal_idx_max media_device 0 5890 NULL nohasharray
++max_sg_count_hpt_iop_request_get_config_5890_fields max_sg_count hpt_iop_request_get_config 0 5890 &entity_internal_idx_max_media_device_5890_fields
++force_max_req_size_vardecl_vub300_c_5891_fields force_max_req_size vardecl_vub300.c 0 5891 NULL
++dma_common_pages_remap_fndecl_5893_fields dma_common_pages_remap fndecl 2 5893 NULL
++size_squashfs_dir_entry_5896_fields size squashfs_dir_entry 0 5896 NULL
++__nla_reserve_fndecl_5901_fields __nla_reserve fndecl 3 5901 NULL
++alloc_rx_slot_fndecl_5908_fields alloc_rx_slot fndecl 0 5908 NULL
++bytes_drm_i915_error_state_buf_5909_fields bytes drm_i915_error_state_buf 0 5909 NULL
++sctp_tsnmap_num_gabs_fndecl_5915_fields sctp_tsnmap_num_gabs fndecl 0 5915 NULL
++ocfs2_reflink_xattr_buckets_fndecl_5931_fields ocfs2_reflink_xattr_buckets fndecl 7 5931 NULL
++sq_size_i40iw_puda_rsrc_info_5933_fields sq_size i40iw_puda_rsrc_info 0 5933 NULL
++intel_gtt_unmap_memory_fndecl_5935_fields intel_gtt_unmap_memory fndecl 2 5935 NULL
++num_of_paging_blk_iwl_mvm_5936_fields num_of_paging_blk iwl_mvm 0 5936 NULL
++max_attributes_pmbus_data_5939_fields max_attributes pmbus_data 0 5939 NULL
++ide_config_drive_speed_fndecl_5940_fields ide_config_drive_speed fndecl 2 5940 NULL
++buffer_blocks_osst_buffer_5944_fields buffer_blocks osst_buffer 0 5944 NULL
++max_header_size_irda_sock_5950_fields max_header_size irda_sock 0 5950 NULL
++height_tm6000_fh_5952_fields height tm6000_fh 0 5952 NULL
++count_w6692B_hw_5953_fields count w6692B_hw 0 5953 NULL
++len_ias_value_5959_fields len ias_value 0 5959 NULL
++tx_hdrlen_brcmf_sdio_5961_fields tx_hdrlen brcmf_sdio 0 5961 NULL
++viafb_second_size_vardecl_viafbdev_c_5965_fields viafb_second_size vardecl_viafbdev.c 0 5965 NULL
++allocmax_nilfs_sufile_info_5969_fields allocmax nilfs_sufile_info 0 5969 NULL
++f2fs_setxattr_fndecl_5975_fields f2fs_setxattr fndecl 5 5975 NULL
++xfs_trans_roll_fndecl_5977_fields xfs_trans_roll fndecl 0 5977 NULL
++nfsd4_encode_dirent_fndecl_5983_fields nfsd4_encode_dirent fndecl 3 5983 NULL nohasharray
++do_rc_ack_fndecl_5983_fields do_rc_ack fndecl 3 5983 &nfsd4_encode_dirent_fndecl_5983_fields
++snd_hdac_read_parm_uncached_fndecl_6000_fields snd_hdac_read_parm_uncached fndecl 0 6000 NULL
++clk_recalc_fndecl_6001_fields clk_recalc fndecl 0-2 6001 NULL
++afs_vnode_store_data_fndecl_6011_fields afs_vnode_store_data fndecl 4-5 6011 NULL
++code_size_fw_bl_desc_6013_fields code_size fw_bl_desc 0 6013 NULL
++max_discard_sectors_queue_limits_6023_fields max_discard_sectors queue_limits 0 6023 NULL nohasharray
++status_register_read_fndecl_6023_fields status_register_read fndecl 4 6023 &max_discard_sectors_queue_limits_6023_fields
++wqe_cnt_mlx5_ib_wq_6024_fields wqe_cnt mlx5_ib_wq 0 6024 NULL
++flags_rtl8180_rx_desc_6025_fields flags rtl8180_rx_desc 0 6025 NULL
++xlog_bwrite_fndecl_6028_fields xlog_bwrite fndecl 2 6028 NULL
++size_drm_vc4_create_shader_bo_6033_fields size drm_vc4_create_shader_bo 0 6033 NULL
++msix_map_region_fndecl_6035_fields msix_map_region fndecl 2 6035 NULL
++cmipci_sb_reg_decode_fndecl_6048_fields cmipci_sb_reg_decode fndecl 2 6048 NULL
++n_ssids_cfg80211_scan_request_6049_fields n_ssids cfg80211_scan_request 0 6049 NULL
++dmi_len_vardecl_dmi_scan_c_6054_fields dmi_len vardecl_dmi_scan.c 0 6054 NULL nohasharray
++ext4_inode_table_fndecl_6054_fields ext4_inode_table fndecl 0 6054 &dmi_len_vardecl_dmi_scan_c_6054_fields
++map_base_tpm_inf_dev_6056_fields map_base tpm_inf_dev 0 6056 NULL
++reqsize_kpp_alg_6064_fields reqsize kpp_alg 0 6064 NULL
++length_hci_ev_le_advertising_info_6074_fields length hci_ev_le_advertising_info 0 6074 NULL
++elog_len_extlog_l1_head_6075_fields elog_len extlog_l1_head 0 6075 NULL
++ioctx_alloc_fndecl_6081_fields ioctx_alloc fndecl 1 6081 NULL
++remote_miu_nfc_llcp_sock_6088_fields remote_miu nfc_llcp_sock 0 6088 NULL nohasharray
++pcifront_scan_root_fndecl_6088_fields pcifront_scan_root fndecl 2-3 6088 &remote_miu_nfc_llcp_sock_6088_fields
++channel_num_ad9523_channel_spec_6095_fields channel_num ad9523_channel_spec 0 6095 NULL
++__gfs2_xattr_set_fndecl_6098_fields __gfs2_xattr_set fndecl 4 6098 NULL
++alloc_irdadev_fndecl_6103_fields alloc_irdadev fndecl 1 6103 NULL
++rate_min_snd_pcm_hardware_6109_fields rate_min snd_pcm_hardware 0 6109 NULL nohasharray
++blkdev_issue_discard_fndecl_6109_fields blkdev_issue_discard fndecl 0-3-2 6109 &rate_min_snd_pcm_hardware_6109_fields
++resid_scsi_data_buffer_6113_fields resid scsi_data_buffer 0 6113 NULL
++ilf_blkno_xfs_inode_log_format_6118_fields ilf_blkno xfs_inode_log_format 0 6118 NULL
++hblank_panel_info_6122_fields hblank panel_info 0 6122 NULL
++max_gs_mlx5_ib_wq_6148_fields max_gs mlx5_ib_wq 0 6148 NULL
++bytes_per_sector_mspro_devinfo_6149_fields bytes_per_sector mspro_devinfo 0 6149 NULL
++fts_ieee80211_device_6153_fields fts ieee80211_device 0 6153 NULL
++name_len_f2fs_dir_entry_6154_fields name_len f2fs_dir_entry 0 6154 NULL
++buf_size_rte_log_le_6160_fields buf_size rte_log_le 0 6160 NULL nohasharray
++udf_read_tagged_fndecl_6160_fields udf_read_tagged fndecl 2 6160 &buf_size_rte_log_le_6160_fields
++kernel_write_fndecl_6162_fields kernel_write fndecl 3-0 6162 NULL
++dsp_tone_hw_message_fndecl_6173_fields dsp_tone_hw_message fndecl 3 6173 NULL
++m_agirotor_xfs_mount_6177_fields m_agirotor xfs_mount 0 6177 NULL
++fs_descs_count_ffs_data_6179_fields fs_descs_count ffs_data 0 6179 NULL
++ubifs_xattr_set_fndecl_6192_fields ubifs_xattr_set fndecl 6 6192 NULL
++start_mtd_oob_buf64_6198_fields start mtd_oob_buf64 0 6198 NULL
++__geneve_change_mtu_fndecl_6199_fields __geneve_change_mtu fndecl 2 6199 NULL
++__einj_error_trigger_fndecl_6200_fields __einj_error_trigger fndecl 1 6200 NULL
++__send_write_same_fndecl_6201_fields __send_write_same fndecl 0 6201 NULL
++height_linux_logo_6207_fields height linux_logo 0 6207 NULL nohasharray
++digi_write_oob_command_fndecl_6207_fields digi_write_oob_command fndecl 3 6207 &height_linux_logo_6207_fields
++index_lola_stream_6210_fields index lola_stream 0 6210 NULL nohasharray
++dac_channels_pcm_oxygen_model_6210_fields dac_channels_pcm oxygen_model 0 6210 &index_lola_stream_6210_fields
++bnxt_calc_nr_ring_pages_fndecl_6213_fields bnxt_calc_nr_ring_pages fndecl 1-2-0 6213 NULL
++val_bits_regmap_config_6218_fields val_bits regmap_config 0 6218 NULL
++sc_ssid_len_wl18xx_event_mailbox_6223_fields sc_ssid_len wl18xx_event_mailbox 0 6223 NULL
++nr_sects_rrpc_6227_fields nr_sects rrpc 0 6227 NULL
++bytenr_backref_node_6238_fields bytenr backref_node 0 6238 NULL
++ag_xfs_fstrm_item_6243_fields ag xfs_fstrm_item 0 6243 NULL
++mode_offset_pktcdvd_device_6248_fields mode_offset pktcdvd_device 0 6248 NULL
++rxq_cnt_tg3_6249_fields rxq_cnt tg3 0 6249 NULL
++ubifs_leb_change_fndecl_6254_fields ubifs_leb_change fndecl 4 6254 NULL
++bNumInterfaces_usb_config_descriptor_6265_fields bNumInterfaces usb_config_descriptor 0 6265 NULL nohasharray
++blkno_xfs_bmalloca_6265_fields blkno xfs_bmalloca 0 6265 &bNumInterfaces_usb_config_descriptor_6265_fields
++xs_setup_xprt_fndecl_6266_fields xs_setup_xprt fndecl 3-2 6266 NULL
++size_drm_vmw_alloc_dmabuf_req_6273_fields size drm_vmw_alloc_dmabuf_req 0 6273 NULL
++dm_cell_error_fndecl_6277_fields dm_cell_error fndecl 3 6277 NULL
++copy_out_args_fndecl_6283_fields copy_out_args fndecl 3 6283 NULL
++regmap_i2c_gather_write_fndecl_6284_fields regmap_i2c_gather_write fndecl 3-5 6284 NULL
++gnet_stats_copy_app_fndecl_6286_fields gnet_stats_copy_app fndecl 3 6286 NULL
++_snd_pcm_lib_alloc_vmalloc_buffer_fndecl_6287_fields _snd_pcm_lib_alloc_vmalloc_buffer fndecl 2 6287 NULL
++hOver_plus_panel_info_6297_fields hOver_plus panel_info 0 6297 NULL
++lpuart_copy_rx_to_tty_fndecl_6298_fields lpuart_copy_rx_to_tty fndecl 3 6298 NULL
++sectors_r1bio_6323_fields sectors r1bio 0 6323 NULL
++max_ustore_icp_qat_fw_loader_hal_handle_6327_fields max_ustore icp_qat_fw_loader_hal_handle 0 6327 NULL nohasharray
++totalhigh_sysinfo_6327_fields totalhigh sysinfo 0 6327 &max_ustore_icp_qat_fw_loader_hal_handle_6327_fields
++asd_get_devctx_size_fndecl_6335_fields asd_get_devctx_size fndecl 0 6335 NULL nohasharray
++raid5_build_block_fndecl_6335_fields raid5_build_block fndecl 2 6335 &asd_get_devctx_size_fndecl_6335_fields
++h_max_out_saa7146_standard_6339_fields h_max_out saa7146_standard 0 6339 NULL
++orinoco_set_key_fndecl_6341_fields orinoco_set_key fndecl 5 6341 NULL nohasharray
++i40e_align_l2obj_base_fndecl_6341_fields i40e_align_l2obj_base fndecl 0-1 6341 &orinoco_set_key_fndecl_6341_fields
++n_o_ps_usb_stream_kernel_6346_fields n_o_ps usb_stream_kernel 0 6346 NULL
++wbuf_ofs_jffs2_sb_info_6347_fields wbuf_ofs jffs2_sb_info 0 6347 NULL
++chipid_to_nrcores_fndecl_6352_fields chipid_to_nrcores fndecl 0 6352 NULL
++pci_mmconfig_insert_fndecl_6353_fields pci_mmconfig_insert fndecl 3-4-5 6353 NULL
++lrf_body_len_nfsd4_layoutreturn_6359_fields lrf_body_len nfsd4_layoutreturn 0 6359 NULL
++len_p54_rx_data_6362_fields len p54_rx_data 0 6362 NULL
++sisusb_send_bulk_msg_fndecl_6363_fields sisusb_send_bulk_msg fndecl 2 6363 NULL
++alloc_sja1000dev_fndecl_6367_fields alloc_sja1000dev fndecl 1 6367 NULL
++elants_i2c_execute_command_fndecl_6371_fields elants_i2c_execute_command fndecl 3-5 6371 NULL nohasharray
++recover_head_fndecl_6371_fields recover_head fndecl 3 6371 &elants_i2c_execute_command_fndecl_6371_fields
++xfs_buf_associate_memory_fndecl_6376_fields xfs_buf_associate_memory fndecl 3 6376 NULL
++blkfactor_dio_submit_6380_fields blkfactor dio_submit 0 6380 NULL nohasharray
++cur_inode_size_send_ctx_6380_fields cur_inode_size send_ctx 0 6380 &blkfactor_dio_submit_6380_fields
++tail_hid_debug_list_6381_fields tail hid_debug_list 0 6381 NULL
++xfs_rtallocate_extent_near_fndecl_6383_fields xfs_rtallocate_extent_near fndecl 3-5-9-0 6383 NULL
++snd_info_entry_llseek_fndecl_6384_fields snd_info_entry_llseek fndecl 2 6384 NULL
++wps_probe_req_ie_len_mlme_priv_6393_fields wps_probe_req_ie_len mlme_priv 0 6393 NULL
++max_agbno_xfs_alloc_arg_6395_fields max_agbno xfs_alloc_arg 0 6395 NULL
++i_file_acl_ext2_inode_info_6396_fields i_file_acl ext2_inode_info 0 6396 NULL
++compat_sys_ppoll_fndecl_6405_fields compat_sys_ppoll fndecl 2 6405 NULL
++alloc_blocks_hfs_inode_info_6406_fields alloc_blocks hfs_inode_info 0 6406 NULL
++brcmf_chip_sysmem_ramsize_fndecl_6407_fields brcmf_chip_sysmem_ramsize fndecl 0 6407 NULL
++copy_from_iter_fndecl_6410_fields copy_from_iter fndecl 2-0 6410 NULL
++fwnet_change_mtu_fndecl_6424_fields fwnet_change_mtu fndecl 2 6424 NULL nohasharray
++x509_note_serial_fndecl_6424_fields x509_note_serial fndecl 5 6424 &fwnet_change_mtu_fndecl_6424_fields
++de_entrylen_reiserfs_dir_entry_6426_fields de_entrylen reiserfs_dir_entry 0 6426 NULL
++sys_brk_fndecl_6435_fields sys_brk fndecl 1 6435 NULL
++parse_dcb20_entry_fndecl_6440_fields parse_dcb20_entry fndecl 3 6440 NULL
++i40iw_qp_roundup_fndecl_6447_fields i40iw_qp_roundup fndecl 0 6447 NULL
++max_packet_sz_tx_musb_hw_ep_6448_fields max_packet_sz_tx musb_hw_ep 0 6448 NULL
++snd_hammerfall_get_buffer_fndecl_6450_fields snd_hammerfall_get_buffer fndecl 3 6450 NULL
++out_epnum_usb_gadget_6453_fields out_epnum usb_gadget 0 6453 NULL
++iov_iter_advance_fndecl_6457_fields iov_iter_advance fndecl 2 6457 NULL
++xtTruncate_fndecl_6468_fields xtTruncate fndecl 3 6468 NULL
++dx_fb_image_6483_fields dx fb_image 0 6483 NULL
++datasize_vub300_mmc_host_6490_fields datasize vub300_mmc_host 0 6490 NULL nohasharray
++beep_amp_ad198x_spec_6490_fields beep_amp ad198x_spec 0 6490 &datasize_vub300_mmc_host_6490_fields
++inc_remap_and_issue_cell_fndecl_6505_fields inc_remap_and_issue_cell fndecl 3 6505 NULL
++hugetlb_file_setup_fndecl_6506_fields hugetlb_file_setup fndecl 2 6506 NULL
++vfs_setpos_fndecl_6511_fields vfs_setpos fndecl 2 6511 NULL
++base_size_aac_dev_6512_fields base_size aac_dev 0 6512 NULL
++l2_fhdr_vlan_tag_l2_fhdr_6516_fields l2_fhdr_vlan_tag l2_fhdr 0 6516 NULL
++lbs_highrssi_write_fndecl_6520_fields lbs_highrssi_write fndecl 3 6520 NULL
++copy_page_from_iter_fndecl_6523_fields copy_page_from_iter fndecl 3-0 6523 NULL
++sector_start_dm_target_spec_6526_fields sector_start dm_target_spec 0 6526 NULL
++size_i40iw_kmem_info_6537_fields size i40iw_kmem_info 0 6537 NULL nohasharray
++size_ubifs_wbuf_6537_fields size ubifs_wbuf 0 6537 &size_i40iw_kmem_info_6537_fields
++tx_ring_size_vmxnet3_adapter_6541_fields tx_ring_size vmxnet3_adapter 0 6541 NULL
++fe_logical_ext4_free_extent_6542_fields fe_logical ext4_free_extent 0 6542 NULL
++sent_user_sdma_request_6545_fields sent user_sdma_request 0 6545 NULL
++pcm_snd_bebob_stream_formation_6548_fields pcm snd_bebob_stream_formation 0 6548 NULL nohasharray
++count_ixgb_desc_ring_6548_fields count ixgb_desc_ring 0 6548 &pcm_snd_bebob_stream_formation_6548_fields
++jffs2_security_setxattr_fndecl_6550_fields jffs2_security_setxattr fndecl 6 6550 NULL
++xlog_do_log_recovery_fndecl_6557_fields xlog_do_log_recovery fndecl 3 6557 NULL
++active_duplex_tg3_link_config_6559_fields active_duplex tg3_link_config 0 6559 NULL
++cxgbit_xmit_pdu_fndecl_6562_fields cxgbit_xmit_pdu fndecl 5 6562 NULL
++verity_verify_io_fndecl_6564_fields verity_verify_io fndecl 0 6564 NULL
++num_x_edt_ft5x06_ts_data_6566_fields num_x edt_ft5x06_ts_data 0 6566 NULL
++ath6kl_wmi_connect_cmd_fndecl_6571_fields ath6kl_wmi_connect_cmd fndecl 2 6571 NULL
++rts51x_write_mem_fndecl_6573_fields rts51x_write_mem fndecl 4 6573 NULL
++log_num_qps_mlx4_init_hca_param_6574_fields log_num_qps mlx4_init_hca_param 0 6574 NULL
++vmcore_remap_oldmem_pfn_fndecl_6577_fields vmcore_remap_oldmem_pfn fndecl 2-3-4 6577 NULL
++gcd_fndecl_6579_fields gcd fndecl 0 6579 NULL
++argc_tomoyo_condition_6587_fields argc tomoyo_condition 0 6587 NULL
++wil_write_file_rxon_fndecl_6590_fields wil_write_file_rxon fndecl 3 6590 NULL
++capture_frlog_rme96_6593_fields capture_frlog rme96 0 6593 NULL
++pci_get_device_fndecl_6606_fields pci_get_device fndecl 2 6606 NULL
++dma_map_page_fndecl_6607_fields dma_map_page fndecl 0 6607 NULL
++irda_sendmsg_ultra_fndecl_6612_fields irda_sendmsg_ultra fndecl 3 6612 NULL nohasharray
++osst_execute_fndecl_6612_fields osst_execute fndecl 6-3 6612 &irda_sendmsg_ultra_fndecl_6612_fields
++num_tasks_qed_iscsi_pf_params_6614_fields num_tasks qed_iscsi_pf_params 0 6614 NULL
++size_synthhid_msg_hdr_6615_fields size synthhid_msg_hdr 0 6615 NULL
++ocfs2_mark_extent_written_fndecl_6620_fields ocfs2_mark_extent_written fndecl 6-4 6620 NULL
++ath_recv_fndecl_6621_fields ath_recv fndecl 3 6621 NULL
++num_outputs_drm_vmw_update_layout_arg_6623_fields num_outputs drm_vmw_update_layout_arg 0 6623 NULL
++hw_queue_depth_vardecl_null_blk_c_6624_fields hw_queue_depth vardecl_null_blk.c 0 6624 NULL
++copy_for_split_fndecl_6630_fields copy_for_split fndecl 7-8 6630 NULL nohasharray
++cifs_setsize_fndecl_6630_fields cifs_setsize fndecl 2 6630 &copy_for_split_fndecl_6630_fields
++sample_rate_echoaudio_6631_fields sample_rate echoaudio 0 6631 NULL
++integrity_read_file_fndecl_6633_fields integrity_read_file fndecl 0 6633 NULL
++xmit_count_modem_info_6639_fields xmit_count modem_info 0 6639 NULL
++bpp_xvip_video_format_6640_fields bpp xvip_video_format 0 6640 NULL
++irlan_provider_connect_indication_fndecl_6644_fields irlan_provider_connect_indication fndecl 5 6644 NULL
++local_payload_max_nfc_digital_dev_6651_fields local_payload_max nfc_digital_dev 0 6651 NULL
++length_acpi_namestring_info_6654_fields length acpi_namestring_info 0 6654 NULL
++async_error_osd_request_6658_fields async_error osd_request 0 6658 NULL
++persistent_commit_merge_fndecl_6660_fields persistent_commit_merge fndecl 2 6660 NULL
++orinoco_add_extscan_result_fndecl_6668_fields orinoco_add_extscan_result fndecl 3 6668 NULL nohasharray
++io_reserve_memtype_fndecl_6668_fields io_reserve_memtype fndecl 1-2 6668 &orinoco_add_extscan_result_fndecl_6668_fields
++pkt_size_meta_sock_cmd_6669_fields pkt_size meta_sock_cmd 0 6669 NULL
++img_imem_size_fw_hdr_6675_fields img_imem_size fw_hdr 0 6675 NULL
++compatsize_xt_match_6677_fields compatsize xt_match 0 6677 NULL
++lpfc_debugfs_lseek_fndecl_6679_fields lpfc_debugfs_lseek fndecl 2 6679 NULL
++issue_discard_fndecl_6682_fields issue_discard fndecl 0-2-3 6682 NULL
++present_pages_zone_6685_fields present_pages zone 0 6685 NULL
++ac_2order_ext4_allocation_context_6690_fields ac_2order ext4_allocation_context 0 6690 NULL
++param_ssp_completion_resp_6691_fields param ssp_completion_resp 0 6691 NULL
++esize___kfifo_6692_fields esize __kfifo 0 6692 NULL
++max_recvmsg_len_netlink_sock_6699_fields max_recvmsg_len netlink_sock 0 6699 NULL
++length_p_header80_6708_fields length p_header80 0 6708 NULL
++raw_recvmsg_fndecl_6710_fields raw_recvmsg fndecl 3 6710 NULL
++sample_rate_mixart_mgr_6716_fields sample_rate mixart_mgr 0 6716 NULL
++ssb_sdio_block_read_fndecl_6721_fields ssb_sdio_block_read fndecl 3 6721 NULL
++ieee_il_rate_info_6732_fields ieee il_rate_info 0 6732 NULL
++mtd_ooblayout_set_databytes_fndecl_6733_fields mtd_ooblayout_set_databytes fndecl 4 6733 NULL
++end_discard_fndecl_6736_fields end_discard fndecl 2 6736 NULL nohasharray
++size_ORANGEFS_sys_attr_s_6736_fields size ORANGEFS_sys_attr_s 0 6736 &end_discard_fndecl_6736_fields
++alloc_size__osd_req_data_segment_6757_fields alloc_size _osd_req_data_segment 0 6757 NULL
++tun_opts_len_sw_flow_key_6759_fields tun_opts_len sw_flow_key 0 6759 NULL
++al_stripe_size_resize_parms_6766_fields al_stripe_size resize_parms 0 6766 NULL
++start_mtd_oob_buf_6767_fields start mtd_oob_buf 0 6767 NULL
++rx_pkt_ram_iadev_priv_6768_fields rx_pkt_ram iadev_priv 0 6768 NULL
++sg_tablesize_Scsi_Host_6769_fields sg_tablesize Scsi_Host 0 6769 NULL
++xhci_align_td_fndecl_6773_fields xhci_align_td fndecl 3 6773 NULL
++dn_recvmsg_fndecl_6774_fields dn_recvmsg fndecl 3 6774 NULL
++ext4_readpages_fndecl_6776_fields ext4_readpages fndecl 4 6776 NULL
++asn_1_decode_fndecl_6777_fields asn_1_decode fndecl 0 6777 NULL
++bio_phys_segments_fndecl_6778_fields bio_phys_segments fndecl 0 6778 NULL
++ecryptfs_send_message_fndecl_6785_fields ecryptfs_send_message fndecl 2 6785 NULL
++bio_integrity_advance_fndecl_6791_fields bio_integrity_advance fndecl 2 6791 NULL
++st21nfca_im_send_atr_req_fndecl_6792_fields st21nfca_im_send_atr_req fndecl 3 6792 NULL
++xfs_da_shrink_inode_fndecl_6796_fields xfs_da_shrink_inode fndecl 2 6796 NULL
++pop_tx_fndecl_6799_fields pop_tx fndecl 2 6799 NULL
++bankwidth_map_info_6800_fields bankwidth map_info 0 6800 NULL
++pfn_mlx4_uar_6801_fields pfn mlx4_uar 0 6801 NULL
++ctrl_dma_acm_6806_fields ctrl_dma acm 0 6806 NULL
++ip6ip6_err_fndecl_6807_fields ip6ip6_err fndecl 5 6807 NULL
++nfc_digital_allocate_device_fndecl_6810_fields nfc_digital_allocate_device fndecl 4 6810 NULL
++tx_pipe_at76_priv_6815_fields tx_pipe at76_priv 0 6815 NULL
++minor_miscdevice_6818_fields minor miscdevice 0 6818 NULL
++hs_rehash_bits_cfs_hash_6820_fields hs_rehash_bits cfs_hash 0 6820 NULL
++bfs_iget_fndecl_6821_fields bfs_iget fndecl 2 6821 NULL
++chip_rcv_contexts_hfi1_devdata_6824_fields chip_rcv_contexts hfi1_devdata 0 6824 NULL
++centre_vertically_fndecl_6833_fields centre_vertically fndecl 2 6833 NULL
++xfs_dialloc_ag_finobt_near_fndecl_6835_fields xfs_dialloc_ag_finobt_near fndecl 1 6835 NULL
++copy_page_to_iter_fndecl_6842_fields copy_page_to_iter fndecl 3-0 6842 NULL
++intel_framebuffer_size_for_mode_fndecl_6849_fields intel_framebuffer_size_for_mode fndecl 0-2 6849 NULL
++kclist_add_private_fndecl_6853_fields kclist_add_private fndecl 1-2 6853 NULL
++bg_channels_libipw_geo_6854_fields bg_channels libipw_geo 0 6854 NULL
++hdlc_empty_fifo_fndecl_6862_fields hdlc_empty_fifo fndecl 2 6862 NULL
++qib_user_sdma_num_pages_fndecl_6864_fields qib_user_sdma_num_pages fndecl 0 6864 NULL
++offset_amp_assoc_6875_fields offset amp_assoc 0 6875 NULL
++ima_collect_measurement_fndecl_6876_fields ima_collect_measurement fndecl 4 6876 NULL
++xres_fb_videomode_6878_fields xres fb_videomode 0 6878 NULL
++rxbufferhandle_kaweth_device_6883_fields rxbufferhandle kaweth_device 0 6883 NULL
++usbnet_write_cmd_nopm_fndecl_6889_fields usbnet_write_cmd_nopm fndecl 7 6889 NULL
++hpfs_bplus_lookup_fndecl_6896_fields hpfs_bplus_lookup fndecl 0-4 6896 NULL nohasharray
++index_mlx5_uar_6896_fields index mlx5_uar 0 6896 &hpfs_bplus_lookup_fndecl_6896_fields
++link_duplex_e1000_adapter_6902_fields link_duplex e1000_adapter 0 6902 NULL
++jfs_quota_write_fndecl_6903_fields jfs_quota_write fndecl 5 6903 NULL
++offset_clone_root_6907_fields offset clone_root 0 6907 NULL
++table_size_radeon_gart_6911_fields table_size radeon_gart 0 6911 NULL
++error_dm_io_6915_fields error dm_io 0 6915 NULL
++maxbufsize__isdn_driver_6917_fields maxbufsize _isdn_driver 0 6917 NULL
++drm_gtf_mode_complex_fndecl_6918_fields drm_gtf_mode_complex fndecl 3-2-4-7-9-10-8 6918 NULL
++buflen_packet_command_6926_fields buflen packet_command 0 6926 NULL
++multi_src_desc_6933_fields multi src_desc 0 6933 NULL
++nbytes_ide_cmd_6945_fields nbytes ide_cmd 0 6945 NULL
++spare_per_sector_mtk_nfc_nand_chip_6948_fields spare_per_sector mtk_nfc_nand_chip 0 6948 NULL
++max_namelen_fscrypt_operations_6956_fields max_namelen fscrypt_operations 0 6956 NULL
++enic_rxcopybreak_fndecl_6960_fields enic_rxcopybreak fndecl 4 6960 NULL nohasharray
++doffset_cxgbit_lro_pdu_cb_6960_fields doffset cxgbit_lro_pdu_cb 0 6960 &enic_rxcopybreak_fndecl_6960_fields
++af9013_write_ofsm_regs_fndecl_6965_fields af9013_write_ofsm_regs fndecl 4 6965 NULL
++ufs_free_blocks_fndecl_6968_fields ufs_free_blocks fndecl 3-2 6968 NULL
++odm_group_width_pnfs_osd_data_map_6977_fields odm_group_width pnfs_osd_data_map 0 6977 NULL
++async_set_registers_fndecl_6987_fields async_set_registers fndecl 3 6987 NULL
++log_start_r5l_log_6989_fields log_start r5l_log 0 6989 NULL
++sq_spare_wqes_mlx4_ib_qp_6994_fields sq_spare_wqes mlx4_ib_qp 0 6994 NULL
++rx_agg_nr_pages_bnxt_7000_fields rx_agg_nr_pages bnxt 0 7000 NULL
++mpa_frame_size_nes_cm_node_7002_fields mpa_frame_size nes_cm_node 0 7002 NULL
++p_start_nilfs_period_7008_fields p_start nilfs_period 0 7008 NULL
++s_groups_count_ext4_sb_info_7012_fields s_groups_count ext4_sb_info 0 7012 NULL
++ocfs2_cache_cluster_dealloc_fndecl_7016_fields ocfs2_cache_cluster_dealloc fndecl 3-2 7016 NULL
++attr_bytes_osdv2_attributes_list_element_7018_fields attr_bytes osdv2_attributes_list_element 0 7018 NULL
++channels_snd_pcm_plugin_format_7026_fields channels snd_pcm_plugin_format 0 7026 NULL
++ip_tun_to_nlattr_fndecl_7028_fields ip_tun_to_nlattr fndecl 4 7028 NULL
++virtio_gpu_alloc_object_fndecl_7030_fields virtio_gpu_alloc_object fndecl 2 7030 NULL
++h_sync_strt_wid_crtc_7033_fields h_sync_strt_wid crtc 0 7033 NULL
++fat_short2lower_uni_fndecl_7036_fields fat_short2lower_uni fndecl 0 7036 NULL
++n_krcv_queues_hfi1_devdata_7042_fields n_krcv_queues hfi1_devdata 0 7042 NULL
++fp_msix_cnt_qed_int_params_7045_fields fp_msix_cnt qed_int_params 0 7045 NULL
++iforce_send_packet_fndecl_7050_fields iforce_send_packet fndecl 2 7050 NULL
++srq_entry_sz_mlx4_dev_cap_7052_fields srq_entry_sz mlx4_dev_cap 0 7052 NULL
++packet_size_usbatm_channel_7056_fields packet_size usbatm_channel 0 7056 NULL
++__btrfs_drop_extents_fndecl_7058_fields __btrfs_drop_extents fndecl 6-5 7058 NULL
++dccph_doff_dccp_hdr_7060_fields dccph_doff dccp_hdr 0 7060 NULL nohasharray
++ddebug_proc_write_fndecl_7060_fields ddebug_proc_write fndecl 3 7060 &dccph_doff_dccp_hdr_7060_fields
++total_VFs_pci_sriov_7061_fields total_VFs pci_sriov 0 7061 NULL
++i_dir_start_lookup_ext4_inode_info_7062_fields i_dir_start_lookup ext4_inode_info 0 7062 NULL
++jt_size_gfx_firmware_header_v1_0_7064_fields jt_size gfx_firmware_header_v1_0 0 7064 NULL
++lua_sysfs_read_fndecl_7069_fields lua_sysfs_read fndecl 6 7069 NULL
++command_hdac_bus_ops_7079_fields command hdac_bus_ops 0 7079 NULL
++orangefs_bufmap_size_query_fndecl_7085_fields orangefs_bufmap_size_query fndecl 0 7085 NULL
++pref_height_vmw_display_unit_7089_fields pref_height vmw_display_unit 0 7089 NULL
++dma_mt7601u_dma_buf_7098_fields dma mt7601u_dma_buf 0 7098 NULL
++rtl8139_change_mtu_fndecl_7099_fields rtl8139_change_mtu fndecl 2 7099 NULL
++nvkm_fifo_chan_ctor_fndecl_7101_fields nvkm_fifo_chan_ctor fndecl 11 7101 NULL
++scan_ies_len_ieee80211_local_7104_fields scan_ies_len ieee80211_local 0 7104 NULL
++nfsd4_encode_readv_fndecl_7110_fields nfsd4_encode_readv fndecl 4 7110 NULL
++udf_table_free_blocks_fndecl_7114_fields udf_table_free_blocks fndecl 4-5 7114 NULL
++rsxx_dma_queue_bio_fndecl_7118_fields rsxx_dma_queue_bio fndecl 0 7118 NULL
++svc_getnl_fndecl_7131_fields svc_getnl fndecl 0 7131 NULL
++vc_origin_vc_data_7148_fields vc_origin vc_data 0 7148 NULL
++ea_secno_fnode_7151_fields ea_secno fnode 0 7151 NULL nohasharray
++privsize_nft_set_ops_7151_fields privsize nft_set_ops 0 7151 &ea_secno_fnode_7151_fields
++nv50_disp_new__fndecl_7152_fields nv50_disp_new_ fndecl 4 7152 NULL
++newblocks_xfs_growfs_rt_7154_fields newblocks xfs_growfs_rt 0 7154 NULL
++num_packets_st5481_in_7161_fields num_packets st5481_in 0 7161 NULL
++__add_to_page_cache_locked_fndecl_7168_fields __add_to_page_cache_locked fndecl 0 7168 NULL
++setup_sg_fndecl_7174_fields setup_sg fndecl 0-3 7174 NULL
++get_rxfh_key_size_ethtool_ops_7178_fields get_rxfh_key_size ethtool_ops 0 7178 NULL
++ax88179_write_cmd_async_fndecl_7180_fields ax88179_write_cmd_async fndecl 5 7180 NULL
++vdisplay_moderec_7183_fields vdisplay moderec 0 7183 NULL nohasharray
++mfd_add_devices_fndecl_7183_fields mfd_add_devices fndecl 6-2 7183 &vdisplay_moderec_7183_fields
++ino_node_footer_7185_fields ino node_footer 0 7185 NULL
++acc_accl_accessdata_dn_7186_fields acc_accl accessdata_dn 0 7186 NULL
++vc_rows_vc_data_7192_fields vc_rows vc_data 0 7192 NULL nohasharray
++__shmem_file_setup_fndecl_7192_fields __shmem_file_setup fndecl 2 7192 &vc_rows_vc_data_7192_fields nohasharray
++ic_size_xlog_in_core_7192_fields ic_size xlog_in_core 0 7192 &__shmem_file_setup_fndecl_7192_fields nohasharray
++remote_addr_ib_atomic_wr_7192_fields remote_addr ib_atomic_wr 0 7192 &ic_size_xlog_in_core_7192_fields
++mmc_calc_max_discard_fndecl_7198_fields mmc_calc_max_discard fndecl 0 7198 NULL
++length_pnfs_layout_range_7207_fields length pnfs_layout_range 0 7207 NULL
++__wa_populate_dto_urb_fndecl_7208_fields __wa_populate_dto_urb fndecl 3-4 7208 NULL
++size_srp_iu_7210_fields size srp_iu 0 7210 NULL nohasharray
++drbd_drain_block_fndecl_7210_fields drbd_drain_block fndecl 2 7210 &size_srp_iu_7210_fields
++rivafb_do_maximize_fndecl_7212_fields rivafb_do_maximize fndecl 3-4 7212 NULL nohasharray
++eq_ecount_lpfc_sli4_hba_7212_fields eq_ecount lpfc_sli4_hba 0 7212 &rivafb_do_maximize_fndecl_7212_fields
++max_id_Scsi_Host_7217_fields max_id Scsi_Host 0 7217 NULL
++num_chipselect_spi_gpio_platform_data_7218_fields num_chipselect spi_gpio_platform_data 0 7218 NULL
++__inet_lookup_listener_fndecl_7235_fields __inet_lookup_listener fndecl 4 7235 NULL
++s_mb_last_group_ext4_sb_info_7240_fields s_mb_last_group ext4_sb_info 0 7240 NULL
++xfs_attr3_leaf_create_fndecl_7243_fields xfs_attr3_leaf_create fndecl 2 7243 NULL
++len_session_key_7253_fields len session_key 0 7253 NULL
++ddcb_max_ddcb_queue_7260_fields ddcb_max ddcb_queue 0 7260 NULL
++bpp_cobalt_stream_7263_fields bpp cobalt_stream 0 7263 NULL
++iscsi_recv_pdu_fndecl_7264_fields iscsi_recv_pdu fndecl 4 7264 NULL
++xlog_bread_fndecl_7272_fields xlog_bread fndecl 2 7272 NULL
++vc_saved_x_vc_data_7275_fields vc_saved_x vc_data 0 7275 NULL
++num_asq_entries_i40e_adminq_info_7278_fields num_asq_entries i40e_adminq_info 0 7278 NULL
++hsync_psb_pipe_7286_fields hsync psb_pipe 0 7286 NULL
++trailer_len_dst_entry_7294_fields trailer_len dst_entry 0 7294 NULL
++cmd_size_vmw_view_7295_fields cmd_size vmw_view 0 7295 NULL nohasharray
++ubifs_update_one_lp_fndecl_7295_fields ubifs_update_one_lp fndecl 3 7295 &cmd_size_vmw_view_7295_fields
++num_channels_lp55xx_platform_data_7299_fields num_channels lp55xx_platform_data 0 7299 NULL
++value_apei_exec_context_7318_fields value apei_exec_context 0 7318 NULL
++fdir_filter_count_ixgbe_adapter_7322_fields fdir_filter_count ixgbe_adapter 0 7322 NULL
++check_index_in_prev_nodes_fndecl_7324_fields check_index_in_prev_nodes fndecl 2 7324 NULL nohasharray
++bus_num_dw_pci_controller_7324_fields bus_num dw_pci_controller 0 7324 &check_index_in_prev_nodes_fndecl_7324_fields
++generic_write_end_fndecl_7325_fields generic_write_end fndecl 0-5 7325 NULL
++mtd_ooblayout_get_databytes_fndecl_7335_fields mtd_ooblayout_get_databytes fndecl 4 7335 NULL nohasharray
++control_cnt_pvr2_hdw_7335_fields control_cnt pvr2_hdw 0 7335 &mtd_ooblayout_get_databytes_fndecl_7335_fields
++name_len_ubi_volume_info_7350_fields name_len ubi_volume_info 0 7350 NULL
++btusb_recv_intr_fndecl_7351_fields btusb_recv_intr fndecl 3 7351 NULL nohasharray
++jpegqual_s2255_vc_7351_fields jpegqual s2255_vc 0 7351 &btusb_recv_intr_fndecl_7351_fields
++mesh_fwd_csa_frame_fndecl_7353_fields mesh_fwd_csa_frame fndecl 3 7353 NULL
++mcp251x_spi_trans_fndecl_7356_fields mcp251x_spi_trans fndecl 2 7356 NULL
++dm_vcalloc_fndecl_7357_fields dm_vcalloc fndecl 2-1 7357 NULL
++sysctl_tcp_base_mss_netns_ipv4_7363_fields sysctl_tcp_base_mss netns_ipv4 0 7363 NULL
++sys_fadvise64_fndecl_7365_fields sys_fadvise64 fndecl 2-3 7365 NULL
++check_left_item_operations_7369_fields check_left item_operations 0 7369 NULL
++e_value_size_ext2_xattr_entry_7373_fields e_value_size ext2_xattr_entry 0 7373 NULL
++bufsize_pstore_info_7375_fields bufsize pstore_info 0 7375 NULL
++shmem_swapin_fndecl_7376_fields shmem_swapin fndecl 4 7376 NULL nohasharray
++scsi_mode_sense_fndecl_7376_fields scsi_mode_sense fndecl 5 7376 &shmem_swapin_fndecl_7376_fields
++c67x00_create_td_fndecl_7377_fields c67x00_create_td fndecl 4 7377 NULL
++fs_ablocks_hfs_sb_info_7381_fields fs_ablocks hfs_sb_info 0 7381 NULL
++amd8111e_change_mtu_fndecl_7389_fields amd8111e_change_mtu fndecl 2 7389 NULL
++qed_eq_alloc_fndecl_7396_fields qed_eq_alloc fndecl 2 7396 NULL
++v_tot_disp_crtc_7400_fields v_tot_disp crtc 0 7400 NULL
++ext4_ext_zeroout_fndecl_7404_fields ext4_ext_zeroout fndecl 0 7404 NULL
++fw_sent_bcm203x_data_7405_fields fw_sent bcm203x_data 0 7405 NULL
++__ip_append_data_fndecl_7411_fields __ip_append_data fndecl 9-8 7411 NULL
++default_value_cx88_ctrl_7412_fields default_value cx88_ctrl 0 7412 NULL
++block_ack_param_set_host_cmd_ds_11n_addba_req_7415_fields block_ack_param_set host_cmd_ds_11n_addba_req 0 7415 NULL nohasharray
++htotal_psb_pipe_7415_fields htotal psb_pipe 0 7415 &block_ack_param_set_host_cmd_ds_11n_addba_req_7415_fields nohasharray
++xfs_dialloc_ag_fndecl_7415_fields xfs_dialloc_ag fndecl 3 7415 &htotal_psb_pipe_7415_fields
++mirror_sd_gl860_7430_fields mirror sd_gl860 0 7430 NULL
++hdrsize_genl_family_7432_fields hdrsize genl_family 0 7432 NULL nohasharray
++residue_dma_tx_state_7432_fields residue dma_tx_state 0 7432 &hdrsize_genl_family_7432_fields
++data_len_sk_buff_7447_fields data_len sk_buff 0 7447 NULL
++size_vmci_handle_arr_7457_fields size vmci_handle_arr 0 7457 NULL
++__multipath_map_bio_fndecl_7459_fields __multipath_map_bio fndecl 0 7459 NULL
++len_sk_buff_7460_fields len sk_buff 0 7460 NULL
++hpfs_alloc_sector_fndecl_7462_fields hpfs_alloc_sector fndecl 0-4-3-2 7462 NULL
++Length__SECURITY_BUFFER_7467_fields Length _SECURITY_BUFFER 0 7467 NULL
++buffer_dma_ehci_qtd_7468_fields buffer_dma ehci_qtd 0 7468 NULL
++block_to_sectors_fndecl_7472_fields block_to_sectors fndecl 0-2 7472 NULL
++devmem_is_allowed_fndecl_7475_fields devmem_is_allowed fndecl 1 7475 NULL
++status_c67x00_urb_priv_7480_fields status c67x00_urb_priv 0 7480 NULL
++rxrpc_server_keyring_fndecl_7484_fields rxrpc_server_keyring fndecl 3 7484 NULL
++header_len_eth_fast_path_rx_tpa_start_cqe_7488_fields header_len eth_fast_path_rx_tpa_start_cqe 0 7488 NULL
++s_log_block_size_ext2_super_block_7490_fields s_log_block_size ext2_super_block 0 7490 NULL
++cookie_rds_atomic_args_7495_fields cookie rds_atomic_args 0 7495 NULL
++ri_lsegs_start_nilfs_recovery_info_7501_fields ri_lsegs_start nilfs_recovery_info 0 7501 NULL
++all_tables_size_vardecl_tables_c_7504_fields all_tables_size vardecl_tables.c 0 7504 NULL
++btrfs_truncate_inode_items_fndecl_7511_fields btrfs_truncate_inode_items fndecl 4 7511 NULL
++ext4_mb_load_buddy_gfp_fndecl_7524_fields ext4_mb_load_buddy_gfp fndecl 2-0 7524 NULL
++xfs_iomap_eof_want_preallocate_fndecl_7527_fields xfs_iomap_eof_want_preallocate fndecl 4-3 7527 NULL
++cfg_hba_queue_depth_lpfc_hba_7534_fields cfg_hba_queue_depth lpfc_hba 0 7534 NULL
++delta_mmap_mm_struct_7536_fields delta_mmap mm_struct 0 7536 NULL
++length_ndis_80211_ssid_7537_fields length ndis_80211_ssid 0 7537 NULL
++raid10_resize_fndecl_7562_fields raid10_resize fndecl 2 7562 NULL
++max_channels_snd_pcm_chmap_7565_fields max_channels snd_pcm_chmap 0 7565 NULL
++duplicateIXtree_fndecl_7568_fields duplicateIXtree fndecl 3-2 7568 NULL
++wqe_fcoe_cqe_7572_fields wqe fcoe_cqe 0 7572 NULL
++mISDN_sock_sendmsg_fndecl_7584_fields mISDN_sock_sendmsg fndecl 3 7584 NULL nohasharray
++tcp_manip_pkt_fndecl_7584_fields tcp_manip_pkt fndecl 4 7584 &mISDN_sock_sendmsg_fndecl_7584_fields
++tuple_size_blk_integrity_7585_fields tuple_size blk_integrity 0 7585 NULL
++length_sctp_chunkhdr_7587_fields length sctp_chunkhdr 0 7587 NULL
++ftdi_elan_edset_input_fndecl_7588_fields ftdi_elan_edset_input fndecl 0 7588 NULL
++scan_index_iio_chan_spec_7597_fields scan_index iio_chan_spec 0 7597 NULL nohasharray
++num_regions_wm_adsp_fw_caps_7597_fields num_regions wm_adsp_fw_caps 0 7597 &scan_index_iio_chan_spec_7597_fields
++q_blkno_xfs_dquot_7601_fields q_blkno xfs_dquot 0 7601 NULL
++pathmtu_sctp_transport_7603_fields pathmtu sctp_transport 0 7603 NULL
++fuse_listxattr_fndecl_7605_fields fuse_listxattr fndecl 3 7605 NULL
++pzl_urb_dequeue_fndecl_7607_fields pzl_urb_dequeue fndecl 3 7607 NULL
++report_size_hid_field_7609_fields report_size hid_field 0 7609 NULL
++rcvidx_w6692B_hw_7613_fields rcvidx w6692B_hw 0 7613 NULL
++id_hid_report_7618_fields id hid_report 0 7618 NULL
++drm_fb_helper_fill_var_fndecl_7619_fields drm_fb_helper_fill_var fndecl 4-3 7619 NULL
++physical_scrub_page_7621_fields physical scrub_page 0 7621 NULL
++block_udf_vds_record_7623_fields block udf_vds_record 0 7623 NULL
++ocfs2_free_suballoc_bits_fndecl_7627_fields ocfs2_free_suballoc_bits fndecl 5 7627 NULL
++agp_allocate_memory_wrap_fndecl_7635_fields agp_allocate_memory_wrap fndecl 1 7635 NULL
++virt_to_scatterlist_fndecl_7637_fields virt_to_scatterlist fndecl 2 7637 NULL
++read_cable_det_adv76xx_chip_info_7641_fields read_cable_det adv76xx_chip_info 0 7641 NULL
++num_sge_ib_uverbs_recv_wr_7647_fields num_sge ib_uverbs_recv_wr 0 7647 NULL
++s_fsize_ufs_sb_private_info_7659_fields s_fsize ufs_sb_private_info 0 7659 NULL
++brcmf_proto_bcdc_txdata_fndecl_7662_fields brcmf_proto_bcdc_txdata fndecl 3 7662 NULL
++to_perf_branch_entry_7663_fields to perf_branch_entry 0 7663 NULL
++rds_sendmsg_fndecl_7675_fields rds_sendmsg fndecl 3 7675 NULL
++nfsd_max_blksize_vardecl_7678_fields nfsd_max_blksize vardecl 0 7678 NULL
++shmem_read_mapping_page_gfp_fndecl_7681_fields shmem_read_mapping_page_gfp fndecl 2 7681 NULL
++l1oip_socket_send_fndecl_7685_fields l1oip_socket_send fndecl 7 7685 NULL nohasharray
++pm860x_page_bulk_read_fndecl_7685_fields pm860x_page_bulk_read fndecl 3 7685 &l1oip_socket_send_fndecl_7685_fields
++num_gpios_stmpe_7689_fields num_gpios stmpe 0 7689 NULL
++di_extsize_xfs_icdinode_7693_fields di_extsize xfs_icdinode 0 7693 NULL
++n_tty_receive_buf_real_raw_fndecl_7696_fields n_tty_receive_buf_real_raw fndecl 4 7696 NULL
++hdr_len_virtio_net_hdr_7704_fields hdr_len virtio_net_hdr 0 7704 NULL nohasharray
++rf_cpos_ocfs2_refcount_block_7704_fields rf_cpos ocfs2_refcount_block 0 7704 &hdr_len_virtio_net_hdr_7704_fields
++stride_pci_sriov_7712_fields stride pci_sriov 0 7712 NULL
++i915_gem_get_gtt_size_fndecl_7714_fields i915_gem_get_gtt_size fndecl 0-2 7714 NULL
++controller_number_ms_boot_attr_info_7716_fields controller_number ms_boot_attr_info 0 7716 NULL
++ceph_pool_perm_check_fndecl_7729_fields ceph_pool_perm_check fndecl 0 7729 NULL nohasharray
++if_ipx_offset_ipx_interface_7729_fields if_ipx_offset ipx_interface 0 7729 &ceph_pool_perm_check_fndecl_7729_fields
++get_num_rx_queues_rtnl_link_ops_7733_fields get_num_rx_queues rtnl_link_ops 0 7733 NULL
++access_remote_vm_fndecl_7734_fields access_remote_vm fndecl 4-2 7734 NULL
++vxres_aty128_crtc_7753_fields vxres aty128_crtc 0 7753 NULL
++mlx4_enable_sriov_fndecl_7756_fields mlx4_enable_sriov fndecl 3-4 7756 NULL nohasharray
++max_eq_lpfc_max_cfg_param_7756_fields max_eq lpfc_max_cfg_param 0 7756 &mlx4_enable_sriov_fndecl_7756_fields nohasharray
++ide_get_best_pio_mode_fndecl_7756_fields ide_get_best_pio_mode fndecl 0-2-3 7756 &max_eq_lpfc_max_cfg_param_7756_fields
++xfs_dir2_free_read_fndecl_7759_fields xfs_dir2_free_read fndecl 3 7759 NULL
++pps_devt_vardecl_pps_c_7772_fields pps_devt vardecl_pps.c 0 7772 NULL
++maxcmd_nvme_ctrl_7774_fields maxcmd nvme_ctrl 0 7774 NULL
++t_data_nents_orig_se_cmd_7775_fields t_data_nents_orig se_cmd 0 7775 NULL nohasharray
++len_aqm_info_7775_fields len aqm_info 0 7775 &t_data_nents_orig_se_cmd_7775_fields
++mode_size_cyttsp4_sysinfo_ofs_7780_fields mode_size cyttsp4_sysinfo_ofs 0 7780 NULL
++mmu_private_affs_inode_info_7785_fields mmu_private affs_inode_info 0 7785 NULL
++read_index_wm_adsp_compr_buf_7788_fields read_index wm_adsp_compr_buf 0 7788 NULL
++qxl_framebuffer_surface_dirty_fndecl_7791_fields qxl_framebuffer_surface_dirty fndecl 6 7791 NULL
++inode_getblk_fndecl_7794_fields inode_getblk fndecl 2-0 7794 NULL
++__clk_speculate_rates_fndecl_7795_fields __clk_speculate_rates fndecl 2 7795 NULL
++remove_advertising_fndecl_7798_fields remove_advertising fndecl 4 7798 NULL
++qnx4_get_block_fndecl_7810_fields qnx4_get_block fndecl 2 7810 NULL
++cciss_max_sectors_ctlr_info_7811_fields cciss_max_sectors ctlr_info 0 7811 NULL nohasharray
++len_nfs_diropargs_7811_fields len nfs_diropargs 0 7811 &cciss_max_sectors_ctlr_info_7811_fields
++plen_hci_event_hdr_7815_fields plen hci_event_hdr 0 7815 NULL
++length_scsi_mode_data_7819_fields length scsi_mode_data 0 7819 NULL
++get_pipe_fndecl_7825_fields get_pipe fndecl 0-2 7825 NULL
++x1_virtio_gpu_framebuffer_7830_fields x1 virtio_gpu_framebuffer 0 7830 NULL
++rtpref_nfs_fsinfo_7835_fields rtpref nfs_fsinfo 0 7835 NULL
++nonstatic_find_mem_region_fndecl_7838_fields nonstatic_find_mem_region fndecl 1-2 7838 NULL
++sys_truncate_fndecl_7846_fields sys_truncate fndecl 2 7846 NULL
++pcf2123_write_fndecl_7856_fields pcf2123_write fndecl 3 7856 NULL
++sl_datalen_nfsd4_slot_7859_fields sl_datalen nfsd4_slot 0 7859 NULL
++wqe_shift_mlx4_ib_wq_7860_fields wqe_shift mlx4_ib_wq 0 7860 NULL
++n_vifs_ath10k_mac_change_chanctx_arg_7864_fields n_vifs ath10k_mac_change_chanctx_arg 0 7864 NULL
++s_fpbshift_ufs_sb_private_info_7865_fields s_fpbshift ufs_sb_private_info 0 7865 NULL
++cyapa_i2c_read_fndecl_7870_fields cyapa_i2c_read fndecl 3 7870 NULL nohasharray
++ata_host_alloc_pinfo_fndecl_7870_fields ata_host_alloc_pinfo fndecl 3 7870 &cyapa_i2c_read_fndecl_7870_fields
++mapped_vram_mb862xxfb_par_7872_fields mapped_vram mb862xxfb_par 0 7872 NULL
++iscsi_tcp_dgst_header_fndecl_7878_fields iscsi_tcp_dgst_header fndecl 3 7878 NULL
++rxstatus_epic_rx_desc_7884_fields rxstatus epic_rx_desc 0 7884 NULL nohasharray
++sd_read_data_fndecl_7884_fields sd_read_data fndecl 3 7884 &rxstatus_epic_rx_desc_7884_fields nohasharray
++freecom_readdata_fndecl_7884_fields freecom_readdata fndecl 4 7884 &sd_read_data_fndecl_7884_fields
++ath6kl_wmi_send_mgmt_cmd_fndecl_7888_fields ath6kl_wmi_send_mgmt_cmd fndecl 2 7888 NULL
++ath6kl_wmi_info_req_cmd_fndecl_7906_fields ath6kl_wmi_info_req_cmd fndecl 2 7906 NULL
++mode_id_vbe_mode_ib_7913_fields mode_id vbe_mode_ib 0 7913 NULL
++rx_ring_size_vmxnet3_adapter_7917_fields rx_ring_size vmxnet3_adapter 0 7917 NULL
++ccw_bmove_fndecl_7918_fields ccw_bmove fndecl 5-7-3-8-6-4 7918 NULL nohasharray
++remote_addr_ib_rdma_wr_7918_fields remote_addr ib_rdma_wr 0 7918 &ccw_bmove_fndecl_7918_fields
++raid5_size_fndecl_7933_fields raid5_size fndecl 0-3-2 7933 NULL
++hfi1_max_sges_vardecl_7935_fields hfi1_max_sges vardecl 0 7935 NULL
++__locate_fndecl_7939_fields __locate fndecl 3-0 7939 NULL
++jp_journal_size_journal_params_7943_fields jp_journal_size journal_params 0 7943 NULL
++psb_unlocked_ioctl_fndecl_7949_fields psb_unlocked_ioctl fndecl 2 7949 NULL
++num_sdma_hfi1_devdata_7951_fields num_sdma hfi1_devdata 0 7951 NULL
++jme_change_mtu_fndecl_7964_fields jme_change_mtu fndecl 2 7964 NULL
++ticket_len_rxk5_key_7970_fields ticket_len rxk5_key 0 7970 NULL
++peb_count_ubi_device_7987_fields peb_count ubi_device 0 7987 NULL
++bin_buffer_size_configfs_buffer_7988_fields bin_buffer_size configfs_buffer 0 7988 NULL
++initrd_end_vardecl_7989_fields initrd_end vardecl 0 7989 NULL
++ip_append_data_fndecl_7997_fields ip_append_data fndecl 6-5 7997 NULL
++ieee80211_agg_tx_operational_fndecl_8006_fields ieee80211_agg_tx_operational fndecl 3 8006 NULL
++find_resource_fndecl_8013_fields find_resource fndecl 3 8013 NULL nohasharray
++encode_opaque_fixed_fndecl_8013_fields encode_opaque_fixed fndecl 3 8013 &find_resource_fndecl_8013_fields nohasharray
++ocfs2_read_quota_phys_block_fndecl_8013_fields ocfs2_read_quota_phys_block fndecl 2 8013 &encode_opaque_fixed_fndecl_8013_fields
++max_mtu_mlx4_en_priv_8015_fields max_mtu mlx4_en_priv 0 8015 NULL
++keyctl_instantiate_key_iov_fndecl_8026_fields keyctl_instantiate_key_iov fndecl 3 8026 NULL
++period_size_snd_pcm_runtime_8027_fields period_size snd_pcm_runtime 0 8027 NULL
++length_e1000_rx_desc_8032_fields length e1000_rx_desc 0 8032 NULL
++mcast_mtu_ipoib_dev_priv_8033_fields mcast_mtu ipoib_dev_priv 0 8033 NULL
++gtt_base_align_radeon_mc_8035_fields gtt_base_align radeon_mc 0 8035 NULL
++vbi_width_au0828_dev_8038_fields vbi_width au0828_dev 0 8038 NULL
++len_ff_idmap_8039_fields len ff_idmap 0 8039 NULL
++size_nvkm_fifo_chan_8052_fields size nvkm_fifo_chan 0 8052 NULL
++ieee80211_tdls_build_mgmt_packet_data_fndecl_8053_fields ieee80211_tdls_build_mgmt_packet_data fndecl 8 8053 NULL
++memmap_entry_callback_fndecl_8054_fields memmap_entry_callback fndecl 1-2 8054 NULL
++mmio_megabytes_vmbus_channel_offer_8058_fields mmio_megabytes vmbus_channel_offer 0 8058 NULL
++btrfs_unlink_inode_fndecl_8064_fields btrfs_unlink_inode fndecl 6 8064 NULL
++num_counters_mlx4_ib_diag_counters_8069_fields num_counters mlx4_ib_diag_counters 0 8069 NULL
++savage_map_video_fndecl_8078_fields savage_map_video fndecl 2 8078 NULL
++encode_string_fndecl_8079_fields encode_string fndecl 2 8079 NULL
++out_pipe_usbtest_dev_8085_fields out_pipe usbtest_dev 0 8085 NULL
++length_packet_8086_fields length packet 0 8086 NULL
++lpt_lnum_bits_ubifs_info_8094_fields lpt_lnum_bits ubifs_info 0 8094 NULL
++ali1535_smba_vardecl_i2c_ali1535_c_8095_fields ali1535_smba vardecl_i2c-ali1535.c 0 8095 NULL
++sd_complete_frame_fndecl_8096_fields sd_complete_frame fndecl 3 8096 NULL
++batchcount_kmem_cache_8098_fields batchcount kmem_cache 0 8098 NULL
++sddr55_read_data_fndecl_8099_fields sddr55_read_data fndecl 3 8099 NULL
++rx_cmp_meta_data_rx_cmp_ext_8103_fields rx_cmp_meta_data rx_cmp_ext 0 8103 NULL
++__kmalloc_reserve_fndecl_8107_fields __kmalloc_reserve fndecl 1 8107 NULL
++tgt_count_blogic_adapter_8109_fields tgt_count blogic_adapter 0 8109 NULL nohasharray
++nr_relocs_drm_etnaviv_gem_submit_8109_fields nr_relocs drm_etnaviv_gem_submit 0 8109 &tgt_count_blogic_adapter_8109_fields
++speed_channel_8113_fields speed channel 0 8113 NULL
++up_dnode_8116_fields up dnode 0 8116 NULL
++m_pblk_f2fs_map_blocks_8129_fields m_pblk f2fs_map_blocks 0 8129 NULL
++jffs2_scan_inode_node_fndecl_8132_fields jffs2_scan_inode_node fndecl 4 8132 NULL
++cfg_size_pci_dev_8134_fields cfg_size pci_dev 0 8134 NULL
++ucNumDPMLevels__ATOM_PPLIB_STATE_V2_8137_fields ucNumDPMLevels _ATOM_PPLIB_STATE_V2 0 8137 NULL nohasharray
++wpa_ie_len_libipw_network_8137_fields wpa_ie_len libipw_network 0 8137 &ucNumDPMLevels__ATOM_PPLIB_STATE_V2_8137_fields
++max_xmit_dlength_iscsi_conn_8139_fields max_xmit_dlength iscsi_conn 0 8139 NULL nohasharray
++nct6683_find_fndecl_8139_fields nct6683_find fndecl 0 8139 &max_xmit_dlength_iscsi_conn_8139_fields
++iic_tpm_write_long_fndecl_8143_fields iic_tpm_write_long fndecl 3 8143 NULL
++sys_preadv_fndecl_8159_fields sys_preadv fndecl 3 8159 NULL
++hr_start_block_o2hb_region_8162_fields hr_start_block o2hb_region 0 8162 NULL
++num_custom_params_pinctrl_desc_8163_fields num_custom_params pinctrl_desc 0 8163 NULL
++read_len_ddb_flashio_8164_fields read_len ddb_flashio 0 8164 NULL nohasharray
++devnum_denali_nand_info_8164_fields devnum denali_nand_info 0 8164 &read_len_ddb_flashio_8164_fields
++tidoffset_user_sdma_request_8166_fields tidoffset user_sdma_request 0 8166 NULL
++tx_ring_count_igb_adapter_8171_fields tx_ring_count igb_adapter 0 8171 NULL
++blksz_mmc_data_8174_fields blksz mmc_data 0 8174 NULL nohasharray
++ptr_mask_efx_tx_queue_8174_fields ptr_mask efx_tx_queue 0 8174 &blksz_mmc_data_8174_fields
++avail_ubifs_wbuf_8176_fields avail ubifs_wbuf 0 8176 NULL
++pdu_read_fndecl_8183_fields pdu_read fndecl 3 8183 NULL
++mwifiex_get_common_rates_fndecl_8184_fields mwifiex_get_common_rates fndecl 3 8184 NULL
++brcms_c_get_header_len_fndecl_8189_fields brcms_c_get_header_len fndecl 0 8189 NULL
++resource_alignment_fndecl_8199_fields resource_alignment fndecl 0 8199 NULL
++tx_ring_count_fm10k_intfc_8210_fields tx_ring_count fm10k_intfc 0 8210 NULL
++mmap_size_kioctx_8213_fields mmap_size kioctx 0 8213 NULL
++clear_extent_bit_fndecl_8215_fields clear_extent_bit fndecl 2-3 8215 NULL nohasharray
++pci_scan_bus_fndecl_8215_fields pci_scan_bus fndecl 1 8215 &clear_extent_bit_fndecl_8215_fields
++cfg_num_rx_irqs_be_adapter_8218_fields cfg_num_rx_irqs be_adapter 0 8218 NULL
++be_f_offset_pnfs_block_extent_8222_fields be_f_offset pnfs_block_extent 0 8222 NULL
++eeprom_size_iwl_base_params_8231_fields eeprom_size iwl_base_params 0 8231 NULL
++ir_freecount_xfs_inobt_rec_incore_8237_fields ir_freecount xfs_inobt_rec_incore 0 8237 NULL
++ocfs2_remove_extent_fndecl_8243_fields ocfs2_remove_extent fndecl 4-3 8243 NULL
++num_tasks_per_conn_iscsi_kwqe_init1_8249_fields num_tasks_per_conn iscsi_kwqe_init1 0 8249 NULL
++vmw_cursor_update_dmabuf_fndecl_8254_fields vmw_cursor_update_dmabuf fndecl 4-3 8254 NULL
++default_erasesize_fndecl_8255_fields default_erasesize fndecl 0 8255 NULL
++address_acpi_table_bert_8260_fields address acpi_table_bert 0 8260 NULL
++xfs_unmap_extent_fndecl_8261_fields xfs_unmap_extent fndecl 2-3 8261 NULL
++buf_size_ispstat_buffer_8262_fields buf_size ispstat_buffer 0 8262 NULL
++datablkcnt_capi_register_params_8263_fields datablkcnt capi_register_params 0 8263 NULL
++cow_file_range_inline_fndecl_8264_fields cow_file_range_inline fndecl 4-3 8264 NULL
++num_u3_ports_xhci_hcd_mtk_8272_fields num_u3_ports xhci_hcd_mtk 0 8272 NULL
++datablklen_capi_register_params_8275_fields datablklen capi_register_params 0 8275 NULL
++cdc_ncm_check_tx_max_fndecl_8278_fields cdc_ncm_check_tx_max fndecl 0-2 8278 NULL
++msg_len_rndis_message_8281_fields msg_len rndis_message 0 8281 NULL
++__sg_free_table_fndecl_8283_fields __sg_free_table fndecl 2 8283 NULL nohasharray
++expectedlen_drbg_testvec_8283_fields expectedlen drbg_testvec 0 8283 &__sg_free_table_fndecl_8283_fields
++tail_len_cfg80211_beacon_data_8293_fields tail_len cfg80211_beacon_data 0 8293 NULL nohasharray
++ixgbe_read_pci_cfg_word_fndecl_8293_fields ixgbe_read_pci_cfg_word fndecl 0 8293 &tail_len_cfg80211_beacon_data_8293_fields
++ns_blocks_per_segment_the_nilfs_8295_fields ns_blocks_per_segment the_nilfs 0 8295 NULL nohasharray
++f2fs_grab_bio_fndecl_8295_fields f2fs_grab_bio fndecl 2-3 8295 &ns_blocks_per_segment_the_nilfs_8295_fields
++c_data_len_pvr2_ioread_8300_fields c_data_len pvr2_ioread 0 8300 NULL nohasharray
++offset_nft_payload_set_8300_fields offset nft_payload_set 0 8300 &c_data_len_pvr2_ioread_8300_fields
++iova_mlx5_core_mkey_8304_fields iova mlx5_core_mkey 0 8304 NULL
++ath6kl_fwlog_read_fndecl_8310_fields ath6kl_fwlog_read fndecl 3 8310 NULL
++max_data_size_ircomm_tty_cb_8316_fields max_data_size ircomm_tty_cb 0 8316 NULL nohasharray
++group_trans_num_acl_subject_label_8316_fields group_trans_num acl_subject_label 0 8316 &max_data_size_ircomm_tty_cb_8316_fields
++depth_vim2m_fmt_8319_fields depth vim2m_fmt 0 8319 NULL nohasharray
++msg_len_drm_dp_sideband_msg_hdr_8319_fields msg_len drm_dp_sideband_msg_hdr 0 8319 &depth_vim2m_fmt_8319_fields
++sv_max_payload_svc_serv_8322_fields sv_max_payload svc_serv 0 8322 NULL
++vga_video_font_height_vardecl_vgacon_c_8324_fields vga_video_font_height vardecl_vgacon.c 0 8324 NULL
++xfs_bmap_longest_free_extent_fndecl_8327_fields xfs_bmap_longest_free_extent fndecl 2-0 8327 NULL
++vhci_urb_dequeue_fndecl_8333_fields vhci_urb_dequeue fndecl 3 8333 NULL
++sec_per_lun_nvm_dev_8335_fields sec_per_lun nvm_dev 0 8335 NULL
++disks_stripe_head_8349_fields disks stripe_head 0 8349 NULL
++req_pay_size_qlcnic_bc_trans_8353_fields req_pay_size qlcnic_bc_trans 0 8353 NULL nohasharray
++ch_do_scsi_fndecl_8353_fields ch_do_scsi fndecl 5 8353 &req_pay_size_qlcnic_bc_trans_8353_fields
++__nvm_submit_ppa_fndecl_8355_fields __nvm_submit_ppa fndecl 6 8355 NULL
++srp_map_sg_entry_fndecl_8356_fields srp_map_sg_entry fndecl 0 8356 NULL
++qat_rsa_set_n_fndecl_8373_fields qat_rsa_set_n fndecl 3 8373 NULL
++rx_size_i2400mu_8374_fields rx_size i2400mu 0 8374 NULL
++height_deinterlace_q_data_8376_fields height deinterlace_q_data 0 8376 NULL
++do_writepages_fndecl_8382_fields do_writepages fndecl 0 8382 NULL
++current_read_offset_scif_rb_8387_fields current_read_offset scif_rb 0 8387 NULL
++depth_tc_sfq_qopt_v1_8394_fields depth tc_sfq_qopt_v1 0 8394 NULL
++ceph_pagelist_append_fndecl_8397_fields ceph_pagelist_append fndecl 3 8397 NULL
++pkt_size_data_cmd_8407_fields pkt_size data_cmd 0 8407 NULL
++wNdpOutPayloadRemainder_usb_cdc_ncm_ntb_parameters_8415_fields wNdpOutPayloadRemainder usb_cdc_ncm_ntb_parameters 0 8415 NULL
++ring_blocks_vxge_hw_ring_config_8417_fields ring_blocks vxge_hw_ring_config 0 8417 NULL nohasharray
++get_power_state_size_pp_hwmgr_func_8417_fields get_power_state_size pp_hwmgr_func 0 8417 &ring_blocks_vxge_hw_ring_config_8417_fields
++numdu_nvme_get_log_page_command_8433_fields numdu nvme_get_log_page_command 0 8433 NULL
++block_dm_buffer_8440_fields block dm_buffer 0 8440 NULL
++offset_l2tp_session_8443_fields offset l2tp_session 0 8443 NULL
++frame_size_tlan_list_8446_fields frame_size tlan_list 0 8446 NULL
++numqueues_tun_struct_8450_fields numqueues tun_struct 0 8450 NULL
++ql_process_mac_split_rx_intr_fndecl_8452_fields ql_process_mac_split_rx_intr fndecl 4 8452 NULL nohasharray
++len_scifioctl_msg_8452_fields len scifioctl_msg 0 8452 &ql_process_mac_split_rx_intr_fndecl_8452_fields
++parport_pc_probe_port_fndecl_8454_fields parport_pc_probe_port fndecl 1 8454 NULL
++extra_bytes_asc_q_done_info_8460_fields extra_bytes asc_q_done_info 0 8460 NULL
++free_enic_rfs_flw_tbl_8469_fields free enic_rfs_flw_tbl 0 8469 NULL
++drm_gem_create_mmap_offset_size_fndecl_8471_fields drm_gem_create_mmap_offset_size fndecl 2 8471 NULL nohasharray
++shmem_truncate_range_fndecl_8471_fields shmem_truncate_range fndecl 2-3 8471 &drm_gem_create_mmap_offset_size_fndecl_8471_fields
++lbytes_tree_balance_8472_fields lbytes tree_balance 0 8472 NULL
++screen_size_fb_info_8480_fields screen_size fb_info 0 8480 NULL
++length_btrfs_bio_stripe_8481_fields length btrfs_bio_stripe 0 8481 NULL
++i915_gem_get_gtt_alignment_fndecl_8484_fields i915_gem_get_gtt_alignment fndecl 2 8484 NULL
++max_feed_count_dvb_usb_fe_adapter_8487_fields max_feed_count dvb_usb_fe_adapter 0 8487 NULL
++ecryptfs_send_message_locked_fndecl_8490_fields ecryptfs_send_message_locked fndecl 2 8490 NULL
++tid_iwl_compressed_ba_resp_8492_fields tid iwl_compressed_ba_resp 0 8492 NULL
++vmw_gmr2_bind_fndecl_8503_fields vmw_gmr2_bind fndecl 3 8503 NULL
++id_da903x_subdev_info_8507_fields id da903x_subdev_info 0 8507 NULL
++dy_fb_copyarea_8510_fields dy fb_copyarea 0 8510 NULL
++num_processors_vardecl_8512_fields num_processors vardecl 0 8512 NULL
++st_nci_hci_dm_direct_load_fndecl_8517_fields st_nci_hci_dm_direct_load fndecl 3 8517 NULL
++follows_u132_command_8527_fields follows u132_command 0 8527 NULL
++alloc_blksz_shift_hfsplus_sb_info_8530_fields alloc_blksz_shift hfsplus_sb_info 0 8530 NULL
++strnlen_user_fndecl_8532_fields strnlen_user fndecl 2 8532 NULL
++hfi1_seq_lseek_fndecl_8536_fields hfi1_seq_lseek fndecl 2 8536 NULL
++r5l_recovery_flush_one_stripe_fndecl_8538_fields r5l_recovery_flush_one_stripe fndecl 3 8538 NULL
++overlay_out_left_vivid_dev_8540_fields overlay_out_left vivid_dev 0 8540 NULL
++limit_kmem_cache_8541_fields limit kmem_cache 0 8541 NULL
++num_gfx_vgastate_8542_fields num_gfx vgastate 0 8542 NULL
++sysminor_aoedev_8549_fields sysminor aoedev 0 8549 NULL
++vfront_porch_videomode_8550_fields vfront_porch videomode 0 8550 NULL nohasharray
++memsize_vardecl_tridentfb_c_8550_fields memsize vardecl_tridentfb.c 0 8550 &vfront_porch_videomode_8550_fields
++mailbox_add_intel_sst_drv_8554_fields mailbox_add intel_sst_drv 0 8554 NULL
++caps_size_skl_specific_cfg_8559_fields caps_size skl_specific_cfg 0 8559 NULL
++len_vmxnet3_rx_buf_info_8575_fields len vmxnet3_rx_buf_info 0 8575 NULL nohasharray
++mlx5_ib_update_mtt_fndecl_8575_fields mlx5_ib_update_mtt fndecl 3-2 8575 &len_vmxnet3_rx_buf_info_8575_fields
++rmi_i2c_read_block_fndecl_8583_fields rmi_i2c_read_block fndecl 4 8583 NULL
++num_module_param_attrs_8584_fields num module_param_attrs 0 8584 NULL
++max_request_size_brcmf_sdio_dev_8586_fields max_request_size brcmf_sdio_dev 0 8586 NULL
++ddb_output_write_fndecl_8589_fields ddb_output_write fndecl 3 8589 NULL
++height_efifb_dmi_info_8596_fields height efifb_dmi_info 0 8596 NULL nohasharray
++gss_unwrap_kerberos_v2_fndecl_8596_fields gss_unwrap_kerberos_v2 fndecl 2 8596 &height_efifb_dmi_info_8596_fields
++size_hw_bank_8604_fields size hw_bank 0 8604 NULL
++uar_scratch_entry_sz_mthca_dev_lim_8606_fields uar_scratch_entry_sz mthca_dev_lim 0 8606 NULL
++seq_buf_commit_fndecl_8608_fields seq_buf_commit fndecl 2 8608 NULL
++irq_spi_device_8610_fields irq spi_device 0 8610 NULL
++transfer_size_fndecl_8623_fields transfer_size fndecl 1-2-0-3 8623 NULL
++block_size_cache_args_8648_fields block_size cache_args 0 8648 NULL
++e_value_offs_ext4_xattr_entry_8650_fields e_value_offs ext4_xattr_entry 0 8650 NULL
++xfs_bmap_worst_indlen_fndecl_8651_fields xfs_bmap_worst_indlen fndecl 0 8651 NULL
++truncate_size_ceph_mds_reply_inode_8652_fields truncate_size ceph_mds_reply_inode 0 8652 NULL nohasharray
++mr_len_rpcrdma_mr_seg_8652_fields mr_len rpcrdma_mr_seg 0 8652 &truncate_size_ceph_mds_reply_inode_8652_fields
++mtd_ooblayout_count_bytes_fndecl_8654_fields mtd_ooblayout_count_bytes fndecl 0 8654 NULL
++__alloc_percpu_gfp_fndecl_8664_fields __alloc_percpu_gfp fndecl 1 8664 NULL
++vbi_end_bttv_8666_fields vbi_end bttv 0 8666 NULL
++ext4_zero_range_fndecl_8667_fields ext4_zero_range fndecl 2-3 8667 NULL
++reserve_pfn_range_fndecl_8670_fields reserve_pfn_range fndecl 1-2 8670 NULL
++vb2_write_fndecl_8671_fields vb2_write fndecl 3 8671 NULL
++write_data_done_iscsi_cmd_8676_fields write_data_done iscsi_cmd 0 8676 NULL
++aml_offset_acpi_rsconvert_info_8678_fields aml_offset acpi_rsconvert_info 0 8678 NULL
++status_whc_urb_8685_fields status whc_urb 0 8685 NULL
++mtd_add_partition_fndecl_8688_fields mtd_add_partition fndecl 3 8688 NULL
++env_start_mm_struct_8690_fields env_start mm_struct 0 8690 NULL
++mpeglines_vardecl_cx231xx_417_c_8691_fields mpeglines vardecl_cx231xx-417.c 0 8691 NULL
++blk_mq_update_nr_requests_fndecl_8694_fields blk_mq_update_nr_requests fndecl 2 8694 NULL
++NumEraseUnits_erase_unit_header_t_8696_fields NumEraseUnits erase_unit_header_t 0 8696 NULL
++iblock_execute_rw_fndecl_8701_fields iblock_execute_rw fndecl 3 8701 NULL
++hpfs_prefetch_sectors_fndecl_8708_fields hpfs_prefetch_sectors fndecl 2 8708 NULL
++max_unmap_blocks_scsi_disk_8709_fields max_unmap_blocks scsi_disk 0 8709 NULL
++ieee80211_send_auth_fndecl_8716_fields ieee80211_send_auth fndecl 6 8716 NULL nohasharray
++adf7242_upload_firmware_fndecl_8716_fields adf7242_upload_firmware fndecl 3 8716 &ieee80211_send_auth_fndecl_8716_fields
++iram_end_intel_sst_drv_8725_fields iram_end intel_sst_drv 0 8725 NULL
++__xfs_trans_roll_fndecl_8728_fields __xfs_trans_roll fndecl 0 8728 NULL
++read_hdlc_status_fritz_adapter_8730_fields read_hdlc_status fritz_adapter 0 8730 NULL nohasharray
++disconnect_fndecl_8730_fields disconnect fndecl 4 8730 &read_hdlc_status_fritz_adapter_8730_fields nohasharray
++ip_set_elem_len_fndecl_8730_fields ip_set_elem_len fndecl 4-3 8730 &disconnect_fndecl_8730_fields
++iwl_mvm_sta_rx_agg_fndecl_8734_fields iwl_mvm_sta_rx_agg fndecl 3 8734 NULL
++ext_param_page_length_nand_onfi_params_8736_fields ext_param_page_length nand_onfi_params 0 8736 NULL
++size_kmem_cache_8740_fields size kmem_cache 0 8740 NULL
++fd_execute_unmap_fndecl_8745_fields fd_execute_unmap fndecl 3-2 8745 NULL
++perf_ustack_task_size_fndecl_8746_fields perf_ustack_task_size fndecl 0 8746 NULL
++_netlbl_catmap_getnode_fndecl_8754_fields _netlbl_catmap_getnode fndecl 2 8754 NULL
++my_skb_align_fndecl_8755_fields my_skb_align fndecl 2 8755 NULL
++snd_pcm_hw_param_set_fndecl_8761_fields snd_pcm_hw_param_set fndecl 4 8761 NULL
++length_acpi_nfit_system_address_8762_fields length acpi_nfit_system_address 0 8762 NULL
++max_swap_info_struct_8767_fields max swap_info_struct 0 8767 NULL
++max_pfn_radeon_vm_manager_8768_fields max_pfn radeon_vm_manager 0 8768 NULL
++amdtp_stream_set_parameters_fndecl_8769_fields amdtp_stream_set_parameters fndecl 3 8769 NULL
++data_dma_powermate_device_8783_fields data_dma powermate_device 0 8783 NULL
++rx_tr_cfv_info_8786_fields rx_tr cfv_info 0 8786 NULL nohasharray
++__pg_advance_sg_page_iter_8786_fields __pg_advance sg_page_iter 0 8786 &rx_tr_cfv_info_8786_fields
++nfs_setup_write_request_fndecl_8793_fields nfs_setup_write_request fndecl 3-4 8793 NULL
++lcd_vblank_len_atyfb_par_8796_fields lcd_vblank_len atyfb_par 0 8796 NULL
++logic_start_scrub_parity_8798_fields logic_start scrub_parity 0 8798 NULL
++dio_read_error_fndecl_8803_fields dio_read_error fndecl 5-6-4 8803 NULL
++write_ext_msg_fndecl_8804_fields write_ext_msg fndecl 3 8804 NULL
++amdgpu_gart_size_vardecl_8805_fields amdgpu_gart_size vardecl 0 8805 NULL
++info3_wmi_data_hdr_8808_fields info3 wmi_data_hdr 0 8808 NULL
++ieee80211_hdrlen_fndecl_8814_fields ieee80211_hdrlen fndecl 0 8814 NULL
++dma_alloc_pages_fndecl_8819_fields dma_alloc_pages fndecl 3 8819 NULL
++shmem_user_xattr_handler_set_fndecl_8823_fields shmem_user_xattr_handler_set fndecl 6 8823 NULL
++dma_buf_mmap_fndecl_8825_fields dma_buf_mmap fndecl 3 8825 NULL
++nfs4_xattr_get_nfs4_label_fndecl_8827_fields nfs4_xattr_get_nfs4_label fndecl 6 8827 NULL
++buflow_ring_desc_ex_8829_fields buflow ring_desc_ex 0 8829 NULL
++vsync_len_videomode_8830_fields vsync_len videomode 0 8830 NULL
++rel_pd_idx_sd_pd_idx_8842_fields rel_pd_idx sd_pd_idx 0 8842 NULL
++iscsi_tcp_segment_recv_fndecl_8845_fields iscsi_tcp_segment_recv fndecl 4-0 8845 NULL
++max_packet_size_ftdi_private_8847_fields max_packet_size ftdi_private 0 8847 NULL
++ibufsize_sisusb_usb_data_8851_fields ibufsize sisusb_usb_data 0 8851 NULL
++blkno2_xfs_da_args_8858_fields blkno2 xfs_da_args 0 8858 NULL
++alloc_extent_buffer_fndecl_8862_fields alloc_extent_buffer fndecl 2 8862 NULL
++__memblock_free_early_fndecl_8876_fields __memblock_free_early fndecl 2-1 8876 NULL
++fill_packet_fndecl_8877_fields fill_packet fndecl 5 8877 NULL nohasharray
++jfs_readpages_fndecl_8877_fields jfs_readpages fndecl 4 8877 &fill_packet_fndecl_8877_fields
++root_entry_uctp_fndecl_8878_fields root_entry_uctp fndecl 0 8878 NULL
++icsk_ext_hdr_len_inet_connection_sock_8885_fields icsk_ext_hdr_len inet_connection_sock 0 8885 NULL
++playback_frlog_rme32_8891_fields playback_frlog rme32 0 8891 NULL
++via_lock_rate_fndecl_8895_fields via_lock_rate fndecl 2 8895 NULL
++a_data_exec_8906_fields a_data exec 0 8906 NULL
++xfs_filestream_new_ag_fndecl_8916_fields xfs_filestream_new_ag fndecl 0 8916 NULL
++_xfs_buf_get_pages_fndecl_8920_fields _xfs_buf_get_pages fndecl 2 8920 NULL
++xfs_bmbt_update_fndecl_8922_fields xfs_bmbt_update fndecl 0 8922 NULL
++data_size_mdp_superblock_1_8925_fields data_size mdp_superblock_1 0 8925 NULL
++nbufread_gspca_dev_8934_fields nbufread gspca_dev 0 8934 NULL
++tree_root_btrfs_root_backup_8950_fields tree_root btrfs_root_backup 0 8950 NULL
++get_arg_page_fndecl_8953_fields get_arg_page fndecl 2 8953 NULL
++rx_metadata_offset_brcmf_msgbuf_8954_fields rx_metadata_offset brcmf_msgbuf 0 8954 NULL
++nfrags_pktgen_dev_8956_fields nfrags pktgen_dev 0 8956 NULL
++pkt_align_fndecl_8963_fields pkt_align fndecl 2-3 8963 NULL
++ncommunities_byt_pinctrl_soc_data_8965_fields ncommunities byt_pinctrl_soc_data 0 8965 NULL
++fromlen_nfs_symlinkargs_8967_fields fromlen nfs_symlinkargs 0 8967 NULL
++wm8776_field_set_fndecl_8970_fields wm8776_field_set fndecl 2 8970 NULL
++size_sg_pool_8971_fields size sg_pool 0 8971 NULL
++area_length_dmi_system_event_log_8974_fields area_length dmi_system_event_log 0 8974 NULL
++fanout_ubifs_info_8981_fields fanout ubifs_info 0 8981 NULL
++ocfs2_xattr_find_entry_fndecl_8983_fields ocfs2_xattr_find_entry fndecl 0 8983 NULL
++iomap_file_buffered_write_fndecl_8986_fields iomap_file_buffered_write fndecl 0 8986 NULL
++link_duplex_netxen_adapter_8988_fields link_duplex netxen_adapter 0 8988 NULL
++block_begin_dm_cell_key_8992_fields block_begin dm_cell_key 0 8992 NULL
++scatterwalk_map_and_copy_fndecl_9005_fields scatterwalk_map_and_copy fndecl 3 9005 NULL
++pcan_usb_decode_data_fndecl_9023_fields pcan_usb_decode_data fndecl 2 9023 NULL
++xen_del_extra_mem_fndecl_9024_fields xen_del_extra_mem fndecl 2-1 9024 NULL nohasharray
++cdrom_read_cd_fndecl_9024_fields cdrom_read_cd fndecl 5-4 9024 &xen_del_extra_mem_fndecl_9024_fields
++xfs_bmap_extsize_align_fndecl_9025_fields xfs_bmap_extsize_align fndecl 0 9025 NULL
++report_desc_size_mousevsc_dev_9027_fields report_desc_size mousevsc_dev 0 9027 NULL
++nextread_isowbuf_t_9028_fields nextread isowbuf_t 0 9028 NULL nohasharray
++offset_gro_remcsum_9028_fields offset gro_remcsum 0 9028 &nextread_isowbuf_t_9028_fields
++wDescriptorLength_hid_class_descriptor_9030_fields wDescriptorLength hid_class_descriptor 0 9030 NULL
++svc_create_pooled_fndecl_9043_fields svc_create_pooled fndecl 2 9043 NULL
++raid_disks_geom_9044_fields raid_disks geom 0 9044 NULL
++ath6kl_wmi_delete_pstream_cmd_fndecl_9048_fields ath6kl_wmi_delete_pstream_cmd fndecl 2 9048 NULL
++_drbd_bm_find_next_fndecl_9063_fields _drbd_bm_find_next fndecl 2-0 9063 NULL nohasharray
++keys_bset_9063_fields keys bset 0 9063 &_drbd_bm_find_next_fndecl_9063_fields nohasharray
++tx_buf_sz_iadev_priv_9063_fields tx_buf_sz iadev_priv 0 9063 &keys_bset_9063_fields nohasharray
++send_mpa_reply_fndecl_9063_fields send_mpa_reply fndecl 3 9063 &tx_buf_sz_iadev_priv_9063_fields
++buflen_compat_xfs_fsop_attrlist_handlereq_9071_fields buflen compat_xfs_fsop_attrlist_handlereq 0 9071 NULL
++current_sg_offset_msb_data_9075_fields current_sg_offset msb_data 0 9075 NULL nohasharray
++nr_inport_coresight_platform_data_9075_fields nr_inport coresight_platform_data 0 9075 &current_sg_offset_msb_data_9075_fields
++nilfs_dat_read_fndecl_9076_fields nilfs_dat_read fndecl 2 9076 NULL
++advertised_mtu_tipc_link_9077_fields advertised_mtu tipc_link 0 9077 NULL
++out_int_pipe_usbtest_dev_9078_fields out_int_pipe usbtest_dev 0 9078 NULL
++start_brk_mm_struct_9085_fields start_brk mm_struct 0 9085 NULL
++optlen_rdma_ucm_set_option_9087_fields optlen rdma_ucm_set_option 0 9087 NULL
++event_count_Fsm_9088_fields event_count Fsm 0 9088 NULL
++width_fb_fillrect_9090_fields width fb_fillrect 0 9090 NULL
++vmci_qp_alloc_fndecl_9094_fields vmci_qp_alloc fndecl 5-3 9094 NULL
++limit_parsed_partitions_9099_fields limit parsed_partitions 0 9099 NULL
++logical_id_i40e_aqc_list_capabilities_element_resp_9102_fields logical_id i40e_aqc_list_capabilities_element_resp 0 9102 NULL
++keylen_ieee80211_key_conf_9103_fields keylen ieee80211_key_conf 0 9103 NULL
++s_blocks_count_lo_ext4_super_block_9106_fields s_blocks_count_lo ext4_super_block 0 9106 NULL nohasharray
++fragment_size_cfrfml_9106_fields fragment_size cfrfml 0 9106 &s_blocks_count_lo_ext4_super_block_9106_fields
++x38_channel_num_vardecl_x38_edac_c_9109_fields x38_channel_num vardecl_x38_edac.c 0 9109 NULL
++qla4_82xx_pci_mem_write_2M_fndecl_9117_fields qla4_82xx_pci_mem_write_2M fndecl 2 9117 NULL
++numEntries__ATOM_PPLIB_VCE_Clock_Voltage_Limit_Table_9118_fields numEntries _ATOM_PPLIB_VCE_Clock_Voltage_Limit_Table 0 9118 NULL
++break_ksm_fndecl_9124_fields break_ksm fndecl 2 9124 NULL
++skl_substream_alloc_pages_fndecl_9125_fields skl_substream_alloc_pages fndecl 3 9125 NULL
++xfs_alloc_put_freelist_fndecl_9126_fields xfs_alloc_put_freelist fndecl 0 9126 NULL
++compat_readv_fndecl_9127_fields compat_readv fndecl 3 9127 NULL
++neigh_priv_len_net_device_9133_fields neigh_priv_len net_device 0 9133 NULL
++read_buffer_length_adu_device_9140_fields read_buffer_length adu_device 0 9140 NULL
++size_ip6t_replace_9148_fields size ip6t_replace 0 9148 NULL
++cifs_uncached_read_into_pages_fndecl_9150_fields cifs_uncached_read_into_pages fndecl 3 9150 NULL
++ext_capab_len_station_parameters_9152_fields ext_capab_len station_parameters 0 9152 NULL
++fill_readbuf_fndecl_9155_fields fill_readbuf fndecl 3 9155 NULL
++percpu_max_size_percpu_ida_9157_fields percpu_max_size percpu_ida 0 9157 NULL
++depth_saa7134_format_9167_fields depth saa7134_format 0 9167 NULL
++ib_qib_max_sges_vardecl_9168_fields ib_qib_max_sges vardecl 0 9168 NULL
++alloc_queue_pairs_i40e_vsi_9174_fields alloc_queue_pairs i40e_vsi 0 9174 NULL
++offset_hv_multipage_buffer_9175_fields offset hv_multipage_buffer 0 9175 NULL
++__ext4_handle_dirty_super_fndecl_9177_fields __ext4_handle_dirty_super fndecl 0 9177 NULL nohasharray
++hid_input_report_fndecl_9177_fields hid_input_report fndecl 4 9177 &__ext4_handle_dirty_super_fndecl_9177_fields
++b_size_buffer_head_9178_fields b_size buffer_head 0 9178 NULL
++max_vfio_pci_fill_info_9182_fields max vfio_pci_fill_info 0 9182 NULL
++chunk_sectors_queue_limits_9183_fields chunk_sectors queue_limits 0 9183 NULL
++form_cm_frame_fndecl_9184_fields form_cm_frame fndecl 4-6 9184 NULL
++requested_headroom_veth_priv_9187_fields requested_headroom veth_priv 0 9187 NULL
++device_sis_chipset_9193_fields device sis_chipset 0 9193 NULL
++stb0899_write_regs_fndecl_9197_fields stb0899_write_regs fndecl 4 9197 NULL
++buflen_xfs_fsop_attrlist_handlereq_9199_fields buflen xfs_fsop_attrlist_handlereq 0 9199 NULL
++efx_rx_packet_fndecl_9200_fields efx_rx_packet fndecl 4-3 9200 NULL
++byte_per_page_nand_onfi_params_9202_fields byte_per_page nand_onfi_params 0 9202 NULL
++max_pages_ib_fmr_attr_9206_fields max_pages ib_fmr_attr 0 9206 NULL nohasharray
++tx_max_datagrams_cdc_ncm_ctx_9206_fields tx_max_datagrams cdc_ncm_ctx 0 9206 &max_pages_ib_fmr_attr_9206_fields
++hw_token_ehci_qh_hw_9208_fields hw_token ehci_qh_hw 0 9208 NULL
++mesh_rx_path_sel_frame_fndecl_9210_fields mesh_rx_path_sel_frame fndecl 3 9210 NULL
++sae_data_len_cfg80211_auth_request_9212_fields sae_data_len cfg80211_auth_request 0 9212 NULL nohasharray
++num_pin_hdac_hdmi_priv_9212_fields num_pin hdac_hdmi_priv 0 9212 &sae_data_len_cfg80211_auth_request_9212_fields
++num_msix_vectors_vf_i40e_hw_capabilities_9215_fields num_msix_vectors_vf i40e_hw_capabilities 0 9215 NULL
++zram_meta_alloc_fndecl_9221_fields zram_meta_alloc fndecl 2 9221 NULL
++pcicfg_size_sst_pdata_9222_fields pcicfg_size sst_pdata 0 9222 NULL
++ext4_create_inline_data_fndecl_9231_fields ext4_create_inline_data fndecl 3 9231 NULL
++supported_rates_len_station_parameters_9235_fields supported_rates_len station_parameters 0 9235 NULL
++i2400mu_rx_size_grow_fndecl_9246_fields i2400mu_rx_size_grow fndecl 0 9246 NULL
++phys_pmd_init_fndecl_9251_fields phys_pmd_init fndecl 0-2-3 9251 NULL nohasharray
++vram_start_vml_info_9251_fields vram_start vml_info 0 9251 &phys_pmd_init_fndecl_9251_fields
++sk_priority_sock_9258_fields sk_priority sock 0 9258 NULL
++nsid_nvmet_ns_9259_fields nsid nvmet_ns 0 9259 NULL
++buffer_size_snd_rawmidi_runtime_9267_fields buffer_size snd_rawmidi_runtime 0 9267 NULL
++netlbl_bitmap_walk_fndecl_9270_fields netlbl_bitmap_walk fndecl 0-3 9270 NULL
++wl1251_sdio_write_fndecl_9274_fields wl1251_sdio_write fndecl 4 9274 NULL
++ResponseDataLength__MSG_SMP_PASSTHROUGH_REPLY_9278_fields ResponseDataLength _MSG_SMP_PASSTHROUGH_REPLY 0 9278 NULL
++nr_pages_start_info_9283_fields nr_pages start_info 0 9283 NULL nohasharray
++regmap_encx24j600_write_fndecl_9283_fields regmap_encx24j600_write fndecl 3 9283 &nr_pages_start_info_9283_fields
++offset_ivtv_dma_page_info_9286_fields offset ivtv_dma_page_info 0 9286 NULL
++rx_cmd_ep_usb_card_rec_9290_fields rx_cmd_ep usb_card_rec 0 9290 NULL nohasharray
++get_ramsize_brcmf_bus_ops_9290_fields get_ramsize brcmf_bus_ops 0 9290 &rx_cmd_ep_usb_card_rec_9290_fields nohasharray
++format_reserved_ms_boot_header_9290_fields format_reserved ms_boot_header 0 9290 &get_ramsize_brcmf_bus_ops_9290_fields
++cxd2820r_wr_regs_fndecl_9307_fields cxd2820r_wr_regs fndecl 4 9307 NULL
++sys_splice_fndecl_9308_fields sys_splice fndecl 5 9308 NULL
++fcoe_conn_context_id_fcoe_kcqe_9316_fields fcoe_conn_context_id fcoe_kcqe 0 9316 NULL
++find_mergeable_fndecl_9318_fields find_mergeable fndecl 2 9318 NULL
++in_packet_size_pcm_runtime_9321_fields in_packet_size pcm_runtime 0 9321 NULL
++pages_in_io_dio_submit_9326_fields pages_in_io dio_submit 0 9326 NULL
++extLength_long_ad_9328_fields extLength long_ad 0 9328 NULL
++ttm_bo_ioremap_fndecl_9337_fields ttm_bo_ioremap fndecl 3-2 9337 NULL
++htree_dirblock_to_tree_fndecl_9339_fields htree_dirblock_to_tree fndecl 3 9339 NULL
++di_size_xfs_icdinode_9350_fields di_size xfs_icdinode 0 9350 NULL
++tse_init_rx_buffer_fndecl_9354_fields tse_init_rx_buffer fndecl 3 9354 NULL
++length_property_entry_9357_fields length property_entry 0 9357 NULL nohasharray
++offset_ore_io_state_9357_fields offset ore_io_state 0 9357 &length_property_entry_9357_fields
++stv6110x_write_regs_fndecl_9359_fields stv6110x_write_regs fndecl 4 9359 NULL
++qib_qp_rcv_fndecl_9365_fields qib_qp_rcv fndecl 5 9365 NULL
++compat_sys_get_mempolicy_fndecl_9366_fields compat_sys_get_mempolicy fndecl 4 9366 NULL
++mt2060_writeregs_fndecl_9371_fields mt2060_writeregs fndecl 3 9371 NULL
++le_adv_data_len_hci_conn_9377_fields le_adv_data_len hci_conn 0 9377 NULL
++mss_clamp_tcp_options_received_9378_fields mss_clamp tcp_options_received 0 9378 NULL
++fix_priv_head_fndecl_9385_fields fix_priv_head fndecl 2 9385 NULL
++nr_uart_driver_9391_fields nr uart_driver 0 9391 NULL
++dr_pre_altera_jtag_9393_fields dr_pre altera_jtag 0 9393 NULL
++ubifs_tnc_add_nm_fndecl_9397_fields ubifs_tnc_add_nm fndecl 5-4 9397 NULL
++sr_bg_blkno_ocfs2_suballoc_result_9401_fields sr_bg_blkno ocfs2_suballoc_result 0 9401 NULL
++caif_seqpkt_recvmsg_fndecl_9402_fields caif_seqpkt_recvmsg fndecl 3 9402 NULL
++sht3x_read_from_command_fndecl_9403_fields sht3x_read_from_command fndecl 5 9403 NULL
++exclude_mem_range_fndecl_9404_fields exclude_mem_range fndecl 2-3 9404 NULL
++blk_queue_physical_block_size_fndecl_9410_fields blk_queue_physical_block_size fndecl 2 9410 NULL nohasharray
++goodix_get_cfg_len_fndecl_9410_fields goodix_get_cfg_len fndecl 0 9410 &blk_queue_physical_block_size_fndecl_9410_fields
++return_size_drm_amdgpu_info_9414_fields return_size drm_amdgpu_info 0 9414 NULL
++acpi_ex_system_memory_space_handler_fndecl_9419_fields acpi_ex_system_memory_space_handler fndecl 2 9419 NULL
++r592_read_fifo_pio_fndecl_9421_fields r592_read_fifo_pio fndecl 3 9421 NULL
++dlen_garp_attr_9422_fields dlen garp_attr 0 9422 NULL
++bcma_hcd_create_pdev_fndecl_9430_fields bcma_hcd_create_pdev fndecl 3-5 9430 NULL
++ext4_restore_inline_data_fndecl_9436_fields ext4_restore_inline_data fndecl 5 9436 NULL
++height_stk1160_9446_fields height stk1160 0 9446 NULL
++mtdchar_readoob_fndecl_9459_fields mtdchar_readoob fndecl 3 9459 NULL
++si21_writeregs_fndecl_9460_fields si21_writeregs fndecl 4 9460 NULL
++async_wrap_skb_fndecl_9465_fields async_wrap_skb fndecl 0 9465 NULL
++height_cobalt_stream_9490_fields height cobalt_stream 0 9490 NULL
++bpp_mcam_format_struct_9503_fields bpp mcam_format_struct 0 9503 NULL
++mlxsw_emad_trans_finish_fndecl_9506_fields mlxsw_emad_trans_finish fndecl 2 9506 NULL
++s_clustersize_bits_ocfs2_super_block_9516_fields s_clustersize_bits ocfs2_super_block 0 9516 NULL nohasharray
++zero_disk_area_fndecl_9516_fields zero_disk_area fndecl 2 9516 &s_clustersize_bits_ocfs2_super_block_9516_fields
++cap_width_usbtv_norm_params_9538_fields cap_width usbtv_norm_params 0 9538 NULL
++nilfs_mdt_forget_block_fndecl_9543_fields nilfs_mdt_forget_block fndecl 2 9543 NULL
++cnt_i40iw_hmc_obj_info_9546_fields cnt i40iw_hmc_obj_info 0 9546 NULL
++__bio_alloc_fndecl_9552_fields __bio_alloc fndecl 2-3 9552 NULL
++rt2x00queue_insert_l2pad_fndecl_9553_fields rt2x00queue_insert_l2pad fndecl 2 9553 NULL
++display_byte_stride_vivid_dev_9554_fields display_byte_stride vivid_dev 0 9554 NULL
++rx_skb_reserve_vardecl_he_c_9559_fields rx_skb_reserve vardecl_he.c 0 9559 NULL
++glocont_endpoint_keyspan_device_details_9560_fields glocont_endpoint keyspan_device_details 0 9560 NULL
++p9_client_statsize_fndecl_9568_fields p9_client_statsize fndecl 0 9568 NULL
++page_order_cas_9572_fields page_order cas 0 9572 NULL
++width_drm_mode_create_dumb_9575_fields width drm_mode_create_dumb 0 9575 NULL
++mpage_add_bh_to_extent_fndecl_9577_fields mpage_add_bh_to_extent fndecl 2 9577 NULL
++mode_buf_len_udl_device_9578_fields mode_buf_len udl_device 0 9578 NULL
++cfg80211_rx_mgmt_fndecl_9583_fields cfg80211_rx_mgmt fndecl 5 9583 NULL
++crtc_vblank_start_drm_display_mode_9587_fields crtc_vblank_start drm_display_mode 0 9587 NULL
++per_vf_tids_qed_tm_iids_9589_fields per_vf_tids qed_tm_iids 0 9589 NULL
++tool_setup_mw_fndecl_9597_fields tool_setup_mw fndecl 3 9597 NULL
++xlog_grant_head_wait_fndecl_9598_fields xlog_grant_head_wait fndecl 0 9598 NULL
++ileb_len_ubifs_info_9607_fields ileb_len ubifs_info 0 9607 NULL
++free_bg_ocfs2_cached_block_free_9619_fields free_bg ocfs2_cached_block_free 0 9619 NULL
++geneve_change_mtu_fndecl_9620_fields geneve_change_mtu fndecl 2 9620 NULL
++size_scif_rb_9622_fields size scif_rb 0 9622 NULL
++hpfs_ea_write_fndecl_9626_fields hpfs_ea_write fndecl 5-4-2 9626 NULL
++cur_can_queue_megasas_instance_9627_fields cur_can_queue megasas_instance 0 9627 NULL
++num_fcxps_vardecl_9630_fields num_fcxps vardecl 0 9630 NULL
++ubifs_wbuf_seek_nolock_fndecl_9634_fields ubifs_wbuf_seek_nolock fndecl 3 9634 NULL
++fc_host_post_vendor_event_fndecl_9636_fields fc_host_post_vendor_event fndecl 3 9636 NULL
++copy_to_iter_fndecl_9638_fields copy_to_iter fndecl 2 9638 NULL
++fd_do_prot_unmap_fndecl_9639_fields fd_do_prot_unmap fndecl 3 9639 NULL
++num_nodes_hdac_device_9647_fields num_nodes hdac_device 0 9647 NULL
++dict_size_lzma_header_9654_fields dict_size lzma_header 0 9654 NULL nohasharray
++height_drm_vmw_size_9654_fields height drm_vmw_size 0 9654 &dict_size_lzma_header_9654_fields
++x509_akid_note_name_fndecl_9656_fields x509_akid_note_name fndecl 5 9656 NULL
++wm8400_register_regulator_fndecl_9660_fields wm8400_register_regulator fndecl 2 9660 NULL
++hugetlb_cow_fndecl_9665_fields hugetlb_cow fndecl 3 9665 NULL
++hr_slots_per_page_o2hb_region_9668_fields hr_slots_per_page o2hb_region 0 9668 NULL
++PCI_Address_DAC960_Controller_9669_fields PCI_Address DAC960_Controller 0 9669 NULL
++xen_blkif_max_ring_order_vardecl_xen_blkfront_c_9681_fields xen_blkif_max_ring_order vardecl_xen-blkfront.c 0 9681 NULL
++length_hpfs_dirent_9682_fields length hpfs_dirent 0 9682 NULL
++scrub_pages_for_parity_fndecl_9684_fields scrub_pages_for_parity fndecl 3-2-4 9684 NULL
++osd_req_decode_sense_full_fndecl_9685_fields osd_req_decode_sense_full fndecl 0 9685 NULL
++s3fwrn5_fw_prep_msg_fndecl_9686_fields s3fwrn5_fw_prep_msg fndecl 6 9686 NULL
++ba_param_set_wmi_rcp_addba_req_event_9687_fields ba_param_set wmi_rcp_addba_req_event 0 9687 NULL
++xresstep_svga_fb_format_9690_fields xresstep svga_fb_format 0 9690 NULL
++max_num_pmkids_wiphy_9691_fields max_num_pmkids wiphy 0 9691 NULL
++fill_from_dev_buffer_fndecl_9695_fields fill_from_dev_buffer fndecl 3 9695 NULL
++adp5589_build_gpiomap_fndecl_9697_fields adp5589_build_gpiomap fndecl 0 9697 NULL
++phys_addr_ntb_transport_mw_9704_fields phys_addr ntb_transport_mw 0 9704 NULL
++payload_len_cfg80211_wowlan_tcp_9706_fields payload_len cfg80211_wowlan_tcp 0 9706 NULL
++sr_write_async_fndecl_9707_fields sr_write_async fndecl 3 9707 NULL
++xprt_rdma_max_inline_write_vardecl_transport_c_9715_fields xprt_rdma_max_inline_write vardecl_transport.c 0 9715 NULL
++n_functions_gcov_info_9722_fields n_functions gcov_info 0 9722 NULL nohasharray
++page_size_dataflash_9722_fields page_size dataflash 0 9722 &n_functions_gcov_info_9722_fields
++setup_port_fndecl_9724_fields setup_port fndecl 5-4 9724 NULL nohasharray
++start_bidx_of_node_fndecl_9724_fields start_bidx_of_node fndecl 0-1 9724 &setup_port_fndecl_9724_fields nohasharray
++ieee80211_build_preq_ies_band_fndecl_9724_fields ieee80211_build_preq_ies_band fndecl 0 9724 &start_bidx_of_node_fndecl_9724_fields
++mask_myri10ge_tx_buf_9725_fields mask myri10ge_tx_buf 0 9725 NULL
++midi_out_ports_snd_efw_9740_fields midi_out_ports snd_efw 0 9740 NULL
++sg_cnt_nvmet_req_9742_fields sg_cnt nvmet_req 0 9742 NULL
++key_sz_qat_rsa_ctx_9743_fields key_sz qat_rsa_ctx 0 9743 NULL
++__alloc_bootmem_fndecl_9753_fields __alloc_bootmem fndecl 2-3 9753 NULL
++hbuf_free_slots_mei_hw_ops_9760_fields hbuf_free_slots mei_hw_ops 0 9760 NULL
++hidraw_write_fndecl_9763_fields hidraw_write fndecl 3 9763 NULL
++index_sdio_uart_port_9769_fields index sdio_uart_port 0 9769 NULL
++stat_ethoc_bd_9775_fields stat ethoc_bd 0 9775 NULL
++vmlfb_alloc_vram_area_fndecl_9776_fields vmlfb_alloc_vram_area fndecl 2 9776 NULL
++ctl_dev_e752x_dev_info_9777_fields ctl_dev e752x_dev_info 0 9777 NULL
++encap_hlen_ip_tunnel_9779_fields encap_hlen ip_tunnel 0 9779 NULL
++valuelen_xfs_da_args_9786_fields valuelen xfs_da_args 0 9786 NULL
++irda_recvmsg_dgram_fndecl_9788_fields irda_recvmsg_dgram fndecl 3 9788 NULL
++vci_atm_vcc_9797_fields vci atm_vcc 0 9797 NULL
++aper_base_agp_kern_info_9798_fields aper_base agp_kern_info 0 9798 NULL
++irlan_insert_array_param_fndecl_9800_fields irlan_insert_array_param fndecl 4 9800 NULL
++rq_callsize_rpc_rqst_9803_fields rq_callsize rpc_rqst 0 9803 NULL
++osst_write_fndecl_9806_fields osst_write fndecl 3 9806 NULL
++in_size_ViceIoctl_9808_fields in_size ViceIoctl 0 9808 NULL
++num_private_args_iw_handler_def_9810_fields num_private_args iw_handler_def 0 9810 NULL
++update_backref_node_fndecl_9811_fields update_backref_node fndecl 3 9811 NULL
++pathmtu_sctp_association_9815_fields pathmtu sctp_association 0 9815 NULL
++brcmf_proto_bcdc_hdrpush_fndecl_9818_fields brcmf_proto_bcdc_hdrpush fndecl 3 9818 NULL
++ppm_find_unused_entries_fndecl_9823_fields ppm_find_unused_entries fndecl 0 9823 NULL
++pref_erase_mmc_card_9824_fields pref_erase mmc_card 0 9824 NULL
++flags_rtl8187se_rx_desc_9826_fields flags rtl8187se_rx_desc 0 9826 NULL
++section_count_f2fs_super_block_9832_fields section_count f2fs_super_block 0 9832 NULL
++sectors_r10bio_9834_fields sectors r10bio 0 9834 NULL
++msc_buffer_contig_alloc_fndecl_9835_fields msc_buffer_contig_alloc fndecl 2 9835 NULL
++msg_length_sms_msg_hdr_9842_fields msg_length sms_msg_hdr 0 9842 NULL
++complete_read_super_fndecl_9844_fields complete_read_super fndecl 3 9844 NULL
++sge_length_rvt_sge_9845_fields sge_length rvt_sge 0 9845 NULL
++pg_count_agp_allocate_9853_fields pg_count agp_allocate 0 9853 NULL
++data_size_virtio_gpu_vbuffer_9856_fields data_size virtio_gpu_vbuffer 0 9856 NULL
++vlan_id_rlb_client_info_9858_fields vlan_id rlb_client_info 0 9858 NULL
++videobuf_read_one_fndecl_9862_fields videobuf_read_one fndecl 3 9862 NULL
++arvo_sysfs_read_fndecl_9874_fields arvo_sysfs_read fndecl 6 9874 NULL
++xfs_seek_hole_data_fndecl_9883_fields xfs_seek_hole_data fndecl 2 9883 NULL
++v4l_nbufs_vardecl_9889_fields v4l_nbufs vardecl 0 9889 NULL
++ovfx2_pkt_scan_fndecl_9901_fields ovfx2_pkt_scan fndecl 3 9901 NULL nohasharray
++begin_entry_alloc_9901_fields begin entry_alloc 0 9901 &ovfx2_pkt_scan_fndecl_9901_fields
++nkeys_tc_u32_sel_9905_fields nkeys tc_u32_sel 0 9905 NULL
++prism54_wpa_bss_ie_add_fndecl_9910_fields prism54_wpa_bss_ie_add fndecl 4 9910 NULL
++stat_ddb_output_9913_fields stat ddb_output 0 9913 NULL
++ep_in_ksdazzle_cb_9917_fields ep_in ksdazzle_cb 0 9917 NULL
++__ceph_do_getattr_fndecl_9918_fields __ceph_do_getattr fndecl 0 9918 NULL
++audit_log_n_string_fndecl_9930_fields audit_log_n_string fndecl 3 9930 NULL
++num_wsm_set_tx_rate_retry_policy_9933_fields num wsm_set_tx_rate_retry_policy 0 9933 NULL
++_usb_writeN_sync_fndecl_9937_fields _usb_writeN_sync fndecl 4 9937 NULL
++r_rcv_len_rvt_qp_9940_fields r_rcv_len rvt_qp 0 9940 NULL
++num_chan_pl330_config_9943_fields num_chan pl330_config 0 9943 NULL
++buffer_len_bnad_debug_info_9948_fields buffer_len bnad_debug_info 0 9948 NULL
++error_dm_crypt_io_9949_fields error dm_crypt_io 0 9949 NULL
++ath6kl_wmi_send_probe_response_cmd_fndecl_9955_fields ath6kl_wmi_send_probe_response_cmd fndecl 6-2 9955 NULL
++utf16s_to_utf8s_fndecl_9956_fields utf16s_to_utf8s fndecl 0 9956 NULL
++build_request_ceph_auth_client_ops_9960_fields build_request ceph_auth_client_ops 0 9960 NULL
++xfs_difree_inobt_fndecl_9961_fields xfs_difree_inobt fndecl 4 9961 NULL
++rt2x00dev_extra_tx_headroom_fndecl_9971_fields rt2x00dev_extra_tx_headroom fndecl 0 9971 NULL
++reada_find_extent_fndecl_9973_fields reada_find_extent fndecl 2 9973 NULL
++count_tun_filter_9984_fields count tun_filter 0 9984 NULL
++start_extent_buffer_9986_fields start extent_buffer 0 9986 NULL
++map_sg_ib_dma_mapping_ops_9988_fields map_sg ib_dma_mapping_ops 0 9988 NULL
++hugepage_add_anon_rmap_fndecl_9989_fields hugepage_add_anon_rmap fndecl 3 9989 NULL
++dm_rh_region_to_sector_fndecl_9992_fields dm_rh_region_to_sector fndecl 0-2 9992 NULL
++cyy_readb_fndecl_10011_fields cyy_readb fndecl 0 10011 NULL
++setifbcnt_fndecl_10012_fields setifbcnt fndecl 3 10012 NULL
++_create_sg_bios_fndecl_10015_fields _create_sg_bios fndecl 4 10015 NULL
++nouveau_sgdma_create_ttm_fndecl_10022_fields nouveau_sgdma_create_ttm fndecl 2 10022 NULL
++skb_append_datato_frags_fndecl_10028_fields skb_append_datato_frags fndecl 5 10028 NULL
++add_dataflash_otp_fndecl_10031_fields add_dataflash_otp fndecl 4-3 10031 NULL
++__cookie_v6_check_fndecl_10035_fields __cookie_v6_check fndecl 0 10035 NULL
++mwifiex_send_tdls_action_frame_fndecl_10044_fields mwifiex_send_tdls_action_frame fndecl 7 10044 NULL
++sisusbcon_scroll_fndecl_10048_fields sisusbcon_scroll fndecl 5-2-3 10048 NULL
++ath6kl_wmi_powermode_cmd_fndecl_10052_fields ath6kl_wmi_powermode_cmd fndecl 2 10052 NULL
++musb_urb_dequeue_fndecl_10056_fields musb_urb_dequeue fndecl 3 10056 NULL
++dm_bufio_prefetch_fndecl_10057_fields dm_bufio_prefetch fndecl 2 10057 NULL
++bio_detain_range_fndecl_10064_fields bio_detain_range fndecl 2-3 10064 NULL
++rx_buf_sz_sis190_private_10068_fields rx_buf_sz sis190_private 0 10068 NULL
++max_pages_fuse_req_10069_fields max_pages fuse_req 0 10069 NULL
++num_channels_cap11xx_hw_model_10072_fields num_channels cap11xx_hw_model 0 10072 NULL
++sg_size_octnic_gather_10076_fields sg_size octnic_gather 0 10076 NULL
++ocfs2_refcount_xattr_tree_rec_fndecl_10077_fields ocfs2_refcount_xattr_tree_rec fndecl 3 10077 NULL
++read_csr_fndecl_10078_fields read_csr fndecl 0 10078 NULL
++nbr_fingers_rmi_2d_sensor_10079_fields nbr_fingers rmi_2d_sensor 0 10079 NULL
++mlxsw_emad_process_status_fndecl_10083_fields mlxsw_emad_process_status fndecl 0 10083 NULL
++height_virtio_gpu_rect_10085_fields height virtio_gpu_rect 0 10085 NULL
++ssb_admatch_base_fndecl_10086_fields ssb_admatch_base fndecl 0-1 10086 NULL
++__send_changing_extent_only_fndecl_10090_fields __send_changing_extent_only fndecl 0 10090 NULL
++pskb_extract_fndecl_10092_fields pskb_extract fndecl 2-3 10092 NULL nohasharray
++pinctrl_utils_add_map_configs_fndecl_10092_fields pinctrl_utils_add_map_configs fndecl 7 10092 &pskb_extract_fndecl_10092_fields
++em28xx_init_usb_xfer_fndecl_10106_fields em28xx_init_usb_xfer fndecl 5-6 10106 NULL
++req_sz__MPT_ADAPTER_10113_fields req_sz _MPT_ADAPTER 0 10113 NULL
++total_len_extlog_l1_head_10117_fields total_len extlog_l1_head 0 10117 NULL nohasharray
++uvc_video_encode_data_fndecl_10117_fields uvc_video_encode_data fndecl 0-4 10117 &total_len_extlog_l1_head_10117_fields
++pxa2xx_spi_get_port_id_fndecl_10119_fields pxa2xx_spi_get_port_id fndecl 0 10119 NULL
++len_pda_entry_10121_fields len pda_entry 0 10121 NULL
++data_dma_usbtouch_usb_10124_fields data_dma usbtouch_usb 0 10124 NULL nohasharray
++MaxBlocksPerCommand_DAC960_Controller_10124_fields MaxBlocksPerCommand DAC960_Controller 0 10124 &data_dma_usbtouch_usb_10124_fields
++parent_overlap_rbd_device_10127_fields parent_overlap rbd_device 0 10127 NULL
++max_bu_buf_len_ubifs_info_10130_fields max_bu_buf_len ubifs_info 0 10130 NULL
++ieee80211_rx_mgmt_auth_fndecl_10133_fields ieee80211_rx_mgmt_auth fndecl 3 10133 NULL
++qlcnic_83xx_diag_alloc_res_fndecl_10139_fields qlcnic_83xx_diag_alloc_res fndecl 3 10139 NULL
++xprt_rdma_allocate_fndecl_10143_fields xprt_rdma_allocate fndecl 2 10143 NULL
++ns_cno_the_nilfs_10144_fields ns_cno the_nilfs 0 10144 NULL
++mcs7830_set_reg_fndecl_10150_fields mcs7830_set_reg fndecl 3 10150 NULL
++udp_tun_rx_dst_fndecl_10154_fields udp_tun_rx_dst fndecl 5 10154 NULL
++error_block_length_acpi_hest_generic_10170_fields error_block_length acpi_hest_generic 0 10170 NULL
++cluster_size_msdos_sb_info_10172_fields cluster_size msdos_sb_info 0 10172 NULL
++s_inopf_ufs_sb_private_info_10174_fields s_inopf ufs_sb_private_info 0 10174 NULL nohasharray
++count_i40iw_hmc_del_obj_info_10174_fields count i40iw_hmc_del_obj_info 0 10174 &s_inopf_ufs_sb_private_info_10174_fields nohasharray
++substream_count_snd_rawmidi_str_10174_fields substream_count snd_rawmidi_str 0 10174 &count_i40iw_hmc_del_obj_info_10174_fields
++acpi_sci_ioapic_setup_fndecl_10182_fields acpi_sci_ioapic_setup fndecl 4 10182 NULL
++xfrm6_init_path_fndecl_10187_fields xfrm6_init_path fndecl 3 10187 NULL
++size_erst_erange_10188_fields size erst_erange 0 10188 NULL
++PagesPerBlock_ms_lib_ctrl_10191_fields PagesPerBlock ms_lib_ctrl 0 10191 NULL
++tx_buf_size_mwifiex_adapter_10198_fields tx_buf_size mwifiex_adapter 0 10198 NULL
++valid_super_block_f2fs_sb_info_10206_fields valid_super_block f2fs_sb_info 0 10206 NULL
++xfs_trans_commit_fndecl_10211_fields xfs_trans_commit fndecl 0 10211 NULL
++old_log_size_persistent_ram_zone_10215_fields old_log_size persistent_ram_zone 0 10215 NULL
++__ext4_journal_get_write_access_fndecl_10217_fields __ext4_journal_get_write_access fndecl 0 10217 NULL
++ext4_xattr_set_handle_fndecl_10221_fields ext4_xattr_set_handle fndecl 6 10221 NULL
++uac2_ctl_value_size_fndecl_10224_fields uac2_ctl_value_size fndecl 0 10224 NULL
++pci_hotplug_bus_size_vardecl_10230_fields pci_hotplug_bus_size vardecl 0 10230 NULL
++input_get_new_minor_fndecl_10235_fields input_get_new_minor fndecl 0 10235 NULL
++iio_devt_vardecl_industrialio_core_c_10237_fields iio_devt vardecl_industrialio-core.c 0 10237 NULL nohasharray
++req_pages_pvscsi_adapter_10237_fields req_pages pvscsi_adapter 0 10237 &iio_devt_vardecl_industrialio_core_c_10237_fields
++uarc_size_mthca_uar_table_10238_fields uarc_size mthca_uar_table 0 10238 NULL
++bv_len_bio_vec_10239_fields bv_len bio_vec 0 10239 NULL
++q1_depth_bna_rx_config_10241_fields q1_depth bna_rx_config 0 10241 NULL
++smallpageshift_sddr55_card_info_10244_fields smallpageshift sddr55_card_info 0 10244 NULL
++irias_add_octseq_attrib_fndecl_10252_fields irias_add_octseq_attrib fndecl 4 10252 NULL nohasharray
++diva_os_get_context_size_fndecl_10252_fields diva_os_get_context_size fndecl 0 10252 &irias_add_octseq_attrib_fndecl_10252_fields
++filelayout_get_dense_offset_fndecl_10253_fields filelayout_get_dense_offset fndecl 0 10253 NULL
++iscsi_sw_tcp_send_hdr_prep_fndecl_10261_fields iscsi_sw_tcp_send_hdr_prep fndecl 3 10261 NULL
++sdebug_store_sectors_vardecl_scsi_debug_c_10267_fields sdebug_store_sectors vardecl_scsi_debug.c 0 10267 NULL
++jffs2_scan_dirent_node_fndecl_10268_fields jffs2_scan_dirent_node fndecl 4 10268 NULL
++dn_sendmsg_fndecl_10269_fields dn_sendmsg fndecl 3 10269 NULL
++rxd_process_rxd_ops_10271_fields rxd_process rxd_ops 0 10271 NULL
++vmci_host_setup_notify_fndecl_10273_fields vmci_host_setup_notify fndecl 2 10273 NULL
++num_vfs_i40e_hw_capabilities_10302_fields num_vfs i40e_hw_capabilities 0 10302 NULL
++ieee80211_tdls_add_chan_switch_req_ies_fndecl_10304_fields ieee80211_tdls_add_chan_switch_req_ies fndecl 6 10304 NULL
++qede_fill_frag_skb_fndecl_10307_fields qede_fill_frag_skb fndecl 4 10307 NULL
++drm_dp_dual_mode_read_fndecl_10313_fields drm_dp_dual_mode_read fndecl 4 10313 NULL
++scsi_vpd_inquiry_fndecl_10315_fields scsi_vpd_inquiry fndecl 4 10315 NULL
++xfs_rmap_map_extent_fndecl_10318_fields xfs_rmap_map_extent fndecl 0 10318 NULL
++blk_stack_limits_fndecl_10332_fields blk_stack_limits fndecl 3 10332 NULL
++xfs_get_blocks_dax_fault_fndecl_10335_fields xfs_get_blocks_dax_fault fndecl 2 10335 NULL
++down_bplus_internal_node_10336_fields down bplus_internal_node 0 10336 NULL
++len_xdr_buf_10338_fields len xdr_buf 0 10338 NULL
++sector_size_btt_10339_fields sector_size btt 0 10339 NULL
++s_no_blocks_logfs_super_10354_fields s_no_blocks logfs_super 0 10354 NULL
++num_mgms_mlx4_caps_10367_fields num_mgms mlx4_caps 0 10367 NULL
++vmcoreinfo_max_size_vardecl_10370_fields vmcoreinfo_max_size vardecl 0 10370 NULL
++len_mt7601u_dma_buf_10376_fields len mt7601u_dma_buf 0 10376 NULL nohasharray
++ssid_len_libipw_network_10376_fields ssid_len libipw_network 0 10376 &len_mt7601u_dma_buf_10376_fields
++size_synthvid_msg_hdr_10391_fields size synthvid_msg_hdr 0 10391 NULL
++arg_ax25_ctl_struct_10392_fields arg ax25_ctl_struct 0 10392 NULL
++iomem_base_myri10ge_priv_10393_fields iomem_base myri10ge_priv 0 10393 NULL
++tg3_run_loopback_fndecl_10398_fields tg3_run_loopback fndecl 2 10398 NULL nohasharray
++generic_write_checks_fndecl_10398_fields generic_write_checks fndecl 0 10398 &tg3_run_loopback_fndecl_10398_fields
++ihead_offs_ubifs_info_10400_fields ihead_offs ubifs_info 0 10400 NULL
++length_p_header95_10401_fields length p_header95 0 10401 NULL
++romfs_blk_strnlen_fndecl_10402_fields romfs_blk_strnlen fndecl 3-2-0 10402 NULL
++_osd_req_sizeof_alist_header_fndecl_10405_fields _osd_req_sizeof_alist_header fndecl 0 10405 NULL nohasharray
++num_vss_cfgs_wm8994_pdata_10405_fields num_vss_cfgs wm8994_pdata 0 10405 &_osd_req_sizeof_alist_header_fndecl_10405_fields
++zap_vma_ptes_fndecl_10406_fields zap_vma_ptes fndecl 3-2 10406 NULL
++addr_page_req_dsc_10411_fields addr page_req_dsc 0 10411 NULL
++off_xtsplit_10412_fields off xtsplit 0 10412 NULL
++max_ctrl_size_ims_pcu_10413_fields max_ctrl_size ims_pcu 0 10413 NULL
++nent_mlx4_eq_10414_fields nent mlx4_eq 0 10414 NULL
++size_xt_table_info_10415_fields size xt_table_info 0 10415 NULL
++num_chipselect_spi_master_10420_fields num_chipselect spi_master 0 10420 NULL
++spi_async_locked_fndecl_10422_fields spi_async_locked fndecl 0 10422 NULL
++byte_count_iwl_rx_mpdu_res_start_10437_fields byte_count iwl_rx_mpdu_res_start 0 10437 NULL nohasharray
++flip_sd_gl860_10437_fields flip sd_gl860 0 10437 &byte_count_iwl_rx_mpdu_res_start_10437_fields
++alloc_switch_ctx_fndecl_10438_fields alloc_switch_ctx fndecl 3 10438 NULL
++radeon_gem_object_create_fndecl_10441_fields radeon_gem_object_create fndecl 2 10441 NULL
++expand_inode_data_fndecl_10442_fields expand_inode_data fndecl 2-3 10442 NULL
++wrfilled_cyberjack_private_10444_fields wrfilled cyberjack_private 0 10444 NULL
++p9dirent_read_fndecl_10450_fields p9dirent_read fndecl 3-0 10450 NULL
++ext4_write_inline_data_end_fndecl_10452_fields ext4_write_inline_data_end fndecl 0-4 10452 NULL
++page_shift_nand_chip_10453_fields page_shift nand_chip 0 10453 NULL
++length_acpi_mem_space_context_10460_fields length acpi_mem_space_context 0 10460 NULL
++vxlan_change_mtu_fndecl_10464_fields vxlan_change_mtu fndecl 2 10464 NULL nohasharray
++__btt_map_write_fndecl_10464_fields __btt_map_write fndecl 0 10464 &vxlan_change_mtu_fndecl_10464_fields
++notesize_fndecl_10467_fields notesize fndecl 0 10467 NULL nohasharray
++wNdpOutDivisor_usb_cdc_ncm_ntb_parameters_10467_fields wNdpOutDivisor usb_cdc_ncm_ntb_parameters 0 10467 &notesize_fndecl_10467_fields
++__genwqe_readq_fndecl_10470_fields __genwqe_readq fndecl 0 10470 NULL
++devnum_usb_device_10474_fields devnum usb_device 0 10474 NULL
++signature_mspro_attribute_10483_fields signature mspro_attribute 0 10483 NULL
++out_min_chans_snd_card_asihpi_10490_fields out_min_chans snd_card_asihpi 0 10490 NULL
++msb_cache_read_fndecl_10494_fields msb_cache_read fndecl 5 10494 NULL
++xfs_bmap_punch_delalloc_range_fndecl_10503_fields xfs_bmap_punch_delalloc_range fndecl 2 10503 NULL
++cidlen_he_rbrq_10504_fields cidlen he_rbrq 0 10504 NULL
++nouveau_channel_prep_fndecl_10506_fields nouveau_channel_prep fndecl 3 10506 NULL
++cr_namelen_nfsd4_create_10516_fields cr_namelen nfsd4_create 0 10516 NULL
++dma_burst_size_chip_data_10519_fields dma_burst_size chip_data 0 10519 NULL nohasharray
++ipmi_major_vardecl_ipmi_devintf_c_10519_fields ipmi_major vardecl_ipmi_devintf.c 0 10519 &dma_burst_size_chip_data_10519_fields
++slba_nvme_rw_command_10529_fields slba nvme_rw_command 0 10529 NULL
++rsa_offset_intel_guc_fw_10530_fields rsa_offset intel_guc_fw 0 10530 NULL
++stride_cobalt_stream_10537_fields stride cobalt_stream 0 10537 NULL
++logical_scrub_page_10540_fields logical scrub_page 0 10540 NULL
++xen_set_callback_via_fndecl_10541_fields xen_set_callback_via fndecl 1 10541 NULL
++emi62_writememory_fndecl_10544_fields emi62_writememory fndecl 4 10544 NULL
++isofs_get_last_session_fndecl_10547_fields isofs_get_last_session fndecl 0 10547 NULL nohasharray
++y_skip_top_mt9m001_10547_fields y_skip_top mt9m001 0 10547 &isofs_get_last_session_fndecl_10547_fields
++nv_change_mtu_fndecl_10551_fields nv_change_mtu fndecl 2 10551 NULL
++new_leaf_fndecl_10553_fields new_leaf fndecl 3 10553 NULL
++id_hsi_controller_10557_fields id hsi_controller 0 10557 NULL
++tcf_csum_ipv6_icmp_fndecl_10562_fields tcf_csum_ipv6_icmp fndecl 3 10562 NULL
++dbg_dest_reg_num_iwl_fw_10568_fields dbg_dest_reg_num iwl_fw 0 10568 NULL
++num_send_contexts_hfi1_devdata_10569_fields num_send_contexts hfi1_devdata 0 10569 NULL
++cnt_rsxx_reg_access_10573_fields cnt rsxx_reg_access 0 10573 NULL
++sb_bsize_shift_gfs2_sb_host_10575_fields sb_bsize_shift gfs2_sb_host 0 10575 NULL nohasharray
++ds_write_shift_logfs_disk_super_10575_fields ds_write_shift logfs_disk_super 0 10575 &sb_bsize_shift_gfs2_sb_host_10575_fields
++initialized_size__ntfs_inode_10576_fields initialized_size _ntfs_inode 0 10576 NULL
++resource_addr_nvkm_device_func_10582_fields resource_addr nvkm_device_func 0 10582 NULL
++buf_idx_mei_cl_cb_10585_fields buf_idx mei_cl_cb 0 10585 NULL nohasharray
++vmw_compat_shader_add_fndecl_10585_fields vmw_compat_shader_add fndecl 6 10585 &buf_idx_mei_cl_cb_10585_fields
++pcmcia_make_resource_fndecl_10591_fields pcmcia_make_resource fndecl 2-1 10591 NULL
++size_ib_uverbs_flow_attr_10597_fields size ib_uverbs_flow_attr 0 10597 NULL
++max_frame_size_atl1_hw_10601_fields max_frame_size atl1_hw 0 10601 NULL
++uremainder64_st_cmdstatus_10606_fields uremainder64 st_cmdstatus 0 10606 NULL
++inst_size_il4965_firmware_pieces_10607_fields inst_size il4965_firmware_pieces 0 10607 NULL
++rq_depth_p9_rdma_opts_10608_fields rq_depth p9_rdma_opts 0 10608 NULL nohasharray
++index_vardecl_mtpav_c_10608_fields index vardecl_mtpav.c 0 10608 &rq_depth_p9_rdma_opts_10608_fields
++brightness_sd_gl860_10611_fields brightness sd_gl860 0 10611 NULL
++ext4_trim_all_free_fndecl_10621_fields ext4_trim_all_free fndecl 4-2-0 10621 NULL
++rx_queues_nicvf_10628_fields rx_queues nicvf 0 10628 NULL
++pkt_alignment_factor_rndis_initialize_complete_10633_fields pkt_alignment_factor rndis_initialize_complete 0 10633 NULL
++pgbase_nfs_pgio_args_10636_fields pgbase nfs_pgio_args 0 10636 NULL
++length_iomap_10641_fields length iomap 0 10641 NULL
++tcp_sendpage_fndecl_10646_fields tcp_sendpage fndecl 4-3 10646 NULL
++cxgbit_map_skb_fndecl_10650_fields cxgbit_map_skb fndecl 4-3 10650 NULL
++smk_write_relabel_self_fndecl_10657_fields smk_write_relabel_self fndecl 3 10657 NULL
++memory_size_vhost_memory_region_10658_fields memory_size vhost_memory_region 0 10658 NULL
++tlv_put_fndecl_10659_fields tlv_put fndecl 4 10659 NULL
++start_mtd_oob_buf32_10664_fields start mtd_oob_buf32 0 10664 NULL
++len_ahd_dma_seg_10667_fields len ahd_dma_seg 0 10667 NULL
++nfc_targets_found_fndecl_10669_fields nfc_targets_found fndecl 3 10669 NULL
++radeon_ttm_tt_create_fndecl_10672_fields radeon_ttm_tt_create fndecl 2 10672 NULL
++word_size_e1000_nvm_info_10681_fields word_size e1000_nvm_info 0 10681 NULL nohasharray
++xfs_rtfind_forw_fndecl_10681_fields xfs_rtfind_forw fndecl 3-0 10681 &word_size_e1000_nvm_info_10681_fields
++tlen_sc18is602_10682_fields tlen sc18is602 0 10682 NULL
++sb_bsize_gfs2_sb_host_10683_fields sb_bsize gfs2_sb_host 0 10683 NULL
++extract_icmp6_fields_fndecl_10685_fields extract_icmp6_fields fndecl 2 10685 NULL
++num_frames_usb_usbvision_10687_fields num_frames usb_usbvision 0 10687 NULL
++alauda_read_block_raw_fndecl_10688_fields alauda_read_block_raw fndecl 4 10688 NULL
++rx_ba_win_size_conf_ht_setting_10692_fields rx_ba_win_size conf_ht_setting 0 10692 NULL
++gigaset_initbcs_fndecl_10693_fields gigaset_initbcs fndecl 3 10693 NULL
++afs_write_begin_fndecl_10704_fields afs_write_begin fndecl 3-4 10704 NULL
++xfs_alloc_read_agf_fndecl_10710_fields xfs_alloc_read_agf fndecl 3-0 10710 NULL
++iio_set_bytes_per_datum_kfifo_fndecl_10712_fields iio_set_bytes_per_datum_kfifo fndecl 2 10712 NULL
++key_size_dw_guc_css_header_10714_fields key_size_dw guc_css_header 0 10714 NULL
++set_le_key_k_offset_fndecl_10721_fields set_le_key_k_offset fndecl 3 10721 NULL
++ipv6_recv_error_fndecl_10728_fields ipv6_recv_error fndecl 3 10728 NULL nohasharray
++blocks_dm_verity_fec_10728_fields blocks dm_verity_fec 0 10728 &ipv6_recv_error_fndecl_10728_fields
++xen_p2m_size_vardecl_10730_fields xen_p2m_size vardecl 0 10730 NULL
++iomem_reg_shift_serial_struct_10733_fields iomem_reg_shift serial_struct 0 10733 NULL
++ntp_fltr_count_bnxt_10734_fields ntp_fltr_count bnxt 0 10734 NULL
++sb_dirblklog_xfs_sb_10738_fields sb_dirblklog xfs_sb 0 10738 NULL
++__memblock_find_range_bottom_up_fndecl_10739_fields __memblock_find_range_bottom_up fndecl 0-4-1-2 10739 NULL
++BufSizeShift_qinfo_chip_10746_fields BufSizeShift qinfo_chip 0 10746 NULL nohasharray
++page_errors_dio_10746_fields page_errors dio 0 10746 &BufSizeShift_qinfo_chip_10746_fields
++next_blkoff_curseg_info_10751_fields next_blkoff curseg_info 0 10751 NULL
++NumEraseRegions_cfi_ident_10753_fields NumEraseRegions cfi_ident 0 10753 NULL
++write_head_fndecl_10754_fields write_head fndecl 4 10754 NULL
++adu_write_fndecl_10756_fields adu_write fndecl 3 10756 NULL
++data_start_dm_verity_10759_fields data_start dm_verity 0 10759 NULL
++new_chunk_core_exception_10765_fields new_chunk core_exception 0 10765 NULL
++ocrdma_reg_user_mr_fndecl_10777_fields ocrdma_reg_user_mr fndecl 2-3 10777 NULL
++amdgpu_ttm_tt_create_fndecl_10779_fields amdgpu_ttm_tt_create fndecl 2 10779 NULL
++unallocated_pble_i40iw_hmc_pble_rsrc_10784_fields unallocated_pble i40iw_hmc_pble_rsrc 0 10784 NULL
++pnode_sz_ubifs_info_10791_fields pnode_sz ubifs_info 0 10791 NULL nohasharray
++ea_write_fndecl_10791_fields ea_write fndecl 3 10791 &pnode_sz_ubifs_info_10791_fields
++read32_brcmf_buscore_ops_10795_fields read32 brcmf_buscore_ops 0 10795 NULL
++set_config_fndecl_10797_fields set_config fndecl 0 10797 NULL
++num_events_kfd_ioctl_wait_events_args_10811_fields num_events kfd_ioctl_wait_events_args 0 10811 NULL
++hstcp_cong_avoid_fndecl_10814_fields hstcp_cong_avoid fndecl 3 10814 NULL nohasharray
++page_offset_sw_rx_data_10814_fields page_offset sw_rx_data 0 10814 &hstcp_cong_avoid_fndecl_10814_fields
++ssb_sdio_block_write_fndecl_10815_fields ssb_sdio_block_write fndecl 3 10815 NULL nohasharray
++num_rxd_netxen_adapter_10815_fields num_rxd netxen_adapter 0 10815 &ssb_sdio_block_write_fndecl_10815_fields
++add_regulator_linked_fndecl_10819_fields add_regulator_linked fndecl 1 10819 NULL
++read_reg_ipac_hw_10828_fields read_reg ipac_hw 0 10828 NULL
++num_mpt_mthca_profile_10833_fields num_mpt mthca_profile 0 10833 NULL
++rsrc_start_usb_hcd_10839_fields rsrc_start usb_hcd 0 10839 NULL
++do_generic_file_read_fndecl_10842_fields do_generic_file_read fndecl 0-4 10842 NULL
++set_record_extent_bits_fndecl_10845_fields set_record_extent_bits fndecl 0-3-2 10845 NULL
++get_cmdline_fndecl_10847_fields get_cmdline fndecl 3 10847 NULL
++dma_last_offset_ivtv_stream_10849_fields dma_last_offset ivtv_stream 0 10849 NULL
++set_le_fndecl_10854_fields set_le fndecl 4 10854 NULL
++v_size_nilfs_argv_10857_fields v_size nilfs_argv 0 10857 NULL
++h_stk_size_10859_fields h stk_size 0 10859 NULL
++size_fuse_notify_retrieve_out_10862_fields size fuse_notify_retrieve_out 0 10862 NULL
++ezusb_fill_req_fndecl_10868_fields ezusb_fill_req fndecl 0-2 10868 NULL nohasharray
++ts_packet_count_cx23885_tsport_10868_fields ts_packet_count cx23885_tsport 0 10868 &ezusb_fill_req_fndecl_10868_fields
++p9stat_read_fndecl_10869_fields p9stat_read fndecl 3 10869 NULL
++pci_mmconfig_alloc_fndecl_10875_fields pci_mmconfig_alloc fndecl 2-3-4 10875 NULL
++w9968cf_pkt_scan_fndecl_10878_fields w9968cf_pkt_scan fndecl 3 10878 NULL
++sgl_map_user_pages_fndecl_10881_fields sgl_map_user_pages fndecl 3 10881 NULL
++num_streams_lola_pcm_10882_fields num_streams lola_pcm 0 10882 NULL
++run_apei_exec_ins_type_10886_fields run apei_exec_ins_type 0 10886 NULL
++drv_tss_rings_qlcnic_adapter_10887_fields drv_tss_rings qlcnic_adapter 0 10887 NULL
++spu_write_fndecl_10889_fields spu_write fndecl 4 10889 NULL
++max_sge_per_wr_iwch_rnic_attributes_10892_fields max_sge_per_wr iwch_rnic_attributes 0 10892 NULL
++ecryptfs_lower_header_size_fndecl_10894_fields ecryptfs_lower_header_size fndecl 0 10894 NULL
++slot_device_offset_controller_10895_fields slot_device_offset controller 0 10895 NULL
++table_size_acpi_einj_trigger_10899_fields table_size acpi_einj_trigger 0 10899 NULL
++i2c_hid_get_report_length_fndecl_10901_fields i2c_hid_get_report_length fndecl 0 10901 NULL nohasharray
++n_cell_devs_intel_soc_pmic_config_10901_fields n_cell_devs intel_soc_pmic_config 0 10901 &i2c_hid_get_report_length_fndecl_10901_fields
++udf_read_ptagged_fndecl_10905_fields udf_read_ptagged fndecl 3 10905 NULL
++auxdev_llseek_fndecl_10911_fields auxdev_llseek fndecl 2 10911 NULL
++data_len_rndis_packet_10918_fields data_len rndis_packet 0 10918 NULL nohasharray
++compat_sys_msgsnd_fndecl_10918_fields compat_sys_msgsnd fndecl 3 10918 &data_len_rndis_packet_10918_fields
++isdn_audio_adpcm2xlaw_fndecl_10927_fields isdn_audio_adpcm2xlaw fndecl 0 10927 NULL
++ieee802154_max_payload_fndecl_10928_fields ieee802154_max_payload fndecl 0 10928 NULL
++ud_bmove_fndecl_10929_fields ud_bmove fndecl 8-6-4-7-5-3 10929 NULL
++dma_acm_rb_10934_fields dma acm_rb 0 10934 NULL
++l_offset_lbuf_10935_fields l_offset lbuf 0 10935 NULL
++bmp_len_xfrm_replay_state_esn_10945_fields bmp_len xfrm_replay_state_esn 0 10945 NULL
++max_i2c_msg_len_r820t_config_10951_fields max_i2c_msg_len r820t_config 0 10951 NULL nohasharray
++acc_passl_accessdata_dn_10951_fields acc_passl accessdata_dn 0 10951 &max_i2c_msg_len_r820t_config_10951_fields
++num_lan_qps_i40e_pf_10953_fields num_lan_qps i40e_pf 0 10953 NULL
++iov_iter_init_fndecl_10954_fields iov_iter_init fndecl 5-4 10954 NULL
++drm_fb_helper_fill_fix_fndecl_10963_fields drm_fb_helper_fill_fix fndecl 2 10963 NULL
++jffs2_flash_read_fndecl_10968_fields jffs2_flash_read fndecl 0 10968 NULL
++agp_remap_fndecl_10970_fields agp_remap fndecl 2 10970 NULL
++sys_ftruncate_fndecl_10972_fields sys_ftruncate fndecl 2 10972 NULL
++buffer_count_drm_i915_gem_execbuffer_10978_fields buffer_count drm_i915_gem_execbuffer 0 10978 NULL
++ssid_len_wl1271_scan_10981_fields ssid_len wl1271_scan 0 10981 NULL
++lbs_wrbbp_write_fndecl_10987_fields lbs_wrbbp_write fndecl 3 10987 NULL
++l2cap_build_conf_rsp_fndecl_10988_fields l2cap_build_conf_rsp fndecl 0 10988 NULL
++msize_vardecl_pmc551_c_10989_fields msize vardecl_pmc551.c 0 10989 NULL nohasharray
++vxfs_blkiget_fndecl_10989_fields vxfs_blkiget fndecl 3-2 10989 &msize_vardecl_pmc551_c_10989_fields
++height_v4l2_rect_10995_fields height v4l2_rect 0 10995 NULL
++bitmap_size_dma_iommu_mapping_10997_fields bitmap_size dma_iommu_mapping 0 10997 NULL
++l2nbperpage_jfs_sb_info_11000_fields l2nbperpage jfs_sb_info 0 11000 NULL
++il4965_tx_agg_stop_fndecl_11004_fields il4965_tx_agg_stop fndecl 4 11004 NULL
++xfs_bmap_add_extent_unwritten_real_fndecl_11006_fields xfs_bmap_add_extent_unwritten_real fndecl 0 11006 NULL nohasharray
++dccp_setsockopt_ccid_fndecl_11006_fields dccp_setsockopt_ccid fndecl 4 11006 &xfs_bmap_add_extent_unwritten_real_fndecl_11006_fields
++drm_gtf2_m_fndecl_11007_fields drm_gtf2_m fndecl 0 11007 NULL
++height_v4l2_pix_format_mplane_11015_fields height v4l2_pix_format_mplane 0 11015 NULL
++xferred_ScsiReqBlk_11017_fields xferred ScsiReqBlk 0 11017 NULL
++target_cmd_size_check_fndecl_11019_fields target_cmd_size_check fndecl 2 11019 NULL
++rx_pkt_pad_sge_11020_fields rx_pkt_pad sge 0 11020 NULL
++len_hif_scatter_req_11022_fields len hif_scatter_req 0 11022 NULL
++preallocate_pcm_pages_fndecl_11026_fields preallocate_pcm_pages fndecl 2 11026 NULL
++count_vfio_irq_set_11027_fields count vfio_irq_set 0 11027 NULL
++len_nfs3_mknodargs_11030_fields len nfs3_mknodargs 0 11030 NULL
++sectors_per_block_pool_11035_fields sectors_per_block pool 0 11035 NULL
++namelen_xfs_dir2_data_entry_11036_fields namelen xfs_dir2_data_entry 0 11036 NULL nohasharray
++ep_msg_in_peak_usb_device_11036_fields ep_msg_in peak_usb_device 0 11036 &namelen_xfs_dir2_data_entry_11036_fields
++iic_tpm_write_fndecl_11039_fields iic_tpm_write fndecl 3 11039 NULL
++DataTransferLength_DAC960_V2_UserCommand_11040_fields DataTransferLength DAC960_V2_UserCommand 0 11040 NULL
++xlog_write_log_records_fndecl_11042_fields xlog_write_log_records fndecl 4-3 11042 NULL
++va_size_coda_vattr_11053_fields va_size coda_vattr 0 11053 NULL
++do_mlock_fndecl_11062_fields do_mlock fndecl 1-2 11062 NULL
++i2c_writebytes_fndecl_11073_fields i2c_writebytes fndecl 4 11073 NULL
++entry_fat_entry_11079_fields entry fat_entry 0 11079 NULL
++irda_sendmsg_dgram_fndecl_11080_fields irda_sendmsg_dgram fndecl 3 11080 NULL
++do_brk_fndecl_11101_fields do_brk fndecl 1-2 11101 NULL
++acpi_processor_power_verify_fndecl_11105_fields acpi_processor_power_verify fndecl 0 11105 NULL
++__getblk_gfp_fndecl_11107_fields __getblk_gfp fndecl 3-2 11107 NULL nohasharray
++ext4_acl_from_disk_fndecl_11107_fields ext4_acl_from_disk fndecl 2 11107 &__getblk_gfp_fndecl_11107_fields
++wTotalBlockNumber_ms_bootblock_sysinf_11108_fields wTotalBlockNumber ms_bootblock_sysinf 0 11108 NULL
++addr_last_netup_dma_11114_fields addr_last netup_dma 0 11114 NULL
++hpfs_ea_read_fndecl_11118_fields hpfs_ea_read fndecl 5-4-2 11118 NULL
++whitebal_sd_gl860_11124_fields whitebal sd_gl860 0 11124 NULL
++tcp_try_undo_partial_fndecl_11125_fields tcp_try_undo_partial fndecl 2 11125 NULL
++n_channels_iwl_mcc_update_resp_11128_fields n_channels iwl_mcc_update_resp 0 11128 NULL
++ies_len_connect_resp_info_11130_fields ies_len connect_resp_info 0 11130 NULL
++num__cdrp_cmd_11142_fields num _cdrp_cmd 0 11142 NULL
++pageshift_nand_flash_dev_11144_fields pageshift nand_flash_dev 0 11144 NULL
++queue_depth_nullb_queue_11148_fields queue_depth nullb_queue 0 11148 NULL
++max_voices_snd_emux_11150_fields max_voices snd_emux 0 11150 NULL
++generic_ptrace_pokedata_fndecl_11153_fields generic_ptrace_pokedata fndecl 2 11153 NULL
++o2nm_this_node_fndecl_11157_fields o2nm_this_node fndecl 0 11157 NULL
++tclass_mlx5_av_11167_fields tclass mlx5_av 0 11167 NULL
++rmtvaluelen2_xfs_da_args_11168_fields rmtvaluelen2 xfs_da_args 0 11168 NULL
++drv_rss_rings_qlcnic_adapter_11169_fields drv_rss_rings qlcnic_adapter 0 11169 NULL
++udf_tread_fndecl_11173_fields udf_tread fndecl 2 11173 NULL
++payload_len_fc_bsg_buffer_11175_fields payload_len fc_bsg_buffer 0 11175 NULL
++c4iw_init_resource_fndecl_11178_fields c4iw_init_resource fndecl 2-3 11178 NULL
++jp_journal_1st_block_journal_params_11180_fields jp_journal_1st_block journal_params 0 11180 NULL
++ilo_major_vardecl_hpilo_c_11181_fields ilo_major vardecl_hpilo.c 0 11181 NULL
++xtInsert_fndecl_11182_fields xtInsert fndecl 5-4 11182 NULL
++fwd_cnt_virtio_vsock_hdr_11188_fields fwd_cnt virtio_vsock_hdr 0 11188 NULL
++sys_get_mempolicy_fndecl_11192_fields sys_get_mempolicy fndecl 4 11192 NULL
++resid_virtio_scsi_cmd_resp_11193_fields resid virtio_scsi_cmd_resp 0 11193 NULL
++get_user_pages_remote_fndecl_11197_fields get_user_pages_remote fndecl 0-3 11197 NULL
++t4vf_fl_pkt_align_fndecl_11203_fields t4vf_fl_pkt_align fndecl 0 11203 NULL nohasharray
++perf_output_begin_fndecl_11203_fields perf_output_begin fndecl 3 11203 &t4vf_fl_pkt_align_fndecl_11203_fields
++vb2_fop_write_fndecl_11207_fields vb2_fop_write fndecl 3 11207 NULL
++wipers_mcp4531_cfg_11208_fields wipers mcp4531_cfg 0 11208 NULL
++used_bytes_ubi_volume_info_11209_fields used_bytes ubi_volume_info 0 11209 NULL
++mq_create_fndecl_11210_fields mq_create fndecl 1 11210 NULL
++vid_end_switchdev_obj_port_vlan_11218_fields vid_end switchdev_obj_port_vlan 0 11218 NULL
++num_encoder_drm_mode_config_11220_fields num_encoder drm_mode_config 0 11220 NULL
++hdr_len_ieee80211_cipher_scheme_11241_fields hdr_len ieee80211_cipher_scheme 0 11241 NULL
++nfsd_get_default_max_blksize_fndecl_11251_fields nfsd_get_default_max_blksize fndecl 0 11251 NULL
++ds1305_nvram_write_fndecl_11267_fields ds1305_nvram_write fndecl 6 11267 NULL
++hactive_videomode_11268_fields hactive videomode 0 11268 NULL
++btcx_align_fndecl_11269_fields btcx_align fndecl 4 11269 NULL nohasharray
++vii_size_vxfs_inode_info_11269_fields vii_size vxfs_inode_info 0 11269 &btcx_align_fndecl_11269_fields
++snd_midi_event_encode_byte_fndecl_11281_fields snd_midi_event_encode_byte fndecl 0 11281 NULL
++btrfs_set_prop_fndecl_11284_fields btrfs_set_prop fndecl 4 11284 NULL
++mxuport_prepare_write_buffer_fndecl_11292_fields mxuport_prepare_write_buffer fndecl 3 11292 NULL
++newkey_nilfs_btnode_chkey_ctxt_11296_fields newkey nilfs_btnode_chkey_ctxt 0 11296 NULL
++max_pkt_size_stk1160_11297_fields max_pkt_size stk1160 0 11297 NULL
++wqe_shift_mthca_wq_11298_fields wqe_shift mthca_wq 0 11298 NULL
++remap_pfn_range_fndecl_11299_fields remap_pfn_range fndecl 3-4 11299 NULL
++xfs_alloc_update_fndecl_11301_fields xfs_alloc_update fndecl 0 11301 NULL
++buf_len_mwifiex_sdio_mpa_tx_11323_fields buf_len mwifiex_sdio_mpa_tx 0 11323 NULL
++len_brcmf_vndr_dcmd_hdr_11327_fields len brcmf_vndr_dcmd_hdr 0 11327 NULL
++len_skl_ext_manifest_hdr_11331_fields len skl_ext_manifest_hdr 0 11331 NULL
++page_size_ib_umem_11335_fields page_size ib_umem 0 11335 NULL
++charcount_console_font_11338_fields charcount console_font 0 11338 NULL
++s_sbbase_ufs_sb_private_info_11344_fields s_sbbase ufs_sb_private_info 0 11344 NULL
++update_devnum_fndecl_11348_fields update_devnum fndecl 2 11348 NULL
++vlanid_full_rx_done_desc_11354_fields vlanid full_rx_done_desc 0 11354 NULL
++n_pfns_xen_memory_region_11357_fields n_pfns xen_memory_region 0 11357 NULL
++amdgpu_gem_object_create_fndecl_11366_fields amdgpu_gem_object_create fndecl 2 11366 NULL
++tso_fragment_fndecl_11369_fields tso_fragment fndecl 3 11369 NULL
++build_dpcd_write_fndecl_11376_fields build_dpcd_write fndecl 4 11376 NULL
++xz_dec_init_fndecl_11382_fields xz_dec_init fndecl 2 11382 NULL
++alloc_streams_hc_driver_11390_fields alloc_streams hc_driver 0 11390 NULL
++xfs_alloc_ag_vextent_small_fndecl_11407_fields xfs_alloc_ag_vextent_small fndecl 0 11407 NULL
++setup_data_setup_header_11411_fields setup_data setup_header 0 11411 NULL
++in_args_qlcnic_mailbox_metadata_11413_fields in_args qlcnic_mailbox_metadata 0 11413 NULL
++iso_packets_buffer_init_fndecl_11414_fields iso_packets_buffer_init fndecl 4 11414 NULL
++mc13xxx_add_subdevice_pdata_fndecl_11426_fields mc13xxx_add_subdevice_pdata fndecl 4 11426 NULL
++smt_build_frame_fndecl_11428_fields smt_build_frame fndecl 4 11428 NULL
++rule_cnt_ethtool_rxnfc_11436_fields rule_cnt ethtool_rxnfc 0 11436 NULL nohasharray
++rxBytesRemaining_edgeport_serial_11436_fields rxBytesRemaining edgeport_serial 0 11436 &rule_cnt_ethtool_rxnfc_11436_fields
++sys_preadv2_fndecl_11439_fields sys_preadv2 fndecl 3 11439 NULL
++NFTL_findfreeblock_fndecl_11466_fields NFTL_findfreeblock fndecl 0 11466 NULL
++lower_margin_fb_var_screeninfo_11469_fields lower_margin fb_var_screeninfo 0 11469 NULL
++id_header_size_perf_event_11470_fields id_header_size perf_event 0 11470 NULL
++ieee80211_send_bar_fndecl_11472_fields ieee80211_send_bar fndecl 3 11472 NULL
++hsync_len_videomode_11474_fields hsync_len videomode 0 11474 NULL
++iov_shorten_fndecl_11481_fields iov_shorten fndecl 3 11481 NULL nohasharray
++c_cpos_ocfs2_write_cluster_desc_11481_fields c_cpos ocfs2_write_cluster_desc 0 11481 &iov_shorten_fndecl_11481_fields
++num_crtc_drm_mode_config_11484_fields num_crtc drm_mode_config 0 11484 NULL
++length_RioCommand_11495_fields length RioCommand 0 11495 NULL nohasharray
++get_ablock_fndecl_11495_fields get_ablock fndecl 2 11495 &length_RioCommand_11495_fields
++batadv_max_header_len_fndecl_11496_fields batadv_max_header_len fndecl 0 11496 NULL
++qcaspi_write_burst_fndecl_11497_fields qcaspi_write_burst fndecl 3 11497 NULL
++prepare_write_buffer_usb_serial_driver_11498_fields prepare_write_buffer usb_serial_driver 0 11498 NULL
++w_cpos_ocfs2_write_ctxt_11503_fields w_cpos ocfs2_write_ctxt 0 11503 NULL
++period_bytes_max_snd_pcm_hardware_11507_fields period_bytes_max snd_pcm_hardware 0 11507 NULL
++adau1701_register_size_fndecl_11523_fields adau1701_register_size fndecl 0 11523 NULL
++ccw_putcs_fndecl_11532_fields ccw_putcs fndecl 4-5-6 11532 NULL
++llcp_add_tlv_fndecl_11542_fields llcp_add_tlv fndecl 3 11542 NULL
++screen_height_vardecl_hyperv_fb_c_11550_fields screen_height vardecl_hyperv_fb.c 0 11550 NULL
++dm_startbit_adfs_discmap_11559_fields dm_startbit adfs_discmap 0 11559 NULL
++dataxfer_length_hpt_iop_request_scsi_command_11566_fields dataxfer_length hpt_iop_request_scsi_command 0 11566 NULL
++rec_len_nilfs_dir_entry_11567_fields rec_len nilfs_dir_entry 0 11567 NULL
++cur_transfer_size_s2255_pipeinfo_11571_fields cur_transfer_size s2255_pipeinfo 0 11571 NULL nohasharray
++rx_remain_len_hif_device_usb_11571_fields rx_remain_len hif_device_usb 0 11571 &cur_transfer_size_s2255_pipeinfo_11571_fields
++find_compression_threshold_fndecl_11575_fields find_compression_threshold fndecl 3 11575 NULL nohasharray
++__ocfs2_add_entry_fndecl_11575_fields __ocfs2_add_entry fndecl 4 11575 &find_compression_threshold_fndecl_11575_fields
++ram_header_offset_qxl_rom_11576_fields ram_header_offset qxl_rom 0 11576 NULL
++next_index_jfs_inode_info_11588_fields next_index jfs_inode_info 0 11588 NULL
++add_advertising_fndecl_11602_fields add_advertising fndecl 4 11602 NULL
++prev_free_msdos_sb_info_11603_fields prev_free msdos_sb_info 0 11603 NULL nohasharray
++spi_execute_fndecl_11603_fields spi_execute fndecl 5 11603 &prev_free_msdos_sb_info_11603_fields
++desc_num_hnae_ring_11610_fields desc_num hnae_ring 0 11610 NULL
++frame_length_spi_message_11612_fields frame_length spi_message 0 11612 NULL
++word1_atl1e_recv_ret_status_11620_fields word1 atl1e_recv_ret_status 0 11620 NULL
++btrfs_add_ordered_extent_dio_fndecl_11621_fields btrfs_add_ordered_extent_dio fndecl 4-2-3 11621 NULL
++dataLen_PVSCSIRingCmpDesc_11627_fields dataLen PVSCSIRingCmpDesc 0 11627 NULL
++acpi_register_ioapic_fndecl_11630_fields acpi_register_ioapic fndecl 3 11630 NULL
++posix_acl_init_fndecl_11632_fields posix_acl_init fndecl 2 11632 NULL nohasharray
++peek_head_len_fndecl_11632_fields peek_head_len fndecl 0 11632 &posix_acl_init_fndecl_11632_fields nohasharray
++dtl1_write_fndecl_11632_fields dtl1_write fndecl 0 11632 &peek_head_len_fndecl_11632_fields
++num_mon_ceph_options_11640_fields num_mon ceph_options 0 11640 NULL
++ath6kl_get_num_reg_fndecl_11647_fields ath6kl_get_num_reg fndecl 0 11647 NULL
++bulk_size_cam_11663_fields bulk_size cam 0 11663 NULL
++__setup_root_fndecl_11664_fields __setup_root fndecl 2-1 11664 NULL nohasharray
++num_snd_ratnum_11664_fields num snd_ratnum 0 11664 &__setup_root_fndecl_11664_fields
++align_pnp_mem_11669_fields align pnp_mem 0 11669 NULL
++i915_stolen_to_physical_fndecl_11685_fields i915_stolen_to_physical fndecl 0 11685 NULL nohasharray
++erasesize_mtd_erase_region_info_11685_fields erasesize mtd_erase_region_info 0 11685 &i915_stolen_to_physical_fndecl_11685_fields
++tx_tail_len_pn533_frame_ops_11694_fields tx_tail_len pn533_frame_ops 0 11694 NULL
++stride_efifb_dmi_info_11695_fields stride efifb_dmi_info 0 11695 NULL
++num_rates_wmi_rate_set_arg_11696_fields num_rates wmi_rate_set_arg 0 11696 NULL
++__i2c_read_fndecl_11698_fields __i2c_read fndecl 6-3 11698 NULL
++shared_mic_nid_ca0132_spec_11702_fields shared_mic_nid ca0132_spec 0 11702 NULL
++__vma_reservation_common_fndecl_11707_fields __vma_reservation_common fndecl 3 11707 NULL nohasharray
++mwifiex_debug_mask_write_fndecl_11707_fields mwifiex_debug_mask_write fndecl 3 11707 &__vma_reservation_common_fndecl_11707_fields
++phys_lcr_base__synclinkmp_info_11713_fields phys_lcr_base _synclinkmp_info 0 11713 NULL nohasharray
++logical_packages_vardecl_smpboot_c_11713_fields logical_packages vardecl_smpboot.c 0 11713 &phys_lcr_base__synclinkmp_info_11713_fields
++sizeof_partition_entry__gpt_header_11718_fields sizeof_partition_entry _gpt_header 0 11718 NULL
++ocfs2_write_cluster_fndecl_11719_fields ocfs2_write_cluster fndecl 9 11719 NULL
++ov511_pkt_scan_fndecl_11737_fields ov511_pkt_scan fndecl 3 11737 NULL
++gart_pin_size_radeon_device_11745_fields gart_pin_size radeon_device 0 11745 NULL
++symlink_size_squashfs_symlink_inode_11747_fields symlink_size squashfs_symlink_inode 0 11747 NULL nohasharray
++psn_modify_mask_rvt_driver_params_11747_fields psn_modify_mask rvt_driver_params 0 11747 &symlink_size_squashfs_symlink_inode_11747_fields
++log_num_cqs_mlx4_init_hca_param_11748_fields log_num_cqs mlx4_init_hca_param 0 11748 NULL
++lba_shift_nvme_ns_11763_fields lba_shift nvme_ns 0 11763 NULL nohasharray
++count_nfs_pgio_res_11763_fields count nfs_pgio_res 0 11763 &lba_shift_nvme_ns_11763_fields
++num_mtt_mthca_profile_11767_fields num_mtt mthca_profile 0 11767 NULL
++length_acpi_dmar_header_11768_fields length acpi_dmar_header 0 11768 NULL
++grow_buffers_fndecl_11774_fields grow_buffers fndecl 3-2 11774 NULL
++num_fences_sync_file_11779_fields num_fences sync_file 0 11779 NULL
++pci_scan_child_bus_fndecl_11784_fields pci_scan_child_bus fndecl 0 11784 NULL
++svc_pool_map_init_percpu_fndecl_11792_fields svc_pool_map_init_percpu fndecl 0 11792 NULL nohasharray
++iscsi_sw_tcp_session_create_fndecl_11792_fields iscsi_sw_tcp_session_create fndecl 3 11792 &svc_pool_map_init_percpu_fndecl_11792_fields
++depth_cx23885_fmt_11806_fields depth cx23885_fmt 0 11806 NULL
++max_hw_sectors_queue_limits_11815_fields max_hw_sectors queue_limits 0 11815 NULL nohasharray
++depth_tw686x_format_11815_fields depth tw686x_format 0 11815 &max_hw_sectors_queue_limits_11815_fields nohasharray
++num_resources_nd_namespace_blk_11815_fields num_resources nd_namespace_blk 0 11815 &depth_tw686x_format_11815_fields
++be_change_mtu_fndecl_11828_fields be_change_mtu fndecl 2 11828 NULL
++acpi_allocate_root_table_fndecl_11829_fields acpi_allocate_root_table fndecl 1 11829 NULL
++length_TAG_TW_SG_Entry_ISO_11846_fields length TAG_TW_SG_Entry_ISO 0 11846 NULL
++number_of_packets_urb_11853_fields number_of_packets urb 0 11853 NULL nohasharray
++add_to_page_cache_lru_fndecl_11853_fields add_to_page_cache_lru fndecl 0 11853 &number_of_packets_urb_11853_fields
++s_nsegments_nilfs_super_block_11865_fields s_nsegments nilfs_super_block 0 11865 NULL
++heads_ssfdcr_record_11869_fields heads ssfdcr_record 0 11869 NULL
++domain_child_num_acl_role_label_11875_fields domain_child_num acl_role_label 0 11875 NULL
++dm_btree_lookup_next_fndecl_11876_fields dm_btree_lookup_next fndecl 2 11876 NULL
++idetape_queue_rw_tail_fndecl_11881_fields idetape_queue_rw_tail fndecl 3 11881 NULL
++bochs_dispi_read_fndecl_11885_fields bochs_dispi_read fndecl 0 11885 NULL nohasharray
++leaf_dealloc_fndecl_11885_fields leaf_dealloc fndecl 4 11885 &bochs_dispi_read_fndecl_11885_fields
++num_channels_iw_scan_req_11889_fields num_channels iw_scan_req 0 11889 NULL nohasharray
++create_object_fndecl_11889_fields create_object fndecl 1-2 11889 &num_channels_iw_scan_req_11889_fields
++vfs_read_fndecl_11892_fields vfs_read fndecl 0-3 11892 NULL
++llcp_tlv16_fndecl_11893_fields llcp_tlv16 fndecl 0 11893 NULL
++flaglen_ring_desc_ex_11894_fields flaglen ring_desc_ex 0 11894 NULL
++libipw_change_mtu_fndecl_11901_fields libipw_change_mtu fndecl 2 11901 NULL
++fw_dump_size_scsi_qla_host_11903_fields fw_dump_size scsi_qla_host 0 11903 NULL
++dio_set_defer_completion_fndecl_11916_fields dio_set_defer_completion fndecl 0 11916 NULL
++fw_cfg_p_size_vardecl_qemu_fw_cfg_c_11917_fields fw_cfg_p_size vardecl_qemu_fw_cfg.c 0 11917 NULL
++residual_length_atto_vda_scsi_rsp_11918_fields residual_length atto_vda_scsi_rsp 0 11918 NULL
++p9_fd_read_fndecl_11921_fields p9_fd_read fndecl 0-3 11921 NULL
++tx_buffer_count_hso_serial_11927_fields tx_buffer_count hso_serial 0 11927 NULL
++orig_start_move_extent_11928_fields orig_start move_extent 0 11928 NULL
++length_p_header100_11933_fields length p_header100 0 11933 NULL
++ext4_move_extents_fndecl_11935_fields ext4_move_extents fndecl 5-3-4 11935 NULL
++alloc_low_pages_fndecl_11940_fields alloc_low_pages fndecl 1 11940 NULL
++mss_request_sock_11943_fields mss request_sock 0 11943 NULL
++choose_data_offset_fndecl_11950_fields choose_data_offset fndecl 0 11950 NULL
++max_rdma_atomic_rvt_driver_params_11957_fields max_rdma_atomic rvt_driver_params 0 11957 NULL
++qla4_82xx_pci_set_window_fndecl_11958_fields qla4_82xx_pci_set_window fndecl 0-2 11958 NULL
++per_vf_cids_qed_tm_iids_11959_fields per_vf_cids qed_tm_iids 0 11959 NULL
++bsg_major_vardecl_bsg_c_11972_fields bsg_major vardecl_bsg.c 0 11972 NULL
++pcpu_nr_groups_vardecl_percpu_c_11974_fields pcpu_nr_groups vardecl_percpu.c 0 11974 NULL
++i_xattr_nid_f2fs_inode_info_11976_fields i_xattr_nid f2fs_inode_info 0 11976 NULL
++ath10k_htt_rx_crypto_param_len_fndecl_11982_fields ath10k_htt_rx_crypto_param_len fndecl 0 11982 NULL
++total_mapping_size_fndecl_11985_fields total_mapping_size fndecl 0 11985 NULL
++virtualUnits_INFTLPartition_11994_fields virtualUnits INFTLPartition 0 11994 NULL
++rx_buffer_size_peak_usb_adapter_11997_fields rx_buffer_size peak_usb_adapter 0 11997 NULL
++error_data_insert_op_12006_fields error data_insert_op 0 12006 NULL
++__btrfs_setxattr_fndecl_12010_fields __btrfs_setxattr fndecl 5 12010 NULL
++__nlmsg_put_fndecl_12014_fields __nlmsg_put fndecl 5 12014 NULL nohasharray
++s_next_psn_rvt_qp_12014_fields s_next_psn rvt_qp 0 12014 &__nlmsg_put_fndecl_12014_fields
++br_send_bpdu_fndecl_12022_fields br_send_bpdu fndecl 3 12022 NULL nohasharray
++rfcomm_sock_sendmsg_fndecl_12022_fields rfcomm_sock_sendmsg fndecl 3 12022 &br_send_bpdu_fndecl_12022_fields
++yres_fb_var_screeninfo_12023_fields yres fb_var_screeninfo 0 12023 NULL
++xfs_dir2_sf_addname_easy_fndecl_12024_fields xfs_dir2_sf_addname_easy fndecl 4 12024 NULL
++arm_iommu_create_mapping_fndecl_12027_fields arm_iommu_create_mapping fndecl 3 12027 NULL
++scsi_cmds_max_iscsi_session_12037_fields scsi_cmds_max iscsi_session 0 12037 NULL
++rf_suballoc_bit_ocfs2_refcount_block_12038_fields rf_suballoc_bit ocfs2_refcount_block 0 12038 NULL
++__mm_populate_fndecl_12039_fields __mm_populate fndecl 2-1 12039 NULL
++regsize_si_sm_io_12043_fields regsize si_sm_io 0 12043 NULL
++physical_btrfs_bio_stripe_12047_fields physical btrfs_bio_stripe 0 12047 NULL
++len_brcmf_sdio_hdrinfo_12048_fields len brcmf_sdio_hdrinfo 0 12048 NULL nohasharray
++order_ipr_sglist_12048_fields order ipr_sglist 0 12048 &len_brcmf_sdio_hdrinfo_12048_fields
++prio_io_fndecl_12053_fields prio_io fndecl 2 12053 NULL
++ata_exec_internal_fndecl_12059_fields ata_exec_internal fndecl 6 12059 NULL
++l1oip_law_to_4bit_fndecl_12061_fields l1oip_law_to_4bit fndecl 0 12061 NULL
++bufsize_st5481_in_12064_fields bufsize st5481_in 0 12064 NULL nohasharray
++devm_ioremap_fndecl_12064_fields devm_ioremap fndecl 3-2 12064 &bufsize_st5481_in_12064_fields
++recover_peb_fndecl_12069_fields recover_peb fndecl 7-6 12069 NULL
++count_afs_permits_12072_fields count afs_permits 0 12072 NULL nohasharray
++rw_verify_area_fndecl_12072_fields rw_verify_area fndecl 0 12072 &count_afs_permits_12072_fields
++lirc_register_driver_fndecl_12073_fields lirc_register_driver fndecl 0 12073 NULL
++ttm_pool_update_free_locked_fndecl_12074_fields ttm_pool_update_free_locked fndecl 2 12074 NULL
++cirrus_bo_create_fndecl_12083_fields cirrus_bo_create fndecl 2 12083 NULL
++d_size_size_entry_12084_fields d_size size_entry 0 12084 NULL
++nr_relocs_drm_nouveau_gem_pushbuf_12085_fields nr_relocs drm_nouveau_gem_pushbuf 0 12085 NULL
++security_socket_recvmsg_fndecl_12091_fields security_socket_recvmsg fndecl 0 12091 NULL
++nla_len_nlattr_12092_fields nla_len nlattr 0 12092 NULL nohasharray
++iwl_mvm_check_ratid_empty_fndecl_12092_fields iwl_mvm_check_ratid_empty fndecl 3 12092 &nla_len_nlattr_12092_fields
++n_posix_ace_state_array_12096_fields n posix_ace_state_array 0 12096 NULL
++pad_size_asd_flash_de_12100_fields pad_size asd_flash_de 0 12100 NULL
++lpfc_debugfs_dumpHostSlim_data_fndecl_12108_fields lpfc_debugfs_dumpHostSlim_data fndecl 0 12108 NULL nohasharray
++__ipgre_rcv_fndecl_12108_fields __ipgre_rcv fndecl 4 12108 &lpfc_debugfs_dumpHostSlim_data_fndecl_12108_fields
++mirror_array_cnt_nfs4_ff_layout_segment_12109_fields mirror_array_cnt nfs4_ff_layout_segment 0 12109 NULL
++length_framebuf_12110_fields length framebuf 0 12110 NULL nohasharray
++prism2_set_genericelement_fndecl_12110_fields prism2_set_genericelement fndecl 3 12110 &length_framebuf_12110_fields
++ocfs2_dio_get_block_fndecl_12116_fields ocfs2_dio_get_block fndecl 2 12116 NULL
++vb2_dc_get_userptr_fndecl_12119_fields vb2_dc_get_userptr fndecl 2-3 12119 NULL nohasharray
++get_num_tx_queues_rtnl_link_ops_12119_fields get_num_tx_queues rtnl_link_ops 0 12119 &vb2_dc_get_userptr_fndecl_12119_fields
++super_1_rdev_size_change_fndecl_12120_fields super_1_rdev_size_change fndecl 2 12120 NULL
++ies_len_network_info_12121_fields ies_len network_info 0 12121 NULL
++mwifiex_hscfg_write_fndecl_12125_fields mwifiex_hscfg_write fndecl 3 12125 NULL
++key_size_ccp_rsa_engine_12126_fields key_size ccp_rsa_engine 0 12126 NULL
++ProgRegShift_cfi_intelext_programming_regioninfo_12129_fields ProgRegShift cfi_intelext_programming_regioninfo 0 12129 NULL
++ext4_fiemap_fndecl_12131_fields ext4_fiemap fndecl 4-3 12131 NULL
++metablock_size_btrfsic_state_12137_fields metablock_size btrfsic_state 0 12137 NULL
++writeset_alloc_fndecl_12139_fields writeset_alloc fndecl 2 12139 NULL
++service_name_len_sockaddr_nfc_llcp_12145_fields service_name_len sockaddr_nfc_llcp 0 12145 NULL
++gfs2_rgrp_send_discards_fndecl_12149_fields gfs2_rgrp_send_discards fndecl 2 12149 NULL
++ql_is_link_full_dup_fndecl_12152_fields ql_is_link_full_dup fndecl 0 12152 NULL
++find_block_fndecl_12156_fields find_block fndecl 0-3 12156 NULL
++ip_vs_receive_fndecl_12161_fields ip_vs_receive fndecl 3 12161 NULL
++set_page_fndecl_12165_fields set_page fndecl 0 12165 NULL
++nfs42_proc_copy_fndecl_12169_fields nfs42_proc_copy fndecl 4 12169 NULL nohasharray
++__alloc_ei_netdev_fndecl_12169_fields __alloc_ei_netdev fndecl 1 12169 &nfs42_proc_copy_fndecl_12169_fields
++index_cosm_device_12170_fields index cosm_device 0 12170 NULL
++of_phandle_iterator_next_fndecl_12171_fields of_phandle_iterator_next fndecl 0 12171 NULL
++num_ch_nvm_id_group_12177_fields num_ch nvm_id_group 0 12177 NULL nohasharray
++brcmf_sdio_tx_ctrlframe_fndecl_12177_fields brcmf_sdio_tx_ctrlframe fndecl 3 12177 &num_ch_nvm_id_group_12177_fields
++hsqsize_nvme_rdma_cm_req_12178_fields hsqsize nvme_rdma_cm_req 0 12178 NULL
++rx_count_rx_header_12180_fields rx_count rx_header 0 12180 NULL
++default_file_splice_read_fndecl_12182_fields default_file_splice_read fndecl 4 12182 NULL
++nci_conn_max_data_pkt_payload_size_fndecl_12183_fields nci_conn_max_data_pkt_payload_size fndecl 0 12183 NULL
++se_callback_addr_len_nfsd4_setclientid_12186_fields se_callback_addr_len nfsd4_setclientid 0 12186 NULL
++alignment_acpi_resource_memory24_12188_fields alignment acpi_resource_memory24 0 12188 NULL
++max_qp_sz_mlx4_dev_cap_12189_fields max_qp_sz mlx4_dev_cap 0 12189 NULL
++tipc_max_domain_size_vardecl_12193_fields tipc_max_domain_size vardecl 0 12193 NULL
++handle_gk20a_instobj_dma_12206_fields handle gk20a_instobj_dma 0 12206 NULL
++lmc_crcSize_lmc___softc_12208_fields lmc_crcSize lmc___softc 0 12208 NULL
++length_cifs_io_parms_12209_fields length cifs_io_parms 0 12209 NULL
++vmci_transport_set_min_buffer_size_fndecl_12216_fields vmci_transport_set_min_buffer_size fndecl 2 12216 NULL
++virtscsi_kick_cmd_fndecl_12237_fields virtscsi_kick_cmd fndecl 3-4 12237 NULL
++btrfs_alloc_data_chunk_ondemand_fndecl_12238_fields btrfs_alloc_data_chunk_ondemand fndecl 0 12238 NULL
++generic_file_llseek_size_fndecl_12242_fields generic_file_llseek_size fndecl 2-5 12242 NULL
++synproxy_tstamp_adjust_fndecl_12243_fields synproxy_tstamp_adjust fndecl 2 12243 NULL
++tipc_bearer_mtu_fndecl_12247_fields tipc_bearer_mtu fndecl 0 12247 NULL
++max_pkt_size_em28xx_usb_bufs_12248_fields max_pkt_size em28xx_usb_bufs 0 12248 NULL
++write_block_fndecl_12253_fields write_block fndecl 3 12253 NULL
++hpfs_map_fnode_fndecl_12255_fields hpfs_map_fnode fndecl 2 12255 NULL
++endpoint_snd_usX2Y_substream_12267_fields endpoint snd_usX2Y_substream 0 12267 NULL
++cur_page_len_dio_submit_12271_fields cur_page_len dio_submit 0 12271 NULL
++sb_sectsize_xfs_sb_12294_fields sb_sectsize xfs_sb 0 12294 NULL
++ino_num_inode_management_12296_fields ino_num inode_management 0 12296 NULL
++bm_find_next_fndecl_12298_fields bm_find_next fndecl 0-2 12298 NULL
++size_btrfs_ioctl_logical_ino_args_12299_fields size btrfs_ioctl_logical_ino_args 0 12299 NULL
++max_y_fb_monspecs_12303_fields max_y fb_monspecs 0 12303 NULL
++hib_submit_io_fndecl_12308_fields hib_submit_io fndecl 3 12308 NULL
++hr_blocks_o2hb_region_12318_fields hr_blocks o2hb_region 0 12318 NULL nohasharray
++mthca_max_data_size_fndecl_12318_fields mthca_max_data_size fndecl 0-3 12318 &hr_blocks_o2hb_region_12318_fields
++length_sg_mapping_iter_12324_fields length sg_mapping_iter 0 12324 NULL nohasharray
++sctp_make_abort_violation_fndecl_12324_fields sctp_make_abort_violation fndecl 4 12324 &length_sg_mapping_iter_12324_fields
++ubifs_change_lp_fndecl_12325_fields ubifs_change_lp fndecl 3 12325 NULL
++no_of_triplet_mwifiex_802_11d_domain_reg_12326_fields no_of_triplet mwifiex_802_11d_domain_reg 0 12326 NULL
++s_log_block_size_nilfs_super_block_12332_fields s_log_block_size nilfs_super_block 0 12332 NULL
++read_regr_pi_protocol_12333_fields read_regr pi_protocol 0 12333 NULL
++status_w840_rx_desc_12335_fields status w840_rx_desc 0 12335 NULL nohasharray
++snd_hdac_bus_exec_verb_unlocked_fndecl_12335_fields snd_hdac_bus_exec_verb_unlocked fndecl 0 12335 &status_w840_rx_desc_12335_fields
++out_usbnet_12337_fields out usbnet 0 12337 NULL
++base_shift_iwl_fw_dbg_dest_tlv_12341_fields base_shift iwl_fw_dbg_dest_tlv 0 12341 NULL
++dccps_iss_dccp_sock_12346_fields dccps_iss dccp_sock 0 12346 NULL
++ocfs2_symlink_get_block_fndecl_12352_fields ocfs2_symlink_get_block fndecl 2 12352 NULL
++td_done_fndecl_12358_fields td_done fndecl 0 12358 NULL
++limit_scaled_size_lock_fndecl_12359_fields limit_scaled_size_lock fndecl 5-6 12359 NULL
++ioremap_uc_fndecl_12363_fields ioremap_uc fndecl 2-1 12363 NULL
++xb_blkno_ocfs2_xattr_block_12365_fields xb_blkno ocfs2_xattr_block 0 12365 NULL
++num_subdevs_v4l2_async_notifier_12368_fields num_subdevs v4l2_async_notifier 0 12368 NULL
++xfs_alloc_fixup_trees_fndecl_12372_fields xfs_alloc_fixup_trees fndecl 0 12372 NULL
++iscsi_segment_seek_sg_fndecl_12378_fields iscsi_segment_seek_sg fndecl 5-4 12378 NULL
++rx_prefix_size_efx_nic_12381_fields rx_prefix_size efx_nic 0 12381 NULL
++serial8250_port_size_fndecl_12384_fields serial8250_port_size fndecl 0 12384 NULL nohasharray
++if_usb_host_to_card_fndecl_12384_fields if_usb_host_to_card fndecl 4 12384 &serial8250_port_size_fndecl_12384_fields
++get_packet_pg_fndecl_12388_fields get_packet_pg fndecl 4 12388 NULL
++stb6100_write_reg_range_fndecl_12391_fields stb6100_write_reg_range fndecl 4 12391 NULL nohasharray
++frag_size_mlx4_en_frag_info_12391_fields frag_size mlx4_en_frag_info 0 12391 &stb6100_write_reg_range_fndecl_12391_fields
++data_segment_bytes_gru_create_context_req_12392_fields data_segment_bytes gru_create_context_req 0 12392 NULL
++num_ufbufs_vardecl_12394_fields num_ufbufs vardecl 0 12394 NULL
++buffer_size_zoran_buffer_col_12398_fields buffer_size zoran_buffer_col 0 12398 NULL
++ieee802154_alloc_hw_fndecl_12400_fields ieee802154_alloc_hw fndecl 1 12400 NULL
++acl_len_nfs_setaclargs_12402_fields acl_len nfs_setaclargs 0 12402 NULL
++length_iw_point_12404_fields length iw_point 0 12404 NULL
++reg_read_fndecl_12405_fields reg_read fndecl 4 12405 NULL
++p9_fd_write_fndecl_12417_fields p9_fd_write fndecl 3-0 12417 NULL
++dccp_insert_fn_opt_fndecl_12419_fields dccp_insert_fn_opt fndecl 5 12419 NULL
++len_SL_component_12428_fields len SL_component 0 12428 NULL
++ext4_quota_read_fndecl_12429_fields ext4_quota_read fndecl 5 12429 NULL
++pkey_tbl_len_ib_port_attr_12434_fields pkey_tbl_len ib_port_attr 0 12434 NULL
++hcd_priv_size_hc_driver_12440_fields hcd_priv_size hc_driver 0 12440 NULL
++radix_tree_load_root_fndecl_12442_fields radix_tree_load_root fndecl 0 12442 NULL nohasharray
++informationLength_fileEntry_12442_fields informationLength fileEntry 0 12442 &radix_tree_load_root_fndecl_12442_fields
++divisor_tc_sfq_qopt_12444_fields divisor tc_sfq_qopt 0 12444 NULL
++ie_len_cfg80211_connect_params_12446_fields ie_len cfg80211_connect_params 0 12446 NULL
++ceph_sync_write_fndecl_12447_fields ceph_sync_write fndecl 3-0 12447 NULL nohasharray
++u132_endp_urb_dequeue_fndecl_12447_fields u132_endp_urb_dequeue fndecl 4 12447 &ceph_sync_write_fndecl_12447_fields
++length_iwl_wipan_noa_attribute_12449_fields length iwl_wipan_noa_attribute 0 12449 NULL nohasharray
++GetRecvByte_fndecl_12449_fields GetRecvByte fndecl 0 12449 &length_iwl_wipan_noa_attribute_12449_fields
++len_qlcnic_flt_header_12450_fields len qlcnic_flt_header 0 12450 NULL
++rx_padding_usbatm_driver_12455_fields rx_padding usbatm_driver 0 12455 NULL
++platform_get_irq_fndecl_12459_fields platform_get_irq fndecl 0 12459 NULL
++keyspan_setup_urb_fndecl_12461_fields keyspan_setup_urb fndecl 6-3-2 12461 NULL
++num_cq_mthca_profile_12463_fields num_cq mthca_profile 0 12463 NULL
++tp_block_nr_tpacket_req_12465_fields tp_block_nr tpacket_req 0 12465 NULL
++num_leds_pca9532_chip_info_12471_fields num_leds pca9532_chip_info 0 12471 NULL
++tcp_cong_avoid_ai_fndecl_12478_fields tcp_cong_avoid_ai fndecl 2-3 12478 NULL
++ih_item_len_item_head_12495_fields ih_item_len item_head 0 12495 NULL nohasharray
++vgacon_adjust_height_fndecl_12495_fields vgacon_adjust_height fndecl 2 12495 &ih_item_len_item_head_12495_fields
++blk_update_nr_requests_fndecl_12497_fields blk_update_nr_requests fndecl 2 12497 NULL
++map_off_xfs_dir2_leaf_map_info_12499_fields map_off xfs_dir2_leaf_map_info 0 12499 NULL
++dccp_feat_valid_nn_length_fndecl_12500_fields dccp_feat_valid_nn_length fndecl 0 12500 NULL
++response_length_be_cmd_resp_hdr_12501_fields response_length be_cmd_resp_hdr 0 12501 NULL
++nclips_saa7134_dev_12507_fields nclips saa7134_dev 0 12507 NULL
++udlen_nft_set_12510_fields udlen nft_set 0 12510 NULL
++brcmf_chip_tcm_ramsize_fndecl_12513_fields brcmf_chip_tcm_ramsize fndecl 0 12513 NULL
++max_tchs_cyttsp4_sysinfo_ofs_12516_fields max_tchs cyttsp4_sysinfo_ofs 0 12516 NULL
++madvise_dontneed_fndecl_12517_fields madvise_dontneed fndecl 3-4 12517 NULL
++alloc_skb_with_frags_fndecl_12518_fields alloc_skb_with_frags fndecl 2 12518 NULL nohasharray
++num_pointers_whc_std_12518_fields num_pointers whc_std 0 12518 &alloc_skb_with_frags_fndecl_12518_fields
++video_read_fndecl_12519_fields video_read fndecl 3 12519 NULL
++index_mtd_info_12524_fields index mtd_info 0 12524 NULL
++al_tr_number_to_on_disk_sector_fndecl_12526_fields al_tr_number_to_on_disk_sector fndecl 0 12526 NULL
++depth_fb_image_12530_fields depth fb_image 0 12530 NULL
++lpc_sch_populate_cell_fndecl_12532_fields lpc_sch_populate_cell fndecl 5-4-6 12532 NULL
++write_isowbuf_t_12533_fields write isowbuf_t 0 12533 NULL
++m25p80_read_reg_fndecl_12535_fields m25p80_read_reg fndecl 4 12535 NULL
++qword_get_fndecl_12549_fields qword_get fndecl 0 12549 NULL
++recv_dless_read_fndecl_12554_fields recv_dless_read fndecl 4 12554 NULL
++qnx6_readpages_fndecl_12570_fields qnx6_readpages fndecl 4 12570 NULL
++address_length_acpi_resource_memory32_12576_fields address_length acpi_resource_memory32 0 12576 NULL
++rate_den_snd_pcm_hw_params_12586_fields rate_den snd_pcm_hw_params 0 12586 NULL
++acpi_tb_acquire_temp_table_fndecl_12590_fields acpi_tb_acquire_temp_table fndecl 2 12590 NULL nohasharray
++raid_disk_md_rdev_12590_fields raid_disk md_rdev 0 12590 &acpi_tb_acquire_temp_table_fndecl_12590_fields
++pt1_nr_tables_vardecl_pt1_c_12591_fields pt1_nr_tables vardecl_pt1.c 0 12591 NULL
++pci_scan_root_bus_msi_fndecl_12593_fields pci_scan_root_bus_msi fndecl 2 12593 NULL nohasharray
++offset_rvt_mregion_12593_fields offset rvt_mregion 0 12593 &pci_scan_root_bus_msi_fndecl_12593_fields
++pn544_hci_probe_fndecl_12594_fields pn544_hci_probe fndecl 6-4 12594 NULL
++dev_rsize_hid_device_12597_fields dev_rsize hid_device 0 12597 NULL
++sx_fb_copyarea_12600_fields sx fb_copyarea 0 12600 NULL
++wqe_sz_mlx5e_rq_12601_fields wqe_sz mlx5e_rq 0 12601 NULL
++desc_shift_orangefs_bufmap_12603_fields desc_shift orangefs_bufmap 0 12603 NULL
++blk_limits_io_opt_fndecl_12606_fields blk_limits_io_opt fndecl 2 12606 NULL
++a4t_cs_init_fndecl_12613_fields a4t_cs_init fndecl 3 12613 NULL
++pty_vivid_rds_gen_12619_fields pty vivid_rds_gen 0 12619 NULL
++maxpacket_r8a66597_td_12628_fields maxpacket r8a66597_td 0 12628 NULL
++nilfs_btnode_submit_block_fndecl_12635_fields nilfs_btnode_submit_block fndecl 3-2 12635 NULL nohasharray
++length_wep_key_12635_fields length wep_key 0 12635 &nilfs_btnode_submit_block_fndecl_12635_fields
++xfs_dir2_block_sfsize_fndecl_12636_fields xfs_dir2_block_sfsize fndecl 0 12636 NULL
++pattern_len_cfg80211_pkt_pattern_12639_fields pattern_len cfg80211_pkt_pattern 0 12639 NULL nohasharray
++reg_w_buf_fndecl_12639_fields reg_w_buf fndecl 3 12639 &pattern_len_cfg80211_pkt_pattern_12639_fields
++current_count_sectors_vardecl_floppy_c_12647_fields current_count_sectors vardecl_floppy.c 0 12647 NULL nohasharray
++size_of_pci_range_12647_fields size of_pci_range 0 12647 &current_count_sectors_vardecl_floppy_c_12647_fields
++local_nentries_xpc_openclose_args_12648_fields local_nentries xpc_openclose_args 0 12648 NULL
++fdir_pf_active_filters_i40e_pf_12654_fields fdir_pf_active_filters i40e_pf 0 12654 NULL
++sl_encaps_fndecl_12658_fields sl_encaps fndecl 3 12658 NULL
++get_index_fndecl_12660_fields get_index fndecl 0 12660 NULL
++onenand_transfer_auto_oob_fndecl_12663_fields onenand_transfer_auto_oob fndecl 3 12663 NULL
++linear_hugepage_index_fndecl_12664_fields linear_hugepage_index fndecl 0-2 12664 NULL
++sg_offset_iscsi_segment_12667_fields sg_offset iscsi_segment 0 12667 NULL
++beacon_buf_size_mwifiex_bssdescriptor_12674_fields beacon_buf_size mwifiex_bssdescriptor 0 12674 NULL nohasharray
++last_page_snd_trident_memblk_arg_12674_fields last_page snd_trident_memblk_arg 0 12674 &beacon_buf_size_mwifiex_bssdescriptor_12674_fields
++doorbell_base_kfd_dev_12677_fields doorbell_base kfd_dev 0 12677 NULL
++eeec_entry_sz_mthca_dev_lim_12679_fields eeec_entry_sz mthca_dev_lim 0 12679 NULL
++HST_kyrofb_info_12685_fields HST kyrofb_info 0 12685 NULL
++src_height_tpg_data_12686_fields src_height tpg_data 0 12686 NULL
++ttm_object_file_init_fndecl_12687_fields ttm_object_file_init fndecl 2 12687 NULL
++ns_nsegments_the_nilfs_12690_fields ns_nsegments the_nilfs 0 12690 NULL
++dn_neigh_elist_fndecl_12712_fields dn_neigh_elist fndecl 0 12712 NULL
++total_len_ocrdma_hdr_wqe_12714_fields total_len ocrdma_hdr_wqe 0 12714 NULL
++rdma_rw_init_mr_wrs_fndecl_12719_fields rdma_rw_init_mr_wrs fndecl 7 12719 NULL
++ss_in_channels_hdsp_12726_fields ss_in_channels hdsp 0 12726 NULL nohasharray
++apbt_address_vardecl_apb_timer_c_12726_fields apbt_address vardecl_apb_timer.c 0 12726 &ss_in_channels_hdsp_12726_fields
++btrfs_truncate_item_fndecl_12731_fields btrfs_truncate_item fndecl 3 12731 NULL
++xfs_iomap_write_direct_fndecl_12733_fields xfs_iomap_write_direct fndecl 2 12733 NULL
++count_nfsd3_readres_12745_fields count nfsd3_readres 0 12745 NULL
++aead_assoclen_aead_ctx_12755_fields aead_assoclen aead_ctx 0 12755 NULL nohasharray
++nfsd4_encode_splice_read_fndecl_12755_fields nfsd4_encode_splice_read fndecl 4 12755 &aead_assoclen_aead_ctx_12755_fields
++reserve_memtype_fndecl_12762_fields reserve_memtype fndecl 1-2 12762 NULL
++offset_kcm_rx_msg_12764_fields offset kcm_rx_msg 0 12764 NULL
++wl1251_sdio_read_fndecl_12773_fields wl1251_sdio_read fndecl 4 12773 NULL
++rx_max_pg_ring_bnx2_12789_fields rx_max_pg_ring bnx2 0 12789 NULL
++sb_fseg_start_nilfs_segment_buffer_12802_fields sb_fseg_start nilfs_segment_buffer 0 12802 NULL
++mpage_readpages_fndecl_12807_fields mpage_readpages fndecl 3 12807 NULL
++object_num_mxt_info_12810_fields object_num mxt_info 0 12810 NULL
++psn_rxe_req_info_12812_fields psn rxe_req_info 0 12812 NULL
++new_stripe_sectors_dm_raid_superblock_12813_fields new_stripe_sectors dm_raid_superblock 0 12813 NULL
++subdev_ioctl_fndecl_12818_fields subdev_ioctl fndecl 2 12818 NULL
++xen_pirq_from_irq_fndecl_12820_fields xen_pirq_from_irq fndecl 0 12820 NULL
++__videobuf_mmap_setup_fndecl_12822_fields __videobuf_mmap_setup fndecl 3-0 12822 NULL
++falcon_spi_device_init_fndecl_12835_fields falcon_spi_device_init fndecl 4 12835 NULL
++xfs_rtfind_back_fndecl_12849_fields xfs_rtfind_back fndecl 3-0 12849 NULL
++rx_buffer_size_macb_12864_fields rx_buffer_size macb 0 12864 NULL
++snd_interval_refine_max_fndecl_12865_fields snd_interval_refine_max fndecl 2 12865 NULL
++badblockpos_bbm_info_12867_fields badblockpos bbm_info 0 12867 NULL
++frameoffset_b43legacy_dmaring_12869_fields frameoffset b43legacy_dmaring 0 12869 NULL
++dt_remember_or_free_map_fndecl_12872_fields dt_remember_or_free_map fndecl 5 12872 NULL
++max_ddbs_hw_profile_12873_fields max_ddbs hw_profile 0 12873 NULL
++tcp_remove_reno_sacks_fndecl_12874_fields tcp_remove_reno_sacks fndecl 2 12874 NULL
++rx_buf_size_qede_rx_queue_12878_fields rx_buf_size qede_rx_queue 0 12878 NULL
++length_i2c_hid_cmd_12879_fields length i2c_hid_cmd 0 12879 NULL
++response_length_ib_uverbs_ex_create_cq_resp_12889_fields response_length ib_uverbs_ex_create_cq_resp 0 12889 NULL
++udp_uncompress_fndecl_12890_fields udp_uncompress fndecl 2 12890 NULL
++offset_ceph_dentry_info_12896_fields offset ceph_dentry_info 0 12896 NULL
++early_init_dt_alloc_memory_arch_fndecl_12899_fields early_init_dt_alloc_memory_arch fndecl 2-1 12899 NULL
++ccw_cursor_fndecl_12903_fields ccw_cursor fndecl 4 12903 NULL
++capinc_tty_write_fndecl_12904_fields capinc_tty_write fndecl 3 12904 NULL
++physaddr_hfi1_devdata_12906_fields physaddr hfi1_devdata 0 12906 NULL nohasharray
++add_children_fndecl_12906_fields add_children fndecl 2 12906 &physaddr_hfi1_devdata_12906_fields
++max_reportid_mxt_data_12917_fields max_reportid mxt_data 0 12917 NULL
++m_lblk_ext4_map_blocks_12920_fields m_lblk ext4_map_blocks 0 12920 NULL
++qs_out_channels_hdspm_12922_fields qs_out_channels hdspm 0 12922 NULL
++idetape_mtioctop_fndecl_12923_fields idetape_mtioctop fndecl 3 12923 NULL
++ath6kl_wmi_disconnect_cmd_fndecl_12926_fields ath6kl_wmi_disconnect_cmd fndecl 2 12926 NULL
++asymmetric_verify_fndecl_12932_fields asymmetric_verify fndecl 3 12932 NULL
++ext4_split_extent_at_fndecl_12936_fields ext4_split_extent_at fndecl 4 12936 NULL
++vlan_id_vlan_dev_priv_12939_fields vlan_id vlan_dev_priv 0 12939 NULL
++xlog_clear_stale_blocks_fndecl_12940_fields xlog_clear_stale_blocks fndecl 2 12940 NULL
++phys_pud_init_fndecl_12941_fields phys_pud_init fndecl 0-2-3 12941 NULL
++gfs2_meta_indirect_buffer_fndecl_12942_fields gfs2_meta_indirect_buffer fndecl 3 12942 NULL
++get_rate_snd_ice1712_12947_fields get_rate snd_ice1712 0 12947 NULL
++st_nci_se_io_fndecl_12948_fields st_nci_se_io fndecl 4 12948 NULL
++vb2_dc_attach_dmabuf_fndecl_12950_fields vb2_dc_attach_dmabuf fndecl 3 12950 NULL nohasharray
++nr_segments_blkif_request_rw_12950_fields nr_segments blkif_request_rw 0 12950 &vb2_dc_attach_dmabuf_fndecl_12950_fields
++verity_verify_level_fndecl_12951_fields verity_verify_level fndecl 0 12951 NULL
++dom_size_fndecl_12958_fields dom_size fndecl 0 12958 NULL
++vm_start_vm_area_struct_12960_fields vm_start vm_area_struct 0 12960 NULL
++data_pipe_mts_transfer_context_12962_fields data_pipe mts_transfer_context 0 12962 NULL
++apei_exec_ctx_set_input_fndecl_12968_fields apei_exec_ctx_set_input fndecl 2 12968 NULL
++clone_update_extent_map_fndecl_12984_fields clone_update_extent_map fndecl 4-5 12984 NULL
++rohm_i2c_burst_read_fndecl_12996_fields rohm_i2c_burst_read fndecl 4 12996 NULL
++xdr_reserve_space_fndecl_12997_fields xdr_reserve_space fndecl 2 12997 NULL
++end_file_extent_cluster_13001_fields end file_extent_cluster 0 13001 NULL
++pm3fb_size_memory_fndecl_13002_fields pm3fb_size_memory fndecl 0 13002 NULL
++gfs2_fsync_fndecl_13014_fields gfs2_fsync fndecl 2-3 13014 NULL nohasharray
++mcp795_rtcc_write_fndecl_13014_fields mcp795_rtcc_write fndecl 4 13014 &gfs2_fsync_fndecl_13014_fields
++sg_alloc_table_from_pages_fndecl_13015_fields sg_alloc_table_from_pages fndecl 5-4 13015 NULL
++arg_end_mm_struct_13016_fields arg_end mm_struct 0 13016 NULL
++mp_override_legacy_irq_fndecl_13017_fields mp_override_legacy_irq fndecl 4 13017 NULL
++do_mbind_fndecl_13022_fields do_mbind fndecl 2-1 13022 NULL
++format_supported_num_intel_sdvo_connector_13024_fields format_supported_num intel_sdvo_connector 0 13024 NULL
++__free_memory_core_fndecl_13029_fields __free_memory_core fndecl 0-1-2 13029 NULL
++copy_align_dma_device_13054_fields copy_align dma_device 0 13054 NULL
++sco_sock_recvmsg_fndecl_13055_fields sco_sock_recvmsg fndecl 3 13055 NULL
++hfront_porch_videomode_13056_fields hfront_porch videomode 0 13056 NULL
++p_offset_elf64_phdr_13061_fields p_offset elf64_phdr 0 13061 NULL
++xfs_bunmapi_fndecl_13063_fields xfs_bunmapi fndecl 3-4 13063 NULL
++__ocfs2_dx_dir_leaf_insert_fndecl_13066_fields __ocfs2_dx_dir_leaf_insert fndecl 4 13066 NULL
++read_disk_sb_fndecl_13071_fields read_disk_sb fndecl 2 13071 NULL
++amd756_ioport_vardecl_i2c_amd756_c_13072_fields amd756_ioport vardecl_i2c-amd756.c 0 13072 NULL
++first_p2m_pfn_start_info_13081_fields first_p2m_pfn start_info 0 13081 NULL
++envc_tomoyo_condition_13082_fields envc tomoyo_condition 0 13082 NULL
++c4iw_reject_cr_fndecl_13085_fields c4iw_reject_cr fndecl 3 13085 NULL
++hard_mtu_usbnet_13093_fields hard_mtu usbnet 0 13093 NULL nohasharray
++cursg_ofs_ide_cmd_13093_fields cursg_ofs ide_cmd 0 13093 &hard_mtu_usbnet_13093_fields
++set_wep_key_fndecl_13094_fields set_wep_key fndecl 4 13094 NULL
++ocfs2_cow_sync_writeback_fndecl_13102_fields ocfs2_cow_sync_writeback fndecl 3-4 13102 NULL nohasharray
++user_trans_num_acl_subject_label_13102_fields user_trans_num acl_subject_label 0 13102 &ocfs2_cow_sync_writeback_fndecl_13102_fields
++__qp_memcpy_from_queue_fndecl_13103_fields __qp_memcpy_from_queue fndecl 4-3 13103 NULL
++cx24117_readregN_fndecl_13105_fields cx24117_readregN fndecl 4 13105 NULL
++num_qp_mlx4_profile_13106_fields num_qp mlx4_profile 0 13106 NULL
++au_verfsize_rpc_auth_13110_fields au_verfsize rpc_auth 0 13110 NULL
++wIELength_uwb_rc_evt_drp_WUSB_0100_13117_fields wIELength uwb_rc_evt_drp_WUSB_0100 0 13117 NULL nohasharray
++DecodeMatrix_fndecl_13117_fields DecodeMatrix fndecl 0 13117 &wIELength_uwb_rc_evt_drp_WUSB_0100_13117_fields
++source_pad_adv76xx_state_13133_fields source_pad adv76xx_state 0 13133 NULL
++genwqe_sriov_configure_fndecl_13139_fields genwqe_sriov_configure fndecl 2 13139 NULL
++mousedev_reserve_minor_fndecl_13143_fields mousedev_reserve_minor fndecl 0 13143 NULL
++viafb_bpp_vardecl_viafbdev_c_13145_fields viafb_bpp vardecl_viafbdev.c 0 13145 NULL
++max_response_packet_size_ec_response_get_protocol_info_13148_fields max_response_packet_size ec_response_get_protocol_info 0 13148 NULL
++key_affs_ext_key_13149_fields key affs_ext_key 0 13149 NULL
++calc_available_memory_size_fndecl_13151_fields calc_available_memory_size fndecl 0 13151 NULL
++EraseUnitSize_erase_unit_header_t_13154_fields EraseUnitSize erase_unit_header_t 0 13154 NULL nohasharray
++len_mtd_write_req_13154_fields len mtd_write_req 0 13154 &EraseUnitSize_erase_unit_header_t_13154_fields
++header_size_dw_guc_css_header_13157_fields header_size_dw guc_css_header 0 13157 NULL
++num_pg_nvm_id_group_13160_fields num_pg nvm_id_group 0 13160 NULL
++nr_possible_cpus_uv_hub_info_s_13164_fields nr_possible_cpus uv_hub_info_s 0 13164 NULL
++hpfs_add_to_dnode_fndecl_13167_fields hpfs_add_to_dnode fndecl 4-2 13167 NULL
++len_rsv_13186_fields len rsv 0 13186 NULL nohasharray
++nouveau_compat_ioctl_fndecl_13186_fields nouveau_compat_ioctl fndecl 2 13186 &len_rsv_13186_fields
++blocksize_f2fs_sb_info_13191_fields blocksize f2fs_sb_info 0 13191 NULL
++pos_out_f2fs_move_range_13192_fields pos_out f2fs_move_range 0 13192 NULL
++generic_access_phys_fndecl_13197_fields generic_access_phys fndecl 2-4 13197 NULL
++roots_dm_verity_fec_13203_fields roots dm_verity_fec 0 13203 NULL
++buf_size_in_bytes_kfd_ioctl_dbg_address_watch_args_13210_fields buf_size_in_bytes kfd_ioctl_dbg_address_watch_args 0 13210 NULL
++height_usbtv_13217_fields height usbtv 0 13217 NULL nohasharray
++vmd_find_free_domain_fndecl_13217_fields vmd_find_free_domain fndecl 0 13217 &height_usbtv_13217_fields
++create_boot_cache_fndecl_13218_fields create_boot_cache fndecl 3 13218 NULL
++total_xfer_len_sas_task_13219_fields total_xfer_len sas_task 0 13219 NULL
++ath5k_common_padpos_fndecl_13221_fields ath5k_common_padpos fndecl 0 13221 NULL
++tcp_copy_to_iovec_fndecl_13227_fields tcp_copy_to_iovec fndecl 3 13227 NULL
++len_hi_sigma_action_13229_fields len_hi sigma_action 0 13229 NULL
++mtdram_init_device_fndecl_13236_fields mtdram_init_device fndecl 3 13236 NULL
++ipxitf_alloc_fndecl_13238_fields ipxitf_alloc fndecl 6 13238 NULL
++max_mthca_wq_13240_fields max mthca_wq 0 13240 NULL
++update_sge_fndecl_13245_fields update_sge fndecl 2 13245 NULL
++sq_psn_ib_qp_attr_13249_fields sq_psn ib_qp_attr 0 13249 NULL
++dst_base_apei_exec_context_13252_fields dst_base apei_exec_context 0 13252 NULL
++maxsize_p9_trans_module_13254_fields maxsize p9_trans_module 0 13254 NULL
++drvinfo_sz_rtl8xxxu_rxdesc24_13257_fields drvinfo_sz rtl8xxxu_rxdesc24 0 13257 NULL
++pid_filter_count_dvb_usb_adapter_properties_13258_fields pid_filter_count dvb_usb_adapter_properties 0 13258 NULL
++blocklen_bytes_drbg_core_13259_fields blocklen_bytes drbg_core 0 13259 NULL nohasharray
++maxid_scif_info_13259_fields maxid scif_info 0 13259 &blocklen_bytes_drbg_core_13259_fields
++rsp_pay_size_qlcnic_bc_trans_13274_fields rsp_pay_size qlcnic_bc_trans 0 13274 NULL
++xfs_iomap_write_unwritten_fndecl_13278_fields xfs_iomap_write_unwritten fndecl 3-2 13278 NULL
++status_usb_iso_packet_descriptor_13287_fields status usb_iso_packet_descriptor 0 13287 NULL
++num_bytes_sigma_fw_chunk_control_13289_fields num_bytes sigma_fw_chunk_control 0 13289 NULL
++ioc_plen1_libcfs_ioctl_data_13297_fields ioc_plen1 libcfs_ioctl_data 0 13297 NULL
++sys_writev_fndecl_13299_fields sys_writev fndecl 3 13299 NULL
++alloc_page_buffers_fndecl_13304_fields alloc_page_buffers fndecl 2 13304 NULL
++__vhost_get_user_fndecl_13313_fields __vhost_get_user fndecl 3 13313 NULL
++token_size_iw_ioctl_description_13319_fields token_size iw_ioctl_description 0 13319 NULL
++gfs2_submit_bhs_fndecl_13320_fields gfs2_submit_bhs fndecl 4 13320 NULL
++slhc_uncompress_fndecl_13322_fields slhc_uncompress fndecl 0-3 13322 NULL
++skb_zerocopy_headlen_fndecl_13325_fields skb_zerocopy_headlen fndecl 0 13325 NULL
++ver_tid_offset_hfi1_kdeth_header_13330_fields ver_tid_offset hfi1_kdeth_header 0 13330 NULL
++csum_and_copy_from_iter_fndecl_13338_fields csum_and_copy_from_iter fndecl 2 13338 NULL
++copy_buffer_fndecl_13339_fields copy_buffer fndecl 1-2-3 13339 NULL
++compat_mtw_from_user_fndecl_13351_fields compat_mtw_from_user fndecl 0 13351 NULL
++subctxt_cnt_hfi1_ctxtdata_13355_fields subctxt_cnt hfi1_ctxtdata 0 13355 NULL
++carl9170_handle_mpdu_fndecl_13359_fields carl9170_handle_mpdu fndecl 3 13359 NULL
++data_len_user_sdma_request_13365_fields data_len user_sdma_request 0 13365 NULL nohasharray
++unit_mddev_13365_fields unit mddev 0 13365 &data_len_user_sdma_request_13365_fields
++ihl_iphdr_13367_fields ihl iphdr 0 13367 NULL
++len_nft_payload_set_13371_fields len nft_payload_set 0 13371 NULL
++ep_response_mts_desc_13372_fields ep_response mts_desc 0 13372 NULL
++num_pages_ttm_tt_13376_fields num_pages ttm_tt 0 13376 NULL
++xfs_trans_alloc_fndecl_13381_fields xfs_trans_alloc fndecl 3-0 13381 NULL
++ds_in_channels_hdspm_13382_fields ds_in_channels hdspm 0 13382 NULL
++rules_all_snd_pcm_hw_constraints_13387_fields rules_all snd_pcm_hw_constraints 0 13387 NULL
++chunk_size_lirc_buffer_13388_fields chunk_size lirc_buffer 0 13388 NULL
++beep_amp_conexant_spec_13390_fields beep_amp conexant_spec 0 13390 NULL
++ic_offset_xlog_in_core_13393_fields ic_offset xlog_in_core 0 13393 NULL nohasharray
++cmdsts__BufferDesc_13393_fields cmdsts _BufferDesc 0 13393 &ic_offset_xlog_in_core_13393_fields
++memblock_add_fndecl_13394_fields memblock_add fndecl 1-2 13394 NULL
++nfs42_fallocate_fndecl_13396_fields nfs42_fallocate fndecl 3-4 13396 NULL
++i_size_write_fndecl_13397_fields i_size_write fndecl 2 13397 NULL nohasharray
++mp_payload_len_fcoe_mp_rsp_union_13397_fields mp_payload_len fcoe_mp_rsp_union 0 13397 &i_size_write_fndecl_13397_fields
++microread_probe_fndecl_13400_fields microread_probe fndecl 6-4 13400 NULL nohasharray
++slgt_device_count_vardecl_synclink_gt_c_13400_fields slgt_device_count vardecl_synclink_gt.c 0 13400 &microread_probe_fndecl_13400_fields
++rmmio_base_cirrus_device_13402_fields rmmio_base cirrus_device 0 13402 NULL
++nfs_proc_readlink_fndecl_13404_fields nfs_proc_readlink fndecl 4-3 13404 NULL
++subdevices_count_snd_rawmidi_info_13408_fields subdevices_count snd_rawmidi_info 0 13408 NULL
++add_free_nid_fndecl_13412_fields add_free_nid fndecl 2 13412 NULL
++extra_len_request_13419_fields extra_len request 0 13419 NULL
++cp210x_write_reg_block_fndecl_13420_fields cp210x_write_reg_block fndecl 4 13420 NULL
++i2c_smbus_xfer_fndecl_13421_fields i2c_smbus_xfer fndecl 0 13421 NULL
++tx_headroom_ieee80211_local_13423_fields tx_headroom ieee80211_local 0 13423 NULL
++do_direct_IO_fndecl_13424_fields do_direct_IO fndecl 0 13424 NULL
++mtd_ooblayout_set_bytes_fndecl_13425_fields mtd_ooblayout_set_bytes fndecl 4 13425 NULL
++di_nblocks_xfs_icdinode_13426_fields di_nblocks xfs_icdinode 0 13426 NULL
++get_origin_minimum_chunksize_fndecl_13432_fields get_origin_minimum_chunksize fndecl 0 13432 NULL
++promote_fndecl_13442_fields promote fndecl 4-3 13442 NULL nohasharray
++mwifiex_memrw_write_fndecl_13442_fields mwifiex_memrw_write fndecl 3 13442 &promote_fndecl_13442_fields
++nports_adapter_params_13446_fields nports adapter_params 0 13446 NULL
++fill_read_buf_fndecl_13455_fields fill_read_buf fndecl 0 13455 NULL
++max_eq_mlx4_func_cap_13461_fields max_eq mlx4_func_cap 0 13461 NULL nohasharray
++me_start_ocfs2_move_extents_13461_fields me_start ocfs2_move_extents 0 13461 &max_eq_mlx4_func_cap_13461_fields
++flaglen_ring_desc_13468_fields flaglen ring_desc 0 13468 NULL
++ufs_alloc_fragments_fndecl_13472_fields ufs_alloc_fragments fndecl 2-0 13472 NULL
++height_bttv_fh_13473_fields height bttv_fh 0 13473 NULL
++multipath_end_bh_io_fndecl_13474_fields multipath_end_bh_io fndecl 2 13474 NULL
++req_ie_length_ndis_80211_assoc_info_13477_fields req_ie_length ndis_80211_assoc_info 0 13477 NULL
++n_regulators_da9063_dev_model_13479_fields n_regulators da9063_dev_model 0 13479 NULL
++ext4_convert_unwritten_extents_fndecl_13483_fields ext4_convert_unwritten_extents fndecl 3-4 13483 NULL
++size_jffs2_full_dnode_13487_fields size jffs2_full_dnode 0 13487 NULL
++sk_datalen_svc_sock_13490_fields sk_datalen svc_sock 0 13490 NULL nohasharray
++i_section_size_iso_inode_info_13490_fields i_section_size iso_inode_info 0 13490 &sk_datalen_svc_sock_13490_fields
++dax_dev_pmd_fault_fndecl_13498_fields dax_dev_pmd_fault fndecl 2 13498 NULL
++curchunk_len_drm_dp_sideband_msg_rx_13501_fields curchunk_len drm_dp_sideband_msg_rx 0 13501 NULL
++sendpage_proto_ops_13505_fields sendpage proto_ops 0 13505 NULL
++il4965_txq_check_empty_fndecl_13515_fields il4965_txq_check_empty fndecl 3 13515 NULL
++scif_vreadfrom_fndecl_13516_fields scif_vreadfrom fndecl 4-3 13516 NULL
++len_unix_address_13517_fields len unix_address 0 13517 NULL nohasharray
++max_channels_cmipci_13517_fields max_channels cmipci 0 13517 &len_unix_address_13517_fields
++av_buf_head_dccp_ackvec_13528_fields av_buf_head dccp_ackvec 0 13528 NULL
++max_index_rxe_type_info_13532_fields max_index rxe_type_info 0 13532 NULL
++max_ws_blocks_scsi_disk_13533_fields max_ws_blocks scsi_disk 0 13533 NULL
++find_rsb_nodir_fndecl_13537_fields find_rsb_nodir fndecl 3 13537 NULL
++nes_reg_user_mr_fndecl_13553_fields nes_reg_user_mr fndecl 2-3 13553 NULL nohasharray
++nvme_trans_send_download_fw_cmd_fndecl_13553_fields nvme_trans_send_download_fw_cmd fndecl 4 13553 &nes_reg_user_mr_fndecl_13553_fields
++context_id_fcoe_kwqe_conn_destroy_13555_fields context_id fcoe_kwqe_conn_destroy 0 13555 NULL
++__devcgroup_inode_permission_fndecl_13559_fields __devcgroup_inode_permission fndecl 0 13559 NULL nohasharray
++retrans_out_tcp_sock_13559_fields retrans_out tcp_sock 0 13559 &__devcgroup_inode_permission_fndecl_13559_fields nohasharray
++iomap_apply_fndecl_13559_fields iomap_apply fndecl 0 13559 &retrans_out_tcp_sock_13559_fields
++capture_periodsize_rme96_13564_fields capture_periodsize rme96 0 13564 NULL
++edt_ft5x06_ts_readwrite_fndecl_13570_fields edt_ft5x06_ts_readwrite fndecl 2-4 13570 NULL
++pitch_drm_mode_create_dumb_13574_fields pitch drm_mode_create_dumb 0 13574 NULL nohasharray
++amdtp_stream_get_max_payload_fndecl_13574_fields amdtp_stream_get_max_payload fndecl 0 13574 &pitch_drm_mode_create_dumb_13574_fields
++fd_do_prot_fill_fndecl_13583_fields fd_do_prot_fill fndecl 5-3 13583 NULL
++ring_size_r600_ih_13586_fields ring_size r600_ih 0 13586 NULL
++ceph_renew_caps_fndecl_13593_fields ceph_renew_caps fndecl 0 13593 NULL nohasharray
++lines_nvkm_gpio_func_13593_fields lines nvkm_gpio_func 0 13593 &ceph_renew_caps_fndecl_13593_fields nohasharray
++vfio_info_cap_add_fndecl_13593_fields vfio_info_cap_add fndecl 2 13593 &lines_nvkm_gpio_func_13593_fields
++__skb_flow_dissect_fndecl_13594_fields __skb_flow_dissect fndecl 6 13594 NULL nohasharray
++video_v_start_saa7134_tvnorm_13594_fields video_v_start saa7134_tvnorm 0 13594 &__skb_flow_dissect_fndecl_13594_fields
++sysctl_wmem_default_vardecl_13596_fields sysctl_wmem_default vardecl 0 13596 NULL
++fb_x_vmw_fb_par_13597_fields fb_x vmw_fb_par 0 13597 NULL
++size_drm_mm_node_13605_fields size drm_mm_node 0 13605 NULL
++id_pcap_subdev_13609_fields id pcap_subdev 0 13609 NULL
++size_sm501_mem_13611_fields size sm501_mem 0 13611 NULL
++nvoices_snd_seq_oss_reg_13613_fields nvoices snd_seq_oss_reg 0 13613 NULL
++us122l_start_fndecl_13617_fields us122l_start fndecl 2-3 13617 NULL
++softback_top_vardecl_fbcon_c_13621_fields softback_top vardecl_fbcon.c 0 13621 NULL nohasharray
++mpt_entry_sz_mthca_dev_lim_13621_fields mpt_entry_sz mthca_dev_lim 0 13621 &softback_top_vardecl_fbcon_c_13621_fields
++desc_size_efi_memory_map_13622_fields desc_size efi_memory_map 0 13622 NULL
++num_mgms_mthca_limits_13629_fields num_mgms mthca_limits 0 13629 NULL
++w5100_probe_fndecl_13635_fields w5100_probe fndecl 3 13635 NULL
++x1_drm_clip_rect_13637_fields x1 drm_clip_rect 0 13637 NULL
++xenbus_map_ring_valloc_hvm_fndecl_13638_fields xenbus_map_ring_valloc_hvm fndecl 3 13638 NULL
++nbytes_ata_queued_cmd_13642_fields nbytes ata_queued_cmd 0 13642 NULL
++npools_svc_pool_map_13643_fields npools svc_pool_map 0 13643 NULL nohasharray
++nilfs_compute_checksum_fndecl_13643_fields nilfs_compute_checksum fndecl 6 13643 &npools_svc_pool_map_13643_fields
++number_mdp_device_descriptor_s_13645_fields number mdp_device_descriptor_s 0 13645 NULL
++unicast_mac_count_be_nic_res_desc_13650_fields unicast_mac_count be_nic_res_desc 0 13650 NULL
++page_len_xdr_buf_13652_fields page_len xdr_buf 0 13652 NULL
++width_s2255_vc_13661_fields width s2255_vc 0 13661 NULL
++length_rbd_img_request_13674_fields length rbd_img_request 0 13674 NULL
++vsync_psb_pipe_13675_fields vsync psb_pipe 0 13675 NULL
++fixup_pmc551_fndecl_13679_fields fixup_pmc551 fndecl 0 13679 NULL
++nfc_hci_send_cmd_async_fndecl_13680_fields nfc_hci_send_cmd_async fndecl 5 13680 NULL
++receive_big_fndecl_13686_fields receive_big fndecl 5 13686 NULL
++writing_osst_buffer_13689_fields writing osst_buffer 0 13689 NULL
++hpfs_free_sectors_fndecl_13696_fields hpfs_free_sectors fndecl 3 13696 NULL
++skb_size_qlcnic_host_rds_ring_13698_fields skb_size qlcnic_host_rds_ring 0 13698 NULL
++bos_desc_fndecl_13715_fields bos_desc fndecl 0 13715 NULL
++valuelen_lo_extended_attribute_13722_fields valuelen_lo extended_attribute 0 13722 NULL
++wsm_buf_reserve_fndecl_13730_fields wsm_buf_reserve fndecl 2 13730 NULL
++channels_max_snd_soc_pcm_stream_13737_fields channels_max snd_soc_pcm_stream 0 13737 NULL nohasharray
++mfd_add_device_fndecl_13737_fields mfd_add_device fndecl 6-2 13737 &channels_max_snd_soc_pcm_stream_13737_fields
++nr_segments_vscsiif_request_13741_fields nr_segments vscsiif_request 0 13741 NULL
++len_tcf_em_nbyte_13742_fields len tcf_em_nbyte 0 13742 NULL
++write_pipe_ezusb_priv_13743_fields write_pipe ezusb_priv 0 13743 NULL
++level_guest_walker32_13749_fields level guest_walker32 0 13749 NULL
++length_rio_mport_maint_io_13751_fields length rio_mport_maint_io 0 13751 NULL
++txglomsz_brcmfmac_sdio_pd_13752_fields txglomsz brcmfmac_sdio_pd 0 13752 NULL
++compat_sys_recv_fndecl_13753_fields compat_sys_recv fndecl 3 13753 NULL
++numrx_velocity_opt_13754_fields numrx velocity_opt 0 13754 NULL nohasharray
++length_core_conn_create_data_13754_fields length core_conn_create_data 0 13754 &numrx_velocity_opt_13754_fields
++xfs_alloc_pagf_init_fndecl_13761_fields xfs_alloc_pagf_init fndecl 3-0 13761 NULL
++encrypt_headroom_ieee80211_sub_if_data_13764_fields encrypt_headroom ieee80211_sub_if_data 0 13764 NULL
++ar5523_cmd_read_fndecl_13766_fields ar5523_cmd_read fndecl 4 13766 NULL
++len_nci_set_config_param_13768_fields len nci_set_config_param 0 13768 NULL
++ecryptfs_miscdev_write_fndecl_13772_fields ecryptfs_miscdev_write fndecl 3 13772 NULL
++do_tcp_rcv_fndecl_13775_fields do_tcp_rcv fndecl 3 13775 NULL
++check_extent_to_block_fndecl_13780_fields check_extent_to_block fndecl 2-3 13780 NULL
++ue_size_asd_bios_chim_struct_13782_fields ue_size asd_bios_chim_struct 0 13782 NULL
++build_data_key_fndecl_13784_fields build_data_key fndecl 2 13784 NULL
++num_channels_xilly_endpoint_13791_fields num_channels xilly_endpoint 0 13791 NULL
++tipc_conn_sendmsg_fndecl_13792_fields tipc_conn_sendmsg fndecl 5 13792 NULL
++reply_sz__MPT_ADAPTER_13794_fields reply_sz _MPT_ADAPTER 0 13794 NULL
++riocm_cdev_add_fndecl_13803_fields riocm_cdev_add fndecl 1 13803 NULL
++fifo_size_sram_channel_13811_fields fifo_size sram_channel 0 13811 NULL
++shared_kmem_cache_13812_fields shared kmem_cache 0 13812 NULL
++fifo_depth_fsl_ssi_private_13814_fields fifo_depth fsl_ssi_private 0 13814 NULL
++den_min_snd_ratnum_13815_fields den_min snd_ratnum 0 13815 NULL
++rt6i_nfheader_len_rt6_info_13820_fields rt6i_nfheader_len rt6_info 0 13820 NULL
++phys_pte_init_fndecl_13824_fields phys_pte_init fndecl 0-2-3 13824 NULL
++brcmf_sdio_firmware_callback_fndecl_13829_fields brcmf_sdio_firmware_callback fndecl 4 13829 NULL
++vmem_size_bnxt_ring_struct_13831_fields vmem_size bnxt_ring_struct 0 13831 NULL
++inet6_lookup_fndecl_13832_fields inet6_lookup fndecl 4 13832 NULL
++logical_offset_btrfs_dio_private_13833_fields logical_offset btrfs_dio_private 0 13833 NULL
++acpi_os_get_root_pointer_fndecl_13835_fields acpi_os_get_root_pointer fndecl 0 13835 NULL
++cypress_write_fndecl_13836_fields cypress_write fndecl 4 13836 NULL
++ceph_fallocate_fndecl_13837_fields ceph_fallocate fndecl 4-3 13837 NULL
++nr_vecs_biovec_slab_13838_fields nr_vecs biovec_slab 0 13838 NULL
++init_memory_mapping_fndecl_13840_fields init_memory_mapping fndecl 0 13840 NULL
++resize_user_fndecl_13857_fields resize_user fndecl 3 13857 NULL
++sddr09_read_data_fndecl_13860_fields sddr09_read_data fndecl 2 13860 NULL
++starting_offset_mpt3_diag_read_buffer_13869_fields starting_offset mpt3_diag_read_buffer 0 13869 NULL
++pack_sg_list_fndecl_13874_fields pack_sg_list fndecl 5 13874 NULL
++front_len_ceph_msg_header_13876_fields front_len ceph_msg_header 0 13876 NULL
++gfs2_add_jextent_fndecl_13879_fields gfs2_add_jextent fndecl 2-3 13879 NULL
++analog_ep_bulk_em28xx_13880_fields analog_ep_bulk em28xx 0 13880 NULL
++layers_idr_13889_fields layers idr 0 13889 NULL
++__btt_log_write_fndecl_13893_fields __btt_log_write fndecl 0 13893 NULL
++v9fs_xattr_get_acl_fndecl_13894_fields v9fs_xattr_get_acl fndecl 6 13894 NULL nohasharray
++cblock_per_bio_data_13894_fields cblock per_bio_data 0 13894 &v9fs_xattr_get_acl_fndecl_13894_fields
++s_ncg_ufs_sb_private_info_13899_fields s_ncg ufs_sb_private_info 0 13899 NULL
++do_read_fault_fndecl_13905_fields do_read_fault fndecl 2 13905 NULL
++size_qlcnic_83xx_dump_template_hdr_13912_fields size qlcnic_83xx_dump_template_hdr 0 13912 NULL
++vt_block_vxfs_typed_13924_fields vt_block vxfs_typed 0 13924 NULL
++unix_stream_read_actor_fndecl_13931_fields unix_stream_read_actor fndecl 2-3 13931 NULL
++s_firstdatazone_minix_sb_info_13932_fields s_firstdatazone minix_sb_info 0 13932 NULL
++service_operation_fndecl_13940_fields service_operation fndecl 0 13940 NULL
++kvirt_to_phys_fndecl_13941_fields kvirt_to_phys fndecl 0 13941 NULL
++__usbnet_write_cmd_fndecl_13951_fields __usbnet_write_cmd fndecl 7 13951 NULL
++start_ubifs_bud_13964_fields start ubifs_bud 0 13964 NULL
++u132_hcd_configure_input_recv_fndecl_13969_fields u132_hcd_configure_input_recv fndecl 4 13969 NULL
++nla_append_fndecl_13971_fields nla_append fndecl 2 13971 NULL
++yres_panel_info_13976_fields yres panel_info 0 13976 NULL
++isdn_tty_handleDLEdown_fndecl_13981_fields isdn_tty_handleDLEdown fndecl 0 13981 NULL
++rd_size_uhid_device_13986_fields rd_size uhid_device 0 13986 NULL
++libipw_alloc_txb_fndecl_13992_fields libipw_alloc_txb fndecl 3-2 13992 NULL
++size_urb_list_13995_fields size urb_list 0 13995 NULL
++n_channels_iwl_mcc_update_resp_v1_13997_fields n_channels iwl_mcc_update_resp_v1 0 13997 NULL
++pnp_add_io_resource_fndecl_14000_fields pnp_add_io_resource fndecl 3-2 14000 NULL
++blkno_xfs_da_state_blk_14003_fields blkno xfs_da_state_blk 0 14003 NULL nohasharray
++wanted_disk_byte___prelim_ref_14003_fields wanted_disk_byte __prelim_ref 0 14003 &blkno_xfs_da_state_blk_14003_fields nohasharray
++i_len_xfs_log_iovec_14003_fields i_len xfs_log_iovec 0 14003 &wanted_disk_byte___prelim_ref_14003_fields nohasharray
++nilfs_read_super_root_block_fndecl_14003_fields nilfs_read_super_root_block fndecl 2 14003 &i_len_xfs_log_iovec_14003_fields
++buffer_top_vardecl_nm256_c_14008_fields buffer_top vardecl_nm256.c 0 14008 NULL
++n_phy_mvs_chip_info_14009_fields n_phy mvs_chip_info 0 14009 NULL
++queue_userspace_packet_fndecl_14011_fields queue_userspace_packet fndecl 5 14011 NULL
++__find_max_addr_fndecl_14012_fields __find_max_addr fndecl 0-1 14012 NULL
++e820_update_range_saved_fndecl_14017_fields e820_update_range_saved fndecl 1-2 14017 NULL
++btrfs_find_create_tree_block_fndecl_14018_fields btrfs_find_create_tree_block fndecl 2 14018 NULL
++nct6775_find_fndecl_14019_fields nct6775_find fndecl 0 14019 NULL
++security_enabled_ieee802154_hdr_fc_14024_fields security_enabled ieee802154_hdr_fc 0 14024 NULL
++mst_offs_ubifs_info_14045_fields mst_offs ubifs_info 0 14045 NULL
++nr_perf_callchain_entry_14049_fields nr perf_callchain_entry 0 14049 NULL
++xdr_shift_buf_fndecl_14055_fields xdr_shift_buf fndecl 2 14055 NULL nohasharray
++drbd_recv_fndecl_14055_fields drbd_recv fndecl 3-0 14055 &xdr_shift_buf_fndecl_14055_fields
++add_new_gdb_fndecl_14056_fields add_new_gdb fndecl 3 14056 NULL nohasharray
++nr_ring_pages_blkfront_info_14056_fields nr_ring_pages blkfront_info 0 14056 &add_new_gdb_fndecl_14056_fields
++ocfs2_xattr_ibody_get_fndecl_14057_fields ocfs2_xattr_ibody_get fndecl 0 14057 NULL nohasharray
++xfs_alloc_vextent_fndecl_14057_fields xfs_alloc_vextent fndecl 0 14057 &ocfs2_xattr_ibody_get_fndecl_14057_fields nohasharray
++nl80211_send_connect_result_fndecl_14057_fields nl80211_send_connect_result fndecl 5-7 14057 &xfs_alloc_vextent_fndecl_14057_fields
++btrfs_fallocate_fndecl_14060_fields btrfs_fallocate fndecl 4-3 14060 NULL
++entry_number_user_desc_14065_fields entry_number user_desc 0 14065 NULL nohasharray
++mgmt_device_connected_fndecl_14065_fields mgmt_device_connected fndecl 5 14065 &entry_number_user_desc_14065_fields
++cyttsp_spi_write_block_data_fndecl_14068_fields cyttsp_spi_write_block_data fndecl 4 14068 NULL
++error_async_submit_bio_14075_fields error async_submit_bio 0 14075 NULL
++end_switchdev_vlan_dump_14086_fields end switchdev_vlan_dump 0 14086 NULL
++phantom_major_vardecl_phantom_c_14093_fields phantom_major vardecl_phantom.c 0 14093 NULL
++__ext4_handle_dirty_metadata_fndecl_14098_fields __ext4_handle_dirty_metadata fndecl 0 14098 NULL
++data_len_vscsibk_pend_14106_fields data_len vscsibk_pend 0 14106 NULL
++gue_gro_remcsum_fndecl_14109_fields gue_gro_remcsum fndecl 5-2 14109 NULL
++elem_size_xdr_array2_desc_14114_fields elem_size xdr_array2_desc 0 14114 NULL
++adaption_gsm_dlci_14123_fields adaption gsm_dlci 0 14123 NULL
++size_mlx4_en_rx_ring_14125_fields size mlx4_en_rx_ring 0 14125 NULL
++efd_count_ext4_free_data_14128_fields efd_count ext4_free_data 0 14128 NULL
++i2400m_net_rx_fndecl_14129_fields i2400m_net_rx fndecl 5 14129 NULL
++size_uhid_input2_req_14140_fields size uhid_input2_req 0 14140 NULL
++cros_ec_spi_receive_packet_fndecl_14142_fields cros_ec_spi_receive_packet fndecl 2 14142 NULL
++vmcoreinfo_size_vardecl_14149_fields vmcoreinfo_size vardecl 0 14149 NULL
++dqi_entry_size_qtree_mem_dqinfo_14150_fields dqi_entry_size qtree_mem_dqinfo 0 14150 NULL
++short_len_fat_ioctl_filldir_callback_14151_fields short_len fat_ioctl_filldir_callback 0 14151 NULL
++page_size_at24_platform_data_14152_fields page_size at24_platform_data 0 14152 NULL
++num_ratios_coreclk_soc_desc_14154_fields num_ratios coreclk_soc_desc 0 14154 NULL
++range_min_regmap_range_node_14166_fields range_min regmap_range_node 0 14166 NULL
++vfs_writev_fndecl_14168_fields vfs_writev fndecl 3 14168 NULL
++ocfs2_read_blocks_sync_fndecl_14169_fields ocfs2_read_blocks_sync fndecl 2 14169 NULL
++cmd_len_scsi_cmnd_14171_fields cmd_len scsi_cmnd 0 14171 NULL nohasharray
++nd_size_in_nd_cmd_pkg_14171_fields nd_size_in nd_cmd_pkg 0 14171 &cmd_len_scsi_cmnd_14171_fields
++ath6kl_wmi_sync_point_fndecl_14172_fields ath6kl_wmi_sync_point fndecl 2 14172 NULL
++len_hermes_idstring_14173_fields len hermes_idstring 0 14173 NULL
++brcmf_usb_recv_ctl_fndecl_14174_fields brcmf_usb_recv_ctl fndecl 3 14174 NULL
++__conn_send_command_fndecl_14180_fields __conn_send_command fndecl 4-6 14180 NULL
++cmbox_vardecl_rio_cm_c_14182_fields cmbox vardecl_rio_cm.c 0 14182 NULL
++curr_tx_buf_size_mwifiex_adapter_14186_fields curr_tx_buf_size mwifiex_adapter 0 14186 NULL
++cfpkt_add_trail_fndecl_14191_fields cfpkt_add_trail fndecl 3 14191 NULL
++rxrpc_request_key_fndecl_14192_fields rxrpc_request_key fndecl 3 14192 NULL
++offset_iscsi_datain_14195_fields offset iscsi_datain 0 14195 NULL
++middle_len_ceph_msg_header_14196_fields middle_len ceph_msg_header 0 14196 NULL
++len_hv_multipage_buffer_14208_fields len hv_multipage_buffer 0 14208 NULL nohasharray
++get_rx_fifo_content_fndecl_14208_fields get_rx_fifo_content fndecl 0 14208 &len_hv_multipage_buffer_14208_fields
++cmd_bounce_size_vmw_sw_context_14217_fields cmd_bounce_size vmw_sw_context 0 14217 NULL
++num_gsm_mux_14221_fields num gsm_mux 0 14221 NULL
++e1000_copybreak_fndecl_14223_fields e1000_copybreak fndecl 3 14223 NULL
++hpfs_remove_dtree_fndecl_14224_fields hpfs_remove_dtree fndecl 2 14224 NULL
++hw_token_fotg210_qtd_14233_fields hw_token fotg210_qtd 0 14233 NULL
++create_lease_size_smb_version_values_14240_fields create_lease_size smb_version_values 0 14240 NULL
++backup_load_addr_kimage_arch_14243_fields backup_load_addr kimage_arch 0 14243 NULL nohasharray
++ath6kl_wmi_test_cmd_fndecl_14243_fields ath6kl_wmi_test_cmd fndecl 3 14243 &backup_load_addr_kimage_arch_14243_fields nohasharray
++virtqueue_add_inbuf_fndecl_14243_fields virtqueue_add_inbuf fndecl 3 14243 &ath6kl_wmi_test_cmd_fndecl_14243_fields
++write_buf_fndecl_14247_fields write_buf fndecl 3 14247 NULL
++__wmi_send_fndecl_14259_fields __wmi_send fndecl 4 14259 NULL nohasharray
++cy8ctmg110_read_regs_fndecl_14259_fields cy8ctmg110_read_regs fndecl 3 14259 &__wmi_send_fndecl_14259_fields nohasharray
++octeon_allocate_device_mem_fndecl_14259_fields octeon_allocate_device_mem fndecl 2 14259 &cy8ctmg110_read_regs_fndecl_14259_fields
++nr_blocks_msc_window_14262_fields nr_blocks msc_window 0 14262 NULL
++size_drm_scatter_gather_14264_fields size drm_scatter_gather 0 14264 NULL
++nilfs_sufile_block_get_segment_usage_fndecl_14278_fields nilfs_sufile_block_get_segment_usage fndecl 2 14278 NULL
++transfer_spi_master_14283_fields transfer spi_master 0 14283 NULL
++yscroll_display_14301_fields yscroll display 0 14301 NULL
++size_ldt_struct_14303_fields size ldt_struct 0 14303 NULL
++scif_p2p_setsg_fndecl_14314_fields scif_p2p_setsg fndecl 2 14314 NULL
++udf_table_prealloc_blocks_fndecl_14325_fields udf_table_prealloc_blocks fndecl 0-5 14325 NULL
++gfn_kvm_mmu_page_14326_fields gfn kvm_mmu_page 0 14326 NULL
++rhf_hfi1_packet_14327_fields rhf hfi1_packet 0 14327 NULL
++ath6kl_wmi_ap_profile_commit_fndecl_14329_fields ath6kl_wmi_ap_profile_commit fndecl 2 14329 NULL
++data_offset_md_rdev_14330_fields data_offset md_rdev 0 14330 NULL
++mask_myri10ge_rx_buf_14339_fields mask myri10ge_rx_buf 0 14339 NULL
++loop_start_patch_info_14350_fields loop_start patch_info 0 14350 NULL
++vnet_hdr_sz_macvtap_queue_14351_fields vnet_hdr_sz macvtap_queue 0 14351 NULL
++do_sys_truncate_fndecl_14355_fields do_sys_truncate fndecl 2 14355 NULL
++current_committed_pstore_14356_fields current_committed pstore 0 14356 NULL
++blkno_attrlist_cursor_kern_14361_fields blkno attrlist_cursor_kern 0 14361 NULL
++max_tokens_iw_ioctl_description_14373_fields max_tokens iw_ioctl_description 0 14373 NULL nohasharray
++do_jffs2_setxattr_fndecl_14373_fields do_jffs2_setxattr fndecl 5 14373 &max_tokens_iw_ioctl_description_14373_fields nohasharray
++dm_bufio_get_fndecl_14373_fields dm_bufio_get fndecl 2 14373 &do_jffs2_setxattr_fndecl_14373_fields
++length_scsiif_request_segment_14376_fields length scsiif_request_segment 0 14376 NULL
++start_extent_map_14377_fields start extent_map 0 14377 NULL
++num_phys__sas_node_14384_fields num_phys _sas_node 0 14384 NULL
++blks_per_lun_nvm_dev_14387_fields blks_per_lun nvm_dev 0 14387 NULL nohasharray
++word15_lpfc_mbx_read_config_14387_fields word15 lpfc_mbx_read_config 0 14387 &blks_per_lun_nvm_dev_14387_fields
++dma_in_iguanair_14391_fields dma_in iguanair 0 14391 NULL
++sisusbcon_scroll_area_fndecl_14392_fields sisusbcon_scroll_area fndecl 3-4 14392 NULL
++run_delalloc_nocow_fndecl_14395_fields run_delalloc_nocow fndecl 3-4 14395 NULL
++jffs2_add_physical_node_ref_fndecl_14406_fields jffs2_add_physical_node_ref fndecl 3-2 14406 NULL
++min_snd_interval_14412_fields min snd_interval 0 14412 NULL nohasharray
++rl_space_gfs2_rgrp_list_14412_fields rl_space gfs2_rgrp_list 0 14412 &min_snd_interval_14412_fields nohasharray
++crtc_hblank_start_drm_display_mode_14412_fields crtc_hblank_start drm_display_mode 0 14412 &rl_space_gfs2_rgrp_list_14412_fields
++num_channels_hsi_config_14414_fields num_channels hsi_config 0 14414 NULL
++bigdirlen_adfs_bigdirentry_14420_fields bigdirlen adfs_bigdirentry 0 14420 NULL
++xlog_recover_process_one_iunlink_fndecl_14426_fields xlog_recover_process_one_iunlink fndecl 2 14426 NULL
++snd_cwnd_used_tcp_sock_14431_fields snd_cwnd_used tcp_sock 0 14431 NULL
++up_cfg80211_dscp_exception_14433_fields up cfg80211_dscp_exception 0 14433 NULL
++offset_brcmf_vndr_dcmd_hdr_14440_fields offset brcmf_vndr_dcmd_hdr 0 14440 NULL
++size_dictionary_14455_fields size dictionary 0 14455 NULL
++residual_data_length_pmcraid_ioasa_14459_fields residual_data_length pmcraid_ioasa 0 14459 NULL
++skb_to_sgvec_nomark_fndecl_14461_fields skb_to_sgvec_nomark fndecl 4-3 14461 NULL
++data_inp_ep_vub300_mmc_host_14468_fields data_inp_ep vub300_mmc_host 0 14468 NULL
++ntfs_sync_mft_mirror_fndecl_14470_fields ntfs_sync_mft_mirror fndecl 2 14470 NULL
++lpfc_sli_probe_sriov_nr_virtfn_fndecl_14471_fields lpfc_sli_probe_sriov_nr_virtfn fndecl 2 14471 NULL
++cache_nat_entry_fndecl_14475_fields cache_nat_entry fndecl 2 14475 NULL nohasharray
++num_chn_netvsc_device_14475_fields num_chn netvsc_device 0 14475 &cache_nat_entry_fndecl_14475_fields nohasharray
++rdmarc_entry_sz_mlx4_dev_cap_14475_fields rdmarc_entry_sz mlx4_dev_cap 0 14475 &num_chn_netvsc_device_14475_fields
++groups_netlink_table_14476_fields groups netlink_table 0 14476 NULL
++acpi_hw_get_access_bit_width_fndecl_14478_fields acpi_hw_get_access_bit_width fndecl 0-2 14478 NULL nohasharray
++t1_change_mtu_fndecl_14478_fields t1_change_mtu fndecl 2 14478 &acpi_hw_get_access_bit_width_fndecl_14478_fields
++len_nci_cmd_param_14480_fields len nci_cmd_param 0 14480 NULL
++rx_unit_if_sdio_card_14483_fields rx_unit if_sdio_card 0 14483 NULL
++ntfs_perform_write_fndecl_14496_fields ntfs_perform_write fndecl 3-0 14496 NULL
++btrfs_lookup_bio_sums_dio_fndecl_14498_fields btrfs_lookup_bio_sums_dio fndecl 4 14498 NULL
++free_area_init_node_fndecl_14500_fields free_area_init_node fndecl 3 14500 NULL
++num_vq_mic_device_desc_14503_fields num_vq mic_device_desc 0 14503 NULL
++end_code_mm_struct_14519_fields end_code mm_struct 0 14519 NULL
++viafb_second_offset_vardecl_viafbdev_c_14533_fields viafb_second_offset vardecl_viafbdev.c 0 14533 NULL
++size_ichxrom_window_14540_fields size ichxrom_window 0 14540 NULL
++len_extent_info_14542_fields len extent_info 0 14542 NULL
++ieee80211_get_hdrlen_from_skb_fndecl_14543_fields ieee80211_get_hdrlen_from_skb fndecl 0 14543 NULL
++word17_lpfc_mbx_read_config_14545_fields word17 lpfc_mbx_read_config 0 14545 NULL nohasharray
++ctrl_set_croph_fndecl_14545_fields ctrl_set_croph fndecl 3 14545 &word17_lpfc_mbx_read_config_14545_fields
++snd_ftu_create_effect_switch_fndecl_14546_fields snd_ftu_create_effect_switch fndecl 3-2 14546 NULL
++lsave_cnt_ubifs_info_14547_fields lsave_cnt ubifs_info 0 14547 NULL
++len_btrfsic_block_data_ctx_14548_fields len btrfsic_block_data_ctx 0 14548 NULL
++__alloc_memory_core_early_fndecl_14550_fields __alloc_memory_core_early fndecl 3-4-5 14550 NULL nohasharray
++bus_shift_altera_uart_platform_uart_14550_fields bus_shift altera_uart_platform_uart 0 14550 &__alloc_memory_core_early_fndecl_14550_fields
++rn_snamelen_nfsd4_rename_14552_fields rn_snamelen nfsd4_rename 0 14552 NULL
++size_tso_t_14553_fields size tso_t 0 14553 NULL
++set_ep_max_packet_size_fndecl_14569_fields set_ep_max_packet_size fndecl 3 14569 NULL
++data_sector_size_mmc_ext_csd_14571_fields data_sector_size mmc_ext_csd 0 14571 NULL
++buffer_size_ncp_server_14574_fields buffer_size ncp_server 0 14574 NULL
++acpi_io_base_intel_pmc_ipc_dev_14580_fields acpi_io_base intel_pmc_ipc_dev 0 14580 NULL
++btrfs_wait_ordered_range_fndecl_14581_fields btrfs_wait_ordered_range fndecl 2-3 14581 NULL
++be_length_pnfs_block_extent_14586_fields be_length pnfs_block_extent 0 14586 NULL
++link_pipe_fndecl_14595_fields link_pipe fndecl 3 14595 NULL
++static_start_pccard_mem_map_14601_fields static_start pccard_mem_map 0 14601 NULL
++nes_netdev_change_mtu_fndecl_14604_fields nes_netdev_change_mtu fndecl 2 14604 NULL
++__get_user_pages_fndecl_14607_fields __get_user_pages fndecl 0-3 14607 NULL
++mqd_size_aligned_kfd_device_info_14609_fields mqd_size_aligned kfd_device_info 0 14609 NULL nohasharray
++get_next_sit_page_fndecl_14609_fields get_next_sit_page fndecl 2 14609 &mqd_size_aligned_kfd_device_info_14609_fields nohasharray
++skb_split_fndecl_14609_fields skb_split fndecl 3 14609 &get_next_sit_page_fndecl_14609_fields
++alb_send_lp_vid_fndecl_14613_fields alb_send_lp_vid fndecl 4 14613 NULL
++recv_bulk_pipe_us_data_14615_fields recv_bulk_pipe us_data 0 14615 NULL
++node_scif_dev_14623_fields node scif_dev 0 14623 NULL
++length_comedi_lrange_14641_fields length comedi_lrange 0 14641 NULL
++SSIDsize_bss_info_14644_fields SSIDsize bss_info 0 14644 NULL
++dln2_gpio_get_pin_count_fndecl_14646_fields dln2_gpio_get_pin_count fndecl 0 14646 NULL
++endpoint_usbdevfs_urb_14649_fields endpoint usbdevfs_urb 0 14649 NULL
++tid_ieee80211_ampdu_params_14651_fields tid ieee80211_ampdu_params 0 14651 NULL
++get_sb_block_fndecl_14653_fields get_sb_block fndecl 0 14653 NULL nohasharray
++write_dst_fndecl_14653_fields write_dst fndecl 3 14653 &get_sb_block_fndecl_14653_fields
++wNdpOutAlignment_usb_cdc_ncm_ntb_parameters_14656_fields wNdpOutAlignment usb_cdc_ncm_ntb_parameters 0 14656 NULL
++__btrfs_qgroup_release_data_fndecl_14664_fields __btrfs_qgroup_release_data fndecl 2-3 14664 NULL
++log_pmtu_rvt_qp_14669_fields log_pmtu rvt_qp 0 14669 NULL
++ext2_try_to_allocate_fndecl_14672_fields ext2_try_to_allocate fndecl 0-4 14672 NULL
++sg_tablesize_usb_bus_14673_fields sg_tablesize usb_bus 0 14673 NULL
++aircable_prepare_write_buffer_fndecl_14678_fields aircable_prepare_write_buffer fndecl 3 14678 NULL
++file_size_squashfs_reg_inode_14679_fields file_size squashfs_reg_inode 0 14679 NULL
++x86_virt_bits_cpuinfo_x86_14680_fields x86_virt_bits cpuinfo_x86 0 14680 NULL
++mtu_vnic_devcmd_notify_14682_fields mtu vnic_devcmd_notify 0 14682 NULL
++rx_queue_entry_next_fndecl_14688_fields rx_queue_entry_next fndecl 0 14688 NULL
++max_srq_sge_ib_device_attr_14690_fields max_srq_sge ib_device_attr 0 14690 NULL
++smt_fill_path_fndecl_14692_fields smt_fill_path fndecl 0 14692 NULL
++ttm_tt_init_fndecl_14694_fields ttm_tt_init fndecl 3 14694 NULL
++sq_depth_p9_rdma_opts_14698_fields sq_depth p9_rdma_opts 0 14698 NULL
++__do_fault_fndecl_14700_fields __do_fault fndecl 2 14700 NULL
++__alloc_bootmem_low_node_fndecl_14701_fields __alloc_bootmem_low_node fndecl 3-4 14701 NULL
++AdapterFibsSize_aac_init_14712_fields AdapterFibsSize aac_init 0 14712 NULL
++p_fill_from_dev_buffer_fndecl_14716_fields p_fill_from_dev_buffer fndecl 4-3 14716 NULL
++ftop_swregs_state_14719_fields ftop swregs_state 0 14719 NULL
++frag_id_qede_agg_info_14725_fields frag_id qede_agg_info 0 14725 NULL
++mmc_spi_data_do_fndecl_14728_fields mmc_spi_data_do fndecl 4 14728 NULL
++or51132_writebuf_fndecl_14730_fields or51132_writebuf fndecl 3 14730 NULL
++hdrlen_ppp_file_14734_fields hdrlen ppp_file 0 14734 NULL nohasharray
++ath9k_htc_rx_msg_fndecl_14734_fields ath9k_htc_rx_msg fndecl 3 14734 &hdrlen_ppp_file_14734_fields
++ext2_find_near_fndecl_14741_fields ext2_find_near fndecl 0 14741 NULL nohasharray
++channels_usb_mixer_elem_info_14741_fields channels usb_mixer_elem_info 0 14741 &ext2_find_near_fndecl_14741_fields
++mcs_unwrap_fir_fndecl_14742_fields mcs_unwrap_fir fndecl 3 14742 NULL
++cifs_read_from_socket_fndecl_14743_fields cifs_read_from_socket fndecl 0-3 14743 NULL
++mlx4_alloc_icm_coherent_fndecl_14745_fields mlx4_alloc_icm_coherent fndecl 3 14745 NULL
++ivtvfb_prep_frame_fndecl_14770_fields ivtvfb_prep_frame fndecl 5 14770 NULL
++size_snd_seq_pool_14782_fields size snd_seq_pool 0 14782 NULL
++xfs_alloc_ag_vextent_exact_fndecl_14785_fields xfs_alloc_ag_vextent_exact fndecl 0 14785 NULL
++dev_cmd_headroom_iwl_trans_14787_fields dev_cmd_headroom iwl_trans 0 14787 NULL
++td_fill_fndecl_14788_fields td_fill fndecl 3 14788 NULL
++brcmf_sdio_verifymemory_fndecl_14795_fields brcmf_sdio_verifymemory fndecl 4-2 14795 NULL nohasharray
++snd_ssthresh_tcp_sock_14795_fields snd_ssthresh tcp_sock 0 14795 &brcmf_sdio_verifymemory_fndecl_14795_fields
++mthca_map_user_db_fndecl_14796_fields mthca_map_user_db fndecl 5 14796 NULL
++alloc_component_match_14799_fields alloc component_match 0 14799 NULL
++sb_max_fwd_alloc_hpfs_sb_info_14807_fields sb_max_fwd_alloc hpfs_sb_info 0 14807 NULL
++nr_sectors_fat_floppy_defaults_14809_fields nr_sectors fat_floppy_defaults 0 14809 NULL
++read_fn_xusb_udc_14819_fields read_fn xusb_udc 0 14819 NULL
++wDescriptorLength_hid_descriptor_14825_fields wDescriptorLength hid_descriptor 0 14825 NULL
++tg3_change_mtu_fndecl_14826_fields tg3_change_mtu fndecl 2 14826 NULL
++residual_length_response_14830_fields residual_length response 0 14830 NULL
++sis5595_base_vardecl_i2c_sis5595_c_14832_fields sis5595_base vardecl_i2c-sis5595.c 0 14832 NULL
++shift_arg_pages_fndecl_14835_fields shift_arg_pages fndecl 2 14835 NULL
++vram_contig_size_vml_info_14851_fields vram_contig_size vml_info 0 14851 NULL
++sample_rate_max_lola_14860_fields sample_rate_max lola 0 14860 NULL
++channels_cea_sad_14862_fields channels cea_sad 0 14862 NULL
++verity_hash_for_block_fndecl_14864_fields verity_hash_for_block fndecl 0 14864 NULL
++iwl_pcie_alloc_fw_monitor_fndecl_14872_fields iwl_pcie_alloc_fw_monitor fndecl 2 14872 NULL
++pg_first_page_collect_14888_fields pg_first page_collect 0 14888 NULL
++invalidate_inode_pages2_range_fndecl_14896_fields invalidate_inode_pages2_range fndecl 0-3 14896 NULL
++crtc_vsync_end_drm_display_mode_14898_fields crtc_vsync_end drm_display_mode 0 14898 NULL
++nkeys_tc_pedit_sel_14899_fields nkeys tc_pedit_sel 0 14899 NULL
++len_move_extent_14902_fields len move_extent 0 14902 NULL
++ntty_write_fndecl_14903_fields ntty_write fndecl 3 14903 NULL
++vringh_init_user_fndecl_14905_fields vringh_init_user fndecl 3 14905 NULL
++entry_size_neigh_table_14911_fields entry_size neigh_table 0 14911 NULL
++in_pipe_usbtest_dev_14914_fields in_pipe usbtest_dev 0 14914 NULL
++blocksize_bcma_sflash_tbl_e_14917_fields blocksize bcma_sflash_tbl_e 0 14917 NULL
++pskb_carve_inside_nonlinear_fndecl_14925_fields pskb_carve_inside_nonlinear fndecl 2-3 14925 NULL
++e1000_frag_len_fndecl_14930_fields e1000_frag_len fndecl 0 14930 NULL
++insert_mappable_node_fndecl_14938_fields insert_mappable_node fndecl 3 14938 NULL nohasharray
++get_allocated_memblock_reserved_regions_info_fndecl_14938_fields get_allocated_memblock_reserved_regions_info fndecl 0 14938 &insert_mappable_node_fndecl_14938_fields
++decrypted_datalen_encrypted_key_payload_14939_fields decrypted_datalen encrypted_key_payload 0 14939 NULL
++len_hif_scatter_item_14940_fields len hif_scatter_item 0 14940 NULL
++tailout_ignore_xpnet_message_14949_fields tailout_ignore xpnet_message 0 14949 NULL
++dvb_ca_en50221_io_ioctl_fndecl_14953_fields dvb_ca_en50221_io_ioctl fndecl 2 14953 NULL
++ext4_mb_get_buddy_page_lock_fndecl_14972_fields ext4_mb_get_buddy_page_lock fndecl 0 14972 NULL
++l2cap_build_conf_req_fndecl_14978_fields l2cap_build_conf_req fndecl 0 14978 NULL
++romfs_iget_fndecl_14980_fields romfs_iget fndecl 2 14980 NULL
++fuse_read_update_size_fndecl_14982_fields fuse_read_update_size fndecl 2 14982 NULL
++canon_head_n_tty_data_14983_fields canon_head n_tty_data 0 14983 NULL nohasharray
++icv_len_ieee80211_key_conf_14983_fields icv_len ieee80211_key_conf 0 14983 &canon_head_n_tty_data_14983_fields
++raid_disks_raid_set_14993_fields raid_disks raid_set 0 14993 NULL
++drbd_bm_words_fndecl_15003_fields drbd_bm_words fndecl 0 15003 NULL
++alloc_gtt_mem_fndecl_15005_fields alloc_gtt_mem fndecl 2 15005 NULL
++cxgbi_ddp_ppm_setup_fndecl_15008_fields cxgbi_ddp_ppm_setup fndecl 4 15008 NULL
++buffers_ivtv_stream_15020_fields buffers ivtv_stream 0 15020 NULL
++macvtap_do_read_fndecl_15021_fields macvtap_do_read fndecl 0 15021 NULL
++iotlb_access_ok_fndecl_15032_fields iotlb_access_ok fndecl 3 15032 NULL
++saddr_fsl_edma_hw_tcd_15034_fields saddr fsl_edma_hw_tcd 0 15034 NULL
++orangefs_inode_getxattr_fndecl_15036_fields orangefs_inode_getxattr fndecl 0 15036 NULL
++num_rar_entries_ixgbe_mac_info_15039_fields num_rar_entries ixgbe_mac_info 0 15039 NULL
++mpeglines_vardecl_cx23885_417_c_15042_fields mpeglines vardecl_cx23885-417.c 0 15042 NULL nohasharray
++partitionStartingLocation_partitionDesc_15042_fields partitionStartingLocation partitionDesc 0 15042 &mpeglines_vardecl_cx23885_417_c_15042_fields
++dec_pending_fndecl_15045_fields dec_pending fndecl 2 15045 NULL
++handle_event_fsnotify_ops_15054_fields handle_event fsnotify_ops 0 15054 NULL nohasharray
++buf_len_htc_packet_15054_fields buf_len htc_packet 0 15054 &handle_event_fsnotify_ops_15054_fields
++tpacket_parse_header_fndecl_15057_fields tpacket_parse_header fndecl 0 15057 NULL
++sc_netid_len_nfs4_setclientid_15059_fields sc_netid_len nfs4_setclientid 0 15059 NULL
++height_cx2341x_handler_15060_fields height cx2341x_handler 0 15060 NULL
++num_widgets_snd_soc_dapm_widget_list_15064_fields num_widgets snd_soc_dapm_widget_list 0 15064 NULL
++vid_hdr_alsize_ubi_device_15065_fields vid_hdr_alsize ubi_device 0 15065 NULL
++ctrlbuf_dma_usbhid_device_15067_fields ctrlbuf_dma usbhid_device 0 15067 NULL nohasharray
++lpt_offs_bits_ubifs_info_15067_fields lpt_offs_bits ubifs_info 0 15067 &ctrlbuf_dma_usbhid_device_15067_fields
++write_len_ddb_flashio_15069_fields write_len ddb_flashio 0 15069 NULL
++n_values_i2c_mux_reg_platform_data_15073_fields n_values i2c_mux_reg_platform_data 0 15073 NULL
++saturation_sd_gl860_15076_fields saturation sd_gl860 0 15076 NULL
++xfs_rtcheck_range_fndecl_15077_fields xfs_rtcheck_range fndecl 3-0 15077 NULL
++bm_words_bm_xfer_ctx_15081_fields bm_words bm_xfer_ctx 0 15081 NULL
++offs_ubifs_ref_node_15088_fields offs ubifs_ref_node 0 15088 NULL
++cirrusfb_get_memsize_fndecl_15094_fields cirrusfb_get_memsize fndecl 0 15094 NULL nohasharray
++ia32_arch_ptrace_fndecl_15094_fields ia32_arch_ptrace fndecl 3 15094 &cirrusfb_get_memsize_fndecl_15094_fields
++xlog_seek_logrec_hdr_fndecl_15099_fields xlog_seek_logrec_hdr fndecl 3 15099 NULL
++drm_mm_insert_node_in_range_generic_fndecl_15103_fields drm_mm_insert_node_in_range_generic fndecl 3 15103 NULL
++split_nodes_size_interleave_fndecl_15116_fields split_nodes_size_interleave fndecl 3-4-5 15116 NULL
++batadv_bla_is_backbone_gw_fndecl_15121_fields batadv_bla_is_backbone_gw fndecl 3 15121 NULL
++ubifs_tnc_replace_fndecl_15122_fields ubifs_tnc_replace fndecl 7-6 15122 NULL
++read_sb_page_fndecl_15124_fields read_sb_page fndecl 5-4-2 15124 NULL
++macvlan_change_mtu_fndecl_15125_fields macvlan_change_mtu fndecl 2 15125 NULL
++first_offset_afs_call_15128_fields first_offset afs_call 0 15128 NULL
++bytes_rds_iovec_15133_fields bytes rds_iovec 0 15133 NULL
++vcpu_id_kvm_vcpu_15135_fields vcpu_id kvm_vcpu 0 15135 NULL
++copy_oldmem_page_fndecl_15143_fields copy_oldmem_page fndecl 1 15143 NULL
++mid_get_vbt_data_r1_fndecl_15145_fields mid_get_vbt_data_r1 fndecl 2 15145 NULL
++sysctl_tcp_min_tso_segs_vardecl_15146_fields sysctl_tcp_min_tso_segs vardecl 0 15146 NULL
++elem_size_snd_array_15155_fields elem_size snd_array 0 15155 NULL
++i_disk_sec_hpfs_inode_info_15165_fields i_disk_sec hpfs_inode_info 0 15165 NULL
++ovl_dir_llseek_fndecl_15169_fields ovl_dir_llseek fndecl 2 15169 NULL
++xfs_idata_realloc_fndecl_15172_fields xfs_idata_realloc fndecl 2 15172 NULL
++si_namelen_nfsd4_secinfo_15174_fields si_namelen nfsd4_secinfo 0 15174 NULL
++perform_sglist_fndecl_15184_fields perform_sglist fndecl 3-6 15184 NULL
++nr_pages_videobuf_dmabuf_15190_fields nr_pages videobuf_dmabuf 0 15190 NULL
++ucStateEntrySize__ATOM_PPLIB_POWERPLAYTABLE_15196_fields ucStateEntrySize _ATOM_PPLIB_POWERPLAYTABLE 0 15196 NULL
++p9_client_write_fndecl_15200_fields p9_client_write fndecl 0 15200 NULL
++mwifiex_regrdwr_write_fndecl_15202_fields mwifiex_regrdwr_write fndecl 3 15202 NULL
++size_nforce2_smbus_15203_fields size nforce2_smbus 0 15203 NULL
++top_qxl_urect_15205_fields top qxl_urect 0 15205 NULL
++simple_setattr_fndecl_15209_fields simple_setattr fndecl 0 15209 NULL
++gso_max_size_net_device_15213_fields gso_max_size net_device 0 15213 NULL
++sge_control_sge_params_15216_fields sge_control sge_params 0 15216 NULL
++vals_size_ceph_inode_xattrs_info_15217_fields vals_size ceph_inode_xattrs_info 0 15217 NULL
++len_policydb_15230_fields len policydb 0 15230 NULL nohasharray
++mtd_ooblayout_get_eccbytes_fndecl_15230_fields mtd_ooblayout_get_eccbytes fndecl 4 15230 &len_policydb_15230_fields
++sisusb_bulkout_msg_fndecl_15233_fields sisusb_bulkout_msg fndecl 5-3 15233 NULL nohasharray
++hfsplus_ext_lastblock_fndecl_15233_fields hfsplus_ext_lastblock fndecl 0 15233 &sisusb_bulkout_msg_fndecl_15233_fields
++surface_width_drm_fb_helper_surface_size_15237_fields surface_width drm_fb_helper_surface_size 0 15237 NULL
++len_sock_fprog_15239_fields len sock_fprog 0 15239 NULL
++do_setxattr_fndecl_15243_fields do_setxattr fndecl 5 15243 NULL
++result_wa_seg_15248_fields result wa_seg 0 15248 NULL nohasharray
++ide_cdrom_register_fndecl_15248_fields ide_cdrom_register fndecl 2 15248 &result_wa_seg_15248_fields
++sb_rextsize_xfs_sb_15250_fields sb_rextsize xfs_sb 0 15250 NULL
++ecryptfs_read_lower_page_segment_fndecl_15255_fields ecryptfs_read_lower_page_segment fndecl 4 15255 NULL
++rmsg_size_hv_netvsc_packet_15256_fields rmsg_size hv_netvsc_packet 0 15256 NULL
++dm_block_location_fndecl_15260_fields dm_block_location fndecl 0 15260 NULL
++writequeue_entry_complete_fndecl_15264_fields writequeue_entry_complete fndecl 2 15264 NULL
++inode_bmap_fndecl_15269_fields inode_bmap fndecl 0 15269 NULL
++bstr_printf_fndecl_15271_fields bstr_printf fndecl 0 15271 NULL
++recursive_scan_fndecl_15275_fields recursive_scan fndecl 5 15275 NULL
++num_connectors_ucsi_capability_15281_fields num_connectors ucsi_capability 0 15281 NULL
++nsect_ide_taskfile_15283_fields nsect ide_taskfile 0 15283 NULL
++srp_max_req_size_vardecl_ib_srpt_c_15291_fields srp_max_req_size vardecl_ib_srpt.c 0 15291 NULL
++residual_virtio_scsi_inhdr_15299_fields residual virtio_scsi_inhdr 0 15299 NULL
++scd_size_idt77252_dev_15300_fields scd_size idt77252_dev 0 15300 NULL
++fm10k_get_pcie_msix_count_generic_fndecl_15305_fields fm10k_get_pcie_msix_count_generic fndecl 0 15305 NULL
++__sg_alloc_table_fndecl_15308_fields __sg_alloc_table fndecl 2-3-0 15308 NULL
++channels_max_hdac_chmap_15316_fields channels_max hdac_chmap 0 15316 NULL
++hpfs_dir_lseek_fndecl_15324_fields hpfs_dir_lseek fndecl 2 15324 NULL
++__smq_create_fndecl_15325_fields __smq_create fndecl 1 15325 NULL
++ehci_urb_dequeue_fndecl_15333_fields ehci_urb_dequeue fndecl 3 15333 NULL
++dup_to_netobj_fndecl_15336_fields dup_to_netobj fndecl 3 15336 NULL
++min_io_size_ubifs_info_15340_fields min_io_size ubifs_info 0 15340 NULL
++num_subdevs_xvip_composite_device_15342_fields num_subdevs xvip_composite_device 0 15342 NULL
++sc18is602_txrx_fndecl_15346_fields sc18is602_txrx fndecl 0 15346 NULL
++check_can_nocow_fndecl_15347_fields check_can_nocow fndecl 2 15347 NULL
++efx_rx_mk_skb_fndecl_15349_fields efx_rx_mk_skb fndecl 5-3 15349 NULL
++s_cluster_bits_ext4_sb_info_15353_fields s_cluster_bits ext4_sb_info 0 15353 NULL
++num_total_plane_drm_mode_config_15377_fields num_total_plane drm_mode_config 0 15377 NULL
++s_last_psn_rvt_qp_15390_fields s_last_psn rvt_qp 0 15390 NULL
++size_mtd_info_15393_fields size mtd_info 0 15393 NULL
++iomap_to_bh_fndecl_15399_fields iomap_to_bh fndecl 2 15399 NULL
++rds_ib_ring_init_fndecl_15404_fields rds_ib_ring_init fndecl 2 15404 NULL
++get_perf_callchain_fndecl_15408_fields get_perf_callchain fndecl 2 15408 NULL
++count_nfs42_write_res_15421_fields count nfs42_write_res 0 15421 NULL
++logical_reada_extent_15426_fields logical reada_extent 0 15426 NULL
++num_saved_mc_saved_data_15429_fields num_saved mc_saved_data 0 15429 NULL nohasharray
++size_cmd_header_15429_fields size cmd_header 0 15429 &num_saved_mc_saved_data_15429_fields
++ddr_base_intel_sst_drv_15431_fields ddr_base intel_sst_drv 0 15431 NULL
++set_nat_entry_set_15434_fields set nat_entry_set 0 15434 NULL
++ati_remote_sendpacket_fndecl_15435_fields ati_remote_sendpacket fndecl 2 15435 NULL
++xfs_qm_dqattach_fndecl_15441_fields xfs_qm_dqattach fndecl 0 15441 NULL
++max_vpi_lpfc_hba_15442_fields max_vpi lpfc_hba 0 15442 NULL
++code_page_dir_hpfs_spare_block_15449_fields code_page_dir hpfs_spare_block 0 15449 NULL
++regmap_spi_write_fndecl_15476_fields regmap_spi_write fndecl 3 15476 NULL
++mmio_len_fb_fix_screeninfo_15477_fields mmio_len fb_fix_screeninfo 0 15477 NULL
++hidma_ll_init_fndecl_15486_fields hidma_ll_init fndecl 2 15486 NULL
++__ext_tree_remove_fndecl_15489_fields __ext_tree_remove fndecl 2-3 15489 NULL nohasharray
++priv_size_iscsit_transport_15489_fields priv_size iscsit_transport 0 15489 &__ext_tree_remove_fndecl_15489_fields
++old_oblock_policy_result_15494_fields old_oblock policy_result 0 15494 NULL
++cached_start_hfs_inode_info_15502_fields cached_start hfs_inode_info 0 15502 NULL
++size_videobuf_buffer_15508_fields size videobuf_buffer 0 15508 NULL
++gfs2_fallocate_fndecl_15515_fields gfs2_fallocate fndecl 4-3 15515 NULL
++max_pkt_size_cx231xx_video_mode_15531_fields max_pkt_size cx231xx_video_mode 0 15531 NULL
++btrfs_clone_files_fndecl_15534_fields btrfs_clone_files fndecl 5-3-4 15534 NULL nohasharray
++wl1273_fm_get_tx_ctune_fndecl_15534_fields wl1273_fm_get_tx_ctune fndecl 0 15534 &btrfs_clone_files_fndecl_15534_fields
++xlog_do_recovery_pass_fndecl_15537_fields xlog_do_recovery_pass fndecl 3 15537 NULL
++space_bits_ubifs_info_15538_fields space_bits ubifs_info 0 15538 NULL
++index_btframe_15545_fields index btframe 0 15545 NULL
++data_length_mts_transfer_context_15546_fields data_length mts_transfer_context 0 15546 NULL
++kernfs_iop_setxattr_fndecl_15550_fields kernfs_iop_setxattr fndecl 5 15550 NULL
++lowpan_xmit_fragment_fndecl_15552_fields lowpan_xmit_fragment fndecl 4-6 15552 NULL
++ep_in_kingsun_cb_15553_fields ep_in kingsun_cb 0 15553 NULL
++num_odfs_clkgen_pll_data_15554_fields num_odfs clkgen_pll_data 0 15554 NULL
++video_buffer_size_vivid_dev_15556_fields video_buffer_size vivid_dev 0 15556 NULL
++node_start_pfn_pglist_data_15561_fields node_start_pfn pglist_data 0 15561 NULL
++swiotlb_late_init_with_tbl_fndecl_15566_fields swiotlb_late_init_with_tbl fndecl 2 15566 NULL nohasharray
++push_frame_fndecl_15566_fields push_frame fndecl 2 15566 &swiotlb_late_init_with_tbl_fndecl_15566_fields
++s_map2blk_adfs_sb_info_15569_fields s_map2blk adfs_sb_info 0 15569 NULL
++nsblk_do_bvec_fndecl_15572_fields nsblk_do_bvec fndecl 0 15572 NULL
++acpi20_efi_15582_fields acpi20 efi 0 15582 NULL
++NumTransferUnits_erase_unit_header_t_15585_fields NumTransferUnits erase_unit_header_t 0 15585 NULL
++__split_and_process_non_flush_fndecl_15587_fields __split_and_process_non_flush fndecl 0 15587 NULL
++tx_ring_count_ixgbe_adapter_15595_fields tx_ring_count ixgbe_adapter 0 15595 NULL
++memsz_fifo_15603_fields memsz fifo 0 15603 NULL
++len_nfs3_createargs_15604_fields len nfs3_createargs 0 15604 NULL
++do_add_page_to_bio_fndecl_15612_fields do_add_page_to_bio fndecl 10-4-2 15612 NULL
++ch_r_head_jsm_channel_15625_fields ch_r_head jsm_channel 0 15625 NULL
++nents_sg_table_15627_fields nents sg_table 0 15627 NULL nohasharray
++drm_addmap_core_fndecl_15627_fields drm_addmap_core fndecl 3-2 15627 &nents_sg_table_15627_fields
++sensor_hub_get_physical_device_count_fndecl_15630_fields sensor_hub_get_physical_device_count fndecl 0 15630 NULL nohasharray
++i915_error_state_buf_init_fndecl_15630_fields i915_error_state_buf_init fndecl 4 15630 &sensor_hub_get_physical_device_count_fndecl_15630_fields
++mcs_wrap_mir_skb_fndecl_15633_fields mcs_wrap_mir_skb fndecl 0 15633 NULL
++end_bttv_vbi_fmt_15637_fields end bttv_vbi_fmt 0 15637 NULL
++dma_in_redrat3_dev_15639_fields dma_in redrat3_dev 0 15639 NULL
++akid_raw_issuer_size_x509_parse_context_15651_fields akid_raw_issuer_size x509_parse_context 0 15651 NULL
++extra_msdu_prefix_len_lib80211_crypto_ops_15654_fields extra_msdu_prefix_len lib80211_crypto_ops 0 15654 NULL nohasharray
++mapped_vram_radeonfb_info_15654_fields mapped_vram radeonfb_info 0 15654 &extra_msdu_prefix_len_lib80211_crypto_ops_15654_fields nohasharray
++read_bytes_from_xdr_buf_fndecl_15654_fields read_bytes_from_xdr_buf fndecl 4-2 15654 &mapped_vram_radeonfb_info_15654_fields
++kvm_pv_enable_async_pf_fndecl_15662_fields kvm_pv_enable_async_pf fndecl 2 15662 NULL
++sb_rblocks_xfs_sb_15668_fields sb_rblocks xfs_sb 0 15668 NULL
++wsize_p9_conn_15686_fields wsize p9_conn 0 15686 NULL
++total_bnx2x_sriov_15692_fields total bnx2x_sriov 0 15692 NULL
++num_bytes_sigmadsp_control_15699_fields num_bytes sigmadsp_control 0 15699 NULL
++btrfs_test_extent_io_fndecl_15701_fields btrfs_test_extent_io fndecl 2 15701 NULL
++iov_len_kvec_15702_fields iov_len kvec 0 15702 NULL
++xprt_rdma_max_inline_read_vardecl_15703_fields xprt_rdma_max_inline_read vardecl 0 15703 NULL
++numa_scan_offset_mm_struct_15710_fields numa_scan_offset mm_struct 0 15710 NULL
++name_len_nilfs_dir_entry_15715_fields name_len nilfs_dir_entry 0 15715 NULL
++user_size_drm_i915_gem_userptr_15716_fields user_size drm_i915_gem_userptr 0 15716 NULL
++di_xblk_qnx4_inode_entry_15719_fields di_xblk qnx4_inode_entry 0 15719 NULL
++n_window_iwl_queue_15731_fields n_window iwl_queue 0 15731 NULL
++setup_boot_parameters_fndecl_15734_fields setup_boot_parameters fndecl 5-6-3-4 15734 NULL
++amdtp_am824_set_parameters_fndecl_15737_fields amdtp_am824_set_parameters fndecl 4-3 15737 NULL
++lcd_height_atyfb_par_15743_fields lcd_height atyfb_par 0 15743 NULL
++num_locks_dlm_migratable_lockres_15745_fields num_locks dlm_migratable_lockres 0 15745 NULL
++hotfix_map_hpfs_spare_block_15748_fields hotfix_map hpfs_spare_block 0 15748 NULL
++remote_miu_nfc_llcp_local_15749_fields remote_miu nfc_llcp_local 0 15749 NULL
++st_int_ioctl_fndecl_15750_fields st_int_ioctl fndecl 3 15750 NULL nohasharray
++base_nr_i2c_mux_reg_platform_data_15750_fields base_nr i2c_mux_reg_platform_data 0 15750 &st_int_ioctl_fndecl_15750_fields
++ip_tunnel_change_mtu_fndecl_15752_fields ip_tunnel_change_mtu fndecl 2 15752 NULL
++transfer_done_snd_usb_substream_15753_fields transfer_done snd_usb_substream 0 15753 NULL nohasharray
++con_out_kvec_skip_fndecl_15753_fields con_out_kvec_skip fndecl 0 15753 &transfer_done_snd_usb_substream_15753_fields
++xres__sisbios_mode_15754_fields xres _sisbios_mode 0 15754 NULL
++sockid_uv_gam_range_entry_15756_fields sockid uv_gam_range_entry 0 15756 NULL
++udf_add_aext_fndecl_15762_fields udf_add_aext fndecl 4 15762 NULL nohasharray
++devm_kmalloc_fndecl_15762_fields devm_kmalloc fndecl 2 15762 &udf_add_aext_fndecl_15762_fields
++niu_change_mtu_fndecl_15765_fields niu_change_mtu fndecl 2 15765 NULL
++header_read_sd_15767_fields header_read sd 0 15767 NULL
++mc13xxx_spi_write_fndecl_15768_fields mc13xxx_spi_write fndecl 3 15768 NULL
++irttp_connect_confirm_fndecl_15769_fields irttp_connect_confirm fndecl 4-5 15769 NULL
++rdma_read_chunk_lcl_fndecl_15778_fields rdma_read_chunk_lcl fndecl 7-8 15778 NULL nohasharray
++ntfs_copy_from_user_iter_fndecl_15778_fields ntfs_copy_from_user_iter fndecl 5-3 15778 &rdma_read_chunk_lcl_fndecl_15778_fields
++xfs_bmap_split_extent_at_fndecl_15780_fields xfs_bmap_split_extent_at fndecl 3 15780 NULL
++PacketLength_wa_xfer_packet_status_len_hwaiso_15781_fields PacketLength wa_xfer_packet_status_len_hwaiso 0 15781 NULL
++vde_ast_vbios_enhtable_15784_fields vde ast_vbios_enhtable 0 15784 NULL
++count_nfs4_readdir_arg_15790_fields count nfs4_readdir_arg 0 15790 NULL
++region_size_dm_region_hash_15798_fields region_size dm_region_hash 0 15798 NULL
++fi_ndatablk_nilfs_finfo_15799_fields fi_ndatablk nilfs_finfo 0 15799 NULL
++ath_rxbuf_alloc_fndecl_15802_fields ath_rxbuf_alloc fndecl 2 15802 NULL
++btintel_secure_send_fndecl_15805_fields btintel_secure_send fndecl 3 15805 NULL
++st33zp24_spi_recv_fndecl_15816_fields st33zp24_spi_recv fndecl 4 15816 NULL
++copy_perf_raw_frag_15819_fields copy perf_raw_frag 0 15819 NULL
++unpack_str_fndecl_15821_fields unpack_str fndecl 0 15821 NULL
++length_idma64_desc_15822_fields length idma64_desc 0 15822 NULL
++n_match_sets_cfg80211_sched_scan_request_15823_fields n_match_sets cfg80211_sched_scan_request 0 15823 NULL
++provider_out_words_ib_uverbs_ex_cmd_hdr_15828_fields provider_out_words ib_uverbs_ex_cmd_hdr 0 15828 NULL
++word13_lpfc_mbx_read_config_15832_fields word13 lpfc_mbx_read_config 0 15832 NULL
++ocfs2_read_blocks_fndecl_15834_fields ocfs2_read_blocks fndecl 0-2 15834 NULL
++skb_make_writable_fndecl_15836_fields skb_make_writable fndecl 2 15836 NULL
++rx_num_pg_ch_pm_15838_fields rx_num_pg ch_pm 0 15838 NULL
++block_llseek_fndecl_15846_fields block_llseek fndecl 2 15846 NULL
++ssthresh_tcp_congestion_ops_15847_fields ssthresh tcp_congestion_ops 0 15847 NULL
++pnp_register_mem_resource_fndecl_15849_fields pnp_register_mem_resource fndecl 6-3-5 15849 NULL
++net2272_read_fndecl_15850_fields net2272_read fndecl 0 15850 NULL
++sb_set_blocksize_fndecl_15860_fields sb_set_blocksize fndecl 2-0 15860 NULL
++period_bytes_min_snd_pcm_hardware_15864_fields period_bytes_min snd_pcm_hardware 0 15864 NULL
++msg_ctlmax_ipc_namespace_15868_fields msg_ctlmax ipc_namespace 0 15868 NULL
++o2net_send_tcp_msg_fndecl_15876_fields o2net_send_tcp_msg fndecl 4-3 15876 NULL
++ie_len_cfg80211_auth_request_15886_fields ie_len cfg80211_auth_request 0 15886 NULL nohasharray
++dp_init_fndecl_15886_fields dp_init fndecl 0 15886 &ie_len_cfg80211_auth_request_15886_fields
++ext4_get_block_trans_fndecl_15889_fields ext4_get_block_trans fndecl 2 15889 NULL
++num_pds_mthca_limits_15899_fields num_pds mthca_limits 0 15899 NULL nohasharray
++size_drm_i915_error_state_buf_15899_fields size drm_i915_error_state_buf 0 15899 &num_pds_mthca_limits_15899_fields
++vgem_gem_create_fndecl_15901_fields vgem_gem_create fndecl 4 15901 NULL
++usb_alloc_dev_fndecl_15902_fields usb_alloc_dev fndecl 3 15902 NULL
++flags_v4l2_ioctl_info_15905_fields flags v4l2_ioctl_info 0 15905 NULL
++status_pch_udc_data_dma_desc_15911_fields status pch_udc_data_dma_desc 0 15911 NULL
++rh_queue_status_fndecl_15921_fields rh_queue_status fndecl 0 15921 NULL
++group_width_ore_layout_15927_fields group_width ore_layout 0 15927 NULL nohasharray
++btt_do_bvec_fndecl_15927_fields btt_do_bvec fndecl 0 15927 &group_width_ore_layout_15927_fields
++npages_gssx_arg_accept_sec_context_15939_fields npages gssx_arg_accept_sec_context 0 15939 NULL
++netlink_sendmsg_fndecl_15943_fields netlink_sendmsg fndecl 3 15943 NULL
++num_rss_qs_be_adapter_15944_fields num_rss_qs be_adapter 0 15944 NULL
++xfs_ialloc_pagi_init_fndecl_15952_fields xfs_ialloc_pagi_init fndecl 3 15952 NULL
++mcp795_rtcc_read_fndecl_15956_fields mcp795_rtcc_read fndecl 4 15956 NULL
++ebt_buf_add_pad_fndecl_15958_fields ebt_buf_add_pad fndecl 0 15958 NULL nohasharray
++nr_rtc_mem_15958_fields nr rtc_mem 0 15958 &ebt_buf_add_pad_fndecl_15958_fields
++data_dma_usb_acecad_15962_fields data_dma usb_acecad 0 15962 NULL
++splice_pipe_to_pipe_fndecl_15964_fields splice_pipe_to_pipe fndecl 3 15964 NULL
++brcmf_bus_add_txhdrlen_fndecl_15969_fields brcmf_bus_add_txhdrlen fndecl 2 15969 NULL
++ath6kl_wmi_beginscan_cmd_fndecl_15973_fields ath6kl_wmi_beginscan_cmd fndecl 8-2 15973 NULL
++first_burst_iscsi_session_15974_fields first_burst iscsi_session 0 15974 NULL
++mmc_test_area_io_fndecl_15982_fields mmc_test_area_io fndecl 2 15982 NULL
++nb_blocks_INFTLrecord_15986_fields nb_blocks INFTLrecord 0 15986 NULL
++data_len_usb_req_15991_fields data_len usb_req 0 15991 NULL
++xfs_qm_dqtobp_fndecl_15995_fields xfs_qm_dqtobp fndecl 0 15995 NULL
++num_mem_chunks_ath10k_wmi_16005_fields num_mem_chunks ath10k_wmi 0 16005 NULL
++last_offset_inode_defrag_16007_fields last_offset inode_defrag 0 16007 NULL
++ivtv_buf_copy_from_user_fndecl_16013_fields ivtv_buf_copy_from_user fndecl 4 16013 NULL
++payload_len_bsg_buffer_16019_fields payload_len bsg_buffer 0 16019 NULL
++bo_size_drm_amdgpu_gem_create_in_16025_fields bo_size drm_amdgpu_gem_create_in 0 16025 NULL nohasharray
++xhci_urb_dequeue_fndecl_16025_fields xhci_urb_dequeue fndecl 3 16025 &bo_size_drm_amdgpu_gem_create_in_16025_fields nohasharray
++jfs_truncate_nolock_fndecl_16025_fields jfs_truncate_nolock fndecl 2 16025 &xhci_urb_dequeue_fndecl_16025_fields
++len_brcmf_tlv_16031_fields len brcmf_tlv 0 16031 NULL
++sb_permission_fndecl_16032_fields sb_permission fndecl 0 16032 NULL
++ct_atc_create_fndecl_16033_fields ct_atc_create fndecl 3 16033 NULL nohasharray
++channels_max_hda_pcm_stream_16033_fields channels_max hda_pcm_stream 0 16033 &ct_atc_create_fndecl_16033_fields
++count_connectors_drm_mode_crtc_16038_fields count_connectors drm_mode_crtc 0 16038 NULL nohasharray
++check_presence_tcf_meta_ops_16038_fields check_presence tcf_meta_ops 0 16038 &count_connectors_drm_mode_crtc_16038_fields
++ht_multiplier_i40iw_hmc_fpm_misc_16040_fields ht_multiplier i40iw_hmc_fpm_misc 0 16040 NULL
++vxfs_try_sb_magic_fndecl_16048_fields vxfs_try_sb_magic fndecl 3 16048 NULL
++nsec_seg_buf_16050_fields nsec seg_buf 0 16050 NULL
++nouveau_bo_new_fndecl_16051_fields nouveau_bo_new fndecl 2 16051 NULL
++len_ahc_dma_seg_16052_fields len ahc_dma_seg 0 16052 NULL
++ue_phys_ocfs2_unwritten_extent_16054_fields ue_phys ocfs2_unwritten_extent 0 16054 NULL
++n_insns_comedi_insnlist_16056_fields n_insns comedi_insnlist 0 16056 NULL
++xfs_alloc_fix_freelist_fndecl_16057_fields xfs_alloc_fix_freelist fndecl 0 16057 NULL
++ts_packet_size_cx231xx_tsport_16063_fields ts_packet_size cx231xx_tsport 0 16063 NULL
++ddp_ppod_init_idata_fndecl_16064_fields ddp_ppod_init_idata fndecl 4 16064 NULL
++set_parameters_fndecl_16066_fields set_parameters fndecl 8-7 16066 NULL nohasharray
++compat_sys_sendfile64_fndecl_16066_fields compat_sys_sendfile64 fndecl 4 16066 &set_parameters_fndecl_16066_fields
++post_one_send_fndecl_16067_fields post_one_send fndecl 4 16067 NULL
++max_rxd_qlcnic_adapter_16074_fields max_rxd qlcnic_adapter 0 16074 NULL
++target_set_nacl_queue_depth_fndecl_16084_fields target_set_nacl_queue_depth fndecl 3 16084 NULL
++mgag200_ttm_tt_create_fndecl_16093_fields mgag200_ttm_tt_create fndecl 2 16093 NULL
++pci_add_resource_offset_fndecl_16095_fields pci_add_resource_offset fndecl 3 16095 NULL
++w_mode_size_16096_fields w mode_size 0 16096 NULL
++param_len_mgmt_pending_cmd_16099_fields param_len mgmt_pending_cmd 0 16099 NULL
++grow_dev_page_fndecl_16100_fields grow_dev_page fndecl 4-5-3 16100 NULL
++instances_minus_one_mxt_object_16107_fields instances_minus_one mxt_object 0 16107 NULL
++find_extend_vma_fndecl_16110_fields find_extend_vma fndecl 2 16110 NULL
++brcmf_usb_dl_send_bulk_fndecl_16113_fields brcmf_usb_dl_send_bulk fndecl 3 16113 NULL nohasharray
++xillybus_llseek_fndecl_16113_fields xillybus_llseek fndecl 2 16113 &brcmf_usb_dl_send_bulk_fndecl_16113_fields
++tx_bytes_queued_ipw_tty_16114_fields tx_bytes_queued ipw_tty 0 16114 NULL
++mip4_i2c_xfer_fndecl_16131_fields mip4_i2c_xfer fndecl 3-5 16131 NULL
++vf_count_efx_nic_16134_fields vf_count efx_nic 0 16134 NULL
++hci_req_add_ev_fndecl_16136_fields hci_req_add_ev fndecl 3 16136 NULL
++port_length_c67x00_td_16141_fields port_length c67x00_td 0 16141 NULL
++len_virtio_vsock_pkt_16148_fields len virtio_vsock_pkt 0 16148 NULL nohasharray
++samples_per_line_v4l2_vbi_format_16148_fields samples_per_line v4l2_vbi_format 0 16148 &len_virtio_vsock_pkt_16148_fields
++vlan_tag_eth_fast_path_rx_reg_cqe_16155_fields vlan_tag eth_fast_path_rx_reg_cqe 0 16155 NULL
++max_packet_length_mv_dqh_16157_fields max_packet_length mv_dqh 0 16157 NULL
++beep_amp_via_spec_16168_fields beep_amp via_spec 0 16168 NULL
++read_for_csum_fndecl_16170_fields read_for_csum fndecl 2-3 16170 NULL
++ath6kl_wmi_set_keepalive_cmd_fndecl_16174_fields ath6kl_wmi_set_keepalive_cmd fndecl 2 16174 NULL
++rxrpc_recvmsg_fndecl_16178_fields rxrpc_recvmsg fndecl 3 16178 NULL
++board_span_myri10ge_priv_16182_fields board_span myri10ge_priv 0 16182 NULL nohasharray
++minor_lirc_driver_16182_fields minor lirc_driver 0 16182 &board_span_myri10ge_priv_16182_fields
++pathlen_nfs_symlinkargs_16183_fields pathlen nfs_symlinkargs 0 16183 NULL
++width_drm_mode_fb_cmd2_16185_fields width drm_mode_fb_cmd2 0 16185 NULL
++h_input_res_16191_fields h input_res 0 16191 NULL
++offset_user_sdma_iovec_16195_fields offset user_sdma_iovec 0 16195 NULL
++vid_hdr_offs_mtd_dev_param_16199_fields vid_hdr_offs mtd_dev_param 0 16199 NULL
++blksize_mtd_blktrans_ops_16221_fields blksize mtd_blktrans_ops 0 16221 NULL
++port_hdspm_16225_fields port hdspm 0 16225 NULL
++mmio_vardecl_via_wdt_c_16227_fields mmio vardecl_via_wdt.c 0 16227 NULL
++m_in_maxlevels_xfs_mount_16231_fields m_in_maxlevels xfs_mount 0 16231 NULL
++n_targets_nci_dev_16233_fields n_targets nci_dev 0 16233 NULL
++operand_1_len_ccp_ecc_modular_math_16234_fields operand_1_len ccp_ecc_modular_math 0 16234 NULL
++ks8851_rdreg32_fndecl_16240_fields ks8851_rdreg32 fndecl 0 16240 NULL
++len_wmi_p2p_rx_probe_req_event_16241_fields len wmi_p2p_rx_probe_req_event 0 16241 NULL
++__wl12xx_spi_raw_write_fndecl_16246_fields __wl12xx_spi_raw_write fndecl 4 16246 NULL nohasharray
++used_count_pvr2_buffer_16246_fields used_count pvr2_buffer 0 16246 &__wl12xx_spi_raw_write_fndecl_16246_fields
++num_r_vecs_nfp_net_16247_fields num_r_vecs nfp_net 0 16247 NULL
++offs_ubifs_scan_node_16253_fields offs ubifs_scan_node 0 16253 NULL
++xfs_getbmapx_fix_eof_hole_fndecl_16255_fields xfs_getbmapx_fix_eof_hole fndecl 5 16255 NULL
++num_desc__drm_via_sg_info_16262_fields num_desc _drm_via_sg_info 0 16262 NULL
++length_scsi_data_buffer_16267_fields length scsi_data_buffer 0 16267 NULL
++s_fpg_ufs_sb_private_info_16269_fields s_fpg ufs_sb_private_info 0 16269 NULL
++s_inodes_per_group_ext2_sb_info_16273_fields s_inodes_per_group ext2_sb_info 0 16273 NULL
++_max_length_ieee80211_radiotap_iterator_16274_fields _max_length ieee80211_radiotap_iterator 0 16274 NULL
++hfi1_skip_sge_fndecl_16275_fields hfi1_skip_sge fndecl 2 16275 NULL
++mmio_size_sis_video_info_16284_fields mmio_size sis_video_info 0 16284 NULL
++find_ibft_region_fndecl_16285_fields find_ibft_region fndecl 0 16285 NULL
++isdn_tty_countDLE_fndecl_16304_fields isdn_tty_countDLE fndecl 0 16304 NULL
++len_ieee80211_vendor_radiotap_16308_fields len ieee80211_vendor_radiotap 0 16308 NULL nohasharray
++wm_adsp_compr_copy_fndecl_16308_fields wm_adsp_compr_copy fndecl 3 16308 &len_ieee80211_vendor_radiotap_16308_fields
++aac_fib_send_fndecl_16315_fields aac_fib_send fndecl 3 16315 NULL
++memblock_mark_mirror_fndecl_16321_fields memblock_mark_mirror fndecl 2-1 16321 NULL
++major_tty_driver_16323_fields major tty_driver 0 16323 NULL
++AscGetMaxDmaCount_fndecl_16326_fields AscGetMaxDmaCount fndecl 0 16326 NULL
++__ax88179_write_cmd_fndecl_16341_fields __ax88179_write_cmd fndecl 5 16341 NULL
++max_vfs_be_resources_16343_fields max_vfs be_resources 0 16343 NULL
++fuse_dir_compat_ioctl_fndecl_16346_fields fuse_dir_compat_ioctl fndecl 2 16346 NULL
++channels_snd_emu10k1_fx8010_pcm_16368_fields channels snd_emu10k1_fx8010_pcm 0 16368 NULL
++udf_get_pblock_virt15_fndecl_16373_fields udf_get_pblock_virt15 fndecl 4 16373 NULL
++ssram_base_addr_telemetry_unit_config_16377_fields ssram_base_addr telemetry_unit_config 0 16377 NULL
++len_iwl_mvm_dump_desc_16383_fields len iwl_mvm_dump_desc 0 16383 NULL
++sr_set_blocklength_fndecl_16390_fields sr_set_blocklength fndecl 2 16390 NULL
++max_nr_frames_gnttab_query_size_16393_fields max_nr_frames gnttab_query_size 0 16393 NULL
++pci_map_page_fndecl_16395_fields pci_map_page fndecl 0 16395 NULL nohasharray
++set_pio_mode_fndecl_16395_fields set_pio_mode fndecl 2 16395 &pci_map_page_fndecl_16395_fields
++usbat_execute_command_fndecl_16400_fields usbat_execute_command fndecl 3 16400 NULL
++compress_sliced_buf_fndecl_16402_fields compress_sliced_buf fndecl 0-2 16402 NULL
++statelen_drbg_core_16405_fields statelen drbg_core 0 16405 NULL
++controller_number_mspro_sys_info_16408_fields controller_number mspro_sys_info 0 16408 NULL
++romfs_dev_read_fndecl_16412_fields romfs_dev_read fndecl 2-4 16412 NULL
++bcnt_aoeif_16414_fields bcnt aoeif 0 16414 NULL
++n_sectors_hpfs_super_block_16421_fields n_sectors hpfs_super_block 0 16421 NULL
++bNrInPins_uac_selector_unit_descriptor_16423_fields bNrInPins uac_selector_unit_descriptor 0 16423 NULL nohasharray
++per_vf_cids_qed_cdu_iids_16423_fields per_vf_cids qed_cdu_iids 0 16423 &bNrInPins_uac_selector_unit_descriptor_16423_fields
++gem_allocate_guc_obj_fndecl_16428_fields gem_allocate_guc_obj fndecl 2 16428 NULL
++vm_start_usb_memory_16438_fields vm_start usb_memory 0 16438 NULL
++numa_emulation_fndecl_16441_fields numa_emulation fndecl 2 16441 NULL
++ep_in_usbtest_info_16442_fields ep_in usbtest_info 0 16442 NULL
++pcmcia_irq_pcmcia_socket_16443_fields pcmcia_irq pcmcia_socket 0 16443 NULL
++ReadHSCX_fndecl_16444_fields ReadHSCX fndecl 0 16444 NULL
++mpu3050_xyz_read_reg_fndecl_16445_fields mpu3050_xyz_read_reg fndecl 3 16445 NULL
++endp_in_zd1201_16446_fields endp_in zd1201 0 16446 NULL
++frame_size_au0828_dev_16447_fields frame_size au0828_dev 0 16447 NULL
++sdhci_alloc_host_fndecl_16454_fields sdhci_alloc_host fndecl 2 16454 NULL
++wiimote_queue_fndecl_16469_fields wiimote_queue fndecl 3 16469 NULL
++sec_per_pg_nvm_dev_16472_fields sec_per_pg nvm_dev 0 16472 NULL
++prism2_change_mtu_fndecl_16473_fields prism2_change_mtu fndecl 2 16473 NULL
++m_sectbb_log_xfs_mount_16477_fields m_sectbb_log xfs_mount 0 16477 NULL nohasharray
++nfs_proc_symlink_fndecl_16477_fields nfs_proc_symlink fndecl 4 16477 &m_sectbb_log_xfs_mount_16477_fields
++msg_count_amd8111e_rx_dr_16493_fields msg_count amd8111e_rx_dr 0 16493 NULL
++sq_size_i40iw_qp_uk_init_info_16496_fields sq_size i40iw_qp_uk_init_info 0 16496 NULL
++blksz_fw_dl_mwifiex_pcie_device_16498_fields blksz_fw_dl mwifiex_pcie_device 0 16498 NULL
++max_srq_wqes_mthca_limits_16499_fields max_srq_wqes mthca_limits 0 16499 NULL
++stride_simplefb_platform_data_16503_fields stride simplefb_platform_data 0 16503 NULL
++crypt_alloc_buffer_fndecl_16511_fields crypt_alloc_buffer fndecl 2 16511 NULL
++size_i40iw_chunk_16517_fields size i40iw_chunk 0 16517 NULL
++btrfs_block_rsv_add_fndecl_16520_fields btrfs_block_rsv_add fndecl 0 16520 NULL
++blocks_available_dio_submit_16522_fields blocks_available dio_submit 0 16522 NULL
++xb_suballoc_loc_ocfs2_xattr_block_16523_fields xb_suballoc_loc ocfs2_xattr_block 0 16523 NULL
++io_throttle_count_vnic_snic_config_16529_fields io_throttle_count vnic_snic_config 0 16529 NULL
++hfi1_max_qp_wrs_vardecl_16533_fields hfi1_max_qp_wrs vardecl 0 16533 NULL nohasharray
++comm_size_perf_comm_event_16533_fields comm_size perf_comm_event 0 16533 &hfi1_max_qp_wrs_vardecl_16533_fields
++lpt_lebs_ubifs_info_16535_fields lpt_lebs ubifs_info 0 16535 NULL
++tmds_register_read_bytes_fndecl_16541_fields tmds_register_read_bytes fndecl 3 16541 NULL
++MaxSimpleVolumes_aac_get_container_count_resp_16542_fields MaxSimpleVolumes aac_get_container_count_resp 0 16542 NULL
++mlxsw_sp_port_change_mtu_fndecl_16550_fields mlxsw_sp_port_change_mtu fndecl 2 16550 NULL
++max_mthca_srq_16551_fields max mthca_srq 0 16551 NULL
++max_srq_sz_mlx4_dev_cap_16554_fields max_srq_sz mlx4_dev_cap 0 16554 NULL
++result_wa_xfer_16568_fields result wa_xfer 0 16568 NULL
++descriptor_elements_timb_dma_platform_data_channel_16581_fields descriptor_elements timb_dma_platform_data_channel 0 16581 NULL
++segment_count_sit_f2fs_super_block_16582_fields segment_count_sit f2fs_super_block 0 16582 NULL
++n_phy_pm8001_chip_info_16585_fields n_phy pm8001_chip_info 0 16585 NULL
++len_atmel_priv_ioctl_16592_fields len atmel_priv_ioctl 0 16592 NULL
++send_to_group_fndecl_16600_fields send_to_group fndecl 0 16600 NULL
++ext4_group_extend_fndecl_16613_fields ext4_group_extend fndecl 3 16613 NULL
++coda_upcall_fndecl_16614_fields coda_upcall fndecl 2 16614 NULL
++uc_outSize_upc_req_16629_fields uc_outSize upc_req 0 16629 NULL nohasharray
++xfs_bmap_btalloc_nullfb_fndecl_16629_fields xfs_bmap_btalloc_nullfb fndecl 0 16629 &uc_outSize_upc_req_16629_fields nohasharray
++ext_tree_remove_fndecl_16629_fields ext_tree_remove fndecl 3-4 16629 &xfs_bmap_btalloc_nullfb_fndecl_16629_fields
++crtc_hsync_start_drm_display_mode_16643_fields crtc_hsync_start drm_display_mode 0 16643 NULL
++svc_pool_map_init_pernode_fndecl_16648_fields svc_pool_map_init_pernode fndecl 0 16648 NULL
++nfc_hci_allocate_device_fndecl_16649_fields nfc_hci_allocate_device fndecl 8-6 16649 NULL
++wpa_ie_len_mwifiex_private_16651_fields wpa_ie_len mwifiex_private 0 16651 NULL
++notify_uva_vmci_set_notify_info_16655_fields notify_uva vmci_set_notify_info 0 16655 NULL
++rxHeader1_edgeport_serial_16658_fields rxHeader1 edgeport_serial 0 16658 NULL
++core_alua_write_tpg_metadata_fndecl_16659_fields core_alua_write_tpg_metadata fndecl 3 16659 NULL
++li_total_channels_vardecl_16663_fields li_total_channels vardecl 0 16663 NULL
++memblock_remove_fndecl_16669_fields memblock_remove fndecl 2-1 16669 NULL
++of_dma_match_channel_fndecl_16675_fields of_dma_match_channel fndecl 3 16675 NULL
++dlfb_get_edid_fndecl_16677_fields dlfb_get_edid fndecl 0 16677 NULL nohasharray
++ext_mem_k_screen_info_16677_fields ext_mem_k screen_info 0 16677 &dlfb_get_edid_fndecl_16677_fields
++smaps_pte_range_fndecl_16684_fields smaps_pte_range fndecl 2 16684 NULL
++hue_sd_gl860_16686_fields hue sd_gl860 0 16686 NULL
++__alloc_objio_seg_fndecl_16688_fields __alloc_objio_seg fndecl 1 16688 NULL
++jffs2_scan_xref_node_fndecl_16692_fields jffs2_scan_xref_node fndecl 4 16692 NULL
++llcp_tlv_miux_fndecl_16699_fields llcp_tlv_miux fndecl 0 16699 NULL
++ad714x_spi_read_fndecl_16700_fields ad714x_spi_read fndecl 4 16700 NULL
++tlv_buf_len_mwifiex_scan_cmd_config_16702_fields tlv_buf_len mwifiex_scan_cmd_config 0 16702 NULL
++hdlc_loop_fndecl_16708_fields hdlc_loop fndecl 0 16708 NULL
++vm_mmap_pgoff_fndecl_16712_fields vm_mmap_pgoff fndecl 3 16712 NULL nohasharray
++ima_appraise_measurement_fndecl_16712_fields ima_appraise_measurement fndecl 6 16712 &vm_mmap_pgoff_fndecl_16712_fields
++ntargets_ips_ha_16718_fields ntargets ips_ha 0 16718 NULL
++pcm_buf_host_rw_ofs_snd_card_asihpi_pcm_16719_fields pcm_buf_host_rw_ofs snd_card_asihpi_pcm 0 16719 NULL
++opcfg_ofsl_cyttsp4_sysinfo_data_16723_fields opcfg_ofsl cyttsp4_sysinfo_data 0 16723 NULL
++multi_io_quirk_mmc_host_ops_16729_fields multi_io_quirk mmc_host_ops 0 16729 NULL
++fat_length_fat_boot_sector_16730_fields fat_length fat_boot_sector 0 16730 NULL
++shader_rec_size_drm_vc4_submit_cl_16731_fields shader_rec_size drm_vc4_submit_cl 0 16731 NULL
++width_qxl_head_16734_fields width qxl_head 0 16734 NULL
++nchannels_twl6030_gpadc_platform_data_16736_fields nchannels twl6030_gpadc_platform_data 0 16736 NULL
++udf_add_extendedattr_fndecl_16737_fields udf_add_extendedattr fndecl 2 16737 NULL
++blockshift_sddr55_card_info_16749_fields blockshift sddr55_card_info 0 16749 NULL
++lib80211_wep_encrypt_fndecl_16752_fields lib80211_wep_encrypt fndecl 2 16752 NULL
++skb_pull_rcsum_fndecl_16757_fields skb_pull_rcsum fndecl 2 16757 NULL
++discard_next_dnode_fndecl_16758_fields discard_next_dnode fndecl 2 16758 NULL
++ucNumEntries__ATOM_Tonga_PCIE_Table_16761_fields ucNumEntries _ATOM_Tonga_PCIE_Table 0 16761 NULL
++__vfs_write_fndecl_16765_fields __vfs_write fndecl 3-0 16765 NULL
++num_q_csio_wrm_16770_fields num_q csio_wrm 0 16770 NULL nohasharray
++cluster_vardecl_pd_c_16770_fields cluster vardecl_pd.c 0 16770 &num_q_csio_wrm_16770_fields
++cfg80211_classify8021d_fndecl_16771_fields cfg80211_classify8021d fndecl 0 16771 NULL
++security_inode_need_killpriv_fndecl_16777_fields security_inode_need_killpriv fndecl 0 16777 NULL
++qxl_draw_opaque_fb_fndecl_16781_fields qxl_draw_opaque_fb fndecl 2 16781 NULL
++u132_hcd_giveback_urb_fndecl_16783_fields u132_hcd_giveback_urb fndecl 4 16783 NULL nohasharray
++extra_prefix_len_ieee80211_crypto_ops_16783_fields extra_prefix_len ieee80211_crypto_ops 0 16783 &u132_hcd_giveback_urb_fndecl_16783_fields
++iscsit_build_text_rsp_fndecl_16784_fields iscsit_build_text_rsp fndecl 0 16784 NULL nohasharray
++num_pfns_virtio_balloon_16784_fields num_pfns virtio_balloon 0 16784 &iscsit_build_text_rsp_fndecl_16784_fields
++get_string_fndecl_16789_fields get_string fndecl 0 16789 NULL
++batch_shrinker_16806_fields batch shrinker 0 16806 NULL
++ieee80211_tx_ba_session_handle_start_fndecl_16807_fields ieee80211_tx_ba_session_handle_start fndecl 2 16807 NULL
++spu_subctxt_cnt_qib_user_info_16810_fields spu_subctxt_cnt qib_user_info 0 16810 NULL nohasharray
++iscsit_map_iovec_fndecl_16810_fields iscsit_map_iovec fndecl 4-3-0 16810 &spu_subctxt_cnt_qib_user_info_16810_fields
++csecs_nvm_id_group_16817_fields csecs nvm_id_group 0 16817 NULL
++offset_btrfs_disk_key_16819_fields offset btrfs_disk_key 0 16819 NULL
++vxlan_gro_remcsum_fndecl_16823_fields vxlan_gro_remcsum fndecl 4-2 16823 NULL
++count_range_bits_fndecl_16830_fields count_range_bits fndecl 0-3 16830 NULL
++audit_send_reply_fndecl_16835_fields audit_send_reply fndecl 7 16835 NULL
++nr_p2m_frames_start_info_16837_fields nr_p2m_frames start_info 0 16837 NULL
++alignment_ubi_mkvol_req_16842_fields alignment ubi_mkvol_req 0 16842 NULL
++tx_headroom_nfc_digital_dev_16844_fields tx_headroom nfc_digital_dev 0 16844 NULL
++ccp_do_cmac_update_fndecl_16848_fields ccp_do_cmac_update fndecl 2 16848 NULL
++base_jfs_log_16858_fields base jfs_log 0 16858 NULL
++radeon_bo_create_fndecl_16863_fields radeon_bo_create fndecl 2 16863 NULL
++no_channels_ltr501_chip_info_16866_fields no_channels ltr501_chip_info 0 16866 NULL nohasharray
++cnic_alloc_new_id_fndecl_16866_fields cnic_alloc_new_id fndecl 0 16866 &no_channels_ltr501_chip_info_16866_fields
++size_nvs_page_16880_fields size nvs_page 0 16880 NULL
++cik_get_csb_size_fndecl_16882_fields cik_get_csb_size fndecl 0 16882 NULL
++odm_stripe_unit_pnfs_osd_data_map_16884_fields odm_stripe_unit pnfs_osd_data_map 0 16884 NULL
++dma_buf_size_ddb_output_16886_fields dma_buf_size ddb_output 0 16886 NULL nohasharray
++from_offset_xt_string_info_16886_fields from_offset xt_string_info 0 16886 &dma_buf_size_ddb_output_16886_fields
++register_sound_special_device_fndecl_16891_fields register_sound_special_device fndecl 2 16891 NULL
++buf_sz_ath10k_pci_pipe_16896_fields buf_sz ath10k_pci_pipe 0 16896 NULL
++cqe_size_mlx4_caps_16902_fields cqe_size mlx4_caps 0 16902 NULL
++integrity_digsig_verify_fndecl_16903_fields integrity_digsig_verify fndecl 3 16903 NULL
++msi2500_ctrl_msg_fndecl_16907_fields msi2500_ctrl_msg fndecl 0 16907 NULL
++tx_ring_order_vardecl_main_c_16915_fields tx_ring_order vardecl_main.c 0 16915 NULL
++fsnotify_fndecl_16916_fields fsnotify fndecl 0 16916 NULL nohasharray
++idx_mxser_board_16916_fields idx mxser_board 0 16916 &fsnotify_fndecl_16916_fields
++geneve_build_header_fndecl_16917_fields geneve_build_header fndecl 4 16917 NULL
++bpf_program_num_elem_xt_bpf_info_16920_fields bpf_program_num_elem xt_bpf_info 0 16920 NULL
++gpp_size_intel_community_16924_fields gpp_size intel_community 0 16924 NULL
++cont_size_rock_state_16925_fields cont_size rock_state 0 16925 NULL
++snd_rawmidi_transmit_fndecl_16928_fields snd_rawmidi_transmit fndecl 0-3 16928 NULL
++sys_mbind_fndecl_16933_fields sys_mbind fndecl 2-1 16933 NULL
++size_intel_ringbuffer_16937_fields size intel_ringbuffer 0 16937 NULL
++ath10k_wmi_alloc_skb_fndecl_16949_fields ath10k_wmi_alloc_skb fndecl 2 16949 NULL nohasharray
++rrpc_map_page_fndecl_16949_fields rrpc_map_page fndecl 2 16949 &ath10k_wmi_alloc_skb_fndecl_16949_fields
++len_pcan_usb_pro_rxmsg_16950_fields len pcan_usb_pro_rxmsg 0 16950 NULL
++intel_framebuffer_pitch_for_width_fndecl_16956_fields intel_framebuffer_pitch_for_width fndecl 0-2-1 16956 NULL
++minor_oss_minor_dev_16965_fields minor oss_minor_dev 0 16965 NULL
++__alloc_dummy_extent_buffer_fndecl_16969_fields __alloc_dummy_extent_buffer fndecl 2-3 16969 NULL
++cifs_sync_write_fndecl_16972_fields cifs_sync_write fndecl 6 16972 NULL
++fat_reserved_fat_bios_param_block_16977_fields fat_reserved fat_bios_param_block 0 16977 NULL
++virtio_gpu_alloc_cmd_fndecl_16978_fields virtio_gpu_alloc_cmd fndecl 3 16978 NULL
++size_drm_vmw_shader_create_arg_16979_fields size drm_vmw_shader_create_arg 0 16979 NULL
++inquiry_len_scsi_device_16981_fields inquiry_len scsi_device 0 16981 NULL
++num_cs_dw_spi_16989_fields num_cs dw_spi 0 16989 NULL
++src_base_apei_exec_context_16995_fields src_base apei_exec_context 0 16995 NULL
++endp_out2_zd1201_16998_fields endp_out2 zd1201 0 16998 NULL
++cifs_min_rcv_vardecl_17001_fields cifs_min_rcv vardecl 0 17001 NULL
++xfs_dir_replace_fndecl_17002_fields xfs_dir_replace fndecl 7 17002 NULL
++id_rtc_device_17005_fields id rtc_device 0 17005 NULL
++snd_hdac_bus_exec_verb_fndecl_17009_fields snd_hdac_bus_exec_verb fndecl 0 17009 NULL
++consumed_unix_skb_parms_17012_fields consumed unix_skb_parms 0 17012 NULL
++ds_segment_shift_logfs_disk_super_17013_fields ds_segment_shift logfs_disk_super 0 17013 NULL
++rq_size_i40iw_qp_uk_init_info_17016_fields rq_size i40iw_qp_uk_init_info 0 17016 NULL nohasharray
++u132_hcd_abandon_urb_fndecl_17016_fields u132_hcd_abandon_urb fndecl 4 17016 &rq_size_i40iw_qp_uk_init_info_17016_fields
++num_pads_media_entity_17022_fields num_pads media_entity 0 17022 NULL
++ext4_mb_load_buddy_fndecl_17030_fields ext4_mb_load_buddy fndecl 2-0 17030 NULL
++ast_get_vram_info_fndecl_17034_fields ast_get_vram_info fndecl 0 17034 NULL
++hw_context_size_drm_i915_private_17036_fields hw_context_size drm_i915_private 0 17036 NULL
++inuse_kmem_cache_17038_fields inuse kmem_cache 0 17038 NULL
++alloc_targets_fndecl_17049_fields alloc_targets fndecl 2 17049 NULL
++ext4_ext_map_blocks_fndecl_17053_fields ext4_ext_map_blocks fndecl 0 17053 NULL nohasharray
++max_sge_rds_ib_device_17053_fields max_sge rds_ib_device 0 17053 &ext4_ext_map_blocks_fndecl_17053_fields
++ufx_submit_urb_fndecl_17065_fields ufx_submit_urb fndecl 3 17065 NULL
++number_of_packets_usbip_header_cmd_submit_17069_fields number_of_packets usbip_header_cmd_submit 0 17069 NULL
++ext2_commit_chunk_fndecl_17074_fields ext2_commit_chunk fndecl 3 17074 NULL
++vmbus_sendpacket_pagebuffer_ctl_fndecl_17076_fields vmbus_sendpacket_pagebuffer_ctl fndecl 5 17076 NULL
++offset_xen_netif_tx_request_17081_fields offset xen_netif_tx_request 0 17081 NULL
++rsp_que_len_qla_hw_data_17082_fields rsp_que_len qla_hw_data 0 17082 NULL nohasharray
++ax88179_read_cmd_fndecl_17082_fields ax88179_read_cmd fndecl 5 17082 &rsp_que_len_qla_hw_data_17082_fields
++ccp_prepare_data_fndecl_17091_fields ccp_prepare_data fndecl 4 17091 NULL
++xfs_file_fallocate_fndecl_17093_fields xfs_file_fallocate fndecl 3-4 17093 NULL
++obfuscate_tx_buffer_fndecl_17095_fields obfuscate_tx_buffer fndecl 0-2 17095 NULL nohasharray
++copy_data_fndecl_17095_fields copy_data fndecl 6 17095 &obfuscate_tx_buffer_fndecl_17095_fields
++size_ipack_region_17100_fields size ipack_region 0 17100 NULL nohasharray
++phys_base_fore200e_17100_fields phys_base fore200e 0 17100 &size_ipack_region_17100_fields
++nr_voices_seq_oss_synth_17102_fields nr_voices seq_oss_synth 0 17102 NULL
++len_st_fifo_entry_17104_fields len st_fifo_entry 0 17104 NULL nohasharray
++ro_step_fndecl_17104_fields ro_step fndecl 2 17104 &len_st_fifo_entry_17104_fields
++sdio_readsb_fndecl_17108_fields sdio_readsb fndecl 4 17108 NULL
++count_stframe_17112_fields count stframe 0 17112 NULL
++zoneshift_alauda_media_info_17115_fields zoneshift alauda_media_info 0 17115 NULL
++xfs_iomap_prealloc_size_fndecl_17118_fields xfs_iomap_prealloc_size fndecl 3 17118 NULL
++sample_rate_pcxhr_mgr_17120_fields sample_rate pcxhr_mgr 0 17120 NULL
++ixgbe_get_pcie_msix_count_generic_fndecl_17122_fields ixgbe_get_pcie_msix_count_generic fndecl 0 17122 NULL
++hci_sock_recvmsg_fndecl_17131_fields hci_sock_recvmsg fndecl 3 17131 NULL
++fsl_edma_desc_residue_fndecl_17134_fields fsl_edma_desc_residue fndecl 0 17134 NULL
++irq_stmpe_variant_block_17137_fields irq stmpe_variant_block 0 17137 NULL
++irq_dma_yealink_dev_17149_fields irq_dma yealink_dev 0 17149 NULL
++size_buf_image_desc_17151_fields size_buf image_desc 0 17151 NULL
++unmap_region_fndecl_17166_fields unmap_region fndecl 1 17166 NULL
++x86_clflush_size_cpuinfo_x86_17167_fields x86_clflush_size cpuinfo_x86 0 17167 NULL
++mcp251x_hw_tx_frame_fndecl_17170_fields mcp251x_hw_tx_frame fndecl 3 17170 NULL
++skb_copy_expand_fndecl_17174_fields skb_copy_expand fndecl 2 17174 NULL
++mtu_vnic_enet_config_17176_fields mtu vnic_enet_config 0 17176 NULL nohasharray
++ip_options_get_finish_fndecl_17176_fields ip_options_get_finish fndecl 4 17176 &mtu_vnic_enet_config_17176_fields
++start_block_swap_extent_17179_fields start_block swap_extent 0 17179 NULL
++read_normal_summaries_fndecl_17185_fields read_normal_summaries fndecl 2 17185 NULL
++num_component_match_17187_fields num component_match 0 17187 NULL
++sys_pread64_fndecl_17210_fields sys_pread64 fndecl 3 17210 NULL
++logical_blk_num_osst_tape_17216_fields logical_blk_num osst_tape 0 17216 NULL
++ud_clear_fndecl_17219_fields ud_clear fndecl 6-4-5-3 17219 NULL nohasharray
++srp_map_finish_fmr_fndecl_17219_fields srp_map_finish_fmr fndecl 0 17219 &ud_clear_fndecl_17219_fields
++vsync_start_drm_display_mode_17229_fields vsync_start drm_display_mode 0 17229 NULL
++ioread32be_fndecl_17230_fields ioread32be fndecl 0 17230 NULL
++__btrfs_add_ordered_extent_fndecl_17234_fields __btrfs_add_ordered_extent fndecl 4-2-3 17234 NULL
++alloc_isa_irq_from_domain_fndecl_17243_fields alloc_isa_irq_from_domain fndecl 2 17243 NULL
++relocated_ramdisk_vardecl_17246_fields relocated_ramdisk vardecl 0 17246 NULL
++count_acpi_object_package_17250_fields count acpi_object_package 0 17250 NULL
++len_spi_ioc_transfer_17252_fields len spi_ioc_transfer 0 17252 NULL
++bm_resync_fo_drbd_device_17253_fields bm_resync_fo drbd_device 0 17253 NULL nohasharray
++LastFreeEUN_INFTLrecord_17253_fields LastFreeEUN INFTLrecord 0 17253 &bm_resync_fo_drbd_device_17253_fields
++num_vfs_be_adapter_17257_fields num_vfs be_adapter 0 17257 NULL nohasharray
++sctp_v6_err_fndecl_17257_fields sctp_v6_err fndecl 5 17257 &num_vfs_be_adapter_17257_fields
++page_to_skb_fndecl_17261_fields page_to_skb fndecl 5-4-6 17261 NULL
++line_uart_port_17263_fields line uart_port 0 17263 NULL
++fat_sec_per_clus_fat_bios_param_block_17264_fields fat_sec_per_clus fat_bios_param_block 0 17264 NULL
++alloc_candev_fndecl_17267_fields alloc_candev fndecl 2-1 17267 NULL
++macsec_finalize_skb_fndecl_17269_fields macsec_finalize_skb fndecl 2-3 17269 NULL
++bnx2_rx_skb_fndecl_17272_fields bnx2_rx_skb fndecl 5-4 17272 NULL nohasharray
++offs_nand_bbt_descr_17272_fields offs nand_bbt_descr 0 17272 &bnx2_rx_skb_fndecl_17272_fields
++w_stk_size_17273_fields w stk_size 0 17273 NULL nohasharray
++size_msdos_dir_entry_17273_fields size msdos_dir_entry 0 17273 &w_stk_size_17273_fields
++desired_speed_ide_drive_s_17293_fields desired_speed ide_drive_s 0 17293 NULL
++xfs_alloc_find_best_extent_fndecl_17294_fields xfs_alloc_find_best_extent fndecl 0 17294 NULL
++sup_segnum_nilfs_suinfo_update_17298_fields sup_segnum nilfs_suinfo_update 0 17298 NULL
++div_round_integer_fndecl_17300_fields div_round_integer fndecl 0-2-1 17300 NULL
++read_reg_sja1000_priv_17306_fields read_reg sja1000_priv 0 17306 NULL
++bytes_per_scan_line_vbe_mode_ib_17308_fields bytes_per_scan_line vbe_mode_ib 0 17308 NULL
++dlen_isdn_ppp_resetparams_17312_fields dlen isdn_ppp_resetparams 0 17312 NULL
++top_mthca_alloc_17324_fields top mthca_alloc 0 17324 NULL nohasharray
++fw_memory_size_qla_hw_data_17324_fields fw_memory_size qla_hw_data 0 17324 &top_mthca_alloc_17324_fields
++blockmask_sddr09_card_info_17325_fields blockmask sddr09_card_info 0 17325 NULL
++mru_ipw_network_17329_fields mru ipw_network 0 17329 NULL
++reserved_eqs_mlx4_caps_17333_fields reserved_eqs mlx4_caps 0 17333 NULL
++freeblk_xfs_da_geometry_17334_fields freeblk xfs_da_geometry 0 17334 NULL
++dev_count_kvm_io_bus_17340_fields dev_count kvm_io_bus 0 17340 NULL
++MaxBuses__MSG_IOC_FACTS_REPLY_17350_fields MaxBuses _MSG_IOC_FACTS_REPLY 0 17350 NULL
++tipc_alloc_entry_fndecl_17360_fields tipc_alloc_entry fndecl 2 17360 NULL
++udf_tgetblk_fndecl_17362_fields udf_tgetblk fndecl 2 17362 NULL nohasharray
++cxgb4i_max_connect_vardecl_cxgb4i_c_17362_fields cxgb4i_max_connect vardecl_cxgb4i.c 0 17362 &udf_tgetblk_fndecl_17362_fields
++config_desc_fndecl_17365_fields config_desc fndecl 0 17365 NULL
++pn533_set_configuration_fndecl_17370_fields pn533_set_configuration fndecl 4 17370 NULL nohasharray
++num_txd_qlcnic_adapter_17370_fields num_txd qlcnic_adapter 0 17370 &pn533_set_configuration_fndecl_17370_fields
++name_len_vardecl_initramfs_c_17373_fields name_len vardecl_initramfs.c 0 17373 NULL
++acl_len_nfs_getaclargs_17378_fields acl_len nfs_getaclargs 0 17378 NULL
++vram_total_vardecl_uvesafb_c_17381_fields vram_total vardecl_uvesafb.c 0 17381 NULL
++hw_hdr_len_cardstate_17385_fields hw_hdr_len cardstate 0 17385 NULL
++ata_read_log_page_fndecl_17386_fields ata_read_log_page fndecl 5 17386 NULL
++mtd_ooblayout_count_freebytes_fndecl_17388_fields mtd_ooblayout_count_freebytes fndecl 0 17388 NULL
++raw_issuer_size_pkcs7_parse_context_17399_fields raw_issuer_size pkcs7_parse_context 0 17399 NULL
++cxgbit_put_login_tx_fndecl_17403_fields cxgbit_put_login_tx fndecl 3 17403 NULL
++num_channels_ad5592r_state_17408_fields num_channels ad5592r_state 0 17408 NULL
++snd_hda_create_spdif_in_ctls_fndecl_17414_fields snd_hda_create_spdif_in_ctls fndecl 2 17414 NULL
++dlm_master_lookup_fndecl_17417_fields dlm_master_lookup fndecl 4 17417 NULL
++l2up_create_fndecl_17421_fields l2up_create fndecl 3 17421 NULL
++max_in_queue_skl_module_cfg_17438_fields max_in_queue skl_module_cfg 0 17438 NULL
++dd_fcvport_size_fc_function_template_17449_fields dd_fcvport_size fc_function_template 0 17449 NULL
++nvme_char_major_vardecl_core_c_17452_fields nvme_char_major vardecl_core.c 0 17452 NULL
++reply_size_ncp_server_17456_fields reply_size ncp_server 0 17456 NULL
++bufsz_kexec_segment_17458_fields bufsz kexec_segment 0 17458 NULL
++__alloc_bootmem_node_nopanic_fndecl_17459_fields __alloc_bootmem_node_nopanic fndecl 3-4 17459 NULL
++custom_sig_size_s3fwrn5_fw_image_17467_fields custom_sig_size s3fwrn5_fw_image 0 17467 NULL
++sddr09_write_inplace_fndecl_17484_fields sddr09_write_inplace fndecl 4-3 17484 NULL
++e_block_mb_cache_entry_17485_fields e_block mb_cache_entry 0 17485 NULL
++mlx4_ib_reg_user_mr_fndecl_17492_fields mlx4_ib_reg_user_mr fndecl 2-3 17492 NULL
++qp_memcpy_from_queue_fndecl_17500_fields qp_memcpy_from_queue fndecl 5-4 17500 NULL
++user_buffer_offset_binder_proc_17508_fields user_buffer_offset binder_proc 0 17508 NULL
++invalidate_fndecl_17509_fields invalidate fndecl 4-3 17509 NULL
++npages_free_dma_pool_17513_fields npages_free dma_pool 0 17513 NULL nohasharray
++read_dst_fndecl_17513_fields read_dst fndecl 3 17513 &npages_free_dma_pool_17513_fields
++id_rtsx_pcr_17526_fields id rtsx_pcr 0 17526 NULL
++max3421_urb_dequeue_fndecl_17530_fields max3421_urb_dequeue fndecl 3 17530 NULL
++start_nilfs_write_info_17534_fields start nilfs_write_info 0 17534 NULL
++encode_nfspath3_fndecl_17536_fields encode_nfspath3 fndecl 3 17536 NULL
++how_many_channels_fndecl_17540_fields how_many_channels fndecl 0 17540 NULL
++wdm_read_fndecl_17542_fields wdm_read fndecl 3 17542 NULL nohasharray
++num_pln_nvm_id_group_17542_fields num_pln nvm_id_group 0 17542 &wdm_read_fndecl_17542_fields
++root_cluster_msdos_sb_info_17547_fields root_cluster msdos_sb_info 0 17547 NULL
++mlx4_en_rx_skb_fndecl_17554_fields mlx4_en_rx_skb fndecl 4 17554 NULL
++mchip_comp_read_frame_fndecl_17555_fields mchip_comp_read_frame fndecl 0-1 17555 NULL
++ufs_truncate_fndecl_17556_fields ufs_truncate fndecl 2 17556 NULL
++channels_cardstate_17560_fields channels cardstate 0 17560 NULL
++qcaspi_read_legacy_fndecl_17563_fields qcaspi_read_legacy fndecl 3 17563 NULL
++lcd_vsync_len_atyfb_par_17565_fields lcd_vsync_len atyfb_par 0 17565 NULL
++wMaxPacketSize_usb_rpipe_descriptor_17578_fields wMaxPacketSize usb_rpipe_descriptor 0 17578 NULL
++sb_fs_size_hpfs_sb_info_17581_fields sb_fs_size hpfs_sb_info 0 17581 NULL
++history_uuids_len_device_statistics_17597_fields history_uuids_len device_statistics 0 17597 NULL
++reg_bytes_regmap_format_17598_fields reg_bytes regmap_format 0 17598 NULL
++qlf_len_xfs_dq_logformat_17603_fields qlf_len xfs_dq_logformat 0 17603 NULL nohasharray
++ent_bread_fatent_operations_17603_fields ent_bread fatent_operations 0 17603 &qlf_len_xfs_dq_logformat_17603_fields
++isoc_ep_stk_camera_17604_fields isoc_ep stk_camera 0 17604 NULL
++nr_planes_nvm_dev_17609_fields nr_planes nvm_dev 0 17609 NULL
++nes_reject_fndecl_17612_fields nes_reject fndecl 3 17612 NULL
++min_alloc_order_gen_pool_17628_fields min_alloc_order gen_pool 0 17628 NULL
++num_peri_pl330_config_17630_fields num_peri pl330_config 0 17630 NULL
++num_channels_iio_hwmon_state_17633_fields num_channels iio_hwmon_state 0 17633 NULL
++zero_pfn_vardecl_17635_fields zero_pfn vardecl 0 17635 NULL
++video_linelength_sis_video_info_17642_fields video_linelength sis_video_info 0 17642 NULL
++wl12xx_sdio_raw_read_fndecl_17648_fields wl12xx_sdio_raw_read fndecl 4 17648 NULL
++mscode_note_digest_fndecl_17651_fields mscode_note_digest fndecl 5 17651 NULL
++buf_len_ceph_none_authorizer_17652_fields buf_len ceph_none_authorizer 0 17652 NULL
++size_mem_array_17655_fields size mem_array 0 17655 NULL
++btrfs_dedupe_file_range_fndecl_17658_fields btrfs_dedupe_file_range fndecl 2-5 17658 NULL nohasharray
++snd_wscale_tcp_options_received_17658_fields snd_wscale tcp_options_received 0 17658 &btrfs_dedupe_file_range_fndecl_17658_fields
++stereo_cmipci_sb_reg_17667_fields stereo cmipci_sb_reg 0 17667 NULL
++maybe_insert_hole_fndecl_17668_fields maybe_insert_hole fndecl 4-3 17668 NULL
++f2fs_update_extent_cache_range_fndecl_17671_fields f2fs_update_extent_cache_range fndecl 4-2-3 17671 NULL
++vdma_mem_alloc_fndecl_17672_fields vdma_mem_alloc fndecl 1 17672 NULL
++whci_capdata_quirks_fndecl_17683_fields whci_capdata_quirks fndecl 0-2 17683 NULL
++NFTL_formatblock_fndecl_17684_fields NFTL_formatblock fndecl 2 17684 NULL nohasharray
++iov_misc_count_iscsi_cmd_17684_fields iov_misc_count iscsi_cmd 0 17684 &NFTL_formatblock_fndecl_17684_fields
++ivtv_copy_buf_to_user_fndecl_17692_fields ivtv_copy_buf_to_user fndecl 4 17692 NULL
++opcfg_ofs_cyttsp4_sysinfo_ofs_17693_fields opcfg_ofs cyttsp4_sysinfo_ofs 0 17693 NULL
++bytes_left_ccp_sg_workarea_17701_fields bytes_left ccp_sg_workarea 0 17701 NULL
++_snd_pcm_hw_param_max_fndecl_17702_fields _snd_pcm_hw_param_max fndecl 3 17702 NULL nohasharray
++o2hb_setup_one_bio_fndecl_17702_fields o2hb_setup_one_bio fndecl 4 17702 &_snd_pcm_hw_param_max_fndecl_17702_fields
++rx_dma_buf_sz_altera_tse_private_17708_fields rx_dma_buf_sz altera_tse_private 0 17708 NULL
++index_mask_rxe_queue_buf_17709_fields index_mask rxe_queue_buf 0 17709 NULL
++u132_urb_dequeue_fndecl_17714_fields u132_urb_dequeue fndecl 3 17714 NULL
++csio_wr_alloc_q_fndecl_17717_fields csio_wr_alloc_q fndecl 3-2-6 17717 NULL
++rx_max_ring_bnx2_17721_fields rx_max_ring bnx2 0 17721 NULL
++st21nfca_hci_probe_fndecl_17724_fields st21nfca_hci_probe fndecl 6-4 17724 NULL
++qp_host_get_user_memory_fndecl_17726_fields qp_host_get_user_memory fndecl 1-2 17726 NULL
++xdr_write_pages_fndecl_17729_fields xdr_write_pages fndecl 4-3 17729 NULL
++minor_video_device_17733_fields minor video_device 0 17733 NULL
++ios_per_ctrl_hba_parameters_17734_fields ios_per_ctrl hba_parameters 0 17734 NULL
++f_hidg_read_fndecl_17741_fields f_hidg_read fndecl 3 17741 NULL
++num_desc_blocks_fndecl_17744_fields num_desc_blocks fndecl 0-2 17744 NULL
++set_le_ih_k_offset_fndecl_17745_fields set_le_ih_k_offset fndecl 2 17745 NULL
++pkg_len_hanwang_features_17749_fields pkg_len hanwang_features 0 17749 NULL nohasharray
++sock_no_sendpage_fndecl_17749_fields sock_no_sendpage fndecl 0-4 17749 &pkg_len_hanwang_features_17749_fields
++sector_size_scsi_device_17750_fields sector_size scsi_device 0 17750 NULL
++cmd_per_lun_Scsi_Host_17757_fields cmd_per_lun Scsi_Host 0 17757 NULL
++g_token_size_fndecl_17759_fields g_token_size fndecl 0-2 17759 NULL nohasharray
++actual_length_spi_message_17759_fields actual_length spi_message 0 17759 &g_token_size_fndecl_17759_fields
++max_queues_fm10k_mac_info_17760_fields max_queues fm10k_mac_info 0 17760 NULL
++fbcon_prepare_logo_fndecl_17781_fields fbcon_prepare_logo fndecl 4 17781 NULL
++__e820_update_range_fndecl_17791_fields __e820_update_range fndecl 2-3 17791 NULL
++db_to_fdb_xfs_dir_ops_17792_fields db_to_fdb xfs_dir_ops 0 17792 NULL nohasharray
++usX2Y_audio_stream_new_fndecl_17792_fields usX2Y_audio_stream_new fndecl 2-3 17792 &db_to_fdb_xfs_dir_ops_17792_fields
++nf_nat_ipv6_manip_pkt_fndecl_17794_fields nf_nat_ipv6_manip_pkt fndecl 2 17794 NULL
++number_of_blocks_ms_boot_attr_info_17802_fields number_of_blocks ms_boot_attr_info 0 17802 NULL
++sr_read_cd_fndecl_17813_fields sr_read_cd fndecl 5 17813 NULL
++list_size_acpi_pnp_device_id_list_17814_fields list_size acpi_pnp_device_id_list 0 17814 NULL
++b_page_count_xfs_buf_17815_fields b_page_count xfs_buf 0 17815 NULL nohasharray
++acpi_unregister_gsi_ioapic_fndecl_17815_fields acpi_unregister_gsi_ioapic fndecl 1 17815 &b_page_count_xfs_buf_17815_fields
++telem_punit_ssram_base_intel_pmc_ipc_dev_17821_fields telem_punit_ssram_base intel_pmc_ipc_dev 0 17821 NULL
++i_blkbits_inode_17823_fields i_blkbits inode 0 17823 NULL
++tipc_recvmsg_fndecl_17825_fields tipc_recvmsg fndecl 3 17825 NULL
++mid_get_vbt_data_r10_fndecl_17847_fields mid_get_vbt_data_r10 fndecl 2 17847 NULL
++cifs_lockv_fndecl_17853_fields cifs_lockv fndecl 6-5 17853 NULL
++discard_alignment_queue_limits_17856_fields discard_alignment queue_limits 0 17856 NULL
++current_table_count_acpi_table_list_17862_fields current_table_count acpi_table_list 0 17862 NULL
++bip_vcnt_bio_integrity_payload_17865_fields bip_vcnt bio_integrity_payload 0 17865 NULL
++secondary_tail_adu_device_17874_fields secondary_tail adu_device 0 17874 NULL
++max_pkt_size_au0828_usb_isoc_ctl_17891_fields max_pkt_size au0828_usb_isoc_ctl 0 17891 NULL
++next_portid_vardecl_rio_c_17897_fields next_portid vardecl_rio.c 0 17897 NULL
++del_ba_param_set_host_cmd_ds_11n_delba_17899_fields del_ba_param_set host_cmd_ds_11n_delba 0 17899 NULL
++s_firstinodezone_sysv_sb_info_17901_fields s_firstinodezone sysv_sb_info 0 17901 NULL
++used_aead_ctx_17910_fields used aead_ctx 0 17910 NULL
++leb_start_ubifs_info_17911_fields leb_start ubifs_info 0 17911 NULL
++msb_write_block_fndecl_17912_fields msb_write_block fndecl 5-2-3 17912 NULL
++osd_req_read_sg_kern_fndecl_17913_fields osd_req_read_sg_kern fndecl 5 17913 NULL
++rx_agg_cmp_len_flags_type_rx_agg_cmp_17914_fields rx_agg_cmp_len_flags_type rx_agg_cmp 0 17914 NULL nohasharray
++sg_pcopy_to_buffer_fndecl_17914_fields sg_pcopy_to_buffer fndecl 5-4 17914 &rx_agg_cmp_len_flags_type_rx_agg_cmp_17914_fields
++br_blockcount_xfs_bmbt_irec_17931_fields br_blockcount xfs_bmbt_irec 0 17931 NULL
++mmio_base_sis_video_info_17941_fields mmio_base sis_video_info 0 17941 NULL
++__vxge_hw_mempool_create_fndecl_17944_fields __vxge_hw_mempool_create fndecl 3-6-4 17944 NULL
++do_msgrcv_fndecl_17946_fields do_msgrcv fndecl 3 17946 NULL
++rtl2830_regmap_read_fndecl_17947_fields rtl2830_regmap_read fndecl 3-5 17947 NULL
++ath6kl_wmi_data_sync_send_fndecl_17951_fields ath6kl_wmi_data_sync_send fndecl 4 17951 NULL
++dm_io_fndecl_17953_fields dm_io fndecl 0 17953 NULL
++pkt_align_netvsc_device_17961_fields pkt_align netvsc_device 0 17961 NULL nohasharray
++cydata_size_cyttsp4_sysinfo_ofs_17961_fields cydata_size cyttsp4_sysinfo_ofs 0 17961 &pkt_align_netvsc_device_17961_fields
++scan_async_group_fndecl_17964_fields scan_async_group fndecl 3 17964 NULL
++do_tee_fndecl_17969_fields do_tee fndecl 3 17969 NULL
++ab3100_get_register_page_interruptible_fndecl_17972_fields ab3100_get_register_page_interruptible fndecl 4 17972 NULL
++length_ore_io_state_17977_fields length ore_io_state 0 17977 NULL
++nilfs_set_last_segment_fndecl_17983_fields nilfs_set_last_segment fndecl 2 17983 NULL
++data3_sisusb_command_17984_fields data3 sisusb_command 0 17984 NULL nohasharray
++pci_addr_of_pci_range_17984_fields pci_addr of_pci_range 0 17984 &data3_sisusb_command_17984_fields
++fill_inquiry_response_fndecl_17994_fields fill_inquiry_response fndecl 3 17994 NULL
++get_context_size_fndecl_17999_fields get_context_size fndecl 0 17999 NULL
++target_xcopy_read_source_fndecl_18003_fields target_xcopy_read_source fndecl 5 18003 NULL
++data_xfer_length_aac_srb_reply_18012_fields data_xfer_length aac_srb_reply 0 18012 NULL nohasharray
++size_aper_size_info_8_18012_fields size aper_size_info_8 0 18012 &data_xfer_length_aac_srb_reply_18012_fields
++rx_frag_size_vardecl_be_main_c_18017_fields rx_frag_size vardecl_be_main.c 0 18017 NULL
++raid56_parity_recover_fndecl_18019_fields raid56_parity_recover fndecl 0 18019 NULL
++wimax_msg_fndecl_18021_fields wimax_msg fndecl 4 18021 NULL
++sl811h_urb_dequeue_fndecl_18025_fields sl811h_urb_dequeue fndecl 3 18025 NULL
++rawv6_recvmsg_fndecl_18026_fields rawv6_recvmsg fndecl 3 18026 NULL
++fcoe_hmc_filt_num_i40e_pf_18027_fields fcoe_hmc_filt_num i40e_pf 0 18027 NULL
++splice_read_file_operations_18028_fields splice_read file_operations 0 18028 NULL
++virtio_gpu_cmd_transfer_to_host_2d_fndecl_18040_fields virtio_gpu_cmd_transfer_to_host_2d fndecl 5-4 18040 NULL
++read_device_fndecl_18043_fields read_device fndecl 3 18043 NULL
++len_ib_ucm_private_data_18046_fields len ib_ucm_private_data 0 18046 NULL
++xfer_len_iscsi_seq_18047_fields xfer_len iscsi_seq 0 18047 NULL
++sctp_make_op_error_fndecl_18050_fields sctp_make_op_error fndecl 5-6 18050 NULL
++ts_packet_size_cx23885_tsport_18052_fields ts_packet_size cx23885_tsport 0 18052 NULL
++vb2_vmalloc_attach_dmabuf_fndecl_18073_fields vb2_vmalloc_attach_dmabuf fndecl 3 18073 NULL
++req_ie_len_brcmf_cfg80211_connect_info_18083_fields req_ie_len brcmf_cfg80211_connect_info 0 18083 NULL
++bits_per_pixel_drm_framebuffer_18087_fields bits_per_pixel drm_framebuffer 0 18087 NULL
++di_nextents_xfs_icdinode_18090_fields di_nextents xfs_icdinode 0 18090 NULL
++mv88e6xxx_smi_read_fndecl_18107_fields mv88e6xxx_smi_read fndecl 0 18107 NULL
++btrfs_qgroup_reserve_data_fndecl_18109_fields btrfs_qgroup_reserve_data fndecl 0-3-2 18109 NULL
++addr_width_fsl_edma_slave_config_18115_fields addr_width fsl_edma_slave_config 0 18115 NULL
++befs_read_datastream_fndecl_18116_fields befs_read_datastream fndecl 3 18116 NULL
++mod_len_ccp_ecc_engine_18119_fields mod_len ccp_ecc_engine 0 18119 NULL nohasharray
++index_vardecl_ali5451_c_18119_fields index vardecl_ali5451.c 0 18119 &mod_len_ccp_ecc_engine_18119_fields
++send_mpa_reject_fndecl_18124_fields send_mpa_reject fndecl 3 18124 NULL
++bnx2x_num_queues_vardecl_18126_fields bnx2x_num_queues vardecl 0 18126 NULL
++reshape_request_fndecl_18130_fields reshape_request fndecl 2 18130 NULL
++fs_start_hfs_sb_info_18132_fields fs_start hfs_sb_info 0 18132 NULL
++num_ddr_avs_mthca_av_table_18139_fields num_ddr_avs mthca_av_table 0 18139 NULL
++i_iget5_block_iso_inode_info_18143_fields i_iget5_block iso_inode_info 0 18143 NULL
++mtu_net_device_18148_fields mtu net_device 0 18148 NULL nohasharray
++softback_in_vardecl_fbcon_c_18148_fields softback_in vardecl_fbcon.c 0 18148 &mtu_net_device_18148_fields
++send_max_size_send_ctx_18149_fields send_max_size send_ctx 0 18149 NULL
++read_word_onenand_chip_18150_fields read_word onenand_chip 0 18150 NULL
++bmv_length_getbmapx_18151_fields bmv_length getbmapx 0 18151 NULL
++nfs_dreq_bytes_left_fndecl_18154_fields nfs_dreq_bytes_left fndecl 0 18154 NULL
++cxgbi_ppm_ppods_reserve_fndecl_18157_fields cxgbi_ppm_ppods_reserve fndecl 0-2 18157 NULL
++iscsi_sw_tcp_pdu_init_fndecl_18173_fields iscsi_sw_tcp_pdu_init fndecl 3-2 18173 NULL
++num_gpu_pages_radeon_gart_18177_fields num_gpu_pages radeon_gart 0 18177 NULL
++ocfs2_test_suballoc_bit_fndecl_18180_fields ocfs2_test_suballoc_bit fndecl 6-5-4 18180 NULL nohasharray
++process_rcvd_data_fndecl_18180_fields process_rcvd_data fndecl 3 18180 &ocfs2_test_suballoc_bit_fndecl_18180_fields
++offset_pktcdvd_device_18183_fields offset pktcdvd_device 0 18183 NULL
++hdac_ext_dma_alloc_pages_fndecl_18184_fields hdac_ext_dma_alloc_pages fndecl 3 18184 NULL
++aac_srcv_ioremap_fndecl_18192_fields aac_srcv_ioremap fndecl 2 18192 NULL
++natsemi_change_mtu_fndecl_18207_fields natsemi_change_mtu fndecl 2 18207 NULL
++fw_size_intel_dmc_header_18214_fields fw_size intel_dmc_header 0 18214 NULL
++ext4_issue_zeroout_fndecl_18225_fields ext4_issue_zeroout fndecl 4-0-3 18225 NULL
++ql_process_mac_rx_skb_fndecl_18226_fields ql_process_mac_rx_skb fndecl 5-4 18226 NULL
++xf_block_size_i40iw_hmc_fpm_misc_18228_fields xf_block_size i40iw_hmc_fpm_misc 0 18228 NULL
++nvkm_fifo_ctor_fndecl_18233_fields nvkm_fifo_ctor fndecl 4 18233 NULL
++vol_id_ubi_volume_18238_fields vol_id ubi_volume 0 18238 NULL
++ocfs2_insert_extent_fndecl_18242_fields ocfs2_insert_extent fndecl 4-3 18242 NULL
++payload_size_vmci_datagram_18243_fields payload_size vmci_datagram 0 18243 NULL
++scif_writeto_fndecl_18246_fields scif_writeto fndecl 2-4-3 18246 NULL
++next_free_transient_c_18248_fields next_free transient_c 0 18248 NULL
++inet_recv_error_fndecl_18251_fields inet_recv_error fndecl 3 18251 NULL
++rxf_size_bdx_priv_18260_fields rxf_size bdx_priv 0 18260 NULL
++end_extent_state_18270_fields end extent_state 0 18270 NULL
++sfi_check_table_fndecl_18279_fields sfi_check_table fndecl 1 18279 NULL
++_nfs4_get_security_label_fndecl_18285_fields _nfs4_get_security_label fndecl 3 18285 NULL
++scif_create_window_fndecl_18291_fields scif_create_window fndecl 2 18291 NULL
++tda18218_rd_regs_fndecl_18293_fields tda18218_rd_regs fndecl 4-2 18293 NULL
++mlx5_core_create_vfs_fndecl_18298_fields mlx5_core_create_vfs fndecl 2 18298 NULL
++index_sg_device_18304_fields index sg_device 0 18304 NULL
++essid_len_iw_scan_req_18306_fields essid_len iw_scan_req 0 18306 NULL nohasharray
++offset_cxgbit_lro_cb_18306_fields offset cxgbit_lro_cb 0 18306 &essid_len_iw_scan_req_18306_fields
++add_pfn_range_mapped_fndecl_18307_fields add_pfn_range_mapped fndecl 2 18307 NULL
++twl4030_init_irq_fndecl_18308_fields twl4030_init_irq fndecl 0 18308 NULL
++e820_end_of_low_ram_pfn_fndecl_18324_fields e820_end_of_low_ram_pfn fndecl 0 18324 NULL
++radeon_sa_bo_manager_init_fndecl_18326_fields radeon_sa_bo_manager_init fndecl 3 18326 NULL
++unit_hfi1_devdata_18328_fields unit hfi1_devdata 0 18328 NULL nohasharray
++page_shift_rvt_mregion_18328_fields page_shift rvt_mregion 0 18328 &unit_hfi1_devdata_18328_fields
++hdlcdrv_register_fndecl_18331_fields hdlcdrv_register fndecl 2 18331 NULL
++taps_oslec_state_18332_fields taps oslec_state 0 18332 NULL
++m_blockmask_xfs_mount_18334_fields m_blockmask xfs_mount 0 18334 NULL
++xfs_da_reada_buf_fndecl_18349_fields xfs_da_reada_buf fndecl 2 18349 NULL
++rfcomm_send_frame_fndecl_18352_fields rfcomm_send_frame fndecl 3 18352 NULL
++elfnotes_sz_vardecl_vmcore_c_18357_fields elfnotes_sz vardecl_vmcore.c 0 18357 NULL nohasharray
++vm_pgoff_vm_area_struct_18357_fields vm_pgoff vm_area_struct 0 18357 &elfnotes_sz_vardecl_vmcore_c_18357_fields
++lbs_rdrf_write_fndecl_18361_fields lbs_rdrf_write fndecl 3 18361 NULL
++tso_build_data_fndecl_18365_fields tso_build_data fndecl 3 18365 NULL
++ascii2desc_fndecl_18370_fields ascii2desc fndecl 0-3 18370 NULL
++ecryptfs_write_lower_fndecl_18373_fields ecryptfs_write_lower fndecl 4 18373 NULL
++extent_write_locked_range_fndecl_18375_fields extent_write_locked_range fndecl 3-4 18375 NULL nohasharray
++perf_output_sample_ustack_fndecl_18375_fields perf_output_sample_ustack fndecl 2 18375 &extent_write_locked_range_fndecl_18375_fields
++len_btrfs_ordered_extent_18377_fields len btrfs_ordered_extent 0 18377 NULL
++lc_last_wr_nfsd4_layoutcommit_18378_fields lc_last_wr nfsd4_layoutcommit 0 18378 NULL nohasharray
++n_bssids_wmi_start_scan_arg_18378_fields n_bssids wmi_start_scan_arg 0 18378 &lc_last_wr_nfsd4_layoutcommit_18378_fields
++rss_size_port_info_18379_fields rss_size port_info 0 18379 NULL
++e820_end_pfn_fndecl_18384_fields e820_end_pfn fndecl 0-1 18384 NULL nohasharray
++xfs_rtany_summary_fndecl_18384_fields xfs_rtany_summary fndecl 5-3-0 18384 &e820_end_pfn_fndecl_18384_fields
++raydium_i2c_read_message_fndecl_18385_fields raydium_i2c_read_message fndecl 4 18385 NULL
++reply_payload_rcv_len_fc_bsg_reply_18392_fields reply_payload_rcv_len fc_bsg_reply 0 18392 NULL
++veth_change_mtu_fndecl_18405_fields veth_change_mtu fndecl 2 18405 NULL nohasharray
++lo_offset_loop_info64_18405_fields lo_offset loop_info64 0 18405 &veth_change_mtu_fndecl_18405_fields
++max_psize_uac2_rtd_params_18407_fields max_psize uac2_rtd_params 0 18407 NULL
++acm_alloc_minor_fndecl_18412_fields acm_alloc_minor fndecl 0 18412 NULL
++bNrChannels_uac2_as_header_descriptor_18413_fields bNrChannels uac2_as_header_descriptor 0 18413 NULL
++ath6kl_wmi_ap_set_mlme_fndecl_18414_fields ath6kl_wmi_ap_set_mlme fndecl 2 18414 NULL
++hlen_hfi1_packet_18431_fields hlen hfi1_packet 0 18431 NULL
++fb_find_mode_fndecl_18438_fields fb_find_mode fndecl 7 18438 NULL
++device_pci_device_id_18441_fields device pci_device_id 0 18441 NULL
++count_iov_iter_18447_fields count iov_iter 0 18447 NULL
++data_len_hfa384x_tx_frame_18449_fields data_len hfa384x_tx_frame 0 18449 NULL nohasharray
++mp_tx_agg_buf_size_sdio_mmc_card_18449_fields mp_tx_agg_buf_size sdio_mmc_card 0 18449 &data_len_hfa384x_tx_frame_18449_fields
++copy_range_nfulnl_instance_18460_fields copy_range nfulnl_instance 0 18460 NULL nohasharray
++max_entries_bpf_map_18460_fields max_entries bpf_map 0 18460 &copy_range_nfulnl_instance_18460_fields
++bsize_jfs_sb_info_18477_fields bsize jfs_sb_info 0 18477 NULL
++ring_buffer_size_netup_dma_18485_fields ring_buffer_size netup_dma 0 18485 NULL
++mdata_ofsl_cyttsp4_sysinfo_data_18486_fields mdata_ofsl cyttsp4_sysinfo_data 0 18486 NULL
++sfi_map_table_fndecl_18501_fields sfi_map_table fndecl 1 18501 NULL
++run_test_both_formats_fndecl_18505_fields run_test_both_formats fndecl 2-3 18505 NULL
++vxfs_getfsh_fndecl_18506_fields vxfs_getfsh fndecl 2 18506 NULL
++tx_queue_len_net_device_18511_fields tx_queue_len net_device 0 18511 NULL
++iwl_queue_init_fndecl_18522_fields iwl_queue_init fndecl 2 18522 NULL nohasharray
++scat_entries_hif_scatter_req_18522_fields scat_entries hif_scatter_req 0 18522 &iwl_queue_init_fndecl_18522_fields
++ttm_bo_init_fndecl_18524_fields ttm_bo_init fndecl 3 18524 NULL
++progress_kcopyd_job_18540_fields progress kcopyd_job 0 18540 NULL
++sect_floppy_struct_18543_fields sect floppy_struct 0 18543 NULL
++ubi_leb_write_fndecl_18549_fields ubi_leb_write fndecl 5-4 18549 NULL
++xfs_efi_init_fndecl_18551_fields xfs_efi_init fndecl 2 18551 NULL
++inodes_squashfs_sb_info_18553_fields inodes squashfs_sb_info 0 18553 NULL
++single_sz_msc_18554_fields single_sz msc 0 18554 NULL nohasharray
++ucode_size_bytes_common_firmware_header_18554_fields ucode_size_bytes common_firmware_header 0 18554 &single_sz_msc_18554_fields
++memblock_reserve_fndecl_18556_fields memblock_reserve fndecl 1-2 18556 NULL
++riva_get_memlen_fndecl_18562_fields riva_get_memlen fndecl 0 18562 NULL
++change_protection_fndecl_18568_fields change_protection fndecl 3-2 18568 NULL
++index_xtsplit_18586_fields index xtsplit 0 18586 NULL
++nbuttons_gpio_keys_platform_data_18590_fields nbuttons gpio_keys_platform_data 0 18590 NULL
++omfs_fill_chain_fndecl_18591_fields omfs_fill_chain fndecl 3 18591 NULL
++brcmu_pkt_buf_get_skb_fndecl_18599_fields brcmu_pkt_buf_get_skb fndecl 1 18599 NULL
++extLocation_extent_ad_18601_fields extLocation extent_ad 0 18601 NULL
++num_of_queues_iwl_base_params_18606_fields num_of_queues iwl_base_params 0 18606 NULL
++size_uhid_input_req_18611_fields size uhid_input_req 0 18611 NULL
++befs_get_block_fndecl_18612_fields befs_get_block fndecl 2 18612 NULL
++dstpos_isdnhdlc_vars_18616_fields dstpos isdnhdlc_vars 0 18616 NULL nohasharray
++iwl_pcie_txq_init_fndecl_18616_fields iwl_pcie_txq_init fndecl 3 18616 &dstpos_isdnhdlc_vars_18616_fields
++ks8995_registers_write_fndecl_18618_fields ks8995_registers_write fndecl 6 18618 NULL
++ctxt_qib_ctxtdata_18626_fields ctxt qib_ctxtdata 0 18626 NULL
++sec_per_clus_fat_boot_sector_18633_fields sec_per_clus fat_boot_sector 0 18633 NULL
++store_bss_info_fndecl_18643_fields store_bss_info fndecl 7 18643 NULL
++rbd_parent_request_create_fndecl_18646_fields rbd_parent_request_create fndecl 3-2 18646 NULL
++speaker_outs_auto_pin_cfg_18648_fields speaker_outs auto_pin_cfg 0 18648 NULL
++ax25_sendmsg_fndecl_18649_fields ax25_sendmsg fndecl 3 18649 NULL
++bioset_create_fndecl_18655_fields bioset_create fndecl 2-1 18655 NULL
++MaxDevices__MSG_IOC_FACTS_REPLY_18656_fields MaxDevices _MSG_IOC_FACTS_REPLY 0 18656 NULL nohasharray
++ext2_xattr_set_fndecl_18656_fields ext2_xattr_set fndecl 5 18656 &MaxDevices__MSG_IOC_FACTS_REPLY_18656_fields
++compat_copy_entries_fndecl_18658_fields compat_copy_entries fndecl 0 18658 NULL
++length_vb2_plane_18662_fields length vb2_plane 0 18662 NULL
++gfs2_unstuffer_page_fndecl_18663_fields gfs2_unstuffer_page fndecl 3 18663 NULL
++num_ccells_per_conn_iscsi_kwqe_init1_18665_fields num_ccells_per_conn iscsi_kwqe_init1 0 18665 NULL
++nilfs_move_2nd_super_fndecl_18666_fields nilfs_move_2nd_super fndecl 2 18666 NULL
++len_xdr_netobj_18672_fields len xdr_netobj 0 18672 NULL
++pn_recvmsg_fndecl_18676_fields pn_recvmsg fndecl 3 18676 NULL
++nr_clk_regs_samsung_cmu_info_18678_fields nr_clk_regs samsung_cmu_info 0 18678 NULL
++ldm_frag_add_fndecl_18680_fields ldm_frag_add fndecl 2 18680 NULL
++ocd_max_easize_obd_connect_data_18682_fields ocd_max_easize obd_connect_data 0 18682 NULL
++domain_pci_sysdata_18686_fields domain pci_sysdata 0 18686 NULL
++i2c_wr_max_cx24120_config_18687_fields i2c_wr_max cx24120_config 0 18687 NULL nohasharray
++length_iwl_nvm_access_resp_18687_fields length iwl_nvm_access_resp 0 18687 &i2c_wr_max_cx24120_config_18687_fields
++num_tc_net_device_18703_fields num_tc net_device 0 18703 NULL
++size_rxdone_entry_desc_18704_fields size rxdone_entry_desc 0 18704 NULL
++den_step_snd_ratnum_18705_fields den_step snd_ratnum 0 18705 NULL nohasharray
++num_dup_tsns_sctp_tsnmap_18705_fields num_dup_tsns sctp_tsnmap 0 18705 &den_step_snd_ratnum_18705_fields
++ent_get_fatent_operations_18715_fields ent_get fatent_operations 0 18715 NULL
++read_reg_isar_hw_18717_fields read_reg isar_hw 0 18717 NULL
++feature_len_mic_device_desc_18719_fields feature_len mic_device_desc 0 18719 NULL
++max_pkeys_ib_device_attr_18722_fields max_pkeys ib_device_attr 0 18722 NULL
++trf7970a_read_cont_fndecl_18728_fields trf7970a_read_cont fndecl 4 18728 NULL
++ioapic_copy_alloc_attr_fndecl_18729_fields ioapic_copy_alloc_attr fndecl 3 18729 NULL
++sfi_map_memory_fndecl_18732_fields sfi_map_memory fndecl 2-1 18732 NULL
++sinit_num_ostreams_sctp_cookie_18733_fields sinit_num_ostreams sctp_cookie 0 18733 NULL
++pkcs7_sig_note_serial_fndecl_18735_fields pkcs7_sig_note_serial fndecl 5 18735 NULL
++rdb_per_qp_mthca_profile_18738_fields rdb_per_qp mthca_profile 0 18738 NULL
++bulk_out_ipheth_device_18739_fields bulk_out ipheth_device 0 18739 NULL
++o2net_recv_tcp_msg_fndecl_18741_fields o2net_recv_tcp_msg fndecl 3-0 18741 NULL
++count_configs_fndecl_18742_fields count_configs fndecl 0 18742 NULL
++max_sges_ocrdma_qp_hwq_info_18746_fields max_sges ocrdma_qp_hwq_info 0 18746 NULL
++seq_end_offset_iscsi_cmd_18748_fields seq_end_offset iscsi_cmd 0 18748 NULL
++max_in_size_ims_pcu_18752_fields max_in_size ims_pcu 0 18752 NULL
++__ocfs2_error_fndecl_18758_fields __ocfs2_error fndecl 0 18758 NULL
++i_pos_msdos_inode_info_18764_fields i_pos msdos_inode_info 0 18764 NULL
++xdr_get_next_encode_buffer_fndecl_18770_fields xdr_get_next_encode_buffer fndecl 2 18770 NULL nohasharray
++adjust_memory_fndecl_18770_fields adjust_memory fndecl 3-4 18770 &xdr_get_next_encode_buffer_fndecl_18770_fields
++data_len_ieee80211_mgd_auth_data_18778_fields data_len ieee80211_mgd_auth_data 0 18778 NULL
++nvif_device_init_fndecl_18779_fields nvif_device_init fndecl 5 18779 NULL
++cur_len_drm_dp_sideband_msg_tx_18787_fields cur_len drm_dp_sideband_msg_tx 0 18787 NULL
++mcopy_atomic_fndecl_18790_fields mcopy_atomic fndecl 2 18790 NULL
++isdn_ppp_skb_push_fndecl_18791_fields isdn_ppp_skb_push fndecl 2 18791 NULL
++sctp_abort_pkt_new_fndecl_18794_fields sctp_abort_pkt_new fndecl 6 18794 NULL
++max_low_pfn_vardecl_18798_fields max_low_pfn vardecl 0 18798 NULL
++usb_ep_set_maxpacket_limit_fndecl_18800_fields usb_ep_set_maxpacket_limit fndecl 2 18800 NULL
++readbuffers_v4l2_captureparm_18801_fields readbuffers v4l2_captureparm 0 18801 NULL
++md_capture_size_netxen_minidump_18805_fields md_capture_size netxen_minidump 0 18805 NULL
++ssb_ioremap_fndecl_18815_fields ssb_ioremap fndecl 2 18815 NULL
++length_xfs_extent_busy_18817_fields length xfs_extent_busy 0 18817 NULL
++tx_cnt_IsdnCardState_18819_fields tx_cnt IsdnCardState 0 18819 NULL
++shmem_seek_hole_data_fndecl_18824_fields shmem_seek_hole_data fndecl 0-2-3 18824 NULL
++p_memsz_elf32_phdr_18830_fields p_memsz elf32_phdr 0 18830 NULL nohasharray
++clk_num_clk_onecell_data_18830_fields clk_num clk_onecell_data 0 18830 &p_memsz_elf32_phdr_18830_fields
++num_entries_compat_ipt_replace_18835_fields num_entries compat_ipt_replace 0 18835 NULL
++xfs_inobt_insert_rec_fndecl_18839_fields xfs_inobt_insert_rec fndecl 4 18839 NULL
++rsn_ie_len_hostap_bss_info_18840_fields rsn_ie_len hostap_bss_info 0 18840 NULL
++number_snd_card_18845_fields number snd_card 0 18845 NULL
++exynos_drm_gem_init_fndecl_18846_fields exynos_drm_gem_init fndecl 2 18846 NULL
++n_targets_rsxx_cardinfo_18847_fields n_targets rsxx_cardinfo 0 18847 NULL nohasharray
++process_measurement_fndecl_18847_fields process_measurement fndecl 3 18847 &n_targets_rsxx_cardinfo_18847_fields
++taglen_nfsd4_compoundargs_18849_fields taglen nfsd4_compoundargs 0 18849 NULL nohasharray
++master_xfer_i2c_algorithm_18849_fields master_xfer i2c_algorithm 0 18849 &taglen_nfsd4_compoundargs_18849_fields
++usb_descriptor_fillbuf_fndecl_18853_fields usb_descriptor_fillbuf fndecl 0 18853 NULL nohasharray
++sco_sock_sendmsg_fndecl_18853_fields sco_sock_sendmsg fndecl 3 18853 &usb_descriptor_fillbuf_fndecl_18853_fields
++max_payload_fwnet_packet_task_18867_fields max_payload fwnet_packet_task 0 18867 NULL
++alloc_cache_blocks_with_hash_fndecl_18870_fields alloc_cache_blocks_with_hash fndecl 2 18870 NULL
++osd_y_pan_yuv_playback_info_18877_fields osd_y_pan yuv_playback_info 0 18877 NULL
++rx_buffer_len_atl1_adapter_18882_fields rx_buffer_len atl1_adapter 0 18882 NULL nohasharray
++allocate_cnodes_fndecl_18882_fields allocate_cnodes fndecl 1 18882 &rx_buffer_len_atl1_adapter_18882_fields
++min_index_rxe_type_info_18888_fields min_index rxe_type_info 0 18888 NULL
++rxd_rfsw_s_smt_fp_rxd_18889_fields rxd_rfsw s_smt_fp_rxd 0 18889 NULL
++nr_stripes_bcache_device_18895_fields nr_stripes bcache_device 0 18895 NULL
++rx_ps_hdr_size_igbvf_adapter_18896_fields rx_ps_hdr_size igbvf_adapter 0 18896 NULL nohasharray
++r592_write_fifo_pio_fndecl_18896_fields r592_write_fifo_pio fndecl 3 18896 &rx_ps_hdr_size_igbvf_adapter_18896_fields
++nilfs_max_size_fndecl_18901_fields nilfs_max_size fndecl 0-1 18901 NULL nohasharray
++op_dmaoff_rm_data_op_18901_fields op_dmaoff rm_data_op 0 18901 &nilfs_max_size_fndecl_18901_fields
++pep_sendmsg_fndecl_18903_fields pep_sendmsg fndecl 3 18903 NULL
++extent_invalidatepage_fndecl_18906_fields extent_invalidatepage fndecl 3 18906 NULL
++sectors_ssfdcr_record_18912_fields sectors ssfdcr_record 0 18912 NULL
++dccpd_opt_len_dccp_skb_cb_18917_fields dccpd_opt_len dccp_skb_cb 0 18917 NULL
++fuse_write_update_size_fndecl_18918_fields fuse_write_update_size fndecl 2 18918 NULL
++cciss_allocate_sg_chain_blocks_fndecl_18923_fields cciss_allocate_sg_chain_blocks fndecl 2 18923 NULL
++capacity_vmci_handle_arr_18924_fields capacity vmci_handle_arr 0 18924 NULL
++segment_size_kaweth_ethernet_configuration_18925_fields segment_size kaweth_ethernet_configuration 0 18925 NULL nohasharray
++vxfs_bread_fndecl_18925_fields vxfs_bread fndecl 2 18925 &segment_size_kaweth_ethernet_configuration_18925_fields
++size_gf100_gr_18928_fields size gf100_gr 0 18928 NULL
++ad714x_i2c_read_fndecl_18930_fields ad714x_i2c_read fndecl 4 18930 NULL
++maxReplyBytes_mpt_ioctl_command_18942_fields maxReplyBytes mpt_ioctl_command 0 18942 NULL
++read_pci_config_fndecl_18943_fields read_pci_config fndecl 0 18943 NULL
++rbd_segment_length_fndecl_18944_fields rbd_segment_length fndecl 0-2-3 18944 NULL
++cram_hmac_alg_len_net_conf_18947_fields cram_hmac_alg_len net_conf 0 18947 NULL
++length_rsp_que_18950_fields length rsp_que 0 18950 NULL
++btrfs_test_extent_buffer_operations_fndecl_18951_fields btrfs_test_extent_buffer_operations fndecl 1-2 18951 NULL
++qla82xx_pci_mem_read_2M_fndecl_18955_fields qla82xx_pci_mem_read_2M fndecl 2 18955 NULL
++encx24j600_raw_write_fndecl_18957_fields encx24j600_raw_write fndecl 4 18957 NULL nohasharray
++rss_queues_igb_adapter_18957_fields rss_queues igb_adapter 0 18957 &encx24j600_raw_write_fndecl_18957_fields
++new_sync_read_fndecl_18960_fields new_sync_read fndecl 0-3 18960 NULL nohasharray
++clear_refs_pte_range_fndecl_18960_fields clear_refs_pte_range fndecl 2 18960 &new_sync_read_fndecl_18960_fields
++file_offset_btrfs_ordered_extent_18963_fields file_offset btrfs_ordered_extent 0 18963 NULL
++len_dm_target_18965_fields len dm_target 0 18965 NULL
++read_off_videobuf_queue_18978_fields read_off videobuf_queue 0 18978 NULL
++rcount_mkiss_18984_fields rcount mkiss 0 18984 NULL nohasharray
++l2cap_sock_sendmsg_fndecl_18984_fields l2cap_sock_sendmsg fndecl 3 18984 &rcount_mkiss_18984_fields
++preferred_bpp_intel_fbdev_18985_fields preferred_bpp intel_fbdev 0 18985 NULL
++p9_get_mapped_pages_fndecl_18988_fields p9_get_mapped_pages fndecl 0 18988 NULL
++ttm_bo_kmap_ttm_fndecl_18993_fields ttm_bo_kmap_ttm fndecl 3 18993 NULL
++virtio_gpu_alloc_cmd_resp_fndecl_18996_fields virtio_gpu_alloc_cmd_resp fndecl 4-5 18996 NULL
++end_sk_buff_18998_fields end sk_buff 0 18998 NULL
++usb_hcd_check_unlink_urb_fndecl_18999_fields usb_hcd_check_unlink_urb fndecl 3 18999 NULL
++dm_alloc_md_mempools_fndecl_19008_fields dm_alloc_md_mempools fndecl 4 19008 NULL
++max_sectors_ata_device_19016_fields max_sectors ata_device 0 19016 NULL
++generic_splice_sendpage_fndecl_19018_fields generic_splice_sendpage fndecl 4 19018 NULL
++prevUnitNo_inftl_unithead1_19020_fields prevUnitNo inftl_unithead1 0 19020 NULL
++rsxx_queue_discard_fndecl_19027_fields rsxx_queue_discard fndecl 0 19027 NULL
++tcp_recvmsg_fndecl_19029_fields tcp_recvmsg fndecl 3 19029 NULL
++sge_size_MPT3SAS_ADAPTER_19030_fields sge_size MPT3SAS_ADAPTER 0 19030 NULL
++next_scan_nid_f2fs_nm_info_19036_fields next_scan_nid f2fs_nm_info 0 19036 NULL
++scrollback_max_vardecl_fbcon_c_19040_fields scrollback_max vardecl_fbcon.c 0 19040 NULL
++tsize_nfs2_fsstat_19041_fields tsize nfs2_fsstat 0 19041 NULL
++len_ath10k_dump_file_data_19052_fields len ath10k_dump_file_data 0 19052 NULL
++dma_usb_request_19054_fields dma usb_request 0 19054 NULL
++mod_len_extent_map_19058_fields mod_len extent_map 0 19058 NULL
++count_sgmapraw_19066_fields count sgmapraw 0 19066 NULL
++mem_size_memory_type_mapping_19073_fields mem_size memory_type_mapping 0 19073 NULL
++offs_ubifs_zbranch_19074_fields offs ubifs_zbranch 0 19074 NULL
++mei_cl_read_start_fndecl_19077_fields mei_cl_read_start fndecl 0 19077 NULL
++s_blocksize_super_block_19081_fields s_blocksize super_block 0 19081 NULL
++data_size_hpi_msg_data_19086_fields data_size hpi_msg_data 0 19086 NULL
++mei_hbm_cl_flow_control_req_fndecl_19089_fields mei_hbm_cl_flow_control_req fndecl 0 19089 NULL
++sb_logsectsize_xfs_sb_19098_fields sb_logsectsize xfs_sb 0 19098 NULL
++walk_node_fndecl_19114_fields walk_node fndecl 2 19114 NULL
++ceph_entity_name_encode_fndecl_19115_fields ceph_entity_name_encode fndecl 0 19115 NULL
++mv88e6xxx_read_fndecl_19142_fields mv88e6xxx_read fndecl 0 19142 NULL
++ssid_len_ieee80211_mgd_assoc_data_19143_fields ssid_len ieee80211_mgd_assoc_data 0 19143 NULL
++ctrl_set_res_hor_fndecl_19146_fields ctrl_set_res_hor fndecl 3 19146 NULL
++pgbase_nfs_readlinkargs_19150_fields pgbase nfs_readlinkargs 0 19150 NULL
++inftl_write_oob_fndecl_19154_fields inftl_write_oob fndecl 2-3 19154 NULL
++do_get_thread_area_fndecl_19157_fields do_get_thread_area fndecl 2 19157 NULL
++__mnt_want_write_fndecl_19160_fields __mnt_want_write fndecl 0 19160 NULL
++page_array_size_firmware_buf_19163_fields page_array_size firmware_buf 0 19163 NULL
++ve_attrlen_nfsd4_verify_19164_fields ve_attrlen nfsd4_verify 0 19164 NULL
++dma_start_hi_rx_buf_desc_19167_fields dma_start_hi rx_buf_desc 0 19167 NULL
++isp116x_urb_dequeue_fndecl_19169_fields isp116x_urb_dequeue fndecl 3 19169 NULL
++xfs_mru_cache_insert_fndecl_19180_fields xfs_mru_cache_insert fndecl 0 19180 NULL
++mic_read_spad_fndecl_19184_fields mic_read_spad fndecl 0 19184 NULL
++crypto_authenc_esn_copy_fndecl_19188_fields crypto_authenc_esn_copy fndecl 2 19188 NULL nohasharray
++vmw_user_shader_alloc_fndecl_19188_fields vmw_user_shader_alloc fndecl 3 19188 &crypto_authenc_esn_copy_fndecl_19188_fields
++st21nfca_hci_dm_get_info_fndecl_19189_fields st21nfca_hci_dm_get_info fndecl 3 19189 NULL nohasharray
++xen_max_p2m_pfn_vardecl_19189_fields xen_max_p2m_pfn vardecl 0 19189 &st21nfca_hci_dm_get_info_fndecl_19189_fields
++nci_allocate_device_fndecl_19192_fields nci_allocate_device fndecl 3 19192 NULL
++slot_nr_nfs4_slot_19196_fields slot_nr nfs4_slot 0 19196 NULL
++decode_height_yuv_playback_info_19201_fields decode_height yuv_playback_info 0 19201 NULL
++extent_clear_unlock_delalloc_fndecl_19205_fields extent_clear_unlock_delalloc fndecl 2-3 19205 NULL
++irq_dma_handle_ttusb_dec_19208_fields irq_dma_handle ttusb_dec 0 19208 NULL
++m25p80_write_reg_fndecl_19209_fields m25p80_write_reg fndecl 4 19209 NULL
++size_afs_file_status_19215_fields size afs_file_status 0 19215 NULL
++extensions_edid_19218_fields extensions edid 0 19218 NULL
++lfb_size_screen_info_19219_fields lfb_size screen_info 0 19219 NULL
++vmw_cmdbuf_alloc_fndecl_19226_fields vmw_cmdbuf_alloc fndecl 2 19226 NULL
++csio_add_debugfs_mem_fndecl_19228_fields csio_add_debugfs_mem fndecl 4 19228 NULL
++__ai_size_pcpu_alloc_info_19229_fields __ai_size pcpu_alloc_info 0 19229 NULL
++offset_iomap_19237_fields offset iomap 0 19237 NULL
++spi_populate_ppr_msg_fndecl_19239_fields spi_populate_ppr_msg fndecl 0 19239 NULL
++matroxfb_pitch_adjust_fndecl_19243_fields matroxfb_pitch_adjust fndecl 0-2 19243 NULL
++mthca_map_reg_fndecl_19251_fields mthca_map_reg fndecl 3-2 19251 NULL
++ieee802154_hdr_push_sechdr_fndecl_19265_fields ieee802154_hdr_push_sechdr fndecl 0 19265 NULL
++batadv_frag_create_fndecl_19270_fields batadv_frag_create fndecl 3 19270 NULL
++tail_aio_ring_19271_fields tail aio_ring 0 19271 NULL
++vmw_kms_readback_fndecl_19276_fields vmw_kms_readback fndecl 6 19276 NULL
++early_init_dt_reserve_memory_arch_fndecl_19285_fields early_init_dt_reserve_memory_arch fndecl 2-1 19285 NULL
++virtio_gpu_cmd_resource_flush_fndecl_19291_fields virtio_gpu_cmd_resource_flush fndecl 5-6 19291 NULL nohasharray
++index_scsi_tape_19291_fields index scsi_tape 0 19291 &virtio_gpu_cmd_resource_flush_fndecl_19291_fields
++get_packet_fndecl_19296_fields get_packet fndecl 3 19296 NULL
++vxge_change_mtu_fndecl_19297_fields vxge_change_mtu fndecl 2 19297 NULL
++ext_len_xfs_extent_19299_fields ext_len xfs_extent 0 19299 NULL
++num_alt_cx231xx_video_mode_19301_fields num_alt cx231xx_video_mode 0 19301 NULL
++ubi_calc_fm_size_fndecl_19302_fields ubi_calc_fm_size fndecl 0 19302 NULL
++copy_vma_fndecl_19303_fields copy_vma fndecl 2-3-4 19303 NULL
++port_priv_size_rocker_world_ops_19308_fields port_priv_size rocker_world_ops 0 19308 NULL nohasharray
++cl_cpg_ocfs2_chain_list_19308_fields cl_cpg ocfs2_chain_list 0 19308 &port_priv_size_rocker_world_ops_19308_fields
++ve4_indsize_vxfs_ext4_19315_fields ve4_indsize vxfs_ext4 0 19315 NULL
++reply_sz_MPT3SAS_ADAPTER_19317_fields reply_sz MPT3SAS_ADAPTER 0 19317 NULL
++bpp_vardecl_nvidia_c_19325_fields bpp vardecl_nvidia.c 0 19325 NULL
++meta_dev_len_disk_conf_19326_fields meta_dev_len disk_conf 0 19326 NULL
++mlx4_alloc_resize_buf_fndecl_19329_fields mlx4_alloc_resize_buf fndecl 3 19329 NULL
++pkt_len_or_gro_seg_len_eth_fast_path_rx_cqe_19330_fields pkt_len_or_gro_seg_len eth_fast_path_rx_cqe 0 19330 NULL nohasharray
++finish_request_fndecl_19330_fields finish_request fndecl 4 19330 &pkt_len_or_gro_seg_len_eth_fast_path_rx_cqe_19330_fields
++rule_size_fib_rules_ops_19335_fields rule_size fib_rules_ops 0 19335 NULL
++do_writev_fndecl_19339_fields do_writev fndecl 3 19339 NULL
++sock_alloc_send_pskb_fndecl_19354_fields sock_alloc_send_pskb fndecl 3 19354 NULL
++ds_channels_snd_rme9652_19357_fields ds_channels snd_rme9652 0 19357 NULL
++lpfc_sriov_nr_virtfn_init_fndecl_19359_fields lpfc_sriov_nr_virtfn_init fndecl 2 19359 NULL nohasharray
++minimum_acpi_resource_io_19359_fields minimum acpi_resource_io 0 19359 &lpfc_sriov_nr_virtfn_init_fndecl_19359_fields
++nodesize_scrub_ctx_19371_fields nodesize scrub_ctx 0 19371 NULL
++size_mdu_array_info_s_19374_fields size mdu_array_info_s 0 19374 NULL
++cx25840_read_fndecl_19386_fields cx25840_read fndecl 0 19386 NULL
++padlen_ip_beet_phdr_19393_fields padlen ip_beet_phdr 0 19393 NULL
++ixgb_check_copybreak_fndecl_19396_fields ixgb_check_copybreak fndecl 3 19396 NULL
++ceph_msg_new_fndecl_19397_fields ceph_msg_new fndecl 2 19397 NULL
++ext4_xattr_set_fndecl_19403_fields ext4_xattr_set fndecl 5 19403 NULL
++max_sqes_bnx2i_hba_19405_fields max_sqes bnx2i_hba 0 19405 NULL
++rec_len_ocfs2_dir_entry_19408_fields rec_len ocfs2_dir_entry 0 19408 NULL
++shmem_alloc_hugepage_fndecl_19415_fields shmem_alloc_hugepage fndecl 3 19415 NULL
++num_ip_blocks_amdgpu_device_19419_fields num_ip_blocks amdgpu_device 0 19419 NULL
++size_mthca_resource_19420_fields size mthca_resource 0 19420 NULL
++fw_card_add_fndecl_19423_fields fw_card_add fndecl 2 19423 NULL
++mixer_nid_hda_gen_spec_19429_fields mixer_nid hda_gen_spec 0 19429 NULL
++btrfs_test_free_space_tree_fndecl_19430_fields btrfs_test_free_space_tree fndecl 1-2 19430 NULL
++chip_rcv_array_count_hfi1_devdata_19432_fields chip_rcv_array_count hfi1_devdata 0 19432 NULL
++tid_il_compressed_ba_resp_19443_fields tid il_compressed_ba_resp 0 19443 NULL nohasharray
++phys_addr_sfi_timer_table_entry_19443_fields phys_addr sfi_timer_table_entry 0 19443 &tid_il_compressed_ba_resp_19443_fields
++config_buf_fndecl_19445_fields config_buf fndecl 0 19445 NULL
++clone_bio_fndecl_19454_fields clone_bio fndecl 3-0-4 19454 NULL
++i965_gtt_total_entries_fndecl_19464_fields i965_gtt_total_entries fndecl 0 19464 NULL
++vcc_connect_fndecl_19469_fields vcc_connect fndecl 4-3 19469 NULL nohasharray
++size_nvbios_image_19469_fields size nvbios_image 0 19469 &vcc_connect_fndecl_19469_fields
++kclist_add_fndecl_19472_fields kclist_add fndecl 3 19472 NULL nohasharray
++dvb_ep_bulk_em28xx_19472_fields dvb_ep_bulk em28xx 0 19472 &kclist_add_fndecl_19472_fields
++dma_xfer_cnt_ivtv_buffer_19475_fields dma_xfer_cnt ivtv_buffer 0 19475 NULL
++orig_block_len_extent_map_19476_fields orig_block_len extent_map 0 19476 NULL
++ath6kl_wmi_ap_hidden_ssid_fndecl_19481_fields ath6kl_wmi_ap_hidden_ssid fndecl 2 19481 NULL
++fackets_out_tcp_sock_19484_fields fackets_out tcp_sock 0 19484 NULL
++nvme_pci_sriov_configure_fndecl_19485_fields nvme_pci_sriov_configure fndecl 2 19485 NULL
++ieee80211_change_mtu_fndecl_19486_fields ieee80211_change_mtu fndecl 2 19486 NULL nohasharray
++lookup_string_fndecl_19486_fields lookup_string fndecl 0 19486 &ieee80211_change_mtu_fndecl_19486_fields
++ath6kl_set_bitrate_mask32_fndecl_19488_fields ath6kl_set_bitrate_mask32 fndecl 2 19488 NULL
++drm_gtf_mode_fndecl_19489_fields drm_gtf_mode fndecl 3-2-4 19489 NULL nohasharray
++add_device_fndecl_19489_fields add_device fndecl 2 19489 &drm_gtf_mode_fndecl_19489_fields
++length_mwifiex_types_power_group_19491_fields length mwifiex_types_power_group 0 19491 NULL
++len_ib_ucm_sidr_req_19499_fields len ib_ucm_sidr_req 0 19499 NULL
++libfc_vport_create_fndecl_19500_fields libfc_vport_create fndecl 2 19500 NULL
++access_process_vm_fndecl_19503_fields access_process_vm fndecl 4-2 19503 NULL
++size_rvt_rq_19507_fields size rvt_rq 0 19507 NULL
++sctp_sendmsg_fndecl_19508_fields sctp_sendmsg fndecl 3 19508 NULL
++dev_cdev_19510_fields dev cdev 0 19510 NULL
++count_sgmap64_19513_fields count sgmap64 0 19513 NULL
++pglen_nfs_readlinkargs_19521_fields pglen nfs_readlinkargs 0 19521 NULL
++i40e_reconfig_rss_queues_fndecl_19528_fields i40e_reconfig_rss_queues fndecl 2 19528 NULL
++height_simplefb_platform_data_19532_fields height simplefb_platform_data 0 19532 NULL
++memparse_fndecl_19535_fields memparse fndecl 0 19535 NULL
++in_dma_usb_keyspan_19540_fields in_dma usb_keyspan 0 19540 NULL
++entries_size_ebt_table_info_19543_fields entries_size ebt_table_info 0 19543 NULL nohasharray
++nilfs_sufile_set_alloc_range_fndecl_19543_fields nilfs_sufile_set_alloc_range fndecl 3-2 19543 &entries_size_ebt_table_info_19543_fields
++get_response_hdac_bus_ops_19545_fields get_response hdac_bus_ops 0 19545 NULL
++read_code_fndecl_19550_fields read_code fndecl 4 19550 NULL
++send_size_send_ctx_19552_fields send_size send_ctx 0 19552 NULL
++softback_curr_vardecl_fbcon_c_19553_fields softback_curr vardecl_fbcon.c 0 19553 NULL
++cmpt_entry_sz_mlx4_dev_cap_19564_fields cmpt_entry_sz mlx4_dev_cap 0 19564 NULL
++uni16_to_x8_fndecl_19571_fields uni16_to_x8 fndecl 0 19571 NULL
++sd_pkt_scan_bayer_fndecl_19581_fields sd_pkt_scan_bayer fndecl 3 19581 NULL
++ath6kl_wmi_set_txe_notify_fndecl_19582_fields ath6kl_wmi_set_txe_notify fndecl 2 19582 NULL
++bytes_per_track_mspro_devinfo_19584_fields bytes_per_track mspro_devinfo 0 19584 NULL
++set_link_security_fndecl_19589_fields set_link_security fndecl 4 19589 NULL
++rx_max_pending_ethtool_ringparam_19591_fields rx_max_pending ethtool_ringparam 0 19591 NULL
++l1oip_socket_parse_fndecl_19592_fields l1oip_socket_parse fndecl 4 19592 NULL
++icc_empty_fifo_fndecl_19594_fields icc_empty_fifo fndecl 2 19594 NULL
++xdr_stream_pos_fndecl_19598_fields xdr_stream_pos fndecl 0 19598 NULL
++command_size_drm_qxl_command_19601_fields command_size drm_qxl_command 0 19601 NULL
++readpos_seq_buf_19607_fields readpos seq_buf 0 19607 NULL
++gspca_frame_add_fndecl_19612_fields gspca_frame_add fndecl 4 19612 NULL
++logical_btrfs_io_bio_19616_fields logical btrfs_io_bio 0 19616 NULL
++name_len_ext4_dir_entry_2_19628_fields name_len ext4_dir_entry_2 0 19628 NULL
++logical_io_failure_record_19631_fields logical io_failure_record 0 19631 NULL
++softback_buf_vardecl_fbcon_c_19637_fields softback_buf vardecl_fbcon.c 0 19637 NULL
++sdio_io_rw_ext_helper_fndecl_19641_fields sdio_io_rw_ext_helper fndecl 6 19641 NULL
++set_fp_int_qed_common_ops_19644_fields set_fp_int qed_common_ops 0 19644 NULL nohasharray
++pcfg_ofsh_cyttsp4_sysinfo_data_19644_fields pcfg_ofsh cyttsp4_sysinfo_data 0 19644 &set_fp_int_qed_common_ops_19644_fields
++memory_maker_code_mspro_sys_info_19650_fields memory_maker_code mspro_sys_info 0 19650 NULL
++af9033_rd_regs_fndecl_19652_fields af9033_rd_regs fndecl 4 19652 NULL
++hr_itemcount_hsm_request_19657_fields hr_itemcount hsm_request 0 19657 NULL
++configfs_dir_lseek_fndecl_19658_fields configfs_dir_lseek fndecl 2 19658 NULL
++peer_fwd_cnt_virtio_vsock_sock_19661_fields peer_fwd_cnt virtio_vsock_sock 0 19661 NULL
++tty_register_device_fndecl_19667_fields tty_register_device fndecl 2 19667 NULL
++videobuf_vmalloc_to_sg_fndecl_19671_fields videobuf_vmalloc_to_sg fndecl 2 19671 NULL
++recv_intr_pipe_us_data_19678_fields recv_intr_pipe us_data 0 19678 NULL
++num_leds_adp8860_backlight_platform_data_19687_fields num_leds adp8860_backlight_platform_data 0 19687 NULL
++depth_em28xx_fmt_19696_fields depth em28xx_fmt 0 19696 NULL nohasharray
++size_pkt_hdr_19696_fields size pkt_hdr 0 19696 &depth_em28xx_fmt_19696_fields nohasharray
++pcnt_bits_ubifs_info_19696_fields pcnt_bits ubifs_info 0 19696 &size_pkt_hdr_19696_fields nohasharray
++prealloc_bufsz_comedi_async_19696_fields prealloc_bufsz comedi_async 0 19696 &pcnt_bits_ubifs_info_19696_fields
++gfs2_file_splice_write_fndecl_19705_fields gfs2_file_splice_write fndecl 4 19705 NULL
++max_blksize_sdio_func_19715_fields max_blksize sdio_func 0 19715 NULL
++LastFreeEUN_NFTLrecord_19717_fields LastFreeEUN NFTLrecord 0 19717 NULL
++slots_end_qxl_rom_19718_fields slots_end qxl_rom 0 19718 NULL
++fat32_info_sector_fat_bios_param_block_19727_fields fat32_info_sector fat_bios_param_block 0 19727 NULL
++writelen_iuu_private_19742_fields writelen iuu_private 0 19742 NULL
++drbd_csum_ee_size_fndecl_19743_fields drbd_csum_ee_size fndecl 4 19743 NULL
++ntb_netdev_change_mtu_fndecl_19744_fields ntb_netdev_change_mtu fndecl 2 19744 NULL
++nmap_ib_umem_19745_fields nmap ib_umem 0 19745 NULL nohasharray
++nftl_write_oob_fndecl_19745_fields nftl_write_oob fndecl 2-3 19745 &nmap_ib_umem_19745_fields
++f2fs_i_size_write_fndecl_19746_fields f2fs_i_size_write fndecl 2 19746 NULL
++c67x00_giveback_urb_fndecl_19761_fields c67x00_giveback_urb fndecl 3 19761 NULL
++vram_base_qxl_device_19773_fields vram_base qxl_device 0 19773 NULL
++onenand_read_ops_nolock_fndecl_19774_fields onenand_read_ops_nolock fndecl 2 19774 NULL
++gss_decrypt_xdr_buf_fndecl_19786_fields gss_decrypt_xdr_buf fndecl 3 19786 NULL
++rcvbuf_size_rds_tcp_net_19796_fields rcvbuf_size rds_tcp_net 0 19796 NULL
++num_u2_ports_xhci_hcd_mtk_19801_fields num_u2_ports xhci_hcd_mtk 0 19801 NULL
++fromlen_nfs3_symlinkargs_19803_fields fromlen nfs3_symlinkargs 0 19803 NULL
++btrfs_test_inodes_fndecl_19807_fields btrfs_test_inodes fndecl 1-2 19807 NULL
++len_rpcsec_gss_oid_19814_fields len rpcsec_gss_oid 0 19814 NULL
++eeprom_len_niu_19815_fields eeprom_len niu 0 19815 NULL
++svcrdma_max_bc_requests_vardecl_19819_fields svcrdma_max_bc_requests vardecl 0 19819 NULL
++oid_printf_vargs_fndecl_19821_fields oid_printf_vargs fndecl 0 19821 NULL
++vring_new_virtqueue_fndecl_19828_fields vring_new_virtqueue fndecl 2 19828 NULL
++_osd_req_list_objects_fndecl_19839_fields _osd_req_list_objects fndecl 6 19839 NULL
++buf_used_uvc_video_queue_19843_fields buf_used uvc_video_queue 0 19843 NULL
++fbmem_start_viafb_dev_19849_fields fbmem_start viafb_dev 0 19849 NULL
++num_jumbo_rxd_qlcnic_adapter_19850_fields num_jumbo_rxd qlcnic_adapter 0 19850 NULL
++qp_guest_endpoint_create_fndecl_19852_fields qp_guest_endpoint_create fndecl 5-4 19852 NULL nohasharray
++real_size_in_page_qed_ilt_cli_blk_19852_fields real_size_in_page qed_ilt_cli_blk 0 19852 &qp_guest_endpoint_create_fndecl_19852_fields
++i5k_channel_probe_fndecl_19853_fields i5k_channel_probe fndecl 2 19853 NULL
++max_msix_vectors_ixgbe_mac_info_19874_fields max_msix_vectors ixgbe_mac_info 0 19874 NULL
++msb_do_write_request_fndecl_19885_fields msb_do_write_request fndecl 2 19885 NULL
++size_sst_block_19887_fields size sst_block 0 19887 NULL
++ide_find_dma_mode_fndecl_19889_fields ide_find_dma_mode fndecl 0 19889 NULL
++kmemleak_alloc_fndecl_19891_fields kmemleak_alloc fndecl 2 19891 NULL
++register_sound_midi_fndecl_19894_fields register_sound_midi fndecl 2 19894 NULL
++i915_gem_object_pin_fndecl_19904_fields i915_gem_object_pin fndecl 4 19904 NULL
++truncate_inline_extent_fndecl_19906_fields truncate_inline_extent fndecl 5 19906 NULL
++__pool_find_fndecl_19911_fields __pool_find fndecl 3 19911 NULL
++slot_dlm_slot_19913_fields slot dlm_slot 0 19913 NULL
++maxLen_group_data_19920_fields maxLen group_data 0 19920 NULL
++xt_compat_add_offset_fndecl_19922_fields xt_compat_add_offset fndecl 0 19922 NULL nohasharray
++cp_change_mtu_fndecl_19922_fields cp_change_mtu fndecl 2 19922 &xt_compat_add_offset_fndecl_19922_fields nohasharray
++do_readv_fndecl_19922_fields do_readv fndecl 3 19922 &cp_change_mtu_fndecl_19922_fields
++sector_number_phys_req_19923_fields sector_number phys_req 0 19923 NULL
++xfs_rmap_btrec_to_irec_fndecl_19931_fields xfs_rmap_btrec_to_irec fndecl 0 19931 NULL nohasharray
++iic_tpm_write_generic_fndecl_19931_fields iic_tpm_write_generic fndecl 3 19931 &xfs_rmap_btrec_to_irec_fndecl_19931_fields
++unix_stream_sendmsg_fndecl_19940_fields unix_stream_sendmsg fndecl 3 19940 NULL
++wusbhc_giveback_urb_fndecl_19954_fields wusbhc_giveback_urb fndecl 3 19954 NULL
++ipoib_sendq_size_vardecl_19969_fields ipoib_sendq_size vardecl 0 19969 NULL
++src_len_ccp_passthru_engine_19970_fields src_len ccp_passthru_engine 0 19970 NULL
++end_iwl_prph_range_19976_fields end iwl_prph_range 0 19976 NULL
++size_packet_settings_19984_fields size packet_settings 0 19984 NULL
++palign_qib_devdata_19988_fields palign qib_devdata 0 19988 NULL
++ocfs2_defrag_extent_fndecl_19994_fields ocfs2_defrag_extent fndecl 3-2 19994 NULL
++move_extent_per_page_fndecl_20004_fields move_extent_per_page fndecl 5-6-4-3 20004 NULL
++copybreak_vardecl_sky2_c_20006_fields copybreak vardecl_sky2.c 0 20006 NULL
++def_bpp_sm501_platdata_fbsub_20007_fields def_bpp sm501_platdata_fbsub 0 20007 NULL
++i_inline_size_ext4_inode_info_20015_fields i_inline_size ext4_inode_info 0 20015 NULL
++y_drm_fb_helper_crtc_20016_fields y drm_fb_helper_crtc 0 20016 NULL nohasharray
++start_bus_number_acpi_mcfg_allocation_20016_fields start_bus_number acpi_mcfg_allocation 0 20016 &y_drm_fb_helper_crtc_20016_fields
++ctl_dma_cm109_dev_20023_fields ctl_dma cm109_dev 0 20023 NULL
++build_skb_fndecl_20027_fields build_skb fndecl 2 20027 NULL nohasharray
++zone_absent_pages_in_node_fndecl_20027_fields zone_absent_pages_in_node fndecl 0 20027 &build_skb_fndecl_20027_fields
++nr_max310x_devtype_20030_fields nr max310x_devtype 0 20030 NULL
++sample_rate_lola_20032_fields sample_rate lola 0 20032 NULL
++block_size_osst_tape_20034_fields block_size osst_tape 0 20034 NULL
++rcvhdrentsize_qib_devdata_20040_fields rcvhdrentsize qib_devdata 0 20040 NULL
++nr_luns_nvm_dev_20042_fields nr_luns nvm_dev 0 20042 NULL
++batadv_interface_change_mtu_fndecl_20043_fields batadv_interface_change_mtu fndecl 2 20043 NULL nohasharray
++id_len_netdev_phys_item_id_20043_fields id_len netdev_phys_item_id 0 20043 &batadv_interface_change_mtu_fndecl_20043_fields
++max_rqst_sz_nfs4_channel_attrs_20083_fields max_rqst_sz nfs4_channel_attrs 0 20083 NULL
++rxsize_grcan_device_config_20087_fields rxsize grcan_device_config 0 20087 NULL
++submit_rtpg_fndecl_20091_fields submit_rtpg fndecl 3 20091 NULL
++bnx2_set_rx_ring_size_fndecl_20092_fields bnx2_set_rx_ring_size fndecl 2 20092 NULL
++r8712_read32_fndecl_20095_fields r8712_read32 fndecl 0 20095 NULL
++reg_count_cs_extent_def_20096_fields reg_count cs_extent_def 0 20096 NULL
++dm_bufio_get_block_number_fndecl_20097_fields dm_bufio_get_block_number fndecl 0 20097 NULL
++qla82xx_pci_mem_write_direct_fndecl_20099_fields qla82xx_pci_mem_write_direct fndecl 2 20099 NULL
++minimum_v4l2_ctrl_20103_fields minimum v4l2_ctrl 0 20103 NULL
++precopy_buffers_fndecl_20104_fields precopy_buffers fndecl 3 20104 NULL
++accum_len_kcm_rx_msg_20108_fields accum_len kcm_rx_msg 0 20108 NULL
++max_acl_len_hci_rp_read_data_block_size_20119_fields max_acl_len hci_rp_read_data_block_size 0 20119 NULL
++d_nhash_vxfs_dirblk_20122_fields d_nhash vxfs_dirblk 0 20122 NULL
++ao_chans_pci224_board_20129_fields ao_chans pci224_board 0 20129 NULL
++btrfs_punch_hole_fndecl_20130_fields btrfs_punch_hole fndecl 3-2 20130 NULL
++in_ep_snd_usb_midi_endpoint_info_20132_fields in_ep snd_usb_midi_endpoint_info 0 20132 NULL
++data_sectors_per_block_partition_20138_fields data_sectors_per_block partition 0 20138 NULL
++pos_f_hidg_req_list_20147_fields pos f_hidg_req_list 0 20147 NULL
++ep_in_if_usb_card_20154_fields ep_in if_usb_card 0 20154 NULL
++tpci200_create_device_fndecl_20157_fields tpci200_create_device fndecl 2 20157 NULL
++nr_gpio_tle62x0_state_20178_fields nr_gpio tle62x0_state 0 20178 NULL
++usb_ftdi_elan_edset_single_fndecl_20181_fields usb_ftdi_elan_edset_single fndecl 0 20181 NULL nohasharray
++swapRB_sd_20181_fields swapRB sd 0 20181 &usb_ftdi_elan_edset_single_fndecl_20181_fields
++fuse_lseek_fndecl_20193_fields fuse_lseek fndecl 2 20193 NULL
++iram_base_intel_sst_drv_20196_fields iram_base intel_sst_drv 0 20196 NULL nohasharray
++agp_memory_reserved_vardecl_20196_fields agp_memory_reserved vardecl 0 20196 &iram_base_intel_sst_drv_20196_fields
++qxl_gem_object_create_with_handle_fndecl_20198_fields qxl_gem_object_create_with_handle fndecl 4 20198 NULL
++fpage_size_genwqe_sgl_20199_fields fpage_size genwqe_sgl 0 20199 NULL
++sectors_per_block_bits_dm_bufio_client_20202_fields sectors_per_block_bits dm_bufio_client 0 20202 NULL
++dma_limit_tg3_20210_fields dma_limit tg3 0 20210 NULL
++objlayout_write_done_fndecl_20211_fields objlayout_write_done fndecl 2 20211 NULL
++compr_fill_fndecl_20214_fields compr_fill fndecl 2 20214 NULL
++rx_buffer_size_freelQ_20218_fields rx_buffer_size freelQ 0 20218 NULL
++dmah_acm_wb_20221_fields dmah acm_wb 0 20221 NULL
++setup_sgl_buf_fndecl_20237_fields setup_sgl_buf fndecl 4 20237 NULL
++phys_map_info_20239_fields phys map_info 0 20239 NULL
++mac_find_mode_fndecl_20243_fields mac_find_mode fndecl 4 20243 NULL
++vtotal_psb_pipe_20245_fields vtotal psb_pipe 0 20245 NULL
++nilfs_read_super_block_fndecl_20246_fields nilfs_read_super_block fndecl 3-2 20246 NULL
++size_drm_virtgpu_resource_create_20248_fields size drm_virtgpu_resource_create 0 20248 NULL nohasharray
++i2c_writebytes_fndecl_20248_fields i2c_writebytes fndecl 3 20248 &size_drm_virtgpu_resource_create_20248_fields
++max_size_inet_frag_queue_20249_fields max_size inet_frag_queue 0 20249 NULL
++ip_append_page_fndecl_20261_fields ip_append_page fndecl 5-4 20261 NULL
++foff_pnfs_block_extent_20264_fields foff pnfs_block_extent 0 20264 NULL
++value_len_ocfs2_security_xattr_info_20265_fields value_len ocfs2_security_xattr_info 0 20265 NULL
++y_skip_top_mt9t031_20278_fields y_skip_top mt9t031 0 20278 NULL
++fifo_size_eg20t_port_20279_fields fifo_size eg20t_port 0 20279 NULL
++size_vx_ibl_info_20282_fields size vx_ibl_info 0 20282 NULL
++soc_mbus_bytes_per_line_fndecl_20288_fields soc_mbus_bytes_per_line fndecl 0-1 20288 NULL
++blk_queue_io_min_fndecl_20293_fields blk_queue_io_min fndecl 2 20293 NULL
++total_blocks_partition_20302_fields total_blocks partition 0 20302 NULL nohasharray
++gen8_get_total_gtt_size_fndecl_20302_fields gen8_get_total_gtt_size fndecl 0-1 20302 &total_blocks_partition_20302_fields
++mpegbufs_vardecl_cx231xx_417_c_20303_fields mpegbufs vardecl_cx231xx-417.c 0 20303 NULL
++fallback_aper_order_vardecl_20308_fields fallback_aper_order vardecl 0 20308 NULL
++xfs_dir2_leaf_trim_data_fndecl_20310_fields xfs_dir2_leaf_trim_data fndecl 3 20310 NULL nohasharray
++index_vardecl_nm256_c_20310_fields index vardecl_nm256.c 0 20310 &xfs_dir2_leaf_trim_data_fndecl_20310_fields
++cas_change_mtu_fndecl_20320_fields cas_change_mtu fndecl 2 20320 NULL
++num_cvts_hdmi_spec_20322_fields num_cvts hdmi_spec 0 20322 NULL
++qlf_blkno_xfs_dq_logformat_20330_fields qlf_blkno xfs_dq_logformat 0 20330 NULL
++ss_out_channels_hdspm_20338_fields ss_out_channels hdspm 0 20338 NULL
++offset_videobuf_dmabuf_20339_fields offset videobuf_dmabuf 0 20339 NULL
++sq_wqe_count_mlx5_ib_create_qp_20350_fields sq_wqe_count mlx5_ib_create_qp 0 20350 NULL
++sections_pe_hdr_20351_fields sections pe_hdr 0 20351 NULL
++memblock_find_in_range_fndecl_20356_fields memblock_find_in_range fndecl 0-4-3-1-2 20356 NULL
++chipshift_alauda_card_info_20364_fields chipshift alauda_card_info 0 20364 NULL
++type_usbdevfs_urb_20367_fields type usbdevfs_urb 0 20367 NULL
++hw_block_size_se_dev_attrib_20373_fields hw_block_size se_dev_attrib 0 20373 NULL nohasharray
++cfgctxts_qib_devdata_20373_fields cfgctxts qib_devdata 0 20373 &hw_block_size_se_dev_attrib_20373_fields
++nstamps_max_mask_recent_table_20374_fields nstamps_max_mask recent_table 0 20374 NULL
++striped_read_fndecl_20378_fields striped_read fndecl 0-2 20378 NULL
++opts1_rx_desc_20387_fields opts1 rx_desc 0 20387 NULL
++btrfs_del_items_fndecl_20388_fields btrfs_del_items fndecl 5 20388 NULL
++sw_nchannels_stm_data_20389_fields sw_nchannels stm_data 0 20389 NULL
++sys_pwritev2_fndecl_20390_fields sys_pwritev2 fndecl 3 20390 NULL
++leb_size_ubi_device_20396_fields leb_size ubi_device 0 20396 NULL
++regulator_register_always_on_fndecl_20403_fields regulator_register_always_on fndecl 1 20403 NULL
++shmem_alloc_and_acct_page_fndecl_20407_fields shmem_alloc_and_acct_page fndecl 4 20407 NULL
++num_units_wlan_host_mem_req_20410_fields num_units wlan_host_mem_req 0 20410 NULL
++mc_rreg_radeon_device_20418_fields mc_rreg radeon_device 0 20418 NULL
++sd_log_head_gfs2_sbd_20435_fields sd_log_head gfs2_sbd 0 20435 NULL
++blob_len_trusted_key_payload_20437_fields blob_len trusted_key_payload 0 20437 NULL nohasharray
++raw_skid_size_x509_certificate_20437_fields raw_skid_size x509_certificate 0 20437 &blob_len_trusted_key_payload_20437_fields
++octeon_init_instr_queue_fndecl_20439_fields octeon_init_instr_queue fndecl 3 20439 NULL
++gigaset_isoc_receive_fndecl_20447_fields gigaset_isoc_receive fndecl 2 20447 NULL
++ib_max_size_mvumi_hba_20452_fields ib_max_size mvumi_hba 0 20452 NULL
++stride_banshee_reg_20459_fields stride banshee_reg 0 20459 NULL
++gigaset_if_receive_fndecl_20462_fields gigaset_if_receive fndecl 3 20462 NULL
++xfs_setsize_buftarg_fndecl_20465_fields xfs_setsize_buftarg fndecl 2 20465 NULL
++tx_data_fndecl_20470_fields tx_data fndecl 4-3 20470 NULL
++wMaxCommand_usb_cdc_dmm_desc_20473_fields wMaxCommand usb_cdc_dmm_desc 0 20473 NULL
++vlen_nfsd3_readargs_20476_fields vlen nfsd3_readargs 0 20476 NULL
++rose_recvmsg_fndecl_20491_fields rose_recvmsg fndecl 3 20491 NULL
++ext4_ext_insert_index_fndecl_20492_fields ext4_ext_insert_index fndecl 4 20492 NULL
++pref_width_vmw_display_unit_20493_fields pref_width vmw_display_unit 0 20493 NULL
++ocfs2_extend_xattr_bucket_fndecl_20499_fields ocfs2_extend_xattr_bucket fndecl 4 20499 NULL
++aac_rkt_ioremap_fndecl_20502_fields aac_rkt_ioremap fndecl 2 20502 NULL
++nzones_adfs_discrecord_20503_fields nzones adfs_discrecord 0 20503 NULL nohasharray
++max_pfn_mapped_vardecl_20503_fields max_pfn_mapped vardecl 0 20503 &nzones_adfs_discrecord_20503_fields nohasharray
++id_platform_device_20503_fields id platform_device 0 20503 &max_pfn_mapped_vardecl_20503_fields
++tty_port_register_device_attr_fndecl_20510_fields tty_port_register_device_attr fndecl 3 20510 NULL
++newImageSize_mpt_ioctl_replace_fw_20513_fields newImageSize mpt_ioctl_replace_fw 0 20513 NULL
++cifs_write_fndecl_20515_fields cifs_write fndecl 4 20515 NULL
++ufs_write_end_fndecl_20517_fields ufs_write_end fndecl 5 20517 NULL
++vdc_mem_base_vml_par_20521_fields vdc_mem_base vml_par 0 20521 NULL
++xtAppend_fndecl_20525_fields xtAppend fndecl 4 20525 NULL
++expand_downwards_fndecl_20533_fields expand_downwards fndecl 2 20533 NULL nohasharray
++sr_read_fndecl_20533_fields sr_read fndecl 3 20533 &expand_downwards_fndecl_20533_fields
++pnfs_generic_pg_init_write_fndecl_20539_fields pnfs_generic_pg_init_write fndecl 3 20539 NULL
++s_first_data_block_ext2_super_block_20541_fields s_first_data_block ext2_super_block 0 20541 NULL
++dti_buf_size_wahc_20547_fields dti_buf_size wahc 0 20547 NULL
++crtc_hdisplay_drm_display_mode_20548_fields crtc_hdisplay drm_display_mode 0 20548 NULL
++dataflash_write_fndecl_20550_fields dataflash_write fndecl 2-3 20550 NULL
++dma_base_sst_pdata_20554_fields dma_base sst_pdata 0 20554 NULL
++nvm_submit_ppa_fndecl_20560_fields nvm_submit_ppa fndecl 7 20560 NULL
++mtdchar_writeoob_fndecl_20562_fields mtdchar_writeoob fndecl 3-4 20562 NULL
++sg_write_fndecl_20563_fields sg_write fndecl 3 20563 NULL
++free_extents_btrfs_free_space_ctl_20566_fields free_extents btrfs_free_space_ctl 0 20566 NULL
++m25p80_read_fndecl_20568_fields m25p80_read fndecl 3 20568 NULL
++check_defrag_in_cache_fndecl_20573_fields check_defrag_in_cache fndecl 3-2 20573 NULL
++hp_outs_auto_pin_cfg_20574_fields hp_outs auto_pin_cfg 0 20574 NULL
++fifo_size_pxa_ep_20587_fields fifo_size pxa_ep 0 20587 NULL
++nrof_flowrings_brcmf_pcie_shared_info_20590_fields nrof_flowrings brcmf_pcie_shared_info 0 20590 NULL
++target_complete_cmd_with_length_fndecl_20597_fields target_complete_cmd_with_length fndecl 3 20597 NULL
++max_deviceinfo_size_pnfs_layoutdriver_type_20599_fields max_deviceinfo_size pnfs_layoutdriver_type 0 20599 NULL
++bblog_shift_mdp_superblock_1_20604_fields bblog_shift mdp_superblock_1 0 20604 NULL
++get_alt_usb_function_20605_fields get_alt usb_function 0 20605 NULL nohasharray
++cdrom_read_block_fndecl_20605_fields cdrom_read_block fndecl 4-6 20605 &get_alt_usb_function_20605_fields
++ext4_inode_table_set_fndecl_20611_fields ext4_inode_table_set fndecl 3 20611 NULL
++height_tw686x_video_channel_20622_fields height tw686x_video_channel 0 20622 NULL
++ocfs2_allocate_refcount_tree_fndecl_20626_fields ocfs2_allocate_refcount_tree fndecl 2 20626 NULL
++__nla_put_nohdr_fndecl_20631_fields __nla_put_nohdr fndecl 2 20631 NULL
++num_comp_vectors_ib_device_20639_fields num_comp_vectors ib_device 0 20639 NULL
++hpi_outstream_write_buf_fndecl_20645_fields hpi_outstream_write_buf fndecl 3 20645 NULL
++offset_iscsi_seq_20646_fields offset iscsi_seq 0 20646 NULL
++nr_pages_ore_io_state_20648_fields nr_pages ore_io_state 0 20648 NULL
++m_pblk_ext4_map_blocks_20649_fields m_pblk ext4_map_blocks 0 20649 NULL
++dlm_process_incoming_buffer_fndecl_20665_fields dlm_process_incoming_buffer fndecl 0 20665 NULL nohasharray
++max_feed_count_dvb_usb_adapter_20665_fields max_feed_count dvb_usb_adapter 0 20665 &dlm_process_incoming_buffer_fndecl_20665_fields
++shim_size_sst_res_info_20670_fields shim_size sst_res_info 0 20670 NULL
++nilfs_load_super_root_fndecl_20676_fields nilfs_load_super_root fndecl 3 20676 NULL
++max_qp_wr_ib_device_attr_20681_fields max_qp_wr ib_device_attr 0 20681 NULL
++write_to_8820_fndecl_20687_fields write_to_8820 fndecl 3 20687 NULL
++num_evt_qs_be_adapter_20688_fields num_evt_qs be_adapter 0 20688 NULL
++num_row_gpios_matrix_keypad_platform_data_20696_fields num_row_gpios matrix_keypad_platform_data 0 20696 NULL
++erase_size_vardecl_mtdram_c_20704_fields erase_size vardecl_mtdram.c 0 20704 NULL
++err_dev_e752x_dev_info_20708_fields err_dev e752x_dev_info 0 20708 NULL
++src_len_ccp_rsa_engine_20712_fields src_len ccp_rsa_engine 0 20712 NULL
++ip_blkno_ocfs2_inode_info_20717_fields ip_blkno ocfs2_inode_info 0 20717 NULL
++dlc_rx_msg_20720_fields dlc rx_msg 0 20720 NULL
++add_range_fndecl_20721_fields add_range fndecl 5-4 20721 NULL
++txq_data_size_ieee80211_hw_20725_fields txq_data_size ieee80211_hw 0 20725 NULL
++max_io_length_ore_layout_20738_fields max_io_length ore_layout 0 20738 NULL
++read_data_done_iscsi_cmd_20745_fields read_data_done iscsi_cmd 0 20745 NULL
++sb_pseg_start_nilfs_segment_buffer_20750_fields sb_pseg_start nilfs_segment_buffer 0 20750 NULL
++ath6kl_wmi_probedssid_cmd_fndecl_20751_fields ath6kl_wmi_probedssid_cmd fndecl 2 20751 NULL
++TransferCount__MPI2_SCSI_IO_REPLY_20759_fields TransferCount _MPI2_SCSI_IO_REPLY 0 20759 NULL
++r_readdir_offset_ceph_mds_request_20764_fields r_readdir_offset ceph_mds_request 0 20764 NULL
++read_in_block_fndecl_20766_fields read_in_block fndecl 3 20766 NULL nohasharray
++init_tx_ring_fndecl_20766_fields init_tx_ring fndecl 4 20766 &read_in_block_fndecl_20766_fields
++channels_min_snd_soc_pcm_stream_20771_fields channels_min snd_soc_pcm_stream 0 20771 NULL nohasharray
++tx_ring_size_mlx4_en_port_profile_20771_fields tx_ring_size mlx4_en_port_profile 0 20771 &channels_min_snd_soc_pcm_stream_20771_fields
++ltab_sz_ubifs_info_20776_fields ltab_sz ubifs_info 0 20776 NULL
++rvds_opregion_asle_20777_fields rvds opregion_asle 0 20777 NULL
++fat_fats_fat_bios_param_block_20785_fields fat_fats fat_bios_param_block 0 20785 NULL
++orig_x_screen_info_20787_fields orig_x screen_info 0 20787 NULL nohasharray
++ncp_search_for_fileset_fndecl_20787_fields ncp_search_for_fileset fndecl 6 20787 &orig_x_screen_info_20787_fields
++final_block_in_request_dio_submit_20788_fields final_block_in_request dio_submit 0 20788 NULL
++map_size_pcmcia_socket_20792_fields map_size pcmcia_socket 0 20792 NULL
++max_seg_size_mmc_host_20795_fields max_seg_size mmc_host 0 20795 NULL nohasharray
++pos_vb2_fileio_buf_20795_fields pos vb2_fileio_buf 0 20795 &max_seg_size_mmc_host_20795_fields
++win_sz_wmi_addba_req_event_20803_fields win_sz wmi_addba_req_event 0 20803 NULL nohasharray
++namelen_xfs_da_args_20803_fields namelen xfs_da_args 0 20803 &win_sz_wmi_addba_req_event_20803_fields
++mgmt_index_event_fndecl_20813_fields mgmt_index_event fndecl 4 20813 NULL
++rcvidx_isac_20815_fields rcvidx isac 0 20815 NULL
++via686a_device_add_fndecl_20823_fields via686a_device_add fndecl 1 20823 NULL
++drm_fb_helper_single_fb_probe_fndecl_20828_fields drm_fb_helper_single_fb_probe fndecl 2 20828 NULL nohasharray
++do_cow_fault_fndecl_20828_fields do_cow_fault fndecl 2 20828 &drm_fb_helper_single_fb_probe_fndecl_20828_fields
++compat_do_ip6t_set_ctl_fndecl_20835_fields compat_do_ip6t_set_ctl fndecl 4 20835 NULL
++num_crtc_radeon_device_20838_fields num_crtc radeon_device 0 20838 NULL nohasharray
++adv_smbus_read_byte_data_check_fndecl_20838_fields adv_smbus_read_byte_data_check fndecl 0 20838 &num_crtc_radeon_device_20838_fields
++pathlen_nfs3_symlinkargs_20843_fields pathlen nfs3_symlinkargs 0 20843 NULL
++udp_sendpage_fndecl_20845_fields udp_sendpage fndecl 4 20845 NULL
++store_limit_l_fscache_object_20847_fields store_limit_l fscache_object 0 20847 NULL
++cur_page_block_dio_submit_20851_fields cur_page_block dio_submit 0 20851 NULL
++pkcs7_sig_note_signature_fndecl_20857_fields pkcs7_sig_note_signature fndecl 5 20857 NULL
++lpfc_bg_setup_bpl_fndecl_20862_fields lpfc_bg_setup_bpl fndecl 0 20862 NULL nohasharray
++uvc_video_stats_dump_fndecl_20862_fields uvc_video_stats_dump fndecl 0 20862 &lpfc_bg_setup_bpl_fndecl_20862_fields
++beb_rsvd_pebs_ubi_device_20863_fields beb_rsvd_pebs ubi_device 0 20863 NULL
++num_rx_descs_octeon_nic_if_config_20865_fields num_rx_descs octeon_nic_if_config 0 20865 NULL
++num_mlx4_resource_20869_fields num mlx4_resource 0 20869 NULL
++length_iwl_ucode_tlv_20871_fields length iwl_ucode_tlv 0 20871 NULL
++btrfs_prealloc_file_range_fndecl_20872_fields btrfs_prealloc_file_range fndecl 3-4 20872 NULL
++nr_hotspot_blocks_smq_policy_20876_fields nr_hotspot_blocks smq_policy 0 20876 NULL
++max_q_per_vf_rcb_common_cb_20877_fields max_q_per_vf rcb_common_cb 0 20877 NULL
++usb_stor_intr_transfer_fndecl_20883_fields usb_stor_intr_transfer fndecl 3 20883 NULL
++cl_local_node_o2nm_cluster_20896_fields cl_local_node o2nm_cluster 0 20896 NULL
++idiag_info_size_inet_diag_handler_20898_fields idiag_info_size inet_diag_handler 0 20898 NULL
++locks_mandatory_area_fndecl_20899_fields locks_mandatory_area fndecl 0 20899 NULL
++check_vendor_extension_fndecl_20901_fields check_vendor_extension fndecl 1 20901 NULL
++num_rows_vardecl_arcfb_c_20902_fields num_rows vardecl_arcfb.c 0 20902 NULL
++radeon_vm_directory_size_fndecl_20909_fields radeon_vm_directory_size fndecl 0 20909 NULL
++n_dir_band_hpfs_super_block_20914_fields n_dir_band hpfs_super_block 0 20914 NULL
++zisofs_uncompress_block_fndecl_20917_fields zisofs_uncompress_block fndecl 2 20917 NULL
++mmap_piobufs_fndecl_20927_fields mmap_piobufs fndecl 4 20927 NULL
++__ip_tunnel_change_mtu_fndecl_20933_fields __ip_tunnel_change_mtu fndecl 2 20933 NULL nohasharray
++qbuf_scan_fndecl_20933_fields qbuf_scan fndecl 3 20933 &__ip_tunnel_change_mtu_fndecl_20933_fields
++gid_table_len_mthca_limits_20957_fields gid_table_len mthca_limits 0 20957 NULL
++npages_mlx5_buf_20958_fields npages mlx5_buf 0 20958 NULL
++range_start_writeback_control_20965_fields range_start writeback_control 0 20965 NULL
++dbDiscardAG_fndecl_20969_fields dbDiscardAG fndecl 0 20969 NULL
++pskb_carve_fndecl_20971_fields pskb_carve fndecl 2 20971 NULL
++offset_fuse_notify_store_out_20985_fields offset fuse_notify_store_out 0 20985 NULL
++dy_fb_image_20988_fields dy fb_image 0 20988 NULL nohasharray
++arvo_sysfs_write_fndecl_20988_fields arvo_sysfs_write fndecl 6 20988 &dy_fb_image_20988_fields
++gfn_guest_walker32_20990_fields gfn guest_walker32 0 20990 NULL
++cxns_per_ctrl_hba_parameters_21008_fields cxns_per_ctrl hba_parameters 0 21008 NULL
++controller_function_mspro_sys_info_21011_fields controller_function mspro_sys_info 0 21011 NULL
++s_log_cluster_size_ext4_super_block_21014_fields s_log_cluster_size ext4_super_block 0 21014 NULL
++i40iw_get_vmalloc_mem_fndecl_21016_fields i40iw_get_vmalloc_mem fndecl 3 21016 NULL
++create_one_cdev_fndecl_21023_fields create_one_cdev fndecl 2 21023 NULL
++__build_skb_fndecl_21024_fields __build_skb fndecl 2 21024 NULL
++minix_new_block_fndecl_21026_fields minix_new_block fndecl 0 21026 NULL
++uea_send_modem_cmd_fndecl_21027_fields uea_send_modem_cmd fndecl 3 21027 NULL
++count_debug_buffer_21028_fields count debug_buffer 0 21028 NULL
++fw_resource_count_efi_system_resource_table_21033_fields fw_resource_count efi_system_resource_table 0 21033 NULL
++start_range_21034_fields start range 0 21034 NULL
++crtc_vdisplay_drm_display_mode_21037_fields crtc_vdisplay drm_display_mode 0 21037 NULL
++vary_usbtest_param_32_21050_fields vary usbtest_param_32 0 21050 NULL
++erase_shift_onenand_chip_21052_fields erase_shift onenand_chip 0 21052 NULL nohasharray
++tx_queues_rt2x00_ops_21052_fields tx_queues rt2x00_ops 0 21052 &erase_shift_onenand_chip_21052_fields
++xfs_alloc_min_freelist_fndecl_21056_fields xfs_alloc_min_freelist fndecl 0 21056 NULL
++size_nvkm_memory_func_21058_fields size nvkm_memory_func 0 21058 NULL
++__send_prepared_auth_request_fndecl_21067_fields __send_prepared_auth_request fndecl 2 21067 NULL
++ts_packet_count_cx231xx_tsport_21071_fields ts_packet_count cx231xx_tsport 0 21071 NULL
++usbip_recv_fndecl_21076_fields usbip_recv fndecl 3 21076 NULL
++consume_size_qp_entry_21087_fields consume_size qp_entry 0 21087 NULL
++queue_pages_test_walk_fndecl_21089_fields queue_pages_test_walk fndecl 2-1 21089 NULL
++max_counters_mlx4_caps_21095_fields max_counters mlx4_caps 0 21095 NULL
++ext4_block_truncate_page_fndecl_21098_fields ext4_block_truncate_page fndecl 3 21098 NULL
++ext4_bg_has_super_fndecl_21104_fields ext4_bg_has_super fndecl 0 21104 NULL
++sge_size_ieee_MPT3SAS_ADAPTER_21108_fields sge_size_ieee MPT3SAS_ADAPTER 0 21108 NULL
++__vfs_read_fndecl_21109_fields __vfs_read fndecl 0-3 21109 NULL nohasharray
++port_number_board_info_21109_fields port_number board_info 0 21109 &__vfs_read_fndecl_21109_fields
++dm_rh_get_region_size_fndecl_21112_fields dm_rh_get_region_size fndecl 0 21112 NULL
++memblock_mark_hotplug_fndecl_21114_fields memblock_mark_hotplug fndecl 2-1 21114 NULL nohasharray
++fpm_base_addr_i40iw_hmc_pble_rsrc_21114_fields fpm_base_addr i40iw_hmc_pble_rsrc 0 21114 &memblock_mark_hotplug_fndecl_21114_fields
++max_slots_ocfs2_super_21115_fields max_slots ocfs2_super 0 21115 NULL nohasharray
++hdlc_irq_one_fndecl_21115_fields hdlc_irq_one fndecl 2 21115 &max_slots_ocfs2_super_21115_fields
++header_length_scsi_mode_data_21117_fields header_length scsi_mode_data 0 21117 NULL
++chunk_mask_dm_exception_store_21121_fields chunk_mask dm_exception_store 0 21121 NULL
++produce_size_vmci_transport_21124_fields produce_size vmci_transport 0 21124 NULL
++s_desc_per_block_bits_ext4_sb_info_21130_fields s_desc_per_block_bits ext4_sb_info 0 21130 NULL
++do_add_counters_fndecl_21131_fields do_add_counters fndecl 3 21131 NULL
++xfs_bmbt_lookup_eq_fndecl_21134_fields xfs_bmbt_lookup_eq fndecl 3-4-2 21134 NULL
++cp_pack_start_sum_f2fs_checkpoint_21142_fields cp_pack_start_sum f2fs_checkpoint 0 21142 NULL
++clk_get_rate_fndecl_21147_fields clk_get_rate fndecl 0 21147 NULL nohasharray
++copied_iscsi_segment_21147_fields copied iscsi_segment 0 21147 &clk_get_rate_fndecl_21147_fields
++req_queue_pairs_i40e_vsi_21151_fields req_queue_pairs i40e_vsi 0 21151 NULL
++ext4_xattr_find_entry_fndecl_21162_fields ext4_xattr_find_entry fndecl 0 21162 NULL
++nd_size_out_nd_cmd_pkg_21165_fields nd_size_out nd_cmd_pkg 0 21165 NULL
++gfs2_dir_get_existing_buffer_fndecl_21172_fields gfs2_dir_get_existing_buffer fndecl 2 21172 NULL
++udf_try_read_meta_fndecl_21178_fields udf_try_read_meta fndecl 4 21178 NULL
++usage_index_hid_local_21183_fields usage_index hid_local 0 21183 NULL
++init_ppi_data_fndecl_21184_fields init_ppi_data fndecl 2 21184 NULL
++crtc_hsync_end_drm_display_mode_21187_fields crtc_hsync_end drm_display_mode 0 21187 NULL
++ucNumEntries__ATOM_PPLIB_Clock_Voltage_Dependency_Table_21191_fields ucNumEntries _ATOM_PPLIB_Clock_Voltage_Dependency_Table 0 21191 NULL
++sb_inodesize_xfs_sb_21192_fields sb_inodesize xfs_sb 0 21192 NULL
++usbnet_write_cmd_async_fndecl_21200_fields usbnet_write_cmd_async fndecl 7 21200 NULL
++drm_plane_helper_update_fndecl_21218_fields drm_plane_helper_update fndecl 6-10-7-11 21218 NULL
++hpfs_get_4sectors_fndecl_21224_fields hpfs_get_4sectors fndecl 2 21224 NULL
++vfio_pci_register_dev_region_fndecl_21228_fields vfio_pci_register_dev_region fndecl 5 21228 NULL
++tx_ptr_catc_21231_fields tx_ptr catc 0 21231 NULL nohasharray
++ext4_blks_to_allocate_fndecl_21231_fields ext4_blks_to_allocate fndecl 0-4-3 21231 &tx_ptr_catc_21231_fields
++ptr_mask_radeon_ring_21233_fields ptr_mask radeon_ring 0 21233 NULL
++RamAmountKBytes_nvidia_par_21238_fields RamAmountKBytes nvidia_par 0 21238 NULL nohasharray
++num_msix_qlcnic_hardware_context_21238_fields num_msix qlcnic_hardware_context 0 21238 &RamAmountKBytes_nvidia_par_21238_fields
++rp_buflen_nfs4_replay_21241_fields rp_buflen nfs4_replay 0 21241 NULL
++ring_size_amdgpu_ih_ring_21243_fields ring_size amdgpu_ih_ring 0 21243 NULL
++fbcon_do_set_font_fndecl_21244_fields fbcon_do_set_font fndecl 2-3 21244 NULL
++size_seq_buf_21247_fields size seq_buf 0 21247 NULL nohasharray
++rxq_depth_bnad_21247_fields rxq_depth bnad 0 21247 &size_seq_buf_21247_fields
++ufs_clear_frags_fndecl_21263_fields ufs_clear_frags fndecl 2 21263 NULL
++vc_resize_fndecl_21266_fields vc_resize fndecl 3-2 21266 NULL nohasharray
++num_fh_nfs4_filelayout_segment_21266_fields num_fh nfs4_filelayout_segment 0 21266 &vc_resize_fndecl_21266_fields
++elfcorebuf_sz_vardecl_vmcore_c_21270_fields elfcorebuf_sz vardecl_vmcore.c 0 21270 NULL
++gsi_top_vardecl_21275_fields gsi_top vardecl 0 21275 NULL
++skb_splice_bits_fndecl_21278_fields skb_splice_bits fndecl 0 21278 NULL nohasharray
++ulimit_ulp_iscsi_info_21278_fields ulimit ulp_iscsi_info 0 21278 &skb_splice_bits_fndecl_21278_fields
++hsync_len_fb_var_screeninfo_21279_fields hsync_len fb_var_screeninfo 0 21279 NULL
++height_simplefb_params_21280_fields height simplefb_params 0 21280 NULL nohasharray
++plen_nci_ctrl_hdr_21280_fields plen nci_ctrl_hdr 0 21280 &height_simplefb_params_21280_fields
++max_channels_atiixp_21295_fields max_channels atiixp 0 21295 NULL
++cmds_max_iscsi_session_21296_fields cmds_max iscsi_session 0 21296 NULL
++osd_yres_vardecl_ivtvfb_c_21299_fields osd_yres vardecl_ivtvfb.c 0 21299 NULL nohasharray
++count_nfsd3_readdirres_21299_fields count nfsd3_readdirres 0 21299 &osd_yres_vardecl_ivtvfb_c_21299_fields nohasharray
++efx_rx_deliver_fndecl_21299_fields efx_rx_deliver fndecl 4 21299 &count_nfsd3_readdirres_21299_fields
++wSamplesPerFrame_uac_format_type_ii_discrete_descriptor_21300_fields wSamplesPerFrame uac_format_type_ii_discrete_descriptor 0 21300 NULL
++nvdimm_major_vardecl_21302_fields nvdimm_major vardecl 0 21302 NULL
++xblk_next_xblk_qnx4_xblk_21303_fields xblk_next_xblk qnx4_xblk 0 21303 NULL
++tx_num_pg_ch_pm_21307_fields tx_num_pg ch_pm 0 21307 NULL
++num_paths_bna_rx_config_21315_fields num_paths bna_rx_config 0 21315 NULL
++fuse_copy_page_fndecl_21316_fields fuse_copy_page fndecl 4-3 21316 NULL
++tcp_fragment_fndecl_21318_fields tcp_fragment fndecl 3 21318 NULL
++packet_present_len_cfg80211_wowlan_wakeup_21321_fields packet_present_len cfg80211_wowlan_wakeup 0 21321 NULL
++mincore_unmapped_range_fndecl_21322_fields mincore_unmapped_range fndecl 1 21322 NULL
++UniformBlockSizeShift_qinfo_chip_21323_fields UniformBlockSizeShift qinfo_chip 0 21323 NULL
++cm_copy_private_data_fndecl_21330_fields cm_copy_private_data fndecl 2 21330 NULL
++word14_lpfc_mbx_read_config_21331_fields word14 lpfc_mbx_read_config 0 21331 NULL
++i915_compat_ioctl_fndecl_21339_fields i915_compat_ioctl fndecl 2 21339 NULL
++fl_dump_key_val_fndecl_21344_fields fl_dump_key_val fndecl 6 21344 NULL
++cur_aead_sg_list_21347_fields cur aead_sg_list 0 21347 NULL nohasharray
++snd_util_mem_alloc_fndecl_21347_fields snd_util_mem_alloc fndecl 2 21347 &cur_aead_sg_list_21347_fields
++h_blkno_ocfs2_extent_block_21357_fields h_blkno ocfs2_extent_block 0 21357 NULL nohasharray
++nfs_direct_wait_fndecl_21357_fields nfs_direct_wait fndecl 0 21357 &h_blkno_ocfs2_extent_block_21357_fields
++videobuf_pages_to_sg_fndecl_21359_fields videobuf_pages_to_sg fndecl 3-4-2 21359 NULL
++igbvf_change_mtu_fndecl_21361_fields igbvf_change_mtu fndecl 2 21361 NULL
++pad_ieee80211_vendor_radiotap_21376_fields pad ieee80211_vendor_radiotap 0 21376 NULL nohasharray
++len_idma64_hw_desc_21376_fields len idma64_hw_desc 0 21376 &pad_ieee80211_vendor_radiotap_21376_fields
++chunk_size_dm_exception_store_21381_fields chunk_size dm_exception_store 0 21381 NULL
++inppos_net_local_21383_fields inppos net_local 0 21383 NULL
++num_vfs_enic_21386_fields num_vfs enic 0 21386 NULL
++cids_per_vf_qed_conn_type_cfg_21393_fields cids_per_vf qed_conn_type_cfg 0 21393 NULL nohasharray
++vc_scan_lines_vc_data_21393_fields vc_scan_lines vc_data 0 21393 &cids_per_vf_qed_conn_type_cfg_21393_fields
++pg_count_agp_allocate32_21404_fields pg_count agp_allocate32 0 21404 NULL
++ext4_inode_blocks_set_fndecl_21407_fields ext4_inode_blocks_set fndecl 0 21407 NULL
++rx_desc_size_rtl8xxxu_fileops_21415_fields rx_desc_size rtl8xxxu_fileops 0 21415 NULL
++st33zp24_spi_send_fndecl_21416_fields st33zp24_spi_send fndecl 4 21416 NULL
++ex_length_extent_s_21417_fields ex_length extent_s 0 21417 NULL
++mtu_rxe_qp_21422_fields mtu rxe_qp 0 21422 NULL nohasharray
++ping_recvmsg_fndecl_21422_fields ping_recvmsg fndecl 3 21422 &mtu_rxe_qp_21422_fields
++managed_pages_zone_21425_fields managed_pages zone 0 21425 NULL nohasharray
++cp2112_i2c_write_req_fndecl_21425_fields cp2112_i2c_write_req fndecl 0-4 21425 &managed_pages_zone_21425_fields
++bounce_offs_xhci_segment_21437_fields bounce_offs xhci_segment 0 21437 NULL
++intbufferhandle_kaweth_device_21438_fields intbufferhandle kaweth_device 0 21438 NULL
++sctp_setsockopt_auth_key_fndecl_21442_fields sctp_setsockopt_auth_key fndecl 3 21442 NULL
++major_vardecl_pg_c_21451_fields major vardecl_pg.c 0 21451 NULL
++buffer_size_vardecl_event_buffer_c_21452_fields buffer_size vardecl_event_buffer.c 0 21452 NULL
++video_width_sis_video_info_21454_fields video_width sis_video_info 0 21454 NULL
++stripes_stripe_c_21457_fields stripes stripe_c 0 21457 NULL
++indirect2direct_fndecl_21459_fields indirect2direct fndecl 6 21459 NULL
++ezusb_access_ltv_fndecl_21485_fields ezusb_access_ltv fndecl 3 21485 NULL
++mmio_start_fb_fix_screeninfo_21486_fields mmio_start fb_fix_screeninfo 0 21486 NULL
++fuse_do_ioctl_fndecl_21491_fields fuse_do_ioctl fndecl 2 21491 NULL
++hpfs_ea_ext_remove_fndecl_21492_fields hpfs_ea_ext_remove fndecl 4-2 21492 NULL
++memsize_vgastate_21493_fields memsize vgastate 0 21493 NULL nohasharray
++num_iac_hci_cp_write_current_iac_lap_21493_fields num_iac hci_cp_write_current_iac_lap 0 21493 &memsize_vgastate_21493_fields
++video_pbase_vivid_dev_21503_fields video_pbase vivid_dev 0 21503 NULL
++vmw_cmdbuf_set_pool_size_fndecl_21513_fields vmw_cmdbuf_set_pool_size fndecl 2 21513 NULL
++max_io_support_mvumi_hs_page1_21519_fields max_io_support mvumi_hs_page1 0 21519 NULL
++fifo_size_hscx_hw_21522_fields fifo_size hscx_hw 0 21522 NULL nohasharray
++c67x00_urb_dequeue_fndecl_21522_fields c67x00_urb_dequeue fndecl 3 21522 &fifo_size_hscx_hw_21522_fields
++data_offset_mdp_superblock_1_21524_fields data_offset mdp_superblock_1 0 21524 NULL
++xennet_max_queues_vardecl_xen_netfront_c_21530_fields xennet_max_queues vardecl_xen-netfront.c 0 21530 NULL
++ooblen_mtd_oob_ops_21531_fields ooblen mtd_oob_ops 0 21531 NULL
++hfsplus_find_init_fndecl_21533_fields hfsplus_find_init fndecl 0 21533 NULL nohasharray
++nr_bos_drm_msm_gem_submit_21533_fields nr_bos drm_msm_gem_submit 0 21533 &hfsplus_find_init_fndecl_21533_fields
++zr364xx_read_fndecl_21537_fields zr364xx_read fndecl 3 21537 NULL
++pcm_snd_oxfw_stream_formation_21546_fields pcm snd_oxfw_stream_formation 0 21546 NULL
++ql_get_full_dup_fndecl_21549_fields ql_get_full_dup fndecl 0 21549 NULL
++nSkipped_vardecl_gl860_c_21557_fields nSkipped vardecl_gl860.c 0 21557 NULL
++__erst_read_to_erange_fndecl_21558_fields __erst_read_to_erange fndecl 1 21558 NULL
++sl_max_ip6_sf_socklist_21563_fields sl_max ip6_sf_socklist 0 21563 NULL
++log_sq_stride_mlx4_ib_create_qp_21564_fields log_sq_stride mlx4_ib_create_qp 0 21564 NULL
++total_len_ieee802_11_elems_21565_fields total_len ieee802_11_elems 0 21565 NULL
++rtl_port_map_fndecl_21570_fields rtl_port_map fndecl 2-1 21570 NULL
++start_resource_21572_fields start resource 0 21572 NULL nohasharray
++cont_extent_rock_state_21572_fields cont_extent rock_state 0 21572 &start_resource_21572_fields
++buf_len_wmi_mgmt_rx_hdr_v1_21592_fields buf_len wmi_mgmt_rx_hdr_v1 0 21592 NULL
++data_length_ceph_msg_21593_fields data_length ceph_msg 0 21593 NULL nohasharray
++device_count_vardecl_portman2x4_c_21593_fields device_count vardecl_portman2x4.c 0 21593 &data_length_ceph_msg_21593_fields
++myri10ge_initial_mtu_vardecl_myri10ge_c_21595_fields myri10ge_initial_mtu vardecl_myri10ge.c 0 21595 NULL nohasharray
++virtnet_set_queues_fndecl_21595_fields virtnet_set_queues fndecl 2 21595 &myri10ge_initial_mtu_vardecl_myri10ge_c_21595_fields
++xcl_max_payload_svc_xprt_class_21596_fields xcl_max_payload svc_xprt_class 0 21596 NULL
++st_kim_recv_fndecl_21600_fields st_kim_recv fndecl 3 21600 NULL
++irq_dma_cm109_dev_21602_fields irq_dma cm109_dev 0 21602 NULL nohasharray
++do_otp_write_fndecl_21602_fields do_otp_write fndecl 2 21602 &irq_dma_cm109_dev_21602_fields
++roccat_common2_send_fndecl_21605_fields roccat_common2_send fndecl 4 21605 NULL
++hfcpci_empty_fifo_fndecl_21608_fields hfcpci_empty_fifo fndecl 4 21608 NULL nohasharray
++p54spi_spi_write_dma_fndecl_21608_fields p54spi_spi_write_dma fndecl 4 21608 &hfcpci_empty_fifo_fndecl_21608_fields nohasharray
++snd_seq_pool_new_fndecl_21608_fields snd_seq_pool_new fndecl 1 21608 &p54spi_spi_write_dma_fndecl_21608_fields
++cw1200_spi_memcpy_toio_fndecl_21615_fields cw1200_spi_memcpy_toio fndecl 4 21615 NULL nohasharray
++alloc_irq_from_domain_fndecl_21615_fields alloc_irq_from_domain fndecl 3 21615 &cw1200_spi_memcpy_toio_fndecl_21615_fields
++sysctl_tcp_reordering_netns_ipv4_21617_fields sysctl_tcp_reordering netns_ipv4 0 21617 NULL
++size_meye_grab_buffer_21622_fields size meye_grab_buffer 0 21622 NULL
++num_snaps_ceph_snap_realm_21623_fields num_snaps ceph_snap_realm 0 21623 NULL
++sector_r1bio_21627_fields sector r1bio 0 21627 NULL
++__lbtf_cmd_fndecl_21631_fields __lbtf_cmd fndecl 4 21631 NULL
++ath6kl_usb_bmi_write_fndecl_21637_fields ath6kl_usb_bmi_write fndecl 3 21637 NULL
++hlength_iscsi_hdr_21640_fields hlength iscsi_hdr 0 21640 NULL
++elf_kcore_store_hdr_fndecl_21642_fields elf_kcore_store_hdr fndecl 2-3 21642 NULL
++ra_meta_pages_cond_fndecl_21647_fields ra_meta_pages_cond fndecl 2 21647 NULL
++nvram_npiv_size_qla_hw_data_21652_fields nvram_npiv_size qla_hw_data 0 21652 NULL nohasharray
++ioremap_nocache_fndecl_21652_fields ioremap_nocache fndecl 2-1 21652 &nvram_npiv_size_qla_hw_data_21652_fields
++cxd2841er_write_regs_fndecl_21655_fields cxd2841er_write_regs fndecl 5 21655 NULL
++tps6507x_i2c_read_device_fndecl_21660_fields tps6507x_i2c_read_device fndecl 3 21660 NULL
++overlay_cap_left_vivid_dev_21663_fields overlay_cap_left vivid_dev 0 21663 NULL
++update_pmkid_fndecl_21666_fields update_pmkid fndecl 4 21666 NULL
++length_ccp_dma_info_21671_fields length ccp_dma_info 0 21671 NULL
++ext4_dio_get_block_overwrite_fndecl_21684_fields ext4_dio_get_block_overwrite fndecl 2 21684 NULL
++in_min_chans_snd_card_asihpi_21686_fields in_min_chans snd_card_asihpi 0 21686 NULL
++mfw_mb_length_qed_mcp_info_21688_fields mfw_mb_length qed_mcp_info 0 21688 NULL
++fc_fcp_send_data_fndecl_21692_fields fc_fcp_send_data fndecl 4-3 21692 NULL nohasharray
++__ieee80211_get_mesh_hdrlen_fndecl_21692_fields __ieee80211_get_mesh_hdrlen fndecl 0 21692 &fc_fcp_send_data_fndecl_21692_fields
++resync_max_sectors_mddev_21693_fields resync_max_sectors mddev 0 21693 NULL
++max_pkt_size_pktgen_dev_21696_fields max_pkt_size pktgen_dev 0 21696 NULL
++dm_write_fndecl_21698_fields dm_write fndecl 3 21698 NULL
++amdgpu_irq_create_mapping_fndecl_21701_fields amdgpu_irq_create_mapping fndecl 0 21701 NULL
++ext4_get_inode_loc_fndecl_21703_fields ext4_get_inode_loc fndecl 0 21703 NULL
++pread_dvb_ringbuffer_21708_fields pread dvb_ringbuffer 0 21708 NULL nohasharray
++nfsacl_encode_fndecl_21708_fields nfsacl_encode fndecl 2-0 21708 &pread_dvb_ringbuffer_21708_fields
++get_rndis_request_fndecl_21709_fields get_rndis_request fndecl 3 21709 NULL
++residual_fcpio_icmnd_cmpl_21718_fields residual fcpio_icmnd_cmpl 0 21718 NULL
++set_blocksize_fndecl_21720_fields set_blocksize fndecl 2 21720 NULL
++len_nfs4_label_21722_fields len nfs4_label 0 21722 NULL
++buff_size_host_cmd_ds_txbuf_cfg_21725_fields buff_size host_cmd_ds_txbuf_cfg 0 21725 NULL
++hpfs_set_ea_fndecl_21731_fields hpfs_set_ea fndecl 5 21731 NULL
++groups_netlink_kernel_cfg_21741_fields groups netlink_kernel_cfg 0 21741 NULL
++blk_rq_map_integrity_sg_fndecl_21744_fields blk_rq_map_integrity_sg fndecl 0 21744 NULL
++smk_write_syslog_fndecl_21746_fields smk_write_syslog fndecl 3 21746 NULL
++skb_ts_get_next_block_fndecl_21748_fields skb_ts_get_next_block fndecl 1 21748 NULL
++intel_tile_size_fndecl_21749_fields intel_tile_size fndecl 0 21749 NULL
++__ceph_setxattr_fndecl_21751_fields __ceph_setxattr fndecl 4 21751 NULL
++id_gpio_device_21753_fields id gpio_device 0 21753 NULL
++bufsiz_mousedev_client_21759_fields bufsiz mousedev_client 0 21759 NULL
++width_tm6000_fh_21761_fields width tm6000_fh 0 21761 NULL
++req_lim_delta_srp_login_rsp_21762_fields req_lim_delta srp_login_rsp 0 21762 NULL
++next_checkpoint_r5l_log_21765_fields next_checkpoint r5l_log 0 21765 NULL
++br_startblock_xfs_bmbt_irec_21769_fields br_startblock xfs_bmbt_irec 0 21769 NULL
++regmap_get_val_bytes_fndecl_21774_fields regmap_get_val_bytes fndecl 0 21774 NULL
++byte_len_spi_eeprom_21786_fields byte_len spi_eeprom 0 21786 NULL
++tpg_alloc_fndecl_21789_fields tpg_alloc fndecl 2 21789 NULL
++find_group_dir_fndecl_21790_fields find_group_dir fndecl 0 21790 NULL
++idetape_chrdev_read_fndecl_21794_fields idetape_chrdev_read fndecl 3 21794 NULL
++reg_stride_regmap_21801_fields reg_stride regmap 0 21801 NULL
++num_vss_hpf_cfgs_wm8994_pdata_21802_fields num_vss_hpf_cfgs wm8994_pdata 0 21802 NULL
++__svc_create_fndecl_21804_fields __svc_create fndecl 2 21804 NULL
++hwi_ws_sz_hba_parameters_21815_fields hwi_ws_sz hba_parameters 0 21815 NULL
++numacb_vardecl_21828_fields numacb vardecl 0 21828 NULL
++snd_pcm_plug_slave_format_fndecl_21831_fields snd_pcm_plug_slave_format fndecl 0-1 21831 NULL
++nfs4_copy_file_range_fndecl_21835_fields nfs4_copy_file_range fndecl 4 21835 NULL
++firm_cfg_version_AdapterControlBlock_21836_fields firm_cfg_version AdapterControlBlock 0 21836 NULL
++n_descsz_elf32_note_21838_fields n_descsz elf32_note 0 21838 NULL nohasharray
++device_create_vargs_fndecl_21838_fields device_create_vargs fndecl 3 21838 &n_descsz_elf32_note_21838_fields
++__find_xattr_fndecl_21846_fields __find_xattr fndecl 6 21846 NULL
++length_acpi_table_desc_21847_fields length acpi_table_desc 0 21847 NULL
++sge_control2_sge_params_21854_fields sge_control2 sge_params 0 21854 NULL
++update_hidden_ssid_fndecl_21871_fields update_hidden_ssid fndecl 0 21871 NULL
++sizeimage_vim2m_q_data_21875_fields sizeimage vim2m_q_data 0 21875 NULL nohasharray
++ext4_zero_partial_blocks_fndecl_21875_fields ext4_zero_partial_blocks fndecl 3-4 21875 &sizeimage_vim2m_q_data_21875_fields
++ad_sd_read_reg_fndecl_21876_fields ad_sd_read_reg fndecl 3 21876 NULL
++__copy_to_user_ll_fndecl_21886_fields __copy_to_user_ll fndecl 0 21886 NULL nohasharray
++_drbd_send_page_fndecl_21886_fields _drbd_send_page fndecl 4 21886 &__copy_to_user_ll_fndecl_21886_fields
++npwm_pwm_chip_21895_fields npwm pwm_chip 0 21895 NULL
++fat_get_block_fndecl_21902_fields fat_get_block fndecl 2 21902 NULL
++nodesize_btrfs_super_block_21912_fields nodesize btrfs_super_block 0 21912 NULL
++ieee80211_build_preq_ies_fndecl_21915_fields ieee80211_build_preq_ies fndecl 0-6 21915 NULL
++sym_compute_residual_fndecl_21916_fields sym_compute_residual fndecl 0 21916 NULL
++error_bio_and_error_21918_fields error bio_and_error 0 21918 NULL
++addr_width_snd_dmaengine_dai_dma_data_21920_fields addr_width snd_dmaengine_dai_dma_data 0 21920 NULL
++membase_pm8001_hba_memspace_21924_fields membase pm8001_hba_memspace 0 21924 NULL
++ath6kl_sdio_bmi_read_fndecl_21930_fields ath6kl_sdio_bmi_read fndecl 3 21930 NULL
++rx_eth_fndecl_21931_fields rx_eth fndecl 4 21931 NULL
++page_cache_async_readahead_fndecl_21944_fields page_cache_async_readahead fndecl 5 21944 NULL
++in_pipe_ttusb_dec_21947_fields in_pipe ttusb_dec 0 21947 NULL
++kvm_hv_set_msr_fndecl_21951_fields kvm_hv_set_msr fndecl 3 21951 NULL
++nrprocs_rpc_version_21954_fields nrprocs rpc_version 0 21954 NULL
++sel_write_avc_cache_threshold_fndecl_21955_fields sel_write_avc_cache_threshold fndecl 3 21955 NULL
++length_iscsi_datain_21959_fields length iscsi_datain 0 21959 NULL
++ocfs2_find_refcount_rec_in_rl_fndecl_21962_fields ocfs2_find_refcount_rec_in_rl fndecl 3-4 21962 NULL
++num_desc_qlcnic_host_rds_ring_21963_fields num_desc qlcnic_host_rds_ring 0 21963 NULL
++reg_page_map_set_fndecl_21967_fields reg_page_map_set fndecl 0 21967 NULL
++ms_os_descs_ext_prop_count_ffs_data_21971_fields ms_os_descs_ext_prop_count ffs_data 0 21971 NULL nohasharray
++vram_size_ast_private_21971_fields vram_size ast_private 0 21971 &ms_os_descs_ext_prop_count_ffs_data_21971_fields nohasharray
++dblock_gfs2_journal_extent_21971_fields dblock gfs2_journal_extent 0 21971 &vram_size_ast_private_21971_fields
++bulk_out_size_usb_cardstate_21974_fields bulk_out_size usb_cardstate 0 21974 NULL
++max_data_sg_nents_target_core_fabric_ops_21975_fields max_data_sg_nents target_core_fabric_ops 0 21975 NULL nohasharray
++fat_start_msdos_sb_info_21975_fields fat_start msdos_sb_info 0 21975 &max_data_sg_nents_target_core_fabric_ops_21975_fields
++donor_start_move_extent_21977_fields donor_start move_extent 0 21977 NULL nohasharray
++nxt200x_writebytes_fndecl_21977_fields nxt200x_writebytes fndecl 4 21977 &donor_start_move_extent_21977_fields
++cfg1_base_pcie_port_21978_fields cfg1_base pcie_port 0 21978 NULL
++calc_fat_clusters_fndecl_21982_fields calc_fat_clusters fndecl 0 21982 NULL
++split_nodes_interleave_fndecl_21988_fields split_nodes_interleave fndecl 3-5-4 21988 NULL
++skb_rx_extra_cxgbi_device_21990_fields skb_rx_extra cxgbi_device 0 21990 NULL
++sr_read_cmd_fndecl_21992_fields sr_read_cmd fndecl 5 21992 NULL
++sec_per_clus_msdos_sb_info_21995_fields sec_per_clus msdos_sb_info 0 21995 NULL
++ath6kl_wmi_bssinfo_event_rx_fndecl_22000_fields ath6kl_wmi_bssinfo_event_rx fndecl 3 22000 NULL
++ath6kl_wmi_set_tx_pwr_cmd_fndecl_22001_fields ath6kl_wmi_set_tx_pwr_cmd fndecl 2 22001 NULL
++length_ib_sge_22002_fields length ib_sge 0 22002 NULL
++vmx_create_vcpu_fndecl_22003_fields vmx_create_vcpu fndecl 2 22003 NULL
++video_v_stop_saa7134_tvnorm_22005_fields video_v_stop saa7134_tvnorm 0 22005 NULL
++itd1000_write_regs_fndecl_22013_fields itd1000_write_regs fndecl 4 22013 NULL
++atio_q_length_qlt_hw_data_22018_fields atio_q_length qlt_hw_data 0 22018 NULL
++cal_data_len_ath10k_hw_params_22021_fields cal_data_len ath10k_hw_params 0 22021 NULL nohasharray
++buffer_size_nm256_22021_fields buffer_size nm256 0 22021 &cal_data_len_ath10k_hw_params_22021_fields
++GlobalCredits__MSG_IOC_FACTS_REPLY_22031_fields GlobalCredits _MSG_IOC_FACTS_REPLY 0 22031 NULL
++nv50_dmac_create_fndecl_22035_fields nv50_dmac_create fndecl 6 22035 NULL
++vmw_du_crtc_cursor_set2_fndecl_22036_fields vmw_du_crtc_cursor_set2 fndecl 5-4 22036 NULL
++dm_exception_store_set_chunk_size_fndecl_22042_fields dm_exception_store_set_chunk_size fndecl 2 22042 NULL
++mmc_queue_map_sg_fndecl_22053_fields mmc_queue_map_sg fndecl 0 22053 NULL
++held_root_thin_disk_superblock_22055_fields held_root thin_disk_superblock 0 22055 NULL
++zl10039_read_fndecl_22056_fields zl10039_read fndecl 4 22056 NULL
++w_input_res_22061_fields w input_res 0 22061 NULL
++param_sata_completion_resp_22065_fields param sata_completion_resp 0 22065 NULL
++i2c_wr_max_tda18218_config_22066_fields i2c_wr_max tda18218_config 0 22066 NULL nohasharray
++l2t_start_adapter_22066_fields l2t_start adapter 0 22066 &i2c_wr_max_tda18218_config_22066_fields
++rom_base_qxl_device_22067_fields rom_base qxl_device 0 22067 NULL
++ufs_free_fragments_fndecl_22074_fields ufs_free_fragments fndecl 2 22074 NULL
++iuu_uart_write_fndecl_22079_fields iuu_uart_write fndecl 4 22079 NULL
++absent_pages_in_range_fndecl_22083_fields absent_pages_in_range fndecl 0-1-2 22083 NULL nohasharray
++rx_ring_size_mlx4_en_port_profile_22083_fields rx_ring_size mlx4_en_port_profile 0 22083 &absent_pages_in_range_fndecl_22083_fields
++fib_nhs_fib_info_22091_fields fib_nhs fib_info 0 22091 NULL nohasharray
++err_mlxsw_reg_trans_22091_fields err mlxsw_reg_trans 0 22091 &fib_nhs_fib_info_22091_fields
++horus3a_write_regs_fndecl_22092_fields horus3a_write_regs fndecl 4 22092 NULL
++size_drm_i915_gem_pread_22096_fields size drm_i915_gem_pread 0 22096 NULL nohasharray
++frame_seq_number_osst_tape_22096_fields frame_seq_number osst_tape 0 22096 &size_drm_i915_gem_pread_22096_fields
++osd_req_op_extent_update_fndecl_22097_fields osd_req_op_extent_update fndecl 3 22097 NULL
++allocsz_cfv_info_22104_fields allocsz cfv_info 0 22104 NULL
++offset_vmcore_22117_fields offset vmcore 0 22117 NULL nohasharray
++size_perf_output_handle_22117_fields size perf_output_handle 0 22117 &offset_vmcore_22117_fields
++xfs_da_get_buf_fndecl_22120_fields xfs_da_get_buf fndecl 3 22120 NULL
++qgroup_reserve_fndecl_22126_fields qgroup_reserve fndecl 0 22126 NULL
++small_ttm_pool_opts_22131_fields small ttm_pool_opts 0 22131 NULL nohasharray
++ore_check_io_fndecl_22131_fields ore_check_io fndecl 0 22131 &small_ttm_pool_opts_22131_fields
++sys_copy_file_range_fndecl_22132_fields sys_copy_file_range fndecl 5 22132 NULL
++numa_add_memblk_fndecl_22136_fields numa_add_memblk fndecl 2-3 22136 NULL
++lo_rw_aio_fndecl_22138_fields lo_rw_aio fndecl 3 22138 NULL
++dm_tm_shadow_block_fndecl_22139_fields dm_tm_shadow_block fndecl 2 22139 NULL
++num_phys_eqs_mlx4_phys_caps_22142_fields num_phys_eqs mlx4_phys_caps 0 22142 NULL
++radeon_benchmark_move_fndecl_22144_fields radeon_benchmark_move fndecl 2 22144 NULL
++svc_rdma_xdr_encode_error_fndecl_22146_fields svc_rdma_xdr_encode_error fndecl 0 22146 NULL nohasharray
++regmap_encx24j600_spi_write_fndecl_22146_fields regmap_encx24j600_spi_write fndecl 4 22146 &svc_rdma_xdr_encode_error_fndecl_22146_fields
++max_cos_bnx2x_22147_fields max_cos bnx2x 0 22147 NULL
++cmd_pipe_uas_dev_info_22148_fields cmd_pipe uas_dev_info 0 22148 NULL
++seg_size_ib_mad_send_buf_22149_fields seg_size ib_mad_send_buf 0 22149 NULL
++ppp_cp_event_fndecl_22150_fields ppp_cp_event fndecl 6 22150 NULL
++rxq_entries_efx_nic_22154_fields rxq_entries efx_nic 0 22154 NULL
++collect_rx_frame_fndecl_22155_fields collect_rx_frame fndecl 3 22155 NULL
++i40iw_alloc_mr_fndecl_22161_fields i40iw_alloc_mr fndecl 3 22161 NULL
++rs_datalen_ath5k_rx_status_22164_fields rs_datalen ath5k_rx_status 0 22164 NULL
++tm6000_i2c_recv_regs16_fndecl_22166_fields tm6000_i2c_recv_regs16 fndecl 5 22166 NULL
++set_fast_connectable_fndecl_22171_fields set_fast_connectable fndecl 4 22171 NULL
++name_len_ceph_inode_xattr_22177_fields name_len ceph_inode_xattr 0 22177 NULL
++rts51x_bulk_transport_special_fndecl_22181_fields rts51x_bulk_transport_special fndecl 6 22181 NULL
++ieee80211_parse_bitrates_fndecl_22187_fields ieee80211_parse_bitrates fndecl 0 22187 NULL
++affs_alloc_block_fndecl_22192_fields affs_alloc_block fndecl 0-2 22192 NULL
++sector_packet_data_22197_fields sector packet_data 0 22197 NULL
++length_ntlmssp2_name_22211_fields length ntlmssp2_name 0 22211 NULL
++req_len_brcmf_cfg80211_assoc_ielen_le_22213_fields req_len brcmf_cfg80211_assoc_ielen_le 0 22213 NULL
++s_len_rvt_qp_22217_fields s_len rvt_qp 0 22217 NULL
++ram_size_async_extent_22219_fields ram_size async_extent 0 22219 NULL nohasharray
++hlen_cxgbit_lro_pdu_cb_22219_fields hlen cxgbit_lro_pdu_cb 0 22219 &ram_size_async_extent_22219_fields
++s_dirsize_minix_sb_info_22225_fields s_dirsize minix_sb_info 0 22225 NULL
++num_areas_prism2_download_param_22233_fields num_areas prism2_download_param 0 22233 NULL
++num_vlan_batadv_tvlv_tt_data_22234_fields num_vlan batadv_tvlv_tt_data 0 22234 NULL
++max_fingers_pixcir_i2c_ts_data_22237_fields max_fingers pixcir_i2c_ts_data 0 22237 NULL
++num_udav_mthca_profile_22243_fields num_udav mthca_profile 0 22243 NULL
++ieee80211_check_pending_bar_fndecl_22244_fields ieee80211_check_pending_bar fndecl 3 22244 NULL
++rf_suballoc_loc_ocfs2_refcount_block_22248_fields rf_suballoc_loc ocfs2_refcount_block 0 22248 NULL
++hfsplus_asc2uni_fndecl_22252_fields hfsplus_asc2uni fndecl 0 22252 NULL
++bbio_error_fndecl_22264_fields bbio_error fndecl 3 22264 NULL
++usCRTC_V_Total__ATOM_MODE_TIMING_22265_fields usCRTC_V_Total _ATOM_MODE_TIMING 0 22265 NULL
++mangle_contents_fndecl_22272_fields mangle_contents fndecl 4-6 22272 NULL
++gtt_total_entries__intel_private_22281_fields gtt_total_entries _intel_private 0 22281 NULL nohasharray
++reord_tcp_sacktag_state_22281_fields reord tcp_sacktag_state 0 22281 &gtt_total_entries__intel_private_22281_fields
++scif_get_phys_fndecl_22295_fields scif_get_phys fndecl 0-1 22295 NULL
++gfs2_listxattr_fndecl_22298_fields gfs2_listxattr fndecl 3 22298 NULL
++s_psn_rvt_qp_22305_fields s_psn rvt_qp 0 22305 NULL
++read_head_n_tty_data_22317_fields read_head n_tty_data 0 22317 NULL nohasharray
++index_start_nozomi_22317_fields index_start nozomi 0 22317 &read_head_n_tty_data_22317_fields
++swiotlb_late_init_with_default_size_fndecl_22319_fields swiotlb_late_init_with_default_size fndecl 1 22319 NULL
++be_fill_queue_fndecl_22320_fields be_fill_queue fndecl 2 22320 NULL
++vc_size_row_vc_data_22325_fields vc_size_row vc_data 0 22325 NULL
++user_data_len_uioc_22327_fields user_data_len uioc 0 22327 NULL
++atmel_change_mtu_fndecl_22328_fields atmel_change_mtu fndecl 2 22328 NULL
++limit_sfq_sched_data_22334_fields limit sfq_sched_data 0 22334 NULL
++verity_hash_final_fndecl_22340_fields verity_hash_final fndecl 0 22340 NULL
++mtu_tipc_link_22341_fields mtu tipc_link 0 22341 NULL
++svc_recvfrom_fndecl_22345_fields svc_recvfrom fndecl 0-4-3 22345 NULL
++drv_info_size_mwifiex_adapter_22352_fields drv_info_size mwifiex_adapter 0 22352 NULL
++tlv_put_string_fndecl_22356_fields tlv_put_string fndecl 4 22356 NULL
++genwqe_alloc_sync_sgl_fndecl_22358_fields genwqe_alloc_sync_sgl fndecl 4 22358 NULL
++buf_size_mlx5_ib_rwq_22365_fields buf_size mlx5_ib_rwq 0 22365 NULL nohasharray
++___pskb_trim_fndecl_22365_fields ___pskb_trim fndecl 2 22365 &buf_size_mlx5_ib_rwq_22365_fields
++kvm_gfn_to_hva_cache_init_fndecl_22367_fields kvm_gfn_to_hva_cache_init fndecl 3 22367 NULL
++digi_write_fndecl_22372_fields digi_write fndecl 4 22372 NULL
++nr_luns_rrpc_22379_fields nr_luns rrpc 0 22379 NULL
++exposure_step_sd_22386_fields exposure_step sd 0 22386 NULL
++phys_lcr_base_mgsl_struct_22391_fields phys_lcr_base mgsl_struct 0 22391 NULL
++m25p80_write_fndecl_22392_fields m25p80_write fndecl 3 22392 NULL
++clipt_end_adapter_22397_fields clipt_end adapter 0 22397 NULL
++ext_tree_mark_written_fndecl_22398_fields ext_tree_mark_written fndecl 2-3 22398 NULL
++rawsock_sendmsg_fndecl_22401_fields rawsock_sendmsg fndecl 3 22401 NULL
++udf_setsize_fndecl_22402_fields udf_setsize fndecl 2 22402 NULL
++use_inline_bio_fndecl_22408_fields use_inline_bio fndecl 3 22408 NULL
++len_usbdevfs_bulktransfer_22411_fields len usbdevfs_bulktransfer 0 22411 NULL nohasharray
++do_truncate_fndecl_22411_fields do_truncate fndecl 2 22411 &len_usbdevfs_bulktransfer_22411_fields nohasharray
++twl4030_init_sih_modules_fndecl_22411_fields twl4030_init_sih_modules fndecl 0 22411 &do_truncate_fndecl_22411_fields
++max_ccb_vardecl_hpilo_c_22414_fields max_ccb vardecl_hpilo.c 0 22414 NULL
++oti6858_write_fndecl_22423_fields oti6858_write fndecl 4 22423 NULL
++bbRcvSizeMsb_csp_22425_fields bbRcvSizeMsb csp 0 22425 NULL
++add_size_pci_dev_resource_22434_fields add_size pci_dev_resource 0 22434 NULL
++vxlan_build_skb_fndecl_22447_fields vxlan_build_skb fndecl 3 22447 NULL
++frame_len_ksz_desc_rx_stat_22454_fields frame_len ksz_desc_rx_stat 0 22454 NULL
++ntfs_attr_vcn_to_lcn_nolock_fndecl_22455_fields ntfs_attr_vcn_to_lcn_nolock fndecl 2 22455 NULL
++oid_printf_vargs_fndecl_22457_fields oid_printf_vargs fndecl 0 22457 NULL nohasharray
++llc_ui_recvmsg_fndecl_22457_fields llc_ui_recvmsg fndecl 3 22457 &oid_printf_vargs_fndecl_22457_fields
++mon_bin_ioctl_fndecl_22464_fields mon_bin_ioctl fndecl 3 22464 NULL nohasharray
++ceph_zero_pagecache_range_fndecl_22464_fields ceph_zero_pagecache_range fndecl 3-2 22464 &mon_bin_ioctl_fndecl_22464_fields
++s35390a_set_reg_fndecl_22468_fields s35390a_set_reg fndecl 4 22468 NULL
++vmbus_sendpacket_fndecl_22469_fields vmbus_sendpacket fndecl 3 22469 NULL
++s_data_blksize_affs_sb_info_22478_fields s_data_blksize affs_sb_info 0 22478 NULL
++vram_size_aty128fb_par_22489_fields vram_size aty128fb_par 0 22489 NULL nohasharray
++hid_report_raw_event_fndecl_22489_fields hid_report_raw_event fndecl 4 22489 &vram_size_aty128fb_par_22489_fields
++find_group_other_fndecl_22490_fields find_group_other fndecl 0 22490 NULL
++offset_rbd_img_request_22494_fields offset rbd_img_request 0 22494 NULL
++tx_hr_cfv_info_22495_fields tx_hr cfv_info 0 22495 NULL
++size_drm_virtgpu_execbuffer_22498_fields size drm_virtgpu_execbuffer 0 22498 NULL
++hiface_pcm_init_urb_fndecl_22500_fields hiface_pcm_init_urb fndecl 3 22500 NULL
++irq_bcma_device_22505_fields irq bcma_device 0 22505 NULL
++ctx_len_xfrm_sec_ctx_22511_fields ctx_len xfrm_sec_ctx 0 22511 NULL
++total_cnt_i40iw_pble_alloc_22514_fields total_cnt i40iw_pble_alloc 0 22514 NULL nohasharray
++h_mode_size_22514_fields h mode_size 0 22514 &total_cnt_i40iw_pble_alloc_22514_fields
++ls_lvblen_dlm_ls_22525_fields ls_lvblen dlm_ls 0 22525 NULL
++ocfs2_bg_discontig_add_extent_fndecl_22531_fields ocfs2_bg_discontig_add_extent fndecl 4 22531 NULL
++pci_iomap_wc_range_fndecl_22536_fields pci_iomap_wc_range fndecl 4-3 22536 NULL
++eq_cnt_ocrdma_dev_22537_fields eq_cnt ocrdma_dev 0 22537 NULL
++last_checkpoint_r5l_log_22540_fields last_checkpoint r5l_log 0 22540 NULL
++submit_queue_fndecl_22542_fields submit_queue fndecl 5 22542 NULL
++clsb_isar_reg_22551_fields clsb isar_reg 0 22551 NULL
++sadb_x_ctx_len_sadb_x_sec_ctx_22553_fields sadb_x_ctx_len sadb_x_sec_ctx 0 22553 NULL
++w9968cf_i2c_r_fndecl_22560_fields w9968cf_i2c_r fndecl 0 22560 NULL
++max_xor_dma_device_22564_fields max_xor dma_device 0 22564 NULL
++carl9170_rx_stream_fndecl_22565_fields carl9170_rx_stream fndecl 3 22565 NULL
++fsync_file_operations_22566_fields fsync file_operations 0 22566 NULL
++burst_fsl_edma_slave_config_22570_fields burst fsl_edma_slave_config 0 22570 NULL
++id_rfcomm_dev_22580_fields id rfcomm_dev 0 22580 NULL
++qlcnic_pci_sriov_configure_fndecl_22588_fields qlcnic_pci_sriov_configure fndecl 2 22588 NULL nohasharray
++rx_queue_size_pxa168_eth_platform_data_22588_fields rx_queue_size pxa168_eth_platform_data 0 22588 &qlcnic_pci_sriov_configure_fndecl_22588_fields
++scif_rb_get_next_fndecl_22601_fields scif_rb_get_next fndecl 3 22601 NULL
++tx_data_max_size_sst_generic_ipc_22604_fields tx_data_max_size sst_generic_ipc 0 22604 NULL
++maxauthsize_aead_alg_22608_fields maxauthsize aead_alg 0 22608 NULL nohasharray
++btrfs_submit_compressed_write_fndecl_22608_fields btrfs_submit_compressed_write fndecl 4 22608 &maxauthsize_aead_alg_22608_fields
++count_mspro_attribute_22612_fields count mspro_attribute 0 22612 NULL
++len_aironet_ioctl_22615_fields len aironet_ioctl 0 22615 NULL
++ir_startino_xfs_inobt_rec_incore_22616_fields ir_startino xfs_inobt_rec_incore 0 22616 NULL
++mem_hole_size_fndecl_22619_fields mem_hole_size fndecl 0-1-2 22619 NULL
++curr_block_migrate_struct_22621_fields curr_block migrate_struct 0 22621 NULL
++length_obj_key_22626_fields length obj_key 0 22626 NULL
++n_compat_sel_arg_struct_22628_fields n compat_sel_arg_struct 0 22628 NULL
++hci_si_event_fndecl_22639_fields hci_si_event fndecl 3 22639 NULL
++scif_vwriteto_fndecl_22640_fields scif_vwriteto fndecl 4-3 22640 NULL
++num_rcv_bufs_visornic_devdata_22643_fields num_rcv_bufs visornic_devdata 0 22643 NULL
++queue_size_snd_timer_params_22646_fields queue_size snd_timer_params 0 22646 NULL
++do_msgsnd_fndecl_22648_fields do_msgsnd fndecl 4 22648 NULL
++isight_decode_fndecl_22650_fields isight_decode fndecl 4 22650 NULL
++sample_rate_usb_stream_config_22662_fields sample_rate usb_stream_config 0 22662 NULL
++sw_start_stm_data_22665_fields sw_start stm_data 0 22665 NULL
++pointer_kmemleak_object_22670_fields pointer kmemleak_object 0 22670 NULL
++ieee80211_mesh_rx_bcn_presp_fndecl_22678_fields ieee80211_mesh_rx_bcn_presp fndecl 4 22678 NULL
++fbcon_redraw_softback_fndecl_22679_fields fbcon_redraw_softback fndecl 3 22679 NULL
++vlan_tag_bnx2x_agg_info_22683_fields vlan_tag bnx2x_agg_info 0 22683 NULL
++irq_pipe_ttusb_dec_22685_fields irq_pipe ttusb_dec 0 22685 NULL
++sctp_sf_abort_violation_fndecl_22687_fields sctp_sf_abort_violation fndecl 7 22687 NULL
++vidioc_s_input_fndecl_22689_fields vidioc_s_input fndecl 3 22689 NULL
++qca_recv_fndecl_22690_fields qca_recv fndecl 3 22690 NULL
++ctl_dma_yealink_dev_22696_fields ctl_dma yealink_dev 0 22696 NULL
++len_vring_desc_22700_fields len vring_desc 0 22700 NULL
++alloc_vudc_device_fndecl_22709_fields alloc_vudc_device fndecl 1 22709 NULL
++brcmf_sdio_read_control_fndecl_22712_fields brcmf_sdio_read_control fndecl 3 22712 NULL
++scif_rb_write_fndecl_22718_fields scif_rb_write fndecl 3 22718 NULL
++tail_inbuf_t_22719_fields tail inbuf_t 0 22719 NULL nohasharray
++fc_trace_max_entries_vardecl_fnic_trace_c_22719_fields fc_trace_max_entries vardecl_fnic_trace.c 0 22719 &tail_inbuf_t_22719_fields
++SMB2_ioctl_fndecl_22721_fields SMB2_ioctl fndecl 8 22721 NULL
++ath6kl_wmi_get_tx_pwr_cmd_fndecl_22722_fields ath6kl_wmi_get_tx_pwr_cmd fndecl 2 22722 NULL nohasharray
++niu_parent_index_vardecl_niu_c_22722_fields niu_parent_index vardecl_niu.c 0 22722 &ath6kl_wmi_get_tx_pwr_cmd_fndecl_22722_fields
++odm_mirror_cnt_pnfs_osd_data_map_22727_fields odm_mirror_cnt pnfs_osd_data_map 0 22727 NULL
++fcoe_hmc_cntx_num_i40e_pf_22730_fields fcoe_hmc_cntx_num i40e_pf 0 22730 NULL
++__blk_bios_map_sg_fndecl_22734_fields __blk_bios_map_sg fndecl 0 22734 NULL
++xprt_alloc_fndecl_22736_fields xprt_alloc fndecl 4-3 22736 NULL
++num_fcoe_qps_i40e_pf_22740_fields num_fcoe_qps i40e_pf 0 22740 NULL
++iwlagn_pass_packet_to_mac80211_fndecl_22746_fields iwlagn_pass_packet_to_mac80211 fndecl 3 22746 NULL
++rambase_brcmf_chip_22773_fields rambase brcmf_chip 0 22773 NULL
++orig_video_cols_screen_info_22783_fields orig_video_cols screen_info 0 22783 NULL
++submit_bh_wbc_fndecl_22789_fields submit_bh_wbc fndecl 0 22789 NULL
++reqsize_akcipher_alg_22792_fields reqsize akcipher_alg 0 22792 NULL
++h_start_saa7134_tvnorm_22798_fields h_start saa7134_tvnorm 0 22798 NULL
++i_next_section_block_iso_inode_info_22800_fields i_next_section_block iso_inode_info 0 22800 NULL nohasharray
++adapter_index_hpi_adapter_res_22800_fields adapter_index hpi_adapter_res 0 22800 &i_next_section_block_iso_inode_info_22800_fields
++my_inptr_vardecl_initramfs_c_22809_fields my_inptr vardecl_initramfs.c 0 22809 NULL
++aper_size_amdgpu_mc_22824_fields aper_size amdgpu_mc 0 22824 NULL
++tx_size_uart_8250_dma_22825_fields tx_size uart_8250_dma 0 22825 NULL
++gigaset_initdriver_fndecl_22839_fields gigaset_initdriver fndecl 1 22839 NULL
++lan78xx_change_mtu_fndecl_22844_fields lan78xx_change_mtu fndecl 2 22844 NULL
++sys_mremap_fndecl_22848_fields sys_mremap fndecl 5-3-1-2 22848 NULL nohasharray
++clean_io_failure_fndecl_22848_fields clean_io_failure fndecl 4 22848 &sys_mremap_fndecl_22848_fields
++rlen_si2168_cmd_22851_fields rlen si2168_cmd 0 22851 NULL
++var2_apei_exec_context_22852_fields var2 apei_exec_context 0 22852 NULL
++utf8s_to_utf16s_fndecl_22856_fields utf8s_to_utf16s fndecl 0 22856 NULL
++size_proc_dir_entry_22859_fields size proc_dir_entry 0 22859 NULL
++test_eb_bitmaps_fndecl_22861_fields test_eb_bitmaps fndecl 2 22861 NULL
++xs_sendpages_fndecl_22864_fields xs_sendpages fndecl 5 22864 NULL
++hpfs_get_block_fndecl_22865_fields hpfs_get_block fndecl 2 22865 NULL
++usCRTC_H_SyncStart__ATOM_MODE_TIMING_22868_fields usCRTC_H_SyncStart _ATOM_MODE_TIMING 0 22868 NULL
++n_subbufs_rchan_22872_fields n_subbufs rchan 0 22872 NULL
++enc28j60_mem_read_fndecl_22875_fields enc28j60_mem_read fndecl 3 22875 NULL
++count_nfs3_readdirargs_22881_fields count nfs3_readdirargs 0 22881 NULL
++len_prism2_download_area_22884_fields len prism2_download_area 0 22884 NULL
++frag_len_atmel_private_22893_fields frag_len atmel_private 0 22893 NULL
++snap_names_len_rbd_image_header_ondisk_22898_fields snap_names_len rbd_image_header_ondisk 0 22898 NULL
++ima_post_read_file_fndecl_22903_fields ima_post_read_file fndecl 3 22903 NULL nohasharray
++lpfc_fcp_io_channel_init_fndecl_22903_fields lpfc_fcp_io_channel_init fndecl 2 22903 &ima_post_read_file_fndecl_22903_fields
++count_ioctl_gntdev_map_grant_ref_22904_fields count ioctl_gntdev_map_grant_ref 0 22904 NULL
++num_y_edt_ft5x06_ts_data_22905_fields num_y edt_ft5x06_ts_data 0 22905 NULL
++membase_phys_efx_nic_22907_fields membase_phys efx_nic 0 22907 NULL
++cfg80211_report_obss_beacon_fndecl_22910_fields cfg80211_report_obss_beacon fndecl 3 22910 NULL
++tty_audit_log_fndecl_22915_fields tty_audit_log fndecl 4 22915 NULL
++len_policy_load_memory_22916_fields len policy_load_memory 0 22916 NULL
++node_con_driver_22919_fields node con_driver 0 22919 NULL
++len_ext4_allocation_request_22920_fields len ext4_allocation_request 0 22920 NULL
++lidar_i2c_xfer_fndecl_22921_fields lidar_i2c_xfer fndecl 4 22921 NULL
++e_name_len_ext4_xattr_entry_22925_fields e_name_len ext4_xattr_entry 0 22925 NULL
++port100_send_frame_async_fndecl_22927_fields port100_send_frame_async fndecl 4 22927 NULL
++event_data_len_msgbuf_rx_event_22931_fields event_data_len msgbuf_rx_event 0 22931 NULL
++i2400m_rx_ctl_fndecl_22934_fields i2400m_rx_ctl fndecl 4 22934 NULL
++num_counters_ip6t_replace_22944_fields num_counters ip6t_replace 0 22944 NULL
++bulk_out_usbatm_driver_22950_fields bulk_out usbatm_driver 0 22950 NULL
++al_stripe_size_4k_drbd_md_22954_fields al_stripe_size_4k drbd_md 0 22954 NULL
++osd_full_h_yuv_playback_info_22967_fields osd_full_h yuv_playback_info 0 22967 NULL
++data_swap_cluster_info_22969_fields data swap_cluster_info 0 22969 NULL
++i2400m_rx_ctl_ack_fndecl_22972_fields i2400m_rx_ctl_ack fndecl 3 22972 NULL
++nilfs_palloc_init_blockgroup_fndecl_22978_fields nilfs_palloc_init_blockgroup fndecl 2 22978 NULL
++do_mmap_fndecl_22981_fields do_mmap fndecl 3-0-7 22981 NULL
++max_pkt_size_stk1160_isoc_ctl_22983_fields max_pkt_size stk1160_isoc_ctl 0 22983 NULL
++sector_size_flash_info_22990_fields sector_size flash_info 0 22990 NULL nohasharray
++snd_hdac_read_fndecl_22990_fields snd_hdac_read fndecl 0 22990 &sector_size_flash_info_22990_fields
++p54spi_spi_write_fndecl_22994_fields p54spi_spi_write fndecl 4 22994 NULL
++size_wil_memio_block_22999_fields size wil_memio_block 0 22999 NULL nohasharray
++total_xfs_da_args_22999_fields total xfs_da_args 0 22999 &size_wil_memio_block_22999_fields
++ipw_packet_received_skb_fndecl_23005_fields ipw_packet_received_skb fndecl 2 23005 NULL
++pos_coredump_params_23014_fields pos coredump_params 0 23014 NULL
++memblock_alloc_range_fndecl_23015_fields memblock_alloc_range fndecl 2-3-4 23015 NULL nohasharray
++fb_height_drm_fb_helper_surface_size_23015_fields fb_height drm_fb_helper_surface_size 0 23015 &memblock_alloc_range_fndecl_23015_fields nohasharray
++desc_size_data_queue_23015_fields desc_size data_queue 0 23015 &fb_height_drm_fb_helper_surface_size_23015_fields nohasharray
++tx_size_iscsi_cmd_23015_fields tx_size iscsi_cmd 0 23015 &desc_size_data_queue_23015_fields
++bLength_usb_endpoint_descriptor_23016_fields bLength usb_endpoint_descriptor 0 23016 NULL
++tim_len_wmi_tim_info_arg_23018_fields tim_len wmi_tim_info_arg 0 23018 NULL
++fw_vif_idx_ath6kl_vif_23020_fields fw_vif_idx ath6kl_vif 0 23020 NULL
++acpi_aml_write_kern_fndecl_23032_fields acpi_aml_write_kern fndecl 2-0 23032 NULL
++rx_frag_size_atl1c_adapter_23034_fields rx_frag_size atl1c_adapter 0 23034 NULL nohasharray
++remap_fndecl_23034_fields remap fndecl 3 23034 &rx_frag_size_atl1c_adapter_23034_fields
++io_tlb_start_vardecl_swiotlb_c_23035_fields io_tlb_start vardecl_swiotlb.c 0 23035 NULL
++in_ep_smsusb_device_t_23038_fields in_ep smsusb_device_t 0 23038 NULL
++lost_cnt_hint_tcp_sock_23039_fields lost_cnt_hint tcp_sock 0 23039 NULL
++num_comp_vectors_mlx5_eq_table_23047_fields num_comp_vectors mlx5_eq_table 0 23047 NULL
++y1_drm_clip_rect_23048_fields y1 drm_clip_rect 0 23048 NULL
++gfs2_read_super_fndecl_23055_fields gfs2_read_super fndecl 2 23055 NULL
++ueth_change_mtu_fndecl_23057_fields ueth_change_mtu fndecl 2 23057 NULL
++agp_base_radeon_mc_23066_fields agp_base radeon_mc 0 23066 NULL nohasharray
++fe_start_ext4_free_extent_23066_fields fe_start ext4_free_extent 0 23066 &agp_base_radeon_mc_23066_fields
++fm10k_iov_configure_fndecl_23078_fields fm10k_iov_configure fndecl 2 23078 NULL
++ext_ofs_sym_ccb_23085_fields ext_ofs sym_ccb 0 23085 NULL
++devfn_pci_dev_23093_fields devfn pci_dev 0 23093 NULL
++l2_len_ovs_frag_data_23095_fields l2_len ovs_frag_data 0 23095 NULL nohasharray
++s_cluster_ratio_ext4_sb_info_23095_fields s_cluster_ratio ext4_sb_info 0 23095 &l2_len_ovs_frag_data_23095_fields
++qla27xx_fwdt_template_default_size_fndecl_23103_fields qla27xx_fwdt_template_default_size fndecl 0 23103 NULL
++__minimum_chunk_size_fndecl_23105_fields __minimum_chunk_size fndecl 0 23105 NULL
++max_elts_tracing_map_23116_fields max_elts tracing_map 0 23116 NULL
++aim_vdev_read_fndecl_23120_fields aim_vdev_read fndecl 3 23120 NULL
++xfs_rmap_unmap_fndecl_23123_fields xfs_rmap_unmap fndecl 0 23123 NULL nohasharray
++sq_max_sges_c4iw_qp_attributes_23123_fields sq_max_sges c4iw_qp_attributes 0 23123 &xfs_rmap_unmap_fndecl_23123_fields
++numchips_nand_chip_23137_fields numchips nand_chip 0 23137 NULL
++num_dv_ports_adv76xx_chip_info_23140_fields num_dv_ports adv76xx_chip_info 0 23140 NULL
++udf_load_pvoldesc_fndecl_23141_fields udf_load_pvoldesc fndecl 2 23141 NULL
++__ceph_choose_frag_fndecl_23142_fields __ceph_choose_frag fndecl 0 23142 NULL
++max_sge_rxe_sq_23148_fields max_sge rxe_sq 0 23148 NULL
++max_tx_urbs_kvaser_usb_23152_fields max_tx_urbs kvaser_usb 0 23152 NULL
++memblock_free_fndecl_23154_fields memblock_free fndecl 2-1 23154 NULL
++oxu_create_fndecl_23159_fields oxu_create fndecl 3-2 23159 NULL
++isdn_audio_xlaw2adpcm_fndecl_23162_fields isdn_audio_xlaw2adpcm fndecl 0 23162 NULL
++gfs2_xattr_set_fndecl_23165_fields gfs2_xattr_set fndecl 6 23165 NULL
++width_linux_logo_23166_fields width linux_logo 0 23166 NULL
++memblock_alloc_base_fndecl_23169_fields memblock_alloc_base fndecl 2-0-3 23169 NULL nohasharray
++MaxIoCommands_aac_init_23169_fields MaxIoCommands aac_init 0 23169 &memblock_alloc_base_fndecl_23169_fields
++xfs_sb_verify_fndecl_23173_fields xfs_sb_verify fndecl 0 23173 NULL
++cyttsp_probe_fndecl_23175_fields cyttsp_probe fndecl 4 23175 NULL
++x_res_vbe_mode_ib_23177_fields x_res vbe_mode_ib 0 23177 NULL
++udf_current_aext_fndecl_23183_fields udf_current_aext fndecl 0 23183 NULL
++__reuseport_alloc_fndecl_23190_fields __reuseport_alloc fndecl 1 23190 NULL
++seq_lseek_fndecl_23197_fields seq_lseek fndecl 2 23197 NULL
++offs_aim_fh_23201_fields offs aim_fh 0 23201 NULL
++read_swap_header_fndecl_23222_fields read_swap_header fndecl 0 23222 NULL
++vid_hdr_offset_ubi_device_23225_fields vid_hdr_offset ubi_device 0 23225 NULL nohasharray
++clk_core_get_rate_fndecl_23225_fields clk_core_get_rate fndecl 0 23225 &vid_hdr_offset_ubi_device_23225_fields
++xfs_defer_finish_fndecl_23226_fields xfs_defer_finish fndecl 0 23226 NULL
++win_size_tool_mw_23227_fields win_size tool_mw 0 23227 NULL
++nvkm_client_map_fndecl_23228_fields nvkm_client_map fndecl 3-2 23228 NULL
++ubifs_prep_grp_node_fndecl_23231_fields ubifs_prep_grp_node fndecl 3 23231 NULL
++sb_min_blocksize_fndecl_23239_fields sb_min_blocksize fndecl 0-2 23239 NULL
++dir_per_block_bits_msdos_sb_info_23245_fields dir_per_block_bits msdos_sb_info 0 23245 NULL
++ksm_madvise_fndecl_23247_fields ksm_madvise fndecl 2 23247 NULL
++__alloc_bootmem_node_fndecl_23259_fields __alloc_bootmem_node fndecl 3-4 23259 NULL
++ndescs_gpio_descs_23267_fields ndescs gpio_descs 0 23267 NULL
++devm_ioremap_nocache_fndecl_23271_fields devm_ioremap_nocache fndecl 3-2 23271 NULL nohasharray
++bufblocks_vardecl_saa6588_c_23271_fields bufblocks vardecl_saa6588.c 0 23271 &devm_ioremap_nocache_fndecl_23271_fields
++cifs_read_fndecl_23274_fields cifs_read fndecl 3 23274 NULL
++udf_table_new_block_fndecl_23276_fields udf_table_new_block fndecl 0 23276 NULL
++start_blkpg_partition_23281_fields start blkpg_partition 0 23281 NULL
++n_tty_receive_buf2_fndecl_23286_fields n_tty_receive_buf2 fndecl 4 23286 NULL
++modedb_len_fb_monspecs_23289_fields modedb_len fb_monspecs 0 23289 NULL
++shmac_num_idents_sctp_hmacalgo_23292_fields shmac_num_idents sctp_hmacalgo 0 23292 NULL
++vtbl_slots_ubi_device_23293_fields vtbl_slots ubi_device 0 23293 NULL
++get_node_info_fndecl_23296_fields get_node_info fndecl 2 23296 NULL
++fnic_get_trace_data_fndecl_23305_fields fnic_get_trace_data fndecl 0 23305 NULL
++s_blocks_per_segment_nilfs_super_block_23318_fields s_blocks_per_segment nilfs_super_block 0 23318 NULL
++max_send_sge_ocrdma_dev_attr_23321_fields max_send_sge ocrdma_dev_attr 0 23321 NULL
++naces_nfs4_acl_23334_fields naces nfs4_acl 0 23334 NULL
++max_wr_rd_sge_ocrdma_mbx_query_config_23340_fields max_wr_rd_sge ocrdma_mbx_query_config 0 23340 NULL nohasharray
++num_outputs_clkgena_divmux_data_23340_fields num_outputs clkgena_divmux_data 0 23340 &max_wr_rd_sge_ocrdma_mbx_query_config_23340_fields
++max_header_size_tsap_cb_23342_fields max_header_size tsap_cb 0 23342 NULL
++compat_sys_vmsplice_fndecl_23344_fields compat_sys_vmsplice fndecl 3 23344 NULL
++mark_block_processed_fndecl_23353_fields mark_block_processed fndecl 3-2 23353 NULL nohasharray
++pci_iov_virtfn_devfn_fndecl_23353_fields pci_iov_virtfn_devfn fndecl 0-2 23353 &mark_block_processed_fndecl_23353_fields
++vxres_crtc_23359_fields vxres crtc 0 23359 NULL
++v9fs_fid_xattr_get_fndecl_23361_fields v9fs_fid_xattr_get fndecl 4 23361 NULL
++default_blksize_st_modedef_23371_fields default_blksize st_modedef 0 23371 NULL
++kernel_map_sync_memtype_fndecl_23381_fields kernel_map_sync_memtype fndecl 1 23381 NULL
++length_dmi_header_23383_fields length dmi_header 0 23383 NULL
++pcpu_atom_size_vardecl_percpu_c_23384_fields pcpu_atom_size vardecl_percpu.c 0 23384 NULL
++sf_entsize_xfs_dir_ops_23386_fields sf_entsize xfs_dir_ops 0 23386 NULL nohasharray
++dstirq_mpc_intsrc_23386_fields dstirq mpc_intsrc 0 23386 &sf_entsize_xfs_dir_ops_23386_fields
++new_SSID_size_atmel_private_23387_fields new_SSID_size atmel_private 0 23387 NULL nohasharray
++did_munit_23387_fields did munit 0 23387 &new_SSID_size_atmel_private_23387_fields
++__irlan_insert_param_fndecl_23389_fields __irlan_insert_param fndecl 7 23389 NULL
++xfs_alloc_file_space_fndecl_23394_fields xfs_alloc_file_space fndecl 2-3 23394 NULL
++de_name_len_gfs2_dirent_23398_fields de_name_len gfs2_dirent 0 23398 NULL
++max_cmds_ips_ha_23401_fields max_cmds ips_ha 0 23401 NULL
++max_socks_sock_reuseport_23407_fields max_socks sock_reuseport 0 23407 NULL
++nx_fw_cmd_set_gbe_port_fndecl_23412_fields nx_fw_cmd_set_gbe_port fndecl 3 23412 NULL
++cifs_write_end_fndecl_23416_fields cifs_write_end fndecl 5 23416 NULL
++max_snd_interval_23422_fields max snd_interval 0 23422 NULL
++__qib_get_user_pages_fndecl_23426_fields __qib_get_user_pages fndecl 1 23426 NULL
++ftdi_instances_vardecl_ftdi_elan_c_23438_fields ftdi_instances vardecl_ftdi-elan.c 0 23438 NULL
++set_xfer_rate_fndecl_23440_fields set_xfer_rate fndecl 2 23440 NULL
++seg_size_wa_xfer_23450_fields seg_size wa_xfer 0 23450 NULL
++name_len_ocfs2_dir_entry_23452_fields name_len ocfs2_dir_entry 0 23452 NULL
++virtio_transport_stream_dequeue_fndecl_23453_fields virtio_transport_stream_dequeue fndecl 3 23453 NULL
++nct6775_create_attr_group_fndecl_23454_fields nct6775_create_attr_group fndecl 3 23454 NULL
++max_size_virtio_gpu_drv_capset_23460_fields max_size virtio_gpu_drv_capset 0 23460 NULL
++rsi_sdio_write_register_multiple_fndecl_23471_fields rsi_sdio_write_register_multiple fndecl 4 23471 NULL
++offset_ttm_bus_placement_23475_fields offset ttm_bus_placement 0 23475 NULL
++coda_psdev_write_fndecl_23484_fields coda_psdev_write fndecl 3 23484 NULL
++control_skge_rx_desc_23486_fields control skge_rx_desc 0 23486 NULL
++egr_sz_sge_23500_fields egr_sz sge 0 23500 NULL
++mxt_read_and_process_messages_fndecl_23502_fields mxt_read_and_process_messages fndecl 2-0 23502 NULL
++rxHeader2_edgeport_serial_23525_fields rxHeader2 edgeport_serial 0 23525 NULL
++s_cur_size_rvt_qp_23528_fields s_cur_size rvt_qp 0 23528 NULL
++pf_tids_total_qed_tm_iids_23535_fields pf_tids_total qed_tm_iids 0 23535 NULL
++offset_crypto_cts_reqctx_23536_fields offset crypto_cts_reqctx 0 23536 NULL
++ieee80211_new_mesh_header_fndecl_23538_fields ieee80211_new_mesh_header fndecl 0 23538 NULL
++ring_size_per_user_data_23539_fields ring_size per_user_data 0 23539 NULL
++FbUsableSize_nvidia_par_23541_fields FbUsableSize nvidia_par 0 23541 NULL
++ebt_size_mwt_fndecl_23547_fields ebt_size_mwt fndecl 0 23547 NULL
++ufs_inode_getblock_fndecl_23550_fields ufs_inode_getblock fndecl 4-3-2-0 23550 NULL
++n_fields_tracing_map_23556_fields n_fields tracing_map 0 23556 NULL nohasharray
++ast_fbdev_set_base_fndecl_23556_fields ast_fbdev_set_base fndecl 2 23556 &n_fields_tracing_map_23556_fields
++xfs_dabuf_map_fndecl_23558_fields xfs_dabuf_map fndecl 2 23558 NULL
++p_chmask_f_uac2_opts_23559_fields p_chmask f_uac2_opts 0 23559 NULL
++bdx_change_mtu_fndecl_23561_fields bdx_change_mtu fndecl 2 23561 NULL nohasharray
++cxgbit_copy_frags_fndecl_23561_fields cxgbit_copy_frags fndecl 3 23561 &bdx_change_mtu_fndecl_23561_fields
++lblock_gfs2_journal_extent_23574_fields lblock gfs2_journal_extent 0 23574 NULL
++secblob_len_cifs_spnego_msg_23580_fields secblob_len cifs_spnego_msg 0 23580 NULL
++rx_max_size_cxgbi_device_23582_fields rx_max_size cxgbi_device 0 23582 NULL
++resource_length_aml_resource_large_header_23584_fields resource_length aml_resource_large_header 0 23584 NULL
++nr_devices_ssb_bus_23589_fields nr_devices ssb_bus 0 23589 NULL nohasharray
++platform_device_add_data_fndecl_23589_fields platform_device_add_data fndecl 3 23589 &nr_devices_ssb_bus_23589_fields
++hugetlb_no_page_fndecl_23597_fields hugetlb_no_page fndecl 5 23597 NULL
++c67x00_probe_sie_fndecl_23602_fields c67x00_probe_sie fndecl 3 23602 NULL
++mthca_alloc_icm_pages_fndecl_23615_fields mthca_alloc_icm_pages fndecl 2 23615 NULL
++video_size_sis_video_info_23622_fields video_size sis_video_info 0 23622 NULL nohasharray
++mthca_alloc_fndecl_23622_fields mthca_alloc fndecl 0 23622 &video_size_sis_video_info_23622_fields
++blocksize_iso9660_options_23626_fields blocksize iso9660_options 0 23626 NULL
++skge_rx_setup_fndecl_23628_fields skge_rx_setup fndecl 4 23628 NULL
++vb_bytes_per_line_cx18_stream_23630_fields vb_bytes_per_line cx18_stream 0 23630 NULL nohasharray
++ll_zero_fndecl_23630_fields ll_zero fndecl 3-4 23630 &vb_bytes_per_line_cx18_stream_23630_fields
++ath9k_wmi_cmd_fndecl_23636_fields ath9k_wmi_cmd fndecl 4 23636 NULL
++ceph_sync_read_fndecl_23643_fields ceph_sync_read fndecl 0 23643 NULL
++kcm_recvmsg_fndecl_23646_fields kcm_recvmsg fndecl 3 23646 NULL
++map_urb_for_dma_fndecl_23647_fields map_urb_for_dma fndecl 0 23647 NULL
++size_crush_bucket_23650_fields size crush_bucket 0 23650 NULL
++piobcnt4k_qib_devdata_23655_fields piobcnt4k qib_devdata 0 23655 NULL
++viafb_bpp1_vardecl_viafbdev_c_23657_fields viafb_bpp1 vardecl_viafbdev.c 0 23657 NULL
++cmtp_send_interopmsg_fndecl_23659_fields cmtp_send_interopmsg fndecl 7 23659 NULL
++reg_list_size_bytes_rlc_firmware_header_v2_0_23660_fields reg_list_size_bytes rlc_firmware_header_v2_0 0 23660 NULL nohasharray
++elem_count_mlxsw_pci_queue_ops_23660_fields elem_count mlxsw_pci_queue_ops 0 23660 &reg_list_size_bytes_rlc_firmware_header_v2_0_23660_fields nohasharray
++unix_stream_sendpage_fndecl_23660_fields unix_stream_sendpage fndecl 4-3 23660 &elem_count_mlxsw_pci_queue_ops_23660_fields
++fat_length_msdos_sb_info_23672_fields fat_length msdos_sb_info 0 23672 NULL
++xfs_get_blocks_fndecl_23679_fields xfs_get_blocks fndecl 2 23679 NULL nohasharray
++__send_discard_fndecl_23679_fields __send_discard fndecl 0 23679 &xfs_get_blocks_fndecl_23679_fields
++xfs_ialloc_next_ag_fndecl_23680_fields xfs_ialloc_next_ag fndecl 0 23680 NULL
++user_set_fndecl_23682_fields user_set fndecl 6 23682 NULL
++buf_size_vmci_ctx_chkpt_buf_info_23686_fields buf_size vmci_ctx_chkpt_buf_info 0 23686 NULL
++vxfs_bmap1_fndecl_23688_fields vxfs_bmap1 fndecl 0-2 23688 NULL
++aio_read_events_ring_fndecl_23689_fields aio_read_events_ring fndecl 3 23689 NULL
++aac_fib_adapter_complete_fndecl_23697_fields aac_fib_adapter_complete fndecl 2 23697 NULL
++size_ubifs_ino_node_23699_fields size ubifs_ino_node 0 23699 NULL
++rmtvaluelen_xfs_da_args_23709_fields rmtvaluelen xfs_da_args 0 23709 NULL nohasharray
++word_offset_bm_xfer_ctx_23709_fields word_offset bm_xfer_ctx 0 23709 &rmtvaluelen_xfs_da_args_23709_fields
++vgacon_scroll_fndecl_23715_fields vgacon_scroll fndecl 5 23715 NULL
++ath6kl_sdio_bmi_write_fndecl_23717_fields ath6kl_sdio_bmi_write fndecl 3 23717 NULL
++len_cmdbuf_t_23720_fields len cmdbuf_t 0 23720 NULL
++size_rxe_type_info_23724_fields size rxe_type_info 0 23724 NULL
++size_p9_fcall_23725_fields size p9_fcall 0 23725 NULL
++hugetlb_fault_fndecl_23735_fields hugetlb_fault fndecl 3 23735 NULL
++writesize_acm_23756_fields writesize acm 0 23756 NULL
++dccp_manip_pkt_fndecl_23759_fields dccp_manip_pkt fndecl 4 23759 NULL
++fat_ent_bread_fndecl_23760_fields fat_ent_bread fndecl 4 23760 NULL
++fnic_max_trace_entries_vardecl_fnic_trace_c_23762_fields fnic_max_trace_entries vardecl_fnic_trace.c 0 23762 NULL
++i915_gem_create_fndecl_23768_fields i915_gem_create fndecl 3 23768 NULL
++perf_output_begin_backward_fndecl_23772_fields perf_output_begin_backward fndecl 3 23772 NULL
++dev_mem_seek_fndecl_23776_fields dev_mem_seek fndecl 2 23776 NULL nohasharray
++rec_len_ext4_dir_entry_2_23776_fields rec_len ext4_dir_entry_2 0 23776 &dev_mem_seek_fndecl_23776_fields nohasharray
++start_pnfs_block_dev_map_23776_fields start pnfs_block_dev_map 0 23776 &rec_len_ext4_dir_entry_2_23776_fields
++read_vbt_r0_fndecl_23780_fields read_vbt_r0 fndecl 1 23780 NULL
++tail_p9_rdir_23781_fields tail p9_rdir 0 23781 NULL
++count_uvc_debugfs_buffer_23783_fields count uvc_debugfs_buffer 0 23783 NULL
++nr_kvm_irq_routing_23794_fields nr kvm_irq_routing 0 23794 NULL
++ubi_attach_mtd_dev_fndecl_23797_fields ubi_attach_mtd_dev fndecl 3 23797 NULL nohasharray
++parity_devs_raid_type_23797_fields parity_devs raid_type 0 23797 &ubi_attach_mtd_dev_fndecl_23797_fields
++free_tiger_ch_23798_fields free tiger_ch 0 23798 NULL
++ra_offset_xfs_dir2_leaf_map_info_23799_fields ra_offset xfs_dir2_leaf_map_info 0 23799 NULL
++sctp_skb_pull_fndecl_23806_fields sctp_skb_pull fndecl 2-0 23806 NULL
++cdrom_read_cdda_bpc_fndecl_23812_fields cdrom_read_cdda_bpc fndecl 4 23812 NULL
++carl9170_alloc_fndecl_23816_fields carl9170_alloc fndecl 1 23816 NULL
++dma_tx_size_sxgbe_priv_data_23821_fields dma_tx_size sxgbe_priv_data 0 23821 NULL
++ocfs2_get_refcount_tree_fndecl_23824_fields ocfs2_get_refcount_tree fndecl 2 23824 NULL
++intel_fake_agp_alloc_by_type_fndecl_23826_fields intel_fake_agp_alloc_by_type fndecl 1 23826 NULL nohasharray
++nbytes_ahash_request_23826_fields nbytes ahash_request 0 23826 &intel_fake_agp_alloc_by_type_fndecl_23826_fields
++bios_hardcoded_edid_size_radeon_mode_info_23827_fields bios_hardcoded_edid_size radeon_mode_info 0 23827 NULL nohasharray
++__xfs_dir3_free_read_fndecl_23827_fields __xfs_dir3_free_read fndecl 3 23827 &bios_hardcoded_edid_size_radeon_mode_info_23827_fields
++vbi_v_stop_0_saa7134_tvnorm_23830_fields vbi_v_stop_0 saa7134_tvnorm 0 23830 NULL nohasharray
++t4_fl_pkt_align_fndecl_23830_fields t4_fl_pkt_align fndecl 0 23830 &vbi_v_stop_0_saa7134_tvnorm_23830_fields
++buffer_total_count_pvr2_stream_23834_fields buffer_total_count pvr2_stream 0 23834 NULL
++key_dm_region_23838_fields key dm_region 0 23838 NULL
++compressed_bio_alloc_fndecl_23839_fields compressed_bio_alloc fndecl 2 23839 NULL
++rx_buf_size_skge_port_23843_fields rx_buf_size skge_port 0 23843 NULL
++tidcnt_qib_tid_info_23847_fields tidcnt qib_tid_info 0 23847 NULL nohasharray
++osd_request_async_done_fndecl_23847_fields osd_request_async_done fndecl 2 23847 &tidcnt_qib_tid_info_23847_fields
++SpareReplUnitNum_nftl_uci0_23850_fields SpareReplUnitNum nftl_uci0 0 23850 NULL
++am_length_compat_xfs_attr_multiop_23853_fields am_length compat_xfs_attr_multiop 0 23853 NULL
++max_srq_wqes_mlx4_caps_23857_fields max_srq_wqes mlx4_caps 0 23857 NULL
++rtl_tx_agg_stop_fndecl_23865_fields rtl_tx_agg_stop fndecl 4 23865 NULL nohasharray
++clutsize_linux_logo_23865_fields clutsize linux_logo 0 23865 &rtl_tx_agg_stop_fndecl_23865_fields
++vdisplay_drm_display_mode_23870_fields vdisplay drm_display_mode 0 23870 NULL
++c_data_offs_pvr2_ioread_23876_fields c_data_offs pvr2_ioread 0 23876 NULL nohasharray
++ohead_offs_ubifs_info_23876_fields ohead_offs ubifs_info 0 23876 &c_data_offs_pvr2_ioread_23876_fields
++macsec_change_mtu_fndecl_23882_fields macsec_change_mtu fndecl 2 23882 NULL nohasharray
++operand_2_len_ccp_ecc_modular_math_23882_fields operand_2_len ccp_ecc_modular_math 0 23882 &macsec_change_mtu_fndecl_23882_fields
++sb_dirband_size_hpfs_sb_info_23890_fields sb_dirband_size hpfs_sb_info 0 23890 NULL nohasharray
++bytes_snd_dma_buffer_23890_fields bytes snd_dma_buffer 0 23890 &sb_dirband_size_hpfs_sb_info_23890_fields
++in_base_pos_ceph_connection_23892_fields in_base_pos ceph_connection 0 23892 NULL
++__skb_to_sgvec_fndecl_23899_fields __skb_to_sgvec fndecl 0-4-3 23899 NULL
++block_log_squashfs_sb_info_23905_fields block_log squashfs_sb_info 0 23905 NULL
++status_adm8211_desc_23909_fields status adm8211_desc 0 23909 NULL nohasharray
++al_offset_drbd_md_23909_fields al_offset drbd_md 0 23909 &status_adm8211_desc_23909_fields
++num_pages_fuse_req_23911_fields num_pages fuse_req 0 23911 NULL
++avail_pebs_ubi_device_23916_fields avail_pebs ubi_device 0 23916 NULL
++tcp_init_cwnd_fndecl_23919_fields tcp_init_cwnd fndecl 0 23919 NULL nohasharray
++rd_data_gfs2_rgrpd_23919_fields rd_data gfs2_rgrpd 0 23919 &tcp_init_cwnd_fndecl_23919_fields
++nr_items_list_lru_one_23925_fields nr_items list_lru_one 0 23925 NULL
++p9_client_readdir_fndecl_23927_fields p9_client_readdir fndecl 0-3 23927 NULL
++input_buffer_size_vardecl_seq_midi_c_23961_fields input_buffer_size vardecl_seq_midi.c 0 23961 NULL
++mtd_ooblayout_set_eccbytes_fndecl_23964_fields mtd_ooblayout_set_eccbytes fndecl 4 23964 NULL
++rx_ip_align_efx_nic_23965_fields rx_ip_align efx_nic 0 23965 NULL
++fw_status_len_wl1271_23974_fields fw_status_len wl1271 0 23974 NULL nohasharray
++memblock_add_range_fndecl_23974_fields memblock_add_range fndecl 2-3 23974 &fw_status_len_wl1271_23974_fields
++li_channels__DIVA_CAPI_ADAPTER_23977_fields li_channels _DIVA_CAPI_ADAPTER 0 23977 NULL
++vsync_len_fb_var_screeninfo_23987_fields vsync_len fb_var_screeninfo 0 23987 NULL
++length_acpi_object_string_23992_fields length acpi_object_string 0 23992 NULL
++EventDataLength__MPI2_EVENT_NOTIFICATION_REPLY_23993_fields EventDataLength _MPI2_EVENT_NOTIFICATION_REPLY 0 23993 NULL
++usb_stream_next_packet_size_fndecl_23994_fields usb_stream_next_packet_size fndecl 0 23994 NULL
++anchor_udf_options_24004_fields anchor udf_options 0 24004 NULL
++dir_band_start_hpfs_super_block_24005_fields dir_band_start hpfs_super_block 0 24005 NULL
++truncate_setsize_fndecl_24013_fields truncate_setsize fndecl 2 24013 NULL
++ath6kl_wmi_bssfilter_cmd_fndecl_24014_fields ath6kl_wmi_bssfilter_cmd fndecl 2 24014 NULL
++vlan_id_bond_vlan_tag_24019_fields vlan_id bond_vlan_tag 0 24019 NULL nohasharray
++xfs_bmap_btalloc_fndecl_24019_fields xfs_bmap_btalloc fndecl 0 24019 &vlan_id_bond_vlan_tag_24019_fields
++minimum_pcc_memory_resource_24022_fields minimum pcc_memory_resource 0 24022 NULL
++iscsi_session_setup_fndecl_24023_fields iscsi_session_setup fndecl 4 24023 NULL
++btt_map_write_fndecl_24029_fields btt_map_write fndecl 0 24029 NULL nohasharray
++fill_user_desc_fndecl_24029_fields fill_user_desc fndecl 2 24029 &btt_map_write_fndecl_24029_fields
++bpp__sisbios_mode_24033_fields bpp _sisbios_mode 0 24033 NULL
++mbo_offs_aim_channel_24035_fields mbo_offs aim_channel 0 24035 NULL
++namelen_cramfs_inode_24036_fields namelen cramfs_inode 0 24036 NULL nohasharray
++__radix_tree_preload_fndecl_24036_fields __radix_tree_preload fndecl 0 24036 &namelen_cramfs_inode_24036_fields
++obj_size_request_sock_ops_24037_fields obj_size request_sock_ops 0 24037 NULL
++chunk_mask_geom_24040_fields chunk_mask geom 0 24040 NULL
++start_switch_path_24046_fields start switch_path 0 24046 NULL
++log_start_r5l_io_unit_24048_fields log_start r5l_io_unit 0 24048 NULL nohasharray
++hfi1_max_srq_wrs_vardecl_24048_fields hfi1_max_srq_wrs vardecl 0 24048 &log_start_r5l_io_unit_24048_fields
++size_pernet_operations_24051_fields size pernet_operations 0 24051 NULL nohasharray
++erase_shift_mmc_card_24051_fields erase_shift mmc_card 0 24051 &size_pernet_operations_24051_fields
++osst_int_ioctl_fndecl_24052_fields osst_int_ioctl fndecl 4 24052 NULL
++jbd2_journal_dirty_metadata_fndecl_24067_fields jbd2_journal_dirty_metadata fndecl 0 24067 NULL
++fnic_get_stats_data_fndecl_24075_fields fnic_get_stats_data fndecl 0 24075 NULL
++h_sync_strt_wid_aty128_crtc_24079_fields h_sync_strt_wid aty128_crtc 0 24079 NULL
++tun_hlen_ip6_tnl_24081_fields tun_hlen ip6_tnl 0 24081 NULL
++cylinders_ssfdcr_record_24084_fields cylinders ssfdcr_record 0 24084 NULL
++gfs2_meta_new_fndecl_24087_fields gfs2_meta_new fndecl 2 24087 NULL
++pat_pagerange_is_ram_fndecl_24089_fields pat_pagerange_is_ram fndecl 1-2 24089 NULL
++mw_count_ntb_transport_ctx_24094_fields mw_count ntb_transport_ctx 0 24094 NULL
++irq_base_pm860x_chip_24096_fields irq_base pm860x_chip 0 24096 NULL
++sectors_md_rdev_24098_fields sectors md_rdev 0 24098 NULL
++capture_bufsize_vardecl_nm256_c_24100_fields capture_bufsize vardecl_nm256.c 0 24100 NULL
++dcbp_set_pad_bits_fndecl_24101_fields dcbp_set_pad_bits fndecl 2 24101 NULL
++bus_mtu_brcmf_usbdev_24102_fields bus_mtu brcmf_usbdev 0 24102 NULL
++max_ib_mtu_ipoib_dev_priv_24105_fields max_ib_mtu ipoib_dev_priv 0 24105 NULL nohasharray
++read_fifo_fndecl_24105_fields read_fifo fndecl 3 24105 &max_ib_mtu_ipoib_dev_priv_24105_fields
++get_rx_frame_len_stmmac_desc_ops_24113_fields get_rx_frame_len stmmac_desc_ops 0 24113 NULL nohasharray
++add_td_to_list_fndecl_24113_fields add_td_to_list fndecl 3 24113 &get_rx_frame_len_stmmac_desc_ops_24113_fields
++packet_multiplier_em28xx_24119_fields packet_multiplier em28xx 0 24119 NULL nohasharray
++rax_vmcb_save_area_24119_fields rax vmcb_save_area 0 24119 &packet_multiplier_em28xx_24119_fields
++ext2_xattr_user_set_fndecl_24123_fields ext2_xattr_user_set fndecl 6 24123 NULL
++srpt_build_cmd_rsp_fndecl_24126_fields srpt_build_cmd_rsp fndecl 0 24126 NULL
++um_idi_read_fndecl_24129_fields um_idi_read fndecl 3 24129 NULL
++ieee80211_assoc_success_fndecl_24131_fields ieee80211_assoc_success fndecl 4 24131 NULL
++radix_tree_locate_item_fndecl_24133_fields radix_tree_locate_item fndecl 0 24133 NULL
++num_snaps_ceph_snap_context_24136_fields num_snaps ceph_snap_context 0 24136 NULL nohasharray
++error_state_read_fndecl_24136_fields error_state_read fndecl 6-5 24136 &num_snaps_ceph_snap_context_24136_fields
++transp_elsa_hw_24137_fields transp elsa_hw 0 24137 NULL
++key_update_fndecl_24140_fields key_update fndecl 3 24140 NULL
++elem_size_v4l2_ctrl_config_24141_fields elem_size v4l2_ctrl_config 0 24141 NULL nohasharray
++segs_wa_xfer_24141_fields segs wa_xfer 0 24141 &elem_size_v4l2_ctrl_config_24141_fields nohasharray
++sdram_size_solo_dev_24141_fields sdram_size solo_dev 0 24141 &segs_wa_xfer_24141_fields
++t_task_nolb_se_cmd_24142_fields t_task_nolb se_cmd 0 24142 NULL
++fat_fat_length_fat_bios_param_block_24145_fields fat_fat_length fat_bios_param_block 0 24145 NULL
++initial_tsn_sctp_inithdr_host_24149_fields initial_tsn sctp_inithdr_host 0 24149 NULL
++lro_add_page_fndecl_24166_fields lro_add_page fndecl 4 24166 NULL
++__alloc_extent_buffer_fndecl_24167_fields __alloc_extent_buffer fndecl 2-3 24167 NULL nohasharray
++ppp_sync_input_fndecl_24167_fields ppp_sync_input fndecl 4 24167 &__alloc_extent_buffer_fndecl_24167_fields
++vram_start_radeon_mc_24170_fields vram_start radeon_mc 0 24170 NULL
++bpp_drm_mode_create_dumb_24171_fields bpp drm_mode_create_dumb 0 24171 NULL
++ttymajor_vardecl_synclink_c_24173_fields ttymajor vardecl_synclink.c 0 24173 NULL nohasharray
++drop_count_codel_stats_24173_fields drop_count codel_stats 0 24173 &ttymajor_vardecl_synclink_c_24173_fields
++top_v4l2_rect_24176_fields top v4l2_rect 0 24176 NULL
++ext4_split_extent_fndecl_24180_fields ext4_split_extent fndecl 0 24180 NULL
++st21nfca_hci_dm_get_data_fndecl_24183_fields st21nfca_hci_dm_get_data fndecl 3 24183 NULL
++iv_size_crypt_config_24199_fields iv_size crypt_config 0 24199 NULL
++kernel_sendpage_fndecl_24200_fields kernel_sendpage fndecl 0-4 24200 NULL nohasharray
++n_multicast_vfpf_set_q_filters_tlv_24200_fields n_multicast vfpf_set_q_filters_tlv 0 24200 &kernel_sendpage_fndecl_24200_fields
++caps_sdhci_host_24205_fields caps sdhci_host 0 24205 NULL
++f2fs_update_extent_tree_range_fndecl_24206_fields f2fs_update_extent_tree_range fndecl 4-2-3 24206 NULL
++yenta_search_res_fndecl_24211_fields yenta_search_res fndecl 3 24211 NULL
++erase_size_falcon_spi_device_24212_fields erase_size falcon_spi_device 0 24212 NULL
++amdgpu_benchmark_move_fndecl_24214_fields amdgpu_benchmark_move fndecl 2 24214 NULL
++size_drm_gem_object_24219_fields size drm_gem_object 0 24219 NULL
++nid_free_nid_24229_fields nid free_nid 0 24229 NULL
++get_ramdisk_size_fndecl_24233_fields get_ramdisk_size fndecl 0 24233 NULL
++udf_process_sequence_fndecl_24235_fields udf_process_sequence fndecl 2 24235 NULL
++sys_msgrcv_fndecl_24236_fields sys_msgrcv fndecl 3 24236 NULL
++common_qdepth_blogic_adapter_24241_fields common_qdepth blogic_adapter 0 24241 NULL
++pcicfg_base_sst_pdata_24243_fields pcicfg_base sst_pdata 0 24243 NULL
++vlan_qos_vlan_ioctl_args_24244_fields vlan_qos vlan_ioctl_args 0 24244 NULL nohasharray
++qi_dqchunklen_xfs_quotainfo_24244_fields qi_dqchunklen xfs_quotainfo 0 24244 &vlan_qos_vlan_ioctl_args_24244_fields
++vmbus_sendpacket_mpb_desc_fndecl_24250_fields vmbus_sendpacket_mpb_desc fndecl 3-5 24250 NULL
++inode_ext2_dir_entry_2_24254_fields inode ext2_dir_entry_2 0 24254 NULL
++ali1535_offset_vardecl_i2c_ali1535_c_24257_fields ali1535_offset vardecl_i2c-ali1535.c 0 24257 NULL
++crtc_hblank_end_drm_display_mode_24268_fields crtc_hblank_end drm_display_mode 0 24268 NULL
++totalsize_microcode_header_intel_24274_fields totalsize microcode_header_intel 0 24274 NULL
++vb2_vmalloc_get_userptr_fndecl_24276_fields vb2_vmalloc_get_userptr fndecl 2-3 24276 NULL
++ccp_reverse_set_dm_area_fndecl_24279_fields ccp_reverse_set_dm_area fndecl 4-3 24279 NULL
++blockshift_alauda_card_info_24288_fields blockshift alauda_card_info 0 24288 NULL
++_do_truncate_fndecl_24296_fields _do_truncate fndecl 2 24296 NULL
++sg_copy_buffer_fndecl_24297_fields sg_copy_buffer fndecl 0-5-4 24297 NULL
++rf_our_slot_rcom_config_24309_fields rf_our_slot rcom_config 0 24309 NULL
++hdlcdev_rx_fndecl_24310_fields hdlcdev_rx fndecl 3 24310 NULL
++io_apic_get_redir_entries_fndecl_24313_fields io_apic_get_redir_entries fndecl 0 24313 NULL nohasharray
++udc_get_ppbdu_rxbytes_fndecl_24313_fields udc_get_ppbdu_rxbytes fndecl 0 24313 &io_apic_get_redir_entries_fndecl_24313_fields nohasharray
++dm_accept_partial_bio_fndecl_24313_fields dm_accept_partial_bio fndecl 2 24313 &udc_get_ppbdu_rxbytes_fndecl_24313_fields
++pstore_file_llseek_fndecl_24314_fields pstore_file_llseek fndecl 2 24314 NULL nohasharray
++pch_udc_create_dma_chain_fndecl_24314_fields pch_udc_create_dma_chain fndecl 3 24314 &pstore_file_llseek_fndecl_24314_fields
++byte_per_page_nand_jedec_params_24315_fields byte_per_page nand_jedec_params 0 24315 NULL
++remove_monitor_info_fndecl_24319_fields remove_monitor_info fndecl 3 24319 NULL
++zlib_deflate_workspacesize_fndecl_24330_fields zlib_deflate_workspacesize fndecl 2-1 24330 NULL
++num_rports_bfa_iocfc_fwcfg_s_24334_fields num_rports bfa_iocfc_fwcfg_s 0 24334 NULL
++next_offset_ceph_file_info_24335_fields next_offset ceph_file_info 0 24335 NULL
++in_iso_pipe_usbtest_dev_24336_fields in_iso_pipe usbtest_dev 0 24336 NULL
++word2_lpfc_rcqe_24338_fields word2 lpfc_rcqe 0 24338 NULL
++smp_send_cmd_fndecl_24339_fields smp_send_cmd fndecl 3 24339 NULL
++stolen_size_intel_early_ops_24340_fields stolen_size intel_early_ops 0 24340 NULL nohasharray
++flags_rtl8187_rx_hdr_24340_fields flags rtl8187_rx_hdr 0 24340 &stolen_size_intel_early_ops_24340_fields
++airo_change_mtu_fndecl_24345_fields airo_change_mtu fndecl 2 24345 NULL
++stride_simplefb_params_24347_fields stride simplefb_params 0 24347 NULL
++ceph_make_fpos_fndecl_24352_fields ceph_make_fpos fndecl 0-2-1 24352 NULL
++sd_inptrs_gfs2_sbd_24356_fields sd_inptrs gfs2_sbd 0 24356 NULL
++start_isoc_chain_fndecl_24358_fields start_isoc_chain fndecl 4-2 24358 NULL
++ieee_il3945_rate_info_24363_fields ieee il3945_rate_info 0 24363 NULL
++dst_h_yuv_frame_info_24364_fields dst_h yuv_frame_info 0 24364 NULL
++len_ath6kl_mgmt_buff_24368_fields len ath6kl_mgmt_buff 0 24368 NULL
++atr_len_cm4000_dev_24376_fields atr_len cm4000_dev 0 24376 NULL nohasharray
++igb_add_rx_frag_fndecl_24376_fields igb_add_rx_frag fndecl 3 24376 &atr_len_cm4000_dev_24376_fields
++virt_begin_dm_thin_new_mapping_24377_fields virt_begin dm_thin_new_mapping 0 24377 NULL
++wqe_shift_mthca_srq_24381_fields wqe_shift mthca_srq 0 24381 NULL
++read_reg_c_can_priv_24389_fields read_reg c_can_priv 0 24389 NULL
++demote_then_promote_fndecl_24392_fields demote_then_promote fndecl 5-3-4 24392 NULL
++tail_sk_buff_24399_fields tail sk_buff 0 24399 NULL
++compat_sys_preadv_fndecl_24404_fields compat_sys_preadv fndecl 3 24404 NULL
++max_frame_size_slgt_info_24405_fields max_frame_size slgt_info 0 24405 NULL
++hfs_ext_find_block_fndecl_24406_fields hfs_ext_find_block fndecl 0-2 24406 NULL
++max_scbs_hw_profile_24409_fields max_scbs hw_profile 0 24409 NULL
++helene_read_regs_fndecl_24410_fields helene_read_regs fndecl 4 24410 NULL
++start_soundfont_sample_info_24413_fields start soundfont_sample_info 0 24413 NULL
++mtu_ArcProto_24415_fields mtu ArcProto 0 24415 NULL nohasharray
++trailer_size_orangefs_downcall_s_24415_fields trailer_size orangefs_downcall_s 0 24415 &mtu_ArcProto_24415_fields
++__percpu_ida_init_fndecl_24416_fields __percpu_ida_init fndecl 3 24416 NULL
++srq_entry_sz_mthca_dev_lim_24422_fields srq_entry_sz mthca_dev_lim 0 24422 NULL
++init_cdrom_command_fndecl_24438_fields init_cdrom_command fndecl 3 24438 NULL
++usHBlanking_Time__ATOM_DTD_FORMAT_24440_fields usHBlanking_Time _ATOM_DTD_FORMAT 0 24440 NULL
++dwTransferLength_wa_xfer_result_24445_fields dwTransferLength wa_xfer_result 0 24445 NULL
++s_last_pseg_nilfs_super_block_24457_fields s_last_pseg nilfs_super_block 0 24457 NULL
++drbd_bm_find_next_fndecl_24464_fields drbd_bm_find_next fndecl 0-2 24464 NULL
++remap_to_cache_fndecl_24467_fields remap_to_cache fndecl 3 24467 NULL
++unlink_queued_fndecl_24470_fields unlink_queued fndecl 4-2 24470 NULL
++rq_db_page_mthca_create_qp_24471_fields rq_db_page mthca_create_qp 0 24471 NULL
++get_filter_fndecl_24472_fields get_filter fndecl 0 24472 NULL
++qset_remove_urb_fndecl_24474_fields qset_remove_urb fndecl 4 24474 NULL
++elog_base_vardecl_acpi_extlog_c_24485_fields elog_base vardecl_acpi_extlog.c 0 24485 NULL
++WriteBlock_fndecl_24489_fields WriteBlock fndecl 3 24489 NULL nohasharray
++shim_phy_add_intel_sst_drv_24489_fields shim_phy_add intel_sst_drv 0 24489 &WriteBlock_fndecl_24489_fields
++sensor_yres_em28xx_v4l2_24490_fields sensor_yres em28xx_v4l2 0 24490 NULL
++max_wr_rxe_sq_24496_fields max_wr rxe_sq 0 24496 NULL nohasharray
++len_ceph_crypto_key_24496_fields len ceph_crypto_key 0 24496 &max_wr_rxe_sq_24496_fields nohasharray
++drv_block_st_partstat_24496_fields drv_block st_partstat 0 24496 &len_ceph_crypto_key_24496_fields
++buf_sz_rx_info_24497_fields buf_sz rx_info 0 24497 NULL
++virtio_gpu_get_vbuf_fndecl_24501_fields virtio_gpu_get_vbuf fndecl 2-3 24501 NULL
++sys_sendfile64_fndecl_24508_fields sys_sendfile64 fndecl 4 24508 NULL
++mask_len_ccp_passthru_nomap_engine_24509_fields mask_len ccp_passthru_nomap_engine 0 24509 NULL nohasharray
++octeon_allocate_device_fndecl_24509_fields octeon_allocate_device fndecl 2 24509 &mask_len_ccp_passthru_nomap_engine_24509_fields
++max_size_usb_fifo_24517_fields max_size usb_fifo 0 24517 NULL
++vc_y_vc_data_24521_fields vc_y vc_data 0 24521 NULL
++size_firmware_24525_fields size firmware 0 24525 NULL
++rtl8169_try_rx_copy_fndecl_24530_fields rtl8169_try_rx_copy fndecl 3 24530 NULL nohasharray
++max_length__diva_um_idi_data_queue_24530_fields max_length _diva_um_idi_data_queue 0 24530 &rtl8169_try_rx_copy_fndecl_24530_fields
++max_sgl_entries_vardecl_mpt3sas_base_c_24531_fields max_sgl_entries vardecl_mpt3sas_base.c 0 24531 NULL
++st_nci_hci_dm_put_data_fndecl_24538_fields st_nci_hci_dm_put_data fndecl 3 24538 NULL
++width_pcm_format_data_24546_fields width pcm_format_data 0 24546 NULL
++btrfs_issue_discard_fndecl_24553_fields btrfs_issue_discard fndecl 2-3 24553 NULL
++size_memblock_region_24555_fields size memblock_region 0 24555 NULL
++boot_size_il4965_firmware_pieces_24557_fields boot_size il4965_firmware_pieces 0 24557 NULL
++ocfs2_test_inode_bit_fndecl_24558_fields ocfs2_test_inode_bit fndecl 2 24558 NULL
++residual_count_se_cmd_24562_fields residual_count se_cmd 0 24562 NULL
++blksize_nbd_device_24565_fields blksize nbd_device 0 24565 NULL
++len_mlxsw_reg_info_24575_fields len mlxsw_reg_info 0 24575 NULL
++blk_extent_info_24576_fields blk extent_info 0 24576 NULL
++pkt_size_gspca_dev_24583_fields pkt_size gspca_dev 0 24583 NULL
++joydev_handle_JSIOCSBTNMAP_fndecl_24584_fields joydev_handle_JSIOCSBTNMAP fndecl 3 24584 NULL
++chunk_shift_geom_24589_fields chunk_shift geom 0 24589 NULL
++st_int_write_fndecl_24593_fields st_int_write fndecl 0 24593 NULL
++img_width_zoran_jpg_settings_24594_fields img_width zoran_jpg_settings 0 24594 NULL
++head_TxFifo_24599_fields head TxFifo 0 24599 NULL nohasharray
++ea_size_l_fnode_24599_fields ea_size_l fnode 0 24599 &head_TxFifo_24599_fields
++dsp_cmx_send_member_fndecl_24602_fields dsp_cmx_send_member fndecl 2 24602 NULL
++ubifs_add_bud_to_log_fndecl_24607_fields ubifs_add_bud_to_log fndecl 4 24607 NULL
++raid_disks_mddev_24609_fields raid_disks mddev 0 24609 NULL
++datalen_ip_tunnel_prl_24610_fields datalen ip_tunnel_prl 0 24610 NULL nohasharray
++bts_buffer_base_debug_store_24610_fields bts_buffer_base debug_store 0 24610 &datalen_ip_tunnel_prl_24610_fields
++irda_connect_indication_fndecl_24616_fields irda_connect_indication fndecl 4-5 24616 NULL
++dm_read_fndecl_24617_fields dm_read fndecl 3 24617 NULL
++ntfs_new_extent_inode_fndecl_24624_fields ntfs_new_extent_inode fndecl 2 24624 NULL
++qlcnic_process_rcv_diag_fndecl_24628_fields qlcnic_process_rcv_diag fndecl 3 24628 NULL
++elan_i2c_read_block_fndecl_24636_fields elan_i2c_read_block fndecl 4 24636 NULL
++desc_count_orangefs_bufmap_24642_fields desc_count orangefs_bufmap 0 24642 NULL nohasharray
++len_n_flags_il_rx_pkt_24642_fields len_n_flags il_rx_pkt 0 24642 &desc_count_orangefs_bufmap_24642_fields
++data_mcp_cmd_response_24644_fields data mcp_cmd_response 0 24644 NULL
++num_reg_defaults_regmap_config_24645_fields num_reg_defaults regmap_config 0 24645 NULL
++array_len_xdr_array2_desc_24652_fields array_len xdr_array2_desc 0 24652 NULL
++cur_sg_ore_per_dev_state_24654_fields cur_sg ore_per_dev_state 0 24654 NULL
++crypto_init_drbg_state_ops_24657_fields crypto_init drbg_state_ops 0 24657 NULL
++offset_musb_qh_24658_fields offset musb_qh 0 24658 NULL
++lcd_hsync_dly_atyfb_par_24660_fields lcd_hsync_dly atyfb_par 0 24660 NULL
++out_iso_pipe_usbtest_dev_24664_fields out_iso_pipe usbtest_dev 0 24664 NULL
++spidev_read_fndecl_24668_fields spidev_read fndecl 3 24668 NULL nohasharray
++rds_ib_sysctl_max_recv_wr_vardecl_24668_fields rds_ib_sysctl_max_recv_wr vardecl 0 24668 &spidev_read_fndecl_24668_fields
++rx_pipe_brcmf_usbdev_info_24671_fields rx_pipe brcmf_usbdev_info 0 24671 NULL
++id_platform_device_info_24673_fields id platform_device_info 0 24673 NULL nohasharray
++pinctrl_utils_reserve_map_fndecl_24673_fields pinctrl_utils_reserve_map fndecl 5 24673 &id_platform_device_info_24673_fields
++uhci_fixup_short_transfer_fndecl_24676_fields uhci_fixup_short_transfer fndecl 0 24676 NULL
++src_width_tpg_data_24681_fields src_width tpg_data 0 24681 NULL
++st95hf_spi_send_fndecl_24687_fields st95hf_spi_send fndecl 3 24687 NULL
++nbits_nvmem_cell_24691_fields nbits nvmem_cell 0 24691 NULL
++ocfs2_split_tree_fndecl_24695_fields ocfs2_split_tree fndecl 5 24695 NULL
++iwl_mvm_pass_packet_to_mac80211_fndecl_24696_fields iwl_mvm_pass_packet_to_mac80211 fndecl 7-6 24696 NULL
++align_tun_struct_24697_fields align tun_struct 0 24697 NULL
++rio_request_inb_dbell_fndecl_24701_fields rio_request_inb_dbell fndecl 4-3 24701 NULL
++size_aper_size_info_16_24703_fields size aper_size_info_16 0 24703 NULL
++block_ack_param_set_host_cmd_ds_11n_addba_rsp_24704_fields block_ack_param_set host_cmd_ds_11n_addba_rsp 0 24704 NULL
++start_qla_flt_region_24707_fields start qla_flt_region 0 24707 NULL
++_mv88e6xxx_reg_read_fndecl_24718_fields _mv88e6xxx_reg_read fndecl 0 24718 NULL
++nfp_net_change_mtu_fndecl_24719_fields nfp_net_change_mtu fndecl 2 24719 NULL
++qxl_ttm_tt_create_fndecl_24720_fields qxl_ttm_tt_create fndecl 2 24720 NULL
++drm_gem_cma_create_with_handle_fndecl_24721_fields drm_gem_cma_create_with_handle fndecl 3 24721 NULL
++bfs_get_block_fndecl_24726_fields bfs_get_block fndecl 2 24726 NULL
++outlen_ib_udata_24729_fields outlen ib_udata 0 24729 NULL
++pkts_acked_htcp_24730_fields pkts_acked htcp 0 24730 NULL
++VBP_kyrofb_info_24731_fields VBP kyrofb_info 0 24731 NULL
++shmem_undo_range_fndecl_24742_fields shmem_undo_range fndecl 2-3 24742 NULL
++set_ltab_fndecl_24745_fields set_ltab fndecl 3 24745 NULL
++ud_putcs_fndecl_24751_fields ud_putcs fndecl 4-6-5 24751 NULL
++data_dotdot_offset_xfs_dir_ops_24758_fields data_dotdot_offset xfs_dir_ops 0 24758 NULL
++scif_create_pinned_pages_fndecl_24761_fields scif_create_pinned_pages fndecl 1 24761 NULL nohasharray
++inftl_read_oob_fndecl_24761_fields inftl_read_oob fndecl 2-3 24761 &scif_create_pinned_pages_fndecl_24761_fields
++xlog_state_switch_iclogs_fndecl_24782_fields xlog_state_switch_iclogs fndecl 3 24782 NULL
++afs_proc_rootcell_write_fndecl_24797_fields afs_proc_rootcell_write fndecl 3 24797 NULL
++usHSyncWidth__ATOM_DTD_FORMAT_24801_fields usHSyncWidth _ATOM_DTD_FORMAT 0 24801 NULL nohasharray
++vhost_vsock_alloc_pkt_fndecl_24801_fields vhost_vsock_alloc_pkt fndecl 2 24801 &usHSyncWidth__ATOM_DTD_FORMAT_24801_fields nohasharray
++index_vardecl_atiixp_c_24801_fields index vardecl_atiixp.c 0 24801 &vhost_vsock_alloc_pkt_fndecl_24801_fields
++mprotect_fixup_fndecl_24803_fields mprotect_fixup fndecl 4-3 24803 NULL
++__read_extent_tree_block_fndecl_24804_fields __read_extent_tree_block fndecl 4 24804 NULL
++copy_to_urb_quirk_fndecl_24807_fields copy_to_urb_quirk fndecl 0-4 24807 NULL
++ceph_auth_build_hello_fndecl_24808_fields ceph_auth_build_hello fndecl 0 24808 NULL
++analog_ep_isoc_em28xx_24810_fields analog_ep_isoc em28xx 0 24810 NULL
++ubi_io_write_fndecl_24813_fields ubi_io_write fndecl 5-4 24813 NULL
++cdc_ncm_eth_hlen_fndecl_24814_fields cdc_ncm_eth_hlen fndecl 0 24814 NULL
++RxLastCount_via_ircc_cb_24815_fields RxLastCount via_ircc_cb 0 24815 NULL nohasharray
++array_resync_offset_dm_raid_superblock_24815_fields array_resync_offset dm_raid_superblock 0 24815 &RxLastCount_via_ircc_cb_24815_fields
++HBP_kyrofb_info_24818_fields HBP kyrofb_info 0 24818 NULL
++insert_state_fndecl_24820_fields insert_state fndecl 0-4-3 24820 NULL
++readahead_cached_dev_24826_fields readahead cached_dev 0 24826 NULL
++param_size_preview_update_24836_fields param_size preview_update 0 24836 NULL
++alloc_fddidev_fndecl_24837_fields alloc_fddidev fndecl 1 24837 NULL
++ceph_osdc_notify_ack_fndecl_24848_fields ceph_osdc_notify_ack fndecl 7 24848 NULL
++wLength_usbdevfs_ctrltransfer_24851_fields wLength usbdevfs_ctrltransfer 0 24851 NULL nohasharray
++cx88_alsa_dma_init_fndecl_24851_fields cx88_alsa_dma_init fndecl 2 24851 &wLength_usbdevfs_ctrltransfer_24851_fields
++pa_len_ext4_prealloc_space_24852_fields pa_len ext4_prealloc_space 0 24852 NULL
++body_len_vardecl_initramfs_c_24853_fields body_len vardecl_initramfs.c 0 24853 NULL
++bgpio_init_fndecl_24861_fields bgpio_init fndecl 3 24861 NULL
++__videobuf_copy_to_user_fndecl_24876_fields __videobuf_copy_to_user fndecl 0 24876 NULL
++x86_cache_alignment_cpuinfo_x86_24878_fields x86_cache_alignment cpuinfo_x86 0 24878 NULL
++rx_buf_per_pkt_vmxnet3_adapter_24879_fields rx_buf_per_pkt vmxnet3_adapter 0 24879 NULL
++zone_count_sm_ftl_24881_fields zone_count sm_ftl 0 24881 NULL
++nvme_cmb_qdepth_fndecl_24896_fields nvme_cmb_qdepth fndecl 0 24896 NULL
++i_truncate_size_ceph_inode_info_24902_fields i_truncate_size ceph_inode_info 0 24902 NULL
++blkif_setup_rw_req_grant_fndecl_24903_fields blkif_setup_rw_req_grant fndecl 2-3 24903 NULL
++io_limit_vardecl_at24_c_24907_fields io_limit vardecl_at24.c 0 24907 NULL
++iscsi_sw_tcp_send_linear_data_prep_fndecl_24908_fields iscsi_sw_tcp_send_linear_data_prep fndecl 3 24908 NULL
++ceph_tcp_recvpage_fndecl_24910_fields ceph_tcp_recvpage fndecl 0-4 24910 NULL nohasharray
++buffer_len_stats_debug_info_24910_fields buffer_len stats_debug_info 0 24910 &ceph_tcp_recvpage_fndecl_24910_fields
++len_fb_cmap_24911_fields len fb_cmap 0 24911 NULL
++num_tx_queues_igb_adapter_24917_fields num_tx_queues igb_adapter 0 24917 NULL
++__mic_ioremap_fndecl_24922_fields __mic_ioremap fndecl 3-2 24922 NULL nohasharray
++data_len_ib_ucm_info_24922_fields data_len ib_ucm_info 0 24922 &__mic_ioremap_fndecl_24922_fields
++scif_rb_init_fndecl_24923_fields scif_rb_init fndecl 5 24923 NULL
++tcp_mtu_to_mss_fndecl_24925_fields tcp_mtu_to_mss fndecl 0-2 24925 NULL
++__mutex_lock_killable_slowpath_fndecl_24931_fields __mutex_lock_killable_slowpath fndecl 0 24931 NULL nohasharray
++current_area_pstore_24931_fields current_area pstore 0 24931 &__mutex_lock_killable_slowpath_fndecl_24931_fields
++max_sectors_per_io_vardecl_megaraid_c_24934_fields max_sectors_per_io vardecl_megaraid.c 0 24934 NULL
++rtl_download_firmware_fndecl_24937_fields rtl_download_firmware fndecl 3 24937 NULL
++key_len_cfg80211_connect_params_24952_fields key_len cfg80211_connect_params 0 24952 NULL
++size_video_still_picture_24955_fields size video_still_picture 0 24955 NULL
++pkts_acked_ack_sample_24969_fields pkts_acked ack_sample 0 24969 NULL
++pppol2tp_sendmsg_fndecl_24975_fields pppol2tp_sendmsg fndecl 3 24975 NULL nohasharray
++system_dir_blkno_ocfs2_super_24975_fields system_dir_blkno ocfs2_super 0 24975 &pppol2tp_sendmsg_fndecl_24975_fields nohasharray
++max_dma_count_asc_dvc_var_24975_fields max_dma_count asc_dvc_var 0 24975 &system_dir_blkno_ocfs2_super_24975_fields
++i_rbytes_ceph_inode_info_24976_fields i_rbytes ceph_inode_info 0 24976 NULL
++vringh_iov_pull_user_fndecl_24984_fields vringh_iov_pull_user fndecl 3 24984 NULL
++dr_suballoc_bit_ocfs2_dx_root_block_24992_fields dr_suballoc_bit ocfs2_dx_root_block 0 24992 NULL
++ql_process_mac_rx_page_fndecl_24996_fields ql_process_mac_rx_page fndecl 4-5 24996 NULL
++__rh_find_fndecl_24997_fields __rh_find fndecl 2 24997 NULL
++jfs_extendfs_fndecl_25001_fields jfs_extendfs fndecl 2-3 25001 NULL
++xfrm_state_mtu_fndecl_25007_fields xfrm_state_mtu fndecl 0-2 25007 NULL nohasharray
++sdp0length__SpiCfgData_25007_fields sdp0length _SpiCfgData 0 25007 &xfrm_state_mtu_fndecl_25007_fields
++memory_map_top_down_fndecl_25011_fields memory_map_top_down fndecl 1-2 25011 NULL
++ifx_spi_write_fndecl_25016_fields ifx_spi_write fndecl 3 25016 NULL nohasharray
++_c4iw_write_mem_dma_fndecl_25016_fields _c4iw_write_mem_dma fndecl 3 25016 &ifx_spi_write_fndecl_25016_fields
++rx_jumbo_pending_ethtool_ringparam_25018_fields rx_jumbo_pending ethtool_ringparam 0 25018 NULL
++rx_agg_ring_size_bnxt_25021_fields rx_agg_ring_size bnxt 0 25021 NULL
++num_bd_ethoc_25022_fields num_bd ethoc 0 25022 NULL
++_rtl_usb_tx_urb_setup_fndecl_25024_fields _rtl_usb_tx_urb_setup fndecl 3 25024 NULL
++height_fb_fillrect_25027_fields height fb_fillrect 0 25027 NULL nohasharray
++iwl_nvm_read_section_fndecl_25027_fields iwl_nvm_read_section fndecl 0 25027 &height_fb_fillrect_25027_fields nohasharray
++hint_count_acpi_nfit_flush_address_25027_fields hint_count acpi_nfit_flush_address 0 25027 &iwl_nvm_read_section_fndecl_25027_fields
++vlan_cq_enet_rq_desc_25028_fields vlan cq_enet_rq_desc 0 25028 NULL nohasharray
++error_nfs_direct_req_25028_fields error nfs_direct_req 0 25028 &vlan_cq_enet_rq_desc_25028_fields
++crc_size_cas_25030_fields crc_size cas 0 25030 NULL nohasharray
++size_sym_tblmove_25030_fields size sym_tblmove 0 25030 &crc_size_cas_25030_fields
++pagesize_nand_flash_dev_25033_fields pagesize nand_flash_dev 0 25033 NULL
++dma_size_netup_unidvb_dev_25039_fields dma_size netup_unidvb_dev 0 25039 NULL
++db_free_next_ocfs2_dir_block_trailer_25041_fields db_free_next ocfs2_dir_block_trailer 0 25041 NULL
++stv0299_readregs_fndecl_25043_fields stv0299_readregs fndecl 4 25043 NULL
++ieee80211_amsdu_to_8023s_fndecl_25050_fields ieee80211_amsdu_to_8023s fndecl 5 25050 NULL
++aio_private_file_fndecl_25052_fields aio_private_file fndecl 2 25052 NULL
++hci_logging_frame_fndecl_25057_fields hci_logging_frame fndecl 3 25057 NULL
++size_object_info_25058_fields size object_info 0 25058 NULL
++in_max_chans_snd_card_asihpi_25063_fields in_max_chans snd_card_asihpi 0 25063 NULL
++cuse_file_compat_ioctl_fndecl_25067_fields cuse_file_compat_ioctl fndecl 2 25067 NULL
++ovl_alloc_entry_fndecl_25069_fields ovl_alloc_entry fndecl 1 25069 NULL
++ocfs2_truncate_rec_fndecl_25080_fields ocfs2_truncate_rec fndecl 7 25080 NULL
++length_bus_request_25082_fields length bus_request 0 25082 NULL
++k_offset_offset_v1_25084_fields k_offset offset_v1 0 25084 NULL nohasharray
++id_count_ocfs2_inline_data_25084_fields id_count ocfs2_inline_data 0 25084 &k_offset_offset_v1_25084_fields nohasharray
++len_ocrdma_sge_25084_fields len ocrdma_sge 0 25084 &id_count_ocfs2_inline_data_25084_fields
++dwc3_prepare_one_trb_fndecl_25092_fields dwc3_prepare_one_trb fndecl 4 25092 NULL nohasharray
++duty_ec_response_pwm_get_duty_25092_fields duty ec_response_pwm_get_duty 0 25092 &dwc3_prepare_one_trb_fndecl_25092_fields
++hidp_send_intr_message_fndecl_25093_fields hidp_send_intr_message fndecl 4 25093 NULL
++ext4_xattr_block_get_fndecl_25095_fields ext4_xattr_block_get fndecl 0 25095 NULL
++coff_ddb_input_25097_fields coff ddb_input 0 25097 NULL
++namelen_xfs_attr_sf_entry_25099_fields namelen xfs_attr_sf_entry 0 25099 NULL
++mgmt_device_found_fndecl_25100_fields mgmt_device_found fndecl 11-9 25100 NULL
++vbi_height_au0828_dev_25107_fields vbi_height au0828_dev 0 25107 NULL
++regs_size_ks8995_chip_params_25111_fields regs_size ks8995_chip_params 0 25111 NULL
++blen_if_spi_packet_25117_fields blen if_spi_packet 0 25117 NULL
++svcrdma_max_requests_vardecl_25118_fields svcrdma_max_requests vardecl 0 25118 NULL nohasharray
++clipt_start_adapter_25118_fields clipt_start adapter 0 25118 &svcrdma_max_requests_vardecl_25118_fields
++minimum_acpi_resource_memory24_25122_fields minimum acpi_resource_memory24 0 25122 NULL
++snd_interval_step_fndecl_25134_fields snd_interval_step fndecl 2 25134 NULL
++gb_len_nfc_hci_dev_25135_fields gb_len nfc_hci_dev 0 25135 NULL nohasharray
++tmpl_hdr_size_qlcnic_fw_dump_25135_fields tmpl_hdr_size qlcnic_fw_dump 0 25135 &gb_len_nfc_hci_dev_25135_fields
++bnx2i_get_cid_num_fndecl_25141_fields bnx2i_get_cid_num fndecl 0 25141 NULL
++ocfs2_init_xattr_bucket_fndecl_25146_fields ocfs2_init_xattr_bucket fndecl 2 25146 NULL
++rate_max_snd_pcm_hardware_25149_fields rate_max snd_pcm_hardware 0 25149 NULL
++numchips_cfi_private_25154_fields numchips cfi_private 0 25154 NULL
++vram_base_cirrus_mc_25157_fields vram_base cirrus_mc 0 25157 NULL
++si476x_core_send_command_fndecl_25160_fields si476x_core_send_command fndecl 4-6 25160 NULL
++max_transfer_size_mvumi_hba_25161_fields max_transfer_size mvumi_hba 0 25161 NULL
++tcp_syn_options_fndecl_25174_fields tcp_syn_options fndecl 0 25174 NULL
++s_writesize_logfs_super_25176_fields s_writesize logfs_super 0 25176 NULL
++btrfs_create_repair_bio_fndecl_25181_fields btrfs_create_repair_bio fndecl 5 25181 NULL
++heapstart_sis_video_info_25184_fields heapstart sis_video_info 0 25184 NULL
++coex_tx_win_size_mwifiex_adapter_25195_fields coex_tx_win_size mwifiex_adapter 0 25195 NULL
++run_filter_fndecl_25196_fields run_filter fndecl 0-3 25196 NULL
++iso_in_endp_ttusbir_25197_fields iso_in_endp ttusbir 0 25197 NULL
++do_shrink_fndecl_25198_fields do_shrink fndecl 3-2 25198 NULL nohasharray
++irq_sfi_device_table_entry_25198_fields irq sfi_device_table_entry 0 25198 &do_shrink_fndecl_25198_fields
++backing_dev_len_disk_conf_25199_fields backing_dev_len disk_conf 0 25199 NULL
++dlen_cxgbit_lro_pdu_cb_25201_fields dlen cxgbit_lro_pdu_cb 0 25201 NULL
++size_ioc_sts_mv_dtd_25203_fields size_ioc_sts mv_dtd 0 25203 NULL
++eth_get_headlen_fndecl_25213_fields eth_get_headlen fndecl 0-2 25213 NULL
++ext4_insert_range_fndecl_25217_fields ext4_insert_range fndecl 2-3 25217 NULL
++ocfs2_xattr_bucket_value_truncate_fndecl_25220_fields ocfs2_xattr_bucket_value_truncate fndecl 4 25220 NULL
++validate_checkpoint_fndecl_25229_fields validate_checkpoint fndecl 2 25229 NULL
++show_configfs_attribute_25232_fields show configfs_attribute 0 25232 NULL
++spy_number_iw_spy_data_25234_fields spy_number iw_spy_data 0 25234 NULL
++offset_zatm_pool_info_25250_fields offset zatm_pool_info 0 25250 NULL
++fpnum_omap3isp_ccdc_fpc_25254_fields fpnum omap3isp_ccdc_fpc 0 25254 NULL
++of_property_read_string_helper_fndecl_25257_fields of_property_read_string_helper fndecl 5 25257 NULL
++btrfs_submit_direct_fndecl_25259_fields btrfs_submit_direct fndecl 3 25259 NULL
++ar5523_cmd_fndecl_25261_fields ar5523_cmd fndecl 4 25261 NULL
++start_page_swap_extent_25262_fields start_page swap_extent 0 25262 NULL nohasharray
++first_cluster_group_blkno_ocfs2_super_25262_fields first_cluster_group_blkno ocfs2_super 0 25262 &start_page_swap_extent_25262_fields
++ext4_get_next_extent_fndecl_25267_fields ext4_get_next_extent fndecl 3-2 25267 NULL nohasharray
++vol_id_ubi_mkvol_req_25267_fields vol_id ubi_mkvol_req 0 25267 &ext4_get_next_extent_fndecl_25267_fields
++get_fold_mark_fndecl_25272_fields get_fold_mark fndecl 2 25272 NULL nohasharray
++out_iovs_fuse_ioctl_out_25272_fields out_iovs fuse_ioctl_out 0 25272 &get_fold_mark_fndecl_25272_fields
++authorizer_len_ceph_msg_connect_reply_25279_fields authorizer_len ceph_msg_connect_reply 0 25279 NULL
++dst_put_ci_fndecl_25284_fields dst_put_ci fndecl 3 25284 NULL
++ex_bn_extent_s_25293_fields ex_bn extent_s 0 25293 NULL
++string_length_acpi_resource_source_25296_fields string_length acpi_resource_source 0 25296 NULL
++part_start_hfs_sb_info_25310_fields part_start hfs_sb_info 0 25310 NULL
++vmw_cursor_update_image_fndecl_25311_fields vmw_cursor_update_image fndecl 4-3 25311 NULL nohasharray
++sz_m1_mlx5_wq_cyc_25311_fields sz_m1 mlx5_wq_cyc 0 25311 &vmw_cursor_update_image_fndecl_25311_fields
++cropw_val_pvr2_hdw_25312_fields cropw_val pvr2_hdw 0 25312 NULL
++resindex_dma_base_sst_acpi_desc_25313_fields resindex_dma_base sst_acpi_desc 0 25313 NULL
++fw_size_bcm203x_data_25314_fields fw_size bcm203x_data 0 25314 NULL
++num_desc_nx_host_rds_ring_25321_fields num_desc nx_host_rds_ring 0 25321 NULL
++cnt_i40e_hmc_obj_info_25322_fields cnt i40e_hmc_obj_info 0 25322 NULL
++iscsi_tcp_conn_setup_fndecl_25323_fields iscsi_tcp_conn_setup fndecl 2 25323 NULL
++max_outstanding_tx_usbcan_msg_softinfo_25327_fields max_outstanding_tx usbcan_msg_softinfo 0 25327 NULL
++bmv_count_getbmapx_25336_fields bmv_count getbmapx 0 25336 NULL
++width_deinterlace_q_data_25337_fields width deinterlace_q_data 0 25337 NULL
++vc_init_fndecl_25338_fields vc_init fndecl 2-3 25338 NULL
++enc_key_size_ecryptfs_key_record_25340_fields enc_key_size ecryptfs_key_record 0 25340 NULL nohasharray
++bytesperline_zoran_v4l_settings_25340_fields bytesperline zoran_v4l_settings 0 25340 &enc_key_size_ecryptfs_key_record_25340_fields nohasharray
++xfs_inobt_lookup_fndecl_25340_fields xfs_inobt_lookup fndecl 2 25340 &bytesperline_zoran_v4l_settings_25340_fields
++svc_meta_len_htc_conn_service_msg_25346_fields svc_meta_len htc_conn_service_msg 0 25346 NULL nohasharray
++init_data_size_il4965_firmware_pieces_25346_fields init_data_size il4965_firmware_pieces 0 25346 &svc_meta_len_htc_conn_service_msg_25346_fields
++skb_add_rx_frag_fndecl_25355_fields skb_add_rx_frag fndecl 2-5-6-4 25355 NULL
++spi_rd_buf_fndecl_25357_fields spi_rd_buf fndecl 4 25357 NULL
++bfs_move_block_fndecl_25369_fields bfs_move_block fndecl 1-2 25369 NULL
++encode_string_fndecl_25371_fields encode_string fndecl 2 25371 NULL
++sddr55_bulk_transport_fndecl_25377_fields sddr55_bulk_transport fndecl 4 25377 NULL nohasharray
++mt312_write_fndecl_25377_fields mt312_write fndecl 4 25377 &sddr55_bulk_transport_fndecl_25377_fields
++unix_dgram_recvmsg_fndecl_25379_fields unix_dgram_recvmsg fndecl 3 25379 NULL
++nr_channels_timb_dma_platform_data_25387_fields nr_channels timb_dma_platform_data 0 25387 NULL
++tda18218_wr_regs_fndecl_25388_fields tda18218_wr_regs fndecl 4 25388 NULL
++xlog_write_start_rec_fndecl_25394_fields xlog_write_start_rec fndecl 0 25394 NULL
++atom_size_pcpu_alloc_info_25396_fields atom_size pcpu_alloc_info 0 25396 NULL
++brcmf_pcie_read_tcm16_fndecl_25401_fields brcmf_pcie_read_tcm16 fndecl 0 25401 NULL
++metromem_dma_metronomefb_par_25407_fields metromem_dma metronomefb_par 0 25407 NULL
++memblock_virt_alloc_try_nid_fndecl_25409_fields memblock_virt_alloc_try_nid fndecl 2-3-4 25409 NULL
++nr_valid_peri_dma_pl330_platdata_25412_fields nr_valid_peri dma_pl330_platdata 0 25412 NULL
++entries_size_ebt_replace_kernel_25413_fields entries_size ebt_replace_kernel 0 25413 NULL
++image_len_gspca_dev_25419_fields image_len gspca_dev 0 25419 NULL
++remap_pci_mem_fndecl_25421_fields remap_pci_mem fndecl 2-1 25421 NULL nohasharray
++find_rsb_fndecl_25421_fields find_rsb fndecl 3 25421 &remap_pci_mem_fndecl_25421_fields
++pcf2127_i2c_read_fndecl_25429_fields pcf2127_i2c_read fndecl 5 25429 NULL
++def_rx_buf_size_octeon_config_25436_fields def_rx_buf_size octeon_config 0 25436 NULL
++i2c_write_fndecl_25439_fields i2c_write fndecl 4 25439 NULL nohasharray
++free_pfn_range_fndecl_25439_fields free_pfn_range fndecl 1-2 25439 &i2c_write_fndecl_25439_fields
++size_xen_netif_tx_request_25440_fields size xen_netif_tx_request 0 25440 NULL
++ds_nvme_lbaf_25461_fields ds nvme_lbaf 0 25461 NULL
++sddr09_send_scsi_command_fndecl_25467_fields sddr09_send_scsi_command fndecl 3 25467 NULL nohasharray
++id_stmpe_platform_data_25467_fields id stmpe_platform_data 0 25467 &sddr09_send_scsi_command_fndecl_25467_fields
++frame_alloc_fndecl_25470_fields frame_alloc fndecl 4 25470 NULL
++size_user_regset_25473_fields size user_regset 0 25473 NULL
++playback_periodsize_rme96_25479_fields playback_periodsize rme96 0 25479 NULL
++chunk_sectors_mddev_25484_fields chunk_sectors mddev 0 25484 NULL
++got_frame_fndecl_25487_fields got_frame fndecl 2 25487 NULL
++next_cmd_len_sg_fd_25494_fields next_cmd_len sg_fd 0 25494 NULL nohasharray
++rx_transfer_len_hif_device_usb_25494_fields rx_transfer_len hif_device_usb 0 25494 &next_cmd_len_sg_fd_25494_fields
++size_map_info_25510_fields size map_info 0 25510 NULL
++hidp_send_message_fndecl_25511_fields hidp_send_message fndecl 6 25511 NULL
++btrfs_qgroup_reserve_meta_fndecl_25512_fields btrfs_qgroup_reserve_meta fndecl 0 25512 NULL
++pppoe_recvmsg_fndecl_25514_fields pppoe_recvmsg fndecl 3 25514 NULL nohasharray
++n_sg_list_25514_fields n sg_list 0 25514 &pppoe_recvmsg_fndecl_25514_fields
++base_aperture_25525_fields base aperture 0 25525 NULL
++xfs_dq_get_next_id_fndecl_25529_fields xfs_dq_get_next_id fndecl 4-0 25529 NULL nohasharray
++cuse_file_ioctl_fndecl_25529_fields cuse_file_ioctl fndecl 2 25529 &xfs_dq_get_next_id_fndecl_25529_fields
++smk_write_unconfined_fndecl_25530_fields smk_write_unconfined fndecl 3 25530 NULL
++screen_fb_size_vardecl_hyperv_fb_c_25531_fields screen_fb_size vardecl_hyperv_fb.c 0 25531 NULL
++memblock_mem_limit_remove_map_fndecl_25533_fields memblock_mem_limit_remove_map fndecl 1 25533 NULL
++size_i40e_hmc_obj_info_25536_fields size i40e_hmc_obj_info 0 25536 NULL
++ioh_gpio_setup_fndecl_25540_fields ioh_gpio_setup fndecl 2 25540 NULL
++f_adc_rtl2832_sdr_dev_25544_fields f_adc rtl2832_sdr_dev 0 25544 NULL
++width_efifb_dmi_info_25557_fields width efifb_dmi_info 0 25557 NULL
++udf_extend_file_fndecl_25558_fields udf_extend_file fndecl 2 25558 NULL
++cp2112_write_req_fndecl_25559_fields cp2112_write_req fndecl 0-5 25559 NULL
++update_wqe_psn_fndecl_25563_fields update_wqe_psn fndecl 4 25563 NULL
++iommu_map_mmio_space_fndecl_25569_fields iommu_map_mmio_space fndecl 2-1 25569 NULL
++num_stations_iwl_priv_25574_fields num_stations iwl_priv 0 25574 NULL
++hpi_outstream_ancillary_read_fndecl_25575_fields hpi_outstream_ancillary_read fndecl 4 25575 NULL nohasharray
++wsm_write_mib_fndecl_25575_fields wsm_write_mib fndecl 4 25575 &hpi_outstream_ancillary_read_fndecl_25575_fields
++lpage_size_genwqe_sgl_25578_fields lpage_size genwqe_sgl 0 25578 NULL
++bytes_per_pixel_usbvision_v4l2_format_st_25584_fields bytes_per_pixel usbvision_v4l2_format_st 0 25584 NULL nohasharray
++be_cmd_set_sriov_config_fndecl_25584_fields be_cmd_set_sriov_config fndecl 3 25584 &bytes_per_pixel_usbvision_v4l2_format_st_25584_fields
++test_ofs_cyttsp4_sysinfo_ofs_25587_fields test_ofs cyttsp4_sysinfo_ofs 0 25587 NULL
++last_page_snd_emu10k1_memblk_25591_fields last_page snd_emu10k1_memblk 0 25591 NULL
++s_partition_len_udf_part_map_25593_fields s_partition_len udf_part_map 0 25593 NULL nohasharray
++MaxReplyDescriptorPostQueueDepth_mpt3sas_facts_25593_fields MaxReplyDescriptorPostQueueDepth mpt3sas_facts 0 25593 &s_partition_len_udf_part_map_25593_fields
++pcm_playback_analog_channels_snd_tscm_spec_25594_fields pcm_playback_analog_channels snd_tscm_spec 0 25594 NULL
++txdata_desc_size_vmxnet3_tx_queue_25615_fields txdata_desc_size vmxnet3_tx_queue 0 25615 NULL
++matroxfb_test_and_set_rounding_fndecl_25619_fields matroxfb_test_and_set_rounding fndecl 0-2 25619 NULL
++pmcraid_major_vardecl_pmcraid_c_25627_fields pmcraid_major vardecl_pmcraid.c 0 25627 NULL
++status_xen_netif_rx_response_25634_fields status xen_netif_rx_response 0 25634 NULL nohasharray
++ocfs2_trim_group_fndecl_25634_fields ocfs2_trim_group fndecl 0 25634 &status_xen_netif_rx_response_25634_fields
++khugepaged_scan_shmem_fndecl_25649_fields khugepaged_scan_shmem fndecl 3 25649 NULL
++rpipe_get_by_ep_fndecl_25656_fields rpipe_get_by_ep fndecl 0 25656 NULL
++getxattr_inode_operations_25660_fields getxattr inode_operations 0 25660 NULL
++btt_write_pg_fndecl_25661_fields btt_write_pg fndecl 0 25661 NULL
++eec_entry_sz_mthca_dev_lim_25665_fields eec_entry_sz mthca_dev_lim 0 25665 NULL
++HWPartsNum_qinfo_chip_25666_fields HWPartsNum qinfo_chip 0 25666 NULL nohasharray
++m_ag_maxlevels_xfs_mount_25666_fields m_ag_maxlevels xfs_mount 0 25666 &HWPartsNum_qinfo_chip_25666_fields
++tsi148_master_set_fndecl_25678_fields tsi148_master_set fndecl 4 25678 NULL
++get_user_page_nowait_fndecl_25679_fields get_user_page_nowait fndecl 1 25679 NULL
++layout_mdp_superblock_s_25680_fields layout mdp_superblock_s 0 25680 NULL
++max_cmd_per_lun_vardecl_megaraid_c_25693_fields max_cmd_per_lun vardecl_megaraid.c 0 25693 NULL
++chv_get_total_gtt_size_fndecl_25701_fields chv_get_total_gtt_size fndecl 0-1 25701 NULL nohasharray
++xh_num_buckets_ocfs2_xattr_header_25701_fields xh_num_buckets ocfs2_xattr_header 0 25701 &chv_get_total_gtt_size_fndecl_25701_fields
++val_ilt_cfg_pair_25703_fields val ilt_cfg_pair 0 25703 NULL
++ir_post_altera_jtag_25704_fields ir_post altera_jtag 0 25704 NULL nohasharray
++sysctl_numa_balancing_scan_size_vardecl_25704_fields sysctl_numa_balancing_scan_size vardecl 0 25704 &ir_post_altera_jtag_25704_fields
++metadata_bnxt_tpa_info_25705_fields metadata bnxt_tpa_info 0 25705 NULL nohasharray
++cmnd_out_ep_vub300_mmc_host_25705_fields cmnd_out_ep vub300_mmc_host 0 25705 &metadata_bnxt_tpa_info_25705_fields nohasharray
++get_bio_block_fndecl_25705_fields get_bio_block fndecl 0 25705 &cmnd_out_ep_vub300_mmc_host_25705_fields
++__sector_request_25709_fields __sector request 0 25709 NULL
++buf_count_drm_buf_entry_25716_fields buf_count drm_buf_entry 0 25716 NULL
++svc_max_payload_fndecl_25718_fields svc_max_payload fndecl 0 25718 NULL
++left_margin_fb_var_screeninfo_25722_fields left_margin fb_var_screeninfo 0 25722 NULL
++data_cnt_adv_scsi_req_q_25725_fields data_cnt adv_scsi_req_q 0 25725 NULL
++raid1_resize_fndecl_25735_fields raid1_resize fndecl 2 25735 NULL
++res_cnt_common_sol_cqe_25739_fields res_cnt common_sol_cqe 0 25739 NULL
++ms_read_copyblock_fndecl_25740_fields ms_read_copyblock fndecl 7 25740 NULL
++ext4_da_map_blocks_fndecl_25744_fields ext4_da_map_blocks fndecl 2 25744 NULL
++iov_iter_kvec_fndecl_25747_fields iov_iter_kvec fndecl 5-4 25747 NULL
++tics_vardecl_hfcpci_c_25752_fields tics vardecl_hfcpci.c 0 25752 NULL
++access_width_acpi_generic_address_25756_fields access_width acpi_generic_address 0 25756 NULL
++buffer_size_command_25757_fields buffer_size command 0 25757 NULL
++rh_urb_enqueue_fndecl_25758_fields rh_urb_enqueue fndecl 0 25758 NULL
++max_memblock_type_25766_fields max memblock_type 0 25766 NULL
++src_len_ccp_aes_engine_25770_fields src_len ccp_aes_engine 0 25770 NULL
++event_len_fanotify_event_metadata_25772_fields event_len fanotify_event_metadata 0 25772 NULL
++qla82xx_pci_mem_write_2M_fndecl_25790_fields qla82xx_pci_mem_write_2M fndecl 2 25790 NULL
++num_prealloc_crypto_pages_vardecl_crypto_c_25796_fields num_prealloc_crypto_pages vardecl_crypto.c 0 25796 NULL
++stolen_base_i915_gem_mm_25807_fields stolen_base i915_gem_mm 0 25807 NULL
++sgentry_align_brcmf_sdio_25813_fields sgentry_align brcmf_sdio 0 25813 NULL nohasharray
++lf_depth_gfs2_leaf_25813_fields lf_depth gfs2_leaf 0 25813 &sgentry_align_brcmf_sdio_25813_fields
++fjes_change_mtu_fndecl_25818_fields fjes_change_mtu fndecl 2 25818 NULL
++__kfifo_in_fndecl_25822_fields __kfifo_in fndecl 0 25822 NULL
++pages_per_rd_bio_scrub_ctx_25831_fields pages_per_rd_bio scrub_ctx 0 25831 NULL
++depth_cx25821_fmt_25832_fields depth cx25821_fmt 0 25832 NULL
++cookie_offset_nfsd4_readdir_25834_fields cookie_offset nfsd4_readdir 0 25834 NULL
++mmc_test_area_map_fndecl_25839_fields mmc_test_area_map fndecl 2-4 25839 NULL
++start_cxgb4_range_25845_fields start cxgb4_range 0 25845 NULL
++rvt_reg_user_mr_fndecl_25852_fields rvt_reg_user_mr fndecl 2-3-4 25852 NULL
++ric_ies_len_cfg80211_ft_event_params_25853_fields ric_ies_len cfg80211_ft_event_params 0 25853 NULL
++do_tune_cpucache_fndecl_25855_fields do_tune_cpucache fndecl 3-4 25855 NULL
++asize_mypriv_25864_fields asize mypriv 0 25864 NULL
++usVBlanking_Time__ATOM_DTD_FORMAT_25867_fields usVBlanking_Time _ATOM_DTD_FORMAT 0 25867 NULL
++ndlc_probe_fndecl_25869_fields ndlc_probe fndecl 4 25869 NULL
++vlan_dev_change_mtu_fndecl_25871_fields vlan_dev_change_mtu fndecl 2 25871 NULL
++btrfs_clone_file_range_fndecl_25875_fields btrfs_clone_file_range fndecl 4-2-5 25875 NULL
++buf_size_regmap_format_25880_fields buf_size regmap_format 0 25880 NULL
++sb_agblocks_xfs_sb_25887_fields sb_agblocks xfs_sb 0 25887 NULL
++width_virtio_gpu_rect_25892_fields width virtio_gpu_rect 0 25892 NULL nohasharray
++q_num_tx_buffers_qede_dev_25892_fields q_num_tx_buffers qede_dev 0 25892 &width_virtio_gpu_rect_25892_fields
++gid_tbl_len_ib_port_immutable_25893_fields gid_tbl_len ib_port_immutable 0 25893 NULL nohasharray
++i915_gem_batch_pool_get_fndecl_25893_fields i915_gem_batch_pool_get fndecl 2 25893 &gid_tbl_len_ib_port_immutable_25893_fields nohasharray
++intf_num_smi_info_25893_fields intf_num smi_info 0 25893 &i915_gem_batch_pool_get_fndecl_25893_fields
++vram_remap_vardecl_uvesafb_c_25907_fields vram_remap vardecl_uvesafb.c 0 25907 NULL
++sit_blocks_sit_info_25908_fields sit_blocks sit_info 0 25908 NULL
++acpi_get_override_irq_fndecl_25918_fields acpi_get_override_irq fndecl 1 25918 NULL
++__rs_setup_recovery_fndecl_25935_fields __rs_setup_recovery fndecl 2 25935 NULL
++ircomm_tty_connect_indication_fndecl_25936_fields ircomm_tty_connect_indication fndecl 4-5 25936 NULL
++smk_write_onlycap_fndecl_25939_fields smk_write_onlycap fndecl 3 25939 NULL
++n_piobufs_efx_ef10_nic_data_25940_fields n_piobufs efx_ef10_nic_data 0 25940 NULL
++shmem_getpage_gfp_fndecl_25948_fields shmem_getpage_gfp fndecl 2 25948 NULL
++__xfs_bmbt_get_all_fndecl_25952_fields __xfs_bmbt_get_all fndecl 2-1 25952 NULL
++cyttsp_spi_read_block_data_fndecl_25954_fields cyttsp_spi_read_block_data fndecl 4 25954 NULL
++len_xsd_sockmsg_25963_fields len xsd_sockmsg 0 25963 NULL nohasharray
++vchnl_vf_send_add_hmc_objs_req_fndecl_25963_fields vchnl_vf_send_add_hmc_objs_req fndecl 5 25963 &len_xsd_sockmsg_25963_fields
++ieee802154_hdr_get_sechdr_fndecl_25965_fields ieee802154_hdr_get_sechdr fndecl 0 25965 NULL
++memblock_remove_range_fndecl_25969_fields memblock_remove_range fndecl 3-2 25969 NULL
++fuse_getxattr_fndecl_25975_fields fuse_getxattr fndecl 5 25975 NULL
++vscnprintf_fndecl_25984_fields vscnprintf fndecl 0 25984 NULL
++ns_blocksize_bits_the_nilfs_25985_fields ns_blocksize_bits the_nilfs 0 25985 NULL
++split_state_fndecl_25992_fields split_state fndecl 0-4 25992 NULL
++vga_vram_size_vardecl_vgacon_c_25995_fields vga_vram_size vardecl_vgacon.c 0 25995 NULL
++get_sum_page_fndecl_26000_fields get_sum_page fndecl 2 26000 NULL
++len_ieee_types_header_26006_fields len ieee_types_header 0 26006 NULL
++udplite_getfrag_fndecl_26012_fields udplite_getfrag fndecl 4 26012 NULL
++core_name_size_vardecl_coredump_c_26013_fields core_name_size vardecl_coredump.c 0 26013 NULL
++ufs_load_cylinder_fndecl_26018_fields ufs_load_cylinder fndecl 2 26018 NULL
++platform_id_cb710_chip_26021_fields platform_id cb710_chip 0 26021 NULL
++touch_max_wacom_features_26029_fields touch_max wacom_features 0 26029 NULL
++__gfs2_fallocate_fndecl_26035_fields __gfs2_fallocate fndecl 4-3 26035 NULL
++EraseSize_NFTLrecord_26040_fields EraseSize NFTLrecord 0 26040 NULL
++rds_buf_vardecl_radio_wl1273_c_26043_fields rds_buf vardecl_radio-wl1273.c 0 26043 NULL
++ll_recv_fndecl_26047_fields ll_recv fndecl 3 26047 NULL
++md_template_size_netxen_minidump_26050_fields md_template_size netxen_minidump 0 26050 NULL
++l2cap_send_cmd_fndecl_26055_fields l2cap_send_cmd fndecl 4 26055 NULL
++physical_for_dev_replace_scrub_copy_nocow_ctx_26059_fields physical_for_dev_replace scrub_copy_nocow_ctx 0 26059 NULL
++nfc_hci_hcp_message_tx_fndecl_26069_fields nfc_hci_hcp_message_tx fndecl 6 26069 NULL
++remap_to_origin_then_cache_fndecl_26084_fields remap_to_origin_then_cache fndecl 4 26084 NULL
++skb_buf_size_vmxnet3_adapter_26088_fields skb_buf_size vmxnet3_adapter 0 26088 NULL
++vmci_transport_set_max_buffer_size_fndecl_26089_fields vmci_transport_set_max_buffer_size fndecl 2 26089 NULL
++num_vectors_i40e_qvlist_info_26091_fields num_vectors i40e_qvlist_info 0 26091 NULL
++__clear_extent_bit_fndecl_26097_fields __clear_extent_bit fndecl 2-3 26097 NULL nohasharray
++rds_ib_ring_resize_fndecl_26097_fields rds_ib_ring_resize fndecl 2 26097 &__clear_extent_bit_fndecl_26097_fields
++used_bytes_ubi_volume_26113_fields used_bytes ubi_volume 0 26113 NULL
++log_store_fndecl_26118_fields log_store fndecl 8 26118 NULL
++maxflows_sfq_sched_data_26122_fields maxflows sfq_sched_data 0 26122 NULL
++plane_mode_nvm_dev_26134_fields plane_mode nvm_dev 0 26134 NULL
++bits_per_pin_pcs_device_26141_fields bits_per_pin pcs_device 0 26141 NULL
++size_cyttsp4_tch_rec_params_26150_fields size cyttsp4_tch_rec_params 0 26150 NULL
++reno_count_yeah_26151_fields reno_count yeah 0 26151 NULL
++hid_register_report_fndecl_26154_fields hid_register_report fndecl 3 26154 NULL
++sense_len_megasas_iocpacket_26161_fields sense_len megasas_iocpacket 0 26161 NULL
++r_bitcnt_tiger_hw_26171_fields r_bitcnt tiger_hw 0 26171 NULL
++src_sz_max_ce_attr_26172_fields src_sz_max ce_attr 0 26172 NULL
++ci_buffer_size_dlm_config_info_26176_fields ci_buffer_size dlm_config_info 0 26176 NULL
++qcaspi_burst_len_vardecl_qca_spi_c_26179_fields qcaspi_burst_len vardecl_qca_spi.c 0 26179 NULL
++virtio_transport_get_credit_fndecl_26188_fields virtio_transport_get_credit fndecl 0-2 26188 NULL nohasharray
++video_vsize_solo_dev_26188_fields video_vsize solo_dev 0 26188 &virtio_transport_get_credit_fndecl_26188_fields
++drm_atomic_plane_set_property_fndecl_26190_fields drm_atomic_plane_set_property fndecl 4 26190 NULL nohasharray
++level_guest_walkerEPT_26190_fields level guest_walkerEPT 0 26190 &drm_atomic_plane_set_property_fndecl_26190_fields
++rq_num_pas_mlx5_ib_rwq_26195_fields rq_num_pas mlx5_ib_rwq 0 26195 NULL
++gue_remcsum_fndecl_26202_fields gue_remcsum fndecl 4 26202 NULL
++et131x_change_mtu_fndecl_26203_fields et131x_change_mtu fndecl 2 26203 NULL
++off_virtio_vsock_pkt_26209_fields off virtio_vsock_pkt 0 26209 NULL nohasharray
++bfad_debugfs_write_regrd_fndecl_26209_fields bfad_debugfs_write_regrd fndecl 3 26209 &off_virtio_vsock_pkt_26209_fields
++s_log_zone_size_isofs_sb_info_26211_fields s_log_zone_size isofs_sb_info 0 26211 NULL
++dev_cnt_usnic_uiom_pd_26213_fields dev_cnt usnic_uiom_pd 0 26213 NULL
++sst_wake_up_block_fndecl_26217_fields sst_wake_up_block fndecl 6 26217 NULL
++dr_post_altera_jtag_26219_fields dr_post altera_jtag 0 26219 NULL nohasharray
++ufx_handle_damage_fndecl_26219_fields ufx_handle_damage fndecl 5-4 26219 &dr_post_altera_jtag_26219_fields
++base_snd_cs46xx_region_26223_fields base snd_cs46xx_region 0 26223 NULL
++hfi1_dev_vardecl_device_c_26237_fields hfi1_dev vardecl_device.c 0 26237 NULL
++shift_rtl8xxxu_rxdesc24_26240_fields shift rtl8xxxu_rxdesc24 0 26240 NULL nohasharray
++tct_size_idt77252_dev_26240_fields tct_size idt77252_dev 0 26240 &shift_rtl8xxxu_rxdesc24_26240_fields
++max_srq_wr_ib_device_attr_26242_fields max_srq_wr ib_device_attr 0 26242 NULL
++can_gather_numa_stats_fndecl_26254_fields can_gather_numa_stats fndecl 3 26254 NULL
++den_snd_ratden_26264_fields den snd_ratden 0 26264 NULL
++decompress_pstore_zbackend_26274_fields decompress pstore_zbackend 0 26274 NULL
++fw_realloc_buffer_fndecl_26275_fields fw_realloc_buffer fndecl 2 26275 NULL
++width_stk1160_26279_fields width stk1160 0 26279 NULL
++simple_io_fndecl_26280_fields simple_io fndecl 4 26280 NULL nohasharray
++xlate_dev_mem_ptr_fndecl_26280_fields xlate_dev_mem_ptr fndecl 1 26280 &simple_io_fndecl_26280_fields
++send_write_fndecl_26285_fields send_write fndecl 6-0-5-4 26285 NULL
++size_rsn_ie_t_26289_fields size rsn_ie_t 0 26289 NULL
++hub_port_connect_fndecl_26292_fields hub_port_connect fndecl 2 26292 NULL nohasharray
++sc_max_sge_svcxprt_rdma_26292_fields sc_max_sge svcxprt_rdma 0 26292 &hub_port_connect_fndecl_26292_fields
++members_count_dlm_space_26293_fields members_count dlm_space 0 26293 NULL
++devm_gen_pool_create_fndecl_26295_fields devm_gen_pool_create fndecl 2 26295 NULL
++count_rio_transaction_26296_fields count rio_transaction 0 26296 NULL
++xskip_mt9t031_26297_fields xskip mt9t031 0 26297 NULL
++model_data_size_oxygen_model_26304_fields model_data_size oxygen_model 0 26304 NULL nohasharray
++xhci_common_hub_descriptor_fndecl_26304_fields xhci_common_hub_descriptor fndecl 3 26304 &model_data_size_oxygen_model_26304_fields
++w5200_spi_readbulk_fndecl_26307_fields w5200_spi_readbulk fndecl 4 26307 NULL
++debugfs_create_file_size_fndecl_26309_fields debugfs_create_file_size fndecl 6 26309 NULL
++used_core_name_26313_fields used core_name 0 26313 NULL
++drxdap_fasi_write_block_fndecl_26315_fields drxdap_fasi_write_block fndecl 3 26315 NULL
++irlan_connect_indication_fndecl_26316_fields irlan_connect_indication fndecl 5 26316 NULL
++mc_mask_radeon_mc_26322_fields mc_mask radeon_mc 0 26322 NULL
++ocfs2_read_refcount_block_fndecl_26330_fields ocfs2_read_refcount_block fndecl 2 26330 NULL
++fcoe_ctlr_send_keep_alive_fndecl_26335_fields fcoe_ctlr_send_keep_alive fndecl 3 26335 NULL
++maxchild_usb_device_26337_fields maxchild usb_device 0 26337 NULL nohasharray
++scif_pin_pages_fndecl_26337_fields scif_pin_pages fndecl 2 26337 &maxchild_usb_device_26337_fields
++broadcast_xmt_max_payload_fwnet_device_26343_fields broadcast_xmt_max_payload fwnet_device 0 26343 NULL
++vmw_cotable_resize_fndecl_26346_fields vmw_cotable_resize fndecl 2 26346 NULL
++hugetlbfs_pagecache_present_fndecl_26350_fields hugetlbfs_pagecache_present fndecl 3 26350 NULL nohasharray
++blkdev_readpages_fndecl_26350_fields blkdev_readpages fndecl 4 26350 &hugetlbfs_pagecache_present_fndecl_26350_fields
++__ocfs2_remove_xattr_range_fndecl_26353_fields __ocfs2_remove_xattr_range fndecl 5-4-3 26353 NULL
++kovaplus_sysfs_read_fndecl_26362_fields kovaplus_sysfs_read fndecl 6 26362 NULL
++scsi_eh_prep_cmnd_fndecl_26365_fields scsi_eh_prep_cmnd fndecl 5 26365 NULL
++max_mthca_alloc_26367_fields max mthca_alloc 0 26367 NULL
++xpnet_send_fndecl_26368_fields xpnet_send fndecl 3-4 26368 NULL nohasharray
++ts_tsid_gru_thread_state_26368_fields ts_tsid gru_thread_state 0 26368 &xpnet_send_fndecl_26368_fields
++buffer_length_TAG_TW_Ioctl_Driver_Command_26369_fields buffer_length TAG_TW_Ioctl_Driver_Command 0 26369 NULL
++ac_last_group_ocfs2_alloc_context_26384_fields ac_last_group ocfs2_alloc_context 0 26384 NULL
++dccp_sendmsg_fndecl_26385_fields dccp_sendmsg fndecl 3 26385 NULL
++dict_size_comp_opts_26391_fields dict_size comp_opts 0 26391 NULL
++maximum_num_physicals_aac_dev_26393_fields maximum_num_physicals aac_dev 0 26393 NULL
++transcnt_elsa_hw_26395_fields transcnt elsa_hw 0 26395 NULL
++ea_init_fndecl_26400_fields ea_init fndecl 5 26400 NULL
++gbuffers_vardecl_meye_c_26402_fields gbuffers vardecl_meye.c 0 26402 NULL
++bad_peb_limit_ubi_device_26403_fields bad_peb_limit ubi_device 0 26403 NULL nohasharray
++xhci_giveback_urb_in_irq_fndecl_26403_fields xhci_giveback_urb_in_irq fndecl 3 26403 &bad_peb_limit_ubi_device_26403_fields
++netlbl_catmap_walk_fndecl_26405_fields netlbl_catmap_walk fndecl 2 26405 NULL
++height_drm_mode_create_dumb_26406_fields height drm_mode_create_dumb 0 26406 NULL
++residualByteCnt_status_entry_26414_fields residualByteCnt status_entry 0 26414 NULL
++crtc_htotal_drm_display_mode_26418_fields crtc_htotal drm_display_mode 0 26418 NULL
++xfs_bmapi_convert_unwritten_fndecl_26421_fields xfs_bmapi_convert_unwritten fndecl 0 26421 NULL
++mmio_size_lpss_private_data_26423_fields mmio_size lpss_private_data 0 26423 NULL
++mod_start_extent_map_26431_fields mod_start extent_map 0 26431 NULL
++wtmax_nfs_fsinfo_26434_fields wtmax nfs_fsinfo 0 26434 NULL
++__adjust_resource_fndecl_26436_fields __adjust_resource fndecl 3-2 26436 NULL
++packets_snd_urb_ctx_26437_fields packets snd_urb_ctx 0 26437 NULL
++map_capacity_cw1200_queue_stats_26439_fields map_capacity cw1200_queue_stats 0 26439 NULL
++compute_pipe_count_kgd2kfd_shared_resources_26445_fields compute_pipe_count kgd2kfd_shared_resources 0 26445 NULL
++max_req_size_mmc_host_26446_fields max_req_size mmc_host 0 26446 NULL nohasharray
++sierra_net_change_mtu_fndecl_26446_fields sierra_net_change_mtu fndecl 2 26446 &max_req_size_mmc_host_26446_fields
++size_aper_size_info_fixed_26447_fields size aper_size_info_fixed 0 26447 NULL
++width_cobalt_stream_26451_fields width cobalt_stream 0 26451 NULL
++qp_memcpy_to_queue_iov_fndecl_26456_fields qp_memcpy_to_queue_iov fndecl 5-2 26456 NULL
++global_irq_base_acpi_madt_io_apic_26467_fields global_irq_base acpi_madt_io_apic 0 26467 NULL
++usbat_bulk_read_fndecl_26469_fields usbat_bulk_read fndecl 3 26469 NULL
++tpg_reset_source_fndecl_26472_fields tpg_reset_source fndecl 2-3 26472 NULL
++iscsi_conn_context_id_iscsi_kcqe_26475_fields iscsi_conn_context_id iscsi_kcqe 0 26475 NULL
++nr_kioctx_table_26477_fields nr kioctx_table 0 26477 NULL
++btt_read_pg_fndecl_26478_fields btt_read_pg fndecl 0 26478 NULL
++len_seq_buf_26481_fields len seq_buf 0 26481 NULL
++pte_to_pagemap_entry_fndecl_26482_fields pte_to_pagemap_entry fndecl 3 26482 NULL nohasharray
++page_cache_next_hole_fndecl_26482_fields page_cache_next_hole fndecl 0-2 26482 &pte_to_pagemap_entry_fndecl_26482_fields
++max_osd_ceph_osdmap_26483_fields max_osd ceph_osdmap 0 26483 NULL
++__ip6_append_data_fndecl_26484_fields __ip6_append_data fndecl 10-9 26484 NULL
++count_xfs_dir2_sf_hdr_26486_fields count xfs_dir2_sf_hdr 0 26486 NULL
++setup_max_cpus_vardecl_26488_fields setup_max_cpus vardecl 0 26488 NULL
++tipc_bcast_get_mtu_fndecl_26493_fields tipc_bcast_get_mtu fndecl 0 26493 NULL nohasharray
++pa_lstart_ext4_prealloc_space_26493_fields pa_lstart ext4_prealloc_space 0 26493 &tipc_bcast_get_mtu_fndecl_26493_fields
++ndr_start_nd_region_26496_fields ndr_start nd_region 0 26496 NULL
++remap_and_issue_overwrite_fndecl_26499_fields remap_and_issue_overwrite fndecl 3 26499 NULL
++drm_fb_helper_dirty_fndecl_26526_fields drm_fb_helper_dirty fndecl 3-5-2-4 26526 NULL nohasharray
++t4_max_cq_depth_c4iw_hw_queue_26526_fields t4_max_cq_depth c4iw_hw_queue 0 26526 &drm_fb_helper_dirty_fndecl_26526_fields
++devm_memremap_fndecl_26527_fields devm_memremap fndecl 3-2 26527 NULL
++sync_buf_offs_pvr2_ioread_26534_fields sync_buf_offs pvr2_ioread 0 26534 NULL
++myri10ge_max_slices_vardecl_myri10ge_c_26536_fields myri10ge_max_slices vardecl_myri10ge.c 0 26536 NULL
++rss_lut_size_i40evf_adapter_26546_fields rss_lut_size i40evf_adapter 0 26546 NULL nohasharray
++onenand_write_fndecl_26546_fields onenand_write fndecl 2 26546 &rss_lut_size_i40evf_adapter_26546_fields
++pci_irq_pcmcia_socket_26558_fields pci_irq pcmcia_socket 0 26558 NULL
++maxdepth_sfq_sched_data_26560_fields maxdepth sfq_sched_data 0 26560 NULL
++fifo_blocks_vxge_hw_fifo_config_26565_fields fifo_blocks vxge_hw_fifo_config 0 26565 NULL
++br_change_mtu_fndecl_26571_fields br_change_mtu fndecl 2 26571 NULL
++wMaxSegmentSize_usb_cdc_mbim_desc_26572_fields wMaxSegmentSize usb_cdc_mbim_desc 0 26572 NULL
++ra_tid_iwl_mvm_tx_resp_26576_fields ra_tid iwl_mvm_tx_resp 0 26576 NULL
++sd_log_flush_head_gfs2_sbd_26577_fields sd_log_flush_head gfs2_sbd 0 26577 NULL
++smbios_entry_point_size_vardecl_dmi_scan_c_26579_fields smbios_entry_point_size vardecl_dmi_scan.c 0 26579 NULL
++read_tree_block_fndecl_26587_fields read_tree_block fndecl 2 26587 NULL nohasharray
++initial_ssthresh_vardecl_tcp_cubic_c_26587_fields initial_ssthresh vardecl_tcp_cubic.c 0 26587 &read_tree_block_fndecl_26587_fields
++rates_len_add_sta_param_26593_fields rates_len add_sta_param 0 26593 NULL
++tx_desc_count_xgbe_prv_data_26603_fields tx_desc_count xgbe_prv_data 0 26603 NULL
++UMAsize_sis_video_info_26611_fields UMAsize sis_video_info 0 26611 NULL
++width_drm_vmw_size_26615_fields width drm_vmw_size 0 26615 NULL
++control_blocks_gru_create_context_req_26616_fields control_blocks gru_create_context_req 0 26616 NULL
++data_out_ep_vub300_mmc_host_26618_fields data_out_ep vub300_mmc_host 0 26618 NULL
++airspy_convert_stream_fndecl_26619_fields airspy_convert_stream fndecl 0-4 26619 NULL
++usb_rh_urb_dequeue_fndecl_26620_fields usb_rh_urb_dequeue fndecl 3 26620 NULL
++smscore_load_firmware_family2_fndecl_26621_fields smscore_load_firmware_family2 fndecl 3 26621 NULL
++hub_port_connect_change_fndecl_26625_fields hub_port_connect_change fndecl 2 26625 NULL
++data_len_ipmi_msg_26626_fields data_len ipmi_msg 0 26626 NULL
++hdac_hdmi_fill_widget_info_fndecl_26629_fields hdac_hdmi_fill_widget_info fndecl 8 26629 NULL
++l2_fhdr_pkt_len_l2_fhdr_26630_fields l2_fhdr_pkt_len l2_fhdr 0 26630 NULL
++facs_acpi_table_fadt_26632_fields facs acpi_table_fadt 0 26632 NULL
++mpt_lan_receive_post_turbo_fndecl_26635_fields mpt_lan_receive_post_turbo fndecl 2 26635 NULL
++qxl_draw_dirty_fb_fndecl_26636_fields qxl_draw_dirty_fb fndecl 7 26636 NULL
++i40e_change_mtu_fndecl_26637_fields i40e_change_mtu fndecl 2 26637 NULL
++h_length_dlm_header_26639_fields h_length dlm_header 0 26639 NULL nohasharray
++aac_sa_ioremap_fndecl_26639_fields aac_sa_ioremap fndecl 2 26639 &h_length_dlm_header_26639_fields nohasharray
++irias_new_octseq_value_fndecl_26639_fields irias_new_octseq_value fndecl 2 26639 &aac_sa_ioremap_fndecl_26639_fields
++fh_size_knfsd_fh_26641_fields fh_size knfsd_fh 0 26641 NULL
++size_drm_global_reference_26642_fields size drm_global_reference 0 26642 NULL nohasharray
++sys_madvise_fndecl_26642_fields sys_madvise fndecl 2-1 26642 &size_drm_global_reference_26642_fields
++platform_device_alloc_fndecl_26645_fields platform_device_alloc fndecl 2 26645 NULL
++n_namesz_elf64_note_26646_fields n_namesz elf64_note 0 26646 NULL
++max_wqes_mlx4_caps_26647_fields max_wqes mlx4_caps 0 26647 NULL
++spi_populate_width_msg_fndecl_26651_fields spi_populate_width_msg fndecl 0 26651 NULL
++front_len_ceph_msgpool_26653_fields front_len ceph_msgpool 0 26653 NULL
++pmcraid_get_minor_fndecl_26656_fields pmcraid_get_minor fndecl 0 26656 NULL
++nr_recvmsg_fndecl_26658_fields nr_recvmsg fndecl 3 26658 NULL
++jbd2_journal_begin_ordered_truncate_fndecl_26661_fields jbd2_journal_begin_ordered_truncate fndecl 3 26661 NULL
++qed_qm_pf_mem_size_fndecl_26667_fields qed_qm_pf_mem_size fndecl 0 26667 NULL
++hdlc_change_mtu_fndecl_26672_fields hdlc_change_mtu fndecl 2 26672 NULL
++oobsize_mtd_info_26683_fields oobsize mtd_info 0 26683 NULL
++swap_cgroup_swapon_fndecl_26685_fields swap_cgroup_swapon fndecl 2 26685 NULL
++rx_buff_len_amd8111e_priv_26693_fields rx_buff_len amd8111e_priv 0 26693 NULL
++raw_request_hid_ll_driver_26699_fields raw_request hid_ll_driver 0 26699 NULL
++packet_snd_fndecl_26705_fields packet_snd fndecl 3 26705 NULL
++musb_ep_program_fndecl_26707_fields musb_ep_program fndecl 7 26707 NULL
++x509_extract_name_segment_fndecl_26716_fields x509_extract_name_segment fndecl 5 26716 NULL
++i915_gem_obj_ggtt_offset_view_fndecl_26723_fields i915_gem_obj_ggtt_offset_view fndecl 0 26723 NULL
++max_transfer_size_rndis_init_c_26725_fields max_transfer_size rndis_init_c 0 26725 NULL
++fuse_copy_pages_fndecl_26731_fields fuse_copy_pages fndecl 2 26731 NULL
++ocfs2_xattr_set_handle_fndecl_26732_fields ocfs2_xattr_set_handle fndecl 7 26732 NULL
++minor_uart_driver_26739_fields minor uart_driver 0 26739 NULL
++add_index_fndecl_26744_fields add_index fndecl 0 26744 NULL nohasharray
++xfs_filestream_lookup_ag_fndecl_26744_fields xfs_filestream_lookup_ag fndecl 0 26744 &add_index_fndecl_26744_fields
++block_size_befs_sb_info_26751_fields block_size befs_sb_info 0 26751 NULL
++raw_serial_size_pkcs7_parse_context_26761_fields raw_serial_size pkcs7_parse_context 0 26761 NULL
++nAcks_rxrpc_ackpacket_26767_fields nAcks rxrpc_ackpacket 0 26767 NULL
++tipc_send_stream_fndecl_26771_fields tipc_send_stream fndecl 3 26771 NULL
++rdma_rw_init_single_wr_fndecl_26775_fields rdma_rw_init_single_wr fndecl 4-5 26775 NULL
++hb_size_hashbin_t_26779_fields hb_size hashbin_t 0 26779 NULL
++__perf_event_read_size_fndecl_26786_fields __perf_event_read_size fndecl 2 26786 NULL
++max_support_points_edt_ft5x06_ts_data_26799_fields max_support_points edt_ft5x06_ts_data 0 26799 NULL
++ocfs2_cache_block_dealloc_fndecl_26800_fields ocfs2_cache_block_dealloc fndecl 6-5-4 26800 NULL
++width_v4l2_rect_26802_fields width v4l2_rect 0 26802 NULL
++dwc2_hsotg_set_ep_maxpacket_fndecl_26815_fields dwc2_hsotg_set_ep_maxpacket fndecl 3 26815 NULL
++ramdisk_image_setup_header_26821_fields ramdisk_image setup_header 0 26821 NULL
++qlcnic_max_rings_fndecl_26823_fields qlcnic_max_rings fndecl 2 26823 NULL
++l2tp_ip_recvmsg_fndecl_26826_fields l2tp_ip_recvmsg fndecl 3 26826 NULL
++bEndpointAddress_usb_endpoint_descriptor_26829_fields bEndpointAddress usb_endpoint_descriptor 0 26829 NULL
++vc_screenbuf_size_vc_data_26832_fields vc_screenbuf_size vc_data 0 26832 NULL nohasharray
++ath6kl_wmi_add_del_mcast_filter_cmd_fndecl_26832_fields ath6kl_wmi_add_del_mcast_filter_cmd fndecl 2 26832 &vc_screenbuf_size_vc_data_26832_fields
++header_sectors_per_block_partition_26836_fields header_sectors_per_block partition 0 26836 NULL
++size_sram_reserve_26839_fields size sram_reserve 0 26839 NULL
++offset_resource_entry_26851_fields offset resource_entry 0 26851 NULL
++sizeof_flush_fndecl_26863_fields sizeof_flush fndecl 0 26863 NULL
++osd_req_add_get_attr_page_fndecl_26866_fields osd_req_add_get_attr_page fndecl 4 26866 NULL
++try_get_cap_refs_fndecl_26867_fields try_get_cap_refs fndecl 0 26867 NULL
++dlc_usb_8dev_rx_msg_26873_fields dlc usb_8dev_rx_msg 0 26873 NULL nohasharray
++pipe_in_lan78xx_net_26873_fields pipe_in lan78xx_net 0 26873 &dlc_usb_8dev_rx_msg_26873_fields
++pci_address_to_pio_fndecl_26876_fields pci_address_to_pio fndecl 0-1 26876 NULL
++mwifiex_sdio_card_to_host_mp_aggr_fndecl_26877_fields mwifiex_sdio_card_to_host_mp_aggr fndecl 2 26877 NULL
++n_allocated_vis_efx_ef10_nic_data_26878_fields n_allocated_vis efx_ef10_nic_data 0 26878 NULL
++us122l_ctl_msg_fndecl_26881_fields us122l_ctl_msg fndecl 8 26881 NULL
++dev_bytenr_btrfsic_block_data_ctx_26882_fields dev_bytenr btrfsic_block_data_ctx 0 26882 NULL nohasharray
++sym_set_cam_result_error_fndecl_26882_fields sym_set_cam_result_error fndecl 3 26882 &dev_bytenr_btrfsic_block_data_ctx_26882_fields
++out_skip_ceph_connection_26886_fields out_skip ceph_connection 0 26886 NULL
++xdr_process_buf_fndecl_26887_fields xdr_process_buf fndecl 3-2 26887 NULL
++head_floppy_struct_26890_fields head floppy_struct 0 26890 NULL
++len_f2fs_defragment_26892_fields len f2fs_defragment 0 26892 NULL nohasharray
++agno_xfs_alloc_arg_26892_fields agno xfs_alloc_arg 0 26892 &len_f2fs_defragment_26892_fields
++find_get_pages_contig_fndecl_26902_fields find_get_pages_contig fndecl 0 26902 NULL
++raid_disks_r5conf_26904_fields raid_disks r5conf 0 26904 NULL
++ctx_len_xfrm_user_sec_ctx_26911_fields ctx_len xfrm_user_sec_ctx 0 26911 NULL nohasharray
++stack_user_size_perf_sample_data_26911_fields stack_user_size perf_sample_data 0 26911 &ctx_len_xfrm_user_sec_ctx_26911_fields
++port_event_fndecl_26912_fields port_event fndecl 2 26912 NULL
++num_slots_rtsx_pcr_26914_fields num_slots rtsx_pcr 0 26914 NULL
++hscx_empty_fifo_fndecl_26915_fields hscx_empty_fifo fndecl 2 26915 NULL nohasharray
++jffs2_flash_writev_fndecl_26915_fields jffs2_flash_writev fndecl 4 26915 &hscx_empty_fifo_fndecl_26915_fields
++w5500_spi_writebulk_fndecl_26916_fields w5500_spi_writebulk fndecl 4 26916 NULL
++get_wep_key_fndecl_26919_fields get_wep_key fndecl 0-4 26919 NULL nohasharray
++nvmet_rdma_use_inline_sg_fndecl_26919_fields nvmet_rdma_use_inline_sg fndecl 2-3 26919 &get_wep_key_fndecl_26919_fields
++amdgpu_bo_create_restricted_fndecl_26920_fields amdgpu_bo_create_restricted fndecl 2 26920 NULL
++to_skip_sd_26922_fields to_skip sd 0 26922 NULL
++count_vnic_res_26925_fields count vnic_res 0 26925 NULL
++major_intel_th_26929_fields major intel_th 0 26929 NULL
++get_bits_fndecl_26938_fields get_bits fndecl 0-2 26938 NULL
++granularity_vx_ibl_info_26939_fields granularity vx_ibl_info 0 26939 NULL
++tx_nr_pages_bnxt_26942_fields tx_nr_pages bnxt 0 26942 NULL
++il4965_pass_packet_to_mac80211_fndecl_26945_fields il4965_pass_packet_to_mac80211 fndecl 3 26945 NULL
++br_vlan_set_default_pvid_fndecl_26946_fields br_vlan_set_default_pvid fndecl 2 26946 NULL nohasharray
++chunk_size_drxk_config_26946_fields chunk_size drxk_config 0 26946 &br_vlan_set_default_pvid_fndecl_26946_fields
++stripe_set_idx_fndecl_26948_fields stripe_set_idx fndecl 1 26948 NULL
++width_v4l2_pix_format_mplane_26950_fields width v4l2_pix_format_mplane 0 26950 NULL
++cid_cnic_context_26952_fields cid cnic_context 0 26952 NULL
++bulk_out_endp_ttusbir_26955_fields bulk_out_endp ttusbir 0 26955 NULL nohasharray
++id_tps6586x_subdev_info_26955_fields id tps6586x_subdev_info 0 26955 &bulk_out_endp_ttusbir_26955_fields
++sky2_receive_fndecl_26956_fields sky2_receive fndecl 2 26956 NULL
++carl9170_rx_untie_data_fndecl_26958_fields carl9170_rx_untie_data fndecl 3 26958 NULL
++bulk_in_ep_bfusb_data_26959_fields bulk_in_ep bfusb_data 0 26959 NULL
++cfpkt_extr_trail_fndecl_26960_fields cfpkt_extr_trail fndecl 3 26960 NULL
++bt_sock_recvmsg_fndecl_26967_fields bt_sock_recvmsg fndecl 3 26967 NULL
++brk_mm_struct_26976_fields brk mm_struct 0 26976 NULL nohasharray
++init_allocator_fndecl_26976_fields init_allocator fndecl 3 26976 &brk_mm_struct_26976_fields
++ctrl_out_pipe_hfcusb_data_26981_fields ctrl_out_pipe hfcusb_data 0 26981 NULL
++num_waitchks_drm_tegra_submit_26983_fields num_waitchks drm_tegra_submit 0 26983 NULL
++skd_skreq_prep_buffering_fndecl_26987_fields skd_skreq_prep_buffering fndecl 3 26987 NULL
++__tipc_send_stream_fndecl_26990_fields __tipc_send_stream fndecl 3 26990 NULL nohasharray
++smb_sendv_fndecl_26990_fields smb_sendv fndecl 3 26990 &__tipc_send_stream_fndecl_26990_fields
++address_length_acpi_address64_attribute_26992_fields address_length acpi_address64_attribute 0 26992 NULL
++delete_empty_dnode_fndecl_26994_fields delete_empty_dnode fndecl 2 26994 NULL
++buffer_bytes_snd_card_asihpi_pcm_26997_fields buffer_bytes snd_card_asihpi_pcm 0 26997 NULL
++ser_write_chunk_vardecl_caif_serial_c_26999_fields ser_write_chunk vardecl_caif_serial.c 0 26999 NULL
++get_mpc_size_fndecl_27000_fields get_mpc_size fndecl 0 27000 NULL
++task_array_size_cnic_local_27004_fields task_array_size cnic_local 0 27004 NULL
++n_tty_receive_buf_common_fndecl_27013_fields n_tty_receive_buf_common fndecl 4 27013 NULL
++nfs4_set_security_label_fndecl_27018_fields nfs4_set_security_label fndecl 3 27018 NULL
++ath6kl_cfg80211_connect_event_fndecl_27024_fields ath6kl_cfg80211_connect_event fndecl 9-8 27024 NULL
++dx_fb_copyarea_27025_fields dx fb_copyarea 0 27025 NULL
++shift_radix_tree_node_27029_fields shift radix_tree_node 0 27029 NULL nohasharray
++__bufio_new_fndecl_27029_fields __bufio_new fndecl 2 27029 &shift_radix_tree_node_27029_fields
++overhead_sctp_packet_27032_fields overhead sctp_packet 0 27032 NULL
++rdma_rw_ctx_signature_init_fndecl_27033_fields rdma_rw_ctx_signature_init fndecl 9 27033 NULL
++read_capacity_16_fndecl_27039_fields read_capacity_16 fndecl 0 27039 NULL
++device_pci_dev_27044_fields device pci_dev 0 27044 NULL
++ext_prop_data_store_fndecl_27045_fields ext_prop_data_store fndecl 3 27045 NULL
++remains_vardecl_initramfs_c_27049_fields remains vardecl_initramfs.c 0 27049 NULL
++brcmf_sdiod_ramrw_fndecl_27055_fields brcmf_sdiod_ramrw fndecl 5-3 27055 NULL
++indices_fm10k_ring_feature_27057_fields indices fm10k_ring_feature 0 27057 NULL
++iscsi_post_host_event_fndecl_27058_fields iscsi_post_host_event fndecl 4 27058 NULL
++ife_get_sz_fndecl_27062_fields ife_get_sz fndecl 0 27062 NULL
++sb_init_dio_done_wq_fndecl_27065_fields sb_init_dio_done_wq fndecl 0 27065 NULL
++new_layout_mddev_27083_fields new_layout mddev 0 27083 NULL
++max_wqes_rqes_per_q_ocrdma_mbx_query_config_27086_fields max_wqes_rqes_per_q ocrdma_mbx_query_config 0 27086 NULL
++far_set_size_geom_27088_fields far_set_size geom 0 27088 NULL
++vid_hdr_aloffset_ubi_device_27089_fields vid_hdr_aloffset ubi_device 0 27089 NULL
++mei_devt_vardecl_main_c_27090_fields mei_devt vardecl_main.c 0 27090 NULL nohasharray
++file_size_perf_mmap_event_27090_fields file_size perf_mmap_event 0 27090 &mei_devt_vardecl_main_c_27090_fields
++num_counters_compat_arpt_replace_27091_fields num_counters compat_arpt_replace 0 27091 NULL
++native_chipselects_mpc8xxx_spi_27093_fields native_chipselects mpc8xxx_spi 0 27093 NULL
++__btrfs_alloc_chunk_fndecl_27105_fields __btrfs_alloc_chunk fndecl 3 27105 NULL nohasharray
++i_suballoc_bit_ocfs2_dinode_27105_fields i_suballoc_bit ocfs2_dinode 0 27105 &__btrfs_alloc_chunk_fndecl_27105_fields
++iser_max_sectors_vardecl_27108_fields iser_max_sectors vardecl 0 27108 NULL
++len_lpfc_debug_27115_fields len lpfc_debug 0 27115 NULL nohasharray
++usb_hcd_link_urb_to_ep_fndecl_27115_fields usb_hcd_link_urb_to_ep fndecl 0 27115 &len_lpfc_debug_27115_fields
++gpa_gfn_to_hva_cache_27125_fields gpa gfn_to_hva_cache 0 27125 NULL
++mwifiex_sdio_card_to_host_fndecl_27127_fields mwifiex_sdio_card_to_host fndecl 4 27127 NULL nohasharray
++non_atomic_pte_lookup_fndecl_27127_fields non_atomic_pte_lookup fndecl 2 27127 &mwifiex_sdio_card_to_host_fndecl_27127_fields
++pd_count_ocrdma_alloc_pd_range_rsp_27128_fields pd_count ocrdma_alloc_pd_range_rsp 0 27128 NULL
++sys32_fadvise64_fndecl_27136_fields sys32_fadvise64 fndecl 4 27136 NULL
++mtu_rfcomm_dlc_27139_fields mtu rfcomm_dlc 0 27139 NULL nohasharray
++mappable_base_i915_ggtt_27139_fields mappable_base i915_ggtt 0 27139 &mtu_rfcomm_dlc_27139_fields nohasharray
++dwc_get_residue_fndecl_27139_fields dwc_get_residue fndecl 0 27139 &mappable_base_i915_ggtt_27139_fields
++rx_ps_bsize0_e1000_adapter_27144_fields rx_ps_bsize0 e1000_adapter 0 27144 NULL
++_nfs4_proc_readdir_fndecl_27153_fields _nfs4_proc_readdir fndecl 5 27153 NULL
++xor_align_dma_device_27155_fields xor_align dma_device 0 27155 NULL nohasharray
++dgram_recvmsg_fndecl_27155_fields dgram_recvmsg fndecl 3 27155 &xor_align_dma_device_27155_fields
++total_h_mt9m001_27157_fields total_h mt9m001 0 27157 NULL
++len_nf_ct_ext_type_27159_fields len nf_ct_ext_type 0 27159 NULL
++helper_name_len_drbd_helper_info_27161_fields helper_name_len drbd_helper_info 0 27161 NULL
++bbRcvSizeLsb_csp_27167_fields bbRcvSizeLsb csp 0 27167 NULL
++len_rdesc0_27169_fields len rdesc0 0 27169 NULL
++cow_start_ocfs2_cow_context_27171_fields cow_start ocfs2_cow_context 0 27171 NULL
++bnep_send_fndecl_27175_fields bnep_send fndecl 3 27175 NULL
++e100_change_mtu_fndecl_27180_fields e100_change_mtu fndecl 2 27180 NULL
++compat_sys_ftruncate_fndecl_27189_fields compat_sys_ftruncate fndecl 2 27189 NULL
++brcmf_sdio_bus_txctl_fndecl_27192_fields brcmf_sdio_bus_txctl fndecl 3 27192 NULL
++write_tty_operations_27198_fields write tty_operations 0 27198 NULL nohasharray
++caif_stream_recvmsg_fndecl_27198_fields caif_stream_recvmsg fndecl 3 27198 &write_tty_operations_27198_fields
++netup_unidvb_dma_init_fndecl_27199_fields netup_unidvb_dma_init fndecl 2 27199 NULL
++tpm_tis_spi_read_bytes_fndecl_27206_fields tpm_tis_spi_read_bytes fndecl 3 27206 NULL
++ath6kl_wmi_scanparams_cmd_fndecl_27208_fields ath6kl_wmi_scanparams_cmd fndecl 2 27208 NULL
++__ext4_read_dirblock_fndecl_27210_fields __ext4_read_dirblock fndecl 2 27210 NULL
++nr_bos_drm_etnaviv_gem_submit_27211_fields nr_bos drm_etnaviv_gem_submit 0 27211 NULL
++block_size_scsi_tape_27212_fields block_size scsi_tape 0 27212 NULL
++num_prior_parent_snaps_ceph_mds_snap_realm_27215_fields num_prior_parent_snaps ceph_mds_snap_realm 0 27215 NULL
++sdio_memcpy_fromio_fndecl_27218_fields sdio_memcpy_fromio fndecl 4 27218 NULL
++sym_prepare_nego_fndecl_27219_fields sym_prepare_nego fndecl 0 27219 NULL
++bm_bn_xfs_buf_map_27223_fields bm_bn xfs_buf_map 0 27223 NULL
++gsm_dlci_data_fndecl_27224_fields gsm_dlci_data fndecl 3 27224 NULL
++arm_db_page_mthca_create_cq_27227_fields arm_db_page mthca_create_cq 0 27227 NULL
++iwl_store_ucode_sec_fndecl_27235_fields iwl_store_ucode_sec fndecl 4 27235 NULL
++qib_cfgctxts_vardecl_27236_fields qib_cfgctxts vardecl 0 27236 NULL nohasharray
++acks_winsz_rxrpc_call_27236_fields acks_winsz rxrpc_call 0 27236 &qib_cfgctxts_vardecl_27236_fields
++do_splice_fndecl_27239_fields do_splice fndecl 5 27239 NULL
++hfsplus_brec_find_fndecl_27243_fields hfsplus_brec_find fndecl 0 27243 NULL
++name_len_ceph_mds_reply_dir_entry_27245_fields name_len ceph_mds_reply_dir_entry 0 27245 NULL
++sisusb_recv_bulk_msg_fndecl_27246_fields sisusb_recv_bulk_msg fndecl 3-2 27246 NULL
++skb_read_pdu_data_fndecl_27249_fields skb_read_pdu_data fndecl 4 27249 NULL
++zoneshift_alauda_card_info_27252_fields zoneshift alauda_card_info 0 27252 NULL nohasharray
++ocfs2_xattr_value_truncate_fndecl_27252_fields ocfs2_xattr_value_truncate fndecl 3 27252 &zoneshift_alauda_card_info_27252_fields
++amb_base_i5k_amb_data_27255_fields amb_base i5k_amb_data 0 27255 NULL
++num_tx_qs_be_adapter_27257_fields num_tx_qs be_adapter 0 27257 NULL
++__platform_create_bundle_fndecl_27260_fields __platform_create_bundle fndecl 6-4 27260 NULL
++sector_drbd_interval_27266_fields sector drbd_interval 0 27266 NULL
++alloc_swapdev_block_fndecl_27267_fields alloc_swapdev_block fndecl 0 27267 NULL
++truesize_iwl_rx_cmd_buffer_27273_fields truesize iwl_rx_cmd_buffer 0 27273 NULL
++bios_hardcoded_edid_size_amdgpu_mode_info_27277_fields bios_hardcoded_edid_size amdgpu_mode_info 0 27277 NULL
++netxen_process_rcv_fndecl_27279_fields netxen_process_rcv fndecl 4 27279 NULL
++alloc_async_fndecl_27283_fields alloc_async fndecl 1 27283 NULL
++sector_r10bio_27298_fields sector r10bio 0 27298 NULL
++offset_mlx5_ib_wq_27302_fields offset mlx5_ib_wq 0 27302 NULL
++ath6kl_connect_event_fndecl_27304_fields ath6kl_connect_event fndecl 7-9-8 27304 NULL
++gpu_mem_size_vml_par_27308_fields gpu_mem_size vml_par 0 27308 NULL
++sctp_recvmsg_fndecl_27314_fields sctp_recvmsg fndecl 3 27314 NULL
++chunk_sectors_r5conf_27317_fields chunk_sectors r5conf 0 27317 NULL
++lpe_size_sst_pdata_27329_fields lpe_size sst_pdata 0 27329 NULL
++write_buffer_fndecl_27339_fields write_buffer fndecl 2-0 27339 NULL
++align_pad_cqe_rx_t_27341_fields align_pad cqe_rx_t 0 27341 NULL
++sndbuf_tun_struct_27345_fields sndbuf tun_struct 0 27345 NULL
++acpi_os_map_iomem_fndecl_27346_fields acpi_os_map_iomem fndecl 2-1 27346 NULL nohasharray
++add_numbered_child_fndecl_27346_fields add_numbered_child fndecl 7-8-3-5 27346 &acpi_os_map_iomem_fndecl_27346_fields
++pix_format_set_size_fndecl_27356_fields pix_format_set_size fndecl 3-4 27356 NULL
++static_data_priv_len_wl1271_27357_fields static_data_priv_len wl1271 0 27357 NULL
++xfs_bmap_last_offset_fndecl_27364_fields xfs_bmap_last_offset fndecl 0 27364 NULL
++find_new_extents_fndecl_27368_fields find_new_extents fndecl 5 27368 NULL
++channels_pda_pa_curve_data_27369_fields channels pda_pa_curve_data 0 27369 NULL nohasharray
++pci_iov_remove_virtfn_fndecl_27369_fields pci_iov_remove_virtfn fndecl 2 27369 &channels_pda_pa_curve_data_27369_fields
++num_altsetting_usb_interface_27371_fields num_altsetting usb_interface 0 27371 NULL
++mod_len_ccp_rsa_engine_27374_fields mod_len ccp_rsa_engine 0 27374 NULL nohasharray
++urb_size_tm6000_core_27374_fields urb_size tm6000_core 0 27374 &mod_len_ccp_rsa_engine_27374_fields
++dwNtbOutMaxSize_usb_cdc_ncm_ntb_parameters_27384_fields dwNtbOutMaxSize usb_cdc_ncm_ntb_parameters 0 27384 NULL
++frame_size_audioformat_27394_fields frame_size audioformat 0 27394 NULL
++ccid_kmem_cache_create_fndecl_27397_fields ccid_kmem_cache_create fndecl 1 27397 NULL
++iscsit_xmit_nondatain_pdu_fndecl_27400_fields iscsit_xmit_nondatain_pdu fndecl 4 27400 NULL
++btrfs_copy_from_user_fndecl_27405_fields btrfs_copy_from_user fndecl 0-1-2 27405 NULL nohasharray
++m_bsize_xfs_mount_27405_fields m_bsize xfs_mount 0 27405 &btrfs_copy_from_user_fndecl_27405_fields
++max_payload_rpc_xprt_27408_fields max_payload rpc_xprt 0 27408 NULL
++bucket_table_alloc_fndecl_27422_fields bucket_table_alloc fndecl 2 27422 NULL
++service_name_len_nfc_llcp_sock_27424_fields service_name_len nfc_llcp_sock 0 27424 NULL nohasharray
++dst_frames_snd_pcm_plugin_27424_fields dst_frames snd_pcm_plugin 0 27424 &service_name_len_nfc_llcp_sock_27424_fields
++build_virtual_key_fndecl_27427_fields build_virtual_key fndecl 2 27427 NULL
++ad9523_read_fndecl_27434_fields ad9523_read fndecl 2 27434 NULL
++__fsnotify_parent_fndecl_27437_fields __fsnotify_parent fndecl 0 27437 NULL nohasharray
++qp_memcpy_to_queue_fndecl_27437_fields qp_memcpy_to_queue fndecl 5-2 27437 &__fsnotify_parent_fndecl_27437_fields
++regmap_spi_async_write_fndecl_27439_fields regmap_spi_async_write fndecl 3-5 27439 NULL
++produce_size_vmci_qp_alloc_info_vmvm_27440_fields produce_size vmci_qp_alloc_info_vmvm 0 27440 NULL
++mpwqe_log_num_strides_mlx5e_params_27444_fields mpwqe_log_num_strides mlx5e_params 0 27444 NULL
++radeon_vm_block_size_vardecl_27445_fields radeon_vm_block_size vardecl 0 27445 NULL
++lpfc_sriov_nr_virtfn_vardecl_lpfc_attr_c_27446_fields lpfc_sriov_nr_virtfn vardecl_lpfc_attr.c 0 27446 NULL
++dm_table_get_num_targets_fndecl_27451_fields dm_table_get_num_targets fndecl 0 27451 NULL
++fec_read_bufs_fndecl_27452_fields fec_read_bufs fndecl 3 27452 NULL
++set_offset_v2_k_type_fndecl_27455_fields set_offset_v2_k_type fndecl 2 27455 NULL nohasharray
++num_modes_max1363_chip_info_27455_fields num_modes max1363_chip_info 0 27455 &set_offset_v2_k_type_fndecl_27455_fields
++xfs_dir3_data_init_fndecl_27460_fields xfs_dir3_data_init fndecl 2 27460 NULL
++io_opt_queue_limits_27462_fields io_opt queue_limits 0 27462 NULL
++next_header_vardecl_initramfs_c_27464_fields next_header vardecl_initramfs.c 0 27464 NULL
++uar_page_sz_mlx4_init_hca_param_27465_fields uar_page_sz mlx4_init_hca_param 0 27465 NULL
++max_slots_nfs4_slot_table_27470_fields max_slots nfs4_slot_table 0 27470 NULL
++window_alignment_fndecl_27476_fields window_alignment fndecl 0 27476 NULL
++size_btrfs_ioctl_ino_path_args_27477_fields size btrfs_ioctl_ino_path_args 0 27477 NULL
++image_swsusp_header_27481_fields image swsusp_header 0 27481 NULL
++min_pnp_mem_27484_fields min pnp_mem 0 27484 NULL
++kim_int_recv_fndecl_27486_fields kim_int_recv fndecl 3 27486 NULL nohasharray
++snd_seq_fifo_resize_fndecl_27486_fields snd_seq_fifo_resize fndecl 2 27486 &kim_int_recv_fndecl_27486_fields
++status_udc_data_dma_27488_fields status udc_data_dma 0 27488 NULL
++local_nentries_xpc_channel_27489_fields local_nentries xpc_channel 0 27489 NULL nohasharray
++drbd_send_drequest_csum_fndecl_27489_fields drbd_send_drequest_csum fndecl 5 27489 &local_nentries_xpc_channel_27489_fields
++pool_rsvd_cxgbi_ppm_27491_fields pool_rsvd cxgbi_ppm 0 27491 NULL
++wb_index_nfs_page_27494_fields wb_index nfs_page 0 27494 NULL
++ocfs2_xa_value_truncate_fndecl_27495_fields ocfs2_xa_value_truncate fndecl 2 27495 NULL
++qib_mmap_mem_fndecl_27496_fields qib_mmap_mem fndecl 3 27496 NULL
++max_qp_sz_mthca_dev_lim_27511_fields max_qp_sz mthca_dev_lim 0 27511 NULL
++stripe_len_map_lookup_27512_fields stripe_len map_lookup 0 27512 NULL
++vis_h_yuv_frame_info_27514_fields vis_h yuv_frame_info 0 27514 NULL
++com90xx_found_fndecl_27525_fields com90xx_found fndecl 3 27525 NULL
++eeprom_size_netdev_private_27532_fields eeprom_size netdev_private 0 27532 NULL
++hlen_raw6_frag_vec_27535_fields hlen raw6_frag_vec 0 27535 NULL
++hsr_dev_change_mtu_fndecl_27537_fields hsr_dev_change_mtu fndecl 2 27537 NULL
++dwc2_hsotg_rx_data_fndecl_27540_fields dwc2_hsotg_rx_data fndecl 3 27540 NULL
++max_mem_ttm_mem_zone_27542_fields max_mem ttm_mem_zone 0 27542 NULL nohasharray
++onenand_mlc_read_ops_nolock_fndecl_27542_fields onenand_mlc_read_ops_nolock fndecl 2 27542 &max_mem_ttm_mem_zone_27542_fields
++sr_write_fndecl_27546_fields sr_write fndecl 3 27546 NULL
++snd_pcm_plug_slave_size_fndecl_27548_fields snd_pcm_plug_slave_size fndecl 0-2 27548 NULL
++remap_and_issue_fndecl_27555_fields remap_and_issue fndecl 3 27555 NULL
++total_cpus_vardecl_27560_fields total_cpus vardecl 0 27560 NULL
++pipe_in_rtl8xxxu_priv_27564_fields pipe_in rtl8xxxu_priv 0 27564 NULL
++sddr09_write_data_fndecl_27565_fields sddr09_write_data fndecl 2 27565 NULL
++size_gf100_gr_fuc_27570_fields size gf100_gr_fuc 0 27570 NULL
++disabled_cpus_vardecl_27577_fields disabled_cpus vardecl 0 27577 NULL
++count_cxgbi_task_data_27578_fields count cxgbi_task_data 0 27578 NULL
++gfx_v8_0_get_csb_size_fndecl_27579_fields gfx_v8_0_get_csb_size fndecl 0 27579 NULL nohasharray
++dev_count_vardecl_smsc_ircc2_c_27579_fields dev_count vardecl_smsc-ircc2.c 0 27579 &gfx_v8_0_get_csb_size_fndecl_27579_fields
++nregions_vhost_memory_27586_fields nregions vhost_memory 0 27586 NULL
++phys_addr_rio_mport_mapping_27591_fields phys_addr rio_mport_mapping 0 27591 NULL
++xfs_bmap_alloc_fndecl_27599_fields xfs_bmap_alloc fndecl 0 27599 NULL
++btrfs_get_blocks_direct_fndecl_27603_fields btrfs_get_blocks_direct fndecl 2 27603 NULL
++_rtl92s_firmware_downloadcode_fndecl_27606_fields _rtl92s_firmware_downloadcode fndecl 3 27606 NULL
++packet_length_gl_packet_27608_fields packet_length gl_packet 0 27608 NULL nohasharray
++max_tc_mlx5e_profile_27608_fields max_tc mlx5e_profile 0 27608 &packet_length_gl_packet_27608_fields nohasharray
++EraseSize_INFTLrecord_27608_fields EraseSize INFTLrecord 0 27608 &max_tc_mlx5e_profile_27608_fields
++netvsc_alloc_recv_skb_fndecl_27610_fields netvsc_alloc_recv_skb fndecl 5 27610 NULL
++read_isac_isac_27627_fields read_isac isac 0 27627 NULL
++data_length_se_cmd_27629_fields data_length se_cmd 0 27629 NULL
++group_size_rcv_array_data_27633_fields group_size rcv_array_data 0 27633 NULL
++st_scsi_execute_fndecl_27643_fields st_scsi_execute fndecl 5 27643 NULL
++bsize_videobuf_buffer_27645_fields bsize videobuf_buffer 0 27645 NULL
++period_frames_usb_stream_config_27656_fields period_frames usb_stream_config 0 27656 NULL
++WriteRegs_fndecl_27658_fields WriteRegs fndecl 4 27658 NULL
++xen_get_pages_limit_fndecl_27661_fields xen_get_pages_limit fndecl 0 27661 NULL
++ceph_osdc_wait_request_fndecl_27663_fields ceph_osdc_wait_request fndecl 0 27663 NULL
++efx_ef10_mem_map_size_fndecl_27664_fields efx_ef10_mem_map_size fndecl 0 27664 NULL
++size_compat_ip6t_replace_27672_fields size compat_ip6t_replace 0 27672 NULL
++ib_umem_get_fndecl_27678_fields ib_umem_get fndecl 2-3 27678 NULL
++bnx2x_iov_init_one_fndecl_27687_fields bnx2x_iov_init_one fndecl 3 27687 NULL
++mt9m111_get_global_gain_fndecl_27689_fields mt9m111_get_global_gain fndecl 0 27689 NULL
++ipv6_get_l4proto_fndecl_27691_fields ipv6_get_l4proto fndecl 2 27691 NULL
++mru_ppp_27697_fields mru ppp 0 27697 NULL
++rx_buf_sz_de_private_27701_fields rx_buf_sz de_private 0 27701 NULL
++snd_pcm_plugin_alloc_fndecl_27703_fields snd_pcm_plugin_alloc fndecl 2 27703 NULL
++actual_size_mlx4_en_rx_ring_27705_fields actual_size mlx4_en_rx_ring 0 27705 NULL
++sequence_num_usb_ftdi_27707_fields sequence_num usb_ftdi 0 27707 NULL
++niu_rx_skb_append_fndecl_27708_fields niu_rx_skb_append fndecl 4-5-3 27708 NULL
++ns83820_change_mtu_fndecl_27711_fields ns83820_change_mtu fndecl 2 27711 NULL
++sdhci_pltfm_init_fndecl_27712_fields sdhci_pltfm_init fndecl 3 27712 NULL
++ioat_dca_count_dca_slots_fndecl_27732_fields ioat_dca_count_dca_slots fndecl 0 27732 NULL
++ieee80211_ie_split_vendor_fndecl_27738_fields ieee80211_ie_split_vendor fndecl 0-3 27738 NULL nohasharray
++qla27xx_fwdt_calculate_dump_size_fndecl_27738_fields qla27xx_fwdt_calculate_dump_size fndecl 0 27738 &ieee80211_ie_split_vendor_fndecl_27738_fields
++word_size_e1000_eeprom_info_27741_fields word_size e1000_eeprom_info 0 27741 NULL
++sparse_mem_maps_populate_node_fndecl_27758_fields sparse_mem_maps_populate_node fndecl 4 27758 NULL
++pool_ns_len_ceph_mds_reply_info_in_27761_fields pool_ns_len ceph_mds_reply_info_in 0 27761 NULL
++nr_sendmsg_fndecl_27763_fields nr_sendmsg fndecl 3 27763 NULL
++h_drm_vmw_rect_27765_fields h drm_vmw_rect 0 27765 NULL
++instat_endpoint_keyspan_device_details_27768_fields instat_endpoint keyspan_device_details 0 27768 NULL nohasharray
++wb_create_fndecl_27768_fields wb_create fndecl 1 27768 &instat_endpoint_keyspan_device_details_27768_fields
++be_queue_alloc_fndecl_27771_fields be_queue_alloc fndecl 3 27771 NULL
++max_cyttsp4_tch_abs_params_27772_fields max cyttsp4_tch_abs_params 0 27772 NULL
++rs_datalen_ath_rx_status_27774_fields rs_datalen ath_rx_status 0 27774 NULL
++vlan_qos_vlan_priority_tci_mapping_27789_fields vlan_qos vlan_priority_tci_mapping 0 27789 NULL nohasharray
++ext4_bg_num_gdb_meta_fndecl_27789_fields ext4_bg_num_gdb_meta fndecl 0 27789 &vlan_qos_vlan_priority_tci_mapping_27789_fields
++flags_mmio_74xx_gpio_priv_27797_fields flags mmio_74xx_gpio_priv 0 27797 NULL
++nilfs_segbuf_set_next_segnum_fndecl_27802_fields nilfs_segbuf_set_next_segnum fndecl 2 27802 NULL
++bm_offset_drbd_md_27803_fields bm_offset drbd_md 0 27803 NULL
++e1000_receive_skb_fndecl_27809_fields e1000_receive_skb fndecl 3 27809 NULL
++ivtv_write_fndecl_27810_fields ivtv_write fndecl 3 27810 NULL
++ule_sndu_remain_dvb_net_priv_27812_fields ule_sndu_remain dvb_net_priv 0 27812 NULL
++page_is_ram_fndecl_27814_fields page_is_ram fndecl 1 27814 NULL
++dm_block_manager_create_fndecl_27815_fields dm_block_manager_create fndecl 2 27815 NULL
++sqsize_nvme_ctrl_27819_fields sqsize nvme_ctrl 0 27819 NULL
++sizeimage_v4l2_pix_format_27824_fields sizeimage v4l2_pix_format 0 27824 NULL
++consumed_vringh_kiov_27828_fields consumed vringh_kiov 0 27828 NULL
++corruption_check_size_vardecl_check_c_27830_fields corruption_check_size vardecl_check.c 0 27830 NULL
++nfp_net_rx_alloc_one_fndecl_27831_fields nfp_net_rx_alloc_one fndecl 3 27831 NULL
++number_of_effective_blocks_ms_boot_attr_info_27832_fields number_of_effective_blocks ms_boot_attr_info 0 27832 NULL
++type_kqid_27833_fields type kqid 0 27833 NULL
++num_bcma_bus_27835_fields num bcma_bus 0 27835 NULL
++adm8211_tx_raw_fndecl_27839_fields adm8211_tx_raw fndecl 3-4 27839 NULL
++cfg_niq_csio_hw_27842_fields cfg_niq csio_hw 0 27842 NULL nohasharray
++__getblk_slow_fndecl_27842_fields __getblk_slow fndecl 3-2 27842 &cfg_niq_csio_hw_27842_fields
++dd_bsg_size_fc_function_template_27852_fields dd_bsg_size fc_function_template 0 27852 NULL
++size_pnp_port_27856_fields size pnp_port 0 27856 NULL
++xfs_da3_node_read_fndecl_27858_fields xfs_da3_node_read fndecl 3 27858 NULL
++ngroups_rcv_array_data_27872_fields ngroups rcv_array_data 0 27872 NULL nohasharray
++max_slave_count_w1_master_27872_fields max_slave_count w1_master 0 27872 &ngroups_rcv_array_data_27872_fields
++lo_len_nfsd4_lookup_27874_fields lo_len nfsd4_lookup 0 27874 NULL
++l_blkno_lbuf_27876_fields l_blkno lbuf 0 27876 NULL
++msb_sg_copy_fndecl_27886_fields msb_sg_copy fndecl 5-4 27886 NULL
++_rotate_left_fndecl_27889_fields _rotate_left fndecl 2 27889 NULL
++num_regions_vfio_pci_device_27890_fields num_regions vfio_pci_device 0 27890 NULL
++brcmf_debug_create_memdump_fndecl_27901_fields brcmf_debug_create_memdump fndecl 3 27901 NULL
++rvt_resize_cq_fndecl_27904_fields rvt_resize_cq fndecl 2 27904 NULL nohasharray
++__lbs_cmd_fndecl_27904_fields __lbs_cmd fndecl 4 27904 &rvt_resize_cq_fndecl_27904_fields
++reada_tree_block_flagged_fndecl_27912_fields reada_tree_block_flagged fndecl 2 27912 NULL
++tp_datalen_bcm5974_config_27927_fields tp_datalen bcm5974_config 0 27927 NULL
++numchips_lpddr_private_27938_fields numchips lpddr_private 0 27938 NULL
++get_burstcount_fndecl_27942_fields get_burstcount fndecl 0 27942 NULL nohasharray
++capacity_cdrom_device_info_27942_fields capacity cdrom_device_info 0 27942 &get_burstcount_fndecl_27942_fields
++handle_mm_fault_fndecl_27947_fields handle_mm_fault fndecl 2 27947 NULL
++total_nand_ecc_ctrl_27951_fields total nand_ecc_ctrl 0 27951 NULL
++usbat_hp8200e_rw_block_test_fndecl_27957_fields usbat_hp8200e_rw_block_test fndecl 12 27957 NULL
++size_plx_pci_channel_map_27958_fields size plx_pci_channel_map 0 27958 NULL
++xfs_bmap_last_extent_fndecl_27964_fields xfs_bmap_last_extent fndecl 0 27964 NULL
++fat_build_inode_fndecl_27970_fields fat_build_inode fndecl 3 27970 NULL
++iip_ubifs_znode_27974_fields iip ubifs_znode 0 27974 NULL
++sxgbe_init_rx_buffers_fndecl_27984_fields sxgbe_init_rx_buffers fndecl 4 27984 NULL
++ext4_seek_hole_fndecl_27990_fields ext4_seek_hole fndecl 2 27990 NULL
++write_mei_hw_ops_27991_fields write mei_hw_ops 0 27991 NULL
++credits_send_context_27993_fields credits send_context 0 27993 NULL nohasharray
++alloc_ccbs_blogic_adapter_27993_fields alloc_ccbs blogic_adapter 0 27993 &credits_send_context_27993_fields
++cumulative_size_wm_adsp_buffer_region_27998_fields cumulative_size wm_adsp_buffer_region 0 27998 NULL
++page_count_scrub_block_28000_fields page_count scrub_block 0 28000 NULL nohasharray
++ubifs_end_scan_fndecl_28000_fields ubifs_end_scan fndecl 4 28000 &page_count_scrub_block_28000_fields
++max_x_fb_monspecs_28003_fields max_x fb_monspecs 0 28003 NULL
++bytes_str_to_int_fndecl_28004_fields bytes_str_to_int fndecl 0 28004 NULL
++resp_ie_len_brcmf_cfg80211_connect_info_28007_fields resp_ie_len brcmf_cfg80211_connect_info 0 28007 NULL
++memtest_fndecl_28012_fields memtest fndecl 2 28012 NULL
++ext4_bg_num_gdb_nometa_fndecl_28014_fields ext4_bg_num_gdb_nometa fndecl 0 28014 NULL
++iwl_read_prph_no_grab_fndecl_28026_fields iwl_read_prph_no_grab fndecl 0 28026 NULL
++assign_irq_fndecl_28035_fields assign_irq fndecl 1 28035 NULL
++min_size_vx_ibl_info_28043_fields min_size vx_ibl_info 0 28043 NULL
++new_chunk_dm_exception_28044_fields new_chunk dm_exception 0 28044 NULL
++num_intr_mic_intr_info_28048_fields num_intr mic_intr_info 0 28048 NULL
++vc_top_vc_data_28051_fields vc_top vc_data 0 28051 NULL
++virtio_gpu_cmd_set_scanout_fndecl_28053_fields virtio_gpu_cmd_set_scanout fndecl 4-5 28053 NULL
++maxpacket_usbnet_28054_fields maxpacket usbnet 0 28054 NULL
++cl_nodelen_rpc_clnt_28055_fields cl_nodelen rpc_clnt 0 28055 NULL
++xfs_end_io_direct_write_fndecl_28060_fields xfs_end_io_direct_write fndecl 3-2 28060 NULL
++gfs2_llseek_fndecl_28067_fields gfs2_llseek fndecl 2 28067 NULL
++nr_cmds_drm_msm_gem_submit_28071_fields nr_cmds drm_msm_gem_submit 0 28071 NULL
++rsi_prepare_skb_fndecl_28075_fields rsi_prepare_skb fndecl 4-3 28075 NULL
++qla4_82xx_pci_mem_write_direct_fndecl_28076_fields qla4_82xx_pci_mem_write_direct fndecl 2 28076 NULL
++abituguru_detect_fndecl_28078_fields abituguru_detect fndecl 0 28078 NULL
++bio_slab_max_vardecl_bio_c_28087_fields bio_slab_max vardecl_bio.c 0 28087 NULL
++ddr_start_mthca_dev_28088_fields ddr_start mthca_dev 0 28088 NULL
++xlog_state_get_iclog_space_fndecl_28090_fields xlog_state_get_iclog_space fndecl 2 28090 NULL
++vxfs_read_olt_fndecl_28091_fields vxfs_read_olt fndecl 2 28091 NULL
++llcp_sock_recvmsg_fndecl_28095_fields llcp_sock_recvmsg fndecl 3 28095 NULL
++vmw_fb_create_bo_fndecl_28101_fields vmw_fb_create_bo fndecl 2 28101 NULL
++ath6kl_wmi_set_wmm_txop_fndecl_28102_fields ath6kl_wmi_set_wmm_txop fndecl 2 28102 NULL
++udf_check_anchor_block_fndecl_28107_fields udf_check_anchor_block fndecl 2 28107 NULL
++gru_alloc_thread_state_fndecl_28109_fields gru_alloc_thread_state fndecl 2 28109 NULL
++ufs_inode_getfrag_fndecl_28110_fields ufs_inode_getfrag fndecl 3-0 28110 NULL nohasharray
++nfs_readdir_make_qstr_fndecl_28110_fields nfs_readdir_make_qstr fndecl 3 28110 &ufs_inode_getfrag_fndecl_28110_fields
++comm_base_mlx4_fw_28125_fields comm_base mlx4_fw 0 28125 NULL
++xfs_get_extsz_hint_fndecl_28128_fields xfs_get_extsz_hint fndecl 0 28128 NULL
++wLength_usb_ctrlrequest_28143_fields wLength usb_ctrlrequest 0 28143 NULL
++unit_size_pcpu_alloc_info_28146_fields unit_size pcpu_alloc_info 0 28146 NULL
++adv_smbus_read_byte_data_fndecl_28147_fields adv_smbus_read_byte_data fndecl 0 28147 NULL
++cur_page_offset_dio_submit_28153_fields cur_page_offset dio_submit 0 28153 NULL
++bNumPorts_usb_wa_descriptor_28154_fields bNumPorts usb_wa_descriptor 0 28154 NULL
++pipe_intr_lan78xx_net_28155_fields pipe_intr lan78xx_net 0 28155 NULL
++af9013_rd_regs_fndecl_28157_fields af9013_rd_regs fndecl 4 28157 NULL
++sock_hlen_vhost_net_virtqueue_28159_fields sock_hlen vhost_net_virtqueue 0 28159 NULL
++aio_nbytes_iocb_28163_fields aio_nbytes iocb 0 28163 NULL
++x_drm_fb_helper_crtc_28166_fields x drm_fb_helper_crtc 0 28166 NULL
++_ocfs2_free_suballoc_bits_fndecl_28174_fields _ocfs2_free_suballoc_bits fndecl 5 28174 NULL
++__iscsi_conn_send_pdu_fndecl_28181_fields __iscsi_conn_send_pdu fndecl 4 28181 NULL
++res_length_dlm_rsb_28184_fields res_length dlm_rsb 0 28184 NULL
++fw_cid_ep_handles_28190_fields fw_cid ep_handles 0 28190 NULL
++ixgbe_fcoe_get_tc_fndecl_28191_fields ixgbe_fcoe_get_tc fndecl 0 28191 NULL
++size_genwqe_mem_28192_fields size genwqe_mem 0 28192 NULL
++cirrus_gem_create_fndecl_28197_fields cirrus_gem_create fndecl 2 28197 NULL nohasharray
++next_power_fndecl_28197_fields next_power fndecl 0 28197 &cirrus_gem_create_fndecl_28197_fields
++snd_pcm_lib_preallocate_pages_for_all_fndecl_28203_fields snd_pcm_lib_preallocate_pages_for_all fndecl 4 28203 NULL
++region_shift_dm_region_hash_28205_fields region_shift dm_region_hash 0 28205 NULL
++ast_bo_create_fndecl_28209_fields ast_bo_create fndecl 2 28209 NULL
++lec_change_mtu_fndecl_28213_fields lec_change_mtu fndecl 2 28213 NULL
++blk_rq_map_sg_fndecl_28215_fields blk_rq_map_sg fndecl 0 28215 NULL
++mpt_base_mthca_mr_table_28221_fields mpt_base mthca_mr_table 0 28221 NULL
++s_blocksize_bits_super_block_28225_fields s_blocksize_bits super_block 0 28225 NULL
++space_slots_btrfs_ioctl_space_args_28231_fields space_slots btrfs_ioctl_space_args 0 28231 NULL
++mux_device_request_fndecl_28235_fields mux_device_request fndecl 7 28235 NULL nohasharray
++l2cap_mtu_vardecl_core_c_28235_fields l2cap_mtu vardecl_core.c 0 28235 &mux_device_request_fndecl_28235_fields
++bits_mpidr_hash_28236_fields bits mpidr_hash 0 28236 NULL
++old_addr_inmem_pages_28238_fields old_addr inmem_pages 0 28238 NULL
++loop_end_patch_info_28242_fields loop_end patch_info 0 28242 NULL
++btrfs_qgroup_free_data_fndecl_28246_fields btrfs_qgroup_free_data fndecl 2-3 28246 NULL nohasharray
++ino_bfs_dirent_28246_fields ino bfs_dirent 0 28246 &btrfs_qgroup_free_data_fndecl_28246_fields
++bcm_tx_send_fndecl_28258_fields bcm_tx_send fndecl 4 28258 NULL
++count_e1000_tx_ring_28261_fields count e1000_tx_ring 0 28261 NULL nohasharray
++ea_set_i_fndecl_28261_fields ea_set_i fndecl 5 28261 &count_e1000_tx_ring_28261_fields
++flags_rxe_bth_28263_fields flags rxe_bth 0 28263 NULL
++x1_osd_cmd_s_28266_fields x1 osd_cmd_s 0 28266 NULL
++mt7601u_rx_process_seg_fndecl_28268_fields mt7601u_rx_process_seg fndecl 3 28268 NULL
++needed_headroom_net_device_28272_fields needed_headroom net_device 0 28272 NULL
++rxbufsize_dma_info_28275_fields rxbufsize dma_info 0 28275 NULL
++mtu_tipc_bearer_28279_fields mtu tipc_bearer 0 28279 NULL
++buf_start_hi_rx_buf_desc_28282_fields buf_start_hi rx_buf_desc 0 28282 NULL nohasharray
++reg_start_ath6kl_diag_reg_info_28282_fields reg_start ath6kl_diag_reg_info 0 28282 &buf_start_hi_rx_buf_desc_28282_fields
++read32_ssb_bus_ops_28292_fields read32 ssb_bus_ops 0 28292 NULL
++save_total_len_pch_spi_data_28296_fields save_total_len pch_spi_data 0 28296 NULL
++flags2_psb_s_28305_fields flags2 psb_s 0 28305 NULL
++__xfs_get_blocks_fndecl_28308_fields __xfs_get_blocks fndecl 2 28308 NULL
++sst25l_read_fndecl_28315_fields sst25l_read fndecl 3 28315 NULL
++npages_mlx4_buf_28321_fields npages mlx4_buf 0 28321 NULL
++size_ORANGEFS_dev_map_desc_28323_fields size ORANGEFS_dev_map_desc 0 28323 NULL
++atmel_read_fndecl_28325_fields atmel_read fndecl 4 28325 NULL
++raw_descs_length_ffs_data_28328_fields raw_descs_length ffs_data 0 28328 NULL
++max_segment_size_brcmf_sdio_dev_28330_fields max_segment_size brcmf_sdio_dev 0 28330 NULL nohasharray
++size_videobuf_dmabuf_28330_fields size videobuf_dmabuf 0 28330 &max_segment_size_brcmf_sdio_dev_28330_fields
++asix_read_cmd_fndecl_28334_fields asix_read_cmd fndecl 5 28334 NULL
++ie_length_ndis_80211_bssid_ex_28346_fields ie_length ndis_80211_bssid_ex 0 28346 NULL
++irq_domain_alloc_irqs_recursive_fndecl_28349_fields irq_domain_alloc_irqs_recursive fndecl 0 28349 NULL
++c4iw_reg_user_mr_fndecl_28358_fields c4iw_reg_user_mr fndecl 2-3 28358 NULL
++pmcraid_notify_aen_fndecl_28361_fields pmcraid_notify_aen fndecl 3 28361 NULL
++carl9170_rx_fndecl_28363_fields carl9170_rx fndecl 3 28363 NULL
++kvm_lapic_enable_pv_eoi_fndecl_28370_fields kvm_lapic_enable_pv_eoi fndecl 2 28370 NULL
++snd_emu10k1_fx8010_tram_setup_fndecl_28371_fields snd_emu10k1_fx8010_tram_setup fndecl 2 28371 NULL
++count_atl1e_tx_ring_28372_fields count atl1e_tx_ring 0 28372 NULL nohasharray
++hostap_80211_get_hdrlen_fndecl_28372_fields hostap_80211_get_hdrlen fndecl 0 28372 &count_atl1e_tx_ring_28372_fields
++pktlen_rtl8xxxu_rxdesc16_28378_fields pktlen rtl8xxxu_rxdesc16 0 28378 NULL
++iova_ib_mr_28381_fields iova ib_mr 0 28381 NULL
++paddr_vmcoreinfo_note_fndecl_28388_fields paddr_vmcoreinfo_note fndecl 0 28388 NULL
++dst_uffdio_copy_28391_fields dst uffdio_copy 0 28391 NULL
++interrupt_in_endpointAddress_usb_serial_port_28398_fields interrupt_in_endpointAddress usb_serial_port 0 28398 NULL
++cxd2820r_rd_regs_fndecl_28402_fields cxd2820r_rd_regs fndecl 4 28402 NULL
++length_rxe_sge_28408_fields length rxe_sge 0 28408 NULL
++platform_device_add_resources_fndecl_28410_fields platform_device_add_resources fndecl 3 28410 NULL
++channel_bc_state_28411_fields channel bc_state 0 28411 NULL
++dma_size_cx25821_audio_dev_28423_fields dma_size cx25821_audio_dev 0 28423 NULL
++at24_eeprom_read_mac_fndecl_28426_fields at24_eeprom_read_mac fndecl 4 28426 NULL
++afs_fs_store_data64_fndecl_28429_fields afs_fs_store_data64 fndecl 5-6 28429 NULL
++jfs_issue_discard_fndecl_28440_fields jfs_issue_discard fndecl 3-2 28440 NULL
++sb_agcount_xfs_sb_28441_fields sb_agcount xfs_sb 0 28441 NULL nohasharray
++mgmt_event_fndecl_28441_fields mgmt_event fndecl 4 28441 &sb_agcount_xfs_sb_28441_fields
++iscsi_iser_session_create_fndecl_28447_fields iscsi_iser_session_create fndecl 3 28447 NULL
++mi_entries_per_block_nilfs_mdt_info_28458_fields mi_entries_per_block nilfs_mdt_info 0 28458 NULL nohasharray
++st_nci_hci_dm_vdc_value_comparison_fndecl_28458_fields st_nci_hci_dm_vdc_value_comparison fndecl 3 28458 &mi_entries_per_block_nilfs_mdt_info_28458_fields
++irda_connect_confirm_fndecl_28460_fields irda_connect_confirm fndecl 4-5 28460 NULL nohasharray
++high_rio_doorbell_filter_28460_fields high rio_doorbell_filter 0 28460 &irda_connect_confirm_fndecl_28460_fields
++pc87360_device_add_fndecl_28461_fields pc87360_device_add fndecl 1 28461 NULL
++md_offset_drbd_md_28466_fields md_offset drbd_md 0 28466 NULL
++osd_upper_vardecl_ivtvfb_c_28473_fields osd_upper vardecl_ivtvfb.c 0 28473 NULL nohasharray
++ath6kl_wmi_add_wow_pattern_cmd_fndecl_28473_fields ath6kl_wmi_add_wow_pattern_cmd fndecl 4-2 28473 &osd_upper_vardecl_ivtvfb_c_28473_fields
++pa_pstart_ext4_prealloc_space_28478_fields pa_pstart ext4_prealloc_space 0 28478 NULL nohasharray
++mgslpc_device_count_vardecl_synclink_cs_c_28478_fields mgslpc_device_count vardecl_synclink_cs.c 0 28478 &pa_pstart_ext4_prealloc_space_28478_fields
++block_size_sd_28480_fields block_size sd 0 28480 NULL
++amdgpu_align_pitch_fndecl_28483_fields amdgpu_align_pitch fndecl 0-2 28483 NULL
++service_map_len_wmi_svc_rdy_ev_arg_28484_fields service_map_len wmi_svc_rdy_ev_arg 0 28484 NULL
++wl1271_sdio_set_block_size_fndecl_28494_fields wl1271_sdio_set_block_size fndecl 2 28494 NULL
++len_sctp_tsnmap_28496_fields len sctp_tsnmap 0 28496 NULL
++xfs_rtallocate_extent_exact_fndecl_28498_fields xfs_rtallocate_extent_exact fndecl 3-5-9-0 28498 NULL nohasharray
++num_sgpgs_bfa_iocfc_drvcfg_s_28498_fields num_sgpgs bfa_iocfc_drvcfg_s 0 28498 &xfs_rtallocate_extent_exact_fndecl_28498_fields
++read_file_operations_28504_fields read file_operations 0 28504 NULL
++dln2_send_wait_fndecl_28510_fields dln2_send_wait fndecl 0 28510 NULL
++get_xsave_size_fndecl_28515_fields get_xsave_size fndecl 0 28515 NULL
++xen_add_extra_mem_fndecl_28519_fields xen_add_extra_mem fndecl 1-2 28519 NULL
++free_tind_blocks_fndecl_28525_fields free_tind_blocks fndecl 3 28525 NULL
++src_width_snd_pcm_plugin_28529_fields src_width snd_pcm_plugin 0 28529 NULL
++max_rds_rings_qlcnic_adapter_28536_fields max_rds_rings qlcnic_adapter 0 28536 NULL
++ext4_bread_fndecl_28538_fields ext4_bread fndecl 3 28538 NULL
++btcx_screen_clips_fndecl_28540_fields btcx_screen_clips fndecl 1-2-0-5 28540 NULL
++fou_recv_pull_fndecl_28542_fields fou_recv_pull fndecl 3 28542 NULL
++md_minor_mdp_superblock_s_28551_fields md_minor mdp_superblock_s 0 28551 NULL
++len_s3fwrn5_fw_header_28556_fields len s3fwrn5_fw_header 0 28556 NULL
++ci_ll_init_fndecl_28561_fields ci_ll_init fndecl 3 28561 NULL nohasharray
++num_pads_uvc_entity_28561_fields num_pads uvc_entity 0 28561 &ci_ll_init_fndecl_28561_fields
++PRO_RATE_DEFAULT_vardecl_ice1712_c_28563_fields PRO_RATE_DEFAULT vardecl_ice1712.c 0 28563 NULL
++wm_adsp_write_data_word_fndecl_28566_fields wm_adsp_write_data_word fndecl 0 28566 NULL
++size_vhost_iotlb_msg_28568_fields size vhost_iotlb_msg 0 28568 NULL
++out_max_chans_snd_card_asihpi_28574_fields out_max_chans snd_card_asihpi 0 28574 NULL
++max_rdma_sge_ocrdma_dev_attr_28585_fields max_rdma_sge ocrdma_dev_attr 0 28585 NULL nohasharray
++charcount_console_font_op_28585_fields charcount console_font_op 0 28585 &max_rdma_sge_ocrdma_dev_attr_28585_fields
++uhci_map_status_fndecl_28591_fields uhci_map_status fndecl 0 28591 NULL
++icsk_pmtu_cookie_inet_connection_sock_28598_fields icsk_pmtu_cookie inet_connection_sock 0 28598 NULL
++n_devs_pci_id_table_28599_fields n_devs pci_id_table 0 28599 NULL
++status_smsc9420_dma_desc_28600_fields status smsc9420_dma_desc 0 28600 NULL
++stride_usX2Ydev_28605_fields stride usX2Ydev 0 28605 NULL
++zone_spanned_pages_in_node_fndecl_28608_fields zone_spanned_pages_in_node fndecl 0 28608 NULL
++ubifs_scan_a_node_fndecl_28611_fields ubifs_scan_a_node fndecl 0 28611 NULL
++msb_erase_block_fndecl_28612_fields msb_erase_block fndecl 2 28612 NULL
++ccmp_encrypt_skb_fndecl_28613_fields ccmp_encrypt_skb fndecl 3 28613 NULL nohasharray
++vsscanf_fndecl_28613_fields vsscanf fndecl 0 28613 &ccmp_encrypt_skb_fndecl_28613_fields
++gru_assign_context_number_fndecl_28616_fields gru_assign_context_number fndecl 0 28616 NULL
++s_inode_size_ext4_sb_info_28625_fields s_inode_size ext4_sb_info 0 28625 NULL
++cdc_ncm_min_dgram_size_fndecl_28632_fields cdc_ncm_min_dgram_size fndecl 0 28632 NULL
++key_size_ethtool_rxfh_28633_fields key_size ethtool_rxfh 0 28633 NULL nohasharray
++drbd_recv_all_fndecl_28633_fields drbd_recv_all fndecl 3 28633 &key_size_ethtool_rxfh_28633_fields
++log_max_len_server_hdr_28634_fields log_max_len server_hdr 0 28634 NULL
++device_count_vardecl_mts64_c_28635_fields device_count vardecl_mts64.c 0 28635 NULL
++usb_stream_new_fndecl_28646_fields usb_stream_new fndecl 6-8-5-7-3-4 28646 NULL
++cw1200_spi_memcpy_fromio_fndecl_28649_fields cw1200_spi_memcpy_fromio fndecl 4 28649 NULL nohasharray
++rvt_rkey_ok_fndecl_28649_fields rvt_rkey_ok fndecl 3-4 28649 &cw1200_spi_memcpy_fromio_fndecl_28649_fields
++cur_offset_drm_dp_sideband_msg_tx_28655_fields cur_offset drm_dp_sideband_msg_tx 0 28655 NULL
++set_mr_fileds_fndecl_28677_fields set_mr_fileds fndecl 4 28677 NULL
++x25_create_facilities_fndecl_28684_fields x25_create_facilities fndecl 0 28684 NULL
++phys_size_perf_mw_28685_fields phys_size perf_mw 0 28685 NULL
++fill_isoc_urb_fndecl_28690_fields fill_isoc_urb fndecl 6-5-3 28690 NULL
++_c4iw_write_mem_inline_fndecl_28691_fields _c4iw_write_mem_inline fndecl 3 28691 NULL
++rx_agg_buf_size_rtl8xxxu_fileops_28692_fields rx_agg_buf_size rtl8xxxu_fileops 0 28692 NULL
++stolen_size_psb_gtt_28693_fields stolen_size psb_gtt 0 28693 NULL
++register_size_fe_priv_28698_fields register_size fe_priv 0 28698 NULL
++bclean_fndecl_28699_fields bclean fndecl 3 28699 NULL
++data_len_rndis_data_hdr_28701_fields data_len rndis_data_hdr 0 28701 NULL
++cw_bmove_fndecl_28704_fields cw_bmove fndecl 7-5-3-6-8-4 28704 NULL nohasharray
++size_fuse_notify_store_out_28704_fields size fuse_notify_store_out 0 28704 &cw_bmove_fndecl_28704_fields
++CIFSSMBWrite2_fndecl_28705_fields CIFSSMBWrite2 fndecl 5 28705 NULL
++mlx4_init_cmpt_table_fndecl_28706_fields mlx4_init_cmpt_table fndecl 3 28706 NULL
++nilfs_bmap_lookup_contig_fndecl_28717_fields nilfs_bmap_lookup_contig fndecl 0 28717 NULL
++phys_smscore_buffer_t_28719_fields phys smscore_buffer_t 0 28719 NULL nohasharray
++start_fjes_hw_resource_28719_fields start fjes_hw_resource 0 28719 &phys_smscore_buffer_t_28719_fields
++getexposure_fndecl_28720_fields getexposure fndecl 0 28720 NULL
++xfs_rtcheck_alloc_range_fndecl_28722_fields xfs_rtcheck_alloc_range fndecl 3 28722 NULL
++lpsn_rvt_swqe_28723_fields lpsn rvt_swqe 0 28723 NULL
++note_last_dentry_fndecl_28724_fields note_last_dentry fndecl 4 28724 NULL
++num_pports_qib_devdata_28736_fields num_pports qib_devdata 0 28736 NULL nohasharray
++vdi_size_vxfs_dinode_28736_fields vdi_size vxfs_dinode 0 28736 &num_pports_qib_devdata_28736_fields
++ns_pseg_offset_the_nilfs_28744_fields ns_pseg_offset the_nilfs 0 28744 NULL
++src_h_yuv_frame_info_28759_fields src_h yuv_frame_info 0 28759 NULL
++enc28j60_packet_write_fndecl_28762_fields enc28j60_packet_write fndecl 2 28762 NULL
++ncp_write_kernel_fndecl_28776_fields ncp_write_kernel fndecl 4 28776 NULL
++cow_file_range_fndecl_28790_fields cow_file_range fndecl 3-4 28790 NULL
++tcp_parse_fastopen_option_fndecl_28793_fields tcp_parse_fastopen_option fndecl 1 28793 NULL
++psbfb_alloc_fndecl_28804_fields psbfb_alloc fndecl 2 28804 NULL
++items_max_vxge_hw_mempool_28806_fields items_max vxge_hw_mempool 0 28806 NULL
++e820_remove_range_fndecl_28810_fields e820_remove_range fndecl 1-2 28810 NULL nohasharray
++ide_queue_pc_tail_fndecl_28810_fields ide_queue_pc_tail fndecl 5 28810 &e820_remove_range_fndecl_28810_fields
++ceph_build_auth_fndecl_28825_fields ceph_build_auth fndecl 0 28825 NULL nohasharray
++oid_printf_vargs_fndecl_28825_fields oid_printf_vargs fndecl 0 28825 &ceph_build_auth_fndecl_28825_fields
++sdio_memcpy_toio_fndecl_28828_fields sdio_memcpy_toio fndecl 4 28828 NULL
++vram_end_radeon_mc_28831_fields vram_end radeon_mc 0 28831 NULL
++right_qxl_urect_28833_fields right qxl_urect 0 28833 NULL nohasharray
++ivtv_udma_get_page_info_fndecl_28833_fields ivtv_udma_get_page_info fndecl 2-3 28833 &right_qxl_urect_28833_fields
++dm_table_add_target_fndecl_28838_fields dm_table_add_target fndecl 4-3 28838 NULL
++sctp_setsockopt_hmac_ident_fndecl_28852_fields sctp_setsockopt_hmac_ident fndecl 3 28852 NULL
++dsp_buffer_alloc_fndecl_28855_fields dsp_buffer_alloc fndecl 2 28855 NULL nohasharray
++hdac_hdmi_create_dais_fndecl_28855_fields hdac_hdmi_create_dais fndecl 4 28855 &dsp_buffer_alloc_fndecl_28855_fields
++pf_cids_qed_src_iids_28859_fields pf_cids qed_src_iids 0 28859 NULL
++mt9t031_set_params_fndecl_28862_fields mt9t031_set_params fndecl 4-3 28862 NULL
++tx_pending_ethtool_ringparam_28864_fields tx_pending ethtool_ringparam 0 28864 NULL nohasharray
++size_pmk_list_t_28864_fields size pmk_list_t 0 28864 &tx_pending_ethtool_ringparam_28864_fields
++ie_length_brcmf_bss_info_le_28867_fields ie_length brcmf_bss_info_le 0 28867 NULL
++usb_stor_access_xfer_buf_fndecl_28868_fields usb_stor_access_xfer_buf fndecl 0-2 28868 NULL
++i2c_master_recv_fndecl_28869_fields i2c_master_recv fndecl 0-3 28869 NULL
++receive_new_fndecl_28872_fields receive_new fndecl 3 28872 NULL nohasharray
++ep_out_mcs_cb_28872_fields ep_out mcs_cb 0 28872 &receive_new_fndecl_28872_fields
++rx_win_size_mwifiex_ie_types_btcoex_aggr_win_size_28878_fields rx_win_size mwifiex_ie_types_btcoex_aggr_win_size 0 28878 NULL
++request_len_bsg_job_28889_fields request_len bsg_job 0 28889 NULL
++map_count_mm_struct_28894_fields map_count mm_struct 0 28894 NULL nohasharray
++no_seek_end_llseek_size_fndecl_28894_fields no_seek_end_llseek_size fndecl 2 28894 &map_count_mm_struct_28894_fields
++nci_set_config_fndecl_28899_fields nci_set_config fndecl 3 28899 NULL
++t_elist_cb_state_28900_fields t elist_cb_state 0 28900 NULL nohasharray
++capi_major_vardecl_capi_c_28900_fields capi_major vardecl_capi.c 0 28900 &t_elist_cb_state_28900_fields
++ss_in_channels_hdspm_28903_fields ss_in_channels hdspm 0 28903 NULL
++ngpios_sx150x_device_data_28905_fields ngpios sx150x_device_data 0 28905 NULL
++usb_pipe_handle_ath6kl_usb_pipe_28910_fields usb_pipe_handle ath6kl_usb_pipe 0 28910 NULL
++hslen_vardecl_matroxfb_base_c_28914_fields hslen vardecl_matroxfb_base.c 0 28914 NULL
++port_c67x00_urb_priv_28917_fields port c67x00_urb_priv 0 28917 NULL
++c_ssize_f_uac2_opts_28922_fields c_ssize f_uac2_opts 0 28922 NULL
++suspend_nvs_register_fndecl_28923_fields suspend_nvs_register fndecl 2-1 28923 NULL
++pgs_per_blk_nvm_dev_28942_fields pgs_per_blk nvm_dev 0 28942 NULL nohasharray
++bts_index_debug_store_28942_fields bts_index debug_store 0 28942 &pgs_per_blk_nvm_dev_28942_fields
++alsa_index_vardecl_thinkpad_acpi_c_28952_fields alsa_index vardecl_thinkpad_acpi.c 0 28952 NULL
++gb_len_pn533_28959_fields gb_len pn533 0 28959 NULL
++hpfs_alloc_anode_fndecl_28960_fields hpfs_alloc_anode fndecl 2 28960 NULL nohasharray
++hci_cmd_sync_fndecl_28960_fields hci_cmd_sync fndecl 3 28960 &hpfs_alloc_anode_fndecl_28960_fields
++usb_stor_bulk_transfer_buf_fndecl_28961_fields usb_stor_bulk_transfer_buf fndecl 4-2 28961 NULL
++tcp_send_rcvq_fndecl_28967_fields tcp_send_rcvq fndecl 3 28967 NULL
++ath6kl_wmi_set_wow_mode_cmd_fndecl_28969_fields ath6kl_wmi_set_wow_mode_cmd fndecl 2 28969 NULL
++sctp_transport_update_pmtu_fndecl_28973_fields sctp_transport_update_pmtu fndecl 3 28973 NULL
++syncmaxsize_snd_usb_endpoint_28987_fields syncmaxsize snd_usb_endpoint 0 28987 NULL
++aper_size_agp_kern_info_28990_fields aper_size agp_kern_info 0 28990 NULL
++klen_WepKeyRid_28997_fields klen WepKeyRid 0 28997 NULL
++ext4_get_inline_size_fndecl_28998_fields ext4_get_inline_size fndecl 0 28998 NULL
++handle_unit_fndecl_29000_fields handle_unit fndecl 0-1 29000 NULL nohasharray
++rawsize_nd_namespace_label_29000_fields rawsize nd_namespace_label 0 29000 &handle_unit_fndecl_29000_fields
++len_p54p_desc_29001_fields len p54p_desc 0 29001 NULL nohasharray
++buf_read_ptr_comedi_async_29001_fields buf_read_ptr comedi_async 0 29001 &len_p54p_desc_29001_fields
++nl80211_send_mgmt_fndecl_29002_fields nl80211_send_mgmt fndecl 7 29002 NULL
++num_lns_csio_hw_29004_fields num_lns csio_hw 0 29004 NULL
++ivtvfb_prep_dec_dma_to_device_fndecl_29011_fields ivtvfb_prep_dec_dma_to_device fndecl 4 29011 NULL
++sb_dmap_hpfs_sb_info_29020_fields sb_dmap hpfs_sb_info 0 29020 NULL
++j_len_reiserfs_journal_list_29021_fields j_len reiserfs_journal_list 0 29021 NULL
++__spi_queued_transfer_fndecl_29024_fields __spi_queued_transfer fndecl 0 29024 NULL
++len_f2fs_move_range_29028_fields len f2fs_move_range 0 29028 NULL
++nft_value_dump_fndecl_29030_fields nft_value_dump fndecl 3 29030 NULL
++batadv_skb_head_push_fndecl_29043_fields batadv_skb_head_push fndecl 2 29043 NULL nohasharray
++devm_mfd_add_devices_fndecl_29043_fields devm_mfd_add_devices fndecl 6-2 29043 &batadv_skb_head_push_fndecl_29043_fields
++memory_size_kvm_userspace_memory_region_29047_fields memory_size kvm_userspace_memory_region 0 29047 NULL
++length_hsu_dma_desc_29052_fields length hsu_dma_desc 0 29052 NULL
++___alloc_bootmem_fndecl_29057_fields ___alloc_bootmem fndecl 2-3-4 29057 NULL
++fbcon_scroll_fndecl_29060_fields fbcon_scroll fndecl 5 29060 NULL nohasharray
++len_wmi_rx_mgmt_info_29060_fields len wmi_rx_mgmt_info 0 29060 &fbcon_scroll_fndecl_29060_fields
++use_dmio_fndecl_29065_fields use_dmio fndecl 3 29065 NULL
++ucFakeEDIDLength__ATOM_FAKE_EDID_PATCH_RECORD_29067_fields ucFakeEDIDLength _ATOM_FAKE_EDID_PATCH_RECORD 0 29067 NULL
++xfs_bmse_shift_one_fndecl_29075_fields xfs_bmse_shift_one fndecl 3 29075 NULL
++tse_change_mtu_fndecl_29076_fields tse_change_mtu fndecl 2 29076 NULL
++ath6kl_wmi_deletekey_cmd_fndecl_29086_fields ath6kl_wmi_deletekey_cmd fndecl 2 29086 NULL
++len_scifioctl_unreg_29093_fields len scifioctl_unreg 0 29093 NULL
++dlm_lowcomms_get_buffer_fndecl_29111_fields dlm_lowcomms_get_buffer fndecl 2 29111 NULL
++bttv_read_fndecl_29115_fields bttv_read fndecl 3 29115 NULL
++size_tmc_drvdata_29121_fields size tmc_drvdata 0 29121 NULL
++start_dm_verity_fec_29127_fields start dm_verity_fec 0 29127 NULL
++ioctl_code_usbdevfs_ioctl_29134_fields ioctl_code usbdevfs_ioctl 0 29134 NULL
++y1_virtio_gpu_framebuffer_29147_fields y1 virtio_gpu_framebuffer 0 29147 NULL
++send_bulk_pipe_us_data_29148_fields send_bulk_pipe us_data 0 29148 NULL
++width_usbtv_29152_fields width usbtv 0 29152 NULL
++algorithm_raid_type_29156_fields algorithm raid_type 0 29156 NULL
++W6692B_empty_fifo_fndecl_29159_fields W6692B_empty_fifo fndecl 2 29159 NULL
++md_dump_size_qla_hw_data_29160_fields md_dump_size qla_hw_data 0 29160 NULL
++error_bio_list_fndecl_29166_fields error_bio_list fndecl 2 29166 NULL
++surface_height_drm_fb_helper_surface_size_29174_fields surface_height drm_fb_helper_surface_size 0 29174 NULL
++num_segments_acpi_namestring_info_29180_fields num_segments acpi_namestring_info 0 29180 NULL nohasharray
++dma_in_streamzap_ir_29180_fields dma_in streamzap_ir 0 29180 &num_segments_acpi_namestring_info_29180_fields
++ircomm_control_indication_fndecl_29186_fields ircomm_control_indication fndecl 3 29186 NULL
++em28xx_i2c_read_block_fndecl_29188_fields em28xx_i2c_read_block fndecl 5 29188 NULL
++report_nb8800_rx_desc_29192_fields report nb8800_rx_desc 0 29192 NULL
++HFC_inw_nodebug_hfc_multi_29199_fields HFC_inw_nodebug hfc_multi 0 29199 NULL
++vcc_sendmsg_fndecl_29205_fields vcc_sendmsg fndecl 3 29205 NULL
++x25_parse_facilities_fndecl_29207_fields x25_parse_facilities fndecl 0 29207 NULL
++ftdi_elan_total_command_size_fndecl_29214_fields ftdi_elan_total_command_size fndecl 0 29214 NULL
++video_rbase_osd_info_29225_fields video_rbase osd_info 0 29225 NULL
++mpx_get_bt_entry_offset_bytes_fndecl_29230_fields mpx_get_bt_entry_offset_bytes fndecl 0-2 29230 NULL
++change_pte_range_fndecl_29232_fields change_pte_range fndecl 3 29232 NULL
++rq_pagesz_smb_rqst_29240_fields rq_pagesz smb_rqst 0 29240 NULL
++sb_dirband_start_hpfs_sb_info_29242_fields sb_dirband_start hpfs_sb_info 0 29242 NULL
++count_qed_tid_seg_29243_fields count qed_tid_seg 0 29243 NULL
++ubifs_recover_log_leb_fndecl_29244_fields ubifs_recover_log_leb fndecl 3 29244 NULL
++sg_pcopy_from_buffer_fndecl_29248_fields sg_pcopy_from_buffer fndecl 0-5-4 29248 NULL
++offset_rbd_obj_request_29253_fields offset rbd_obj_request 0 29253 NULL
++hfi1_copy_sge_fndecl_29257_fields hfi1_copy_sge fndecl 3 29257 NULL
++i_dir_acl_ext2_inode_29264_fields i_dir_acl ext2_inode 0 29264 NULL
++maxlen_ctl_table_29268_fields maxlen ctl_table 0 29268 NULL nohasharray
++sisusb_lseek_fndecl_29268_fields sisusb_lseek fndecl 2 29268 &maxlen_ctl_table_29268_fields
++drbg_kcapi_sym_ctr_fndecl_29274_fields drbg_kcapi_sym_ctr fndecl 3-5 29274 NULL
++offs_replay_entry_29277_fields offs replay_entry 0 29277 NULL
++convert_dma_width_fndecl_29278_fields convert_dma_width fndecl 0 29278 NULL
++reg_shift_sccnxp_pdata_29283_fields reg_shift sccnxp_pdata 0 29283 NULL
++sh_last_alloc_nilfs_sufile_header_29285_fields sh_last_alloc nilfs_sufile_header 0 29285 NULL
++data_len_ceph_msg_header_29290_fields data_len ceph_msg_header 0 29290 NULL
++leb_start_ubi_device_29292_fields leb_start ubi_device 0 29292 NULL
++user_ptr_drm_i915_gem_userptr_29294_fields user_ptr drm_i915_gem_userptr 0 29294 NULL
++set_powered_fndecl_29298_fields set_powered fndecl 4 29298 NULL
++ramoops_init_prz_fndecl_29301_fields ramoops_init_prz fndecl 5 29301 NULL
++mb_find_extent_fndecl_29303_fields mb_find_extent fndecl 2 29303 NULL
++generic_file_llseek_fndecl_29304_fields generic_file_llseek fndecl 2 29304 NULL
++ipgre_rcv_fndecl_29305_fields ipgre_rcv fndecl 3 29305 NULL
++read_w5300_priv_29306_fields read w5300_priv 0 29306 NULL nohasharray
++tail_ivtv_dma_page_info_29306_fields tail ivtv_dma_page_info 0 29306 &read_w5300_priv_29306_fields
++vmw_fifo_reserve_fndecl_29310_fields vmw_fifo_reserve fndecl 2 29310 NULL
++soc_mbus_image_size_fndecl_29311_fields soc_mbus_image_size fndecl 0-3-2 29311 NULL
++num_msix_roce_vec_be_adapter_29319_fields num_msix_roce_vec be_adapter 0 29319 NULL
++ip_generic_getfrag_fndecl_29320_fields ip_generic_getfrag fndecl 4 29320 NULL
++compat_do_arpt_set_ctl_fndecl_29323_fields compat_do_arpt_set_ctl fndecl 4 29323 NULL
++gather_pte_stats_fndecl_29329_fields gather_pte_stats fndecl 2 29329 NULL
++scan_map_fndecl_29331_fields scan_map fndecl 0 29331 NULL
++n_reg_rules_ieee80211_regdomain_29334_fields n_reg_rules ieee80211_regdomain 0 29334 NULL nohasharray
++compat_sys_msgrcv_fndecl_29334_fields compat_sys_msgrcv fndecl 3 29334 &n_reg_rules_ieee80211_regdomain_29334_fields
++y_res_vbe_mode_ib_29340_fields y_res vbe_mode_ib 0 29340 NULL
++sctp_icmp_frag_needed_fndecl_29342_fields sctp_icmp_frag_needed fndecl 4 29342 NULL
++sgeCnt_aac_raw_io2_29350_fields sgeCnt aac_raw_io2 0 29350 NULL
++size_tc_action_ops_29352_fields size tc_action_ops 0 29352 NULL
++alloced_snd_array_29353_fields alloced snd_array 0 29353 NULL
++receive_copy_fndecl_29355_fields receive_copy fndecl 3 29355 NULL
++max_sgs_per_cmd_snic_fw_info_29357_fields max_sgs_per_cmd snic_fw_info 0 29357 NULL nohasharray
++xfs_attr3_leaf_read_fndecl_29357_fields xfs_attr3_leaf_read fndecl 3 29357 &max_sgs_per_cmd_snic_fw_info_29357_fields
++s_dat_entry_size_nilfs_super_block_29359_fields s_dat_entry_size nilfs_super_block 0 29359 NULL
++qt2160_read_block_fndecl_29365_fields qt2160_read_block fndecl 4 29365 NULL
++dummy_perform_transfer_fndecl_29372_fields dummy_perform_transfer fndecl 0-3 29372 NULL
++n_devices_whc_29373_fields n_devices whc 0 29373 NULL
++ppm_get_entries_fndecl_29375_fields ppm_get_entries fndecl 0 29375 NULL
++count_e1000_rx_ring_29377_fields count e1000_rx_ring 0 29377 NULL nohasharray
++l2bsize_jfs_sb_info_29377_fields l2bsize jfs_sb_info 0 29377 &count_e1000_rx_ring_29377_fields
++extHint_fndecl_29378_fields extHint fndecl 2 29378 NULL
++next_cluster_fat_boot_fsinfo_29380_fields next_cluster fat_boot_fsinfo 0 29380 NULL
++acpi_id_xenpf_pcpuinfo_29393_fields acpi_id xenpf_pcpuinfo 0 29393 NULL
++tun_net_change_mtu_fndecl_29398_fields tun_net_change_mtu fndecl 2 29398 NULL
++__alloc_bootmem_low_nopanic_fndecl_29400_fields __alloc_bootmem_low_nopanic fndecl 2-3 29400 NULL
++hpfs_map_sector_fndecl_29402_fields hpfs_map_sector fndecl 2 29402 NULL
++num_leds_mc13xxx_leds_platform_data_29405_fields num_leds mc13xxx_leds_platform_data 0 29405 NULL
++sisfb_mem_sis_video_info_29418_fields sisfb_mem sis_video_info 0 29418 NULL
++udf_name_to_CS0_fndecl_29420_fields udf_name_to_CS0 fndecl 0 29420 NULL
++get_next_page_offset_fndecl_29421_fields get_next_page_offset fndecl 0-2 29421 NULL
++xop_data_nents_xcopy_op_29423_fields xop_data_nents xcopy_op 0 29423 NULL
++ath_descdma_setup_fndecl_29426_fields ath_descdma_setup fndecl 5 29426 NULL
++block_extra_size_snd_util_memhdr_29432_fields block_extra_size snd_util_memhdr 0 29432 NULL
++size_vm_struct_29439_fields size vm_struct 0 29439 NULL
++xfs_attr3_rmt_blocks_fndecl_29445_fields xfs_attr3_rmt_blocks fndecl 0-2 29445 NULL
++ep_in_dln2_dev_29451_fields ep_in dln2_dev 0 29451 NULL
++ebt_buf_add_fndecl_29456_fields ebt_buf_add fndecl 0-3 29456 NULL
++vol_cdev_llseek_fndecl_29458_fields vol_cdev_llseek fndecl 2 29458 NULL
++read_into_pages_cifs_readdata_29473_fields read_into_pages cifs_readdata 0 29473 NULL
++i2c_hid_set_or_send_report_fndecl_29475_fields i2c_hid_set_or_send_report fndecl 5 29475 NULL
++macvtap_put_user_fndecl_29476_fields macvtap_put_user fndecl 0 29476 NULL
++tx_header_len_pn533_frame_ops_29478_fields tx_header_len pn533_frame_ops 0 29478 NULL
++ns_last_pseg_the_nilfs_29482_fields ns_last_pseg the_nilfs 0 29482 NULL
++qs_out_channels_hdsp_29483_fields qs_out_channels hdsp 0 29483 NULL
++phys_out_snd_efw_29490_fields phys_out snd_efw 0 29490 NULL nohasharray
++befs_bt_read_node_fndecl_29490_fields befs_bt_read_node fndecl 4 29490 &phys_out_snd_efw_29490_fields
++pcpu_fc_alloc_fndecl_29497_fields pcpu_fc_alloc fndecl 3-2 29497 NULL
++n_leds_pca963x_chipdef_29498_fields n_leds pca963x_chipdef 0 29498 NULL
++cx23885_alsa_dma_init_fndecl_29499_fields cx23885_alsa_dma_init fndecl 2 29499 NULL
++raid_disks_mdu_array_info_s_29501_fields raid_disks mdu_array_info_s 0 29501 NULL
++type_length_fru_type_length_29503_fields type_length fru_type_length 0 29503 NULL
++nritems_btrfs_header_29521_fields nritems btrfs_header 0 29521 NULL
++blocks_mmc_ioc_cmd_29532_fields blocks mmc_ioc_cmd 0 29532 NULL nohasharray
++h4_recv_buf_fndecl_29532_fields h4_recv_buf fndecl 4 29532 &blocks_mmc_ioc_cmd_29532_fields
++forw_xfs_da3_icnode_hdr_29543_fields forw xfs_da3_icnode_hdr 0 29543 NULL
++ooboffs_mtd_oob_ops_29549_fields ooboffs mtd_oob_ops 0 29549 NULL
++local_max_bio_size_drbd_device_29550_fields local_max_bio_size drbd_device 0 29550 NULL
++zone_mem_ttm_mem_zone_29551_fields zone_mem ttm_mem_zone 0 29551 NULL
++befs_read_lsymlink_fndecl_29556_fields befs_read_lsymlink fndecl 4 29556 NULL
++l2cap_chan_send_fndecl_29557_fields l2cap_chan_send fndecl 3 29557 NULL
++calculate_iosize_fndecl_29562_fields calculate_iosize fndecl 0-4-5-3-2-1 29562 NULL
++ieee80211_rx_bss_info_fndecl_29564_fields ieee80211_rx_bss_info fndecl 3 29564 NULL
++addr_drm_amdgpu_gem_userptr_29582_fields addr drm_amdgpu_gem_userptr 0 29582 NULL
++valid_hooks_xt_table_29585_fields valid_hooks xt_table 0 29585 NULL
++___mic_ioremap_fndecl_29587_fields ___mic_ioremap fndecl 3-2 29587 NULL
++num_rx_queues_e1000_adapter_29589_fields num_rx_queues e1000_adapter 0 29589 NULL
++ti_write_fndecl_29599_fields ti_write fndecl 4 29599 NULL
++btmrvl_download_cal_data_fndecl_29602_fields btmrvl_download_cal_data fndecl 3 29602 NULL
++queue_size_snd_timer_user_29607_fields queue_size snd_timer_user 0 29607 NULL
++r1_sync_page_io_fndecl_29608_fields r1_sync_page_io fndecl 3-2 29608 NULL
++device_size_r5l_log_29609_fields device_size r5l_log 0 29609 NULL
++__vxlan_change_mtu_fndecl_29617_fields __vxlan_change_mtu fndecl 4 29617 NULL
++efd_group_ext4_free_data_29619_fields efd_group ext4_free_data 0 29619 NULL
++dccp_feat_clone_sp_val_fndecl_29621_fields dccp_feat_clone_sp_val fndecl 3 29621 NULL
++nr_cells_axp20x_dev_29628_fields nr_cells axp20x_dev 0 29628 NULL
++escd_size_escd_info_struc_29631_fields escd_size escd_info_struc 0 29631 NULL
++cxgbit_ddp_reserve_fndecl_29637_fields cxgbit_ddp_reserve fndecl 3 29637 NULL
++vbi_vlen_saa7134_dev_29640_fields vbi_vlen saa7134_dev 0 29640 NULL
++vb_bytes_per_frame_cx18_stream_29644_fields vb_bytes_per_frame cx18_stream 0 29644 NULL
++placement_offset_eth_fast_path_rx_cqe_29646_fields placement_offset eth_fast_path_rx_cqe 0 29646 NULL
++bch_vardecl_nandsim_c_29648_fields bch vardecl_nandsim.c 0 29648 NULL
++num_counters_arpt_replace_29649_fields num_counters arpt_replace 0 29649 NULL nohasharray
++ceph_msg_data_add_bio_fndecl_29649_fields ceph_msg_data_add_bio fndecl 3 29649 &num_counters_arpt_replace_29649_fields nohasharray
++reserve_mc_sibling_devs_fndecl_29649_fields reserve_mc_sibling_devs fndecl 2-3 29649 &ceph_msg_data_add_bio_fndecl_29649_fields
++max_dev_sectors_queue_limits_29654_fields max_dev_sectors queue_limits 0 29654 NULL
++items_per_memblock_vxge_hw_mempool_29661_fields items_per_memblock vxge_hw_mempool 0 29661 NULL
++pci_cfg_space_size_fndecl_29666_fields pci_cfg_space_size fndecl 0 29666 NULL
++mon_buff_area_alloc_contiguous_fndecl_29680_fields mon_buff_area_alloc_contiguous fndecl 2 29680 NULL nohasharray
++rtsx_usb_seq_read_register_fndecl_29680_fields rtsx_usb_seq_read_register fndecl 3 29680 &mon_buff_area_alloc_contiguous_fndecl_29680_fields
++comps_used_isert_device_29683_fields comps_used isert_device 0 29683 NULL
++APP_len_camera_data_29686_fields APP_len camera_data 0 29686 NULL
++size_tool_mw_29693_fields size tool_mw 0 29693 NULL
++osd_req_write_sg_kern_fndecl_29697_fields osd_req_write_sg_kern fndecl 5 29697 NULL
++qlcnic_pci_sriov_enable_fndecl_29700_fields qlcnic_pci_sriov_enable fndecl 2 29700 NULL
++ocfs2_add_refcounted_extent_fndecl_29709_fields ocfs2_add_refcounted_extent fndecl 6-7-5 29709 NULL
++ieee80211_stop_tx_ba_cb_irqsafe_fndecl_29711_fields ieee80211_stop_tx_ba_cb_irqsafe fndecl 3 29711 NULL
++SGE_size__MPT_ADAPTER_29715_fields SGE_size _MPT_ADAPTER 0 29715 NULL
++first_sect_blkif_request_segment_29716_fields first_sect blkif_request_segment 0 29716 NULL
++ca91cx42_alloc_resource_fndecl_29717_fields ca91cx42_alloc_resource fndecl 2 29717 NULL
++ext4_itable_unused_count_fndecl_29718_fields ext4_itable_unused_count fndecl 0 29718 NULL
++page_count_orangefs_bufmap_29723_fields page_count orangefs_bufmap 0 29723 NULL
++bpp_aty128_crtc_29724_fields bpp aty128_crtc 0 29724 NULL nohasharray
++sel_write_disable_fndecl_29724_fields sel_write_disable fndecl 3 29724 &bpp_aty128_crtc_29724_fields
++num_resources_mfd_cell_29733_fields num_resources mfd_cell 0 29733 NULL nohasharray
++Zlen_hfc_multi_29733_fields Zlen hfc_multi 0 29733 &num_resources_mfd_cell_29733_fields
++__ceph_tcp_sendpage_fndecl_29744_fields __ceph_tcp_sendpage fndecl 0-4 29744 NULL
++bounce_len_xhci_segment_29759_fields bounce_len xhci_segment 0 29759 NULL
++mmio_phys_ivhd_header_29762_fields mmio_phys ivhd_header 0 29762 NULL
++ext4_write_begin_fndecl_29763_fields ext4_write_begin fndecl 4-3 29763 NULL
++physical_scrub_bio_29776_fields physical scrub_bio 0 29776 NULL
++ath6kl_wmi_ap_set_dtim_cmd_fndecl_29779_fields ath6kl_wmi_ap_set_dtim_cmd fndecl 2 29779 NULL
++eqp_bdi_bd_list_29780_fields eqp_bdi bd_list 0 29780 NULL
++io_min_queue_limits_29785_fields io_min queue_limits 0 29785 NULL
++cfg_num_tx_irqs_be_adapter_29787_fields cfg_num_tx_irqs be_adapter 0 29787 NULL
++first_index_zap_details_29790_fields first_index zap_details 0 29790 NULL
++blk_queue_max_discard_sectors_fndecl_29799_fields blk_queue_max_discard_sectors fndecl 2 29799 NULL
++cxgb3_get_cpl_reply_skb_fndecl_29807_fields cxgb3_get_cpl_reply_skb fndecl 2 29807 NULL nohasharray
++i_disksize_ext4_inode_info_29807_fields i_disksize ext4_inode_info 0 29807 &cxgb3_get_cpl_reply_skb_fndecl_29807_fields
++skb_transmit_mlxsw_bus_29815_fields skb_transmit mlxsw_bus 0 29815 NULL
++vmw_shader_define_fndecl_29819_fields vmw_shader_define fndecl 5 29819 NULL
++double_offset_smbios_cru64_info_29825_fields double_offset smbios_cru64_info 0 29825 NULL
++num_ports_ohci_hcd_29835_fields num_ports ohci_hcd 0 29835 NULL
++rr_len_rpcrdma_rep_29856_fields rr_len rpcrdma_rep 0 29856 NULL
++pvr2_buffer_get_count_fndecl_29860_fields pvr2_buffer_get_count fndecl 0 29860 NULL
++lower_vardecl_matroxfb_base_c_29861_fields lower vardecl_matroxfb_base.c 0 29861 NULL nohasharray
++bnx2x_get_num_non_def_sbs_fndecl_29861_fields bnx2x_get_num_non_def_sbs fndecl 0-2 29861 &lower_vardecl_matroxfb_base_c_29861_fields
++bfs_add_entry_fndecl_29864_fields bfs_add_entry fndecl 4 29864 NULL
++alloc_vmap_area_fndecl_29865_fields alloc_vmap_area fndecl 1-2-3 29865 NULL
++xprt_complete_rqst_fndecl_29874_fields xprt_complete_rqst fndecl 2 29874 NULL
++fat_attach_fndecl_29877_fields fat_attach fndecl 2 29877 NULL
++current_size_ncp_server_29882_fields current_size ncp_server 0 29882 NULL
++selinux_inode_setxattr_fndecl_29895_fields selinux_inode_setxattr fndecl 4 29895 NULL
++residual_st_cmdstatus_29897_fields residual st_cmdstatus 0 29897 NULL
++be_pci_sriov_configure_fndecl_29900_fields be_pci_sriov_configure fndecl 2 29900 NULL
++edge_write_fndecl_29911_fields edge_write fndecl 4 29911 NULL
++io_error_dio_29914_fields io_error dio 0 29914 NULL
++size_exynos_drm_gem_29915_fields size exynos_drm_gem 0 29915 NULL
++fw_imem_len_rt_firmware_29916_fields fw_imem_len rt_firmware 0 29916 NULL
++size_ipt_replace_29921_fields size ipt_replace 0 29921 NULL
++nr_frags_skb_shared_info_29925_fields nr_frags skb_shared_info 0 29925 NULL
++mtt_base_mthca_mr_table_29926_fields mtt_base mthca_mr_table 0 29926 NULL
++alloc_one_pg_vec_page_fndecl_29928_fields alloc_one_pg_vec_page fndecl 1 29928 NULL
++read_pstore_info_29933_fields read pstore_info 0 29933 NULL
++lba_nvme_trans_io_cdb_29934_fields lba nvme_trans_io_cdb 0 29934 NULL
++pvr2_ioread_read_fndecl_29939_fields pvr2_ioread_read fndecl 3 29939 NULL
++__iscsi_complete_pdu_fndecl_29941_fields __iscsi_complete_pdu fndecl 4 29941 NULL
++spi_sync_fndecl_29944_fields spi_sync fndecl 0 29944 NULL
++s_min_extra_isize_ext4_super_block_29952_fields s_min_extra_isize ext4_super_block 0 29952 NULL nohasharray
++cciss_proc_write_fndecl_29952_fields cciss_proc_write fndecl 3 29952 &s_min_extra_isize_ext4_super_block_29952_fields
++opts1_mask_rtl8169_private_29953_fields opts1_mask rtl8169_private 0 29953 NULL
++max_mlx5_core_srq_29956_fields max mlx5_core_srq 0 29956 NULL nohasharray
++state_count_Fsm_29956_fields state_count Fsm 0 29956 &max_mlx5_core_srq_29956_fields nohasharray
++implemented_capacity_ms_boot_attr_info_29956_fields implemented_capacity ms_boot_attr_info 0 29956 &state_count_Fsm_29956_fields
++memconsole_length_vardecl_memconsole_c_29962_fields memconsole_length vardecl_memconsole.c 0 29962 NULL
++c_phys_ocfs2_write_cluster_desc_29971_fields c_phys ocfs2_write_cluster_desc 0 29971 NULL
++ds_in_channels_hdsp_29975_fields ds_in_channels hdsp 0 29975 NULL nohasharray
++mutex_lock_killable_fndecl_29975_fields mutex_lock_killable fndecl 0 29975 &ds_in_channels_hdsp_29975_fields
++i_suballoc_loc_ocfs2_dinode_29986_fields i_suballoc_loc ocfs2_dinode 0 29986 NULL nohasharray
++ubi_leb_change_fndecl_29986_fields ubi_leb_change fndecl 4 29986 &i_suballoc_loc_ocfs2_dinode_29986_fields
++init_size_il4965_firmware_pieces_29990_fields init_size il4965_firmware_pieces 0 29990 NULL
++snd_pcm_lib_preallocate_pages1_fndecl_30002_fields snd_pcm_lib_preallocate_pages1 fndecl 2 30002 NULL
++btrfs_add_ordered_extent_compress_fndecl_30005_fields btrfs_add_ordered_extent_compress fndecl 4-2-3 30005 NULL
++obj_offset_ore_striping_info_30010_fields obj_offset ore_striping_info 0 30010 NULL
++size_fstioc_write_30011_fields size fstioc_write 0 30011 NULL
++period_em28xx_audio_30017_fields period em28xx_audio 0 30017 NULL
++send_hole_fndecl_30019_fields send_hole fndecl 2 30019 NULL
++netlbl_catmap_setbit_fndecl_30024_fields netlbl_catmap_setbit fndecl 2 30024 NULL
++max_wqes_mthca_limits_30037_fields max_wqes mthca_limits 0 30037 NULL
++xdr_set_scratch_buffer_fndecl_30045_fields xdr_set_scratch_buffer fndecl 3 30045 NULL
++max_header_proto_30054_fields max_header proto 0 30054 NULL
++io_throttle_count_vnic_fc_config_30064_fields io_throttle_count vnic_fc_config 0 30064 NULL
++add_swap_extent_fndecl_30065_fields add_swap_extent fndecl 2-4-3 30065 NULL nohasharray
++get_dump_page_fndecl_30065_fields get_dump_page fndecl 1 30065 &add_swap_extent_fndecl_30065_fields
++psb_gem_create_fndecl_30068_fields psb_gem_create fndecl 3 30068 NULL
++to_ifla_vlan_qos_mapping_30070_fields to ifla_vlan_qos_mapping 0 30070 NULL
++SYSC_io_setup_fndecl_30071_fields SYSC_io_setup fndecl 1 30071 NULL nohasharray
++SenseLen__ErrorInfo_struct_30071_fields SenseLen _ErrorInfo_struct 0 30071 &SYSC_io_setup_fndecl_30071_fields
++mwifiex_send_tdls_data_frame_fndecl_30072_fields mwifiex_send_tdls_data_frame fndecl 7 30072 NULL
++wapi_ie_len_mwifiex_private_30073_fields wapi_ie_len mwifiex_private 0 30073 NULL
++cur_pos_kobil_private_30076_fields cur_pos kobil_private 0 30076 NULL
++ufx_alloc_urb_list_fndecl_30078_fields ufx_alloc_urb_list fndecl 3 30078 NULL
++num_pages_vmw_mob_30089_fields num_pages vmw_mob 0 30089 NULL
++ie_len_ieee80211_mgd_assoc_data_30093_fields ie_len ieee80211_mgd_assoc_data 0 30093 NULL
++id_watchdog_device_30094_fields id watchdog_device 0 30094 NULL
++length_ehci_qtd_30102_fields length ehci_qtd 0 30102 NULL
++mmc_test_seq_write_perf_fndecl_30107_fields mmc_test_seq_write_perf fndecl 2 30107 NULL
++of_translate_address_fndecl_30111_fields of_translate_address fndecl 0 30111 NULL
++read_iwl_rxq_30117_fields read iwl_rxq 0 30117 NULL
++bio_integrity_process_fndecl_30121_fields bio_integrity_process fndecl 0 30121 NULL
++max_total_qng_asc_dvc_var_30137_fields max_total_qng asc_dvc_var 0 30137 NULL
++hdr_len_ieee80211_fast_tx_30143_fields hdr_len ieee80211_fast_tx 0 30143 NULL
++map_mr_sg_ib_device_30147_fields map_mr_sg ib_device 0 30147 NULL
++chunk_len_nfcmrvl_fw_dnld_30149_fields chunk_len nfcmrvl_fw_dnld 0 30149 NULL
++i915_gem_object_create_stolen_for_preallocated_fndecl_30151_fields i915_gem_object_create_stolen_for_preallocated fndecl 4-2-3 30151 NULL nohasharray
++hpfs_remove_fnode_fndecl_30151_fields hpfs_remove_fnode fndecl 2 30151 &i915_gem_object_create_stolen_for_preallocated_fndecl_30151_fields
++scif_get_node_ids_fndecl_30156_fields scif_get_node_ids fndecl 0 30156 NULL
++buffer_len_fnic_dbgfs_30157_fields buffer_len fnic_dbgfs 0 30157 NULL
++iobuf_dma_us_data_30159_fields iobuf_dma us_data 0 30159 NULL
++mmio_base_drm_mga_private_30161_fields mmio_base drm_mga_private 0 30161 NULL
++bulk_in_size_hdpvr_device_30165_fields bulk_in_size hdpvr_device 0 30165 NULL
++rx_buf_sz_epic_private_30166_fields rx_buf_sz epic_private 0 30166 NULL nohasharray
++hash_start_dm_verity_30166_fields hash_start dm_verity 0 30166 &rx_buf_sz_epic_private_30166_fields
++mem_attr_table_efi_30168_fields mem_attr_table efi 0 30168 NULL
++tailsz_cifs_writedata_30171_fields tailsz cifs_writedata 0 30171 NULL
++be_calculate_vf_res_fndecl_30174_fields be_calculate_vf_res fndecl 2 30174 NULL
++bnx2x_set_gro_params_fndecl_30177_fields bnx2x_set_gro_params fndecl 3 30177 NULL
++prism2_ap_get_sta_qual_fndecl_30181_fields prism2_ap_get_sta_qual fndecl 0 30181 NULL
++in_ep_num_rtl_hal_usbint_cfg_30182_fields in_ep_num rtl_hal_usbint_cfg 0 30182 NULL
++alloc_pci_root_info_fndecl_30198_fields alloc_pci_root_info fndecl 2-1 30198 NULL
++pos_drm_i915_error_state_buf_30203_fields pos drm_i915_error_state_buf 0 30203 NULL
++pipe_size_renesas_usbhs_driver_param_30206_fields pipe_size renesas_usbhs_driver_param 0 30206 NULL
++len_header_msg_30207_fields len header_msg 0 30207 NULL
++bm_bits_bm_xfer_ctx_30221_fields bm_bits bm_xfer_ctx 0 30221 NULL nohasharray
++rd_offset_nfsd4_read_30221_fields rd_offset nfsd4_read 0 30221 &bm_bits_bm_xfer_ctx_30221_fields
++le_mtu_hci_dev_30225_fields le_mtu hci_dev 0 30225 NULL
++major_vardecl_pt_c_30228_fields major vardecl_pt.c 0 30228 NULL
++vtag_atl1e_recv_ret_status_30229_fields vtag atl1e_recv_ret_status 0 30229 NULL
++tcp_header_len_tcp_sock_30231_fields tcp_header_len tcp_sock 0 30231 NULL
++_brk_start_vardecl_setup_c_30236_fields _brk_start vardecl_setup.c 0 30236 NULL nohasharray
++SetLineNumber_fndecl_30236_fields SetLineNumber fndecl 0 30236 &_brk_start_vardecl_setup_c_30236_fields
++numblocks_bcma_sflash_tbl_e_30237_fields numblocks bcma_sflash_tbl_e 0 30237 NULL
++reiserfs_breada_fndecl_30247_fields reiserfs_breada fndecl 3-2 30247 NULL
++ndisc_fill_redirect_hdr_option_fndecl_30248_fields ndisc_fill_redirect_hdr_option fndecl 3 30248 NULL
++compat_sys_truncate_fndecl_30258_fields compat_sys_truncate fndecl 2 30258 NULL
++max_host_qng_adv_dvc_var_30264_fields max_host_qng adv_dvc_var 0 30264 NULL
++sys_sendfile_fndecl_30267_fields sys_sendfile fndecl 4 30267 NULL nohasharray
++rawsock_recvmsg_fndecl_30267_fields rawsock_recvmsg fndecl 3 30267 &sys_sendfile_fndecl_30267_fields
++tda665x_write_fndecl_30269_fields tda665x_write fndecl 3 30269 NULL nohasharray
++start_discovery_internal_fndecl_30269_fields start_discovery_internal fndecl 5 30269 &tda665x_write_fndecl_30269_fields
++minor_count_vardecl_30272_fields minor_count vardecl 0 30272 NULL
++data_size_netup_dma_30274_fields data_size netup_dma 0 30274 NULL
++blockshift_alauda_media_info_30287_fields blockshift alauda_media_info 0 30287 NULL
++xfs_collapse_file_space_fndecl_30288_fields xfs_collapse_file_space fndecl 2-3 30288 NULL
++blk_queue_dma_drain_fndecl_30290_fields blk_queue_dma_drain fndecl 4 30290 NULL
++tcp_send_mss_fndecl_30292_fields tcp_send_mss fndecl 0 30292 NULL
++t_tinc_hdr_rem_rds_tcp_connection_30296_fields t_tinc_hdr_rem rds_tcp_connection 0 30296 NULL
++wlength_at76_rx_buffer_30301_fields wlength at76_rx_buffer 0 30301 NULL
++m_ts_msg_msg_30307_fields m_ts msg_msg 0 30307 NULL
++ki_pos_kiocb_30312_fields ki_pos kiocb 0 30312 NULL
++private_data_len_iw_cm_event_30313_fields private_data_len iw_cm_event 0 30313 NULL
++wbuf_pagesize_jffs2_sb_info_30318_fields wbuf_pagesize jffs2_sb_info 0 30318 NULL
++ccp_prep_dma_memcpy_fndecl_30323_fields ccp_prep_dma_memcpy fndecl 4 30323 NULL
++name_len_discovery_t_30331_fields name_len discovery_t 0 30331 NULL
++acpi_os_map_memory_fndecl_30346_fields acpi_os_map_memory fndecl 2-1 30346 NULL
++overflow_maj_vardecl_ucm_c_30347_fields overflow_maj vardecl_ucm.c 0 30347 NULL
++p_ssize_f_uac2_opts_30353_fields p_ssize f_uac2_opts 0 30353 NULL
++max_rq_sg_mlx4_caps_30357_fields max_rq_sg mlx4_caps 0 30357 NULL
++bt_datalen_bcm5974_config_30374_fields bt_datalen bcm5974_config 0 30374 NULL
++ubifs_pad_fndecl_30375_fields ubifs_pad fndecl 3 30375 NULL
++max_r2t_iscsi_session_30376_fields max_r2t iscsi_session 0 30376 NULL
++pnp_add_bus_resource_fndecl_30381_fields pnp_add_bus_resource fndecl 3-2 30381 NULL
++qnx4_iget_fndecl_30383_fields qnx4_iget fndecl 2 30383 NULL
++max_span_mlxsw_resources_30386_fields max_span mlxsw_resources 0 30386 NULL
++get_callback_via_fndecl_30387_fields get_callback_via fndecl 0 30387 NULL
++ssid_len_cfg80211_ssid_30393_fields ssid_len cfg80211_ssid 0 30393 NULL
++datalen_port100_frame_30394_fields datalen port100_frame 0 30394 NULL
++i2c_mux_alloc_fndecl_30395_fields i2c_mux_alloc fndecl 4-3 30395 NULL
++ocfs2_dx_entry_list_insert_fndecl_30397_fields ocfs2_dx_entry_list_insert fndecl 3 30397 NULL
++blkdev_write_end_fndecl_30399_fields blkdev_write_end fndecl 5 30399 NULL
++dbgp_control_msg_fndecl_30405_fields dbgp_control_msg fndecl 7 30405 NULL
++queue_size_nvmf_ctrl_options_30406_fields queue_size nvmf_ctrl_options 0 30406 NULL
++hwm_tx_init_fndecl_30411_fields hwm_tx_init fndecl 4 30411 NULL
++flat_state_cnt_vardecl_processor_idle_c_30427_fields flat_state_cnt vardecl_processor_idle.c 0 30427 NULL
++width_bttv_fh_30432_fields width bttv_fh 0 30432 NULL
++ubifs_write_node_fndecl_30441_fields ubifs_write_node fndecl 3-5 30441 NULL
++be_get_dump_len_fndecl_30442_fields be_get_dump_len fndecl 0 30442 NULL
++count_snd_kcontrol_new_30443_fields count snd_kcontrol_new 0 30443 NULL
++num_channels_iio_dev_30451_fields num_channels iio_dev 0 30451 NULL
++max_fr_pages_nvme_rdma_ctrl_30453_fields max_fr_pages nvme_rdma_ctrl 0 30453 NULL
++xfs_rmap_convert_extent_fndecl_30455_fields xfs_rmap_convert_extent fndecl 0 30455 NULL
++mmap_region_fndecl_30460_fields mmap_region fndecl 3-2-0-5 30460 NULL
++height_drm_qxl_alloc_surf_30468_fields height drm_qxl_alloc_surf 0 30468 NULL
++__qp_memcpy_to_queue_fndecl_30472_fields __qp_memcpy_to_queue fndecl 4-2 30472 NULL
++nouveau_gem_new_fndecl_30476_fields nouveau_gem_new fndecl 2 30476 NULL nohasharray
++packet_size_ncp_server_30476_fields packet_size ncp_server 0 30476 &nouveau_gem_new_fndecl_30476_fields
++btrfs_sync_file_fndecl_30480_fields btrfs_sync_file fndecl 2-3 30480 NULL nohasharray
++produce_size_vmci_qp_alloc_info_30480_fields produce_size vmci_qp_alloc_info 0 30480 &btrfs_sync_file_fndecl_30480_fields
++xdr_buf_trim_fndecl_30485_fields xdr_buf_trim fndecl 2 30485 NULL
++data_len_ib_ucm_sidr_rep_30488_fields data_len ib_ucm_sidr_rep 0 30488 NULL
++height_s2255_vc_30492_fields height s2255_vc 0 30492 NULL
++nfcwilink_send_bts_cmd_fndecl_30497_fields nfcwilink_send_bts_cmd fndecl 3 30497 NULL
++tolen_nfs3_linkargs_30505_fields tolen nfs3_linkargs 0 30505 NULL
++buf_start_lo_rx_buf_desc_30523_fields buf_start_lo rx_buf_desc 0 30523 NULL
++nvme_submit_sync_cmd_fndecl_30530_fields nvme_submit_sync_cmd fndecl 4 30530 NULL
++send_command_fndecl_30531_fields send_command fndecl 4 30531 NULL
++InitiatorRecvDataSegmentLength_iscsi_conn_ops_30535_fields InitiatorRecvDataSegmentLength iscsi_conn_ops 0 30535 NULL
++len_nfsd_readlinkres_30541_fields len nfsd_readlinkres 0 30541 NULL
++nfcid_len_pn533_target_type_a_30554_fields nfcid_len pn533_target_type_a 0 30554 NULL
++left_vardecl_matroxfb_base_c_30557_fields left vardecl_matroxfb_base.c 0 30557 NULL
++min_size_rhashtable_params_30562_fields min_size rhashtable_params 0 30562 NULL
++entries_usb_sg_request_30570_fields entries usb_sg_request 0 30570 NULL
++key_len_ubifs_info_30572_fields key_len ubifs_info 0 30572 NULL nohasharray
++s_iblkno_ufs_sb_private_info_30572_fields s_iblkno ufs_sb_private_info 0 30572 &key_len_ubifs_info_30572_fields
++udf_get_pblock_virt20_fndecl_30574_fields udf_get_pblock_virt20 fndecl 4 30574 NULL
++mid_get_vbt_data_r0_fndecl_30575_fields mid_get_vbt_data_r0 fndecl 2 30575 NULL nohasharray
++pio_ide_pio_info_30575_fields pio ide_pio_info 0 30575 &mid_get_vbt_data_r0_fndecl_30575_fields
++userptr_amdgpu_ttm_tt_30577_fields userptr amdgpu_ttm_tt 0 30577 NULL
++delta_stack_mm_struct_30582_fields delta_stack mm_struct 0 30582 NULL nohasharray
++ida_get_new_above_fndecl_30582_fields ida_get_new_above fndecl 0 30582 &delta_stack_mm_struct_30582_fields
++max_intr_slots_myri10ge_priv_30588_fields max_intr_slots myri10ge_priv 0 30588 NULL
++group_ext4_new_group_data_30590_fields group ext4_new_group_data 0 30590 NULL nohasharray
++rsize_cifs_sb_info_30590_fields rsize cifs_sb_info 0 30590 &group_ext4_new_group_data_30590_fields
++read_edid_block_fndecl_30591_fields read_edid_block fndecl 4 30591 NULL
++size_drm_savage_cmdbuf_30592_fields size drm_savage_cmdbuf 0 30592 NULL nohasharray
++readsize_acm_30592_fields readsize acm 0 30592 &size_drm_savage_cmdbuf_30592_fields
++sctp_addto_chunk_fndecl_30597_fields sctp_addto_chunk fndecl 2 30597 NULL
++ext4_collapse_range_fndecl_30598_fields ext4_collapse_range fndecl 3-2 30598 NULL
++offset_drm_i915_gem_pread_30601_fields offset drm_i915_gem_pread 0 30601 NULL
++update_backups_fndecl_30602_fields update_backups fndecl 2 30602 NULL
++add_ino_fndecl_30603_fields add_ino fndecl 4 30603 NULL
++rx_win_size_mwifiex_add_ba_param_30610_fields rx_win_size mwifiex_add_ba_param 0 30610 NULL
++total_data_placed_lpfc_wcqe_complete_30612_fields total_data_placed lpfc_wcqe_complete 0 30612 NULL nohasharray
++blk_sz_os_dat_entry_s_30612_fields blk_sz os_dat_entry_s 0 30612 &total_data_placed_lpfc_wcqe_complete_30612_fields
++ieee802_11_parse_elems_crc_fndecl_30615_fields ieee802_11_parse_elems_crc fndecl 2 30615 NULL
++size_cmdQ_30622_fields size cmdQ 0 30622 NULL
++msc_buffer_win_alloc_fndecl_30624_fields msc_buffer_win_alloc fndecl 2 30624 NULL
++gtt_start_amdgpu_mc_30639_fields gtt_start amdgpu_mc 0 30639 NULL
++catc_ctrl_async_fndecl_30648_fields catc_ctrl_async fndecl 7 30648 NULL
++drbd_md_sync_page_io_fndecl_30651_fields drbd_md_sync_page_io fndecl 3 30651 NULL
++size_vmcore_30652_fields size vmcore 0 30652 NULL
++start_numa_memblk_30656_fields start numa_memblk 0 30656 NULL nohasharray
++TargetRecvDataSegmentLength_iscsi_conn_ops_30656_fields TargetRecvDataSegmentLength iscsi_conn_ops 0 30656 &start_numa_memblk_30656_fields
++ext4_mb_new_blocks_fndecl_30662_fields ext4_mb_new_blocks fndecl 0 30662 NULL
++tun_put_user_fndecl_30676_fields tun_put_user fndecl 0 30676 NULL
++max_count_pvr2_buffer_30678_fields max_count pvr2_buffer 0 30678 NULL
++nvme_cmd_size_fndecl_30679_fields nvme_cmd_size fndecl 0 30679 NULL
++log_num_srqs_mlx4_init_hca_param_30681_fields log_num_srqs mlx4_init_hca_param 0 30681 NULL
++ramsize_brcmf_chip_30687_fields ramsize brcmf_chip 0 30687 NULL nohasharray
++curr_queue_pairs_virtnet_info_30687_fields curr_queue_pairs virtnet_info 0 30687 &ramsize_brcmf_chip_30687_fields
++mac_drv_rx_complete_fndecl_30692_fields mac_drv_rx_complete fndecl 4 30692 NULL
++keybytes_gss_krb5_enctype_30694_fields keybytes gss_krb5_enctype 0 30694 NULL
++status_urb_30696_fields status urb 0 30696 NULL
++hdsp_spdif_sample_rate_fndecl_30700_fields hdsp_spdif_sample_rate fndecl 0 30700 NULL
++bin_cl_size_drm_vc4_submit_cl_30710_fields bin_cl_size drm_vc4_submit_cl 0 30710 NULL
++numPhys_PVSCSIConfigPageController_30726_fields numPhys PVSCSIConfigPageController 0 30726 NULL
++lbs_threshold_write_fndecl_30733_fields lbs_threshold_write fndecl 5 30733 NULL
++num_descriptors_pmc_ctx_30735_fields num_descriptors pmc_ctx 0 30735 NULL
++nci_hci_send_data_fndecl_30741_fields nci_hci_send_data fndecl 5 30741 NULL
++pitch_drm_mode_fb_cmd_30757_fields pitch drm_mode_fb_cmd 0 30757 NULL
++n_scan_channels_iwl_ucode_capabilities_30761_fields n_scan_channels iwl_ucode_capabilities 0 30761 NULL
++leb_size_ubifs_info_30775_fields leb_size ubifs_info 0 30775 NULL
++nzones_high_adfs_discrecord_30776_fields nzones_high adfs_discrecord 0 30776 NULL
++isoc_in_pipe_ttusb_30778_fields isoc_in_pipe ttusb 0 30778 NULL
++hdrlen_brcmf_pub_30788_fields hdrlen brcmf_pub 0 30788 NULL nohasharray
++num_blk_nvm_id_group_30788_fields num_blk nvm_id_group 0 30788 &hdrlen_brcmf_pub_30788_fields
++fcoe_ddp_xid_net_device_30789_fields fcoe_ddp_xid net_device 0 30789 NULL
++netup_write_i2c_fndecl_30793_fields netup_write_i2c fndecl 5 30793 NULL
++wr_sz_csio_q_30799_fields wr_sz csio_q 0 30799 NULL
++fwlen_mpt_fw_xfer_30803_fields fwlen mpt_fw_xfer 0 30803 NULL nohasharray
++extra_mpdu_postfix_len_lib80211_crypto_ops_30803_fields extra_mpdu_postfix_len lib80211_crypto_ops 0 30803 &fwlen_mpt_fw_xfer_30803_fields
++ResidualCnt_ErrorInfo_30806_fields ResidualCnt ErrorInfo 0 30806 NULL
++sadb_key_bits_sadb_key_30808_fields sadb_key_bits sadb_key 0 30808 NULL nohasharray
++buf_dma_gtco_30808_fields buf_dma gtco 0 30808 &sadb_key_bits_sadb_key_30808_fields
++unmerge_ksm_pages_fndecl_30809_fields unmerge_ksm_pages fndecl 2 30809 NULL
++xfs_ialloc_read_agi_fndecl_30810_fields xfs_ialloc_read_agi fndecl 3 30810 NULL nohasharray
++si21_readregs_fndecl_30810_fields si21_readregs fndecl 4 30810 &xfs_ialloc_read_agi_fndecl_30810_fields
++totalram_sysinfo_30812_fields totalram sysinfo 0 30812 NULL
++num_mcg_mthca_profile_30814_fields num_mcg mthca_profile 0 30814 NULL
++audit_log_n_untrustedstring_fndecl_30815_fields audit_log_n_untrustedstring fndecl 3 30815 NULL
++commit_head_n_tty_data_30817_fields commit_head n_tty_data 0 30817 NULL nohasharray
++orig_y_screen_info_30817_fields orig_y screen_info 0 30817 &commit_head_n_tty_data_30817_fields
++shmem_write_begin_fndecl_30822_fields shmem_write_begin fndecl 3 30822 NULL
++report_count_hid_field_30826_fields report_count hid_field 0 30826 NULL
++s_root_blkno_ocfs2_super_block_30828_fields s_root_blkno ocfs2_super_block 0 30828 NULL
++opt_addr_space_ndisc_ops_30830_fields opt_addr_space ndisc_ops 0 30830 NULL
++f2fs_read_data_pages_fndecl_30837_fields f2fs_read_data_pages fndecl 4 30837 NULL
++resp_size_virtio_gpu_vbuffer_30847_fields resp_size virtio_gpu_vbuffer 0 30847 NULL
++notify_offset_multiplier_virtio_pci_device_30853_fields notify_offset_multiplier virtio_pci_device 0 30853 NULL
++count_acpi_object_list_30856_fields count acpi_object_list 0 30856 NULL nohasharray
++default_pvid_net_bridge_30856_fields default_pvid net_bridge 0 30856 &count_acpi_object_list_30856_fields
++al_size_4k_drbd_md_30864_fields al_size_4k drbd_md 0 30864 NULL
++width_cx2341x_handler_30869_fields width cx2341x_handler 0 30869 NULL nohasharray
++memory_size_hp100_private_30869_fields memory_size hp100_private 0 30869 &width_cx2341x_handler_30869_fields
++batadv_send_skb_push_fill_unicast_fndecl_30870_fields batadv_send_skb_push_fill_unicast fndecl 2 30870 NULL nohasharray
++xfs_qm_dqattach_one_fndecl_30870_fields xfs_qm_dqattach_one fndecl 0 30870 &batadv_send_skb_push_fill_unicast_fndecl_30870_fields
++sddr09_send_command_fndecl_30873_fields sddr09_send_command fndecl 5 30873 NULL nohasharray
++r_clusters_ocfs2_refcount_rec_30873_fields r_clusters ocfs2_refcount_rec 0 30873 &sddr09_send_command_fndecl_30873_fields
++current_page_mspro_block_data_30876_fields current_page mspro_block_data 0 30876 NULL
++dma_buf_sz_stmmac_priv_30880_fields dma_buf_sz stmmac_priv 0 30880 NULL
++max_ti_iu_len_srpt_rdma_ch_30887_fields max_ti_iu_len srpt_rdma_ch 0 30887 NULL nohasharray
++ocfs2_xattr_get_rec_fndecl_30887_fields ocfs2_xattr_get_rec fndecl 0 30887 &max_ti_iu_len_srpt_rdma_ch_30887_fields nohasharray
++fifo_size_serial8250_config_30887_fields fifo_size serial8250_config 0 30887 &ocfs2_xattr_get_rec_fndecl_30887_fields
++queue_received_packet_fndecl_30890_fields queue_received_packet fndecl 5 30890 NULL
++sc_rq_depth_svcxprt_rdma_30899_fields sc_rq_depth svcxprt_rdma 0 30899 NULL
++compat_sys_keyctl_fndecl_30900_fields compat_sys_keyctl fndecl 4 30900 NULL
++st_nci_hci_dm_reset_fndecl_30904_fields st_nci_hci_dm_reset fndecl 3 30904 NULL
++host_addrlen_nfs4_mount_data_30905_fields host_addrlen nfs4_mount_data 0 30905 NULL
++word12_lpfc_mbx_read_config_30908_fields word12 lpfc_mbx_read_config 0 30908 NULL
++log_sq_bb_count_mlx4_ib_create_qp_30909_fields log_sq_bb_count mlx4_ib_create_qp 0 30909 NULL
++max_datagram_size_cdc_ncm_ctx_30918_fields max_datagram_size cdc_ncm_ctx 0 30918 NULL
++__erst_read_from_storage_fndecl_30921_fields __erst_read_from_storage fndecl 2-1 30921 NULL
++cudlength_x25_calluserdata_30930_fields cudlength x25_calluserdata 0 30930 NULL
++cqe_size_mlx5_ib_resize_cq_30931_fields cqe_size mlx5_ib_resize_cq 0 30931 NULL
++id_virtio_console_control_30940_fields id virtio_console_control 0 30940 NULL
++hwparams4_dwc3_hwparams_30944_fields hwparams4 dwc3_hwparams 0 30944 NULL
++page_len_gssp_in_token_30948_fields page_len gssp_in_token 0 30948 NULL
++pvr2_stream_setup_fndecl_30955_fields pvr2_stream_setup fndecl 3 30955 NULL
++leaf_shift_right_fndecl_30957_fields leaf_shift_right fndecl 3 30957 NULL
++ring_start__drm_i810_init_30964_fields ring_start _drm_i810_init 0 30964 NULL
++max_sdu_atm_trafprm_30969_fields max_sdu atm_trafprm 0 30969 NULL
++mt7601u_rx_skb_from_seg_fndecl_30971_fields mt7601u_rx_skb_from_seg fndecl 5 30971 NULL
++get_leaf_fndecl_30972_fields get_leaf fndecl 2 30972 NULL
++_usb_write_async_fndecl_30976_fields _usb_write_async fndecl 4 30976 NULL nohasharray
++l2tp_ip_sendmsg_fndecl_30976_fields l2tp_ip_sendmsg fndecl 3 30976 &_usb_write_async_fndecl_30976_fields
++tid_mwifiex_tx_ba_stream_tbl_30977_fields tid mwifiex_tx_ba_stream_tbl 0 30977 NULL
++ext4_mark_iloc_dirty_fndecl_30980_fields ext4_mark_iloc_dirty fndecl 0 30980 NULL
++offset_nfsd_readargs_30989_fields offset nfsd_readargs 0 30989 NULL
++vti6_change_mtu_fndecl_30995_fields vti6_change_mtu fndecl 2 30995 NULL
++l2cap_create_connless_pdu_fndecl_30997_fields l2cap_create_connless_pdu fndecl 3 30997 NULL
++lro_append_pkt_fndecl_31003_fields lro_append_pkt fndecl 4 31003 NULL
++hdpvr_read_fndecl_31018_fields hdpvr_read fndecl 3 31018 NULL
++ipoib_change_mtu_fndecl_31020_fields ipoib_change_mtu fndecl 2 31020 NULL
++DevSize_cfi_ident_31031_fields DevSize cfi_ident 0 31031 NULL
++tcf_csum_ipv4_icmp_fndecl_31033_fields tcf_csum_ipv4_icmp fndecl 3 31033 NULL
++ocfs2_clear_ext_refcount_fndecl_31035_fields ocfs2_clear_ext_refcount fndecl 4-3 31035 NULL
++hfsplus_bnode_read_u16_fndecl_31037_fields hfsplus_bnode_read_u16 fndecl 0 31037 NULL
++migrate_misplaced_transhuge_page_fndecl_31041_fields migrate_misplaced_transhuge_page fndecl 5 31041 NULL
++qla82xx_pci_set_window_fndecl_31044_fields qla82xx_pci_set_window fndecl 0-2 31044 NULL
++dsp_registers_phys_echoaudio_31045_fields dsp_registers_phys echoaudio 0 31045 NULL
++capset_max_size_virtio_gpu_resp_capset_info_31049_fields capset_max_size virtio_gpu_resp_capset_info 0 31049 NULL
++vlan_tag_qede_agg_info_31052_fields vlan_tag qede_agg_info 0 31052 NULL
++ceph_sync_setxattr_fndecl_31053_fields ceph_sync_setxattr fndecl 4 31053 NULL
++nr_bytes_scif_rma_req_31055_fields nr_bytes scif_rma_req 0 31055 NULL
++pci_sriov_get_totalvfs_fndecl_31059_fields pci_sriov_get_totalvfs fndecl 0 31059 NULL nohasharray
++__get_data_block_fndecl_31059_fields __get_data_block fndecl 2 31059 &pci_sriov_get_totalvfs_fndecl_31059_fields nohasharray
++t4_max_qp_depth_c4iw_hw_queue_31059_fields t4_max_qp_depth c4iw_hw_queue 0 31059 &__get_data_block_fndecl_31059_fields
++drbd_bm_bits_fndecl_31061_fields drbd_bm_bits fndecl 0 31061 NULL
++si_lf_eblk_bfs_sb_info_31064_fields si_lf_eblk bfs_sb_info 0 31064 NULL
++hdr_offset_xfrm_type_31067_fields hdr_offset xfrm_type 0 31067 NULL
++bulk_in_endpointAddress_usb_serial_port_31069_fields bulk_in_endpointAddress usb_serial_port 0 31069 NULL
++segsize_musb_qh_31074_fields segsize musb_qh 0 31074 NULL
++brcmf_sdiod_recv_buf_fndecl_31083_fields brcmf_sdiod_recv_buf fndecl 3 31083 NULL
++ocfs2_orphan_for_truncate_fndecl_31085_fields ocfs2_orphan_for_truncate fndecl 4 31085 NULL
++max_fingers_rmi_data_31091_fields max_fingers rmi_data 0 31091 NULL
++num_crtc_vgastate_31093_fields num_crtc vgastate 0 31093 NULL
++screen_depth_vardecl_hyperv_fb_c_31095_fields screen_depth vardecl_hyperv_fb.c 0 31095 NULL nohasharray
++regmap_i2c_read_fndecl_31095_fields regmap_i2c_read fndecl 3-5 31095 &screen_depth_vardecl_hyperv_fb_c_31095_fields
++s_segsize_logfs_super_31101_fields s_segsize logfs_super 0 31101 NULL
++max3421_transfer_in_done_fndecl_31109_fields max3421_transfer_in_done fndecl 0 31109 NULL
++status_tulip_desc_t_31113_fields status tulip_desc_t 0 31113 NULL
++dm_bm_read_lock_fndecl_31121_fields dm_bm_read_lock fndecl 2 31121 NULL
++uhci_result_isochronous_fndecl_31133_fields uhci_result_isochronous fndecl 0 31133 NULL nohasharray
++write_device_fndecl_31133_fields write_device fndecl 3 31133 &uhci_result_isochronous_fndecl_31133_fields
++_mv88e6xxx_vtu_get_fndecl_31134_fields _mv88e6xxx_vtu_get fndecl 2 31134 NULL
++virtqueue_add_outbuf_fndecl_31136_fields virtqueue_add_outbuf fndecl 3 31136 NULL
++_AscCopyLramScsiDoneQ_fndecl_31137_fields _AscCopyLramScsiDoneQ fndecl 4 31137 NULL
++mwifiex_get_supported_rates_fndecl_31144_fields mwifiex_get_supported_rates fndecl 0 31144 NULL
++irttp_connect_indication_fndecl_31149_fields irttp_connect_indication fndecl 4-5 31149 NULL
++hpfs_count_dnodes_fndecl_31152_fields hpfs_count_dnodes fndecl 2 31152 NULL
++max_rx_ip_filters_efx_nic_type_31156_fields max_rx_ip_filters efx_nic_type 0 31156 NULL
++max_seg_size_tsap_cb_31158_fields max_seg_size tsap_cb 0 31158 NULL
++rcvbuf_size_bas_cardstate_31177_fields rcvbuf_size bas_cardstate 0 31177 NULL
++bRPipeBlockSize_usb_wa_descriptor_31178_fields bRPipeBlockSize usb_wa_descriptor 0 31178 NULL
++get_xsaves_size_fndecl_31182_fields get_xsaves_size fndecl 0 31182 NULL
++slhc_compress_fndecl_31190_fields slhc_compress fndecl 0-3 31190 NULL
++btrfs_drop_extents_fndecl_31196_fields btrfs_drop_extents fndecl 5-4 31196 NULL nohasharray
++alloc_huge_page_noerr_fndecl_31196_fields alloc_huge_page_noerr fndecl 2 31196 &btrfs_drop_extents_fndecl_31196_fields nohasharray
++st_int_recv_fndecl_31196_fields st_int_recv fndecl 3 31196 &alloc_huge_page_noerr_fndecl_31196_fields
++wr_ep_alauda_info_31218_fields wr_ep alauda_info 0 31218 NULL
++io_size_smbus_lpc_sch_info_31219_fields io_size_smbus lpc_sch_info 0 31219 NULL
++fl_align_sge_31227_fields fl_align sge 0 31227 NULL
++mcs_unwrap_mir_fndecl_31228_fields mcs_unwrap_mir fndecl 3 31228 NULL nohasharray
++iscsi_tcp_segment_done_fndecl_31228_fields iscsi_tcp_segment_done fndecl 4 31228 &mcs_unwrap_mir_fndecl_31228_fields nohasharray
++choose_log_fs_mgm_entry_size_fndecl_31228_fields choose_log_fs_mgm_entry_size fndecl 0 31228 &iscsi_tcp_segment_done_fndecl_31228_fields
++kaweth_control_fndecl_31233_fields kaweth_control fndecl 8-2 31233 NULL
++len_ip_vs_iphdr_31235_fields len ip_vs_iphdr 0 31235 NULL
++hybla_cong_avoid_fndecl_31239_fields hybla_cong_avoid fndecl 3 31239 NULL
++length_wdm_device_31248_fields length wdm_device 0 31248 NULL
++virtio_gpu_dirty_update_fndecl_31253_fields virtio_gpu_dirty_update fndecl 4-3-5-6 31253 NULL
++source_id_acpi_hest_header_31256_fields source_id acpi_hest_header 0 31256 NULL
++rbdr_len_queue_set_31258_fields rbdr_len queue_set 0 31258 NULL
++orig_video_lines_screen_info_31267_fields orig_video_lines screen_info 0 31267 NULL nohasharray
++data_dma_hanwang_31267_fields data_dma hanwang 0 31267 &orig_video_lines_screen_info_31267_fields
++vm_iomap_memory_fndecl_31269_fields vm_iomap_memory fndecl 2 31269 NULL
++end_incl_vringh_range_31272_fields end_incl vringh_range 0 31272 NULL
++ascot2e_read_regs_fndecl_31273_fields ascot2e_read_regs fndecl 4 31273 NULL
++max_handles_radeon_uvd_31276_fields max_handles radeon_uvd 0 31276 NULL
++packet_length_rc_config_31278_fields packet_length rc_config 0 31278 NULL
++irq_pcmcia_device_31283_fields irq pcmcia_device 0 31283 NULL
++mmap_base_kioctx_31285_fields mmap_base kioctx 0 31285 NULL
++handle_request_fndecl_31291_fields handle_request fndecl 9 31291 NULL
++nfs_readdir_page_filler_fndecl_31292_fields nfs_readdir_page_filler fndecl 5 31292 NULL
++avail_wm_adsp_compr_buf_31294_fields avail wm_adsp_compr_buf 0 31294 NULL
++fs_shift_hfsplus_sb_info_31309_fields fs_shift hfsplus_sb_info 0 31309 NULL
++rxblen_brcmf_sdio_31317_fields rxblen brcmf_sdio 0 31317 NULL
++bio_integrity_add_page_fndecl_31320_fields bio_integrity_add_page fndecl 3-4 31320 NULL
++gsi_end_mp_ioapic_gsi_31327_fields gsi_end mp_ioapic_gsi 0 31327 NULL
++scatter_len_efx_rx_queue_31330_fields scatter_len efx_rx_queue 0 31330 NULL nohasharray
++drm_do_probe_ddc_edid_fndecl_31330_fields drm_do_probe_ddc_edid fndecl 4 31330 &scatter_len_efx_rx_queue_31330_fields
++ubifs_tnc_add_fndecl_31332_fields ubifs_tnc_add fndecl 5-4 31332 NULL
++cur_frames_osst_tape_31335_fields cur_frames osst_tape 0 31335 NULL
++size_ttm_bus_placement_31338_fields size ttm_bus_placement 0 31338 NULL
++block_sz_htc_target_31342_fields block_sz htc_target 0 31342 NULL
++sdio_writesb_fndecl_31345_fields sdio_writesb fndecl 4 31345 NULL
++bulk_in_size_usb_serial_driver_31350_fields bulk_in_size usb_serial_driver 0 31350 NULL
++cifs_llseek_fndecl_31352_fields cifs_llseek fndecl 2 31352 NULL
++size_power_iwl_fw_dbg_dest_tlv_31357_fields size_power iwl_fw_dbg_dest_tlv 0 31357 NULL
++device_acpiphp_slot_31359_fields device acpiphp_slot 0 31359 NULL
++romfs_dev_strcmp_fndecl_31365_fields romfs_dev_strcmp fndecl 4-2 31365 NULL
++rcvhdrq_phys_hfi1_ctxtdata_31388_fields rcvhdrq_phys hfi1_ctxtdata 0 31388 NULL
++s_stripe_ext4_sb_info_31391_fields s_stripe ext4_sb_info 0 31391 NULL
++spi_populate_sync_msg_fndecl_31392_fields spi_populate_sync_msg fndecl 0 31392 NULL
++ip_tunnel_bind_dev_fndecl_31398_fields ip_tunnel_bind_dev fndecl 0 31398 NULL
++number_xt_table_info_31404_fields number xt_table_info 0 31404 NULL
++num_types_amdgpu_irq_src_31405_fields num_types amdgpu_irq_src 0 31405 NULL
++rxrpc_rx_window_size_vardecl_31406_fields rxrpc_rx_window_size vardecl 0 31406 NULL
++data_offset_msgbuf_rx_complete_31409_fields data_offset msgbuf_rx_complete 0 31409 NULL
++sg_tablesize_sg_device_31415_fields sg_tablesize sg_device 0 31415 NULL
++write_node_page_fndecl_31419_fields write_node_page fndecl 1 31419 NULL
++unmap_region_fndecl_31420_fields unmap_region fndecl 5-4 31420 NULL
++bch_bucket_alloc_fndecl_31421_fields bch_bucket_alloc fndecl 0 31421 NULL
++onenand_read_oob_nolock_fndecl_31430_fields onenand_read_oob_nolock fndecl 2 31430 NULL nohasharray
++len_brcmf_vs_tlv_31430_fields len brcmf_vs_tlv 0 31430 &onenand_read_oob_nolock_fndecl_31430_fields
++mpx_unmap_tables_fndecl_31439_fields mpx_unmap_tables fndecl 2-3 31439 NULL
++vc_x_vc_data_31443_fields vc_x vc_data 0 31443 NULL
++gro_size_bnx2x_agg_info_31450_fields gro_size bnx2x_agg_info 0 31450 NULL
++tx_data_ep_usb_tx_data_port_31452_fields tx_data_ep usb_tx_data_port 0 31452 NULL nohasharray
++length_wsm_ssid_31452_fields length wsm_ssid 0 31452 &tx_data_ep_usb_tx_data_port_31452_fields
++i_eattr_gfs2_inode_31461_fields i_eattr gfs2_inode 0 31461 NULL
++length__diva_xdi_um_cfg_cmd_data_read_sdram_31465_fields length _diva_xdi_um_cfg_cmd_data_read_sdram 0 31465 NULL
++drbd_send_all_fndecl_31468_fields drbd_send_all fndecl 4 31468 NULL
++len_mmap_arg_struct32_31471_fields len mmap_arg_struct32 0 31471 NULL nohasharray
++videobuf_dma_init_overlay_fndecl_31471_fields videobuf_dma_init_overlay fndecl 4 31471 &len_mmap_arg_struct32_31471_fields
++lock_extent_bits_fndecl_31481_fields lock_extent_bits fndecl 3-2 31481 NULL
++wl12xx_spi_raw_write_fndecl_31482_fields wl12xx_spi_raw_write fndecl 4 31482 NULL
++rq_wqe_shift_mlx5_ib_create_wq_31487_fields rq_wqe_shift mlx5_ib_create_wq 0 31487 NULL
++xlog_verify_tail_fndecl_31489_fields xlog_verify_tail fndecl 3 31489 NULL nohasharray
++length_rsd_31489_fields length rsd 0 31489 &xlog_verify_tail_fndecl_31489_fields
++pcpu_alloc_fndecl_31502_fields pcpu_alloc fndecl 1 31502 NULL
++PIXDEPTH_kyrofb_info_31509_fields PIXDEPTH kyrofb_info 0 31509 NULL
++fixed_size_llseek_fndecl_31512_fields fixed_size_llseek fndecl 4-2 31512 NULL
++ddb_input_read_fndecl_31516_fields ddb_input_read fndecl 3 31516 NULL
++shmem_replace_page_fndecl_31519_fields shmem_replace_page fndecl 4 31519 NULL
++tx_iovlen_ncp_request_reply_31522_fields tx_iovlen ncp_request_reply 0 31522 NULL
++residual_datacnt_status_pkt_31531_fields residual_datacnt status_pkt 0 31531 NULL
++veth_set_rx_headroom_fndecl_31535_fields veth_set_rx_headroom fndecl 2 31535 NULL
++rx_pipe_usbpn_dev_31540_fields rx_pipe usbpn_dev 0 31540 NULL
++__alloc_percpu_fndecl_31543_fields __alloc_percpu fndecl 1 31543 NULL
++tcp_tso_acked_fndecl_31549_fields tcp_tso_acked fndecl 0 31549 NULL
++stride_drm_qxl_alloc_surf_31551_fields stride drm_qxl_alloc_surf 0 31551 NULL nohasharray
++ks_rdreg16_fndecl_31551_fields ks_rdreg16 fndecl 0 31551 &stride_drm_qxl_alloc_surf_31551_fields
++kernel_physical_mapping_init_fndecl_31561_fields kernel_physical_mapping_init fndecl 0-2 31561 NULL
++qlcnic_validate_ringparam_fndecl_31569_fields qlcnic_validate_ringparam fndecl 0 31569 NULL
++can_change_mtu_fndecl_31583_fields can_change_mtu fndecl 2 31583 NULL
++dvb_dvr_set_buffer_size_fndecl_31587_fields dvb_dvr_set_buffer_size fndecl 2 31587 NULL
++num_txq_bna_attr_31588_fields num_txq bna_attr 0 31588 NULL
++v_max_out_saa7146_standard_31591_fields v_max_out saa7146_standard 0 31591 NULL
++nbchannel_capi_profile_31592_fields nbchannel capi_profile 0 31592 NULL
++radeon_gart_size_auto_fndecl_31605_fields radeon_gart_size_auto fndecl 0 31605 NULL
++sys_mprotect_fndecl_31611_fields sys_mprotect fndecl 2-1 31611 NULL
++dir_commit_chunk_fndecl_31621_fields dir_commit_chunk fndecl 3 31621 NULL
++a_entry_exec_31622_fields a_entry exec 0 31622 NULL
++vma_merge_fndecl_31624_fields vma_merge fndecl 4-3 31624 NULL
++nv04_fifo_new__fndecl_31639_fields nv04_fifo_new_ fndecl 4 31639 NULL
++segsize_dn_skb_cb_31640_fields segsize dn_skb_cb 0 31640 NULL
++pep_recvmsg_fndecl_31641_fields pep_recvmsg fndecl 3 31641 NULL
++ext4_free_blocks_fndecl_31648_fields ext4_free_blocks fndecl 4-5 31648 NULL nohasharray
++av_buf_tail_dccp_ackvec_31648_fields av_buf_tail dccp_ackvec 0 31648 &ext4_free_blocks_fndecl_31648_fields
++mwifiex_set_wpa_ie_helper_fndecl_31650_fields mwifiex_set_wpa_ie_helper fndecl 3 31650 NULL
++bpp_uvc_format_31654_fields bpp uvc_format 0 31654 NULL
++compat_sys_ipc_fndecl_31659_fields compat_sys_ipc fndecl 3 31659 NULL
++ext4_map_blocks_fndecl_31663_fields ext4_map_blocks fndecl 0 31663 NULL
++hp_hpet_phys_hpets_31664_fields hp_hpet_phys hpets 0 31664 NULL
++read_dma_ims_pcu_31667_fields read_dma ims_pcu 0 31667 NULL nohasharray
++len_hda_conn_list_31667_fields len hda_conn_list 0 31667 &read_dma_ims_pcu_31667_fields
++set_capacity_fndecl_31670_fields set_capacity fndecl 2 31670 NULL
++fragment_ufs_buffer_head_31676_fields fragment ufs_buffer_head 0 31676 NULL
++rx_header_len_pn533_frame_ops_31680_fields rx_header_len pn533_frame_ops 0 31680 NULL
++set_rxd_buffer_pointer_fndecl_31693_fields set_rxd_buffer_pointer fndecl 8 31693 NULL
++sr_write_cmd_async_fndecl_31698_fields sr_write_cmd_async fndecl 5 31698 NULL
++TargetsPerBus_aac_bus_info_response_31699_fields TargetsPerBus aac_bus_info_response 0 31699 NULL
++init_pipe_urbs_fndecl_31704_fields init_pipe_urbs fndecl 2-6 31704 NULL
++len_ib_ucm_lap_31705_fields len ib_ucm_lap 0 31705 NULL
++get_free_serial_index_fndecl_31714_fields get_free_serial_index fndecl 0 31714 NULL
++btrfs_add_link_fndecl_31718_fields btrfs_add_link fndecl 5 31718 NULL
++compat_import_iovec_fndecl_31721_fields compat_import_iovec fndecl 3 31721 NULL nohasharray
++ath6kl_usb_submit_ctrl_out_fndecl_31721_fields ath6kl_usb_submit_ctrl_out fndecl 6 31721 &compat_import_iovec_fndecl_31721_fields
++sscanf_fndecl_31725_fields sscanf fndecl 0 31725 NULL
++offset_nfs_pgio_args_31727_fields offset nfs_pgio_args 0 31727 NULL
++ext2_new_blocks_fndecl_31729_fields ext2_new_blocks fndecl 0-2 31729 NULL
++recv_bm_rle_bits_fndecl_31731_fields recv_bm_rle_bits fndecl 4 31731 NULL
++location_r5l_payload_data_parity_31741_fields location r5l_payload_data_parity 0 31741 NULL
++ih_ring_entry_size_kfd_device_info_31745_fields ih_ring_entry_size kfd_device_info 0 31745 NULL
++nxt200x_writereg_multibyte_fndecl_31757_fields nxt200x_writereg_multibyte fndecl 4 31757 NULL
++bio_readpage_error_fndecl_31761_fields bio_readpage_error fndecl 4-5 31761 NULL
++i_size_dio_31770_fields i_size dio 0 31770 NULL
++iommu_pgshift_gk20a_instmem_31778_fields iommu_pgshift gk20a_instmem 0 31778 NULL
++endpt_ubifs_scan_leb_31792_fields endpt ubifs_scan_leb 0 31792 NULL
++minix_V2_raw_inode_fndecl_31793_fields minix_V2_raw_inode fndecl 2 31793 NULL nohasharray
++irq_gpio_lpc_sch_info_31793_fields irq_gpio lpc_sch_info 0 31793 &minix_V2_raw_inode_fndecl_31793_fields
++__cros_ec_pwm_get_duty_fndecl_31796_fields __cros_ec_pwm_get_duty fndecl 0 31796 NULL
++mml_isar_ch_31799_fields mml isar_ch 0 31799 NULL
++parent_i_pos_low_fat_fid_31802_fields parent_i_pos_low fat_fid 0 31802 NULL
++bg_inode_table_ext2_group_desc_31805_fields bg_inode_table ext2_group_desc 0 31805 NULL
++target_submit_cmd_map_sgls_fndecl_31806_fields target_submit_cmd_map_sgls fndecl 6-15 31806 NULL
++qed_cxt_set_srq_count_fndecl_31811_fields qed_cxt_set_srq_count fndecl 2 31811 NULL
++alloc_pg_vec_fndecl_31814_fields alloc_pg_vec fndecl 2 31814 NULL
++secure_dccp_sequence_number_fndecl_31815_fields secure_dccp_sequence_number fndecl 0 31815 NULL
++NumPhys__MPI2_CONFIG_PAGE_EXPANDER_0_31816_fields NumPhys _MPI2_CONFIG_PAGE_EXPANDER_0 0 31816 NULL
++const_channel_count_hda_gen_spec_31817_fields const_channel_count hda_gen_spec 0 31817 NULL nohasharray
++spu_read_fndecl_31817_fields spu_read fndecl 4-0 31817 &const_channel_count_hda_gen_spec_31817_fields
++uvc_v4l2_get_bytesperline_fndecl_31820_fields uvc_v4l2_get_bytesperline fndecl 0 31820 NULL
++__skb_get_poff_fndecl_31821_fields __skb_get_poff fndecl 0 31821 NULL
++num_partition_entries__gpt_header_31832_fields num_partition_entries _gpt_header 0 31832 NULL nohasharray
++byte_len_svc_rdma_op_ctxt_31832_fields byte_len svc_rdma_op_ctxt 0 31832 &num_partition_entries__gpt_header_31832_fields
++num_tty_driver_31834_fields num tty_driver 0 31834 NULL
++n_channels_efx_nic_31838_fields n_channels efx_nic 0 31838 NULL
++opticon_process_data_packet_fndecl_31839_fields opticon_process_data_packet fndecl 3 31839 NULL
++ds_block_shift_logfs_disk_super_31840_fields ds_block_shift logfs_disk_super 0 31840 NULL
++nciq_cxgb4_lld_info_31848_fields nciq cxgb4_lld_info 0 31848 NULL
++sys_munlock_fndecl_31851_fields sys_munlock fndecl 1-2 31851 NULL
++msi2500_convert_stream_fndecl_31862_fields msi2500_convert_stream fndecl 0 31862 NULL
++udf_setup_indirect_aext_fndecl_31873_fields udf_setup_indirect_aext fndecl 2 31873 NULL
++gseg_gru_set_context_option_req_31876_fields gseg gru_set_context_option_req 0 31876 NULL
++i_lastfrag_ufs_inode_info_31879_fields i_lastfrag ufs_inode_info 0 31879 NULL
++sctp_user_addto_chunk_fndecl_31881_fields sctp_user_addto_chunk fndecl 2 31881 NULL
++s_hdrwords_rvt_qp_31882_fields s_hdrwords rvt_qp 0 31882 NULL
++ieee80211_start_tx_ba_cb_fndecl_31884_fields ieee80211_start_tx_ba_cb fndecl 3 31884 NULL
++reallocate_resource_fndecl_31885_fields reallocate_resource fndecl 3 31885 NULL
++max_tasks_bnx2fc_hba_31893_fields max_tasks bnx2fc_hba 0 31893 NULL
++intel_mem_write_fndecl_31895_fields intel_mem_write fndecl 3 31895 NULL
++ieee80211_get_hdrlen_from_buf_fndecl_31900_fields ieee80211_get_hdrlen_from_buf fndecl 0 31900 NULL
++size_macb_tx_skb_31904_fields size macb_tx_skb 0 31904 NULL nohasharray
++ai_hstcp_31904_fields ai hstcp 0 31904 &size_macb_tx_skb_31904_fields
++xfs_qm_dqattach_locked_fndecl_31906_fields xfs_qm_dqattach_locked fndecl 0 31906 NULL
++vram_vardecl_atyfb_base_c_31909_fields vram vardecl_atyfb_base.c 0 31909 NULL nohasharray
++lengthExtendedAttr_fileEntry_31909_fields lengthExtendedAttr fileEntry 0 31909 &vram_vardecl_atyfb_base_c_31909_fields
++numdl_nvme_get_log_page_command_31912_fields numdl nvme_get_log_page_command 0 31912 NULL nohasharray
++num_packets_em28xx_usb_bufs_31912_fields num_packets em28xx_usb_bufs 0 31912 &numdl_nvme_get_log_page_command_31912_fields
++drvr_qdepth_blogic_adapter_31915_fields drvr_qdepth blogic_adapter 0 31915 NULL
++fuse_send_write_pages_fndecl_31919_fields fuse_send_write_pages fndecl 0-5 31919 NULL
++physical_block_size_scsi_disk_31931_fields physical_block_size scsi_disk 0 31931 NULL
++rmmio_size_radeon_device_31934_fields rmmio_size radeon_device 0 31934 NULL
++channel_iio_chan_spec_31939_fields channel iio_chan_spec 0 31939 NULL nohasharray
++mesh_rx_plink_frame_fndecl_31939_fields mesh_rx_plink_frame fndecl 3 31939 &channel_iio_chan_spec_31939_fields
++ptr_i915_gem_userptr_31948_fields ptr i915_gem_userptr 0 31948 NULL
++_read_mtd_info_31950_fields _read mtd_info 0 31950 NULL
++buf_height_tpg_data_31953_fields buf_height tpg_data 0 31953 NULL
++usHSyncOffset__ATOM_DTD_FORMAT_31956_fields usHSyncOffset _ATOM_DTD_FORMAT 0 31956 NULL
++ufs_add_fragments_fndecl_31963_fields ufs_add_fragments fndecl 2-0 31963 NULL
++isdn_tty_write_fndecl_31972_fields isdn_tty_write fndecl 3 31972 NULL
++buffer_max_vardecl_floppy_c_31976_fields buffer_max vardecl_floppy.c 0 31976 NULL
++i_size_read_fndecl_31980_fields i_size_read fndecl 0 31980 NULL
++max_commands_ctlr_info_31984_fields max_commands ctlr_info 0 31984 NULL
++flash_offset_jffs2_raw_node_ref_31989_fields flash_offset jffs2_raw_node_ref 0 31989 NULL
++link_duplex_qlcnic_hardware_context_31996_fields link_duplex qlcnic_hardware_context 0 31996 NULL
++isofs_get_block_fndecl_32000_fields isofs_get_block fndecl 2 32000 NULL
++bg_next_group_ocfs2_group_desc_32003_fields bg_next_group ocfs2_group_desc 0 32003 NULL
++ss_descs_count_ffs_data_32006_fields ss_descs_count ffs_data 0 32006 NULL
++size_tiger_dma_32013_fields size tiger_dma 0 32013 NULL nohasharray
++elants_i2c_read_fndecl_32013_fields elants_i2c_read fndecl 3 32013 &size_tiger_dma_32013_fields
++m_lblk_f2fs_map_blocks_32016_fields m_lblk f2fs_map_blocks 0 32016 NULL
++blocksize_udf_options_32019_fields blocksize udf_options 0 32019 NULL
++sd_sgentry_align_brcmfmac_sdio_pd_32021_fields sd_sgentry_align brcmfmac_sdio_pd 0 32021 NULL
++depth_zr364xx_fmt_32028_fields depth zr364xx_fmt 0 32028 NULL
++check_xattr_ref_inode_fndecl_32039_fields check_xattr_ref_inode fndecl 0 32039 NULL
++base_efifb_dmi_info_32041_fields base efifb_dmi_info 0 32041 NULL
++next_free_pstore_32049_fields next_free pstore 0 32049 NULL
++config_size_nd_cmd_get_config_size_32073_fields config_size nd_cmd_get_config_size 0 32073 NULL
++add_rx_skb_fndecl_32082_fields add_rx_skb fndecl 3 32082 NULL
++chunk_size_irctl_32083_fields chunk_size irctl 0 32083 NULL nohasharray
++s_first_data_block_nilfs_super_block_32083_fields s_first_data_block nilfs_super_block 0 32083 &chunk_size_irctl_32083_fields
++ip6_tnl_err_fndecl_32086_fields ip6_tnl_err fndecl 8 32086 NULL nohasharray
++t3_init_l2t_fndecl_32086_fields t3_init_l2t fndecl 1 32086 &ip6_tnl_err_fndecl_32086_fields
++omfs_clear_range_fndecl_32087_fields omfs_clear_range fndecl 2 32087 NULL
++ocfs2_ilookup_fndecl_32100_fields ocfs2_ilookup fndecl 2 32100 NULL
++rate_min_audioformat_32106_fields rate_min audioformat 0 32106 NULL
++offset_p9_fcall_32116_fields offset p9_fcall 0 32116 NULL nohasharray
++jffs2_sum_scan_sumnode_fndecl_32116_fields jffs2_sum_scan_sumnode fndecl 4 32116 &offset_p9_fcall_32116_fields
++config_rom_length_fw_device_32117_fields config_rom_length fw_device 0 32117 NULL
++height_drm_mode_fb_cmd2_32120_fields height drm_mode_fb_cmd2 0 32120 NULL
++rcvegrcnt_qib_ctxtdata_32127_fields rcvegrcnt qib_ctxtdata 0 32127 NULL
++fsector_t_vardecl_floppy_c_32141_fields fsector_t vardecl_floppy.c 0 32141 NULL
++mlx4_en_complete_rx_desc_fndecl_32150_fields mlx4_en_complete_rx_desc fndecl 0 32150 NULL
++s_clustersize_ocfs2_super_32156_fields s_clustersize ocfs2_super 0 32156 NULL
++num_entries_msg_get_chap_32158_fields num_entries msg_get_chap 0 32158 NULL
++insert_zbranch_fndecl_32159_fields insert_zbranch fndecl 3 32159 NULL
++max_nsid_nvmet_subsys_32165_fields max_nsid nvmet_subsys 0 32165 NULL
++max_recv_dlength_iscsi_conn_32168_fields max_recv_dlength iscsi_conn 0 32168 NULL
++nfs41_maxwrite_overhead_vardecl_32172_fields nfs41_maxwrite_overhead vardecl 0 32172 NULL
++length_vring_rx_dma_32178_fields length vring_rx_dma 0 32178 NULL
++ping_getfrag_fndecl_32187_fields ping_getfrag fndecl 4 32187 NULL
++len_sigma_action_32189_fields len sigma_action 0 32189 NULL nohasharray
++init_page_buffers_fndecl_32189_fields init_page_buffers fndecl 3 32189 &len_sigma_action_32189_fields
++tail_len_beacon_data_32194_fields tail_len beacon_data 0 32194 NULL
++s_system_dir_blkno_ocfs2_super_block_32196_fields s_system_dir_blkno ocfs2_super_block 0 32196 NULL
++nr_registers_ioapic_32204_fields nr_registers ioapic 0 32204 NULL
++len_bnep_ext_hdr_32205_fields len bnep_ext_hdr 0 32205 NULL
++intel_tile_width_bytes_fndecl_32206_fields intel_tile_width_bytes fndecl 0-3 32206 NULL
++ocfs2_decrease_refcount_rec_fndecl_32210_fields ocfs2_decrease_refcount_rec fndecl 6-7 32210 NULL
++num_sbs_pf_vf_resc_32216_fields num_sbs pf_vf_resc 0 32216 NULL
++mag_length_ssp_sensorhub_info_32219_fields mag_length ssp_sensorhub_info 0 32219 NULL
++residual_task_status_struct_32220_fields residual task_status_struct 0 32220 NULL
++count_igb_ring_32225_fields count igb_ring 0 32225 NULL
++sys_munmap_fndecl_32226_fields sys_munmap fndecl 1-2 32226 NULL
++fragments_snd_compressed_buffer_32230_fields fragments snd_compressed_buffer 0 32230 NULL
++snd_usb_ctl_msg_fndecl_32231_fields snd_usb_ctl_msg fndecl 8 32231 NULL
++endpoint_usbatm_channel_32232_fields endpoint usbatm_channel 0 32232 NULL
++ts_packet_count_cx8802_dev_32239_fields ts_packet_count cx8802_dev 0 32239 NULL
++len_nfs_entry_32240_fields len nfs_entry 0 32240 NULL
++msg_page_kvm_vcpu_hv_synic_32251_fields msg_page kvm_vcpu_hv_synic 0 32251 NULL
++n_ids_vport_portids_32258_fields n_ids vport_portids 0 32258 NULL
++oslec_create_fndecl_32264_fields oslec_create fndecl 1 32264 NULL
++buf_len_lpfc_sli_config_hbd_32278_fields buf_len lpfc_sli_config_hbd 0 32278 NULL nohasharray
++__v4l2_ctrl_s_ctrl_fndecl_32278_fields __v4l2_ctrl_s_ctrl fndecl 2 32278 &buf_len_lpfc_sli_config_hbd_32278_fields
++usb_allocate_stream_buffers_fndecl_32279_fields usb_allocate_stream_buffers fndecl 3 32279 NULL
++mapsize_uart_port_32282_fields mapsize uart_port 0 32282 NULL
++seq_open_net_fndecl_32283_fields seq_open_net fndecl 4 32283 NULL
++IA_TX_BUF_SZ_vardecl_iphase_c_32295_fields IA_TX_BUF_SZ vardecl_iphase.c 0 32295 NULL nohasharray
++dma_size_sst_pdata_32295_fields dma_size sst_pdata 0 32295 &IA_TX_BUF_SZ_vardecl_iphase_c_32295_fields
++rept_size_usbtouch_device_info_32306_fields rept_size usbtouch_device_info 0 32306 NULL
++vf_count_qed_cxt_mngr_32311_fields vf_count qed_cxt_mngr 0 32311 NULL
++sizeof_namespace_index_fndecl_32312_fields sizeof_namespace_index fndecl 0 32312 NULL
++nla_put_fndecl_32321_fields nla_put fndecl 3 32321 NULL
++_nfs42_proc_copy_fndecl_32323_fields _nfs42_proc_copy fndecl 5 32323 NULL
++khugepaged_scan_pmd_fndecl_32330_fields khugepaged_scan_pmd fndecl 3 32330 NULL
++datablock_size_btrfsic_state_32333_fields datablock_size btrfsic_state 0 32333 NULL nohasharray
++bochs_ttm_tt_create_fndecl_32333_fields bochs_ttm_tt_create fndecl 2 32333 &datablock_size_btrfsic_state_32333_fields
++mem_start_net_device_32337_fields mem_start net_device 0 32337 NULL
++exynos_drm_gem_create_fndecl_32344_fields exynos_drm_gem_create fndecl 3 32344 NULL
++num_ports_moxa8250_board_32350_fields num_ports moxa8250_board 0 32350 NULL
++scrub_raid56_parity_fndecl_32354_fields scrub_raid56_parity fndecl 5 32354 NULL nohasharray
++brcmf_fws_hdrpull_fndecl_32354_fields brcmf_fws_hdrpull fndecl 2 32354 &scrub_raid56_parity_fndecl_32354_fields
++max_q_vectors_ixgbe_adapter_32359_fields max_q_vectors ixgbe_adapter 0 32359 NULL
++end_crash_mem_range_32361_fields end crash_mem_range 0 32361 NULL
++netlbl_catmap_setlong_fndecl_32363_fields netlbl_catmap_setlong fndecl 2 32363 NULL nohasharray
++backlight_sd_gl860_32363_fields backlight sd_gl860 0 32363 &netlbl_catmap_setlong_fndecl_32363_fields
++datalen_ncp_request_reply_32365_fields datalen ncp_request_reply 0 32365 NULL
++size_wiimote_buf_32369_fields size wiimote_buf 0 32369 NULL
++xfs_setfilesize_fndecl_32370_fields xfs_setfilesize fndecl 4-3 32370 NULL
++hci_req_add_fndecl_32376_fields hci_req_add fndecl 3 32376 NULL
++datablk_xfs_da_geometry_32386_fields datablk xfs_da_geometry 0 32386 NULL
++header_size_smb_version_values_32387_fields header_size smb_version_values 0 32387 NULL
++INFTL_formatblock_fndecl_32390_fields INFTL_formatblock fndecl 2 32390 NULL
++adxl34x_spi_read_block_fndecl_32391_fields adxl34x_spi_read_block fndecl 3 32391 NULL
++offset_pnfs_layout_range_32403_fields offset pnfs_layout_range 0 32403 NULL
++ftdi_prepare_write_buffer_fndecl_32406_fields ftdi_prepare_write_buffer fndecl 3 32406 NULL
++cont_add_fndecl_32409_fields cont_add fndecl 4 32409 NULL
++agbno_xfs_alloc_arg_32410_fields agbno xfs_alloc_arg 0 32410 NULL
++vhost_new_umem_range_fndecl_32413_fields vhost_new_umem_range fndecl 2-3 32413 NULL
++ext4_list_backups_fndecl_32417_fields ext4_list_backups fndecl 0 32417 NULL
++nxt200x_readreg_multibyte_fndecl_32418_fields nxt200x_readreg_multibyte fndecl 4 32418 NULL
++ci_rsbtbl_size_dlm_config_info_32423_fields ci_rsbtbl_size dlm_config_info 0 32423 NULL
++srpt_build_tskmgmt_rsp_fndecl_32427_fields srpt_build_tskmgmt_rsp fndecl 0 32427 NULL
++qib_skip_sge_fndecl_32432_fields qib_skip_sge fndecl 2 32432 NULL
++di_next_index_dinode_32437_fields di_next_index dinode 0 32437 NULL nohasharray
++xs_udp_set_buffer_size_fndecl_32437_fields xs_udp_set_buffer_size fndecl 2 32437 &di_next_index_dinode_32437_fields nohasharray
++gso_size_xenvif_rx_meta_32437_fields gso_size xenvif_rx_meta 0 32437 &xs_udp_set_buffer_size_fndecl_32437_fields
++btrfs_get_extent_fndecl_32440_fields btrfs_get_extent fndecl 4-3-5 32440 NULL nohasharray
++truncated_len_btrfs_ordered_extent_32440_fields truncated_len btrfs_ordered_extent 0 32440 &btrfs_get_extent_fndecl_32440_fields
++t_blk_res_used_xfs_trans_32443_fields t_blk_res_used xfs_trans 0 32443 NULL
++mlx4_alloc_resize_umem_fndecl_32447_fields mlx4_alloc_resize_umem fndecl 3 32447 NULL
++mlxsw_emad_process_status_skb_fndecl_32448_fields mlxsw_emad_process_status_skb fndecl 0 32448 NULL
++__snd_rawmidi_transmit_peek_fndecl_32453_fields __snd_rawmidi_transmit_peek fndecl 0-3 32453 NULL
++permission_inode_operations_32455_fields permission inode_operations 0 32455 NULL
++ext4_da_write_inline_data_end_fndecl_32456_fields ext4_da_write_inline_data_end fndecl 2-4 32456 NULL
++ddata_ofs_cyttsp4_sysinfo_ofs_32462_fields ddata_ofs cyttsp4_sysinfo_ofs 0 32462 NULL
++blk_execute_rq_fndecl_32470_fields blk_execute_rq fndecl 0 32470 NULL nohasharray
++out_kvec_left_ceph_connection_32470_fields out_kvec_left ceph_connection 0 32470 &blk_execute_rq_fndecl_32470_fields
++start_ordered_ops_fndecl_32475_fields start_ordered_ops fndecl 2-3 32475 NULL
++skb_shift_fndecl_32480_fields skb_shift fndecl 3 32480 NULL
++j_len_reiserfs_journal_desc_32481_fields j_len reiserfs_journal_desc 0 32481 NULL
++s_fshift_ufs_sb_private_info_32491_fields s_fshift ufs_sb_private_info 0 32491 NULL nohasharray
++reg_shift_adnp_32491_fields reg_shift adnp 0 32491 &s_fshift_ufs_sb_private_info_32491_fields
++rx_offset_nfp_net_32498_fields rx_offset nfp_net 0 32498 NULL
++read_pci_config_16_fndecl_32499_fields read_pci_config_16 fndecl 0 32499 NULL
++reply_nvif_notify_req_v0_32501_fields reply nvif_notify_req_v0 0 32501 NULL
++lmLogFormat_fndecl_32506_fields lmLogFormat fndecl 2 32506 NULL nohasharray
++acpi_unmap_fndecl_32506_fields acpi_unmap fndecl 1 32506 &lmLogFormat_fndecl_32506_fields
++num_tgtdevs_btrfs_bio_32507_fields num_tgtdevs btrfs_bio 0 32507 NULL
++set_16kib_bfsize_stmmac_mode_ops_32520_fields set_16kib_bfsize stmmac_mode_ops 0 32520 NULL
++jffs2_acl_count_fndecl_32522_fields jffs2_acl_count fndecl 0-1 32522 NULL nohasharray
++__xfs_trans_commit_fndecl_32522_fields __xfs_trans_commit fndecl 0 32522 &jffs2_acl_count_fndecl_32522_fields
++frameoffset_b43_dmaring_32525_fields frameoffset b43_dmaring 0 32525 NULL
++map_iommu_fndecl_32528_fields map_iommu fndecl 2 32528 NULL
++BBAR_rio_detail_32529_fields BBAR rio_detail 0 32529 NULL
++xenvif_max_queues_vardecl_32530_fields xenvif_max_queues vardecl 0 32530 NULL
++num_comp_vectors_mlx4_caps_32534_fields num_comp_vectors mlx4_caps 0 32534 NULL nohasharray
++HDLC_irq_fndecl_32534_fields HDLC_irq fndecl 2 32534 &num_comp_vectors_mlx4_caps_32534_fields
++nla_put_64bit_fndecl_32535_fields nla_put_64bit fndecl 3 32535 NULL
++rq_auth_slack_svc_rqst_32548_fields rq_auth_slack svc_rqst 0 32548 NULL
++TransferCount__MSG_SCSI_IO_REPLY_32554_fields TransferCount _MSG_SCSI_IO_REPLY 0 32554 NULL
++x32_arch_ptrace_fndecl_32556_fields x32_arch_ptrace fndecl 3 32556 NULL
++pkey_table_len_mlx5_port_caps_32558_fields pkey_table_len mlx5_port_caps 0 32558 NULL
++syt_interval_amdtp_stream_32574_fields syt_interval amdtp_stream 0 32574 NULL
++iov_iter_zero_fndecl_32575_fields iov_iter_zero fndecl 1-0 32575 NULL
++ext4_try_to_write_inline_data_fndecl_32578_fields ext4_try_to_write_inline_data fndecl 4-3 32578 NULL
++check_right_item_operations_32585_fields check_right item_operations 0 32585 NULL nohasharray
++fnic_fc_trace_get_data_fndecl_32585_fields fnic_fc_trace_get_data fndecl 0 32585 &check_right_item_operations_32585_fields
++fps_tw686x_video_channel_32606_fields fps tw686x_video_channel 0 32606 NULL
++resp_len_brcmf_cfg80211_assoc_ielen_le_32607_fields resp_len brcmf_cfg80211_assoc_ielen_le 0 32607 NULL
++vlan_tag_atl1c_recv_ret_status_32608_fields vlan_tag atl1c_recv_ret_status 0 32608 NULL
++maxdevUnits_ore_striping_info_32610_fields maxdevUnits ore_striping_info 0 32610 NULL
++xennet_make_one_txreq_fndecl_32614_fields xennet_make_one_txreq fndecl 3-2 32614 NULL
++ceph_osd_data_length_fndecl_32615_fields ceph_osd_data_length fndecl 0 32615 NULL
++usb_alloc_streams_fndecl_32617_fields usb_alloc_streams fndecl 0 32617 NULL
++ntfs_commit_pages_after_write_fndecl_32634_fields ntfs_commit_pages_after_write fndecl 0-4-3 32634 NULL
++pagesz_cifs_writedata_32638_fields pagesz cifs_writedata 0 32638 NULL
++do_page_add_anon_rmap_fndecl_32642_fields do_page_add_anon_rmap fndecl 3 32642 NULL
++digest_decode_fndecl_32644_fields digest_decode fndecl 0 32644 NULL
++blk_add_request_payload_fndecl_32654_fields blk_add_request_payload fndecl 4-3 32654 NULL nohasharray
++phys_sca_base__synclinkmp_info_32654_fields phys_sca_base _synclinkmp_info 0 32654 &blk_add_request_payload_fndecl_32654_fields
++mgmt_generic_event_fndecl_32657_fields mgmt_generic_event fndecl 4 32657 NULL
++icmpv6_manip_pkt_fndecl_32658_fields icmpv6_manip_pkt fndecl 4 32658 NULL
++rtsx_usb_transfer_data_fndecl_32669_fields rtsx_usb_transfer_data fndecl 4-2-5 32669 NULL
++engine_start_viafb_dev_32681_fields engine_start viafb_dev 0 32681 NULL
++length_ib_umem_32690_fields length ib_umem 0 32690 NULL
++udf_write_aext_fndecl_32691_fields udf_write_aext fndecl 4 32691 NULL
++radeon_drm_ioctl_fndecl_32696_fields radeon_drm_ioctl fndecl 2 32696 NULL
++ubifs_prepare_node_fndecl_32700_fields ubifs_prepare_node fndecl 3 32700 NULL
++dma_common_contiguous_remap_fndecl_32714_fields dma_common_contiguous_remap fndecl 2 32714 NULL
++size_hid_report_32715_fields size hid_report 0 32715 NULL
++f71882fg_device_add_fndecl_32719_fields f71882fg_device_add fndecl 1 32719 NULL
++residual_len_sts_entry_24xx_32720_fields residual_len sts_entry_24xx 0 32720 NULL
++ks8995_registers_read_fndecl_32738_fields ks8995_registers_read fndecl 6 32738 NULL
++requested_nr_virtfn_bnx2x_32742_fields requested_nr_virtfn bnx2x 0 32742 NULL
++__cxgbit_alloc_skb_fndecl_32747_fields __cxgbit_alloc_skb fndecl 2 32747 NULL
++vga_video_num_columns_vardecl_vgacon_c_32749_fields vga_video_num_columns vardecl_vgacon.c 0 32749 NULL nohasharray
++rds_tcp_xmit_fndecl_32749_fields rds_tcp_xmit fndecl 3 32749 &vga_video_num_columns_vardecl_vgacon_c_32749_fields
++lookup_zone_fndecl_32751_fields lookup_zone fndecl 0 32751 NULL
++fuse_file_ioctl_fndecl_32760_fields fuse_file_ioctl fndecl 2 32760 NULL
++rc_via_alen_mpls_route_config_32766_fields rc_via_alen mpls_route_config 0 32766 NULL
++gro_pull_from_frag0_fndecl_32770_fields gro_pull_from_frag0 fndecl 2 32770 NULL
++sm501_create_mem_fndecl_32778_fields sm501_create_mem fndecl 4 32778 NULL
++test_ofsl_cyttsp4_sysinfo_data_32781_fields test_ofsl cyttsp4_sysinfo_data 0 32781 NULL
++queue_gso_packets_fndecl_32783_fields queue_gso_packets fndecl 5 32783 NULL
++xfs_fsb_to_db_fndecl_32785_fields xfs_fsb_to_db fndecl 0-2 32785 NULL
++reg_word_size_snd_soc_codec_driver_32786_fields reg_word_size snd_soc_codec_driver 0 32786 NULL nohasharray
++hpi_instream_ancillary_write_fndecl_32786_fields hpi_instream_ancillary_write fndecl 4 32786 &reg_word_size_snd_soc_codec_driver_32786_fields
++mp_register_ioapic_fndecl_32802_fields mp_register_ioapic fndecl 3 32802 NULL
++pipe_usb_fifo_32805_fields pipe usb_fifo 0 32805 NULL nohasharray
++nfc_allocate_device_fndecl_32805_fields nfc_allocate_device fndecl 3 32805 &pipe_usb_fifo_32805_fields
++info_len_ib_ucm_info_32807_fields info_len ib_ucm_info 0 32807 NULL
++m_len_f2fs_map_blocks_32808_fields m_len f2fs_map_blocks 0 32808 NULL
++l_start_xfs_flock64_32809_fields l_start xfs_flock64 0 32809 NULL
++length_ppp_option_data_32814_fields length ppp_option_data 0 32814 NULL
++namelen_jfs_ea_32820_fields namelen jfs_ea 0 32820 NULL
++xfs_btree_compute_maxlevels_fndecl_32823_fields xfs_btree_compute_maxlevels fndecl 0 32823 NULL
++scrub_fixup_readpage_fndecl_32830_fields scrub_fixup_readpage fndecl 2 32830 NULL
++ds_out_channels_hdspm_32836_fields ds_out_channels hdspm 0 32836 NULL
++num_amgms_mthca_limits_32845_fields num_amgms mthca_limits 0 32845 NULL
++s_inodes_per_block_bits_sysv_sb_info_32849_fields s_inodes_per_block_bits sysv_sb_info 0 32849 NULL
++ep_in_mcs_cb_32852_fields ep_in mcs_cb 0 32852 NULL
++br_startoff_xfs_bmbt_irec_32854_fields br_startoff xfs_bmbt_irec 0 32854 NULL
++should_defrag_range_fndecl_32859_fields should_defrag_range fndecl 2 32859 NULL
++tx_buf_clear_used_ks959_cb_32864_fields tx_buf_clear_used ks959_cb 0 32864 NULL
++duplex_phy_device_32869_fields duplex phy_device 0 32869 NULL
++wTotalLength_usb_security_descriptor_32872_fields wTotalLength usb_security_descriptor 0 32872 NULL
++buffer_len_bfad_debug_info_32873_fields buffer_len bfad_debug_info 0 32873 NULL
++mem_cgroup_move_charge_pte_range_fndecl_32885_fields mem_cgroup_move_charge_pte_range fndecl 2 32885 NULL
++m_ialloc_inos_xfs_mount_32889_fields m_ialloc_inos xfs_mount 0 32889 NULL nohasharray
++at25_ee_read_fndecl_32889_fields at25_ee_read fndecl 2-4 32889 &m_ialloc_inos_xfs_mount_32889_fields
++snoop_table_size_ib_mad_qp_info_32891_fields snoop_table_size ib_mad_qp_info 0 32891 NULL
++min_dump_alloc_netlink_callback_32897_fields min_dump_alloc netlink_callback 0 32897 NULL
++__wa_xfer_setup_segs_fndecl_32902_fields __wa_xfer_setup_segs fndecl 2 32902 NULL
++wm831x_num_wm831x_pdata_32904_fields wm831x_num wm831x_pdata 0 32904 NULL
++adnp_gpio_setup_fndecl_32910_fields adnp_gpio_setup fndecl 2 32910 NULL
++space_init_fndecl_32911_fields space_init fndecl 2 32911 NULL
++max_r2t_iscsi_bus_flash_session_32912_fields max_r2t iscsi_bus_flash_session 0 32912 NULL
++num_vfs_qlcnic_sriov_32913_fields num_vfs qlcnic_sriov 0 32913 NULL
++conn_send_command_fndecl_32918_fields conn_send_command fndecl 4-6 32918 NULL
++pci_get_related_function_fndecl_32920_fields pci_get_related_function fndecl 2 32920 NULL
++nr_events_kioctx_32925_fields nr_events kioctx 0 32925 NULL
++vram_base_mga_mc_32927_fields vram_base mga_mc 0 32927 NULL
++ceph_choose_frag_fndecl_32928_fields ceph_choose_frag fndecl 0 32928 NULL
++__copy_from_user_ll_fndecl_32945_fields __copy_from_user_ll fndecl 0 32945 NULL
++al_stripes_resize_parms_32950_fields al_stripes resize_parms 0 32950 NULL
++diva_data_q_init_fndecl_32954_fields diva_data_q_init fndecl 2 32954 NULL
++btrfsic_map_block_fndecl_32956_fields btrfsic_map_block fndecl 3 32956 NULL
++drm_agp_bind_pages_fndecl_32959_fields drm_agp_bind_pages fndecl 3 32959 NULL
++__carl9170_rx_fndecl_32963_fields __carl9170_rx fndecl 3 32963 NULL
++total_data_buflen_hv_netvsc_packet_32967_fields total_data_buflen hv_netvsc_packet 0 32967 NULL
++s_max_slots_ocfs2_super_block_32972_fields s_max_slots ocfs2_super_block 0 32972 NULL nohasharray
++PofRecDataLen_PofRecHdr_tag_32972_fields PofRecDataLen PofRecHdr_tag 0 32972 &s_max_slots_ocfs2_super_block_32972_fields
++proc_bus_pci_lseek_fndecl_32974_fields proc_bus_pci_lseek fndecl 2 32974 NULL
++p_replen_rpc_procinfo_32991_fields p_replen rpc_procinfo 0 32991 NULL nohasharray
++bn_read_lock_fndecl_32991_fields bn_read_lock fndecl 2 32991 &p_replen_rpc_procinfo_32991_fields
++resid_len_request_32994_fields resid_len request 0 32994 NULL
++wtpref_nfs_fsinfo_33003_fields wtpref nfs_fsinfo 0 33003 NULL
++dwNtbInMaxSize_usb_cdc_ncm_ntb_parameters_33006_fields dwNtbInMaxSize usb_cdc_ncm_ntb_parameters 0 33006 NULL
++mr_per_cmd_srp_target_port_33011_fields mr_per_cmd srp_target_port 0 33011 NULL nohasharray
++pktshift_sge_33011_fields pktshift sge 0 33011 &mr_per_cmd_srp_target_port_33011_fields nohasharray
++offset_fl_pg_chunk_33011_fields offset fl_pg_chunk 0 33011 &pktshift_sge_33011_fields
++buf_addr_mlx5_ib_create_wq_33013_fields buf_addr mlx5_ib_create_wq 0 33013 NULL nohasharray
++size_qlcnic_82xx_dump_template_hdr_33013_fields size qlcnic_82xx_dump_template_hdr 0 33013 &buf_addr_mlx5_ib_create_wq_33013_fields
++q_num_rx_buffers_qede_dev_33015_fields q_num_rx_buffers qede_dev 0 33015 NULL
++nr_regions_amd_flash_info_33022_fields nr_regions amd_flash_info 0 33022 NULL
++rq_size_nes_hw_qp_33024_fields rq_size nes_hw_qp 0 33024 NULL
++offset_xen_netif_rx_response_33028_fields offset xen_netif_rx_response 0 33028 NULL
++rsi_sdio_read_register_multiple_fndecl_33035_fields rsi_sdio_read_register_multiple fndecl 3 33035 NULL
++sacked_out_tcp_sock_33038_fields sacked_out tcp_sock 0 33038 NULL
++files_ceph_mds_reply_inode_33047_fields files ceph_mds_reply_inode 0 33047 NULL
++svc_rdma_xdr_get_reply_hdr_len_fndecl_33056_fields svc_rdma_xdr_get_reply_hdr_len fndecl 0 33056 NULL
++nvbios_rd08_fndecl_33058_fields nvbios_rd08 fndecl 0 33058 NULL
++iov_iter_copy_from_user_atomic_fndecl_33059_fields iov_iter_copy_from_user_atomic fndecl 0 33059 NULL nohasharray
++gfs2_qstr2dirent_fndecl_33059_fields gfs2_qstr2dirent fndecl 2 33059 &iov_iter_copy_from_user_atomic_fndecl_33059_fields
++nfilters_mc5_params_33060_fields nfilters mc5_params 0 33060 NULL nohasharray
++rxbufsz_ar5523_33060_fields rxbufsz ar5523 0 33060 &nfilters_mc5_params_33060_fields
++size_ec168_req_33061_fields size ec168_req 0 33061 NULL
++compress_compressor_33066_fields compress compressor 0 33066 NULL
++prepare_inurb_fndecl_33073_fields prepare_inurb fndecl 1 33073 NULL
++__early_init_dt_declare_initrd_fndecl_33075_fields __early_init_dt_declare_initrd fndecl 1-2 33075 NULL
++__fat_nfs_get_inode_fndecl_33079_fields __fat_nfs_get_inode fndecl 4 33079 NULL
++default_size_vmw_cmdbuf_man_33080_fields default_size vmw_cmdbuf_man 0 33080 NULL
++descriptor_size_pmc_ctx_33081_fields descriptor_size pmc_ctx 0 33081 NULL
++e1000_alloc_rx_skb_fndecl_33089_fields e1000_alloc_rx_skb fndecl 2 33089 NULL nohasharray
++tx_headroom_llc_shdlc_33089_fields tx_headroom llc_shdlc 0 33089 &e1000_alloc_rx_skb_fndecl_33089_fields
++vram_size_cirrus_mc_33094_fields vram_size cirrus_mc 0 33094 NULL
++do_get_write_access_fndecl_33097_fields do_get_write_access fndecl 0 33097 NULL
++return_wc_byte_len_ib_mad_local_private_33101_fields return_wc_byte_len ib_mad_local_private 0 33101 NULL
++length_rvt_sge_33107_fields length rvt_sge 0 33107 NULL
++__snd_util_memblk_new_fndecl_33112_fields __snd_util_memblk_new fndecl 2 33112 NULL
++nla_strlcpy_fndecl_33113_fields nla_strlcpy fndecl 0 33113 NULL
++len_firmware_hdr_33115_fields len firmware_hdr 0 33115 NULL
++hdr_len_virtnet_info_33118_fields hdr_len virtnet_info 0 33118 NULL
++len_cfg80211_mgmt_tx_params_33119_fields len cfg80211_mgmt_tx_params 0 33119 NULL
++hw_token_ehci_qtd_33122_fields hw_token ehci_qtd 0 33122 NULL
++ring_size_amdgpu_ring_33123_fields ring_size amdgpu_ring 0 33123 NULL nohasharray
++omninet_write_fndecl_33123_fields omninet_write fndecl 4 33123 &ring_size_amdgpu_ring_33123_fields
++max_resp_sz_nfs4_channel_attrs_33127_fields max_resp_sz nfs4_channel_attrs 0 33127 NULL nohasharray
++ari_length_ib_cm_rej_event_param_33127_fields ari_length ib_cm_rej_event_param 0 33127 &max_resp_sz_nfs4_channel_attrs_33127_fields
++masklength_iio_dev_33129_fields masklength iio_dev 0 33129 NULL
++trebleinit_CHIPDESC_33133_fields trebleinit CHIPDESC 0 33133 NULL
++in_words_ib_uverbs_cmd_hdr_33134_fields in_words ib_uverbs_cmd_hdr 0 33134 NULL
++__get_vm_area_caller_fndecl_33139_fields __get_vm_area_caller fndecl 3 33139 NULL nohasharray
++acpi_os_write_memory_fndecl_33139_fields acpi_os_write_memory fndecl 3-1 33139 &__get_vm_area_caller_fndecl_33139_fields
++size_bmp_header_33141_fields size bmp_header 0 33141 NULL nohasharray
++hostname_len_nlm_lookup_host_info_33141_fields hostname_len nlm_lookup_host_info 0 33141 &size_bmp_header_33141_fields
++ucNumEntries__ATOM_Polaris_SCLK_Dependency_Table_33144_fields ucNumEntries _ATOM_Polaris_SCLK_Dependency_Table 0 33144 NULL
++l2cap_segment_le_sdu_fndecl_33145_fields l2cap_segment_le_sdu fndecl 4 33145 NULL
++starting_cid_cnic_eth_dev_33155_fields starting_cid cnic_eth_dev 0 33155 NULL nohasharray
++osd_req_list_partition_objects_fndecl_33155_fields osd_req_list_partition_objects fndecl 5 33155 &starting_cid_cnic_eth_dev_33155_fields
++lbs_rdmac_write_fndecl_33156_fields lbs_rdmac_write fndecl 3 33156 NULL
++len_ip_set_ext_type_33164_fields len ip_set_ext_type 0 33164 NULL
++mml_isar_hw_33168_fields mml isar_hw 0 33168 NULL
++iomap_zero_fndecl_33173_fields iomap_zero fndecl 2-4 33173 NULL
++cx231xx_init_isoc_fndecl_33174_fields cx231xx_init_isoc fndecl 4-2 33174 NULL
++hcs_params2_xhci_hcd_33175_fields hcs_params2 xhci_hcd 0 33175 NULL nohasharray
++rounds_dm_verity_fec_33175_fields rounds dm_verity_fec 0 33175 &hcs_params2_xhci_hcd_33175_fields
++set_connectable_fndecl_33177_fields set_connectable fndecl 4 33177 NULL
++rw_devices_btrfs_fs_devices_33182_fields rw_devices btrfs_fs_devices 0 33182 NULL
++arp_filter_size_mwifiex_adapter_33183_fields arp_filter_size mwifiex_adapter 0 33183 NULL
++w5500_spi_readbulk_fndecl_33186_fields w5500_spi_readbulk fndecl 4 33186 NULL
++niqflint_vf_resources_33189_fields niqflint vf_resources 0 33189 NULL
++ath6kl_wmi_set_ip_cmd_fndecl_33191_fields ath6kl_wmi_set_ip_cmd fndecl 2 33191 NULL
++Memhscx_empty_fifo_fndecl_33197_fields Memhscx_empty_fifo fndecl 2 33197 NULL
++ieee80211_rx_mgmt_probe_beacon_fndecl_33208_fields ieee80211_rx_mgmt_probe_beacon fndecl 3 33208 NULL
++block_size_dm_bufio_client_33221_fields block_size dm_bufio_client 0 33221 NULL
++l1oip_socket_recv_fndecl_33226_fields l1oip_socket_recv fndecl 6 33226 NULL
++segment_count_main_f2fs_super_block_33230_fields segment_count_main f2fs_super_block 0 33230 NULL
++ext4_zeroout_es_fndecl_33233_fields ext4_zeroout_es fndecl 0 33233 NULL
++nsumblk_nilfs_segsum_info_33238_fields nsumblk nilfs_segsum_info 0 33238 NULL
++udf_load_partdesc_fndecl_33239_fields udf_load_partdesc fndecl 2 33239 NULL
++mfs_fc_lport_33249_fields mfs fc_lport 0 33249 NULL
++metadata_size_ecryptfs_crypt_stat_33252_fields metadata_size ecryptfs_crypt_stat 0 33252 NULL
++val_sz_orangefs_getxattr_response_33253_fields val_sz orangefs_getxattr_response 0 33253 NULL
++size_reserved_mem_33254_fields size reserved_mem 0 33254 NULL
++wb_offset_nfs_page_33255_fields wb_offset nfs_page 0 33255 NULL
++handle_bytes_file_handle_33261_fields handle_bytes file_handle 0 33261 NULL
++ip_vs_prepare_tunneled_skb_fndecl_33269_fields ip_vs_prepare_tunneled_skb fndecl 3 33269 NULL
++ocfs2_change_extent_flag_fndecl_33270_fields ocfs2_change_extent_flag fndecl 5-3 33270 NULL nohasharray
++mem_end_net_device_33270_fields mem_end net_device 0 33270 &ocfs2_change_extent_flag_fndecl_33270_fields
++drv_file_st_partstat_33277_fields drv_file st_partstat 0 33277 NULL
++ep_msg_out_peak_usb_device_33281_fields ep_msg_out peak_usb_device 0 33281 NULL nohasharray
++sbsector_iso9660_options_33281_fields sbsector iso9660_options 0 33281 &ep_msg_out_peak_usb_device_33281_fields nohasharray
++hpfs_readpages_fndecl_33281_fields hpfs_readpages fndecl 4 33281 &sbsector_iso9660_options_33281_fields
++frame_size_camera_data_33292_fields frame_size camera_data 0 33292 NULL
++num_vls_vardecl_33298_fields num_vls vardecl 0 33298 NULL nohasharray
++offset_fuse_lseek_out_33298_fields offset fuse_lseek_out 0 33298 &num_vls_vardecl_33298_fields
++vlen_nfsd_readargs_33302_fields vlen nfsd_readargs 0 33302 NULL
++e_phnum_elf64_hdr_33305_fields e_phnum elf64_hdr 0 33305 NULL
++e_sz_rsa_key_33307_fields e_sz rsa_key 0 33307 NULL
++index_vardecl_via82xx_modem_c_33320_fields index vardecl_via82xx_modem.c 0 33320 NULL
++hlen_h4_recv_pkt_33324_fields hlen h4_recv_pkt 0 33324 NULL
++ahd_sg_setup_fndecl_33341_fields ahd_sg_setup fndecl 4-5 33341 NULL
++max_vpi_lpfc_max_cfg_param_33350_fields max_vpi lpfc_max_cfg_param 0 33350 NULL
++ihandlen_xfs_fsop_handlereq_33370_fields ihandlen xfs_fsop_handlereq 0 33370 NULL
++lpfc_sg_seg_cnt_init_fndecl_33371_fields lpfc_sg_seg_cnt_init fndecl 2 33371 NULL
++ib_qib_max_srq_wrs_vardecl_33376_fields ib_qib_max_srq_wrs vardecl 0 33376 NULL
++xfs_buf_ioerror_fndecl_33390_fields xfs_buf_ioerror fndecl 2 33390 NULL
++stream_size_drm_etnaviv_gem_submit_33393_fields stream_size drm_etnaviv_gem_submit 0 33393 NULL
++data_offset_rndis_packet_33403_fields data_offset rndis_packet 0 33403 NULL
++lbmRead_fndecl_33420_fields lbmRead fndecl 2 33420 NULL
++dreq_gss_dccp_request_sock_33423_fields dreq_gss dccp_request_sock 0 33423 NULL nohasharray
++rsxx_cram_write_fndecl_33423_fields rsxx_cram_write fndecl 3 33423 &dreq_gss_dccp_request_sock_33423_fields
++offset_vb2_dma_sg_buf_33426_fields offset vb2_dma_sg_buf 0 33426 NULL
++intr_dma_usb_pcwd_private_33427_fields intr_dma usb_pcwd_private 0 33427 NULL
++tcp_fastretrans_alert_fndecl_33430_fields tcp_fastretrans_alert fndecl 2 33430 NULL
++change_mtu_fndecl_33432_fields change_mtu fndecl 2 33432 NULL nohasharray
++in_nextiag_dinomap_33432_fields in_nextiag dinomap 0 33432 &change_mtu_fndecl_33432_fields
++_nfs4_proc_readlink_fndecl_33436_fields _nfs4_proc_readlink fndecl 4-3 33436 NULL
++wqe_size_ib_uverbs_post_send_33437_fields wqe_size ib_uverbs_post_send 0 33437 NULL
++nilfs_set_nsegments_fndecl_33438_fields nilfs_set_nsegments fndecl 2 33438 NULL
++mmc_test_area_io_seq_fndecl_33440_fields mmc_test_area_io_seq fndecl 2-9 33440 NULL
++w_dloarea_33444_fields w dloarea 0 33444 NULL
++pskb_carve_frag_list_fndecl_33447_fields pskb_carve_frag_list fndecl 3 33447 NULL
++sys_mlock2_fndecl_33449_fields sys_mlock2 fndecl 1-2 33449 NULL
++mt7601u_mcu_msg_alloc_fndecl_33453_fields mt7601u_mcu_msg_alloc fndecl 3 33453 NULL
++ocfs2_divide_xattr_bucket_fndecl_33455_fields ocfs2_divide_xattr_bucket fndecl 3-4 33455 NULL
++max_recv_send_sge_ocrdma_mbx_query_config_33459_fields max_recv_send_sge ocrdma_mbx_query_config 0 33459 NULL
++tx_pipe_usbpn_dev_33474_fields tx_pipe usbpn_dev 0 33474 NULL
++packets_out_tcp_sock_33478_fields packets_out tcp_sock 0 33478 NULL
++__nbd_ioctl_fndecl_33480_fields __nbd_ioctl fndecl 4 33480 NULL
++ath6kl_buf_alloc_fndecl_33483_fields ath6kl_buf_alloc fndecl 1 33483 NULL
++ath6kl_wmi_cmd_send_fndecl_33493_fields ath6kl_wmi_cmd_send fndecl 2 33493 NULL
++root_size_adfs_discrecord_33498_fields root_size adfs_discrecord 0 33498 NULL
++end_io_dio_33500_fields end_io dio 0 33500 NULL
++ocfs2_xattr_shrink_size_fndecl_33507_fields ocfs2_xattr_shrink_size fndecl 3 33507 NULL
++check_mirror_fndecl_33517_fields check_mirror fndecl 2-1 33517 NULL
++len_writequeue_entry_33522_fields len writequeue_entry 0 33522 NULL
++offset_port_buffer_33530_fields offset port_buffer 0 33530 NULL
++ieee802154_hdr_addr_len_fndecl_33535_fields ieee802154_hdr_addr_len fndecl 0 33535 NULL
++sq_size_nes_hw_qp_33544_fields sq_size nes_hw_qp 0 33544 NULL nohasharray
++num_seq_vgastate_33544_fields num_seq vgastate 0 33544 &sq_size_nes_hw_qp_33544_fields
++tx_queues_nicvf_33546_fields tx_queues nicvf 0 33546 NULL
++dlfb_setup_modes_fndecl_33548_fields dlfb_setup_modes fndecl 4 33548 NULL
++cros_ec_cmd_xfer_fndecl_33549_fields cros_ec_cmd_xfer fndecl 0 33549 NULL
++mwifiex_create_ba_tbl_fndecl_33555_fields mwifiex_create_ba_tbl fndecl 3 33555 NULL
++nfc_llcp_build_sdreq_tlv_fndecl_33563_fields nfc_llcp_build_sdreq_tlv fndecl 3 33563 NULL
++snb_pci2phy_map_init_fndecl_33565_fields snb_pci2phy_map_init fndecl 1 33565 NULL
++recv_buf_size_netvsc_device_33569_fields recv_buf_size netvsc_device 0 33569 NULL nohasharray
++qlen_status_event_list_33569_fields qlen status_event_list 0 33569 &recv_buf_size_netvsc_device_33569_fields
++self_dnode_33580_fields self dnode 0 33580 NULL nohasharray
++lcm_fndecl_33580_fields lcm fndecl 0-2-1 33580 &self_dnode_33580_fields
++num_pports_hfi1_devdata_33581_fields num_pports hfi1_devdata 0 33581 NULL
++qed_sriov_enable_fndecl_33587_fields qed_sriov_enable fndecl 2 33587 NULL
++hdr_info_bnxt_tpa_info_33589_fields hdr_info bnxt_tpa_info 0 33589 NULL
++i2c_readregs_fndecl_33590_fields i2c_readregs fndecl 5 33590 NULL
++size_kmemleak_object_33591_fields size kmemleak_object 0 33591 NULL
++lde_namelen_lu_dirent_33595_fields lde_namelen lu_dirent 0 33595 NULL
++fsl_spi_bufs_fndecl_33599_fields fsl_spi_bufs fndecl 0 33599 NULL
++max_header_size_iriap_cb_33603_fields max_header_size iriap_cb 0 33603 NULL
++offset_hsu_dma_chip_33607_fields offset hsu_dma_chip 0 33607 NULL
++drm_prime_pages_to_sg_fndecl_33612_fields drm_prime_pages_to_sg fndecl 2 33612 NULL
++hfsplus_find_cat_fndecl_33616_fields hfsplus_find_cat fndecl 0 33616 NULL nohasharray
++names_size_ceph_inode_xattrs_info_33616_fields names_size ceph_inode_xattrs_info 0 33616 &hfsplus_find_cat_fndecl_33616_fields
++lpfc_gen_req_fndecl_33617_fields lpfc_gen_req fndecl 8 33617 NULL
++first_data_sg_off_iscsi_cmd_33628_fields first_data_sg_off iscsi_cmd 0 33628 NULL
++data_size_kretprobe_33633_fields data_size kretprobe 0 33633 NULL
++size_dma_buf_33648_fields size dma_buf 0 33648 NULL nohasharray
++s_want_extra_isize_ext4_sb_info_33648_fields s_want_extra_isize ext4_sb_info 0 33648 &size_dma_buf_33648_fields
++check_header_fndecl_33649_fields check_header fndecl 2 33649 NULL
++intel_engine_create_ringbuffer_fndecl_33650_fields intel_engine_create_ringbuffer fndecl 2 33650 NULL
++xfs_alloc_ag_vextent_fndecl_33660_fields xfs_alloc_ag_vextent fndecl 0 33660 NULL
++savage_init_hw_fndecl_33678_fields savage_init_hw fndecl 0 33678 NULL
++size_drm_exynos_gem_create_33679_fields size drm_exynos_gem_create 0 33679 NULL
++data_size_vxge_rx_priv_33684_fields data_size vxge_rx_priv 0 33684 NULL
++len_scif_copy_work_33687_fields len scif_copy_work 0 33687 NULL
++mb_find_order_for_block_fndecl_33691_fields mb_find_order_for_block fndecl 0 33691 NULL
++ide_cdrom_probe_capabilities_fndecl_33699_fields ide_cdrom_probe_capabilities fndecl 0 33699 NULL
++alignment_offset_queue_limits_33701_fields alignment_offset queue_limits 0 33701 NULL
++jffs2_sum_write_data_fndecl_33705_fields jffs2_sum_write_data fndecl 3-4 33705 NULL nohasharray
++mmc_test_map_sg_max_scatter_fndecl_33705_fields mmc_test_map_sg_max_scatter fndecl 2-5 33705 &jffs2_sum_write_data_fndecl_33705_fields
++calculate_memsize_fndecl_33706_fields calculate_memsize fndecl 0-5-3-4-2-1 33706 NULL
++network_header_sk_buff_33708_fields network_header sk_buff 0 33708 NULL
++out_phase_usb_stream_kernel_33720_fields out_phase usb_stream_kernel 0 33720 NULL
++video_height_sis_video_info_33732_fields video_height sis_video_info 0 33732 NULL nohasharray
++atwrite_submit_fndecl_33732_fields atwrite_submit fndecl 3 33732 &video_height_sis_video_info_33732_fields
++amdgpu_bo_create_fndecl_33733_fields amdgpu_bo_create fndecl 2 33733 NULL nohasharray
++hpfs_bmap_fndecl_33733_fields hpfs_bmap fndecl 2-0 33733 &amdgpu_bo_create_fndecl_33733_fields
++xres_fb_var_screeninfo_33734_fields xres fb_var_screeninfo 0 33734 NULL
++ovl_copy_up_data_fndecl_33738_fields ovl_copy_up_data fndecl 3 33738 NULL
++d_sz_rsa_key_33741_fields d_sz rsa_key 0 33741 NULL
++do_pwritev_fndecl_33742_fields do_pwritev fndecl 3 33742 NULL
++i915_gem_object_create_fndecl_33744_fields i915_gem_object_create fndecl 2 33744 NULL nohasharray
++aircable_process_packet_fndecl_33744_fields aircable_process_packet fndecl 4 33744 &i915_gem_object_create_fndecl_33744_fields
++lengthComponentIdent_pathComponent_33758_fields lengthComponentIdent pathComponent 0 33758 NULL
++avr_ack_ptr_dccp_ackvec_record_33759_fields avr_ack_ptr dccp_ackvec_record 0 33759 NULL
++cim_la_size_adapter_params_33761_fields cim_la_size adapter_params 0 33761 NULL
++efx_farch_dimension_resources_fndecl_33764_fields efx_farch_dimension_resources fndecl 2 33764 NULL
++default_bpp_vardecl_sm501fb_c_33765_fields default_bpp vardecl_sm501fb.c 0 33765 NULL
++wmi_send_fndecl_33768_fields wmi_send fndecl 4 33768 NULL
++status_ffs_ep_33781_fields status ffs_ep 0 33781 NULL
++cx2341x_ctrl_new_std_fndecl_33782_fields cx2341x_ctrl_new_std fndecl 3-6 33782 NULL
++max_gpios_rdc321x_gpio_pdata_33783_fields max_gpios rdc321x_gpio_pdata 0 33783 NULL
++fm_mapped_extents_ll_user_fiemap_33785_fields fm_mapped_extents ll_user_fiemap 0 33785 NULL
++sis190_try_rx_copy_fndecl_33790_fields sis190_try_rx_copy fndecl 3 33790 NULL
++sd_write_data_fndecl_33792_fields sd_write_data fndecl 5 33792 NULL
++icv_truncbits_xfrm_algo_auth_info_33798_fields icv_truncbits xfrm_algo_auth_info 0 33798 NULL
++__ip_tun_to_nlattr_fndecl_33801_fields __ip_tun_to_nlattr fndecl 4 33801 NULL
++page_size_vmw_cmdbuf_alloc_info_33815_fields page_size vmw_cmdbuf_alloc_info 0 33815 NULL
++custom_length_iscsi_stats_33819_fields custom_length iscsi_stats 0 33819 NULL
++snd_find_free_minor_fndecl_33820_fields snd_find_free_minor fndecl 0 33820 NULL
++mult_usb_ep_33831_fields mult usb_ep 0 33831 NULL
++selinux_setprocattr_fndecl_33832_fields selinux_setprocattr fndecl 4 33832 NULL
++blk_size_ide_tape_obj_33837_fields blk_size ide_tape_obj 0 33837 NULL
++targetsize_xt_target_33840_fields targetsize xt_target 0 33840 NULL
++depth_drm_vmw_size_33842_fields depth drm_vmw_size 0 33842 NULL
++mgmt_cmd_complete_fndecl_33845_fields mgmt_cmd_complete fndecl 6 33845 NULL
++add_partition_fndecl_33847_fields add_partition fndecl 3-4 33847 NULL
++sctp_addto_chunk_fixed_fndecl_33853_fields sctp_addto_chunk_fixed fndecl 2 33853 NULL
++dvb_dmxdev_set_buffer_size_fndecl_33864_fields dvb_dmxdev_set_buffer_size fndecl 2 33864 NULL
++h5_link_control_fndecl_33866_fields h5_link_control fndecl 3 33866 NULL
++edge_tty_recv_fndecl_33877_fields edge_tty_recv fndecl 3 33877 NULL
++tolen_nfs_linkargs_33881_fields tolen nfs_linkargs 0 33881 NULL nohasharray
++walk_system_ram_res_fndecl_33881_fields walk_system_ram_res fndecl 2-1 33881 &tolen_nfs_linkargs_33881_fields
++src_len_ccp_xts_aes_engine_33899_fields src_len ccp_xts_aes_engine 0 33899 NULL
++init_stripe_fndecl_33902_fields init_stripe fndecl 2 33902 NULL
++xfs_bmbt_maxrecs_fndecl_33906_fields xfs_bmbt_maxrecs fndecl 0 33906 NULL
++_install_special_mapping_fndecl_33907_fields _install_special_mapping fndecl 2-3 33907 NULL
++rx_desc_count_xgbe_prv_data_33915_fields rx_desc_count xgbe_prv_data 0 33915 NULL
++w83627hf_device_add_fndecl_33919_fields w83627hf_device_add fndecl 1 33919 NULL
++wil_vring_alloc_skb_fndecl_33924_fields wil_vring_alloc_skb fndecl 4 33924 NULL
++size_cmdline_vardecl_dma_contiguous_c_33925_fields size_cmdline vardecl_dma-contiguous.c 0 33925 NULL
++max_channels_snd_midi_channel_set_33931_fields max_channels snd_midi_channel_set 0 33931 NULL
++numa_add_memblk_to_fndecl_33934_fields numa_add_memblk_to fndecl 2-3 33934 NULL nohasharray
++tcp_push_fndecl_33934_fields tcp_push fndecl 3 33934 &numa_add_memblk_to_fndecl_33934_fields nohasharray
++isl1208_i2c_set_regs_fndecl_33934_fields isl1208_i2c_set_regs fndecl 4 33934 &tcp_push_fndecl_33934_fields
++pci_scan_device_fndecl_33935_fields pci_scan_device fndecl 2 33935 NULL
++bulk_in_usbatm_driver_33939_fields bulk_in usbatm_driver 0 33939 NULL
++wMaxPacketSize_usb_endpoint_descriptor_33942_fields wMaxPacketSize usb_endpoint_descriptor 0 33942 NULL
++ext4_alloc_file_blocks_fndecl_33946_fields ext4_alloc_file_blocks fndecl 2-3 33946 NULL
++i_first_extent_iso_inode_info_33947_fields i_first_extent iso_inode_info 0 33947 NULL
++tcp_yeah_cong_avoid_fndecl_33950_fields tcp_yeah_cong_avoid fndecl 3 33950 NULL
++num_rsp_hci_inquiry_req_33953_fields num_rsp hci_inquiry_req 0 33953 NULL
++lpfc_sg_seg_cnt_vardecl_lpfc_attr_c_33956_fields lpfc_sg_seg_cnt vardecl_lpfc_attr.c 0 33956 NULL
++resid_rxe_dma_info_33963_fields resid rxe_dma_info 0 33963 NULL
++ext4_get_block_fndecl_33967_fields ext4_get_block fndecl 2 33967 NULL
++nfc_hci_send_cmd_fndecl_33969_fields nfc_hci_send_cmd fndecl 5 33969 NULL
++ocfs2_lock_refcount_tree_fndecl_33972_fields ocfs2_lock_refcount_tree fndecl 2 33972 NULL nohasharray
++mtdswap_init_fndecl_33972_fields mtdswap_init fndecl 2 33972 &ocfs2_lock_refcount_tree_fndecl_33972_fields
++st_nci_hci_dm_get_info_fndecl_33973_fields st_nci_hci_dm_get_info fndecl 3 33973 NULL
++virtio_transport_stream_do_dequeue_fndecl_33977_fields virtio_transport_stream_do_dequeue fndecl 3 33977 NULL
++buf_len_wmi_tlv_mgmt_rx_ev_33979_fields buf_len wmi_tlv_mgmt_rx_ev 0 33979 NULL
++usbat_bulk_write_fndecl_33983_fields usbat_bulk_write fndecl 3 33983 NULL
++unit_off_ore_striping_info_33989_fields unit_off ore_striping_info 0 33989 NULL
++size_fjes_hw_resource_33991_fields size fjes_hw_resource 0 33991 NULL
++sectorsize_scrub_ctx_33993_fields sectorsize scrub_ctx 0 33993 NULL
++num_ioim_reqs_bfa_iocfc_fwcfg_s_33994_fields num_ioim_reqs bfa_iocfc_fwcfg_s 0 33994 NULL
++batadv_tvlv_unicast_send_fndecl_34005_fields batadv_tvlv_unicast_send fndecl 7 34005 NULL
++rxextrahdrroom_dma_info_34007_fields rxextrahdrroom dma_info 0 34007 NULL
++ctxtcnt_qib_devdata_34012_fields ctxtcnt qib_devdata 0 34012 NULL
++size_vmw_cotable_info_34013_fields size vmw_cotable_info 0 34013 NULL
++wl12xx_spi_raw_read_fndecl_34014_fields wl12xx_spi_raw_read fndecl 4 34014 NULL nohasharray
++set_local_name_fndecl_34014_fields set_local_name fndecl 4 34014 &wl12xx_spi_raw_read_fndecl_34014_fields
++parent_len_fndecl_34020_fields parent_len fndecl 0 34020 NULL
++membase_jsm_board_34030_fields membase jsm_board 0 34030 NULL
++size_edac_mc_layer_34031_fields size edac_mc_layer 0 34031 NULL nohasharray
++b_cnt_chip_select_34031_fields b_cnt chip_select 0 34031 &size_edac_mc_layer_34031_fields
++strlen_fndecl_34033_fields strlen fndecl 0 34033 NULL
++blksize_sdio_cis_34036_fields blksize sdio_cis 0 34036 NULL
++sector_number_blkif_request_discard_34039_fields sector_number blkif_request_discard 0 34039 NULL
++req_bio_endio_fndecl_34041_fields req_bio_endio fndecl 3-4 34041 NULL
++len_hdlcdrv_hdlcrx_34043_fields len hdlcdrv_hdlcrx 0 34043 NULL
++dma_size_nx_host_rds_ring_34047_fields dma_size nx_host_rds_ring 0 34047 NULL
++ide_do_setfeature_fndecl_34050_fields ide_do_setfeature fndecl 3 34050 NULL
++sys_mmap_pgoff_fndecl_34056_fields sys_mmap_pgoff fndecl 2 34056 NULL
++cdc_ncm_change_mtu_fndecl_34062_fields cdc_ncm_change_mtu fndecl 2 34062 NULL
++wb_bytes_nfs_page_34071_fields wb_bytes nfs_page 0 34071 NULL nohasharray
++memmap_exclude_ranges_fndecl_34071_fields memmap_exclude_ranges fndecl 3-4 34071 &wb_bytes_nfs_page_34071_fields nohasharray
++opt_val_tcp_repair_opt_34071_fields opt_val tcp_repair_opt 0 34071 &memmap_exclude_ranges_fndecl_34071_fields
++qp_alloc_guest_work_fndecl_34074_fields qp_alloc_guest_work fndecl 5-3 34074 NULL nohasharray
++__get_vm_area_node_fndecl_34074_fields __get_vm_area_node fndecl 4-2 34074 &qp_alloc_guest_work_fndecl_34074_fields
++test_extent_accounting_fndecl_34078_fields test_extent_accounting fndecl 1-2 34078 NULL
++rec_len_ext2_dir_entry_2_34086_fields rec_len ext2_dir_entry_2 0 34086 NULL nohasharray
++get_info_tcp_congestion_ops_34086_fields get_info tcp_congestion_ops 0 34086 &rec_len_ext2_dir_entry_2_34086_fields
++mst_node_alsz_ubifs_info_34087_fields mst_node_alsz ubifs_info 0 34087 NULL
++LFBsize_sis_video_info_34089_fields LFBsize sis_video_info 0 34089 NULL
++sync_page_io_fndecl_34091_fields sync_page_io fndecl 3-2 34091 NULL nohasharray
++restore_node_summary_fndecl_34091_fields restore_node_summary fndecl 2 34091 &sync_page_io_fndecl_34091_fields
++__memblock_alloc_base_fndecl_34092_fields __memblock_alloc_base fndecl 2-0-3 34092 NULL
++octeon_setup_iq_fndecl_34094_fields octeon_setup_iq fndecl 5 34094 NULL
++dccm_len_iwl_cfg_34095_fields dccm_len iwl_cfg 0 34095 NULL
++max_frame_ft_sess_34098_fields max_frame ft_sess 0 34098 NULL
++encap_hlen_ip6_tnl_34101_fields encap_hlen ip6_tnl 0 34101 NULL
++c_chmask_f_uac2_opts_34103_fields c_chmask f_uac2_opts 0 34103 NULL
++reg_read_fndecl_34106_fields reg_read fndecl 0 34106 NULL
++do_shmat_fndecl_34107_fields do_shmat fndecl 5 34107 NULL
++__wa_xfer_setup_sizes_fndecl_34109_fields __wa_xfer_setup_sizes fndecl 0 34109 NULL
++lcd_right_margin_atyfb_par_34110_fields lcd_right_margin atyfb_par 0 34110 NULL
++reserved_eq_mlx4_func_cap_34117_fields reserved_eq mlx4_func_cap 0 34117 NULL
++chunk_size_lirc_driver_34118_fields chunk_size lirc_driver 0 34118 NULL
++qxl_alloc_bo_reserved_fndecl_34119_fields qxl_alloc_bo_reserved fndecl 3 34119 NULL
++nf_nat_ipv4_manip_pkt_fndecl_34120_fields nf_nat_ipv4_manip_pkt fndecl 2 34120 NULL
++cw1200_sdio_align_size_fndecl_34124_fields cw1200_sdio_align_size fndecl 2 34124 NULL nohasharray
++size_qlcnic_fw_dump_34124_fields size qlcnic_fw_dump 0 34124 &cw1200_sdio_align_size_fndecl_34124_fields
++nfs_vmtruncate_fndecl_34126_fields nfs_vmtruncate fndecl 2 34126 NULL
++ovs_fragment_fndecl_34127_fields ovs_fragment fndecl 4 34127 NULL
++dst_width_snd_pcm_plugin_34144_fields dst_width snd_pcm_plugin 0 34144 NULL
++object_size_kmem_cache_34151_fields object_size kmem_cache 0 34151 NULL
++vmax_packet_size_pwc_device_34153_fields vmax_packet_size pwc_device 0 34153 NULL
++sky2_change_mtu_fndecl_34157_fields sky2_change_mtu fndecl 2 34157 NULL nohasharray
++data_size_dm_ulog_request_34157_fields data_size dm_ulog_request 0 34157 &sky2_change_mtu_fndecl_34157_fields
++nb_if_sdio_packet_34158_fields nb if_sdio_packet 0 34158 NULL nohasharray
++usb_pipe_ua101_stream_34158_fields usb_pipe ua101_stream 0 34158 &nb_if_sdio_packet_34158_fields nohasharray
++max_requests_rpcrdma_create_data_internal_34158_fields max_requests rpcrdma_create_data_internal 0 34158 &usb_pipe_ua101_stream_34158_fields
++krb5_decrypt_fndecl_34166_fields krb5_decrypt fndecl 5 34166 NULL
++save_mr_fndecl_34167_fields save_mr fndecl 4 34167 NULL
++blockmask_sddr55_card_info_34172_fields blockmask sddr55_card_info 0 34172 NULL
++osst_seek_sector_fndecl_34173_fields osst_seek_sector fndecl 3 34173 NULL nohasharray
++ucNumEntries__ATOM_Polaris10_PCIE_Table_34173_fields ucNumEntries _ATOM_Polaris10_PCIE_Table 0 34173 &osst_seek_sector_fndecl_34173_fields
++buffers_pipe_inode_info_34187_fields buffers pipe_inode_info 0 34187 NULL
++sys_recv_fndecl_34188_fields sys_recv fndecl 3 34188 NULL
++new_oblock_dm_cache_migration_34189_fields new_oblock dm_cache_migration 0 34189 NULL
++length_dm_target_spec_34193_fields length dm_target_spec 0 34193 NULL
++write_room_tty_operations_34200_fields write_room tty_operations 0 34200 NULL
++cxgb4vf_change_mtu_fndecl_34204_fields cxgb4vf_change_mtu fndecl 2 34204 NULL
++cx23888_ir_rx_read_fndecl_34210_fields cx23888_ir_rx_read fndecl 3 34210 NULL
++dw_msi_setup_irqs_fndecl_34216_fields dw_msi_setup_irqs fndecl 3 34216 NULL
++new_sync_write_fndecl_34217_fields new_sync_write fndecl 3-0 34217 NULL
++ext4_expand_extra_isize_fndecl_34225_fields ext4_expand_extra_isize fndecl 2 34225 NULL nohasharray
++first_psn_rxe_send_wqe_34225_fields first_psn rxe_send_wqe 0 34225 &ext4_expand_extra_isize_fndecl_34225_fields
++segno_sit_journal_entry_34226_fields segno sit_journal_entry 0 34226 NULL
++ath6kl_wmi_simple_cmd_fndecl_34229_fields ath6kl_wmi_simple_cmd fndecl 2 34229 NULL
++isdnhdlc_decode_fndecl_34233_fields isdnhdlc_decode fndecl 0 34233 NULL nohasharray
++m_len_s_mbuf_34233_fields m_len s_mbuf 0 34233 &isdnhdlc_decode_fndecl_34233_fields
++cfpkt_pad_trail_fndecl_34244_fields cfpkt_pad_trail fndecl 2 34244 NULL
++agno_xfs_extent_busy_34245_fields agno xfs_extent_busy 0 34245 NULL
++rss_cpus_vardecl_efx_c_34253_fields rss_cpus vardecl_efx.c 0 34253 NULL nohasharray
++pktgen_finalize_skb_fndecl_34253_fields pktgen_finalize_skb fndecl 3 34253 &rss_cpus_vardecl_efx_c_34253_fields
++__reserve_region_with_split_fndecl_34259_fields __reserve_region_with_split fndecl 3-2 34259 NULL nohasharray
++regmap_encx24j600_spi_read_fndecl_34259_fields regmap_encx24j600_spi_read fndecl 4 34259 &__reserve_region_with_split_fndecl_34259_fields
++status_tulip_rx_desc_34260_fields status tulip_rx_desc 0 34260 NULL
++MaxTransactSize_smb2_negotiate_rsp_34261_fields MaxTransactSize smb2_negotiate_rsp 0 34261 NULL
++count_igbvf_ring_34264_fields count igbvf_ring 0 34264 NULL
++metadata_dst_alloc_percpu_fndecl_34267_fields metadata_dst_alloc_percpu fndecl 1 34267 NULL nohasharray
++nvdimm_create_fndecl_34267_fields nvdimm_create fndecl 6 34267 &metadata_dst_alloc_percpu_fndecl_34267_fields
++reg_read_smsc911x_ops_34274_fields reg_read smsc911x_ops 0 34274 NULL
++max_segs_mmc_host_34276_fields max_segs mmc_host 0 34276 NULL nohasharray
++tty_port_register_device_fndecl_34276_fields tty_port_register_device fndecl 3 34276 &max_segs_mmc_host_34276_fields
++btt_map_read_fndecl_34281_fields btt_map_read fndecl 0 34281 NULL
++buf_len_wmi_10_4_mgmt_rx_hdr_34285_fields buf_len wmi_10_4_mgmt_rx_hdr 0 34285 NULL
++ocfs2_group_from_res_fndecl_34289_fields ocfs2_group_from_res fndecl 0 34289 NULL
++cpu_msix_table_sz_MPT3SAS_ADAPTER_34295_fields cpu_msix_table_sz MPT3SAS_ADAPTER 0 34295 NULL
++skb_coalesce_rx_frag_fndecl_34296_fields skb_coalesce_rx_frag fndecl 3-4 34296 NULL
++__nla_put_64bit_fndecl_34299_fields __nla_put_64bit fndecl 3 34299 NULL
++fl_pg_order_sge_34307_fields fl_pg_order sge 0 34307 NULL
++p1_FS_QENTRY_34311_fields p1 FS_QENTRY 0 34311 NULL
++usb6fire_pcm_init_urb_fndecl_34318_fields usb6fire_pcm_init_urb fndecl 4 34318 NULL
++vmw_kms_sou_do_dmabuf_dirty_fndecl_34319_fields vmw_kms_sou_do_dmabuf_dirty fndecl 5 34319 NULL
++acm_tty_write_fndecl_34323_fields acm_tty_write fndecl 3 34323 NULL
++usb_alloc_stream_buffers_fndecl_34344_fields usb_alloc_stream_buffers fndecl 3 34344 NULL
++get_bad_peb_limit_fndecl_34374_fields get_bad_peb_limit fndecl 0-2 34374 NULL
++r_minimode_34384_fields r minimode 0 34384 NULL
++pfn_mthca_uar_34385_fields pfn mthca_uar 0 34385 NULL
++vd_blocknr_nilfs_vdesc_34386_fields vd_blocknr nilfs_vdesc 0 34386 NULL
++mlxsw_emad_transmit_fndecl_34390_fields mlxsw_emad_transmit fndecl 0 34390 NULL
++ath6kl_wmi_set_inact_period_fndecl_34398_fields ath6kl_wmi_set_inact_period fndecl 2 34398 NULL
++min_scaled_height_bttv_crop_34408_fields min_scaled_height bttv_crop 0 34408 NULL
++__i2c_transfer_fndecl_34417_fields __i2c_transfer fndecl 0 34417 NULL
++w_minimode_34418_fields w minimode 0 34418 NULL
++fragsize_inet_cork_34425_fields fragsize inet_cork 0 34425 NULL
++vs_xdrsize_svc_version_34426_fields vs_xdrsize svc_version 0 34426 NULL
++ctrl_set_res_ver_fndecl_34447_fields ctrl_set_res_ver fndecl 3 34447 NULL
++window_len_regmap_range_node_34449_fields window_len regmap_range_node 0 34449 NULL
++copy_size_vmxnet3_tx_ctx_34453_fields copy_size vmxnet3_tx_ctx 0 34453 NULL
++exceptions_per_area_pstore_34460_fields exceptions_per_area pstore 0 34460 NULL
++len_gsm_msg_34461_fields len gsm_msg 0 34461 NULL
++num_regs_regmap_irq_chip_34465_fields num_regs regmap_irq_chip 0 34465 NULL
++MaxCommands_DAC960_V1_Enquiry_34475_fields MaxCommands DAC960_V1_Enquiry 0 34475 NULL
++start_btrfs_ordered_extent_34479_fields start btrfs_ordered_extent 0 34479 NULL
++i2c_hid_command_fndecl_34481_fields i2c_hid_command fndecl 4 34481 NULL
++dma_bd_table_34490_fields dma bd_table 0 34490 NULL
++do_ipt_set_ctl_fndecl_34493_fields do_ipt_set_ctl fndecl 4 34493 NULL
++w_virtio_gpu_box_34509_fields w virtio_gpu_box 0 34509 NULL
++overflow_maj_vardecl_user_mad_c_34524_fields overflow_maj vardecl_user_mad.c 0 34524 NULL
++SavagePanelHeight_savagefb_par_34532_fields SavagePanelHeight savagefb_par 0 34532 NULL
++track_pfn_remap_fndecl_34534_fields track_pfn_remap fndecl 3-5 34534 NULL nohasharray
++width_pcs_device_34534_fields width pcs_device 0 34534 &track_pfn_remap_fndecl_34534_fields
++tid_ieee80211_rx_agg_34536_fields tid ieee80211_rx_agg 0 34536 NULL
++total_vfs_qed_hw_sriov_info_34538_fields total_vfs qed_hw_sriov_info 0 34538 NULL
++resid_sg_io_hdr_34541_fields resid sg_io_hdr 0 34541 NULL
++host_size_scsi_transport_template_34551_fields host_size scsi_transport_template 0 34551 NULL
++maxpacket_limit_usb_ep_34566_fields maxpacket_limit usb_ep 0 34566 NULL
++opt_xfer_blocks_scsi_disk_34567_fields opt_xfer_blocks scsi_disk 0 34567 NULL
++blkno_range2trim_34581_fields blkno range2trim 0 34581 NULL
++dwc3_ep0_start_trans_fndecl_34586_fields dwc3_ep0_start_trans fndecl 4 34586 NULL
++blk_queue_alignment_offset_fndecl_34591_fields blk_queue_alignment_offset fndecl 2 34591 NULL
++hcd_alloc_coherent_fndecl_34597_fields hcd_alloc_coherent fndecl 0-5 34597 NULL
++min_resource_constraint_34598_fields min resource_constraint 0 34598 NULL
++ath6kl_wmi_data_hdr_add_fndecl_34601_fields ath6kl_wmi_data_hdr_add fndecl 8 34601 NULL
++sys_sync_file_range_fndecl_34604_fields sys_sync_file_range fndecl 2-3 34604 NULL
++__check_block_validity_fndecl_34606_fields __check_block_validity fndecl 0 34606 NULL
++end_shift_iwl_fw_dbg_dest_tlv_34608_fields end_shift iwl_fw_dbg_dest_tlv 0 34608 NULL
++fip_dlen_fip_desc_34614_fields fip_dlen fip_desc 0 34614 NULL
++vram_total_vardecl_vesafb_c_34615_fields vram_total vardecl_vesafb.c 0 34615 NULL nohasharray
++size_vb2_vmalloc_buf_34615_fields size vb2_vmalloc_buf 0 34615 &vram_total_vardecl_vesafb_c_34615_fields
++undo_cwnd_tcp_congestion_ops_34621_fields undo_cwnd tcp_congestion_ops 0 34621 NULL
++ace_change_mtu_fndecl_34639_fields ace_change_mtu fndecl 2 34639 NULL
++xfs_free_ag_extent_fndecl_34658_fields xfs_free_ag_extent fndecl 5-0 34658 NULL
++init_evtlog_size_iwl_fw_34663_fields init_evtlog_size iwl_fw 0 34663 NULL
++num_chip_htcpld_core_platform_data_34665_fields num_chip htcpld_core_platform_data 0 34665 NULL
++ext4_convert_unwritten_extents_endio_fndecl_34667_fields ext4_convert_unwritten_extents_endio fndecl 0 34667 NULL
++num_leaves_cpu_cacheinfo_34676_fields num_leaves cpu_cacheinfo 0 34676 NULL
++pnp_add_mem_resource_fndecl_34681_fields pnp_add_mem_resource fndecl 3-2 34681 NULL
++offset_ethtool_eeprom_34683_fields offset ethtool_eeprom 0 34683 NULL
++bassinit_CHIPDESC_34688_fields bassinit CHIPDESC 0 34688 NULL
++acpi_tables_addr_vardecl_tables_c_34693_fields acpi_tables_addr vardecl_tables.c 0 34693 NULL
++max_payload_fc_fcp_pkt_34696_fields max_payload fc_fcp_pkt 0 34696 NULL
++writesize_mtd_info_34702_fields writesize mtd_info 0 34702 NULL nohasharray
++jbd2_journal_file_inode_fndecl_34702_fields jbd2_journal_file_inode fndecl 0 34702 &writesize_mtd_info_34702_fields
++efi_memmap_efi_info_34704_fields efi_memmap efi_info 0 34704 NULL
++gfs2_log_alloc_bio_fndecl_34714_fields gfs2_log_alloc_bio fndecl 2 34714 NULL
++in_sector_offset_vardecl_floppy_c_34720_fields in_sector_offset vardecl_floppy.c 0 34720 NULL
++cache_word_size_regmap_34722_fields cache_word_size regmap 0 34722 NULL
++W6692_empty_Dfifo_fndecl_34725_fields W6692_empty_Dfifo fndecl 2 34725 NULL nohasharray
++tx_num_pgs_tp_params_34725_fields tx_num_pgs tp_params 0 34725 &W6692_empty_Dfifo_fndecl_34725_fields
++ocfs2_dx_dir_format_cluster_fndecl_34730_fields ocfs2_dx_dir_format_cluster fndecl 6 34730 NULL nohasharray
++eqc_entry_sz_mlx4_dev_cap_34730_fields eqc_entry_sz mlx4_dev_cap 0 34730 &ocfs2_dx_dir_format_cluster_fndecl_34730_fields
++wa_xfer_create_subset_sg_fndecl_34731_fields wa_xfer_create_subset_sg fndecl 2-3 34731 NULL
++memblock_double_array_fndecl_34732_fields memblock_double_array fndecl 3-2 34732 NULL
++trunc_start_fndecl_34735_fields trunc_start fndecl 3-2 34735 NULL
++flags_rtl8187b_rx_hdr_34741_fields flags rtl8187b_rx_hdr 0 34741 NULL
++inbuf_dma_usbhid_device_34742_fields inbuf_dma usbhid_device 0 34742 NULL
++u132_hcd_bulk_input_recv_fndecl_34756_fields u132_hcd_bulk_input_recv fndecl 4 34756 NULL
++extent_size_ecryptfs_crypt_stat_34757_fields extent_size ecryptfs_crypt_stat 0 34757 NULL nohasharray
++zone_spare_adfs_discrecord_34757_fields zone_spare adfs_discrecord 0 34757 &extent_size_ecryptfs_crypt_stat_34757_fields nohasharray
++ecc_bits_onfi_ext_ecc_info_34757_fields ecc_bits onfi_ext_ecc_info 0 34757 &zone_spare_adfs_discrecord_34757_fields
++ssb_bus_pcmciabus_register_fndecl_34759_fields ssb_bus_pcmciabus_register fndecl 3 34759 NULL
++qla2x00_mem_alloc_fndecl_34771_fields qla2x00_mem_alloc fndecl 3-2 34771 NULL
++hvt_op_write_fndecl_34774_fields hvt_op_write fndecl 3 34774 NULL
++cyapa_i2c_pip_read_fndecl_34788_fields cyapa_i2c_pip_read fndecl 3 34788 NULL
++qxl_image_alloc_objects_fndecl_34790_fields qxl_image_alloc_objects fndecl 4-5 34790 NULL
++addrlen_svc_deferred_req_34794_fields addrlen svc_deferred_req 0 34794 NULL
++rq_count_st_card_info_34798_fields rq_count st_card_info 0 34798 NULL
++nfs_write_end_fndecl_34801_fields nfs_write_end fndecl 3-5 34801 NULL
++prepare_message_data_fndecl_34802_fields prepare_message_data fndecl 2 34802 NULL
++page_size_flash_info_34810_fields page_size flash_info 0 34810 NULL
++rcv_array_groups_hfi1_ctxtdata_34813_fields rcv_array_groups hfi1_ctxtdata 0 34813 NULL nohasharray
++bio_integrity_clone_fndecl_34813_fields bio_integrity_clone fndecl 0 34813 &rcv_array_groups_hfi1_ctxtdata_34813_fields
++blk_cnt_os_dat_entry_s_34817_fields blk_cnt os_dat_entry_s 0 34817 NULL
++max_headroom_datapath_34819_fields max_headroom datapath 0 34819 NULL
++lbs_lowsnr_write_fndecl_34822_fields lbs_lowsnr_write fndecl 3 34822 NULL
++alg_key_len_xfrm_algo_34823_fields alg_key_len xfrm_algo 0 34823 NULL nohasharray
++wps_ie_len_mwifiex_private_34823_fields wps_ie_len mwifiex_private 0 34823 &alg_key_len_xfrm_algo_34823_fields
++madvise_behavior_fndecl_34827_fields madvise_behavior fndecl 4-3 34827 NULL
++mwifiex_usb_submit_rx_urb_fndecl_34829_fields mwifiex_usb_submit_rx_urb fndecl 2 34829 NULL
++rcvegrbufs_perchunk_qib_ctxtdata_34831_fields rcvegrbufs_perchunk qib_ctxtdata 0 34831 NULL
++xenvif_check_gop_fndecl_34832_fields xenvif_check_gop fndecl 0 34832 NULL
++eblks_mtdswap_dev_34840_fields eblks mtdswap_dev 0 34840 NULL
++in_usbnet_34842_fields in usbnet 0 34842 NULL
++dma_channels_hidma_mgmt_dev_34844_fields dma_channels hidma_mgmt_dev 0 34844 NULL
++plen_pbn_entry_34845_fields plen pbn_entry 0 34845 NULL
++qede_gro_receive_fndecl_34847_fields qede_gro_receive fndecl 4 34847 NULL
++vma_end_reservation_fndecl_34848_fields vma_end_reservation fndecl 3 34848 NULL nohasharray
++ath6kl_wmi_create_pstream_cmd_fndecl_34848_fields ath6kl_wmi_create_pstream_cmd fndecl 2 34848 &vma_end_reservation_fndecl_34848_fields
++nfsd_vfs_write_fndecl_34850_fields nfsd_vfs_write fndecl 6 34850 NULL
++good_peb_count_ubi_device_34853_fields good_peb_count ubi_device 0 34853 NULL
++nilfs_ioctl_do_get_suinfo_fndecl_34854_fields nilfs_ioctl_do_get_suinfo fndecl 6 34854 NULL
++max_msix_vectors_fm10k_mac_info_34860_fields max_msix_vectors fm10k_mac_info 0 34860 NULL
++tipc_link_set_mtu_fndecl_34861_fields tipc_link_set_mtu fndecl 2 34861 NULL
++pfkey_recvmsg_fndecl_34863_fields pfkey_recvmsg fndecl 3 34863 NULL
++odm_num_comps_pnfs_osd_data_map_34865_fields odm_num_comps pnfs_osd_data_map 0 34865 NULL
++sddr09_writeX_fndecl_34870_fields sddr09_writeX fndecl 5 34870 NULL
++dout_xfer_len_sg_io_v4_34879_fields dout_xfer_len sg_io_v4 0 34879 NULL
++bgx_get_lmac_count_fndecl_34883_fields bgx_get_lmac_count fndecl 0 34883 NULL
++drm_cvt_mode_fndecl_34886_fields drm_cvt_mode fndecl 3-2-4 34886 NULL
++Wa_tvnorm_34892_fields Wa tvnorm 0 34892 NULL
++len_coda_ioctl_out_34894_fields len coda_ioctl_out 0 34894 NULL
++sb_logstart_xfs_sb_34900_fields sb_logstart xfs_sb 0 34900 NULL
++fat_ent_read_fndecl_34902_fields fat_ent_read fndecl 0-3 34902 NULL
++block_size_ath6kl_mbox_info_34904_fields block_size ath6kl_mbox_info 0 34904 NULL
++num_channels_ad5380_chip_info_34917_fields num_channels ad5380_chip_info 0 34917 NULL nohasharray
++irq_of_parse_and_map_fndecl_34917_fields irq_of_parse_and_map fndecl 0 34917 &num_channels_ad5380_chip_info_34917_fields
++ath10k_htc_alloc_skb_fndecl_34920_fields ath10k_htc_alloc_skb fndecl 2 34920 NULL
++consume_size_vmci_qp_alloc_info_34922_fields consume_size vmci_qp_alloc_info 0 34922 NULL
++shared_secret_len_net_conf_34926_fields shared_secret_len net_conf 0 34926 NULL
++len_wil6210_mbox_hdr_34930_fields len wil6210_mbox_hdr 0 34930 NULL
++swiotlb_init_with_tbl_fndecl_34935_fields swiotlb_init_with_tbl fndecl 2 34935 NULL
++register_sound_special_fndecl_34937_fields register_sound_special fndecl 2 34937 NULL
++recv_resync_read_fndecl_34939_fields recv_resync_read fndecl 2 34939 NULL
++max_receive_fw_card_34941_fields max_receive fw_card 0 34941 NULL
++ext2_write_end_fndecl_34943_fields ext2_write_end fndecl 5 34943 NULL
++ips_scmd_buf_write_fndecl_34946_fields ips_scmd_buf_write fndecl 3 34946 NULL
++simple_alloc_urb_fndecl_34966_fields simple_alloc_urb fndecl 2 34966 NULL
++s35390a_get_reg_fndecl_34971_fields s35390a_get_reg fndecl 4 34971 NULL
++items_snd_soc_tplg_enum_control_34973_fields items snd_soc_tplg_enum_control 0 34973 NULL nohasharray
++cw1200_queue_stats_init_fndecl_34973_fields cw1200_queue_stats_init fndecl 2 34973 &items_snd_soc_tplg_enum_control_34973_fields
++gcr_base_intel_pmc_ipc_dev_34977_fields gcr_base intel_pmc_ipc_dev 0 34977 NULL
++wm_adsp_buffer_capture_block_fndecl_35001_fields wm_adsp_buffer_capture_block fndecl 2-0 35001 NULL
++rx_ring_count_ixgbe_adapter_35004_fields rx_ring_count ixgbe_adapter 0 35004 NULL
++amb_len_i5k_amb_data_35007_fields amb_len i5k_amb_data 0 35007 NULL nohasharray
++platform_get_irq_byname_fndecl_35007_fields platform_get_irq_byname fndecl 0 35007 &amb_len_i5k_amb_data_35007_fields
++num_snaps_ceph_mds_snap_realm_35009_fields num_snaps ceph_mds_snap_realm 0 35009 NULL
++fc_set_mfs_fndecl_35014_fields fc_set_mfs fndecl 2 35014 NULL
++skb_zerocopy_fndecl_35016_fields skb_zerocopy fndecl 4-3 35016 NULL
++read_capacity_10_fndecl_35017_fields read_capacity_10 fndecl 0 35017 NULL nohasharray
++pg_doio_nfs_pageio_ops_35017_fields pg_doio nfs_pageio_ops 0 35017 &read_capacity_10_fndecl_35017_fields
++no_ids_squashfs_super_block_35022_fields no_ids squashfs_super_block 0 35022 NULL
++_add_sg_continuation_descriptor_fndecl_35026_fields _add_sg_continuation_descriptor fndecl 3 35026 NULL
++vSync_width_panel_info_35029_fields vSync_width panel_info 0 35029 NULL nohasharray
++set_nservers_fndecl_35029_fields set_nservers fndecl 2 35029 &vSync_width_panel_info_35029_fields
++vid_net_bridge_vlan_35032_fields vid net_bridge_vlan 0 35032 NULL
++w_nr_rds_ib_work_ring_35048_fields w_nr rds_ib_work_ring 0 35048 NULL
++uarc_size_mthca_profile_35053_fields uarc_size mthca_profile 0 35053 NULL
++n_ports_rp2_card_35055_fields n_ports rp2_card 0 35055 NULL
++tda18218_rd_reg_fndecl_35057_fields tda18218_rd_reg fndecl 2 35057 NULL
++iio_event_chrdev_read_fndecl_35062_fields iio_event_chrdev_read fndecl 3 35062 NULL
++pci_create_root_bus_fndecl_35065_fields pci_create_root_bus fndecl 2 35065 NULL
++jffs2_flash_direct_write_fndecl_35070_fields jffs2_flash_direct_write fndecl 3 35070 NULL
++altera_set_dr_post_fndecl_35072_fields altera_set_dr_post fndecl 2 35072 NULL
++num_col_gpios_matrix_keypad_platform_data_35080_fields num_col_gpios matrix_keypad_platform_data 0 35080 NULL
++get_iovec_page_array_fndecl_35081_fields get_iovec_page_array fndecl 0 35081 NULL
++inbuf_dma_ati_remote_35083_fields inbuf_dma ati_remote 0 35083 NULL
++ieee80211_add_rx_radiotap_header_fndecl_35086_fields ieee80211_add_rx_radiotap_header fndecl 4 35086 NULL
++ubi_calc_data_len_fndecl_35092_fields ubi_calc_data_len fndecl 0-3 35092 NULL
++er_data_len_gfs2_ea_request_35098_fields er_data_len gfs2_ea_request 0 35098 NULL
++num_vf_qps_i40e_pf_35102_fields num_vf_qps i40e_pf 0 35102 NULL
++prot_length_se_device_35103_fields prot_length se_device 0 35103 NULL
++dma_common_get_sgtable_fndecl_35105_fields dma_common_get_sgtable fndecl 5 35105 NULL
++__do_page_fault_fndecl_35107_fields __do_page_fault fndecl 3 35107 NULL
++size_kcore_list_35108_fields size kcore_list 0 35108 NULL nohasharray
++ath6kl_wmi_set_bitrate_mask_fndecl_35108_fields ath6kl_wmi_set_bitrate_mask fndecl 2 35108 &size_kcore_list_35108_fields
++pn_raw_send_fndecl_35113_fields pn_raw_send fndecl 2 35113 NULL
++max_uc_mac_be_resources_35119_fields max_uc_mac be_resources 0 35119 NULL
++vxfs_bmap_indir_fndecl_35120_fields vxfs_bmap_indir fndecl 2-0-4 35120 NULL
++alloc_vm_area_fndecl_35121_fields alloc_vm_area fndecl 1 35121 NULL
++advance_dma_data_fndecl_35124_fields advance_dma_data fndecl 2 35124 NULL
++sm501_alloc_mem_fndecl_35125_fields sm501_alloc_mem fndecl 4 35125 NULL
++bch_empty_fifo_fndecl_35126_fields bch_empty_fifo fndecl 2 35126 NULL
++vmw_mob_create_fndecl_35127_fields vmw_mob_create fndecl 1 35127 NULL nohasharray
++nilfs_sufile_get_suinfo_fndecl_35127_fields nilfs_sufile_get_suinfo fndecl 5-2 35127 &vmw_mob_create_fndecl_35127_fields
++FbMapSize_nvidia_par_35128_fields FbMapSize nvidia_par 0 35128 NULL nohasharray
++mlx4_en_create_rx_ring_fndecl_35128_fields mlx4_en_create_rx_ring fndecl 3 35128 &FbMapSize_nvidia_par_35128_fields
++channels_min_snd_pcm_hardware_35132_fields channels_min snd_pcm_hardware 0 35132 NULL nohasharray
++bio_add_pc_page_fndecl_35132_fields bio_add_pc_page fndecl 4-5 35132 &channels_min_snd_pcm_hardware_35132_fields
++xdr_restrict_buflen_fndecl_35133_fields xdr_restrict_buflen fndecl 2 35133 NULL
++_osd_realloc_seg_fndecl_35139_fields _osd_realloc_seg fndecl 3 35139 NULL
++blockoffset_hfsplus_sb_info_35140_fields blockoffset hfsplus_sb_info 0 35140 NULL
++tx_ring_size_adm8211_priv_35143_fields tx_ring_size adm8211_priv 0 35143 NULL
++len_mwifiex_ie_types_header_35146_fields len mwifiex_ie_types_header 0 35146 NULL
++pageshift_alauda_card_info_35154_fields pageshift alauda_card_info 0 35154 NULL
++num_rx_qp_i40e_hw_capabilities_35165_fields num_rx_qp i40e_hw_capabilities 0 35165 NULL
++count_sgmap_35168_fields count sgmap 0 35168 NULL
++aux_ulist_node_35169_fields aux ulist_node 0 35169 NULL
++memblock_size_vxge_hw_fifo_config_35179_fields memblock_size vxge_hw_fifo_config 0 35179 NULL
++at24_eeprom_write_i2c_fndecl_35183_fields at24_eeprom_write_i2c fndecl 3-4 35183 NULL
++buf_alloc_virtio_vsock_hdr_35184_fields buf_alloc virtio_vsock_hdr 0 35184 NULL
++blk_rq_count_integrity_sg_fndecl_35185_fields blk_rq_count_integrity_sg fndecl 0 35185 NULL
++__sound_insert_unit_fndecl_35186_fields __sound_insert_unit fndecl 4-5 35186 NULL
++wHeight_uvc_frame_35189_fields wHeight uvc_frame 0 35189 NULL
++vop_vringh_copy_fndecl_35193_fields vop_vringh_copy fndecl 4 35193 NULL
++new_lockspace_fndecl_35208_fields new_lockspace fndecl 4 35208 NULL
++tx_ring_size_pcnet32_private_35210_fields tx_ring_size pcnet32_private 0 35210 NULL
++xfs_ialloc_inode_init_fndecl_35212_fields xfs_ialloc_inode_init fndecl 6-5 35212 NULL
++maxpacksize_snd_usb_endpoint_35216_fields maxpacksize snd_usb_endpoint 0 35216 NULL nohasharray
++sset_mask_ethtool_sset_info_35216_fields sset_mask ethtool_sset_info 0 35216 &maxpacksize_snd_usb_endpoint_35216_fields
++__ndisc_fill_addr_option_fndecl_35220_fields __ndisc_fill_addr_option fndecl 5-4 35220 NULL
++snd_pcm_add_chmap_ctls_fndecl_35223_fields snd_pcm_add_chmap_ctls fndecl 4 35223 NULL
++vmbus_sendpacket_ctl_fndecl_35225_fields vmbus_sendpacket_ctl fndecl 3 35225 NULL
++root_blkno_ocfs2_super_35227_fields root_blkno ocfs2_super 0 35227 NULL
++d_off_p9_dirent_35247_fields d_off p9_dirent 0 35247 NULL nohasharray
++policy_idx_hmask_netns_xfrm_35247_fields policy_idx_hmask netns_xfrm 0 35247 &d_off_p9_dirent_35247_fields
++whc_urb_dequeue_fndecl_35255_fields whc_urb_dequeue fndecl 3 35255 NULL nohasharray
++oprofile_buffer_size_vardecl_35255_fields oprofile_buffer_size vardecl 0 35255 &whc_urb_dequeue_fndecl_35255_fields
++max_gs_mthca_srq_35258_fields max_gs mthca_srq 0 35258 NULL
++dm_bm_write_lock_fndecl_35261_fields dm_bm_write_lock fndecl 2 35261 NULL
++gss_unwrap_kerberos_fndecl_35263_fields gss_unwrap_kerberos fndecl 2 35263 NULL
++wstatus_usblp_35266_fields wstatus usblp 0 35266 NULL
++sparse_early_mem_maps_alloc_node_fndecl_35270_fields sparse_early_mem_maps_alloc_node fndecl 4 35270 NULL
++maxburst_snd_dmaengine_dai_dma_data_35287_fields maxburst snd_dmaengine_dai_dma_data 0 35287 NULL
++ceph_msg_data_advance_fndecl_35288_fields ceph_msg_data_advance fndecl 2 35288 NULL
++offs_ubifs_wbuf_35290_fields offs ubifs_wbuf 0 35290 NULL
++xc_send_i2c_data_fndecl_35297_fields xc_send_i2c_data fndecl 3 35297 NULL
++maybe_indirect_to_direct_fndecl_35307_fields maybe_indirect_to_direct fndecl 6 35307 NULL
++ieee80211_tdls_mgmt_setup_fndecl_35316_fields ieee80211_tdls_mgmt_setup fndecl 10 35316 NULL
++udf_insert_aext_fndecl_35323_fields udf_insert_aext fndecl 4 35323 NULL
++l2cap_create_basic_pdu_fndecl_35327_fields l2cap_create_basic_pdu fndecl 3 35327 NULL
++ssid_len_cfg80211_ibss_params_35329_fields ssid_len cfg80211_ibss_params 0 35329 NULL
++xb_suballoc_bit_ocfs2_xattr_block_35331_fields xb_suballoc_bit ocfs2_xattr_block 0 35331 NULL
++extra_msdu_postfix_len_lib80211_crypto_ops_35341_fields extra_msdu_postfix_len lib80211_crypto_ops 0 35341 NULL
++nr_pages_bts_buffer_35350_fields nr_pages bts_buffer 0 35350 NULL
++num_reg_mic_smpt_hw_info_35353_fields num_reg mic_smpt_hw_info 0 35353 NULL
++udf_get_pblock_meta25_fndecl_35356_fields udf_get_pblock_meta25 fndecl 4 35356 NULL
++header_dvfs_info_35357_fields header dvfs_info 0 35357 NULL
++IA_RX_BUF_SZ_vardecl_iphase_c_35365_fields IA_RX_BUF_SZ vardecl_iphase.c 0 35365 NULL
++previous_raid_disks_r5conf_35368_fields previous_raid_disks r5conf 0 35368 NULL nohasharray
++count_param_range_35368_fields count param_range 0 35368 &previous_raid_disks_r5conf_35368_fields nohasharray
++input_pool_snd_seq_client_pool_35368_fields input_pool snd_seq_client_pool 0 35368 &count_param_range_35368_fields
++num_channels_ad7266_chan_info_35372_fields num_channels ad7266_chan_info 0 35372 NULL
++update_raid_disks_fndecl_35375_fields update_raid_disks fndecl 2 35375 NULL
++sd_head_align_brcmfmac_sdio_pd_35378_fields sd_head_align brcmfmac_sdio_pd 0 35378 NULL nohasharray
++mmio_base_phys_radeonfb_info_35378_fields mmio_base_phys radeonfb_info 0 35378 &sd_head_align_brcmfmac_sdio_pd_35378_fields
++virtio_gpu_cmd_submit_fndecl_35382_fields virtio_gpu_cmd_submit fndecl 3 35382 NULL
++hc_erase_size_mmc_ext_csd_35384_fields hc_erase_size mmc_ext_csd 0 35384 NULL
++nand_read_subpage_fndecl_35388_fields nand_read_subpage fndecl 3 35388 NULL
++read_dma_fndecl_35389_fields read_dma fndecl 3 35389 NULL
++writeback_fndecl_35390_fields writeback fndecl 4-3 35390 NULL
++corrupt_data_fndecl_35395_fields corrupt_data fndecl 0-3 35395 NULL
++blk_queue_io_opt_fndecl_35405_fields blk_queue_io_opt fndecl 2 35405 NULL
++at24_eeprom_read_i2c_fndecl_35407_fields at24_eeprom_read_i2c fndecl 4 35407 NULL
++rdma_rw_ctx_init_fndecl_35410_fields rdma_rw_ctx_init fndecl 6-7 35410 NULL
++_drbd_md_sync_page_io_fndecl_35411_fields _drbd_md_sync_page_io fndecl 3 35411 NULL
++ali15x3_smba_vardecl_i2c_ali15x3_c_35421_fields ali15x3_smba vardecl_i2c-ali15x3.c 0 35421 NULL
++cqc_entry_sz_mthca_dev_lim_35422_fields cqc_entry_sz mthca_dev_lim 0 35422 NULL
++fb_width_drm_fb_helper_surface_size_35426_fields fb_width drm_fb_helper_surface_size 0 35426 NULL
++btrfs_fdatawrite_range_fndecl_35427_fields btrfs_fdatawrite_range fndecl 2-3 35427 NULL
++offset_tx_buf_35429_fields offset tx_buf 0 35429 NULL
++bmAttributes_usb_ss_ep_comp_descriptor_35434_fields bmAttributes usb_ss_ep_comp_descriptor 0 35434 NULL
++ocfs2_prepare_refcount_change_for_del_fndecl_35442_fields ocfs2_prepare_refcount_change_for_del fndecl 2 35442 NULL
++pcf2123_read_fndecl_35443_fields pcf2123_read fndecl 4 35443 NULL
++wake_len_cfg80211_wowlan_tcp_35448_fields wake_len cfg80211_wowlan_tcp 0 35448 NULL nohasharray
++len_he_buff_35448_fields len he_buff 0 35448 &wake_len_cfg80211_wowlan_tcp_35448_fields
++ocfs2_truncate_file_fndecl_35455_fields ocfs2_truncate_file fndecl 3 35455 NULL
++octeon_create_droq_fndecl_35457_fields octeon_create_droq fndecl 4-3 35457 NULL
++bytes_to_read_mpt3_diag_read_buffer_35460_fields bytes_to_read mpt3_diag_read_buffer 0 35460 NULL
++drbd_send_fndecl_35461_fields drbd_send fndecl 4 35461 NULL
++blkno_iomap_35467_fields blkno iomap 0 35467 NULL
++width_physmap_flash_data_35470_fields width physmap_flash_data 0 35470 NULL
++qxl_monitors_config_set_fndecl_35471_fields qxl_monitors_config_set fndecl 6-5 35471 NULL
++kmem_realloc_fndecl_35475_fields kmem_realloc fndecl 2 35475 NULL
++__rpipe_set_descr_fndecl_35478_fields __rpipe_set_descr fndecl 0 35478 NULL
++length_wl1251_rx_descriptor_35483_fields length wl1251_rx_descriptor 0 35483 NULL
++onenand_read_fndecl_35491_fields onenand_read fndecl 2 35491 NULL
++alloc_clips_fndecl_35492_fields alloc_clips fndecl 3 35492 NULL nohasharray
++f71805f_device_add_fndecl_35492_fields f71805f_device_add fndecl 1 35492 &alloc_clips_fndecl_35492_fields
++nbox_drm_savage_cmdbuf_35493_fields nbox drm_savage_cmdbuf 0 35493 NULL nohasharray
++firm_send_command_fndecl_35493_fields firm_send_command fndecl 4 35493 &nbox_drm_savage_cmdbuf_35493_fields
++x_kmem_cache_order_objects_35507_fields x kmem_cache_order_objects 0 35507 NULL
++acpi_nvs_register_fndecl_35515_fields acpi_nvs_register fndecl 2-1 35515 NULL
++install_special_mapping_fndecl_35519_fields install_special_mapping fndecl 2-3 35519 NULL
++count_atl1_rfd_ring_35523_fields count atl1_rfd_ring 0 35523 NULL
++shift_mlxsw_item_35524_fields shift mlxsw_item 0 35524 NULL nohasharray
++nres_intel_th_subdevice_35524_fields nres intel_th_subdevice 0 35524 &shift_mlxsw_item_35524_fields
++x509_extract_key_data_fndecl_35525_fields x509_extract_key_data fndecl 5 35525 NULL
++clr_int_base_mlx4_fw_35529_fields clr_int_base mlx4_fw 0 35529 NULL
++additional_cdb_length_scsi_varlen_cdb_hdr_35533_fields additional_cdb_length scsi_varlen_cdb_hdr 0 35533 NULL
++find_inode_fndecl_35534_fields find_inode fndecl 2 35534 NULL
++gigaset_tty_receive_fndecl_35535_fields gigaset_tty_receive fndecl 4 35535 NULL
++phys_ck804xrom_window_35536_fields phys ck804xrom_window 0 35536 NULL
++tcp_mss_to_mtu_fndecl_35551_fields tcp_mss_to_mtu fndecl 0-2 35551 NULL
++inet_sendpage_fndecl_35554_fields inet_sendpage fndecl 4 35554 NULL
++vsync_ast_vbios_enhtable_35556_fields vsync ast_vbios_enhtable 0 35556 NULL
++ptrace_request_fndecl_35563_fields ptrace_request fndecl 3 35563 NULL
++data_offset_brcmf_proto_bcdc_header_35569_fields data_offset brcmf_proto_bcdc_header 0 35569 NULL nohasharray
++find_min_pfn_for_node_fndecl_35569_fields find_min_pfn_for_node fndecl 0 35569 &data_offset_brcmf_proto_bcdc_header_35569_fields
++edma_readl_fndecl_35573_fields edma_readl fndecl 0 35573 NULL
++cfg80211_mlme_auth_fndecl_35577_fields cfg80211_mlme_auth fndecl 14-9 35577 NULL
++size_of_priv_dvb_usb_device_properties_35582_fields size_of_priv dvb_usb_device_properties 0 35582 NULL nohasharray
++cur_blksize_sdio_func_35582_fields cur_blksize sdio_func 0 35582 &size_of_priv_dvb_usb_device_properties_35582_fields
++lbs_failcount_write_fndecl_35583_fields lbs_failcount_write fndecl 3 35583 NULL
++actual_length_usb_iso_packet_descriptor_35588_fields actual_length usb_iso_packet_descriptor 0 35588 NULL
++cyttsp_i2c_read_block_data_fndecl_35590_fields cyttsp_i2c_read_block_data fndecl 4 35590 NULL
++minor_start_rp2_card_35592_fields minor_start rp2_card 0 35592 NULL
++nfsd_write_fndecl_35594_fields nfsd_write fndecl 6 35594 NULL
++ext2_iget_fndecl_35598_fields ext2_iget fndecl 2 35598 NULL
++xfs_rtallocate_extent_block_fndecl_35604_fields xfs_rtallocate_extent_block fndecl 5-10-0 35604 NULL
++hback_porch_videomode_35606_fields hback_porch videomode 0 35606 NULL nohasharray
++count_nfs_direct_req_35606_fields count nfs_direct_req 0 35606 &hback_porch_videomode_35606_fields nohasharray
++obj_count_i40iw_virtchnl_hmc_obj_range_35606_fields obj_count i40iw_virtchnl_hmc_obj_range 0 35606 &count_nfs_direct_req_35606_fields
++blocksize_brcmf_sdio_35612_fields blocksize brcmf_sdio 0 35612 NULL
++sqp_demux_mlx4_caps_35613_fields sqp_demux mlx4_caps 0 35613 NULL
++iova_rvt_mregion_35617_fields iova rvt_mregion 0 35617 NULL
++generic_perform_write_fndecl_35619_fields generic_perform_write fndecl 0-3 35619 NULL nohasharray
++ext4_update_final_de_fndecl_35619_fields ext4_update_final_de fndecl 2-3 35619 &generic_perform_write_fndecl_35619_fields nohasharray
++count_fm10k_ring_35619_fields count fm10k_ring 0 35619 &ext4_update_final_de_fndecl_35619_fields
++ips_scmd_buf_read_fndecl_35622_fields ips_scmd_buf_read fndecl 3 35622 NULL
++netxen_process_lro_fndecl_35630_fields netxen_process_lro fndecl 5-4 35630 NULL
++smsc47b397_device_add_fndecl_35649_fields smsc47b397_device_add fndecl 1 35649 NULL
++prism_build_supp_rates_fndecl_35650_fields prism_build_supp_rates fndecl 0 35650 NULL
++viafb_second_xres_vardecl_35651_fields viafb_second_xres vardecl 0 35651 NULL
++urb_size_uvc_streaming_35654_fields urb_size uvc_streaming 0 35654 NULL
++urb_enqueue_hc_driver_35656_fields urb_enqueue hc_driver 0 35656 NULL
++xfs_alloc_read_agfl_fndecl_35660_fields xfs_alloc_read_agfl fndecl 3-0 35660 NULL
++raid10_sync_request_fndecl_35663_fields raid10_sync_request fndecl 2 35663 NULL nohasharray
++base_bus_num_i2c_mux_pinctrl_platform_data_35663_fields base_bus_num i2c_mux_pinctrl_platform_data 0 35663 &raid10_sync_request_fndecl_35663_fields
++numdevs_ore_components_35671_fields numdevs ore_components 0 35671 NULL
++ncntrs_qib_chip_specific_35675_fields ncntrs qib_chip_specific 0 35675 NULL
++rate_clk_core_35677_fields rate clk_core 0 35677 NULL
++read_into_fndecl_35681_fields read_into fndecl 2 35681 NULL nohasharray
++size_xpnet_message_35681_fields size xpnet_message 0 35681 &read_into_fndecl_35681_fields
++id_mfd_cell_35684_fields id mfd_cell 0 35684 NULL
++do_io_nd_blk_region_35687_fields do_io nd_blk_region 0 35687 NULL
++affs_extent_file_ofs_fndecl_35690_fields affs_extent_file_ofs fndecl 2 35690 NULL
++drbg_ctr_generate_fndecl_35694_fields drbg_ctr_generate fndecl 3 35694 NULL
++init_hal_msg_fndecl_35697_fields init_hal_msg fndecl 3 35697 NULL
++irq_domain_alloc_descs_fndecl_35699_fields irq_domain_alloc_descs fndecl 0 35699 NULL
++wil_pmc_alloc_fndecl_35702_fields wil_pmc_alloc fndecl 3 35702 NULL
++gfs2_write_alloc_required_fndecl_35708_fields gfs2_write_alloc_required fndecl 3-2 35708 NULL
++srp_post_send_fndecl_35713_fields srp_post_send fndecl 3 35713 NULL
++remote_nentries_xpc_channel_35714_fields remote_nentries xpc_channel 0 35714 NULL
++credits_csio_q_35715_fields credits csio_q 0 35715 NULL
++RequestCredit_mpt3sas_facts_35718_fields RequestCredit mpt3sas_facts 0 35718 NULL nohasharray
++bio_add_page_fndecl_35718_fields bio_add_page fndecl 3-4-0 35718 &RequestCredit_mpt3sas_facts_35718_fields
++fdt_translate_address_fndecl_35726_fields fdt_translate_address fndecl 0 35726 NULL nohasharray
++add_port_fndecl_35726_fields add_port fndecl 2 35726 &fdt_translate_address_fndecl_35726_fields
++last_xfer_len_ide_cmd_35728_fields last_xfer_len ide_cmd 0 35728 NULL
++mwifiex_append_rate_tlv_fndecl_35735_fields mwifiex_append_rate_tlv fndecl 0 35735 NULL
++priv_size_data_queue_35740_fields priv_size data_queue 0 35740 NULL
++offset_ext4_io_end_35743_fields offset ext4_io_end 0 35743 NULL
++ggtt_probe_common_fndecl_35744_fields ggtt_probe_common fndecl 2 35744 NULL nohasharray
++qib_uc_rcv_fndecl_35744_fields qib_uc_rcv fndecl 5 35744 &ggtt_probe_common_fndecl_35744_fields
++alauda_write_data_fndecl_35748_fields alauda_write_data fndecl 2 35748 NULL
++goodix_i2c_read_fndecl_35755_fields goodix_i2c_read fndecl 4 35755 NULL nohasharray
++c4_add_card_fndecl_35755_fields c4_add_card fndecl 3 35755 &goodix_i2c_read_fndecl_35755_fields
++left_qxl_urect_35760_fields left qxl_urect 0 35760 NULL
++rx_buf_seg_size_qede_rx_queue_35761_fields rx_buf_seg_size qede_rx_queue 0 35761 NULL
++scsi_sg_tablesize_iser_conn_35762_fields scsi_sg_tablesize iser_conn 0 35762 NULL
++fh_epd_frame_35764_fields fh epd_frame 0 35764 NULL
++channels_snd_usb_substream_35767_fields channels snd_usb_substream 0 35767 NULL
++virtscsi_compute_resid_fndecl_35772_fields virtscsi_compute_resid fndecl 2 35772 NULL
++data0_sisusb_command_35773_fields data0 sisusb_command 0 35773 NULL
++mem_vardecl_matroxfb_base_c_35780_fields mem vardecl_matroxfb_base.c 0 35780 NULL
++uv_systab_efi_35786_fields uv_systab efi 0 35786 NULL
++encap_size_brnf_frag_data_35787_fields encap_size brnf_frag_data 0 35787 NULL
++alloc_mon_bin_get_35804_fields alloc mon_bin_get 0 35804 NULL
++num_rx_queues_iwl_trans_35809_fields num_rx_queues iwl_trans 0 35809 NULL
++send_ctrl_pipe_us_data_35813_fields send_ctrl_pipe us_data 0 35813 NULL
++xefi_startblock_xfs_extent_free_item_35817_fields xefi_startblock xfs_extent_free_item 0 35817 NULL nohasharray
++number_of_controls_controlcache_6205_35817_fields number_of_controls controlcache_6205 0 35817 &xefi_startblock_xfs_extent_free_item_35817_fields
++rbio_orig_end_io_fndecl_35820_fields rbio_orig_end_io fndecl 2 35820 NULL
++headroom_caifsock_35821_fields headroom caifsock 0 35821 NULL
++leaf_cut_from_buffer_fndecl_35824_fields leaf_cut_from_buffer fndecl 4 35824 NULL
++rx_buffer_padding_efx_nic_type_35825_fields rx_buffer_padding efx_nic_type 0 35825 NULL
++VFP_kyrofb_info_35826_fields VFP kyrofb_info 0 35826 NULL
++env_end_mm_struct_35831_fields env_end mm_struct 0 35831 NULL nohasharray
++twl_load_sgl_fndecl_35831_fields twl_load_sgl fndecl 5 35831 &env_end_mm_struct_35831_fields nohasharray
++num_pmkids_ndis_80211_capability_35831_fields num_pmkids ndis_80211_capability 0 35831 &twl_load_sgl_fndecl_35831_fields
++srq_size_srpt_device_35833_fields srq_size srpt_device 0 35833 NULL
++request_sz_MPT3SAS_ADAPTER_35834_fields request_sz MPT3SAS_ADAPTER 0 35834 NULL
++l_iclog_size_xlog_35849_fields l_iclog_size xlog 0 35849 NULL
++snd_pcm_format_physical_width_fndecl_35858_fields snd_pcm_format_physical_width fndecl 0 35858 NULL
++ipw_write_packet_sent_callback_fndecl_35859_fields ipw_write_packet_sent_callback fndecl 2 35859 NULL
++check_acl_fndecl_35867_fields check_acl fndecl 0 35867 NULL
++usb_stor_bulk_transfer_sglist_fndecl_35871_fields usb_stor_bulk_transfer_sglist fndecl 5-2-4 35871 NULL
++pcol_add_page_fndecl_35872_fields pcol_add_page fndecl 3 35872 NULL nohasharray
++processed_length_mbo_35872_fields processed_length mbo 0 35872 &pcol_add_page_fndecl_35872_fields
++snd_hdsp_midi_output_possible_fndecl_35873_fields snd_hdsp_midi_output_possible fndecl 0 35873 NULL
++shared_out_nid_ca0132_spec_35876_fields shared_out_nid ca0132_spec 0 35876 NULL
++st_sensors_spi_read_fndecl_35890_fields st_sensors_spi_read fndecl 4 35890 NULL
++pos_in_f2fs_move_range_35897_fields pos_in f2fs_move_range 0 35897 NULL
++lpuart_dma_tx_fndecl_35902_fields lpuart_dma_tx fndecl 2 35902 NULL nohasharray
++nft_data_dump_fndecl_35902_fields nft_data_dump fndecl 5 35902 &lpuart_dma_tx_fndecl_35902_fields
++fe_group_ext4_free_extent_35905_fields fe_group ext4_free_extent 0 35905 NULL nohasharray
++max_sq_desc_sz_mlx4_caps_35905_fields max_sq_desc_sz mlx4_caps 0 35905 &fe_group_ext4_free_extent_35905_fields
++lirc_base_dev_vardecl_lirc_dev_c_35907_fields lirc_base_dev vardecl_lirc_dev.c 0 35907 NULL
++right_vardecl_matroxfb_base_c_35916_fields right vardecl_matroxfb_base.c 0 35916 NULL
++softback_end_vardecl_fbcon_c_35923_fields softback_end vardecl_fbcon.c 0 35923 NULL
++n_algs_wmfw_adsp1_id_hdr_35926_fields n_algs wmfw_adsp1_id_hdr 0 35926 NULL
++ieee802154_hdr_minlen_fndecl_35927_fields ieee802154_hdr_minlen fndecl 0 35927 NULL
++bytes_written_cq_fcp_rq_desc_35931_fields bytes_written cq_fcp_rq_desc 0 35931 NULL
++__dax_dev_pmd_fault_fndecl_35932_fields __dax_dev_pmd_fault fndecl 3 35932 NULL
++dma_buf_size_ddb_input_35933_fields dma_buf_size ddb_input 0 35933 NULL nohasharray
++length_isp1362_ep_35933_fields length isp1362_ep 0 35933 &dma_buf_size_ddb_input_35933_fields
++disk_stack_limits_fndecl_35936_fields disk_stack_limits fndecl 3 35936 NULL
++___alloc_bootmem_nopanic_fndecl_35945_fields ___alloc_bootmem_nopanic fndecl 2-3-4 35945 NULL
++isl1208_i2c_read_regs_fndecl_35952_fields isl1208_i2c_read_regs fndecl 4 35952 NULL
++nx_fw_cmd_set_mtu_fndecl_35954_fields nx_fw_cmd_set_mtu fndecl 2 35954 NULL
++fat_uni_to_x8_fndecl_35959_fields fat_uni_to_x8 fndecl 0 35959 NULL
++rmi_register_desc_calc_size_fndecl_35961_fields rmi_register_desc_calc_size fndecl 0 35961 NULL
++s_root_block_affs_sb_info_35962_fields s_root_block affs_sb_info 0 35962 NULL
++num_entries_compat_ip6t_replace_35966_fields num_entries compat_ip6t_replace 0 35966 NULL
++flows_tc_sfq_qopt_35973_fields flows tc_sfq_qopt 0 35973 NULL
++max_df_size_ipq_35974_fields max_df_size ipq 0 35974 NULL nohasharray
++pf_num_bnx2x_35974_fields pf_num bnx2x 0 35974 &max_df_size_ipq_35974_fields
++bus_myri10ge_rx_done_35977_fields bus myri10ge_rx_done 0 35977 NULL
++pn_sendmsg_fndecl_35979_fields pn_sendmsg fndecl 3 35979 NULL
++codeword_size_jedec_ecc_info_35980_fields codeword_size jedec_ecc_info 0 35980 NULL
++num_dacs_hda_multi_out_35981_fields num_dacs hda_multi_out 0 35981 NULL
++flags_fscrypt_context_35983_fields flags fscrypt_context 0 35983 NULL
++gpiod_to_irq_fndecl_35989_fields gpiod_to_irq fndecl 0 35989 NULL
++if_spi_prog_main_firmware_check_len_fndecl_35990_fields if_spi_prog_main_firmware_check_len fndecl 0 35990 NULL
++perf_output_skip_fndecl_35994_fields perf_output_skip fndecl 2 35994 NULL
++mss_cache_tcp_sock_35995_fields mss_cache tcp_sock 0 35995 NULL
++daddr_fsl_edma_hw_tcd_35996_fields daddr fsl_edma_hw_tcd 0 35996 NULL nohasharray
++address_acpi_nfit_system_address_35996_fields address acpi_nfit_system_address 0 35996 &daddr_fsl_edma_hw_tcd_35996_fields
++fuse_fill_write_pages_fndecl_36001_fields fuse_fill_write_pages fndecl 0-4 36001 NULL nohasharray
++poll_vardecl_hfcpci_c_36001_fields poll vardecl_hfcpci.c 0 36001 &fuse_fill_write_pages_fndecl_36001_fields
++ntb_transport_max_size_fndecl_36009_fields ntb_transport_max_size fndecl 0 36009 NULL
++__nfs4_proc_set_acl_fndecl_36018_fields __nfs4_proc_set_acl fndecl 3 36018 NULL
++setup_efi_info_memmap_fndecl_36029_fields setup_efi_info_memmap fndecl 4-3-2 36029 NULL
++mpdu_len_iwl_rx_mpdu_desc_36030_fields mpdu_len iwl_rx_mpdu_desc 0 36030 NULL
++NumEraseUnits_NFTLMediaHeader_36036_fields NumEraseUnits NFTLMediaHeader 0 36036 NULL
++insert_bio_sectors_search_36037_fields insert_bio_sectors search 0 36037 NULL
++update_ind_extent_range_fndecl_36049_fields update_ind_extent_range fndecl 3 36049 NULL
++rx_status_len_bcm_rsb_36064_fields rx_status_len bcm_rsb 0 36064 NULL
++piobcnt2k_qib_devdata_36065_fields piobcnt2k qib_devdata 0 36065 NULL
++xfrm_compile_policy_fndecl_36070_fields xfrm_compile_policy fndecl 4 36070 NULL
++usb_stor_control_msg_fndecl_36073_fields usb_stor_control_msg fndecl 8-2 36073 NULL
++wa_populate_buf_in_urb_fndecl_36077_fields wa_populate_buf_in_urb fndecl 4-3 36077 NULL
++blocksize_alauda_media_info_36080_fields blocksize alauda_media_info 0 36080 NULL
++xfs_extent_busy_insert_fndecl_36087_fields xfs_extent_busy_insert fndecl 3-4-2 36087 NULL
++smq_create_fndecl_36088_fields smq_create fndecl 1 36088 NULL
++wil_write_file_ssid_fndecl_36097_fields wil_write_file_ssid fndecl 3 36097 NULL
++__free_pages_boot_core_fndecl_36098_fields __free_pages_boot_core fndecl 2 36098 NULL
++nr_requests_request_queue_36117_fields nr_requests request_queue 0 36117 NULL
++xfs_trans_read_buf_map_fndecl_36121_fields xfs_trans_read_buf_map fndecl 0 36121 NULL
++dictionary_size_disk_comp_opts_36125_fields dictionary_size disk_comp_opts 0 36125 NULL
++x25_sendmsg_fndecl_36140_fields x25_sendmsg fndecl 3 36140 NULL
++f2fs_fiemap_fndecl_36141_fields f2fs_fiemap fndecl 3-4 36141 NULL
++lirc_buffer_init_fndecl_36145_fields lirc_buffer_init fndecl 2 36145 NULL
++spi_xcomm_sync_config_fndecl_36146_fields spi_xcomm_sync_config fndecl 0 36146 NULL
++create_empty_buffers_fndecl_36152_fields create_empty_buffers fndecl 2 36152 NULL
++ad9523_reg_access_fndecl_36157_fields ad9523_reg_access fndecl 2 36157 NULL
++ieee80211_send_probe_req_fndecl_36159_fields ieee80211_send_probe_req fndecl 7-5 36159 NULL
++next_nilfs_segsum_info_36161_fields next nilfs_segsum_info 0 36161 NULL
++clone_sources_count_btrfs_ioctl_send_args_36165_fields clone_sources_count btrfs_ioctl_send_args 0 36165 NULL
++vm_mmap_fndecl_36168_fields vm_mmap fndecl 3-0 36168 NULL
++member_cnt_tipc_mon_domain_36177_fields member_cnt tipc_mon_domain 0 36177 NULL
++length_octeon_droq_info_36178_fields length octeon_droq_info 0 36178 NULL
++nr_ion_platform_data_36179_fields nr ion_platform_data 0 36179 NULL
++len_ib_ucm_mra_36185_fields len ib_ucm_mra 0 36185 NULL
++flash_size_jffs2_sb_info_36187_fields flash_size jffs2_sb_info 0 36187 NULL
++prealloc_buffer_size_snd_dmaengine_pcm_config_36192_fields prealloc_buffer_size snd_dmaengine_pcm_config 0 36192 NULL
++objlayout_read_done_fndecl_36193_fields objlayout_read_done fndecl 2 36193 NULL
++range_min_regmap_range_36196_fields range_min regmap_range 0 36196 NULL
++n_cap_bufs_via_camera_36198_fields n_cap_bufs via_camera 0 36198 NULL
++ubifs_write_end_fndecl_36202_fields ubifs_write_end fndecl 4-3 36202 NULL
++hmask_xfrm_policy_hash_36203_fields hmask xfrm_policy_hash 0 36203 NULL
++f2fs_zero_range_fndecl_36204_fields f2fs_zero_range fndecl 3-2 36204 NULL
++blksz_mmc_ioc_cmd_36207_fields blksz mmc_ioc_cmd 0 36207 NULL
++nfs_try_to_update_request_fndecl_36213_fields nfs_try_to_update_request fndecl 3-4 36213 NULL nohasharray
++mpwqe_stride_sz_mlx5e_rq_36213_fields mpwqe_stride_sz mlx5e_rq 0 36213 &nfs_try_to_update_request_fndecl_36213_fields
++v4l2_ctrl_g_ctrl_fndecl_36216_fields v4l2_ctrl_g_ctrl fndecl 0 36216 NULL
++bnx2i_send_nl_mesg_fndecl_36218_fields bnx2i_send_nl_mesg fndecl 4 36218 NULL
++alloc_xen_mmio_fndecl_36220_fields alloc_xen_mmio fndecl 0-1 36220 NULL
++MaxDevHandle_mpt3sas_facts_36227_fields MaxDevHandle mpt3sas_facts 0 36227 NULL nohasharray
++nid_node_footer_36227_fields nid node_footer 0 36227 &MaxDevHandle_mpt3sas_facts_36227_fields
++reserve_space_fndecl_36229_fields reserve_space fndecl 2 36229 NULL nohasharray
++next_free_nid_f2fs_checkpoint_36229_fields next_free_nid f2fs_checkpoint 0 36229 &reserve_space_fndecl_36229_fields
++add_async_extent_fndecl_36239_fields add_async_extent fndecl 3-2 36239 NULL
++data_queues_rt2x00_dev_36241_fields data_queues rt2x00_dev 0 36241 NULL nohasharray
++surfaceram_base_qxl_device_36241_fields surfaceram_base qxl_device 0 36241 &data_queues_rt2x00_dev_36241_fields
++fpage_offs_genwqe_sgl_36247_fields fpage_offs genwqe_sgl 0 36247 NULL
++calc_buffer_ahash_atfm_fndecl_36250_fields calc_buffer_ahash_atfm fndecl 2 36250 NULL
++xfs_imap_fndecl_36254_fields xfs_imap fndecl 3 36254 NULL
++dma_nv_skb_map_36260_fields dma nv_skb_map 0 36260 NULL
++size_sge_txq_36261_fields size sge_txq 0 36261 NULL
++msb_mark_bad_fndecl_36268_fields msb_mark_bad fndecl 2 36268 NULL
++cydata_ofsl_cyttsp4_sysinfo_data_36269_fields cydata_ofsl cyttsp4_sysinfo_data 0 36269 NULL
++num_uf_bufs_bfa_iocfc_fwcfg_s_36271_fields num_uf_bufs bfa_iocfc_fwcfg_s 0 36271 NULL
++s_clusters_per_group_ext4_sb_info_36278_fields s_clusters_per_group ext4_sb_info 0 36278 NULL
++_dump_buf_dif_order_vardecl_36281_fields _dump_buf_dif_order vardecl 0 36281 NULL
++hci_check_pending_name_fndecl_36282_fields hci_check_pending_name fndecl 5 36282 NULL
++len_ethtool_tunable_36288_fields len ethtool_tunable 0 36288 NULL nohasharray
++calc_sectors_fndecl_36288_fields calc_sectors fndecl 2 36288 &len_ethtool_tunable_36288_fields
++__btrfs_lookup_bio_sums_fndecl_36290_fields __btrfs_lookup_bio_sums fndecl 4 36290 NULL
++iscsi_tcp_recv_skb_fndecl_36295_fields iscsi_tcp_recv_skb fndecl 3-0 36295 NULL
++fat_dump_len_be_adapter_36296_fields fat_dump_len be_adapter 0 36296 NULL
++mru_ovs_skb_cb_36300_fields mru ovs_skb_cb 0 36300 NULL
++command_size_drm_vmw_execbuf_arg_36305_fields command_size drm_vmw_execbuf_arg 0 36305 NULL
++size_kernfs_elem_attr_36307_fields size kernfs_elem_attr 0 36307 NULL
++snd_dma_alloc_pages_fndecl_36308_fields snd_dma_alloc_pages fndecl 3 36308 NULL nohasharray
++len_etd_priv_36308_fields len etd_priv 0 36308 &snd_dma_alloc_pages_fndecl_36308_fields
++max_transfer_snd_usb_midi_out_endpoint_36311_fields max_transfer snd_usb_midi_out_endpoint 0 36311 NULL
++chunk_size_mdp_superblock_s_36313_fields chunk_size mdp_superblock_s 0 36313 NULL
++n_descsz_elf64_note_36314_fields n_descsz elf64_note 0 36314 NULL
++dpdData_size_wsm_configuration_36315_fields dpdData_size wsm_configuration 0 36315 NULL
++acpi_tb_parse_root_table_fndecl_36316_fields acpi_tb_parse_root_table fndecl 1 36316 NULL
++fsbno_xfs_alloc_arg_36318_fields fsbno xfs_alloc_arg 0 36318 NULL
++__nla_reserve_64bit_fndecl_36320_fields __nla_reserve_64bit fndecl 3 36320 NULL
++file_size_squashfs_lreg_inode_36323_fields file_size squashfs_lreg_inode 0 36323 NULL
++xfs_symlink_blocks_fndecl_36326_fields xfs_symlink_blocks fndecl 0-2 36326 NULL
++do_verify_xattr_datum_fndecl_36328_fields do_verify_xattr_datum fndecl 0 36328 NULL
++hidp_send_frame_fndecl_36338_fields hidp_send_frame fndecl 3 36338 NULL
++digest_encode_fndecl_36340_fields digest_encode fndecl 0 36340 NULL
++rds_tcp_data_recv_fndecl_36343_fields rds_tcp_data_recv fndecl 4-3 36343 NULL nohasharray
++size_rw_module_layout_36343_fields size_rw module_layout 0 36343 &rds_tcp_data_recv_fndecl_36343_fields
++osd_req_write_kern_fndecl_36349_fields osd_req_write_kern fndecl 5 36349 NULL
++inode_blocks_efs_sb_info_36351_fields inode_blocks efs_sb_info 0 36351 NULL
++ncommunities_intel_pinctrl_36354_fields ncommunities intel_pinctrl 0 36354 NULL
++ipxrtr_route_packet_fndecl_36359_fields ipxrtr_route_packet fndecl 4 36359 NULL
++rx_ring_size_adm8211_priv_36391_fields rx_ring_size adm8211_priv 0 36391 NULL
++sdebug_max_queue_vardecl_scsi_debug_c_36393_fields sdebug_max_queue vardecl_scsi_debug.c 0 36393 NULL
++mtu_l2cap_le_conn_rsp_36399_fields mtu l2cap_le_conn_rsp 0 36399 NULL nohasharray
++max_rxsz_ulp_iscsi_info_36399_fields max_rxsz ulp_iscsi_info 0 36399 &mtu_l2cap_le_conn_rsp_36399_fields
++iser_calc_scsi_params_fndecl_36403_fields iser_calc_scsi_params fndecl 2 36403 NULL
++nl80211_send_disconnected_fndecl_36411_fields nl80211_send_disconnected fndecl 5 36411 NULL
++iter_file_splice_write_fndecl_36415_fields iter_file_splice_write fndecl 4 36415 NULL
++data_len_hfa384x_rx_frame_36417_fields data_len hfa384x_rx_frame 0 36417 NULL
++altera_set_ir_pre_fndecl_36420_fields altera_set_ir_pre fndecl 2 36420 NULL
++create_xattr_fndecl_36425_fields create_xattr fndecl 5 36425 NULL
++essid_len_ipw2100_priv_36426_fields essid_len ipw2100_priv 0 36426 NULL
++mt2266_writeregs_fndecl_36430_fields mt2266_writeregs fndecl 3 36430 NULL
++reserved_page_order_st_buffer_36445_fields reserved_page_order st_buffer 0 36445 NULL
++size_packet_info_36454_fields size packet_info 0 36454 NULL
++hSync_width_panel_info_36455_fields hSync_width panel_info 0 36455 NULL
++ov511_i2c_r_fndecl_36459_fields ov511_i2c_r fndecl 0 36459 NULL
++st95hf_spi_recv_response_fndecl_36464_fields st95hf_spi_recv_response fndecl 0 36464 NULL
++offset_drm_i915_gem_exec_object2_36466_fields offset drm_i915_gem_exec_object2 0 36466 NULL
++rlim_max_rlimit_36476_fields rlim_max rlimit 0 36476 NULL nohasharray
++v9fs_xattr_get_fndecl_36476_fields v9fs_xattr_get fndecl 4 36476 &rlim_max_rlimit_36476_fields
++portnum_lvs_rh_36480_fields portnum lvs_rh 0 36480 NULL
++rx_len_yam_port_36481_fields rx_len yam_port 0 36481 NULL
++fb_show_logo_line_fndecl_36485_fields fb_show_logo_line fndecl 4 36485 NULL nohasharray
++t_task_lba_se_cmd_36485_fields t_task_lba se_cmd 0 36485 &fb_show_logo_line_fndecl_36485_fields nohasharray
++i2400m_zrealloc_2x_fndecl_36485_fields i2400m_zrealloc_2x fndecl 3 36485 &t_task_lba_se_cmd_36485_fields
++do_compat_readv_fndecl_36486_fields do_compat_readv fndecl 3 36486 NULL
++read_bufsize_carl9170_debugfs_fops_36488_fields read_bufsize carl9170_debugfs_fops 0 36488 NULL
++tipc_msg_make_bundle_fndecl_36497_fields tipc_msg_make_bundle fndecl 3 36497 NULL
++queue_rx_frame_fndecl_36501_fields queue_rx_frame fndecl 2 36501 NULL
++start_nid_hdac_device_36504_fields start_nid hdac_device 0 36504 NULL
++create_pinned_em_fndecl_36508_fields create_pinned_em fndecl 3-2-7-6-5 36508 NULL
++skge_change_mtu_fndecl_36510_fields skge_change_mtu fndecl 2 36510 NULL
++byte_count_vmtransfer_page_range_36511_fields byte_count vmtransfer_page_range 0 36511 NULL
++__i2c_write_fndecl_36516_fields __i2c_write fndecl 6-3 36516 NULL
++hpfs_map_4sectors_fndecl_36523_fields hpfs_map_4sectors fndecl 2 36523 NULL
++igu_sb_cnt_bnx2x_36525_fields igu_sb_cnt bnx2x 0 36525 NULL
++ue_num_asd_bios_chim_struct_36526_fields ue_num asd_bios_chim_struct 0 36526 NULL
++ftdi_elan_edset_output_fndecl_36530_fields ftdi_elan_edset_output fndecl 0 36530 NULL
++sk_tcplen_svc_sock_36531_fields sk_tcplen svc_sock 0 36531 NULL
++acpi_os_read_memory_fndecl_36537_fields acpi_os_read_memory fndecl 3-1 36537 NULL
++actual_resp_len_be_cmd_resp_hdr_36543_fields actual_resp_len be_cmd_resp_hdr 0 36543 NULL
++pi_read_regr_fndecl_36548_fields pi_read_regr fndecl 0 36548 NULL
++net2272_write_packet_fndecl_36550_fields net2272_write_packet fndecl 4 36550 NULL
++ocfs2_fallocate_fndecl_36555_fields ocfs2_fallocate fndecl 3-4 36555 NULL nohasharray
++capture_chips_pcxhr_mgr_36555_fields capture_chips pcxhr_mgr 0 36555 &ocfs2_fallocate_fndecl_36555_fields
++fb_try_mode_fndecl_36560_fields fb_try_mode fndecl 4 36560 NULL
++fuse_file_compat_ioctl_fndecl_36564_fields fuse_file_compat_ioctl fndecl 2 36564 NULL
++by_ceph_frag_tree_split_36567_fields by ceph_frag_tree_split 0 36567 NULL
++sc_sq_depth_svcxprt_rdma_36568_fields sc_sq_depth svcxprt_rdma 0 36568 NULL
++vlan_tag_eth_fast_path_rx_cqe_36569_fields vlan_tag eth_fast_path_rx_cqe 0 36569 NULL
++frag_thresh_orinoco_private_36570_fields frag_thresh orinoco_private 0 36570 NULL
++page_count_agp_memory_36571_fields page_count agp_memory 0 36571 NULL
++__register_chrdev_fndecl_36572_fields __register_chrdev fndecl 0-3-2-1 36572 NULL
++ceph_msgpool_get_fndecl_36577_fields ceph_msgpool_get fndecl 2 36577 NULL
++ext2_xattr_trusted_set_fndecl_36580_fields ext2_xattr_trusted_set fndecl 6 36580 NULL
++num_shared_regs_intel_uncore_type_36581_fields num_shared_regs intel_uncore_type 0 36581 NULL
++rx_ring_size_pcnet32_private_36586_fields rx_ring_size pcnet32_private 0 36586 NULL nohasharray
++vmw_user_dmabuf_alloc_fndecl_36586_fields vmw_user_dmabuf_alloc fndecl 3 36586 &rx_ring_size_pcnet32_private_36586_fields
++bgrt_image_size_vardecl_36594_fields bgrt_image_size vardecl 0 36594 NULL
++UnitSizeFactor_NFTLMediaHeader_36597_fields UnitSizeFactor NFTLMediaHeader 0 36597 NULL nohasharray
++num_max_snd_ratden_36597_fields num_max snd_ratden 0 36597 &UnitSizeFactor_NFTLMediaHeader_36597_fields nohasharray
++mcp23s08_read_regs_fndecl_36597_fields mcp23s08_read_regs fndecl 4 36597 &num_max_snd_ratden_36597_fields
++update_block_group_fndecl_36600_fields update_block_group fndecl 4-3 36600 NULL
++reply_len_sg_header_36605_fields reply_len sg_header 0 36605 NULL nohasharray
++xfs_dir2_sf_addname_hard_fndecl_36605_fields xfs_dir2_sf_addname_hard fndecl 3 36605 &reply_len_sg_header_36605_fields
++drm_mm_insert_node_generic_fndecl_36608_fields drm_mm_insert_node_generic fndecl 3 36608 NULL
++f_pos_file_36619_fields f_pos file 0 36619 NULL
++nbd_size_set_fndecl_36620_fields nbd_size_set fndecl 3-4 36620 NULL
++gamma_size_drm_mode_crtc_lut_36622_fields gamma_size drm_mode_crtc_lut 0 36622 NULL
++raw_serial_size_x509_certificate_36629_fields raw_serial_size x509_certificate 0 36629 NULL
++block_count_mspro_sys_info_36630_fields block_count mspro_sys_info 0 36630 NULL
++acpi_aml_read_user_fndecl_36632_fields acpi_aml_read_user fndecl 2 36632 NULL
++i915_gem_execbuffer_parse_fndecl_36633_fields i915_gem_execbuffer_parse fndecl 6 36633 NULL nohasharray
++opcfg_ofsh_cyttsp4_sysinfo_data_36633_fields opcfg_ofsh cyttsp4_sysinfo_data 0 36633 &i915_gem_execbuffer_parse_fndecl_36633_fields
++read_super_block_fndecl_36638_fields read_super_block fndecl 2 36638 NULL
++context_id_iscsi_kwqe_conn_destroy_36653_fields context_id iscsi_kwqe_conn_destroy 0 36653 NULL
++block_write_end_fndecl_36656_fields block_write_end fndecl 0-5 36656 NULL
++shmem_alloc_page_fndecl_36659_fields shmem_alloc_page fndecl 3 36659 NULL
++dac_channels_mixer_oxygen_model_36662_fields dac_channels_mixer oxygen_model 0 36662 NULL
++regmap_raw_write_fndecl_36664_fields regmap_raw_write fndecl 0 36664 NULL
++roffset_scifioctl_copy_36667_fields roffset scifioctl_copy 0 36667 NULL
++i_file_acl_lo_ext4_inode_36684_fields i_file_acl_lo ext4_inode 0 36684 NULL
++size_drm_map_36685_fields size drm_map 0 36685 NULL
++size_drm_agp_buffer_36687_fields size drm_agp_buffer 0 36687 NULL
++nnode_sz_ubifs_info_36688_fields nnode_sz ubifs_info 0 36688 NULL nohasharray
++esas2r_max_sectors_vardecl_36688_fields esas2r_max_sectors vardecl 0 36688 &nnode_sz_ubifs_info_36688_fields nohasharray
++out_kvec_bytes_ceph_connection_36688_fields out_kvec_bytes ceph_connection 0 36688 &esas2r_max_sectors_vardecl_36688_fields
++rx_buffer_len_atl1c_adapter_36691_fields rx_buffer_len atl1c_adapter 0 36691 NULL
++hga_vram_len_vardecl_hgafb_c_36700_fields hga_vram_len vardecl_hgafb.c 0 36700 NULL
++map_szh_cyttsp4_sysinfo_data_36711_fields map_szh cyttsp4_sysinfo_data 0 36711 NULL
++dev_num_tpm_chip_36718_fields dev_num tpm_chip 0 36718 NULL
++reply_usif_notify_36722_fields reply usif_notify 0 36722 NULL
++alloc_blocks_hfsplus_inode_info_36725_fields alloc_blocks hfsplus_inode_info 0 36725 NULL
++common_buffer_phys_smscore_device_t_36739_fields common_buffer_phys smscore_device_t 0 36739 NULL
++get_meta_page_fndecl_36742_fields get_meta_page fndecl 2 36742 NULL
++early_reserve_e820_fndecl_36744_fields early_reserve_e820 fndecl 2-1 36744 NULL
++s2255_got_frame_fndecl_36746_fields s2255_got_frame fndecl 2 36746 NULL
++shmem_xattr_handler_set_fndecl_36751_fields shmem_xattr_handler_set fndecl 6 36751 NULL
++saved_raid_disk_md_rdev_36752_fields saved_raid_disk md_rdev 0 36752 NULL
++ath6kl_wmi_add_krk_cmd_fndecl_36763_fields ath6kl_wmi_add_krk_cmd fndecl 2 36763 NULL
++last_index_zap_details_36766_fields last_index zap_details 0 36766 NULL
++ocfs2_rm_xattr_cluster_fndecl_36767_fields ocfs2_rm_xattr_cluster fndecl 5-4-3 36767 NULL
++ocfs2_make_clusters_writable_fndecl_36769_fields ocfs2_make_clusters_writable fndecl 5-4-3 36769 NULL
++usb_serial_generic_write_fndecl_36788_fields usb_serial_generic_write fndecl 4 36788 NULL
++mmio_base_controller_36793_fields mmio_base controller 0 36793 NULL
++rx_count_cooked_sixpack_36794_fields rx_count_cooked sixpack 0 36794 NULL
++pad_bytes_regmap_format_36795_fields pad_bytes regmap_format 0 36795 NULL
++efi_runtime_map_setup_fndecl_36796_fields efi_runtime_map_setup fndecl 3 36796 NULL
++sector_stripe_head_36797_fields sector stripe_head 0 36797 NULL nohasharray
++copy_io_fndecl_36797_fields copy_io fndecl 3 36797 &sector_stripe_head_36797_fields
++v4l_bufsize_vardecl_36803_fields v4l_bufsize vardecl 0 36803 NULL
++idetape_chrdev_write_fndecl_36811_fields idetape_chrdev_write fndecl 3 36811 NULL
++mthca_reg_user_mr_fndecl_36815_fields mthca_reg_user_mr fndecl 2-3 36815 NULL
++size_drm_armada_gem_pwrite_36816_fields size drm_armada_gem_pwrite 0 36816 NULL
++mthca_setup_cmd_doorbells_fndecl_36817_fields mthca_setup_cmd_doorbells fndecl 2 36817 NULL
++card_type_nozomi_36822_fields card_type nozomi 0 36822 NULL
++ir_pre_altera_jtag_36823_fields ir_pre altera_jtag 0 36823 NULL
++orig_nents_sg_table_36824_fields orig_nents sg_table 0 36824 NULL
++bc_maxpayload_rpc_xprt_ops_36830_fields bc_maxpayload rpc_xprt_ops 0 36830 NULL
++acpi_initialize_tables_fndecl_36832_fields acpi_initialize_tables fndecl 2 36832 NULL
++rx_pg_ring_size_bnx2_36835_fields rx_pg_ring_size bnx2 0 36835 NULL
++total_bytes_btrfs_super_block_36845_fields total_bytes btrfs_super_block 0 36845 NULL
++hfsplus_attr_build_key_fndecl_36846_fields hfsplus_attr_build_key fndecl 0 36846 NULL
++first_user_ctxt_hfi1_devdata_36860_fields first_user_ctxt hfi1_devdata 0 36860 NULL nohasharray
++raid5_compute_sector_fndecl_36860_fields raid5_compute_sector fndecl 0-2 36860 &first_user_ctxt_hfi1_devdata_36860_fields
++xfs_alloc_get_rec_fndecl_36869_fields xfs_alloc_get_rec fndecl 0 36869 NULL nohasharray
++acpi_register_gsi_pic_fndecl_36869_fields acpi_register_gsi_pic fndecl 0-2 36869 &xfs_alloc_get_rec_fndecl_36869_fields
++vtotal_drm_display_mode_36870_fields vtotal drm_display_mode 0 36870 NULL
++txd_size_bdx_priv_36873_fields txd_size bdx_priv 0 36873 NULL
++tipc_sendmsg_fndecl_36882_fields tipc_sendmsg fndecl 3 36882 NULL
++vb2_dma_sg_get_userptr_fndecl_36888_fields vb2_dma_sg_get_userptr fndecl 2-3 36888 NULL
++size_cxgb4_range_36893_fields size cxgb4_range 0 36893 NULL
++sge_congestion_control_sge_params_36896_fields sge_congestion_control sge_params 0 36896 NULL
++limit_ixgbe_ring_feature_36904_fields limit ixgbe_ring_feature 0 36904 NULL
++actual_usb_request_36913_fields actual usb_request 0 36913 NULL
++udf_next_aext_fndecl_36926_fields udf_next_aext fndecl 0 36926 NULL
++ocfs2_make_right_split_rec_fndecl_36929_fields ocfs2_make_right_split_rec fndecl 3 36929 NULL nohasharray
++len_xfs_name_36929_fields len xfs_name 0 36929 &ocfs2_make_right_split_rec_fndecl_36929_fields
++nfsacl_decode_fndecl_36931_fields nfsacl_decode fndecl 2-0 36931 NULL
++page_base_gssp_in_token_36935_fields page_base gssp_in_token 0 36935 NULL
++end_offset_xilly_buffer_36946_fields end_offset xilly_buffer 0 36946 NULL nohasharray
++num_sections_nvsp_1_message_send_receive_buffer_complete_36946_fields num_sections nvsp_1_message_send_receive_buffer_complete 0 36946 &end_offset_xilly_buffer_36946_fields
++priv_size_rtnl_link_ops_36947_fields priv_size rtnl_link_ops 0 36947 NULL
++ntfs_prepare_pages_for_non_resident_write_fndecl_36959_fields ntfs_prepare_pages_for_non_resident_write fndecl 0 36959 NULL
++reserved_kmem_cache_36976_fields reserved kmem_cache 0 36976 NULL
++rx_bufsize_ath_common_36977_fields rx_bufsize ath_common 0 36977 NULL
++usbvision_frames_alloc_fndecl_36983_fields usbvision_frames_alloc fndecl 0-2 36983 NULL
++v_sync_strt_wid_aty128_crtc_36987_fields v_sync_strt_wid aty128_crtc 0 36987 NULL
++lbmAllocate_fndecl_36995_fields lbmAllocate fndecl 2 36995 NULL
++exp_len_ccp_rsa_engine_36998_fields exp_len ccp_rsa_engine 0 36998 NULL
++num_rxp_per_rx_bnad_37010_fields num_rxp_per_rx bnad 0 37010 NULL
++to_fw_map_37020_fields to fw_map 0 37020 NULL
++cb_group_width_exofs_dt_data_map_37027_fields cb_group_width exofs_dt_data_map 0 37027 NULL
++mmio_size_vmw_private_37038_fields mmio_size vmw_private 0 37038 NULL nohasharray
++dirty_poll_interval_fndecl_37038_fields dirty_poll_interval fndecl 0 37038 &mmio_size_vmw_private_37038_fields
++adjust_resource_fndecl_37046_fields adjust_resource fndecl 3-2 37046 NULL
++n_channels_cfg80211_sched_scan_request_37047_fields n_channels cfg80211_sched_scan_request 0 37047 NULL
++setcc_fndecl_37048_fields setcc fndecl 1 37048 NULL
++stolen_size_i915_ggtt_37050_fields stolen_size i915_ggtt 0 37050 NULL
++yres__sisbios_mode_37051_fields yres _sisbios_mode 0 37051 NULL
++memory_model_code_mspro_sys_info_37057_fields memory_model_code mspro_sys_info 0 37057 NULL
++neq_vf_resources_37066_fields neq vf_resources 0 37066 NULL
++mcp4131_read_fndecl_37067_fields mcp4131_read fndecl 3 37067 NULL
++vmw_cmdbuf_reserve_fndecl_37071_fields vmw_cmdbuf_reserve fndecl 2 37071 NULL
++driver_data_acpi_device_id_37074_fields driver_data acpi_device_id 0 37074 NULL
++rq_xprt_hlen_svc_rqst_37082_fields rq_xprt_hlen svc_rqst 0 37082 NULL
++rtc_devt_vardecl_rtc_dev_c_37090_fields rtc_devt vardecl_rtc-dev.c 0 37090 NULL
++filter_get_rx_ids_efx_nic_type_37093_fields filter_get_rx_ids efx_nic_type 0 37093 NULL
++cx25840_ir_rx_read_fndecl_37095_fields cx25840_ir_rx_read fndecl 3 37095 NULL
++gfs2_meta_ra_fndecl_37101_fields gfs2_meta_ra fndecl 2 37101 NULL
++filled_kobil_private_37104_fields filled kobil_private 0 37104 NULL
++rx_ring_size_bnxt_37115_fields rx_ring_size bnxt 0 37115 NULL nohasharray
++vlan_tag_rx_return_desc_37115_fields vlan_tag rx_return_desc 0 37115 &rx_ring_size_bnxt_37115_fields
++ocfs2_check_if_ancestor_fndecl_37125_fields ocfs2_check_if_ancestor fndecl 2 37125 NULL
++sc_blk_cnt_nilfs_sc_info_37130_fields sc_blk_cnt nilfs_sc_info 0 37130 NULL nohasharray
++__rh_alloc_fndecl_37130_fields __rh_alloc fndecl 2 37130 &sc_blk_cnt_nilfs_sc_info_37130_fields
++nfs_updatepage_fndecl_37131_fields nfs_updatepage fndecl 3-4 37131 NULL
++num_report_ids_mxt_object_37133_fields num_report_ids mxt_object 0 37133 NULL
++audio_mute_fndecl_37139_fields audio_mute fndecl 2 37139 NULL
++wdata_send_pages_fndecl_37142_fields wdata_send_pages fndecl 2 37142 NULL
++num_parts_cmdline_mtd_partition_37144_fields num_parts cmdline_mtd_partition 0 37144 NULL
++__xfs_seek_hole_data_fndecl_37159_fields __xfs_seek_hole_data fndecl 0-2-3 37159 NULL
++max_pdu_size_l2cap_conf_rfc_37161_fields max_pdu_size l2cap_conf_rfc 0 37161 NULL
++pcm_channels_amdtp_tscm_37163_fields pcm_channels amdtp_tscm 0 37163 NULL nohasharray
++ld_tgt_count_lov_desc_37163_fields ld_tgt_count lov_desc 0 37163 &pcm_channels_amdtp_tscm_37163_fields
++l_logBBstart_xlog_37164_fields l_logBBstart xlog 0 37164 NULL
++txCredits_edgeport_port_37166_fields txCredits edgeport_port 0 37166 NULL
++read_mmp_block_fndecl_37168_fields read_mmp_block fndecl 3 37168 NULL
++t_blk_res_xfs_trans_37169_fields t_blk_res xfs_trans 0 37169 NULL
++expect_bt_skb_cb_37170_fields expect bt_skb_cb 0 37170 NULL
++hva_to_pfn_slow_fndecl_37173_fields hva_to_pfn_slow fndecl 1 37173 NULL
++copy_pte_range_fndecl_37175_fields copy_pte_range fndecl 6 37175 NULL
++sisusbcon_do_font_op_fndecl_37180_fields sisusbcon_do_font_op fndecl 9 37180 NULL nohasharray
++octeon_init_droq_fndecl_37180_fields octeon_init_droq fndecl 4-3 37180 &sisusbcon_do_font_op_fndecl_37180_fields
++per_io_data_size_dm_target_37185_fields per_io_data_size dm_target 0 37185 NULL
++of_address_to_resource_fndecl_37191_fields of_address_to_resource fndecl 2 37191 NULL
++rx_status_0_ath5k_hw_rx_status_37197_fields rx_status_0 ath5k_hw_rx_status 0 37197 NULL
++nbperpage_jfs_sb_info_37199_fields nbperpage jfs_sb_info 0 37199 NULL
++digestsize_shash_alg_37203_fields digestsize shash_alg 0 37203 NULL
++last_message_count_mxt_data_37205_fields last_message_count mxt_data 0 37205 NULL
++offset_jffs2_eraseblock_37206_fields offset jffs2_eraseblock 0 37206 NULL
++num_VFs_pci_sriov_37207_fields num_VFs pci_sriov 0 37207 NULL
++test_hole_first_fndecl_37215_fields test_hole_first fndecl 1-2 37215 NULL
++xfs_dir2_node_trim_free_fndecl_37218_fields xfs_dir2_node_trim_free fndecl 2 37218 NULL
++height_fb_image_37238_fields height fb_image 0 37238 NULL
++write_max_at24_data_37243_fields write_max at24_data 0 37243 NULL
++csum_and_copy_to_iter_fndecl_37244_fields csum_and_copy_to_iter fndecl 2 37244 NULL
++test_unaligned_bulk_fndecl_37246_fields test_unaligned_bulk fndecl 2 37246 NULL
++i_refcount_loc_ocfs2_dinode_37249_fields i_refcount_loc ocfs2_dinode 0 37249 NULL
++hfsplus_find_attr_fndecl_37253_fields hfsplus_find_attr fndecl 0 37253 NULL
++ath6kl_wmi_ap_set_beacon_intvl_cmd_fndecl_37254_fields ath6kl_wmi_ap_set_beacon_intvl_cmd fndecl 2 37254 NULL
++pfkey_sockaddr_pair_size_fndecl_37257_fields pfkey_sockaddr_pair_size fndecl 0 37257 NULL
++size_uhci_debug_37265_fields size uhci_debug 0 37265 NULL
++__pskb_trim_head_fndecl_37267_fields __pskb_trim_head fndecl 2 37267 NULL
++ieee80211_rx_radiotap_hdrlen_fndecl_37268_fields ieee80211_rx_radiotap_hdrlen fndecl 0 37268 NULL
++blk_queue_update_dma_pad_fndecl_37275_fields blk_queue_update_dma_pad fndecl 2 37275 NULL
++max_packet_sz_rx_musb_hw_ep_37278_fields max_packet_sz_rx musb_hw_ep 0 37278 NULL
++scrollback_current_vardecl_fbcon_c_37279_fields scrollback_current vardecl_fbcon.c 0 37279 NULL
++reg_end_ath6kl_diag_reg_info_37280_fields reg_end ath6kl_diag_reg_info 0 37280 NULL
++ceph_msg_data_cursor_init_fndecl_37284_fields ceph_msg_data_cursor_init fndecl 2 37284 NULL
++do_ncp_rpc_call_fndecl_37285_fields do_ncp_rpc_call fndecl 2-4 37285 NULL
++aac_rx_ioremap_fndecl_37289_fields aac_rx_ioremap fndecl 2 37289 NULL
++lcd_hsync_len_atyfb_par_37297_fields lcd_hsync_len atyfb_par 0 37297 NULL
++svc_partial_recvfrom_fndecl_37311_fields svc_partial_recvfrom fndecl 0-5-4-3 37311 NULL
++xfs_xattr_iomap_begin_fndecl_37314_fields xfs_xattr_iomap_begin fndecl 3-2 37314 NULL
++tx_win_size_mwifiex_ie_types_btcoex_aggr_win_size_37317_fields tx_win_size mwifiex_ie_types_btcoex_aggr_win_size 0 37317 NULL
++size_dm_header_37319_fields size dm_header 0 37319 NULL
++mt76_mac_process_rx_fndecl_37334_fields mt76_mac_process_rx fndecl 0 37334 NULL
++ie_len_cfg80211_sched_scan_request_37335_fields ie_len cfg80211_sched_scan_request 0 37335 NULL nohasharray
++ufs_change_blocknr_fndecl_37335_fields ufs_change_blocknr fndecl 2-4-5 37335 &ie_len_cfg80211_sched_scan_request_37335_fields
++ud_cursor_fndecl_37338_fields ud_cursor fndecl 4 37338 NULL
++hso_serial_common_create_fndecl_37343_fields hso_serial_common_create fndecl 3 37343 NULL
++dma_handle_usb_memory_37350_fields dma_handle usb_memory 0 37350 NULL
++blksize_fuse_mount_data_37357_fields blksize fuse_mount_data 0 37357 NULL
++pdev_id_sm501_devdata_37360_fields pdev_id sm501_devdata 0 37360 NULL
++rc_len_whcrc_37363_fields rc_len whcrc 0 37363 NULL
++gsm_change_mtu_fndecl_37364_fields gsm_change_mtu fndecl 2 37364 NULL
++alauda_read_data_fndecl_37367_fields alauda_read_data fndecl 2 37367 NULL
++peer_addr_len_drbd_connection_37371_fields peer_addr_len drbd_connection 0 37371 NULL
++virtscsi_add_cmd_fndecl_37379_fields virtscsi_add_cmd fndecl 3-4 37379 NULL nohasharray
++size_list_size_vc4_bo_cache_37379_fields size_list_size vc4_bo_cache 0 37379 &virtscsi_add_cmd_fndecl_37379_fields
++gotoxay_fndecl_37380_fields gotoxay fndecl 2-3 37380 NULL
++nvkm_ramht_new_fndecl_37381_fields nvkm_ramht_new fndecl 2 37381 NULL
++size_pnp_mem_37384_fields size pnp_mem 0 37384 NULL
++smscore_createbuffer_fndecl_37390_fields smscore_createbuffer fndecl 3 37390 NULL nohasharray
++alloc_blksz_hfs_sb_info_37390_fields alloc_blksz hfs_sb_info 0 37390 &smscore_createbuffer_fndecl_37390_fields
++batadv_check_management_packet_fndecl_37394_fields batadv_check_management_packet fndecl 3 37394 NULL
++jdvbt90502_reg_read_fndecl_37400_fields jdvbt90502_reg_read fndecl 4 37400 NULL
++num_msix_vectors_i40e_hw_capabilities_37406_fields num_msix_vectors i40e_hw_capabilities 0 37406 NULL
++xfs_rtfree_extent_fndecl_37427_fields xfs_rtfree_extent fndecl 3-2 37427 NULL
++hr_block_bits_o2hb_region_37433_fields hr_block_bits o2hb_region 0 37433 NULL
++radeon_gart_size_vardecl_37434_fields radeon_gart_size vardecl 0 37434 NULL nohasharray
++inode_table_ext4_new_group_data_37434_fields inode_table ext4_new_group_data 0 37434 &radeon_gart_size_vardecl_37434_fields
++dib0700_ctrl_rd_fndecl_37445_fields dib0700_ctrl_rd fndecl 0 37445 NULL
++ag6xx_recv_fndecl_37448_fields ag6xx_recv fndecl 3 37448 NULL
++size_erst_record_id_cache_37450_fields size erst_record_id_cache 0 37450 NULL
++right_margin_fb_var_screeninfo_37453_fields right_margin fb_var_screeninfo 0 37453 NULL nohasharray
++file_size_squashfs_dir_inode_37453_fields file_size squashfs_dir_inode 0 37453 &right_margin_fb_var_screeninfo_37453_fields
++header_size_rxrpc_connection_37458_fields header_size rxrpc_connection 0 37458 NULL
++bi_sector_bvec_iter_37467_fields bi_sector bvec_iter 0 37467 NULL
++rate_ua101_37469_fields rate ua101 0 37469 NULL
++length_drm_event_37471_fields length drm_event 0 37471 NULL
++s_apbshift_ufs_sb_private_info_37473_fields s_apbshift ufs_sb_private_info 0 37473 NULL
++TupleLink_tuple_t_37482_fields TupleLink tuple_t 0 37482 NULL nohasharray
++do_compat_preadv64_fndecl_37482_fields do_compat_preadv64 fndecl 3 37482 &TupleLink_tuple_t_37482_fields
++size_ctxt_eager_bufs_37485_fields size ctxt_eager_bufs 0 37485 NULL nohasharray
++ath10k_mac_create_fndecl_37485_fields ath10k_mac_create fndecl 1 37485 &size_ctxt_eager_bufs_37485_fields
++params_len_nfc_evt_transaction_37500_fields params_len nfc_evt_transaction 0 37500 NULL
++lines_ivtv_osd_coords_37504_fields lines ivtv_osd_coords 0 37504 NULL nohasharray
++heads_mspro_devinfo_37504_fields heads mspro_devinfo 0 37504 &lines_ivtv_osd_coords_37504_fields
++ks8851_rdfifo_fndecl_37510_fields ks8851_rdfifo fndecl 3 37510 NULL
++inode_newsize_ok_fndecl_37511_fields inode_newsize_ok fndecl 0 37511 NULL
++__data_len_request_37523_fields __data_len request 0 37523 NULL nohasharray
++etherMtu_mac_eeprom_port_cfg_37523_fields etherMtu_mac eeprom_port_cfg 0 37523 &__data_len_request_37523_fields
++efx_realloc_channels_fndecl_37528_fields efx_realloc_channels fndecl 2-3 37528 NULL
++num_txd_netxen_adapter_37529_fields num_txd netxen_adapter 0 37529 NULL
++ieee80211_bss_info_update_fndecl_37537_fields ieee80211_bss_info_update fndecl 4 37537 NULL nohasharray
++dwords_qib_verbs_txreq_37537_fields dwords qib_verbs_txreq 0 37537 &ieee80211_bss_info_update_fndecl_37537_fields
++btrfs_io_bio_alloc_fndecl_37544_fields btrfs_io_bio_alloc fndecl 2 37544 NULL
++divisor_sfq_sched_data_37546_fields divisor sfq_sched_data 0 37546 NULL nohasharray
++keylen_ppp_mppe_state_37546_fields keylen ppp_mppe_state 0 37546 &divisor_sfq_sched_data_37546_fields
++extent_shift_ecryptfs_crypt_stat_37548_fields extent_shift ecryptfs_crypt_stat 0 37548 NULL
++dln2_transfer_fndecl_37576_fields dln2_transfer fndecl 0 37576 NULL
++len_efx_rx_buffer_37579_fields len efx_rx_buffer 0 37579 NULL
++catas_offset_mlx4_fw_37594_fields catas_offset mlx4_fw 0 37594 NULL
++ocfs2_cp_xattr_bucket_fndecl_37598_fields ocfs2_cp_xattr_bucket fndecl 3-4 37598 NULL
++tun_do_read_fndecl_37614_fields tun_do_read fndecl 0 37614 NULL
++eeprom_len_fmc_device_37616_fields eeprom_len fmc_device 0 37616 NULL
++dcbp_set_code_fndecl_37633_fields dcbp_set_code fndecl 2 37633 NULL
++lfb_height_screen_info_37634_fields lfb_height screen_info 0 37634 NULL
++rmtblkcnt2_xfs_da_args_37635_fields rmtblkcnt2 xfs_da_args 0 37635 NULL
++b_in_mon_reader_bin_37636_fields b_in mon_reader_bin 0 37636 NULL nohasharray
++chain_segment_sz_MPT3SAS_ADAPTER_37636_fields chain_segment_sz MPT3SAS_ADAPTER 0 37636 &b_in_mon_reader_bin_37636_fields
++addrlen_rpc_xprt_37643_fields addrlen rpc_xprt 0 37643 NULL
++alloc_ldt_struct_fndecl_37649_fields alloc_ldt_struct fndecl 1 37649 NULL
++cache_size_cache_37650_fields cache_size cache 0 37650 NULL
++r5l_append_payload_meta_fndecl_37651_fields r5l_append_payload_meta fndecl 3 37651 NULL
++hfcsusb_rx_frame_fndecl_37658_fields hfcsusb_rx_frame fndecl 3 37658 NULL
++efi_nextents_xfs_efi_log_format_37664_fields efi_nextents xfs_efi_log_format 0 37664 NULL
++early_bytes_rchan_buf_37669_fields early_bytes rchan_buf 0 37669 NULL
++lsave_sz_ubifs_info_37672_fields lsave_sz ubifs_info 0 37672 NULL
++len_ethtool_eeprom_37676_fields len ethtool_eeprom 0 37676 NULL
++eeprom_blob_size_iwl_priv_37680_fields eeprom_blob_size iwl_priv 0 37680 NULL
++lastextent_efs_inode_info_37681_fields lastextent efs_inode_info 0 37681 NULL
++zm_wmfw_adsp2_alg_hdr_37694_fields zm wmfw_adsp2_alg_hdr 0 37694 NULL
++usb_ftdi_elan_edset_setup_fndecl_37695_fields usb_ftdi_elan_edset_setup fndecl 0 37695 NULL
++snic_trace_max_pages_vardecl_37696_fields snic_trace_max_pages vardecl 0 37696 NULL
++orig_video_points_screen_info_37702_fields orig_video_points screen_info 0 37702 NULL
++num_tx_ring_sh_eth_private_37717_fields num_tx_ring sh_eth_private 0 37717 NULL
++regset_tls_get_fndecl_37721_fields regset_tls_get fndecl 3 37721 NULL
++zap_bt_entries_mapping_fndecl_37722_fields zap_bt_entries_mapping fndecl 3-4-2 37722 NULL
++bfad_debugfs_lseek_fndecl_37724_fields bfad_debugfs_lseek fndecl 2 37724 NULL
++des3_dwceqos_dma_desc_37725_fields des3 dwceqos_dma_desc 0 37725 NULL
++cciss_geometry_inquiry_fndecl_37730_fields cciss_geometry_inquiry fndecl 4 37730 NULL
++sk_wmem_queued_sock_37733_fields sk_wmem_queued sock 0 37733 NULL
++len_cap_mon_bin_hdr_37739_fields len_cap mon_bin_hdr 0 37739 NULL
++cryptlen_skcipher_request_37750_fields cryptlen skcipher_request 0 37750 NULL
++num_enh_eq_cfgs_wm8994_pdata_37752_fields num_enh_eq_cfgs wm8994_pdata 0 37752 NULL
++vmw_kms_ldu_do_dmabuf_dirty_fndecl_37757_fields vmw_kms_ldu_do_dmabuf_dirty fndecl 6 37757 NULL
++length_acpi_object_buffer_37768_fields length acpi_object_buffer 0 37768 NULL
++prot_length_se_cmd_37769_fields prot_length se_cmd 0 37769 NULL
++access_length_acpi_object_region_field_37774_fields access_length acpi_object_region_field 0 37774 NULL
++block_size_mspro_sys_info_37775_fields block_size mspro_sys_info 0 37775 NULL
++buf_size_usb_data_stream_37781_fields buf_size usb_data_stream 0 37781 NULL
++ext4_init_dot_dotdot_fndecl_37792_fields ext4_init_dot_dotdot fndecl 4-3 37792 NULL
++update_interval_frames_snd_card_asihpi_37794_fields update_interval_frames snd_card_asihpi 0 37794 NULL
++bytes_per_block_svga3d_surface_desc_37798_fields bytes_per_block svga3d_surface_desc 0 37798 NULL
++nilfs_sufile_read_fndecl_37800_fields nilfs_sufile_read fndecl 2 37800 NULL nohasharray
++gso_max_segs_net_device_37800_fields gso_max_segs net_device 0 37800 &nilfs_sufile_read_fndecl_37800_fields
++eo_get_last_eb_blk_ocfs2_extent_tree_operations_37802_fields eo_get_last_eb_blk ocfs2_extent_tree_operations 0 37802 NULL
++exec_verb_hdac_device_37803_fields exec_verb hdac_device 0 37803 NULL
++word_4_ns_rsqe_37805_fields word_4 ns_rsqe 0 37805 NULL
++gid_tbl_len_ib_port_attr_37809_fields gid_tbl_len ib_port_attr 0 37809 NULL nohasharray
++devnum_genwqe_genwqe_dev_37809_fields devnum_genwqe genwqe_dev 0 37809 &gid_tbl_len_ib_port_attr_37809_fields
++num_vectors_i40e_virtchnl_iwarp_qvlist_info_37812_fields num_vectors i40e_virtchnl_iwarp_qvlist_info 0 37812 NULL
++touchpad_num_ad714x_platform_data_37818_fields touchpad_num ad714x_platform_data 0 37818 NULL
++out_ep_snd_usb_midi_endpoint_info_37819_fields out_ep snd_usb_midi_endpoint_info 0 37819 NULL
++max_header_size_ircomm_tty_cb_37822_fields max_header_size ircomm_tty_cb 0 37822 NULL
++my_addr_len_drbd_connection_37828_fields my_addr_len drbd_connection 0 37828 NULL
++rbd_img_request_create_fndecl_37833_fields rbd_img_request_create fndecl 3-2 37833 NULL
++mru_syncppp_37835_fields mru syncppp 0 37835 NULL
++slot_width_mvs_chip_info_37839_fields slot_width mvs_chip_info 0 37839 NULL
++ra_tid_iwlagn_tx_resp_37853_fields ra_tid iwlagn_tx_resp 0 37853 NULL
++nents_usnic_uiom_chunk_37860_fields nents usnic_uiom_chunk 0 37860 NULL
++assoclen_aead_request_37866_fields assoclen aead_request 0 37866 NULL
++xdr_copy_to_scratch_fndecl_37868_fields xdr_copy_to_scratch fndecl 2 37868 NULL nohasharray
++chunk_io_fndecl_37868_fields chunk_io fndecl 3 37868 &xdr_copy_to_scratch_fndecl_37868_fields
++btrfs_set_header_nritems_fndecl_37869_fields btrfs_set_header_nritems fndecl 2 37869 NULL
++hx8357_spi_write_then_read_fndecl_37879_fields hx8357_spi_write_then_read fndecl 5 37879 NULL
++leaf_delete_items_fndecl_37885_fields leaf_delete_items fndecl 5 37885 NULL
++____alloc_ei_netdev_fndecl_37888_fields ____alloc_ei_netdev fndecl 1 37888 NULL
++dm_bufio_client_create_fndecl_37889_fields dm_bufio_client_create fndecl 2 37889 NULL
++gss_wrap_kerberos_fndecl_37890_fields gss_wrap_kerberos fndecl 2 37890 NULL
++bulk_in_ipheth_device_37894_fields bulk_in ipheth_device 0 37894 NULL nohasharray
++xfs_buf_get_uncached_fndecl_37894_fields xfs_buf_get_uncached fndecl 2 37894 &bulk_in_ipheth_device_37894_fields
++prod_xfs_alloc_arg_37897_fields prod xfs_alloc_arg 0 37897 NULL
++calc_send_wqe_fndecl_37899_fields calc_send_wqe fndecl 0 37899 NULL nohasharray
++logi_dj_hidpp_event_fndecl_37899_fields logi_dj_hidpp_event fndecl 4 37899 &calc_send_wqe_fndecl_37899_fields
++vc4_get_cache_list_for_size_fndecl_37902_fields vc4_get_cache_list_for_size fndecl 2 37902 NULL
++datalen_user_key_payload_37906_fields datalen user_key_payload 0 37906 NULL
++pasid_kfd_process_37907_fields pasid kfd_process 0 37907 NULL
++input_report_size_rmi_data_37929_fields input_report_size rmi_data 0 37929 NULL
++ep_urb_context_37938_fields ep urb_context 0 37938 NULL
++phys_memory_base_mgsl_struct_37952_fields phys_memory_base mgsl_struct 0 37952 NULL
++wpa_ie_len_islpci_bss_wpa_ie_37953_fields wpa_ie_len islpci_bss_wpa_ie 0 37953 NULL
++rx_ring_count_fm10k_intfc_37957_fields rx_ring_count fm10k_intfc 0 37957 NULL
++cleanmarker_size_jffs2_sb_info_37959_fields cleanmarker_size jffs2_sb_info 0 37959 NULL
++num_kcontrols_snd_soc_tplg_dapm_widget_37960_fields num_kcontrols snd_soc_tplg_dapm_widget 0 37960 NULL
++consume_size_vmci_qp_alloc_info_vmvm_37962_fields consume_size vmci_qp_alloc_info_vmvm 0 37962 NULL
++unmap_vmas_fndecl_37967_fields unmap_vmas fndecl 4-3 37967 NULL
++count_nfsd_readres_37988_fields count nfsd_readres 0 37988 NULL
++nlmsvc_lookup_host_fndecl_37992_fields nlmsvc_lookup_host fndecl 3 37992 NULL
++old_blkaddr_f2fs_io_info_37994_fields old_blkaddr f2fs_io_info 0 37994 NULL nohasharray
++data_size_cyttsp4_sysinfo_ofs_37994_fields data_size cyttsp4_sysinfo_ofs 0 37994 &old_blkaddr_f2fs_io_info_37994_fields
++size_qla_flt_region_37995_fields size qla_flt_region 0 37995 NULL
++key_size_bpf_map_37996_fields key_size bpf_map 0 37996 NULL
++bt_sock_stream_recvmsg_fndecl_37997_fields bt_sock_stream_recvmsg fndecl 3 37997 NULL
++icmp_manip_pkt_fndecl_38011_fields icmp_manip_pkt fndecl 4 38011 NULL
++rfcomm_tty_write_fndecl_38016_fields rfcomm_tty_write fndecl 3 38016 NULL
++max_cmnds_vardecl_aic94xx_hwi_c_38022_fields max_cmnds vardecl_aic94xx_hwi.c 0 38022 NULL nohasharray
++l_len_xfs_flock64_38022_fields l_len xfs_flock64 0 38022 &max_cmnds_vardecl_aic94xx_hwi_c_38022_fields
++num_entries_ipt_replace_38023_fields num_entries ipt_replace 0 38023 NULL
++iriap_connect_confirm_fndecl_38027_fields iriap_connect_confirm fndecl 5 38027 NULL
++ath6kl_set_bitrate_mask64_fndecl_38029_fields ath6kl_set_bitrate_mask64 fndecl 2 38029 NULL
++sensb_res_len_nfc_target_38034_fields sensb_res_len nfc_target 0 38034 NULL
++ip6_tnl_change_mtu_fndecl_38041_fields ip6_tnl_change_mtu fndecl 2 38041 NULL nohasharray
++write_page_fndecl_38041_fields write_page fndecl 2 38041 &ip6_tnl_change_mtu_fndecl_38041_fields
++x25_negotiate_facilities_fndecl_38044_fields x25_negotiate_facilities fndecl 0 38044 NULL
++open_devices_btrfs_fs_devices_38045_fields open_devices btrfs_fs_devices 0 38045 NULL
++reference_rate_vardecl_xfi_c_38047_fields reference_rate vardecl_xfi.c 0 38047 NULL
++group_devt_vfio_38048_fields group_devt vfio 0 38048 NULL
++offset_drm_local_map_38055_fields offset drm_local_map 0 38055 NULL
++isd200_set_srb_fndecl_38056_fields isd200_set_srb fndecl 4 38056 NULL
++sctp_auth_create_key_fndecl_38058_fields sctp_auth_create_key fndecl 1 38058 NULL nohasharray
++length_ipw_rx_packet_38058_fields length ipw_rx_packet 0 38058 &sctp_auth_create_key_fndecl_38058_fields
++add_vol_fndecl_38066_fields add_vol fndecl 3-6 38066 NULL
++extent_fiemap_fndecl_38070_fields extent_fiemap fndecl 4-3 38070 NULL
++numPartitionMaps_logicalVolDesc_38073_fields numPartitionMaps logicalVolDesc 0 38073 NULL
++length_wpa_param_38074_fields length wpa_param 0 38074 NULL
++hfsplus_submit_bio_fndecl_38085_fields hfsplus_submit_bio fndecl 2 38085 NULL
++xfs_rmap_update_fndecl_38088_fields xfs_rmap_update fndecl 0 38088 NULL
++driver_data_pca953x_chip_38096_fields driver_data pca953x_chip 0 38096 NULL
++bd_group_ext4_buddy_38101_fields bd_group ext4_buddy 0 38101 NULL nohasharray
++la_bm_off_ocfs2_local_alloc_38101_fields la_bm_off ocfs2_local_alloc 0 38101 &bd_group_ext4_buddy_38101_fields
++softingcs_index_vardecl_softing_cs_c_38102_fields softingcs_index vardecl_softing_cs.c 0 38102 NULL
++data_size_il4965_firmware_pieces_38105_fields data_size il4965_firmware_pieces 0 38105 NULL
++reg_stride_order_regmap_38114_fields reg_stride_order regmap 0 38114 NULL
++length_floppy_raw_cmd_38116_fields length floppy_raw_cmd 0 38116 NULL
++rmtblkno_xfs_da_args_38121_fields rmtblkno xfs_da_args 0 38121 NULL
++len_rxd_desc_38127_fields len rxd_desc 0 38127 NULL
++crtc_h_drm_plane_state_38132_fields crtc_h drm_plane_state 0 38132 NULL
++irq_intel_mid_wdt_pdata_38135_fields irq intel_mid_wdt_pdata 0 38135 NULL
++sfi_sysfs_install_table_fndecl_38139_fields sfi_sysfs_install_table fndecl 1 38139 NULL
++num_regulators_tps65910_reg_38145_fields num_regulators tps65910_reg 0 38145 NULL
++nentries_ebt_replace_kernel_38149_fields nentries ebt_replace_kernel 0 38149 NULL
++btrfs_get_io_failure_record_fndecl_38153_fields btrfs_get_io_failure_record fndecl 2-3 38153 NULL
++data_dma_pegasus_38158_fields data_dma pegasus 0 38158 NULL
++xfs_free_extent_fix_freelist_fndecl_38159_fields xfs_free_extent_fix_freelist fndecl 2 38159 NULL
++sock_recvmsg_fndecl_38178_fields sock_recvmsg fndecl 0 38178 NULL nohasharray
++__mxt_read_reg_fndecl_38178_fields __mxt_read_reg fndecl 3-0 38178 &sock_recvmsg_fndecl_38178_fields
++zone_end_strip_zone_38191_fields zone_end strip_zone 0 38191 NULL
++pfpg_size_nvm_dev_38197_fields pfpg_size nvm_dev 0 38197 NULL
++driver_data_i2c_device_id_38200_fields driver_data i2c_device_id 0 38200 NULL
++raw_sig_size_x509_certificate_38211_fields raw_sig_size x509_certificate 0 38211 NULL
++ath6kl_wmi_del_wow_pattern_cmd_fndecl_38224_fields ath6kl_wmi_del_wow_pattern_cmd fndecl 2 38224 NULL nohasharray
++prealloc_stream_buf_vardecl_hpioctl_c_38224_fields prealloc_stream_buf vardecl_hpioctl.c 0 38224 &ath6kl_wmi_del_wow_pattern_cmd_fndecl_38224_fields
++firm_numbers_queue_AdapterControlBlock_38236_fields firm_numbers_queue AdapterControlBlock 0 38236 NULL
++ipwireless_network_packet_received_fndecl_38238_fields ipwireless_network_packet_received fndecl 4 38238 NULL
++periodic_bytes_fndecl_38241_fields periodic_bytes fndecl 0 38241 NULL
++submit_bio_start_async_submit_bio_38242_fields submit_bio_start async_submit_bio 0 38242 NULL
++get_cell_fndecl_38247_fields get_cell fndecl 2 38247 NULL
++isd200_try_enum_fndecl_38250_fields isd200_try_enum fndecl 2 38250 NULL nohasharray
++name_len_ext2_dir_entry_2_38250_fields name_len ext2_dir_entry_2 0 38250 &isd200_try_enum_fndecl_38250_fields
++alloc_hippi_dev_fndecl_38251_fields alloc_hippi_dev fndecl 1 38251 NULL
++bdbars_count_intel8x0m_38253_fields bdbars_count intel8x0m 0 38253 NULL
++bLength_usb_cdc_country_functional_desc_38256_fields bLength usb_cdc_country_functional_desc 0 38256 NULL nohasharray
++rsize_nfs_server_38256_fields rsize nfs_server 0 38256 &bLength_usb_cdc_country_functional_desc_38256_fields
++_osd_req_cdb_len_fndecl_38259_fields _osd_req_cdb_len fndecl 0 38259 NULL
++rq_wqe_count_mlx5_ib_create_wq_38263_fields rq_wqe_count mlx5_ib_create_wq 0 38263 NULL
++start_limited_discovery_fndecl_38264_fields start_limited_discovery fndecl 4 38264 NULL
++id_mlx5_fc_38274_fields id mlx5_fc 0 38274 NULL
++max_read_sge_ib_qp_38275_fields max_read_sge ib_qp 0 38275 NULL nohasharray
++prepare_header100_fndecl_38275_fields prepare_header100 fndecl 0 38275 &max_read_sge_ib_qp_38275_fields
++min_pnp_port_38276_fields min pnp_port 0 38276 NULL
++numpmkid_host_if_pmkid_attr_38277_fields numpmkid host_if_pmkid_attr 0 38277 NULL nohasharray
++irnet_connect_confirm_fndecl_38277_fields irnet_connect_confirm fndecl 5 38277 &numpmkid_host_if_pmkid_attr_38277_fields
++len_osd_attr_38284_fields len osd_attr 0 38284 NULL
++pci_cardbus_mem_size_vardecl_38290_fields pci_cardbus_mem_size vardecl 0 38290 NULL
++compat_arch_ptrace_fndecl_38298_fields compat_arch_ptrace fndecl 3 38298 NULL
++height_zoran_v4l_settings_38307_fields height zoran_v4l_settings 0 38307 NULL
++bad_peb_count_ubi_attach_info_38310_fields bad_peb_count ubi_attach_info 0 38310 NULL
++ftid_base_tid_info_38313_fields ftid_base tid_info 0 38313 NULL
++nr_siblings_perf_event_38320_fields nr_siblings perf_event 0 38320 NULL
++shader_rec_count_drm_vc4_submit_cl_38324_fields shader_rec_count drm_vc4_submit_cl 0 38324 NULL
++radeon_kms_compat_ioctl_fndecl_38328_fields radeon_kms_compat_ioctl fndecl 2 38328 NULL
++raydium_i2c_read_fndecl_38332_fields raydium_i2c_read fndecl 4 38332 NULL
++iov_len_sg_iovec_38337_fields iov_len sg_iovec 0 38337 NULL nohasharray
++ext_lfb_base_screen_info_38337_fields ext_lfb_base screen_info 0 38337 &iov_len_sg_iovec_38337_fields
++num_sys_eqs_mlx4_dev_cap_38340_fields num_sys_eqs mlx4_dev_cap 0 38340 NULL
++record_size_vardecl_mtdoops_c_38343_fields record_size vardecl_mtdoops.c 0 38343 NULL
++len_nft_data_desc_38346_fields len nft_data_desc 0 38346 NULL
++shim_offset_sst_res_info_38347_fields shim_offset sst_res_info 0 38347 NULL
++pf_fhlen_nfsd4_putfh_38348_fields pf_fhlen nfsd4_putfh 0 38348 NULL
++xfs_dir3_free_get_buf_fndecl_38355_fields xfs_dir3_free_get_buf fndecl 2 38355 NULL
++rate_snd_soc_dai_38358_fields rate snd_soc_dai 0 38358 NULL
++pci_sriov_resource_alignment_fndecl_38365_fields pci_sriov_resource_alignment fndecl 0 38365 NULL
++flush_buffer_fndecl_38367_fields flush_buffer fndecl 2 38367 NULL
++ri_length_gfs2_rindex_38375_fields ri_length gfs2_rindex 0 38375 NULL
++options_len_ip_tunnel_info_38380_fields options_len ip_tunnel_info 0 38380 NULL nohasharray
++offset_ttm_buffer_object_38380_fields offset ttm_buffer_object 0 38380 &options_len_ip_tunnel_info_38380_fields
++blk_register_region_fndecl_38387_fields blk_register_region fndecl 2-1 38387 NULL
++ext4_ext_rm_leaf_fndecl_38397_fields ext4_ext_rm_leaf fndecl 5 38397 NULL
++hfsplus_brec_read_fndecl_38399_fields hfsplus_brec_read fndecl 0 38399 NULL
++xdr_xcode_array2_fndecl_38417_fields xdr_xcode_array2 fndecl 2 38417 NULL
++i40iw_cm_reject_fndecl_38423_fields i40iw_cm_reject fndecl 3 38423 NULL nohasharray
++todo_dmxdev_filter_38423_fields todo dmxdev_filter 0 38423 &i40iw_cm_reject_fndecl_38423_fields
++remap_exception_fndecl_38426_fields remap_exception fndecl 4 38426 NULL
++mwifiex_get_rates_from_cfg80211_fndecl_38427_fields mwifiex_get_rates_from_cfg80211 fndecl 0 38427 NULL
++ide_set_dma_mode_fndecl_38428_fields ide_set_dma_mode fndecl 2 38428 NULL
++m_chunk_size_drxk_state_38431_fields m_chunk_size drxk_state 0 38431 NULL
++num_total_adcs_snd_ice1712_38432_fields num_total_adcs snd_ice1712 0 38432 NULL
++r820t_write_fndecl_38436_fields r820t_write fndecl 4 38436 NULL
++ocfs2_iterate_xattr_buckets_fndecl_38437_fields ocfs2_iterate_xattr_buckets fndecl 2 38437 NULL
++cw1200_sdio_memcpy_toio_fndecl_38442_fields cw1200_sdio_memcpy_toio fndecl 4 38442 NULL
++vxge_rx_alloc_fndecl_38443_fields vxge_rx_alloc fndecl 3 38443 NULL
++__ieee80211_tx_skb_tid_band_fndecl_38444_fields __ieee80211_tx_skb_tid_band fndecl 3 38444 NULL nohasharray
++test_ofsh_cyttsp4_sysinfo_data_38444_fields test_ofsh cyttsp4_sysinfo_data 0 38444 &__ieee80211_tx_skb_tid_band_fndecl_38444_fields
++slave_count_w1_master_38454_fields slave_count w1_master 0 38454 NULL
++blocksize_gss_krb5_enctype_38477_fields blocksize gss_krb5_enctype 0 38477 NULL
++min_pfn_mapped_vardecl_init_c_38481_fields min_pfn_mapped vardecl_init.c 0 38481 NULL
++pnfs_update_layout_fndecl_38495_fields pnfs_update_layout fndecl 3-4 38495 NULL
++create_rcom_fndecl_38501_fields create_rcom fndecl 4 38501 NULL nohasharray
++info_len_ib_ucm_sidr_rep_38501_fields info_len ib_ucm_sidr_rep 0 38501 &create_rcom_fndecl_38501_fields
++udp_recvmsg_fndecl_38509_fields udp_recvmsg fndecl 3 38509 NULL nohasharray
++msdu_len_htt_rx_offload_msdu_38509_fields msdu_len htt_rx_offload_msdu 0 38509 &udp_recvmsg_fndecl_38509_fields
++isofs_readpages_fndecl_38512_fields isofs_readpages fndecl 4 38512 NULL
++__f2fs_replace_block_fndecl_38514_fields __f2fs_replace_block fndecl 4 38514 NULL
++prepare_merge_dm_exception_store_type_38515_fields prepare_merge dm_exception_store_type 0 38515 NULL
++max_sg_mthca_limits_38517_fields max_sg mthca_limits 0 38517 NULL
++if_broot_bytes_xfs_ifork_38518_fields if_broot_bytes xfs_ifork 0 38518 NULL
++mxuport_process_read_urb_data_fndecl_38523_fields mxuport_process_read_urb_data fndecl 3 38523 NULL
++emu_setup_memblk_fndecl_38524_fields emu_setup_memblk fndecl 5 38524 NULL
++max_pde_used_radeon_vm_38536_fields max_pde_used radeon_vm 0 38536 NULL
++amdgpu_sa_bo_manager_init_fndecl_38537_fields amdgpu_sa_bo_manager_init fndecl 3 38537 NULL
++prism2_ap_translate_scan_fndecl_38540_fields prism2_ap_translate_scan fndecl 0 38540 NULL
++cx18_av_read_fndecl_38542_fields cx18_av_read fndecl 0 38542 NULL
++ulist_add_merge_fndecl_38547_fields ulist_add_merge fndecl 0-2-3 38547 NULL nohasharray
++krb5_encrypt_fndecl_38547_fields krb5_encrypt fndecl 5 38547 &ulist_add_merge_fndecl_38547_fields
++fb_base_phys_radeonfb_info_38551_fields fb_base_phys radeonfb_info 0 38551 NULL
++set_stream_hw_fndecl_38553_fields set_stream_hw fndecl 3 38553 NULL nohasharray
++tx_win_size_mwifiex_add_ba_param_38553_fields tx_win_size mwifiex_add_ba_param 0 38553 &set_stream_hw_fndecl_38553_fields
++rx_max_size_rtl_usb_38560_fields rx_max_size rtl_usb 0 38560 NULL
++ext2_alloc_blocks_fndecl_38562_fields ext2_alloc_blocks fndecl 2 38562 NULL
++offset_writequeue_entry_38565_fields offset writequeue_entry 0 38565 NULL
++this_header_vardecl_initramfs_c_38567_fields this_header vardecl_initramfs.c 0 38567 NULL nohasharray
++gfs2_dir_read_leaf_fndecl_38567_fields gfs2_dir_read_leaf fndecl 5 38567 &this_header_vardecl_initramfs_c_38567_fields nohasharray
++htable_size_fndecl_38567_fields htable_size fndecl 0-1 38567 &gfs2_dir_read_leaf_fndecl_38567_fields
++memblock_alloc_base_nid_fndecl_38568_fields memblock_alloc_base_nid fndecl 2-0-3 38568 NULL
++len_port_buffer_38573_fields len port_buffer 0 38573 NULL nohasharray
++setup_dma_urb_38573_fields setup_dma urb 0 38573 &len_port_buffer_38573_fields
++block_mtu_hci_dev_38575_fields block_mtu hci_dev 0 38575 NULL
++data_dma_aiptek_38577_fields data_dma aiptek 0 38577 NULL
++rsr_ct_atc_38578_fields rsr ct_atc 0 38578 NULL
++usVActive__ATOM_DTD_FORMAT_38581_fields usVActive _ATOM_DTD_FORMAT 0 38581 NULL
++rx_tpa_start_cmp_len_flags_type_rx_tpa_start_cmp_38587_fields rx_tpa_start_cmp_len_flags_type rx_tpa_start_cmp 0 38587 NULL
++sub_alloc_fndecl_38591_fields sub_alloc fndecl 0 38591 NULL
++set_nfilters_fndecl_38597_fields set_nfilters fndecl 2 38597 NULL
++s_cgmask_ufs_sb_private_info_38603_fields s_cgmask ufs_sb_private_info 0 38603 NULL
++maxburst_usb_ep_38604_fields maxburst usb_ep 0 38604 NULL nohasharray
++v_offset_v2_38604_fields v offset_v2 0 38604 &maxburst_usb_ep_38604_fields nohasharray
++reiserfs_posix_acl_from_disk_fndecl_38604_fields reiserfs_posix_acl_from_disk fndecl 2 38604 &v_offset_v2_38604_fields
++fpWidth_nvidia_par_38605_fields fpWidth nvidia_par 0 38605 NULL
++p_arglen_rpc_procinfo_38611_fields p_arglen rpc_procinfo 0 38611 NULL
++mga_compat_ioctl_fndecl_38617_fields mga_compat_ioctl fndecl 2 38617 NULL
++cxgbit_alloc_skb_fndecl_38618_fields cxgbit_alloc_skb fndecl 2 38618 NULL nohasharray
++max_wqe_rqe_ocrdma_create_qp_rsp_38618_fields max_wqe_rqe ocrdma_create_qp_rsp 0 38618 &cxgbit_alloc_skb_fndecl_38618_fields
++pageshift_sddr55_card_info_38623_fields pageshift sddr55_card_info 0 38623 NULL
++ar5523_config_multi_fndecl_38630_fields ar5523_config_multi fndecl 4 38630 NULL
++level_kvm_shadow_walk_iterator_38631_fields level kvm_shadow_walk_iterator 0 38631 NULL
++next_burst_len_iscsi_datain_req_38632_fields next_burst_len iscsi_datain_req 0 38632 NULL nohasharray
++iscsi_if_send_reply_fndecl_38632_fields iscsi_if_send_reply fndecl 7 38632 &next_burst_len_iscsi_datain_req_38632_fields
++data_offset_vb2_plane_38635_fields data_offset vb2_plane 0 38635 NULL
++size_bucket_table_38640_fields size bucket_table 0 38640 NULL
++f2fs_seek_block_fndecl_38641_fields f2fs_seek_block fndecl 2 38641 NULL
++max_ssns_csio_fcoe_res_info_38647_fields max_ssns csio_fcoe_res_info 0 38647 NULL
++intel_lr_context_size_fndecl_38650_fields intel_lr_context_size fndecl 0 38650 NULL nohasharray
++ieee80211_send_null_response_fndecl_38650_fields ieee80211_send_null_response fndecl 2 38650 &intel_lr_context_size_fndecl_38650_fields
++truncate_pagecache_range_fndecl_38652_fields truncate_pagecache_range fndecl 2-3 38652 NULL
++rx_buffer_len_igbvf_adapter_38659_fields rx_buffer_len igbvf_adapter 0 38659 NULL
++hid_parse_report_fndecl_38666_fields hid_parse_report fndecl 3 38666 NULL
++def_bpp_mb862xx_gc_mode_38668_fields def_bpp mb862xx_gc_mode 0 38668 NULL
++tty_cdev_add_fndecl_38673_fields tty_cdev_add fndecl 4-2 38673 NULL
++drm_compat_ioctl_fndecl_38678_fields drm_compat_ioctl fndecl 2 38678 NULL
++txq_max_tg3_38686_fields txq_max tg3 0 38686 NULL
++sc_uaddr_len_nfs4_setclientid_38689_fields sc_uaddr_len nfs4_setclientid 0 38689 NULL
++len_irda_device_list_38690_fields len irda_device_list 0 38690 NULL
++sdebug_unmap_alignment_vardecl_scsi_debug_c_38693_fields sdebug_unmap_alignment vardecl_scsi_debug.c 0 38693 NULL
++ioremap_prot_fndecl_38695_fields ioremap_prot fndecl 2-1 38695 NULL
++bulk_in_ep_irda_usb_cb_38699_fields bulk_in_ep irda_usb_cb 0 38699 NULL
++get_user_pages_fast_fndecl_38708_fields get_user_pages_fast fndecl 1 38708 NULL
++ifx_spi_insert_flip_string_fndecl_38715_fields ifx_spi_insert_flip_string fndecl 3 38715 NULL
++esrt_data_vardecl_esrt_c_38729_fields esrt_data vardecl_esrt.c 0 38729 NULL
++ports_max_wusbhc_38743_fields ports_max wusbhc 0 38743 NULL
++__page_file_index_fndecl_38744_fields __page_file_index fndecl 0 38744 NULL
++myri10ge_small_bytes_vardecl_myri10ge_c_38752_fields myri10ge_small_bytes vardecl_myri10ge.c 0 38752 NULL nohasharray
++length_snd_hwdep_dsp_image_38752_fields length snd_hwdep_dsp_image 0 38752 &myri10ge_small_bytes_vardecl_myri10ge_c_38752_fields
++tag_ctrl_info_amd8111e_rx_dr_38754_fields tag_ctrl_info amd8111e_rx_dr 0 38754 NULL
++t4_max_iq_size_c4iw_hw_queue_38756_fields t4_max_iq_size c4iw_hw_queue 0 38756 NULL
++pkt_size_rmi_2d_sensor_38762_fields pkt_size rmi_2d_sensor 0 38762 NULL
++default_advmss_dst_ops_38765_fields default_advmss dst_ops 0 38765 NULL
++midi_snd_oxfw_stream_formation_38770_fields midi snd_oxfw_stream_formation 0 38770 NULL
++qib_alloc_devdata_fndecl_38776_fields qib_alloc_devdata fndecl 2 38776 NULL
++sw_end_stm_data_38777_fields sw_end stm_data 0 38777 NULL
++ih_blkno_ocfs2_inode_handle_38779_fields ih_blkno ocfs2_inode_handle 0 38779 NULL
++height_cx231xx_38782_fields height cx231xx 0 38782 NULL
++spi_read_buf_fndecl_38792_fields spi_read_buf fndecl 2 38792 NULL
++get_indirect_ea_fndecl_38798_fields get_indirect_ea fndecl 3 38798 NULL
++ioread32_fndecl_38804_fields ioread32 fndecl 0 38804 NULL nohasharray
++size_esb2rom_window_38804_fields size esb2rom_window 0 38804 &ioread32_fndecl_38804_fields
++raw6_getfrag_fndecl_38805_fields raw6_getfrag fndecl 3-4 38805 NULL
++taglen_compound_hdr_38807_fields taglen compound_hdr 0 38807 NULL
++maxpacksize_snd_usX2Y_substream_38808_fields maxpacksize snd_usX2Y_substream 0 38808 NULL nohasharray
++nb8800_receive_fndecl_38808_fields nb8800_receive fndecl 3 38808 &maxpacksize_snd_usX2Y_substream_38808_fields
++tx_ring_size_bnxt_38811_fields tx_ring_size bnxt 0 38811 NULL
++vlan_tci_sk_buff_38825_fields vlan_tci sk_buff 0 38825 NULL
++algorithm_r5conf_38831_fields algorithm r5conf 0 38831 NULL
++memblock_alloc_fndecl_38847_fields memblock_alloc fndecl 2-0 38847 NULL
++datablob_len_encrypted_key_payload_38850_fields datablob_len encrypted_key_payload 0 38850 NULL
++srs_nslot_sptlrpc_rule_set_38854_fields srs_nslot sptlrpc_rule_set 0 38854 NULL
++srp_map_sg_dma_fndecl_38856_fields srp_map_sg_dma fndecl 0 38856 NULL
++count_ixgbevf_ring_38867_fields count ixgbevf_ring 0 38867 NULL
++sectors_per_track_mspro_devinfo_38870_fields sectors_per_track mspro_devinfo 0 38870 NULL
++mask_mthca_alloc_38874_fields mask mthca_alloc 0 38874 NULL nohasharray
++if_sdio_handle_data_fndecl_38874_fields if_sdio_handle_data fndecl 3 38874 &mask_mthca_alloc_38874_fields
++wmi_set_ie_fndecl_38876_fields wmi_set_ie fndecl 3 38876 NULL
++mmc_spi_skip_fndecl_38879_fields mmc_spi_skip fndecl 3 38879 NULL nohasharray
++error_dvb_ringbuffer_38879_fields error dvb_ringbuffer 0 38879 &mmc_spi_skip_fndecl_38879_fields
++atalk_route_packet_fndecl_38886_fields atalk_route_packet fndecl 5-4 38886 NULL
++read_dummy_spi_nor_38888_fields read_dummy spi_nor 0 38888 NULL
++num_bna_intr_info_38889_fields num bna_intr_info 0 38889 NULL
++beb_rsvd_level_ubi_device_38898_fields beb_rsvd_level ubi_device 0 38898 NULL nohasharray
++reg_phys_intel_iommu_38898_fields reg_phys intel_iommu 0 38898 &beb_rsvd_level_ubi_device_38898_fields
++sg_width_mvs_chip_info_38900_fields sg_width mvs_chip_info 0 38900 NULL
++wr_buflen_nfsd4_write_38903_fields wr_buflen nfsd4_write 0 38903 NULL
++generic_elem_len_local_info_38904_fields generic_elem_len local_info 0 38904 NULL
++length_hfi1_tid_info_38905_fields length hfi1_tid_info 0 38905 NULL
++surface_bpp_drm_fb_helper_surface_size_38906_fields surface_bpp drm_fb_helper_surface_size 0 38906 NULL
++dst_ci_command_fndecl_38908_fields dst_ci_command fndecl 4 38908 NULL nohasharray
++scsi_get_vpd_page_fndecl_38908_fields scsi_get_vpd_page fndecl 4 38908 &dst_ci_command_fndecl_38908_fields
++max_window_tcp_sock_38923_fields max_window tcp_sock 0 38923 NULL
++data_size_ms_system_item_38924_fields data_size ms_system_item 0 38924 NULL
++usb_sg_init_fndecl_38925_fields usb_sg_init fndecl 6-7-3 38925 NULL nohasharray
++num_txqs_octeon_nic_if_config_38925_fields num_txqs octeon_nic_if_config 0 38925 &usb_sg_init_fndecl_38925_fields
++refresh_drm_cmdline_mode_38926_fields refresh drm_cmdline_mode 0 38926 NULL
++tx_queues_vardecl_bond_main_c_38932_fields tx_queues vardecl_bond_main.c 0 38932 NULL
++xfs_alloc_update_counters_fndecl_38938_fields xfs_alloc_update_counters fndecl 0 38938 NULL
++qib_restart_rc_fndecl_38939_fields qib_restart_rc fndecl 2 38939 NULL
++depth_cx231xx_fmt_38940_fields depth cx231xx_fmt 0 38940 NULL
++pcm_open_fndecl_38941_fields pcm_open fndecl 2 38941 NULL
++crypt_scatterlist_fndecl_38942_fields crypt_scatterlist fndecl 4 38942 NULL
++ecryptfs_write_lower_page_segment_fndecl_38943_fields ecryptfs_write_lower_page_segment fndecl 4 38943 NULL
++sc_page_off_o2net_sock_container_38950_fields sc_page_off o2net_sock_container 0 38950 NULL
++in_length_nd_cmd_set_config_hdr_38954_fields in_length nd_cmd_set_config_hdr 0 38954 NULL
++_mv88e6xxx_vtu_new_fndecl_38956_fields _mv88e6xxx_vtu_new fndecl 2 38956 NULL
++of_irq_parse_one_fndecl_38957_fields of_irq_parse_one fndecl 0 38957 NULL
++tcp_copied_sock_xprt_38964_fields tcp_copied sock_xprt 0 38964 NULL
++uregbase_qib_devdata_38972_fields uregbase qib_devdata 0 38972 NULL nohasharray
++wm8350_register_regulator_fndecl_38972_fields wm8350_register_regulator fndecl 2 38972 &uregbase_qib_devdata_38972_fields
++register_buffer_fndecl_38990_fields register_buffer fndecl 3 38990 NULL
++hdr_len_tnl_ptk_info_38993_fields hdr_len tnl_ptk_info 0 38993 NULL
++pcm_buf_elapsed_dma_ofs_snd_card_asihpi_pcm_38998_fields pcm_buf_elapsed_dma_ofs snd_card_asihpi_pcm 0 38998 NULL
++maxqlen_vardecl_seq_oss_init_c_39001_fields maxqlen vardecl_seq_oss_init.c 0 39001 NULL
++tlv_len_nfc_llcp_sdp_tlv_39007_fields tlv_len nfc_llcp_sdp_tlv 0 39007 NULL
++dram_end_intel_sst_drv_39008_fields dram_end intel_sst_drv 0 39008 NULL
++ia_columns_ar5416IniArray_39012_fields ia_columns ar5416IniArray 0 39012 NULL
++xfs_dialloc_ag_inobt_fndecl_39015_fields xfs_dialloc_ag_inobt fndecl 3 39015 NULL
++length_mtd_oob_region_39026_fields length mtd_oob_region 0 39026 NULL
++dlfb_submit_urb_fndecl_39028_fields dlfb_submit_urb fndecl 3 39028 NULL
++video_pbase_osd_info_39032_fields video_pbase osd_info 0 39032 NULL
++fwnet_receive_packet_fndecl_39034_fields fwnet_receive_packet fndecl 9 39034 NULL
++reserve_st_proto_s_39036_fields reserve st_proto_s 0 39036 NULL
++free_ubifs_lprops_39039_fields free ubifs_lprops 0 39039 NULL
++nvmet_ns_alloc_fndecl_39044_fields nvmet_ns_alloc fndecl 2 39044 NULL
++pep_reply_fndecl_39045_fields pep_reply fndecl 5 39045 NULL nohasharray
++fat_readpages_fndecl_39045_fields fat_readpages fndecl 4 39045 &pep_reply_fndecl_39045_fields
++num_ports_u132_39052_fields num_ports u132 0 39052 NULL
++ttm_agp_tt_create_fndecl_39056_fields ttm_agp_tt_create fndecl 3 39056 NULL nohasharray
++get_key_fscache_cookie_def_39056_fields get_key fscache_cookie_def 0 39056 &ttm_agp_tt_create_fndecl_39056_fields
++frameLen_rx_desc_39058_fields frameLen rx_desc 0 39058 NULL nohasharray
++minor_gigaset_driver_39058_fields minor gigaset_driver 0 39058 &frameLen_rx_desc_39058_fields
++send_set_xattr_fndecl_39062_fields send_set_xattr fndecl 6-4 39062 NULL
++n_buckets_bpf_htab_39067_fields n_buckets bpf_htab 0 39067 NULL nohasharray
++bnxt_get_max_irq_fndecl_39067_fields bnxt_get_max_irq fndecl 0 39067 &n_buckets_bpf_htab_39067_fields
++iscsit_handle_immediate_data_fndecl_39071_fields iscsit_handle_immediate_data fndecl 3 39071 NULL
++max_rules_crush_map_39073_fields max_rules crush_map 0 39073 NULL nohasharray
++num_counters_rdma_hw_stats_39073_fields num_counters rdma_hw_stats 0 39073 &max_rules_crush_map_39073_fields
++usbatm_write_cells_fndecl_39074_fields usbatm_write_cells fndecl 0 39074 NULL
++block_id_ms_boot_header_39075_fields block_id ms_boot_header 0 39075 NULL
++frame_len_b43_rxhdr_fw4_39076_fields frame_len b43_rxhdr_fw4 0 39076 NULL
++inode_sysv_dir_entry_39082_fields inode sysv_dir_entry 0 39082 NULL
++sge_rx_fndecl_39089_fields sge_rx fndecl 3 39089 NULL
++d0_vring_rx_dma_39093_fields d0 vring_rx_dma 0 39093 NULL
++negotiate_rsize_smb_version_operations_39094_fields negotiate_rsize smb_version_operations 0 39094 NULL
++n4sz_additional_sensor_data_39102_fields n4sz additional_sensor_data 0 39102 NULL
++array_size_drm_vmw_gb_surface_create_req_39114_fields array_size drm_vmw_gb_surface_create_req 0 39114 NULL
++bg_bits_ocfs2_group_desc_39116_fields bg_bits ocfs2_group_desc 0 39116 NULL
++rds_ib_sysctl_max_send_wr_vardecl_39120_fields rds_ib_sysctl_max_send_wr vardecl 0 39120 NULL
++rl_namelen_rcom_lock_39122_fields rl_namelen rcom_lock 0 39122 NULL
++user_block_count_mspro_sys_info_39124_fields user_block_count mspro_sys_info 0 39124 NULL
++bytes_per_datum_iio_buffer_39125_fields bytes_per_datum iio_buffer 0 39125 NULL
++l2t_end_adapter_39130_fields l2t_end adapter 0 39130 NULL nohasharray
++calc_memmap_size_fndecl_39130_fields calc_memmap_size fndecl 0-2-1 39130 &l2t_end_adapter_39130_fields
++udf_put_filename_fndecl_39133_fields udf_put_filename fndecl 0 39133 NULL nohasharray
++syst_pa_vardecl_sfi_core_c_39133_fields syst_pa vardecl_sfi_core.c 0 39133 &udf_put_filename_fndecl_39133_fields
++ceph_build_auth_request_fndecl_39135_fields ceph_build_auth_request fndecl 0 39135 NULL
++system_sample_rate_hdsp_39140_fields system_sample_rate hdsp 0 39140 NULL
++drvr_sglimit_blogic_adapter_39142_fields drvr_sglimit blogic_adapter 0 39142 NULL
++mmc_test_buffer_transfer_fndecl_39150_fields mmc_test_buffer_transfer fndecl 4 39150 NULL
++size_intel_initial_plane_config_39155_fields size intel_initial_plane_config 0 39155 NULL
++log_root_btrfs_super_block_39157_fields log_root btrfs_super_block 0 39157 NULL
++fcoe_start_cid_cnic_local_39162_fields fcoe_start_cid cnic_local 0 39162 NULL
++ath6kl_tm_rx_event_fndecl_39163_fields ath6kl_tm_rx_event fndecl 3 39163 NULL nohasharray
++sys_readv_fndecl_39163_fields sys_readv fndecl 3 39163 &ath6kl_tm_rx_event_fndecl_39163_fields
++num_mcg_mlx4_profile_39164_fields num_mcg mlx4_profile 0 39164 NULL
++ext2_try_to_allocate_with_rsv_fndecl_39166_fields ext2_try_to_allocate_with_rsv fndecl 0-4 39166 NULL
++ast_gem_create_fndecl_39167_fields ast_gem_create fndecl 2 39167 NULL
++blf_len_xfs_buf_log_format_39169_fields blf_len xfs_buf_log_format 0 39169 NULL
++qsize_inet_frags_39172_fields qsize inet_frags 0 39172 NULL nohasharray
++lib80211_michael_mic_verify_fndecl_39172_fields lib80211_michael_mic_verify fndecl 3 39172 &qsize_inet_frags_39172_fields
++grab_nat_entry_fndecl_39177_fields grab_nat_entry fndecl 2 39177 NULL
++skb_put_fndecl_39184_fields skb_put fndecl 2 39184 NULL
++max_handles_amdgpu_uvd_39193_fields max_handles amdgpu_uvd 0 39193 NULL nohasharray
++ttymajor_vardecl_mxser_c_39193_fields ttymajor vardecl_mxser.c 0 39193 &max_handles_amdgpu_uvd_39193_fields nohasharray
++ib_send_cm_drep_fndecl_39193_fields ib_send_cm_drep fndecl 3 39193 &ttymajor_vardecl_mxser_c_39193_fields
++udc_create_dma_chain_fndecl_39194_fields udc_create_dma_chain fndecl 3 39194 NULL
++rvt_map_phys_fmr_fndecl_39197_fields rvt_map_phys_fmr fndecl 4 39197 NULL
++maxentry_xtheader_39202_fields maxentry xtheader 0 39202 NULL
++mon_bin_compat_ioctl_fndecl_39209_fields mon_bin_compat_ioctl fndecl 3 39209 NULL
++len_vmci_datagram_snd_rcv_info_39211_fields len vmci_datagram_snd_rcv_info 0 39211 NULL
++ieee80211_skb_resize_fndecl_39216_fields ieee80211_skb_resize fndecl 3 39216 NULL
++xlvbd_init_blk_queue_fndecl_39217_fields xlvbd_init_blk_queue fndecl 2-3 39217 NULL
++num_gpu_pages_amdgpu_gart_39218_fields num_gpu_pages amdgpu_gart 0 39218 NULL
++lpfc_bg_setup_bpl_prot_fndecl_39221_fields lpfc_bg_setup_bpl_prot fndecl 0 39221 NULL
++seq_buf_to_user_fndecl_39222_fields seq_buf_to_user fndecl 3 39222 NULL
++max_reqs_kioctx_39227_fields max_reqs kioctx 0 39227 NULL
++xt_socket_get_sock_v4_fndecl_39236_fields xt_socket_get_sock_v4 fndecl 3 39236 NULL
++afs_extract_data_fndecl_39238_fields afs_extract_data fndecl 5 39238 NULL nohasharray
++__devres_alloc_node_fndecl_39238_fields __devres_alloc_node fndecl 2 39238 &afs_extract_data_fndecl_39238_fields
++mon_buff_area_fill_fndecl_39250_fields mon_buff_area_fill fndecl 3 39250 NULL nohasharray
++remote_mps_l2cap_chan_39250_fields remote_mps l2cap_chan 0 39250 &mon_buff_area_fill_fndecl_39250_fields
++raid5_get_active_stripe_fndecl_39252_fields raid5_get_active_stripe fndecl 2 39252 NULL
++num_cons_qed_eth_pf_params_39260_fields num_cons qed_eth_pf_params 0 39260 NULL
++data_offset_napi_gro_cb_39263_fields data_offset napi_gro_cb 0 39263 NULL
++idata_dma_usb_xpad_39278_fields idata_dma usb_xpad 0 39278 NULL
++xfs_rmap_alloc_fndecl_39293_fields xfs_rmap_alloc fndecl 0 39293 NULL nohasharray
++rxrpc_setsockopt_fndecl_39293_fields rxrpc_setsockopt fndecl 5 39293 &xfs_rmap_alloc_fndecl_39293_fields
++page_size_msb_data_39297_fields page_size msb_data 0 39297 NULL nohasharray
++max_vfi_lpfc_max_cfg_param_39297_fields max_vfi lpfc_max_cfg_param 0 39297 &page_size_msb_data_39297_fields nohasharray
++encoding_p_compressed_bm_39297_fields encoding p_compressed_bm 0 39297 &max_vfi_lpfc_max_cfg_param_39297_fields
++cxgbit_xmit_nondatain_pdu_fndecl_39302_fields cxgbit_xmit_nondatain_pdu fndecl 4 39302 NULL
++do_launder_page_fndecl_39306_fields do_launder_page fndecl 0 39306 NULL
++e820_end_of_ram_pfn_fndecl_39315_fields e820_end_of_ram_pfn fndecl 0 39315 NULL nohasharray
++rio_request_outb_dbell_fndecl_39315_fields rio_request_outb_dbell fndecl 3-2 39315 &e820_end_of_ram_pfn_fndecl_39315_fields
++depth_tw68_format_39322_fields depth tw68_format 0 39322 NULL nohasharray
++key_size_x509_parse_context_39322_fields key_size x509_parse_context 0 39322 &depth_tw68_format_39322_fields
++soc_camera_read_fndecl_39324_fields soc_camera_read fndecl 3 39324 NULL nohasharray
++rx_dataoffset_brcmf_msgbuf_39324_fields rx_dataoffset brcmf_msgbuf 0 39324 &soc_camera_read_fndecl_39324_fields
++test_queue_fndecl_39329_fields test_queue fndecl 3-5 39329 NULL
++size_bts_action_39331_fields size bts_action 0 39331 NULL
++unpack_u16_chunk_fndecl_39334_fields unpack_u16_chunk fndecl 0 39334 NULL
++page_jfs_log_39335_fields page jfs_log 0 39335 NULL
++nilfs_sufile_segment_usages_in_block_fndecl_39336_fields nilfs_sufile_segment_usages_in_block fndecl 0-2-3 39336 NULL
++num_channels_hw_mode_spec_39337_fields num_channels hw_mode_spec 0 39337 NULL nohasharray
++tx_pipe_brcmf_usbdev_info_39337_fields tx_pipe brcmf_usbdev_info 0 39337 &num_channels_hw_mode_spec_39337_fields
++svc_create_fndecl_39343_fields svc_create fndecl 2 39343 NULL
++nhead_offs_ubifs_info_39346_fields nhead_offs ubifs_info 0 39346 NULL
++root_offs_ubifs_mst_node_39347_fields root_offs ubifs_mst_node 0 39347 NULL
++roccat_common2_send_with_status_fndecl_39348_fields roccat_common2_send_with_status fndecl 4 39348 NULL
++ksm_might_need_to_copy_fndecl_39350_fields ksm_might_need_to_copy fndecl 3 39350 NULL
++efs_validate_vh_fndecl_39352_fields efs_validate_vh fndecl 0 39352 NULL
++nsize_jffs2_sum_dirent_mem_39355_fields nsize jffs2_sum_dirent_mem 0 39355 NULL
++hub_status_data_hc_driver_39357_fields hub_status_data hc_driver 0 39357 NULL nohasharray
++rbd_obj_request_create_fndecl_39357_fields rbd_obj_request_create fndecl 3-2 39357 &hub_status_data_hc_driver_39357_fields
++tx_ndp_modulus_cdc_ncm_ctx_39369_fields tx_ndp_modulus cdc_ncm_ctx 0 39369 NULL
++nftl_read_oob_fndecl_39370_fields nftl_read_oob fndecl 2-3 39370 NULL
++num_frames_camera_data_39372_fields num_frames camera_data 0 39372 NULL
++vsi_fshino_vxfs_sb_info_39379_fields vsi_fshino vxfs_sb_info 0 39379 NULL
++s_size_public_key_signature_39380_fields s_size public_key_signature 0 39380 NULL
++height_v4l2_mbus_framefmt_39383_fields height v4l2_mbus_framefmt 0 39383 NULL
++from_offset_text_match_39384_fields from_offset text_match 0 39384 NULL nohasharray
++tx_count_ethtool_channels_39384_fields tx_count ethtool_channels 0 39384 &from_offset_text_match_39384_fields
++lfb_depth_screen_info_39385_fields lfb_depth screen_info 0 39385 NULL
++read16_ssb_bus_ops_39388_fields read16 ssb_bus_ops 0 39388 NULL
++pf_cids_qed_tm_iids_39393_fields pf_cids qed_tm_iids 0 39393 NULL
++__page_set_anon_rmap_fndecl_39401_fields __page_set_anon_rmap fndecl 3 39401 NULL
++userptr_radeon_ttm_tt_39408_fields userptr radeon_ttm_tt 0 39408 NULL
++total_vfs_fm10k_iov_info_39412_fields total_vfs fm10k_iov_info 0 39412 NULL
++pages_i40iw_add_page_info_39415_fields pages i40iw_add_page_info 0 39415 NULL
++read8_reg_fndecl_39417_fields read8_reg fndecl 4 39417 NULL
++payld_len_htc_frame_hdr_39418_fields payld_len htc_frame_hdr 0 39418 NULL
++vramsize_sisusb_usb_data_39419_fields vramsize sisusb_usb_data 0 39419 NULL
++board_sample_rate_lx6464es_39420_fields board_sample_rate lx6464es 0 39420 NULL nohasharray
++stretch_height_usb_usbvision_39420_fields stretch_height usb_usbvision 0 39420 &board_sample_rate_lx6464es_39420_fields
++read_eeprom_fndecl_39423_fields read_eeprom fndecl 4 39423 NULL
++cros_ec_spi_receive_response_fndecl_39426_fields cros_ec_spi_receive_response fndecl 2 39426 NULL
++nftl_writeblock_fndecl_39428_fields nftl_writeblock fndecl 2 39428 NULL
++jpeg_len_solo_enc_dev_39431_fields jpeg_len solo_enc_dev 0 39431 NULL
++btrfs_del_csums_fndecl_39434_fields btrfs_del_csums fndecl 3-4 39434 NULL
++iov_len_iovec_39437_fields iov_len iovec 0 39437 NULL nohasharray
++ring_size__drm_i810_init_39437_fields ring_size _drm_i810_init 0 39437 &iov_len_iovec_39437_fields
++irq_sfi_rtc_table_entry_39438_fields irq sfi_rtc_table_entry 0 39438 NULL
++sdio_uart_write_fndecl_39449_fields sdio_uart_write fndecl 3 39449 NULL
++ocfs2_add_refcount_flag_fndecl_39451_fields ocfs2_add_refcount_flag fndecl 6-5 39451 NULL nohasharray
++zl10036_write_fndecl_39451_fields zl10036_write fndecl 3 39451 &ocfs2_add_refcount_flag_fndecl_39451_fields
++recovery_cp_mddev_39459_fields recovery_cp mddev 0 39459 NULL
++security_load_policy_fndecl_39462_fields security_load_policy fndecl 2 39462 NULL
++LMC_PKT_BUF_SZ_vardecl_lmc_main_c_39465_fields LMC_PKT_BUF_SZ vardecl_lmc_main.c 0 39465 NULL
++num_buffers_vardecl_cpia2_v4l_c_39466_fields num_buffers vardecl_cpia2_v4l.c 0 39466 NULL
++xfs_writepage_map_fndecl_39468_fields xfs_writepage_map fndecl 0 39468 NULL
++wipers_mcp4131_cfg_39469_fields wipers mcp4131_cfg 0 39469 NULL
++max_count_octeon_droq_39475_fields max_count octeon_droq 0 39475 NULL
++qib_verbs_send_pio_fndecl_39482_fields qib_verbs_send_pio fndecl 5 39482 NULL
++address_length_acpi_resource_fixed_memory32_39483_fields address_length acpi_resource_fixed_memory32 0 39483 NULL
++iov_iter_bvec_fndecl_39493_fields iov_iter_bvec fndecl 5-4 39493 NULL
++network_header_len_dwceqos_tx_39500_fields network_header_len dwceqos_tx 0 39500 NULL
++ppp_read_fndecl_39514_fields ppp_read fndecl 3 39514 NULL
++npins_intel_community_39518_fields npins intel_community 0 39518 NULL
++txsize_grcan_device_config_39527_fields txsize grcan_device_config 0 39527 NULL
++num_queues_bnx2x_39531_fields num_queues bnx2x 0 39531 NULL
++hugepage_add_new_anon_rmap_fndecl_39534_fields hugepage_add_new_anon_rmap fndecl 3 39534 NULL
++srpt_alloc_ioctx_fndecl_39537_fields srpt_alloc_ioctx fndecl 3 39537 NULL
++elem_size_v4l2_ctrl_39540_fields elem_size v4l2_ctrl 0 39540 NULL
++do_arpt_set_ctl_fndecl_39550_fields do_arpt_set_ctl fndecl 4 39550 NULL
++kaweth_internal_control_msg_fndecl_39552_fields kaweth_internal_control_msg fndecl 5-2 39552 NULL nohasharray
++do_trim_fndecl_39552_fields do_trim fndecl 4-5-3-2 39552 &kaweth_internal_control_msg_fndecl_39552_fields
++from_fw_map_39555_fields from fw_map 0 39555 NULL
++l2specific_len_l2tp_session_39558_fields l2specific_len l2tp_session 0 39558 NULL
++build_backref_tree_fndecl_39561_fields build_backref_tree fndecl 4 39561 NULL
++__ocfs2_find_path_fndecl_39563_fields __ocfs2_find_path fndecl 0 39563 NULL
++disk_size_disk_conf_39567_fields disk_size disk_conf 0 39567 NULL
++sys32_pwrite_fndecl_39572_fields sys32_pwrite fndecl 3 39572 NULL
++oh_len_omninet_header_39576_fields oh_len omninet_header 0 39576 NULL
++nfs4_file_llseek_fndecl_39578_fields nfs4_file_llseek fndecl 2 39578 NULL
++snbep_pci2phy_map_init_fndecl_39582_fields snbep_pci2phy_map_init fndecl 1 39582 NULL
++len_ubifs_scan_node_39584_fields len ubifs_scan_node 0 39584 NULL
++req_que_len_qla_hw_data_39587_fields req_que_len qla_hw_data 0 39587 NULL
++rq_bytes_sent_rpc_rqst_39591_fields rq_bytes_sent rpc_rqst 0 39591 NULL
++xfs_extent_free_create_intent_fndecl_39592_fields xfs_extent_free_create_intent fndecl 2 39592 NULL
++amanda_help_fndecl_39598_fields amanda_help fndecl 2 39598 NULL
++dm_consult_userspace_fndecl_39601_fields dm_consult_userspace fndecl 5 39601 NULL
++midi_ports_snd_emux_39605_fields midi_ports snd_emux 0 39605 NULL nohasharray
++ti_recv_fndecl_39605_fields ti_recv fndecl 3 39605 &midi_ports_snd_emux_39605_fields
++double_length_smbios_cru64_info_39607_fields double_length smbios_cru64_info 0 39607 NULL
++iscsi_nop_out_rsp_fndecl_39614_fields iscsi_nop_out_rsp fndecl 4 39614 NULL
++gpio_cs_count_tiny_spi_39618_fields gpio_cs_count tiny_spi 0 39618 NULL
++rx_buffer_order_efx_nic_39620_fields rx_buffer_order efx_nic 0 39620 NULL
++cookie_len_l2tp_session_39629_fields cookie_len l2tp_session 0 39629 NULL
++max_cq_sz_mthca_dev_lim_39630_fields max_cq_sz mthca_dev_lim 0 39630 NULL
++fb_phys_ocfb_dev_39632_fields fb_phys ocfb_dev 0 39632 NULL
++xfs_bmbt_lookup_ge_fndecl_39633_fields xfs_bmbt_lookup_ge fndecl 3-4-2 39633 NULL
++saa7134_alsa_dma_init_fndecl_39636_fields saa7134_alsa_dma_init fndecl 2 39636 NULL
++setup_arg_pages_fndecl_39645_fields setup_arg_pages fndecl 2 39645 NULL
++psn_rvt_swqe_39647_fields psn rvt_swqe 0 39647 NULL
++lookup_node_fndecl_39648_fields lookup_node fndecl 1 39648 NULL
++tx_len_hw_modul_39649_fields tx_len hw_modul 0 39649 NULL
++v9fs_listxattr_fndecl_39654_fields v9fs_listxattr fndecl 3 39654 NULL
++shmem_pseudo_vma_init_fndecl_39661_fields shmem_pseudo_vma_init fndecl 3 39661 NULL
++skb_copy_datagram_iter_fndecl_39662_fields skb_copy_datagram_iter fndecl 4-2-0 39662 NULL
++viafb_get_fb_size_from_pci_fndecl_39663_fields viafb_get_fb_size_from_pci fndecl 0 39663 NULL
++snd_rawmidi_transmit_peek_fndecl_39668_fields snd_rawmidi_transmit_peek fndecl 3-0 39668 NULL
++der_length_size_fndecl_39673_fields der_length_size fndecl 0 39673 NULL
++sectorsize_btrfs_super_block_39674_fields sectorsize btrfs_super_block 0 39674 NULL
++rdma_read_chunk_frmr_fndecl_39676_fields rdma_read_chunk_frmr fndecl 7-8 39676 NULL
++priv_size_Qdisc_ops_39692_fields priv_size Qdisc_ops 0 39692 NULL nohasharray
++fd_block_size_fd_dev_39692_fields fd_block_size fd_dev 0 39692 &priv_size_Qdisc_ops_39692_fields
++length_rvt_swqe_39694_fields length rvt_swqe 0 39694 NULL
++nb_ace_cci_nb_ports_39699_fields nb_ace cci_nb_ports 0 39699 NULL
++badblockpos_nand_chip_39700_fields badblockpos nand_chip 0 39700 NULL
++tid_ieee80211_ra_tid_39703_fields tid ieee80211_ra_tid 0 39703 NULL
++xfs_growfs_get_hdr_buf_fndecl_39706_fields xfs_growfs_get_hdr_buf fndecl 2-3 39706 NULL
++raid5_sync_request_fndecl_39721_fields raid5_sync_request fndecl 2 39721 NULL
++e1000_change_mtu_fndecl_39722_fields e1000_change_mtu fndecl 2 39722 NULL
++pglen_pnfs_device_39724_fields pglen pnfs_device 0 39724 NULL
++max_wrs_iwch_rnic_attributes_39735_fields max_wrs iwch_rnic_attributes 0 39735 NULL
++__hostap_add_bss_fndecl_39739_fields __hostap_add_bss fndecl 4 39739 NULL
++nla_reserve_64bit_fndecl_39742_fields nla_reserve_64bit fndecl 3 39742 NULL
++scif_unregister_fndecl_39743_fields scif_unregister fndecl 3 39743 NULL
++_ubh_bread__fndecl_39744_fields _ubh_bread_ fndecl 3 39744 NULL
++pipe_handler_request_fndecl_39749_fields pipe_handler_request fndecl 5 39749 NULL
++ocfs2_xattr_block_get_fndecl_39750_fields ocfs2_xattr_block_get fndecl 0 39750 NULL nohasharray
++total_blocks_hfsplus_sb_info_39750_fields total_blocks hfsplus_sb_info 0 39750 &ocfs2_xattr_block_get_fndecl_39750_fields
++drm_gtf2_2j_fndecl_39751_fields drm_gtf2_2j fndecl 0 39751 NULL
++am_length_xfs_attr_multiop_39754_fields am_length xfs_attr_multiop 0 39754 NULL
++delta_disks_mddev_39759_fields delta_disks mddev 0 39759 NULL
++map_swap_page_fndecl_39768_fields map_swap_page fndecl 0 39768 NULL nohasharray
++free_full_branch_fndecl_39768_fields free_full_branch fndecl 2 39768 &map_swap_page_fndecl_39768_fields
++add_range_with_merge_fndecl_39778_fields add_range_with_merge fndecl 5-4 39778 NULL
++num_supplies_wm8994_39780_fields num_supplies wm8994 0 39780 NULL
++__collapse_huge_page_isolate_fndecl_39784_fields __collapse_huge_page_isolate fndecl 2 39784 NULL
++buf_rte_log_le_39791_fields buf rte_log_le 0 39791 NULL
++digital_dep_link_up_fndecl_39793_fields digital_dep_link_up fndecl 5 39793 NULL
++den_max_snd_ratnum_39802_fields den_max snd_ratnum 0 39802 NULL
++meta_dev_idx_disk_conf_39810_fields meta_dev_idx disk_conf 0 39810 NULL
++jffs2_link_node_ref_fndecl_39817_fields jffs2_link_node_ref fndecl 3-4 39817 NULL
++pan_y_yuv_frame_info_39830_fields pan_y yuv_frame_info 0 39830 NULL
++sb_inopblock_xfs_sb_39837_fields sb_inopblock xfs_sb 0 39837 NULL nohasharray
++io_vardecl_arc_rimi_c_39837_fields io vardecl_arc-rimi.c 0 39837 &sb_inopblock_xfs_sb_39837_fields nohasharray
++pci_scan_root_bus_fndecl_39837_fields pci_scan_root_bus fndecl 2 39837 &io_vardecl_arc_rimi_c_39837_fields
++maxattr_genl_family_39841_fields maxattr genl_family 0 39841 NULL nohasharray
++_offset_iwl_rx_cmd_buffer_39841_fields _offset iwl_rx_cmd_buffer 0 39841 &maxattr_genl_family_39841_fields
++digi_write_inb_command_fndecl_39846_fields digi_write_inb_command fndecl 3 39846 NULL
++height_cx25821_channel_39847_fields height cx25821_channel 0 39847 NULL
++xres_panel_info_39849_fields xres panel_info 0 39849 NULL
++imtu_l2cap_chan_39857_fields imtu l2cap_chan 0 39857 NULL
++usb_stor_reset_common_fndecl_39866_fields usb_stor_reset_common fndecl 7 39866 NULL
++self_check_write_fndecl_39867_fields self_check_write fndecl 5 39867 NULL
++__bdev_writeseg_fndecl_39876_fields __bdev_writeseg fndecl 4-2 39876 NULL
++xfs_alloc_get_freelist_fndecl_39881_fields xfs_alloc_get_freelist fndecl 0 39881 NULL
++resync_offset_mdp_superblock_1_39883_fields resync_offset mdp_superblock_1 0 39883 NULL
++btrfs_bio_wq_end_io_fndecl_39884_fields btrfs_bio_wq_end_io fndecl 0 39884 NULL
++xfs_iext_remove_fndecl_39886_fields xfs_iext_remove fndecl 3 39886 NULL
++osd_req_write_sg_fndecl_39887_fields osd_req_write_sg fndecl 5 39887 NULL
++video_base_sis_video_info_39896_fields video_base sis_video_info 0 39896 NULL
++s_inodes_per_group_ext4_sb_info_39910_fields s_inodes_per_group ext4_sb_info 0 39910 NULL
++spi_map_buf_fndecl_39919_fields spi_map_buf fndecl 5-0 39919 NULL
++i_eoffset_bfs_inode_39921_fields i_eoffset bfs_inode 0 39921 NULL
++qos_rmt_entries_fndecl_39927_fields qos_rmt_entries fndecl 0 39927 NULL
++data_blocks_dm_verity_39930_fields data_blocks dm_verity 0 39930 NULL
++vhost_iotlb_miss_fndecl_39933_fields vhost_iotlb_miss fndecl 2 39933 NULL
++max_mp_regs_mwifiex_sdio_card_reg_39936_fields max_mp_regs mwifiex_sdio_card_reg 0 39936 NULL
++height_font_desc_39938_fields height font_desc 0 39938 NULL nohasharray
++btrfs_i_size_write_fndecl_39938_fields btrfs_i_size_write fndecl 2 39938 &height_font_desc_39938_fields
++row_shift_omap4_keypad_39944_fields row_shift omap4_keypad 0 39944 NULL
++find_ts_ops_39950_fields find ts_ops 0 39950 NULL
++cn_size_x509_parse_context_39975_fields cn_size x509_parse_context 0 39975 NULL nohasharray
++msg_length_pcnet32_rx_head_39975_fields msg_length pcnet32_rx_head 0 39975 &cn_size_x509_parse_context_39975_fields nohasharray
++__hfsplus_getxattr_fndecl_39975_fields __hfsplus_getxattr fndecl 0 39975 &msg_length_pcnet32_rx_head_39975_fields
++xfs_map_blocks_fndecl_39985_fields xfs_map_blocks fndecl 2-0 39985 NULL
++extLength_kernel_long_ad_39988_fields extLength kernel_long_ad 0 39988 NULL
++btrfs_free_reserved_data_space_fndecl_39989_fields btrfs_free_reserved_data_space fndecl 2-3 39989 NULL
++lane_count_intel_dsi_39994_fields lane_count intel_dsi 0 39994 NULL
++playback_bufsize_vardecl_nm256_c_39995_fields playback_bufsize vardecl_nm256.c 0 39995 NULL
++start_sram_reserve_39999_fields start sram_reserve 0 39999 NULL
++dm_btree_lookup_next_single_fndecl_40001_fields dm_btree_lookup_next_single fndecl 2 40001 NULL
++r820t_read_fndecl_40007_fields r820t_read fndecl 4 40007 NULL
++memblock_isolate_range_fndecl_40008_fields memblock_isolate_range fndecl 3-2 40008 NULL
++dch_empty_fifo_fndecl_40013_fields dch_empty_fifo fndecl 2 40013 NULL
++xfs_iformat_local_fndecl_40019_fields xfs_iformat_local fndecl 4 40019 NULL
++verify_alg_len_net_conf_40020_fields verify_alg_len net_conf 0 40020 NULL
++vmw_mob_calculate_pt_pages_fndecl_40022_fields vmw_mob_calculate_pt_pages fndecl 0-1 40022 NULL
++esp4_get_mtu_fndecl_40024_fields esp4_get_mtu fndecl 0-2 40024 NULL
++lpfc_debugfs_nodelist_data_fndecl_40039_fields lpfc_debugfs_nodelist_data fndecl 0 40039 NULL
++pos_splice_desc_40040_fields pos splice_desc 0 40040 NULL
++data_len_ecryptfs_message_40042_fields data_len ecryptfs_message 0 40042 NULL
++memdiff_vardecl_tridentfb_c_40043_fields memdiff vardecl_tridentfb.c 0 40043 NULL nohasharray
++read_partial_fndecl_40043_fields read_partial fndecl 2 40043 &memdiff_vardecl_tridentfb_c_40043_fields
++bind_cmd_count_vmw_ctx_binding_state_40054_fields bind_cmd_count vmw_ctx_binding_state 0 40054 NULL
++smp_execute_task_fndecl_40062_fields smp_execute_task fndecl 3-5-0 40062 NULL
++region_size_switch_ctx_40069_fields region_size switch_ctx 0 40069 NULL
++max_pq_dma_device_40070_fields max_pq dma_device 0 40070 NULL
++tda18271_write_regs_fndecl_40082_fields tda18271_write_regs fndecl 3 40082 NULL
++wIELength_uwb_rc_cmd_set_ie_40094_fields wIELength uwb_rc_cmd_set_ie 0 40094 NULL
++zap_page_range_fndecl_40097_fields zap_page_range fndecl 3-2 40097 NULL
++vma_needs_reservation_fndecl_40101_fields vma_needs_reservation fndecl 3 40101 NULL
++evm_inode_setattr_fndecl_40105_fields evm_inode_setattr fndecl 0 40105 NULL nohasharray
++lh_blkno_gfs2_log_header_host_40105_fields lh_blkno gfs2_log_header_host 0 40105 &evm_inode_setattr_fndecl_40105_fields
++frag_rx_path_fndecl_40106_fields frag_rx_path fndecl 3 40106 NULL nohasharray
++u_dsize_user32_40106_fields u_dsize user32 0 40106 &frag_rx_path_fndecl_40106_fields
++xfs_pnfs_validate_isize_fndecl_40107_fields xfs_pnfs_validate_isize fndecl 2 40107 NULL
++r8a66597_urb_dequeue_fndecl_40110_fields r8a66597_urb_dequeue fndecl 3 40110 NULL
++alloc_chunk_fndecl_40116_fields alloc_chunk fndecl 1 40116 NULL nohasharray
++drv_data_size_rt2x00_ops_40116_fields drv_data_size rt2x00_ops 0 40116 &alloc_chunk_fndecl_40116_fields
++byte_count_vardecl_initramfs_c_40121_fields byte_count vardecl_initramfs.c 0 40121 NULL nohasharray
++sd_pkt_scan_fndecl_40121_fields sd_pkt_scan fndecl 3 40121 &byte_count_vardecl_initramfs_c_40121_fields
++mspi_apply_qe_mode_quirks_fndecl_40137_fields mspi_apply_qe_mode_quirks fndecl 0-3 40137 NULL nohasharray
++num_jumbo_rxd_netxen_adapter_40137_fields num_jumbo_rxd netxen_adapter 0 40137 &mspi_apply_qe_mode_quirks_fndecl_40137_fields
++off_fuse_notify_inval_inode_out_40142_fields off fuse_notify_inval_inode_out 0 40142 NULL
++ftdi_elan_edset_single_fndecl_40157_fields ftdi_elan_edset_single fndecl 0 40157 NULL
++xfs_ialloc_get_rec_fndecl_40163_fields xfs_ialloc_get_rec fndecl 2 40163 NULL
++sh_size_elf64_shdr_40164_fields sh_size elf64_shdr 0 40164 NULL
++pge_ctl_drm_psb_private_40167_fields pge_ctl drm_psb_private 0 40167 NULL
++dev_stripes_btrfs_raid_attr_40170_fields dev_stripes btrfs_raid_attr 0 40170 NULL
++bluecard_write_fndecl_40179_fields bluecard_write fndecl 0-4 40179 NULL
++of_get_nand_ecc_strength_fndecl_40180_fields of_get_nand_ecc_strength fndecl 0 40180 NULL
++status_boom_rx_desc_40185_fields status boom_rx_desc 0 40185 NULL
++reshape_progress_r5conf_40192_fields reshape_progress r5conf 0 40192 NULL
++peb_size_ubi_device_40195_fields peb_size ubi_device 0 40195 NULL
++__jfs_setxattr_fndecl_40196_fields __jfs_setxattr fndecl 5 40196 NULL nohasharray
++dma_contiguous_reserve_area_fndecl_40196_fields dma_contiguous_reserve_area fndecl 1-2-3 40196 &__jfs_setxattr_fndecl_40196_fields
++vga_video_num_lines_vardecl_vgacon_c_40199_fields vga_video_num_lines vardecl_vgacon.c 0 40199 NULL
++pvr2_ctrl_get_min_fndecl_40204_fields pvr2_ctrl_get_min fndecl 0 40204 NULL
++dvb_dvr_ioctl_fndecl_40205_fields dvb_dvr_ioctl fndecl 2 40205 NULL
++num_amgms_mlx4_caps_40207_fields num_amgms mlx4_caps 0 40207 NULL
++ipwireless_tty_received_fndecl_40209_fields ipwireless_tty_received fndecl 3 40209 NULL
++len_p80211ioctl_req_40220_fields len p80211ioctl_req 0 40220 NULL
++bochs_bo_create_fndecl_40223_fields bochs_bo_create fndecl 2 40223 NULL
++find_gmch_fndecl_40235_fields find_gmch fndecl 1 40235 NULL
++ndr_size_nd_region_40243_fields ndr_size nd_region 0 40243 NULL
++lola_init_stream_fndecl_40245_fields lola_init_stream fndecl 3 40245 NULL
++mmap_file_operations_40250_fields mmap file_operations 0 40250 NULL nohasharray
++layoutupdate_len_nfs4_layoutcommit_args_40250_fields layoutupdate_len nfs4_layoutcommit_args 0 40250 &mmap_file_operations_40250_fields
++max_sectors_queue_limits_40252_fields max_sectors queue_limits 0 40252 NULL
++ucNumOfPowerModeEntries__ATOM_POWERPLAY_INFO_40261_fields ucNumOfPowerModeEntries _ATOM_POWERPLAY_INFO 0 40261 NULL
++stop_discovery_fndecl_40262_fields stop_discovery fndecl 4 40262 NULL
++slba_nvme_user_io_40271_fields slba nvme_user_io 0 40271 NULL
++es_len_extent_status_40276_fields es_len extent_status 0 40276 NULL
++mask___kfifo_40288_fields mask __kfifo 0 40288 NULL
++tcpnv_cong_avoid_fndecl_40297_fields tcpnv_cong_avoid fndecl 3 40297 NULL
++thoff_xt_action_param_40301_fields thoff xt_action_param 0 40301 NULL
++cyttsp_spi_xfer_fndecl_40307_fields cyttsp_spi_xfer fndecl 6 40307 NULL
++gfs2_free_meta_fndecl_40312_fields gfs2_free_meta fndecl 2 40312 NULL
++max_scaled_width_bttv_crop_40325_fields max_scaled_width bttv_crop 0 40325 NULL
++dm_rh_get_region_key_fndecl_40342_fields dm_rh_get_region_key fndecl 0 40342 NULL
++__ext4_ext_dirty_fndecl_40343_fields __ext4_ext_dirty fndecl 0 40343 NULL nohasharray
++minimum_acpi_resource_memory32_40343_fields minimum acpi_resource_memory32 0 40343 &__ext4_ext_dirty_fndecl_40343_fields
++free_ubifs_lpt_lprops_40346_fields free ubifs_lpt_lprops 0 40346 NULL
++default_llseek_fndecl_40353_fields default_llseek fndecl 2 40353 NULL
++pgbase_pnfs_device_40355_fields pgbase pnfs_device 0 40355 NULL
++reg_list_format_size_bytes_rlc_firmware_header_v2_0_40357_fields reg_list_format_size_bytes rlc_firmware_header_v2_0 0 40357 NULL
++cblock_dm_cache_migration_40361_fields cblock dm_cache_migration 0 40361 NULL
++cfpkt_setlen_fndecl_40364_fields cfpkt_setlen fndecl 2 40364 NULL nohasharray
++max_wrs_rds_ib_device_40364_fields max_wrs rds_ib_device 0 40364 &cfpkt_setlen_fndecl_40364_fields
++pages_per_wr_bio_scrub_wr_ctx_40374_fields pages_per_wr_bio scrub_wr_ctx 0 40374 NULL
++align_kmem_cache_40377_fields align kmem_cache 0 40377 NULL
++cfg0_size_pcie_port_40380_fields cfg0_size pcie_port 0 40380 NULL
++ilm_len_mt76_fw_header_40389_fields ilm_len mt76_fw_header 0 40389 NULL
++alloc_test_extent_buffer_fndecl_40392_fields alloc_test_extent_buffer fndecl 2-3 40392 NULL nohasharray
++px_raw_event_fndecl_40392_fields px_raw_event fndecl 4 40392 &alloc_test_extent_buffer_fndecl_40392_fields
++file_secno_bplus_leaf_node_40394_fields file_secno bplus_leaf_node 0 40394 NULL nohasharray
++sb_root_hpfs_sb_info_40394_fields sb_root hpfs_sb_info 0 40394 &file_secno_bplus_leaf_node_40394_fields
++snd_ak4113_external_rate_fndecl_40404_fields snd_ak4113_external_rate fndecl 0 40404 NULL nohasharray
++max_scaled_height_bttv_crop_40404_fields max_scaled_height bttv_crop 0 40404 &snd_ak4113_external_rate_fndecl_40404_fields
++arm_clear_user_fndecl_40410_fields arm_clear_user fndecl 0 40410 NULL
++level3cnt_capi_register_params_40411_fields level3cnt capi_register_params 0 40411 NULL
++bulk_out_epnum_usb_cardstate_40412_fields bulk_out_epnum usb_cardstate 0 40412 NULL
++vm_end_vm_area_struct_40413_fields vm_end vm_area_struct 0 40413 NULL nohasharray
++vma_commit_reservation_fndecl_40413_fields vma_commit_reservation fndecl 3 40413 &vm_end_vm_area_struct_40413_fields
++__ioremap_caller_fndecl_40419_fields __ioremap_caller fndecl 2-1 40419 NULL
++buf_size_in_bytes_kfd_ioctl_dbg_wave_control_args_40427_fields buf_size_in_bytes kfd_ioctl_dbg_wave_control_args 0 40427 NULL
++readisac_IsdnCardState_40429_fields readisac IsdnCardState 0 40429 NULL
++error_reserve_ticket_40431_fields error reserve_ticket 0 40431 NULL
++skb_partial_csum_set_fndecl_40436_fields skb_partial_csum_set fndecl 2 40436 NULL
++__i915_error_advance_fndecl_40440_fields __i915_error_advance fndecl 2 40440 NULL
++numdisabled_tun_struct_40442_fields numdisabled tun_struct 0 40442 NULL
++begin_switchdev_vlan_dump_40443_fields begin switchdev_vlan_dump 0 40443 NULL
++gnttab_setup_auto_xlat_frames_fndecl_40455_fields gnttab_setup_auto_xlat_frames fndecl 1 40455 NULL
++curpacksize_snd_usb_endpoint_40462_fields curpacksize snd_usb_endpoint 0 40462 NULL
++nr_i2c_adapter_40466_fields nr i2c_adapter 0 40466 NULL
++memblock_add_node_fndecl_40484_fields memblock_add_node fndecl 1-2 40484 NULL
++eh_depth_ext4_extent_header_40488_fields eh_depth ext4_extent_header 0 40488 NULL
++s_cgoffset_ufs_sb_private_info_40490_fields s_cgoffset ufs_sb_private_info 0 40490 NULL
++tx_max_cdc_ncm_ctx_40493_fields tx_max cdc_ncm_ctx 0 40493 NULL nohasharray
++num_mtts_mlx4_caps_40493_fields num_mtts mlx4_caps 0 40493 &tx_max_cdc_ncm_ctx_40493_fields nohasharray
++length_mtd_oob_buf32_40493_fields length mtd_oob_buf32 0 40493 &num_mtts_mlx4_caps_40493_fields
++len_tx_buf_40498_fields len tx_buf 0 40498 NULL
++header_length_datalink_proto_40501_fields header_length datalink_proto 0 40501 NULL
++size_iscsi_segment_40510_fields size iscsi_segment 0 40510 NULL nohasharray
++start_cnic_id_tbl_40510_fields start cnic_id_tbl 0 40510 &size_iscsi_segment_40510_fields
++max_soc_bytes_ext_40512_fields max soc_bytes_ext 0 40512 NULL
++tcp_slow_start_fndecl_40515_fields tcp_slow_start fndecl 0-2 40515 NULL
++dn_mss_from_pmtu_fndecl_40520_fields dn_mss_from_pmtu fndecl 0-2 40520 NULL
++rx_cmp_len_flags_type_rx_cmp_40525_fields rx_cmp_len_flags_type rx_cmp 0 40525 NULL
++bnx2x_change_num_queues_fndecl_40532_fields bnx2x_change_num_queues fndecl 2 40532 NULL
++rsxx_queue_dma_fndecl_40533_fields rsxx_queue_dma fndecl 0 40533 NULL nohasharray
++smb2_lockv_fndecl_40533_fields smb2_lockv fndecl 6 40533 &rsxx_queue_dma_fndecl_40533_fields
++is_acpi_reserved_fndecl_40540_fields is_acpi_reserved fndecl 2-1 40540 NULL
++truncate_hole_fndecl_40543_fields truncate_hole fndecl 2-3 40543 NULL
++sky2_get_rx_data_size_fndecl_40544_fields sky2_get_rx_data_size fndecl 0 40544 NULL nohasharray
++bnx2x_get_preset_regs_len_fndecl_40544_fields bnx2x_get_preset_regs_len fndecl 0 40544 &sky2_get_rx_data_size_fndecl_40544_fields
++base_start_aac_dev_40550_fields base_start aac_dev 0 40550 NULL nohasharray
++num_ios_vardecl_40550_fields num_ios vardecl 0 40550 &base_start_aac_dev_40550_fields
++read_partial_message_section_fndecl_40551_fields read_partial_message_section fndecl 3 40551 NULL
++xfs_file_iomap_end_delalloc_fndecl_40555_fields xfs_file_iomap_end_delalloc fndecl 4-2 40555 NULL
++maxpacket_isp1362_ep_40564_fields maxpacket isp1362_ep 0 40564 NULL
++ptrace_readdata_fndecl_40567_fields ptrace_readdata fndecl 4-2 40567 NULL
++ucNumStates__ATOM_PPLIB_POWERPLAYTABLE_40568_fields ucNumStates _ATOM_PPLIB_POWERPLAYTABLE 0 40568 NULL
++caif_stream_sendmsg_fndecl_40573_fields caif_stream_sendmsg fndecl 3 40573 NULL
++qp_alloc_queue_fndecl_40575_fields qp_alloc_queue fndecl 1 40575 NULL
++dm_bufio_read_fndecl_40577_fields dm_bufio_read fndecl 2 40577 NULL
++compat_sys_preadv2_fndecl_40579_fields compat_sys_preadv2 fndecl 3 40579 NULL
++hfi1_alloc_devdata_fndecl_40584_fields hfi1_alloc_devdata fndecl 2 40584 NULL
++dram_size_sst_res_info_40602_fields dram_size sst_res_info 0 40602 NULL
++value_len_ext4_xattr_info_40604_fields value_len ext4_xattr_info 0 40604 NULL
++rf_size_rt2x00_ops_40605_fields rf_size rt2x00_ops 0 40605 NULL
++vyres_aty128_crtc_40610_fields vyres aty128_crtc 0 40610 NULL
++page_offset_octeon_skb_page_info_40618_fields page_offset octeon_skb_page_info 0 40618 NULL
++num_queues_qed_dev_eth_info_40624_fields num_queues qed_dev_eth_info 0 40624 NULL nohasharray
++mailbox_start_sst_info_40624_fields mailbox_start sst_info 0 40624 &num_queues_qed_dev_eth_info_40624_fields
++pcpu_get_vm_areas_fndecl_40630_fields pcpu_get_vm_areas fndecl 4 40630 NULL nohasharray
++db_addr_mlx5_ib_create_wq_40630_fields db_addr mlx5_ib_create_wq 0 40630 &pcpu_get_vm_areas_fndecl_40630_fields
++dev_set_alias_fndecl_40631_fields dev_set_alias fndecl 3 40631 NULL
++map_dirent_fndecl_40635_fields map_dirent fndecl 2 40635 NULL
++rotate_buf_a_little_fndecl_40654_fields rotate_buf_a_little fndecl 2 40654 NULL
++rq_rcvsize_rpc_rqst_40660_fields rq_rcvsize rpc_rqst 0 40660 NULL
++number_xt_af_40661_fields number xt_af 0 40661 NULL
++aac_nark_ioremap_fndecl_40672_fields aac_nark_ioremap fndecl 2 40672 NULL
++num_queue_pairs_i40e_virtchnl_vsi_resource_40682_fields num_queue_pairs i40e_virtchnl_vsi_resource 0 40682 NULL
++qed_cxt_get_proto_cid_count_fndecl_40685_fields qed_cxt_get_proto_cid_count fndecl 0 40685 NULL
++ubi_resize_volume_fndecl_40687_fields ubi_resize_volume fndecl 2 40687 NULL nohasharray
++xfs_get_blocks_direct_fndecl_40687_fields xfs_get_blocks_direct fndecl 2 40687 &ubi_resize_volume_fndecl_40687_fields
++aa_simple_write_to_buffer_fndecl_40704_fields aa_simple_write_to_buffer fndecl 3 40704 NULL
++max_znode_sz_ubifs_info_40705_fields max_znode_sz ubifs_info 0 40705 NULL
++ctrl_out_pipe_hfcsusb_40706_fields ctrl_out_pipe hfcsusb 0 40706 NULL
++__x86_set_memory_region_fndecl_40708_fields __x86_set_memory_region fndecl 4 40708 NULL nohasharray
++nTxBlock_vardecl_jfs_txnmgr_c_40708_fields nTxBlock vardecl_jfs_txnmgr.c 0 40708 &__x86_set_memory_region_fndecl_40708_fields
++lfb_linelength_screen_info_40728_fields lfb_linelength screen_info 0 40728 NULL
++cryptlen_aead_request_40734_fields cryptlen aead_request 0 40734 NULL nohasharray
++page_order_ring_buffer_40734_fields page_order ring_buffer 0 40734 &cryptlen_aead_request_40734_fields
++NumberOfLogBlock_ms_lib_ctrl_40736_fields NumberOfLogBlock ms_lib_ctrl 0 40736 NULL
++do_splice_to_fndecl_40737_fields do_splice_to fndecl 0 40737 NULL
++sisfb_getheapstart_fndecl_40740_fields sisfb_getheapstart fndecl 0 40740 NULL nohasharray
++intel_gtt_mappable_entries_fndecl_40740_fields intel_gtt_mappable_entries fndecl 0 40740 &sisfb_getheapstart_fndecl_40740_fields
++IELength_wlan_bssid_ex_40743_fields IELength wlan_bssid_ex 0 40743 NULL
++smsc47b397_find_fndecl_40748_fields smsc47b397_find fndecl 0 40748 NULL
++ctrl_macb_dma_desc_40750_fields ctrl macb_dma_desc 0 40750 NULL
++read_reg_isac_hw_40755_fields read_reg isac_hw 0 40755 NULL
++snd_usb_endpoint_set_params_fndecl_40756_fields snd_usb_endpoint_set_params fndecl 3-4 40756 NULL
++vfs_iter_write_fndecl_40761_fields vfs_iter_write fndecl 0 40761 NULL
++total_xfer_length_ScsiReqBlk_40768_fields total_xfer_length ScsiReqBlk 0 40768 NULL
++pdu_write_fndecl_40774_fields pdu_write fndecl 3 40774 NULL
++private_data_len_rdma_conn_param_40796_fields private_data_len rdma_conn_param 0 40796 NULL
++check_frame_fndecl_40798_fields check_frame fndecl 0 40798 NULL nohasharray
++ext4_dio_get_block_fndecl_40798_fields ext4_dio_get_block fndecl 2 40798 &check_frame_fndecl_40798_fields nohasharray
++ext4_multi_mount_protect_fndecl_40798_fields ext4_multi_mount_protect fndecl 2 40798 &ext4_dio_get_block_fndecl_40798_fields
++multi_write_idx_wmi_40801_fields multi_write_idx wmi 0 40801 NULL nohasharray
++cmd_len_request_40801_fields cmd_len request 0 40801 &multi_write_idx_wmi_40801_fields
++data_offset_raid_set_40802_fields data_offset raid_set 0 40802 NULL
++sz_m1_mlx5_wq_ll_40805_fields sz_m1 mlx5_wq_ll 0 40805 NULL
++ceph_osdc_readpages_fndecl_40814_fields ceph_osdc_readpages fndecl 0 40814 NULL nohasharray
++sysctl_wmem_max_vardecl_40814_fields sysctl_wmem_max vardecl 0 40814 &ceph_osdc_readpages_fndecl_40814_fields
++dma_pad_mask_request_queue_40816_fields dma_pad_mask request_queue 0 40816 NULL
++INFTL_findfreeblock_fndecl_40819_fields INFTL_findfreeblock fndecl 0 40819 NULL
++isku_sysfs_write_fndecl_40820_fields isku_sysfs_write fndecl 5 40820 NULL
++l2_fhdr_ip_xsum_l2_fhdr_40843_fields l2_fhdr_ip_xsum l2_fhdr 0 40843 NULL
++newblocks_xfs_growfs_data_40847_fields newblocks xfs_growfs_data 0 40847 NULL
++extended_capabilities_len_wiphy_40861_fields extended_capabilities_len wiphy 0 40861 NULL
++ext2_splice_branch_fndecl_40864_fields ext2_splice_branch fndecl 5 40864 NULL
++iraw_loop_fndecl_40865_fields iraw_loop fndecl 0-1 40865 NULL
++nvram_llseek_fndecl_40869_fields nvram_llseek fndecl 2 40869 NULL
++reply_queue_count_MPT3SAS_ADAPTER_40870_fields reply_queue_count MPT3SAS_ADAPTER 0 40870 NULL
++sector_count_partition_40874_fields sector_count partition 0 40874 NULL
++config_len_mic_device_desc_40877_fields config_len mic_device_desc 0 40877 NULL
++osst_set_options_fndecl_40884_fields osst_set_options fndecl 2 40884 NULL nohasharray
++min_agbno_xfs_alloc_arg_40884_fields min_agbno xfs_alloc_arg 0 40884 &osst_set_options_fndecl_40884_fields
++tcf_csum_ipv4_tcp_fndecl_40889_fields tcf_csum_ipv4_tcp fndecl 3 40889 NULL
++size_drm_i915_gem_mmap_40890_fields size drm_i915_gem_mmap 0 40890 NULL
++pci_add_dynid_fndecl_40893_fields pci_add_dynid fndecl 3-8 40893 NULL
++ath6kl_fwlog_block_read_fndecl_40895_fields ath6kl_fwlog_block_read fndecl 3 40895 NULL
++dst_len_akcipher_request_40899_fields dst_len akcipher_request 0 40899 NULL
++uart_write_fndecl_40916_fields uart_write fndecl 3 40916 NULL
++build_verbs_tx_desc_fndecl_40917_fields build_verbs_tx_desc fndecl 3 40917 NULL
++msix_count_vmd_dev_40924_fields msix_count vmd_dev 0 40924 NULL
++vmw_cmdbuf_send_device_command_fndecl_40925_fields vmw_cmdbuf_send_device_command fndecl 3 40925 NULL
++__clone_and_map_data_bio_fndecl_40928_fields __clone_and_map_data_bio fndecl 3-0 40928 NULL nohasharray
++ea_put_fndecl_40928_fields ea_put fndecl 4 40928 &__clone_and_map_data_bio_fndecl_40928_fields nohasharray
++platform_mmio_vardecl_platform_pci_c_40928_fields platform_mmio vardecl_platform-pci.c 0 40928 &ea_put_fndecl_40928_fields
++opcount_xfs_fsop_attrmulti_handlereq_40929_fields opcount xfs_fsop_attrmulti_handlereq 0 40929 NULL
++scsiback_do_resp_with_sense_fndecl_40934_fields scsiback_do_resp_with_sense fndecl 3 40934 NULL
++fuse_send_write_fndecl_40936_fields fuse_send_write fndecl 0-4 40936 NULL
++ecryptfs_filldir_fndecl_40939_fields ecryptfs_filldir fndecl 3 40939 NULL nohasharray
++nr_touch_shapes_f11_2d_sensor_queries_40939_fields nr_touch_shapes f11_2d_sensor_queries 0 40939 &ecryptfs_filldir_fndecl_40939_fields
++len_set_config_param_40942_fields len set_config_param 0 40942 NULL
++s_log_groups_per_flex_ext4_sb_info_40945_fields s_log_groups_per_flex ext4_sb_info 0 40945 NULL
++srq_count_qed_cxt_mngr_40961_fields srq_count qed_cxt_mngr 0 40961 NULL
++ext4_fill_fiemap_extents_fndecl_40966_fields ext4_fill_fiemap_extents fndecl 2-3 40966 NULL
++bottom_qxl_urect_40968_fields bottom qxl_urect 0 40968 NULL
++arena_read_bytes_fndecl_40973_fields arena_read_bytes fndecl 0 40973 NULL
++a_text_exec_40977_fields a_text exec 0 40977 NULL
++compat_sys_recvfrom_fndecl_40978_fields compat_sys_recvfrom fndecl 3 40978 NULL
++read_iter_file_operations_40980_fields read_iter file_operations 0 40980 NULL
++blk_mq_init_tags_fndecl_40986_fields blk_mq_init_tags fndecl 2 40986 NULL
++hwdep_write_fndecl_40987_fields hwdep_write fndecl 3 40987 NULL
++ecryptfs_send_miscdev_fndecl_40995_fields ecryptfs_send_miscdev fndecl 2 40995 NULL
++ath6kl_target_config_wlan_params_fndecl_41017_fields ath6kl_target_config_wlan_params fndecl 2 41017 NULL nohasharray
++proc_projid_map_write_fndecl_41017_fields proc_projid_map_write fndecl 3 41017 &ath6kl_target_config_wlan_params_fndecl_41017_fields
++swapdev_block_fndecl_41020_fields swapdev_block fndecl 0 41020 NULL nohasharray
++xfs_add_to_ioend_fndecl_41020_fields xfs_add_to_ioend fndecl 3 41020 &swapdev_block_fndecl_41020_fields
++store_mfn_start_info_41034_fields store_mfn start_info 0 41034 NULL
++index_radix_tree_iter_41036_fields index radix_tree_iter 0 41036 NULL
++altera_set_dr_pre_fndecl_41037_fields altera_set_dr_pre fndecl 2 41037 NULL
++ext4_ext_put_gap_in_cache_fndecl_41040_fields ext4_ext_put_gap_in_cache fndecl 2-3 41040 NULL
++fofs_extent_info_41041_fields fofs extent_info 0 41041 NULL
++d0_vring_rx_mac_41042_fields d0 vring_rx_mac 0 41042 NULL
++ieee802154_hdr_pull_fndecl_41051_fields ieee802154_hdr_pull fndecl 0 41051 NULL
++ci_hdrc_add_device_fndecl_41055_fields ci_hdrc_add_device fndecl 3 41055 NULL
++resp_len_bnx2fc_mp_req_41057_fields resp_len bnx2fc_mp_req 0 41057 NULL
++bits_per_word_spi_transfer_41063_fields bits_per_word spi_transfer 0 41063 NULL nohasharray
++st21nfca_hci_dm_update_aid_fndecl_41063_fields st21nfca_hci_dm_update_aid fndecl 3 41063 &bits_per_word_spi_transfer_41063_fields
++eager_buffer_size_vardecl_init_c_41068_fields eager_buffer_size vardecl_init.c 0 41068 NULL
++vdc_mem_size_vml_par_41069_fields vdc_mem_size vml_par 0 41069 NULL
++shtc1_update_values_fndecl_41080_fields shtc1_update_values fndecl 4 41080 NULL
++zl10039_write_fndecl_41082_fields zl10039_write fndecl 4 41082 NULL
++wdt87xx_get_feature_fndecl_41089_fields wdt87xx_get_feature fndecl 3 41089 NULL
++pskb_put_fndecl_41096_fields pskb_put fndecl 3 41096 NULL
++nr_gpio_sc16is7xx_devtype_41097_fields nr_gpio sc16is7xx_devtype 0 41097 NULL
++scrub_chunk_fndecl_41105_fields scrub_chunk fndecl 3 41105 NULL
++res_ver_val_pvr2_hdw_41107_fields res_ver_val pvr2_hdw 0 41107 NULL
++physical_start_stripe_41108_fields physical_start stripe 0 41108 NULL
++xfs_imap_lookup_fndecl_41113_fields xfs_imap_lookup fndecl 4-3 41113 NULL
++in_iovs_fuse_ioctl_out_41117_fields in_iovs fuse_ioctl_out 0 41117 NULL
++nvmf_dev_write_fndecl_41118_fields nvmf_dev_write fndecl 3 41118 NULL
++ubifs_wbuf_write_nolock_fndecl_41121_fields ubifs_wbuf_write_nolock fndecl 3 41121 NULL
++datalen_brcmf_event_msg_41123_fields datalen brcmf_event_msg 0 41123 NULL
++__memblock_free_late_fndecl_41130_fields __memblock_free_late fndecl 2 41130 NULL
++data_out_pipe_uas_dev_info_41134_fields data_out_pipe uas_dev_info 0 41134 NULL
++qcaspi_read_burst_fndecl_41137_fields qcaspi_read_burst fndecl 3 41137 NULL
++hidp_process_report_fndecl_41140_fields hidp_process_report fndecl 4 41140 NULL
++ieee80211_cs_headroom_fndecl_41144_fields ieee80211_cs_headroom fndecl 0 41144 NULL
++rx_drvinfo_size_rtl_stats_41161_fields rx_drvinfo_size rtl_stats 0 41161 NULL
++__blk_recalc_rq_segments_fndecl_41164_fields __blk_recalc_rq_segments fndecl 0 41164 NULL
++major_stm_device_41166_fields major stm_device 0 41166 NULL
++get_blocks_target_backend_ops_41168_fields get_blocks target_backend_ops 0 41168 NULL
++size_brnf_frag_data_41177_fields size brnf_frag_data 0 41177 NULL
++start_flakey_c_41178_fields start flakey_c 0 41178 NULL
++lro_wqe_sz_mlx5e_params_41180_fields lro_wqe_sz mlx5e_params 0 41180 NULL
++gfn_guest_walker64_41182_fields gfn guest_walker64 0 41182 NULL
++index_vardecl_via82xx_c_41183_fields index vardecl_via82xx.c 0 41183 NULL
++numqueues_macvlan_dev_41212_fields numqueues macvlan_dev 0 41212 NULL
++p9_client_read_fndecl_41223_fields p9_client_read fndecl 0 41223 NULL
++enic_change_mtu_fndecl_41227_fields enic_change_mtu fndecl 2 41227 NULL nohasharray
++iscsi_first_burst_len_dev_db_entry_41227_fields iscsi_first_burst_len dev_db_entry 0 41227 &enic_change_mtu_fndecl_41227_fields
++private_data_len_nes_qp_41230_fields private_data_len nes_qp 0 41230 NULL
++len_driver_data_41237_fields len driver_data 0 41237 NULL
++ses_send_diag_fndecl_41244_fields ses_send_diag fndecl 4 41244 NULL
++croph_val_pvr2_hdw_41253_fields croph_val pvr2_hdw 0 41253 NULL
++get_res_add_align_fndecl_41257_fields get_res_add_align fndecl 0 41257 NULL
++qlen_sk_buff_head_41259_fields qlen sk_buff_head 0 41259 NULL nohasharray
++diva_os_alloc_message_buffer_fndecl_41259_fields diva_os_alloc_message_buffer fndecl 1 41259 &qlen_sk_buff_head_41259_fields
++do_erase_fndecl_41261_fields do_erase fndecl 4-2 41261 NULL
++lm8323_read_fndecl_41264_fields lm8323_read fndecl 4 41264 NULL
++blkdev_issue_zeroout_fndecl_41272_fields blkdev_issue_zeroout fndecl 3-0-2 41272 NULL
++rbd_obj_read_sync_fndecl_41273_fields rbd_obj_read_sync fndecl 4-3 41273 NULL
++__btrfs_prealloc_file_range_fndecl_41278_fields __btrfs_prealloc_file_range fndecl 3-4 41278 NULL
++num_reg_defaults_raw_regmap_41282_fields num_reg_defaults_raw regmap 0 41282 NULL
++centre_horizontally_fndecl_41284_fields centre_horizontally fndecl 2 41284 NULL nohasharray
++vxfs_getblk_fndecl_41284_fields vxfs_getblk fndecl 2 41284 &centre_horizontally_fndecl_41284_fields
++dy_fb_fillrect_41289_fields dy fb_fillrect 0 41289 NULL nohasharray
++tcp_write_xmit_fndecl_41289_fields tcp_write_xmit fndecl 2 41289 &dy_fb_fillrect_41289_fields
++src_len_kpp_request_41307_fields src_len kpp_request 0 41307 NULL
++register_vlan_device_fndecl_41310_fields register_vlan_device fndecl 2 41310 NULL
++cma_declare_contiguous_fndecl_41316_fields cma_declare_contiguous fndecl 4-1-3 41316 NULL nohasharray
++block_start_extent_map_41316_fields block_start extent_map 0 41316 &cma_declare_contiguous_fndecl_41316_fields
++pc_len_s_pcon_41324_fields pc_len s_pcon 0 41324 NULL
++max_fcoe_exchanges_cnic_dev_41335_fields max_fcoe_exchanges cnic_dev 0 41335 NULL
++last_alloc_physical_block_ext2_block_alloc_info_41336_fields last_alloc_physical_block ext2_block_alloc_info 0 41336 NULL
++key_len_wmi_vdev_install_key_arg_41347_fields key_len wmi_vdev_install_key_arg 0 41347 NULL
++size_snd_info_entry_41350_fields size snd_info_entry 0 41350 NULL nohasharray
++ocfs2_read_xattr_block_fndecl_41350_fields ocfs2_read_xattr_block fndecl 0-2 41350 &size_snd_info_entry_41350_fields nohasharray
++pool_create_fndecl_41350_fields pool_create fndecl 3 41350 &ocfs2_read_xattr_block_fndecl_41350_fields
++num_eq_entries_hba_parameters_41369_fields num_eq_entries hba_parameters 0 41369 NULL
++wrsent_cyberjack_private_41371_fields wrsent cyberjack_private 0 41371 NULL
++do_device_access_fndecl_41373_fields do_device_access fndecl 2-3-0 41373 NULL
++mremap_to_fndecl_41376_fields mremap_to fndecl 3-4-1-2 41376 NULL nohasharray
++sectors_per_block_era_41376_fields sectors_per_block era 0 41376 &mremap_to_fndecl_41376_fields
++update_headroom_fndecl_41386_fields update_headroom fndecl 2 41386 NULL
++atomic_write_len_kernfs_ops_41387_fields atomic_write_len kernfs_ops 0 41387 NULL nohasharray
++wsize_nfs_server_41387_fields wsize nfs_server 0 41387 &atomic_write_len_kernfs_ops_41387_fields
++fat32_root_cluster_fat_bios_param_block_41399_fields fat32_root_cluster fat_bios_param_block 0 41399 NULL
++i2400m_msg_to_dev_fndecl_41409_fields i2400m_msg_to_dev fndecl 3 41409 NULL
++num_channels_fndecl_41411_fields num_channels fndecl 0-1 41411 NULL
++addr_nvme_keyed_sgl_desc_41437_fields addr nvme_keyed_sgl_desc 0 41437 NULL
++l1_size_vardecl_acpi_extlog_c_41440_fields l1_size vardecl_acpi_extlog.c 0 41440 NULL
++vram_remap_vardecl_vesafb_c_41441_fields vram_remap vardecl_vesafb.c 0 41441 NULL
++onenand_write_oob_nolock_fndecl_41451_fields onenand_write_oob_nolock fndecl 2 41451 NULL
++rf_blkno_ocfs2_refcount_tree_41452_fields rf_blkno ocfs2_refcount_tree 0 41452 NULL
++dm_wmfw_adsp1_alg_hdr_41454_fields dm wmfw_adsp1_alg_hdr 0 41454 NULL
++s_inodes_per_block_ext4_sb_info_41457_fields s_inodes_per_block ext4_sb_info 0 41457 NULL nohasharray
++mem_lseek_fndecl_41457_fields mem_lseek fndecl 2 41457 &s_inodes_per_block_ext4_sb_info_41457_fields
++cxgbi_ddp_reserve_fndecl_41468_fields cxgbi_ddp_reserve fndecl 4 41468 NULL nohasharray
++xfs_rmap_free_extent_fndecl_41468_fields xfs_rmap_free_extent fndecl 4-3-5 41468 &cxgbi_ddp_reserve_fndecl_41468_fields
++sd_qc_per_block_gfs2_sbd_41469_fields sd_qc_per_block gfs2_sbd 0 41469 NULL nohasharray
++pageshift_alauda_media_info_41469_fields pageshift alauda_media_info 0 41469 &sd_qc_per_block_gfs2_sbd_41469_fields
++video_offset_sis_video_info_41491_fields video_offset sis_video_info 0 41491 NULL
++lpddr_info_query_fndecl_41492_fields lpddr_info_query fndecl 0 41492 NULL
++dir_entries_fat_floppy_defaults_41499_fields dir_entries fat_floppy_defaults 0 41499 NULL
++irda_param_insert_fndecl_41502_fields irda_param_insert fndecl 0 41502 NULL
++__vmemmap_alloc_block_buf_fndecl_41506_fields __vmemmap_alloc_block_buf fndecl 1 41506 NULL
++b_fifo_size_hfcSX_hw_41512_fields b_fifo_size hfcSX_hw 0 41512 NULL
++dccp_setsockopt_service_fndecl_41515_fields dccp_setsockopt_service fndecl 4 41515 NULL
++vpi_atm_vcc_41519_fields vpi atm_vcc 0 41519 NULL
++nfc_hci_execute_cmd_async_fndecl_41521_fields nfc_hci_execute_cmd_async fndecl 5 41521 NULL
++lv_niovecs_xfs_log_vec_41525_fields lv_niovecs xfs_log_vec 0 41525 NULL
++i40iw_cm_build_mpa_frame_fndecl_41530_fields i40iw_cm_build_mpa_frame fndecl 0 41530 NULL nohasharray
++max_targets_orc_host_41530_fields max_targets orc_host 0 41530 &i40iw_cm_build_mpa_frame_fndecl_41530_fields
++pci_vpd_find_tag_fndecl_41534_fields pci_vpd_find_tag fndecl 2 41534 NULL
++sv_xdrsize_svc_serv_41544_fields sv_xdrsize svc_serv 0 41544 NULL
++velocity_change_mtu_fndecl_41548_fields velocity_change_mtu fndecl 2 41548 NULL
++ntargets_aoedev_41550_fields ntargets aoedev 0 41550 NULL
++sb_blocklog_xfs_sb_41568_fields sb_blocklog xfs_sb 0 41568 NULL
++__alloc_bootmem_nopanic_fndecl_41574_fields __alloc_bootmem_nopanic fndecl 2-3 41574 NULL
++mtd_get_device_size_fndecl_41579_fields mtd_get_device_size fndecl 0 41579 NULL
++FirstBurstLength_iscsi_sess_ops_41581_fields FirstBurstLength iscsi_sess_ops 0 41581 NULL
++rx_buffersize_b43legacy_dmaring_41583_fields rx_buffersize b43legacy_dmaring 0 41583 NULL
++fuse_write_end_fndecl_41587_fields fuse_write_end fndecl 5-3 41587 NULL
++len_on_first_bd_eth_fast_path_rx_reg_cqe_41602_fields len_on_first_bd eth_fast_path_rx_reg_cqe 0 41602 NULL
++vmw_gb_shader_init_fndecl_41607_fields vmw_gb_shader_init fndecl 3 41607 NULL
++vmalloc_to_pfn_fndecl_41614_fields vmalloc_to_pfn fndecl 0 41614 NULL
++hba_queue_depth_MPT3SAS_ADAPTER_41617_fields hba_queue_depth MPT3SAS_ADAPTER 0 41617 NULL
++size_data_platform_device_info_41619_fields size_data platform_device_info 0 41619 NULL
++dev_major_cuse_init_out_41635_fields dev_major cuse_init_out 0 41635 NULL
++dm_bm_prefetch_fndecl_41636_fields dm_bm_prefetch fndecl 2 41636 NULL
++rx_buffer_len_e1000_adapter_41647_fields rx_buffer_len e1000_adapter 0 41647 NULL
++usb_alloc_coherent_fndecl_41655_fields usb_alloc_coherent fndecl 2 41655 NULL
++data_length_bnx2i_reject_msg_41661_fields data_length bnx2i_reject_msg 0 41661 NULL
++selnl_msglen_fndecl_41672_fields selnl_msglen fndecl 0 41672 NULL
++qib_create_ctxtdata_fndecl_41674_fields qib_create_ctxtdata fndecl 2 41674 NULL
++vram_start_vmw_private_41679_fields vram_start vmw_private 0 41679 NULL
++encrypted_filename_size_ecryptfs_filename_41686_fields encrypted_filename_size ecryptfs_filename 0 41686 NULL nohasharray
++firstUnit_INFTLPartition_41686_fields firstUnit INFTLPartition 0 41686 &encrypted_filename_size_ecryptfs_filename_41686_fields
++ath_rx_edma_init_fndecl_41688_fields ath_rx_edma_init fndecl 2 41688 NULL
++mem_zatm_dev_41696_fields mem zatm_dev 0 41696 NULL
++zoran_v4l2_calc_bufsize_fndecl_41703_fields zoran_v4l2_calc_bufsize fndecl 0 41703 NULL
++bfs_move_blocks_fndecl_41706_fields bfs_move_blocks fndecl 2-4 41706 NULL
++ax25_recvmsg_fndecl_41714_fields ax25_recvmsg fndecl 3 41714 NULL
++l_curr_block_xlog_41718_fields l_curr_block xlog 0 41718 NULL
++hlen_ip_tunnel_41720_fields hlen ip_tunnel 0 41720 NULL
++width_tw68_dev_41726_fields width tw68_dev 0 41726 NULL
++sb_sectlog_xfs_sb_41740_fields sb_sectlog xfs_sb 0 41740 NULL
++npages_sdma_mmu_node_41743_fields npages sdma_mmu_node 0 41743 NULL
++cxgb3i_max_connect_vardecl_cxgb3i_c_41744_fields cxgb3i_max_connect vardecl_cxgb3i.c 0 41744 NULL
++val_xfs_sysctl_val_41747_fields val xfs_sysctl_val 0 41747 NULL
++iic_tpm_read_fndecl_41748_fields iic_tpm_read fndecl 3 41748 NULL
++intel_fb_align_height_fndecl_41750_fields intel_fb_align_height fndecl 0-2 41750 NULL
++bm_key_affs_bm_info_41751_fields bm_key affs_bm_info 0 41751 NULL
++encode_filename3_fndecl_41752_fields encode_filename3 fndecl 3 41752 NULL
++insert_dent_fndecl_41753_fields insert_dent fndecl 3-4 41753 NULL
++i_metasize_romfs_inode_info_41756_fields i_metasize romfs_inode_info 0 41756 NULL
++bnx2fc_process_l2_frame_compl_fndecl_41763_fields bnx2fc_process_l2_frame_compl fndecl 3 41763 NULL nohasharray
++size_port_buffer_41763_fields size port_buffer 0 41763 &bnx2fc_process_l2_frame_compl_fndecl_41763_fields
++bbt_erase_shift_nand_chip_41764_fields bbt_erase_shift nand_chip 0 41764 NULL nohasharray
++len_cbuf_41764_fields len cbuf 0 41764 &bbt_erase_shift_nand_chip_41764_fields
++__alloc_bootmem_node_high_fndecl_41767_fields __alloc_bootmem_node_high fndecl 3-4 41767 NULL
++swsusp_resume_block_vardecl_41771_fields swsusp_resume_block vardecl 0 41771 NULL
++ocfs2_truncate_cluster_pages_fndecl_41773_fields ocfs2_truncate_cluster_pages fndecl 2-3 41773 NULL
++ath9k_multi_regread_fndecl_41779_fields ath9k_multi_regread fndecl 4 41779 NULL
++alloc_dummy_extent_buffer_fndecl_41781_fields alloc_dummy_extent_buffer fndecl 2-3 41781 NULL nohasharray
++pg_vec_len_packet_ring_buffer_41781_fields pg_vec_len packet_ring_buffer 0 41781 &alloc_dummy_extent_buffer_fndecl_41781_fields
++scif_get_pages_fndecl_41783_fields scif_get_pages fndecl 3 41783 NULL
++numtx_velocity_opt_41785_fields numtx velocity_opt 0 41785 NULL
++num_bytes_drm_dp_remote_i2c_write_41786_fields num_bytes drm_dp_remote_i2c_write 0 41786 NULL
++max_msg_length_mei_client_properties_41791_fields max_msg_length mei_client_properties 0 41791 NULL nohasharray
++make_idx_node_fndecl_41791_fields make_idx_node fndecl 6-5 41791 &max_msg_length_mei_client_properties_41791_fields
++generic_ocp_write_fndecl_41792_fields generic_ocp_write fndecl 4 41792 NULL
++rx_pkt_length_rxpd_41805_fields rx_pkt_length rxpd 0 41805 NULL
++alloc_ksz_desc_info_41806_fields alloc ksz_desc_info 0 41806 NULL
++udf_get_pblock_fndecl_41813_fields udf_get_pblock fndecl 0-4-2 41813 NULL nohasharray
++T9_reportid_min_mxt_data_41813_fields T9_reportid_min mxt_data 0 41813 &udf_get_pblock_fndecl_41813_fields
++sisusb_num_columns_sisusb_usb_data_41814_fields sisusb_num_columns sisusb_usb_data 0 41814 NULL
++nports_cxgb4_lld_info_41815_fields nports cxgb4_lld_info 0 41815 NULL
++vmw_cmdbuf_alloc_space_fndecl_41823_fields vmw_cmdbuf_alloc_space fndecl 3 41823 NULL
++n_ssids_wmi_start_scan_arg_41826_fields n_ssids wmi_start_scan_arg 0 41826 NULL
++fcs_del_mlx4_en_rx_ring_41830_fields fcs_del mlx4_en_rx_ring 0 41830 NULL
++convert_initialized_extent_fndecl_41833_fields convert_initialized_extent fndecl 0-5 41833 NULL
++wdt87xx_get_string_fndecl_41835_fields wdt87xx_get_string fndecl 4 41835 NULL
++root_btrfs_super_block_41846_fields root btrfs_super_block 0 41846 NULL nohasharray
++i2c_bus_write_fndecl_41846_fields i2c_bus_write fndecl 7-5 41846 &root_btrfs_super_block_41846_fields
++al_tr_number_drbd_device_41847_fields al_tr_number drbd_device 0 41847 NULL
++ar5523_cmd_write_fndecl_41852_fields ar5523_cmd_write fndecl 4 41852 NULL nohasharray
++free_bootmem_node_fndecl_41852_fields free_bootmem_node fndecl 3-2 41852 &ar5523_cmd_write_fndecl_41852_fields
++compatsize_xt_target_41854_fields compatsize xt_target 0 41854 NULL nohasharray
++tx_headroom_nfc_dev_41854_fields tx_headroom nfc_dev 0 41854 &compatsize_xt_target_41854_fields
++max_header_size_smb_version_values_41855_fields max_header_size smb_version_values 0 41855 NULL
++dm_add_exception_fndecl_41858_fields dm_add_exception fndecl 2-3 41858 NULL
++nla_reserve_nohdr_fndecl_41860_fields nla_reserve_nohdr fndecl 2 41860 NULL
++ssb_bus_register_fndecl_41868_fields ssb_bus_register fndecl 3 41868 NULL nohasharray
++i2c_smbus_xfer_emulated_fndecl_41868_fields i2c_smbus_xfer_emulated fndecl 0 41868 &ssb_bus_register_fndecl_41868_fields
++snd_rme96_capture_getrate_fndecl_41874_fields snd_rme96_capture_getrate fndecl 0 41874 NULL
++md_size_sect_drbd_md_41886_fields md_size_sect drbd_md 0 41886 NULL
++rcvidx_fritz_bcs_41889_fields rcvidx fritz_bcs 0 41889 NULL
++qib_rcvhdrcnt_vardecl_qib_iba7322_c_41890_fields qib_rcvhdrcnt vardecl_qib_iba7322.c 0 41890 NULL
++RequestFrameSize__MSG_IOC_FACTS_REPLY_41895_fields RequestFrameSize _MSG_IOC_FACTS_REPLY 0 41895 NULL
++mem_unit_sysinfo_41901_fields mem_unit sysinfo 0 41901 NULL
++bLength_hid_descriptor_41905_fields bLength hid_descriptor 0 41905 NULL
++length_zoran_sync_41909_fields length zoran_sync 0 41909 NULL
++raw_decoder_line_size_vbi_info_41920_fields raw_decoder_line_size vbi_info 0 41920 NULL
++ext4_xattr_security_set_fndecl_41924_fields ext4_xattr_security_set fndecl 6 41924 NULL nohasharray
++wil_pmc_llseek_fndecl_41924_fields wil_pmc_llseek fndecl 2 41924 &ext4_xattr_security_set_fndecl_41924_fields nohasharray
++num_descriptors_wmi_p2p_noa_info_41924_fields num_descriptors wmi_p2p_noa_info 0 41924 &wil_pmc_llseek_fndecl_41924_fields
++regmap_encx24j600_sfr_read_fndecl_41930_fields regmap_encx24j600_sfr_read fndecl 4 41930 NULL
++ss_nblocks_nilfs_segment_summary_41935_fields ss_nblocks nilfs_segment_summary 0 41935 NULL
++n_sel_arg_struct_41940_fields n sel_arg_struct 0 41940 NULL
++pg_error_nfs_pageio_descriptor_41948_fields pg_error nfs_pageio_descriptor 0 41948 NULL
++rmmio_size_cirrus_device_41950_fields rmmio_size cirrus_device 0 41950 NULL nohasharray
++iwlagn_tx_agg_start_fndecl_41950_fields iwlagn_tx_agg_start fndecl 4 41950 &rmmio_size_cirrus_device_41950_fields
++i915_gem_object_ggtt_pin_fndecl_41959_fields i915_gem_object_ggtt_pin fndecl 4 41959 NULL nohasharray
++kmem_zalloc_greedy_fndecl_41959_fields kmem_zalloc_greedy fndecl 3-2 41959 &i915_gem_object_ggtt_pin_fndecl_41959_fields
++ide_init_sg_cmd_fndecl_41962_fields ide_init_sg_cmd fndecl 2 41962 NULL
++relay_open_fndecl_41964_fields relay_open fndecl 4-3 41964 NULL nohasharray
++ccp_reverse_get_dm_area_fndecl_41964_fields ccp_reverse_get_dm_area fndecl 3 41964 &relay_open_fndecl_41964_fields nohasharray
++connector_dcb_output_41964_fields connector dcb_output 0 41964 &ccp_reverse_get_dm_area_fndecl_41964_fields
++init_send_wqe_fndecl_41966_fields init_send_wqe fndecl 4 41966 NULL nohasharray
++length_ccp_dm_workarea_41966_fields length ccp_dm_workarea 0 41966 &init_send_wqe_fndecl_41966_fields
++width_fb_copyarea_41973_fields width fb_copyarea 0 41973 NULL
++hsync_ast_vbios_enhtable_41977_fields hsync ast_vbios_enhtable 0 41977 NULL
++i40iw_get_pble_fndecl_41985_fields i40iw_get_pble fndecl 4 41985 NULL
++__send_control_msg_fndecl_41986_fields __send_control_msg fndecl 2 41986 NULL
++va_end_vmap_area_41988_fields va_end vmap_area 0 41988 NULL
++total_byte_count_els_sts_entry_24xx_41999_fields total_byte_count els_sts_entry_24xx 0 41999 NULL
++pci_add_new_bus_fndecl_42015_fields pci_add_new_bus fndecl 3 42015 NULL
++kovaplus_sysfs_write_fndecl_42016_fields kovaplus_sysfs_write fndecl 6 42016 NULL
++memblock_mark_nomap_fndecl_42021_fields memblock_mark_nomap fndecl 2-1 42021 NULL
++__ieee80211_start_rx_ba_session_fndecl_42023_fields __ieee80211_start_rx_ba_session fndecl 6 42023 NULL
++seq_ports_snd_emu10k1_synth_arg_42026_fields seq_ports snd_emu10k1_synth_arg 0 42026 NULL
++do_mem_probe_fndecl_42028_fields do_mem_probe fndecl 3-2 42028 NULL
++ctrl_frame_len_brcmf_sdio_42037_fields ctrl_frame_len brcmf_sdio 0 42037 NULL
++reiserfs_new_inode_fndecl_42039_fields reiserfs_new_inode fndecl 5 42039 NULL
++rx_hr_cfv_info_42044_fields rx_hr cfv_info 0 42044 NULL
++num_tid_range_42045_fields num tid_range 0 42045 NULL nohasharray
++num_tx_qp_i40e_hw_capabilities_42045_fields num_tx_qp i40e_hw_capabilities 0 42045 &num_tid_range_42045_fields
++PortSCSIID__MSG_PORT_FACTS_REPLY_42048_fields PortSCSIID _MSG_PORT_FACTS_REPLY 0 42048 NULL
++kvm_init_fndecl_42057_fields kvm_init fndecl 2-3 42057 NULL nohasharray
++fm_tx_get_tune_cap_val_fndecl_42057_fields fm_tx_get_tune_cap_val fndecl 0 42057 &kvm_init_fndecl_42057_fields
++fat_add_new_entries_fndecl_42062_fields fat_add_new_entries fndecl 0 42062 NULL
++blk_limits_io_min_fndecl_42065_fields blk_limits_io_min fndecl 2 42065 NULL nohasharray
++b_flags_ivtv_buffer_42065_fields b_flags ivtv_buffer 0 42065 &blk_limits_io_min_fndecl_42065_fields
++frag_size_ipv6_pinfo_42073_fields frag_size ipv6_pinfo 0 42073 NULL
++nci_hci_send_event_fndecl_42074_fields nci_hci_send_event fndecl 5 42074 NULL
++ieee80211_scan_results_fndecl_42078_fields ieee80211_scan_results fndecl 0 42078 NULL
++mlx4_ib_rereg_user_mr_fndecl_42079_fields mlx4_ib_rereg_user_mr fndecl 3-4 42079 NULL nohasharray
++ath6kl_wmi_set_rx_frame_format_cmd_fndecl_42079_fields ath6kl_wmi_set_rx_frame_format_cmd fndecl 2 42079 &mlx4_ib_rereg_user_mr_fndecl_42079_fields
++i2c_bus_vardecl_i2c_kempld_c_42082_fields i2c_bus vardecl_i2c-kempld.c 0 42082 NULL
++raw_issuer_size_x509_certificate_42091_fields raw_issuer_size x509_certificate 0 42091 NULL
++outsize_cros_ec_command_42095_fields outsize cros_ec_command 0 42095 NULL
++telem_punit_ssram_size_intel_pmc_ipc_dev_42096_fields telem_punit_ssram_size intel_pmc_ipc_dev 0 42096 NULL
++gtt_size_radeon_mc_42102_fields gtt_size radeon_mc 0 42102 NULL nohasharray
++proc_pid_attr_write_fndecl_42102_fields proc_pid_attr_write fndecl 3 42102 &gtt_size_radeon_mc_42102_fields
++value_xen_hvm_param_42103_fields value xen_hvm_param 0 42103 NULL
++image_offset_sd_42111_fields image_offset sd 0 42111 NULL
++efs_bmap_fndecl_42112_fields efs_bmap fndecl 0-2 42112 NULL
++jbd2_journal_init_dev_fndecl_42115_fields jbd2_journal_init_dev fndecl 3 42115 NULL
++ceph_tcp_sendmsg_fndecl_42116_fields ceph_tcp_sendmsg fndecl 0-4-3 42116 NULL
++divas_write_fndecl_42126_fields divas_write fndecl 3 42126 NULL
++smb2_sync_write_fndecl_42139_fields smb2_sync_write fndecl 6 42139 NULL
++uvc_alloc_urb_buffers_fndecl_42145_fields uvc_alloc_urb_buffers fndecl 0-3-2 42145 NULL
++ath6kl_wmi_set_lpreamble_cmd_fndecl_42153_fields ath6kl_wmi_set_lpreamble_cmd fndecl 2 42153 NULL
++remote_addr_rds_atomic_args_42154_fields remote_addr rds_atomic_args 0 42154 NULL
++cnic_support_bnx2x_42156_fields cnic_support bnx2x 0 42156 NULL nohasharray
++channels_audioformat_42156_fields channels audioformat 0 42156 &cnic_support_bnx2x_42156_fields
++ext4_end_io_dio_fndecl_42159_fields ext4_end_io_dio fndecl 2-3 42159 NULL
++status_de4x5_desc_42161_fields status de4x5_desc 0 42161 NULL
++height_em28xx_v4l2_42166_fields height em28xx_v4l2 0 42166 NULL
++s_root_block_reiserfs_super_block_v1_42167_fields s_root_block reiserfs_super_block_v1 0 42167 NULL
++copy_from_iter_nocache_fndecl_42168_fields copy_from_iter_nocache fndecl 2 42168 NULL
++next_bucket_prio_set_42171_fields next_bucket prio_set 0 42171 NULL
++start_file_extent_cluster_42173_fields start file_extent_cluster 0 42173 NULL
++block_size_msb_data_42179_fields block_size msb_data 0 42179 NULL
++stv0367_writeregs_fndecl_42183_fields stv0367_writeregs fndecl 4 42183 NULL
++s2255_fillbuff_fndecl_42189_fields s2255_fillbuff fndecl 3 42189 NULL
++mc_handle_present_pte_fndecl_42199_fields mc_handle_present_pte fndecl 2 42199 NULL nohasharray
++afs_send_simple_reply_fndecl_42199_fields afs_send_simple_reply fndecl 3 42199 &mc_handle_present_pte_fndecl_42199_fields
++get_sset_count_phy_driver_42200_fields get_sset_count phy_driver 0 42200 NULL
++udl_alloc_urb_list_fndecl_42203_fields udl_alloc_urb_list fndecl 3 42203 NULL
++skb_push_fndecl_42213_fields skb_push fndecl 2 42213 NULL
++scan_padding_bytes_fndecl_42218_fields scan_padding_bytes fndecl 0 42218 NULL
++set_bredr_fndecl_42228_fields set_bredr fndecl 4 42228 NULL nohasharray
++diva_xdi_write_fndecl_42228_fields diva_xdi_write fndecl 4 42228 &set_bredr_fndecl_42228_fields
++dwMaxVideoFrameBufferSize_uvc_frame_42230_fields dwMaxVideoFrameBufferSize uvc_frame 0 42230 NULL
++nr_map_efi_memory_map_42232_fields nr_map efi_memory_map 0 42232 NULL
++max_data_size_irda_sock_42236_fields max_data_size irda_sock 0 42236 NULL nohasharray
++chunksize_mdp_superblock_1_42236_fields chunksize mdp_superblock_1 0 42236 &max_data_size_irda_sock_42236_fields
++scrollback_phys_max_vardecl_fbcon_c_42241_fields scrollback_phys_max vardecl_fbcon.c 0 42241 NULL
++buf_write_ptr_comedi_async_42247_fields buf_write_ptr comedi_async 0 42247 NULL
++num_params_snd_soc_dai_link_42251_fields num_params snd_soc_dai_link 0 42251 NULL
++if_sdio_read_scratch_fndecl_42279_fields if_sdio_read_scratch fndecl 0 42279 NULL
++rx_pending_ethtool_ringparam_42280_fields rx_pending ethtool_ringparam 0 42280 NULL nohasharray
++cfg_sriov_nr_virtfn_lpfc_hba_42280_fields cfg_sriov_nr_virtfn lpfc_hba 0 42280 &rx_pending_ethtool_ringparam_42280_fields
++reiserfs_xattr_set_handle_fndecl_42289_fields reiserfs_xattr_set_handle fndecl 5 42289 NULL
++batadv_tp_send_msg_fndecl_42290_fields batadv_tp_send_msg fndecl 5 42290 NULL
++ubi_more_leb_change_data_fndecl_42301_fields ubi_more_leb_change_data fndecl 4 42301 NULL
++level_cgroup_42308_fields level cgroup 0 42308 NULL nohasharray
++iwch_reg_user_mr_fndecl_42308_fields iwch_reg_user_mr fndecl 2-3 42308 &level_cgroup_42308_fields nohasharray
++dcache_dir_lseek_fndecl_42308_fields dcache_dir_lseek fndecl 2 42308 &iwch_reg_user_mr_fndecl_42308_fields
++num_rcv_contexts_hfi1_devdata_42317_fields num_rcv_contexts hfi1_devdata 0 42317 NULL nohasharray
++ocfs2_xattr_security_set_fndecl_42317_fields ocfs2_xattr_security_set fndecl 6 42317 &num_rcv_contexts_hfi1_devdata_42317_fields
++pg_test_nfs_pageio_ops_42320_fields pg_test nfs_pageio_ops 0 42320 NULL nohasharray
++dbg_leb_write_fndecl_42320_fields dbg_leb_write fndecl 5-4 42320 &pg_test_nfs_pageio_ops_42320_fields
++gsi_base_mp_ioapic_gsi_42330_fields gsi_base mp_ioapic_gsi 0 42330 NULL
++mlx4_ib_alloc_cq_buf_fndecl_42345_fields mlx4_ib_alloc_cq_buf fndecl 3 42345 NULL
++nftl_readblock_fndecl_42358_fields nftl_readblock fndecl 2 42358 NULL
++minor_mei_device_42366_fields minor mei_device 0 42366 NULL
++inbufBitCount_bunzip_data_42367_fields inbufBitCount bunzip_data 0 42367 NULL
++symbol_build_supp_rates_fndecl_42369_fields symbol_build_supp_rates fndecl 0 42369 NULL
++acc_len_rcv_sli3_42370_fields acc_len rcv_sli3 0 42370 NULL
++ext4_ext_get_access_fndecl_42377_fields ext4_ext_get_access fndecl 0 42377 NULL
++placement_offset_bnx2x_agg_info_42380_fields placement_offset bnx2x_agg_info 0 42380 NULL
++num_srqs_qed_rdma_pf_params_42382_fields num_srqs qed_rdma_pf_params 0 42382 NULL
++__spi_validate_fndecl_42385_fields __spi_validate fndecl 0 42385 NULL
++remote_payload_max_nfc_digital_dev_42391_fields remote_payload_max nfc_digital_dev 0 42391 NULL
++module_alloc_fndecl_42397_fields module_alloc fndecl 1 42397 NULL
++xen_blkif_max_queues_vardecl_xen_blkfront_c_42404_fields xen_blkif_max_queues vardecl_xen-blkfront.c 0 42404 NULL
++length_mei_msg_hdr_42413_fields length mei_msg_hdr 0 42413 NULL
++defrag_lookup_extent_fndecl_42423_fields defrag_lookup_extent fndecl 2 42423 NULL
++s_sys_blocksize_omfs_sb_info_42439_fields s_sys_blocksize omfs_sb_info 0 42439 NULL
++buffer_chain_size_fndecl_42450_fields buffer_chain_size fndecl 0 42450 NULL nohasharray
++max_srqs_mthca_dev_lim_42450_fields max_srqs mthca_dev_lim 0 42450 &buffer_chain_size_fndecl_42450_fields
++rx_size_uart_8250_dma_42452_fields rx_size uart_8250_dma 0 42452 NULL
++inquiry_cache_dump_fndecl_42455_fields inquiry_cache_dump fndecl 0 42455 NULL
++s_cssize_ufs_sb_private_info_42456_fields s_cssize ufs_sb_private_info 0 42456 NULL
++num_srqs_mlx4_caps_42462_fields num_srqs mlx4_caps 0 42462 NULL
++rxq_max_tg3_42464_fields rxq_max tg3 0 42464 NULL
++trusted_set_fndecl_42473_fields trusted_set fndecl 6 42473 NULL
++num_adc_nids_hda_gen_spec_42481_fields num_adc_nids hda_gen_spec 0 42481 NULL
++snd_vxpocket_new_fndecl_42483_fields snd_vxpocket_new fndecl 2 42483 NULL
++block_shift_befs_sb_info_42485_fields block_shift befs_sb_info 0 42485 NULL
++tot_len_pkt_gl_42487_fields tot_len pkt_gl 0 42487 NULL
++keylength_gss_krb5_enctype_42493_fields keylength gss_krb5_enctype 0 42493 NULL
++bnxt_rx_skb_fndecl_42495_fields bnxt_rx_skb fndecl 7 42495 NULL
++hsi_alloc_msg_fndecl_42496_fields hsi_alloc_msg fndecl 1 42496 NULL
++DataTransferLength_DAC960_V1_UserCommand_42502_fields DataTransferLength DAC960_V1_UserCommand 0 42502 NULL
++ath6kl_sdio_read_write_sync_fndecl_42504_fields ath6kl_sdio_read_write_sync fndecl 4 42504 NULL nohasharray
++rcvhdrqtailaddr_phys_hfi1_ctxtdata_42504_fields rcvhdrqtailaddr_phys hfi1_ctxtdata 0 42504 &ath6kl_sdio_read_write_sync_fndecl_42504_fields
++fs_start_efs_sb_info_42506_fields fs_start efs_sb_info 0 42506 NULL
++write_adapter_mem_fndecl_42509_fields write_adapter_mem fndecl 3 42509 NULL nohasharray
++st21nfca_hci_dm_load_fndecl_42509_fields st21nfca_hci_dm_load fndecl 3 42509 &write_adapter_mem_fndecl_42509_fields
++dec_cluster_info_page_fndecl_42521_fields dec_cluster_info_page fndecl 3 42521 NULL
++xfs_rtmodify_summary_fndecl_42522_fields xfs_rtmodify_summary fndecl 4-3-0 42522 NULL
++cn_netlink_send_mult_fndecl_42523_fields cn_netlink_send_mult fndecl 2 42523 NULL
++maxframe_size_fc_rport_priv_42527_fields maxframe_size fc_rport_priv 0 42527 NULL
++size_rx_desc_42538_fields size rx_desc 0 42538 NULL
++num_reg_channel_bounds_42546_fields num reg_channel_bounds 0 42546 NULL
++xfs_dir_cilookup_result_fndecl_42547_fields xfs_dir_cilookup_result fndecl 3 42547 NULL
++mr_page_size_srp_device_42550_fields mr_page_size srp_device 0 42550 NULL
++xdr_padsize_fndecl_42554_fields xdr_padsize fndecl 0-1 42554 NULL
++s_block_base_sysv_sb_info_42564_fields s_block_base sysv_sb_info 0 42564 NULL nohasharray
++do_write_orph_node_fndecl_42564_fields do_write_orph_node fndecl 2 42564 &s_block_base_sysv_sb_info_42564_fields
++num_regulators_sec_platform_data_42570_fields num_regulators sec_platform_data 0 42570 NULL
++mwifiex_send_addba_fndecl_42572_fields mwifiex_send_addba fndecl 2 42572 NULL
++restart_rc_fndecl_42573_fields restart_rc fndecl 2 42573 NULL
++ufs_read_cylinder_fndecl_42577_fields ufs_read_cylinder fndecl 2 42577 NULL
++max_target_id_mvumi_hba_42578_fields max_target_id mvumi_hba 0 42578 NULL
++irq_create_of_mapping_fndecl_42583_fields irq_create_of_mapping fndecl 0 42583 NULL
++tipc_send_packet_fndecl_42584_fields tipc_send_packet fndecl 3 42584 NULL
++sisusbcon_clear_fndecl_42586_fields sisusbcon_clear fndecl 5-3-4 42586 NULL
++map_region_fndecl_42587_fields map_region fndecl 1 42587 NULL
++lock_extent_range_fndecl_42589_fields lock_extent_range fndecl 2-3 42589 NULL
++bcm3510_readbytes_fndecl_42592_fields bcm3510_readbytes fndecl 4 42592 NULL
++name_len_jffs2_xattr_datum_42593_fields name_len jffs2_xattr_datum 0 42593 NULL
++offset_dmi_ipmi_data_42594_fields offset dmi_ipmi_data 0 42594 NULL nohasharray
++cdc_ncm_set_dgram_size_fndecl_42594_fields cdc_ncm_set_dgram_size fndecl 2 42594 &offset_dmi_ipmi_data_42594_fields
++bsize_nfs_parsed_mount_data_42598_fields bsize nfs_parsed_mount_data 0 42598 NULL
++wrap_bcma_device_42599_fields wrap bcma_device 0 42599 NULL
++maxSenseBytes_mpt_ioctl_command_42600_fields maxSenseBytes mpt_ioctl_command 0 42600 NULL
++nilfs_alloc_seg_bio_fndecl_42604_fields nilfs_alloc_seg_bio fndecl 2-3 42604 NULL
++n_channels_wmi_start_scan_arg_42610_fields n_channels wmi_start_scan_arg 0 42610 NULL
++size_ck804xrom_window_42617_fields size ck804xrom_window 0 42617 NULL
++HFP_kyrofb_info_42618_fields HFP kyrofb_info 0 42618 NULL
++vmw_kms_sou_do_surface_dirty_fndecl_42620_fields vmw_kms_sou_do_surface_dirty fndecl 8 42620 NULL
++opt_len_genevehdr_42621_fields opt_len genevehdr 0 42621 NULL
++nfs42_proc_deallocate_fndecl_42622_fields nfs42_proc_deallocate fndecl 2-3 42622 NULL
++ir_lirc_transmit_ir_fndecl_42624_fields ir_lirc_transmit_ir fndecl 3 42624 NULL
++length_bplus_leaf_node_42626_fields length bplus_leaf_node 0 42626 NULL
++num_regulators_mc13xxx_regulator_priv_42627_fields num_regulators mc13xxx_regulator_priv 0 42627 NULL
++dm_set_device_limits_fndecl_42632_fields dm_set_device_limits fndecl 3 42632 NULL
++lbs_cmd_async_fndecl_42634_fields lbs_cmd_async fndecl 4 42634 NULL
++valid_ide_tape_obj_42635_fields valid ide_tape_obj 0 42635 NULL
++find_rsb_dir_fndecl_42636_fields find_rsb_dir fndecl 3 42636 NULL
++snd_emu10k1_create_fndecl_42637_fields snd_emu10k1_create fndecl 5 42637 NULL nohasharray
++n_algs_wmfw_adsp2_id_hdr_42637_fields n_algs wmfw_adsp2_id_hdr 0 42637 &snd_emu10k1_create_fndecl_42637_fields
++len_ceph_string_42640_fields len ceph_string 0 42640 NULL
++nr_io_queues_nvmf_ctrl_options_42644_fields nr_io_queues nvmf_ctrl_options 0 42644 NULL
++brcmf_sdio_download_nvram_fndecl_42648_fields brcmf_sdio_download_nvram fndecl 3 42648 NULL
++srp_map_sg_fmr_fndecl_42658_fields srp_map_sg_fmr fndecl 0 42658 NULL
++jffs2_scan_dirty_space_fndecl_42666_fields jffs2_scan_dirty_space fndecl 3 42666 NULL
++vOver_plus_panel_info_42670_fields vOver_plus panel_info 0 42670 NULL
++ieee80211_send_eosp_nullfunc_fndecl_42671_fields ieee80211_send_eosp_nullfunc fndecl 2 42671 NULL
++max_probe_length_iwl_ucode_capabilities_42674_fields max_probe_length iwl_ucode_capabilities 0 42674 NULL
++max_inline_rxe_sq_42676_fields max_inline rxe_sq 0 42676 NULL
++mxm_shadow_rom_fetch_fndecl_42681_fields mxm_shadow_rom_fetch fndecl 4 42681 NULL
++n_sections_pefile_context_42684_fields n_sections pefile_context 0 42684 NULL nohasharray
++ext4_trim_extent_fndecl_42684_fields ext4_trim_extent fndecl 3-4-2-0 42684 &n_sections_pefile_context_42684_fields
++ccp_update_sg_workarea_fndecl_42688_fields ccp_update_sg_workarea fndecl 2 42688 NULL
++BufferLength_respQ_e_42691_fields BufferLength respQ_e 0 42691 NULL
++nvme_submit_user_cmd_fndecl_42701_fields nvme_submit_user_cmd fndecl 4 42701 NULL nohasharray
++vm_map_ram_fndecl_42701_fields vm_map_ram fndecl 2 42701 &nvme_submit_user_cmd_fndecl_42701_fields
++nvme_rdma_create_qp_fndecl_42709_fields nvme_rdma_create_qp fndecl 2 42709 NULL
++len_nfs4_layoutdriver_data_42714_fields len nfs4_layoutdriver_data 0 42714 NULL nohasharray
++reordering_tcp_sock_42714_fields reordering tcp_sock 0 42714 &len_nfs4_layoutdriver_data_42714_fields
++start_sect_hd_struct_42718_fields start_sect hd_struct 0 42718 NULL
++rcvtidcnt_qib_devdata_42719_fields rcvtidcnt qib_devdata 0 42719 NULL
++clsb_isar_hw_42720_fields clsb isar_hw 0 42720 NULL
++status_full_rx_done_desc_42726_fields status full_rx_done_desc 0 42726 NULL
++maxbcnt_aoedev_42731_fields maxbcnt aoedev 0 42731 NULL
++single_open_size_fndecl_42736_fields single_open_size fndecl 4 42736 NULL
++nilfs_skip_summary_info_fndecl_42739_fields nilfs_skip_summary_info fndecl 4-5 42739 NULL
++head_hid_debug_list_42742_fields head hid_debug_list 0 42742 NULL
++Ha_tvnorm_42743_fields Ha tvnorm 0 42743 NULL nohasharray
++tcp_adjust_pcount_fndecl_42743_fields tcp_adjust_pcount fndecl 3 42743 &Ha_tvnorm_42743_fields
++mlx5_fc_stats_query_fndecl_42750_fields mlx5_fc_stats_query fndecl 3 42750 NULL
++batadv_interface_rx_fndecl_42754_fields batadv_interface_rx fndecl 3 42754 NULL
++unmap_entire_bt_fndecl_42755_fields unmap_entire_bt fndecl 3 42755 NULL
++tcf_csum_skb_nextlayer_fndecl_42762_fields tcf_csum_skb_nextlayer fndecl 3 42762 NULL
++elems_v4l2_ctrl_42763_fields elems v4l2_ctrl 0 42763 NULL
++maxdev_blogic_adapter_42764_fields maxdev blogic_adapter 0 42764 NULL
++dc_block_number_disk_child_42766_fields dc_block_number disk_child 0 42766 NULL
++cmd_idx_rtsx_ucr_42770_fields cmd_idx rtsx_ucr 0 42770 NULL nohasharray
++ie_len_wmi_start_scan_arg_42770_fields ie_len wmi_start_scan_arg 0 42770 &cmd_idx_rtsx_ucr_42770_fields
++fw_len_mwifiex_fw_image_42772_fields fw_len mwifiex_fw_image 0 42772 NULL
++hsr_get_max_mtu_fndecl_42776_fields hsr_get_max_mtu fndecl 0 42776 NULL
++kmemdup_fndecl_42780_fields kmemdup fndecl 2 42780 NULL
++lov_tgt_size_lov_obd_42782_fields lov_tgt_size lov_obd 0 42782 NULL
++rx_data_length_hso_serial_42783_fields rx_data_length hso_serial 0 42783 NULL
++usbnet_change_mtu_fndecl_42784_fields usbnet_change_mtu fndecl 2 42784 NULL
++offset_fuse_page_desc_42785_fields offset fuse_page_desc 0 42785 NULL
++xdr_encode_word_fndecl_42802_fields xdr_encode_word fndecl 2 42802 NULL
++ext4_quota_write_fndecl_42809_fields ext4_quota_write fndecl 5 42809 NULL nohasharray
++len_il3945_rx_frame_hdr_42809_fields len il3945_rx_frame_hdr 0 42809 &ext4_quota_write_fndecl_42809_fields
++usb_hcd_unlink_urb_fndecl_42819_fields usb_hcd_unlink_urb fndecl 2 42819 NULL
++xfs_rmap_map_fndecl_42821_fields xfs_rmap_map fndecl 0 42821 NULL
++m_agino_log_xfs_mount_42823_fields m_agino_log xfs_mount 0 42823 NULL
++clear_update_marker_fndecl_42827_fields clear_update_marker fndecl 3 42827 NULL
++ezusb_program_bytes_fndecl_42828_fields ezusb_program_bytes fndecl 4 42828 NULL
++rrpc_init_fndecl_42834_fields rrpc_init fndecl 3-4 42834 NULL
++dev_addr_fsl_edma_slave_config_42835_fields dev_addr fsl_edma_slave_config 0 42835 NULL
++decompress_compressor_42840_fields decompress compressor 0 42840 NULL
++old_oblock_dm_cache_migration_42847_fields old_oblock dm_cache_migration 0 42847 NULL
++extent_trunc_fndecl_42849_fields extent_trunc fndecl 6-4-5 42849 NULL
++int_in_endpointAddr_usb_yurex_42850_fields int_in_endpointAddr usb_yurex 0 42850 NULL
++count_i40iw_hmc_create_obj_info_42852_fields count i40iw_hmc_create_obj_info 0 42852 NULL
++rdma_addr_size_fndecl_42855_fields rdma_addr_size fndecl 0 42855 NULL
++get_max_headroom_fndecl_42858_fields get_max_headroom fndecl 0 42858 NULL
++ext4_prepare_inline_data_fndecl_42863_fields ext4_prepare_inline_data fndecl 3 42863 NULL nohasharray
++wqe_size_ib_uverbs_post_srq_recv_42863_fields wqe_size ib_uverbs_post_srq_recv 0 42863 &ext4_prepare_inline_data_fndecl_42863_fields
++mmio_start_vmw_private_42869_fields mmio_start vmw_private 0 42869 NULL
++mlxsw_core_skb_transmit_fndecl_42876_fields mlxsw_core_skb_transmit fndecl 0 42876 NULL
++lineevent_read_fndecl_42885_fields lineevent_read fndecl 3 42885 NULL
++pixel_overlap_mipi_config_42900_fields pixel_overlap mipi_config 0 42900 NULL
++uea_idma_write_fndecl_42904_fields uea_idma_write fndecl 3 42904 NULL
++memblock_find_in_range_node_fndecl_42905_fields memblock_find_in_range_node fndecl 0-2-1-3-4 42905 NULL
++name_length_spar_controlvm_parameters_header_42909_fields name_length spar_controlvm_parameters_header 0 42909 NULL
++vd_vblocknr_nilfs_vdesc_42910_fields vd_vblocknr nilfs_vdesc 0 42910 NULL
++rts51x_bulk_transport_fndecl_42911_fields rts51x_bulk_transport fndecl 6 42911 NULL
++xfs_rmap_alloc_extent_fndecl_42916_fields xfs_rmap_alloc_extent fndecl 4-3-5 42916 NULL
++i915_gem_stolen_insert_node_fndecl_42918_fields i915_gem_stolen_insert_node fndecl 3 42918 NULL
++st21nfca_hci_dm_field_generator_fndecl_42926_fields st21nfca_hci_dm_field_generator fndecl 3 42926 NULL
++wMaxInputLength_i2c_hid_desc_42932_fields wMaxInputLength i2c_hid_desc 0 42932 NULL
++max_mad_size_ib_port_immutable_42934_fields max_mad_size ib_port_immutable 0 42934 NULL
++nblocks_nvme_user_io_42935_fields nblocks nvme_user_io 0 42935 NULL
++mc_vram_size_radeon_mc_42937_fields mc_vram_size radeon_mc 0 42937 NULL
++spi_bpw_vardecl_ifx6x60_c_42939_fields spi_bpw vardecl_ifx6x60.c 0 42939 NULL
++txdata_desc_size_vmxnet3_adapter_42942_fields txdata_desc_size vmxnet3_adapter 0 42942 NULL
++ring_size_i915_gem_context_42950_fields ring_size i915_gem_context 0 42950 NULL
++hippi_change_mtu_fndecl_42953_fields hippi_change_mtu fndecl 2 42953 NULL
++brcmf_usb_tx_ctlpkt_fndecl_42958_fields brcmf_usb_tx_ctlpkt fndecl 3 42958 NULL
++gpio_count_async_state_42965_fields gpio_count async_state 0 42965 NULL nohasharray
++udf_get_block_fndecl_42965_fields udf_get_block fndecl 2 42965 &gpio_count_async_state_42965_fields
++__pskb_copy_fclone_fndecl_42969_fields __pskb_copy_fclone fndecl 2 42969 NULL
++periods_max_snd_pcm_hardware_42979_fields periods_max snd_pcm_hardware 0 42979 NULL
++brcmf_sdiod_send_buf_fndecl_42982_fields brcmf_sdiod_send_buf fndecl 3 42982 NULL
++max_pfn_amdgpu_vm_manager_42989_fields max_pfn amdgpu_vm_manager 0 42989 NULL
++len_kvaser_msg_42994_fields len kvaser_msg 0 42994 NULL
++hw_token_fotg210_qh_hw_42995_fields hw_token fotg210_qh_hw 0 42995 NULL
++num_mappings_nd_region_desc_42998_fields num_mappings nd_region_desc 0 42998 NULL
++buf_size_ivtv_stream_43002_fields buf_size ivtv_stream 0 43002 NULL
++header_len_fndecl_43003_fields header_len fndecl 0 43003 NULL
++drm_mm_insert_helper_fndecl_43005_fields drm_mm_insert_helper fndecl 3 43005 NULL
++pkt_size_be_rx_compl_info_43008_fields pkt_size be_rx_compl_info 0 43008 NULL
++mlxsw_pci_resources_query_parse_fndecl_43010_fields mlxsw_pci_resources_query_parse fndecl 2 43010 NULL
++len_i2c_msg_43014_fields len i2c_msg 0 43014 NULL
++ath6kl_wmi_reconnect_cmd_fndecl_43017_fields ath6kl_wmi_reconnect_cmd fndecl 2 43017 NULL
++r5l_log_write_empty_meta_block_fndecl_43018_fields r5l_log_write_empty_meta_block fndecl 2 43018 NULL
++num_cons_qed_iscsi_pf_params_43021_fields num_cons qed_iscsi_pf_params 0 43021 NULL
++PacketLength__MSG_LAN_RECEIVE_POST_REPLY_43028_fields PacketLength _MSG_LAN_RECEIVE_POST_REPLY 0 43028 NULL
++a_bss_exec_43030_fields a_bss exec 0 43030 NULL
++usHActive__ATOM_DTD_FORMAT_43031_fields usHActive _ATOM_DTD_FORMAT 0 43031 NULL nohasharray
++count_ixgbe_ring_43031_fields count ixgbe_ring 0 43031 &usHActive__ATOM_DTD_FORMAT_43031_fields
++pagl_leftrec_xfs_perag_43033_fields pagl_leftrec xfs_perag 0 43033 NULL nohasharray
++hop_count_tb_nhi_43033_fields hop_count tb_nhi 0 43033 &pagl_leftrec_xfs_perag_43033_fields
++channels_max_snd_usb_substream_43034_fields channels_max snd_usb_substream 0 43034 NULL
++qpc_entry_sz_mthca_dev_lim_43040_fields qpc_entry_sz mthca_dev_lim 0 43040 NULL
++copy_page_to_iter_iovec_fndecl_43041_fields copy_page_to_iter_iovec fndecl 3 43041 NULL
++init_chip_wc_pat_fndecl_43043_fields init_chip_wc_pat fndecl 2 43043 NULL
++instance_nvme_ctrl_43045_fields instance nvme_ctrl 0 43045 NULL
++free_bootmem_late_fndecl_43051_fields free_bootmem_late fndecl 2 43051 NULL
++stmmac_change_mtu_fndecl_43052_fields stmmac_change_mtu fndecl 2 43052 NULL
++logical_block_size_queue_limits_43053_fields logical_block_size queue_limits 0 43053 NULL
++s_reserved_gdt_blocks_ext4_super_block_43054_fields s_reserved_gdt_blocks ext4_super_block 0 43054 NULL
++mwifiex_rdeeprom_write_fndecl_43057_fields mwifiex_rdeeprom_write fndecl 3 43057 NULL
++acpi_dev_get_ioresource_fndecl_43062_fields acpi_dev_get_ioresource fndecl 3-2 43062 NULL
++len_ib_ucm_rep_43064_fields len ib_ucm_rep 0 43064 NULL
++len_srp_direct_buf_43066_fields len srp_direct_buf 0 43066 NULL
++fat_fallocate_fndecl_43080_fields fat_fallocate fndecl 4-3 43080 NULL
++raw_skid_size_pkcs7_parse_context_43081_fields raw_skid_size pkcs7_parse_context 0 43081 NULL
++output_buffer_size_vardecl_seq_midi_c_43084_fields output_buffer_size vardecl_seq_midi.c 0 43084 NULL
++bttv_prepare_buffer_fndecl_43088_fields bttv_prepare_buffer fndecl 6-5 43088 NULL
++i2c_wr_max_cx24116_config_43094_fields i2c_wr_max cx24116_config 0 43094 NULL
++_create_message_fndecl_43096_fields _create_message fndecl 2 43096 NULL
++printf_size_mon_reader_text_43097_fields printf_size mon_reader_text 0 43097 NULL
++if_sdio_read_rx_unit_fndecl_43099_fields if_sdio_read_rx_unit fndecl 0 43099 NULL
++sector_badblocks_43102_fields sector badblocks 0 43102 NULL
++cyttsp_i2c_write_block_data_fndecl_43104_fields cyttsp_i2c_write_block_data fndecl 4 43104 NULL
++xlog_recover_add_to_trans_fndecl_43108_fields xlog_recover_add_to_trans fndecl 4 43108 NULL
++__rounddown_pow_of_two_fndecl_43111_fields __rounddown_pow_of_two fndecl 0 43111 NULL
++ore_verify_layout_fndecl_43114_fields ore_verify_layout fndecl 1 43114 NULL nohasharray
++valuelen_hi_extended_attribute_43114_fields valuelen_hi extended_attribute 0 43114 &ore_verify_layout_fndecl_43114_fields nohasharray
++start_f2fs_defragment_43114_fields start f2fs_defragment 0 43114 &valuelen_hi_extended_attribute_43114_fields
++range_max_regmap_range_43116_fields range_max regmap_range 0 43116 NULL
++meta_prod_netrx_pending_operations_43121_fields meta_prod netrx_pending_operations 0 43121 NULL nohasharray
++of_alias_get_id_fndecl_43121_fields of_alias_get_id fndecl 0 43121 &meta_prod_netrx_pending_operations_43121_fields
++prepare_elf64_ram_headers_callback_fndecl_43123_fields prepare_elf64_ram_headers_callback fndecl 1-2 43123 NULL
++output_pool_snd_seq_client_pool_43126_fields output_pool snd_seq_client_pool 0 43126 NULL
++fm10k_change_mtu_fndecl_43135_fields fm10k_change_mtu fndecl 2 43135 NULL
++pcf8563_read_block_data_fndecl_43139_fields pcf8563_read_block_data fndecl 3 43139 NULL
++Size_aac_fibhdr_43144_fields Size aac_fibhdr 0 43144 NULL
++xfs_rtmodify_range_fndecl_43150_fields xfs_rtmodify_range fndecl 3-0 43150 NULL
++bblog_offset_mdp_superblock_1_43154_fields bblog_offset mdp_superblock_1 0 43154 NULL
++__f2fs_setxattr_fndecl_43162_fields __f2fs_setxattr fndecl 5 43162 NULL
++filename_size_ecryptfs_filename_43164_fields filename_size ecryptfs_filename 0 43164 NULL nohasharray
++doc_config_location_vardecl_diskonchip_c_43164_fields doc_config_location vardecl_diskonchip.c 0 43164 &filename_size_ecryptfs_filename_43164_fields
++hpi_read_word_fndecl_43165_fields hpi_read_word fndecl 0 43165 NULL
++xlog_bread_noalign_fndecl_43170_fields xlog_bread_noalign fndecl 2 43170 NULL
++packetizeRx_fndecl_43175_fields packetizeRx fndecl 3 43175 NULL
++unxlate_dev_mem_ptr_fndecl_43184_fields unxlate_dev_mem_ptr fndecl 1 43184 NULL
++length_ib_mac_iocb_rsp_43186_fields length ib_mac_iocb_rsp 0 43186 NULL
++block_end_dm_cell_key_43191_fields block_end dm_cell_key 0 43191 NULL
++rx_data_eaten_rxrpc_call_43202_fields rx_data_eaten rxrpc_call 0 43202 NULL nohasharray
++tidno_ath_atx_tid_43202_fields tidno ath_atx_tid 0 43202 &rx_data_eaten_rxrpc_call_43202_fields
++dm_bufio_release_move_fndecl_43207_fields dm_bufio_release_move fndecl 2 43207 NULL
++device_id_ipmi_device_id_43213_fields device_id ipmi_device_id 0 43213 NULL
++ramdisk_size_setup_header_43217_fields ramdisk_size setup_header 0 43217 NULL
++get_data_block_dio_fndecl_43221_fields get_data_block_dio fndecl 2 43221 NULL
++iwlagn_check_ratid_empty_fndecl_43225_fields iwlagn_check_ratid_empty fndecl 3 43225 NULL
++mic_len_ieee80211_cipher_scheme_43227_fields mic_len ieee80211_cipher_scheme 0 43227 NULL
++actual_size_rfd_43243_fields actual_size rfd 0 43243 NULL
++sb_rextents_xfs_sb_43244_fields sb_rextents xfs_sb 0 43244 NULL
++num_vc_iadev_priv_43250_fields num_vc iadev_priv 0 43250 NULL
++regspacing_si_sm_io_43277_fields regspacing si_sm_io 0 43277 NULL
++tx_modulus_cdc_ncm_ctx_43289_fields tx_modulus cdc_ncm_ctx 0 43289 NULL
++size_oid_t_43292_fields size oid_t 0 43292 NULL
++ip_vs_icmp_xmit_v6_fndecl_43294_fields ip_vs_icmp_xmit_v6 fndecl 4 43294 NULL
++num_flush_nvdimm_43298_fields num_flush nvdimm 0 43298 NULL
++transfer_dma_urb_43305_fields transfer_dma urb 0 43305 NULL
++total_nic_func_qlcnic_hardware_context_43307_fields total_nic_func qlcnic_hardware_context 0 43307 NULL
++rio_request_outb_mbox_fndecl_43309_fields rio_request_outb_mbox fndecl 3 43309 NULL
++add_to_list_fndecl_43311_fields add_to_list fndecl 5-4 43311 NULL
++header_len_gether_43313_fields header_len gether 0 43313 NULL
++smsc9420_rx_handoff_fndecl_43315_fields smsc9420_rx_handoff fndecl 3 43315 NULL
++qat_uclo_map_uof_obj_fndecl_43323_fields qat_uclo_map_uof_obj fndecl 3 43323 NULL
++group_count_ore_layout_43325_fields group_count ore_layout 0 43325 NULL
++lpddr_write_buffers_fndecl_43330_fields lpddr_write_buffers fndecl 3 43330 NULL
++max_packet_bytes_ua101_stream_43333_fields max_packet_bytes ua101_stream 0 43333 NULL
++b_num_l1oip_43336_fields b_num l1oip 0 43336 NULL
++file_size_hpfs_dirent_43338_fields file_size hpfs_dirent 0 43338 NULL
++vactive_videomode_43345_fields vactive videomode 0 43345 NULL
++wake_packet_bufsize_iwl_wowlan_status_data_43348_fields wake_packet_bufsize iwl_wowlan_status_data 0 43348 NULL
++entry_size_xpc_channel_43351_fields entry_size xpc_channel 0 43351 NULL nohasharray
++pktsz_fifo_43351_fields pktsz fifo 0 43351 &entry_size_xpc_channel_43351_fields
++header_len_dst_entry_43355_fields header_len dst_entry 0 43355 NULL nohasharray
++get_module_load_offset_fndecl_43355_fields get_module_load_offset fndecl 0 43355 &header_len_dst_entry_43355_fields
++inftl_write_fndecl_43357_fields inftl_write fndecl 2 43357 NULL
++bulk_out_endpoint_edgeport_serial_43358_fields bulk_out_endpoint edgeport_serial 0 43358 NULL
++queue_size_nvme_rdma_queue_43368_fields queue_size nvme_rdma_queue 0 43368 NULL
++port_count_rocker_43373_fields port_count rocker 0 43373 NULL
++snd_usb_endpoint_next_packet_size_fndecl_43377_fields snd_usb_endpoint_next_packet_size fndecl 0 43377 NULL
++dtcs033_pkt_scan_fndecl_43381_fields dtcs033_pkt_scan fndecl 3 43381 NULL
++tci_Vmxnet3_RxCompDesc_43383_fields tci Vmxnet3_RxCompDesc 0 43383 NULL
++sca_detect_ram_fndecl_43387_fields sca_detect_ram fndecl 0 43387 NULL
++x509_note_signature_fndecl_43388_fields x509_note_signature fndecl 5 43388 NULL
++lpt_spc_bits_ubifs_info_43392_fields lpt_spc_bits ubifs_info 0 43392 NULL
++id_via_isa_bridge_43399_fields id via_isa_bridge 0 43399 NULL
++base_nr_i2c_mux_gpio_platform_data_43400_fields base_nr i2c_mux_gpio_platform_data 0 43400 NULL
++depth_saa7146_format_43402_fields depth saa7146_format 0 43402 NULL
++teql_master_mtu_fndecl_43403_fields teql_master_mtu fndecl 2 43403 NULL
++i2c_readbytes_fndecl_43409_fields i2c_readbytes fndecl 4 43409 NULL
++jffs2_trusted_setxattr_fndecl_43413_fields jffs2_trusted_setxattr fndecl 6 43413 NULL
++gss_wrap_kerberos_v1_fndecl_43417_fields gss_wrap_kerberos_v1 fndecl 2 43417 NULL nohasharray
++packet_alloc_skb_fndecl_43417_fields packet_alloc_skb fndecl 5-4-3 43417 &gss_wrap_kerberos_v1_fndecl_43417_fields
++prism2_send_mgmt_fndecl_43422_fields prism2_send_mgmt fndecl 4 43422 NULL
++status_fealnx_desc_43423_fields status fealnx_desc 0 43423 NULL
++dev_pm_opp_set_supported_hw_fndecl_43425_fields dev_pm_opp_set_supported_hw fndecl 3 43425 NULL
++ath6kl_wmi_set_apsd_bfrd_traf_fndecl_43427_fields ath6kl_wmi_set_apsd_bfrd_traf fndecl 2 43427 NULL
++ath10k_pci_hif_exchange_bmi_msg_fndecl_43429_fields ath10k_pci_hif_exchange_bmi_msg fndecl 3 43429 NULL
++offset_afs_call_43431_fields offset afs_call 0 43431 NULL
++nfs4_proc_set_acl_fndecl_43435_fields nfs4_proc_set_acl fndecl 3 43435 NULL
++XRES_kyrofb_info_43436_fields XRES kyrofb_info 0 43436 NULL
++memblock_alloc_nid_fndecl_43439_fields memblock_alloc_nid fndecl 2 43439 NULL
++ems_pcmcia_add_card_fndecl_43440_fields ems_pcmcia_add_card fndecl 2 43440 NULL
++per_txdl_space_vxge_hw_fifo_attr_43441_fields per_txdl_space vxge_hw_fifo_attr 0 43441 NULL
++len_imgchunk_43445_fields len imgchunk 0 43445 NULL
++max_pkt_tipc_sock_43446_fields max_pkt tipc_sock 0 43446 NULL
++wReportDescLength_i2c_hid_desc_43447_fields wReportDescLength i2c_hid_desc 0 43447 NULL
++vfs_fsync_range_fndecl_43448_fields vfs_fsync_range fndecl 0 43448 NULL
++aper_base_radeon_mc_43460_fields aper_base radeon_mc 0 43460 NULL
++l_start_ocfs2_space_resv_43461_fields l_start ocfs2_space_resv 0 43461 NULL nohasharray
++phys_addr_perf_mw_43461_fields phys_addr perf_mw 0 43461 &l_start_ocfs2_space_resv_43461_fields
++pda_size_fw_info_43468_fields pda_size fw_info 0 43468 NULL nohasharray
++meta_dev_idx_drbd_md_43468_fields meta_dev_idx drbd_md 0 43468 &pda_size_fw_info_43468_fields
++xfrm_count_pfkey_auth_supported_fndecl_43471_fields xfrm_count_pfkey_auth_supported fndecl 0 43471 NULL
++nfs_pgio_rpcsetup_fndecl_43472_fields nfs_pgio_rpcsetup fndecl 2-3 43472 NULL
++max_VF_buses_pci_sriov_43475_fields max_VF_buses pci_sriov 0 43475 NULL
++mmio_base_phys_mb862xxfb_par_43476_fields mmio_base_phys mb862xxfb_par 0 43476 NULL
++cmd_drm_ioctl_desc_43477_fields cmd drm_ioctl_desc 0 43477 NULL nohasharray
++read_pci_config_byte_fndecl_43477_fields read_pci_config_byte fndecl 0 43477 &cmd_drm_ioctl_desc_43477_fields
++total_size_vardecl_mtdram_c_43478_fields total_size vardecl_mtdram.c 0 43478 NULL nohasharray
++length_cpcs_trailer_43478_fields length cpcs_trailer 0 43478 &total_size_vardecl_mtdram_c_43478_fields
++sd_jbsize_gfs2_sbd_43480_fields sd_jbsize gfs2_sbd 0 43480 NULL
++pcm_capture_analog_channels_snd_tscm_spec_43483_fields pcm_capture_analog_channels snd_tscm_spec 0 43483 NULL nohasharray
++sysv_iget_fndecl_43483_fields sysv_iget fndecl 2 43483 &pcm_capture_analog_channels_snd_tscm_spec_43483_fields
++atl1e_change_mtu_fndecl_43485_fields atl1e_change_mtu fndecl 2 43485 NULL
++secondary_bin_count_drm_mga_dma_bootstrap_43491_fields secondary_bin_count drm_mga_dma_bootstrap 0 43491 NULL
++bioset_integrity_create_fndecl_43495_fields bioset_integrity_create fndecl 2 43495 NULL
++ra_meta_pages_fndecl_43496_fields ra_meta_pages fndecl 2-0 43496 NULL
++size_TxFifo_43497_fields size TxFifo 0 43497 NULL
++netlink_recvmsg_fndecl_43499_fields netlink_recvmsg fndecl 3 43499 NULL
++Count_smb_com_write_rsp_43500_fields Count smb_com_write_rsp 0 43500 NULL
++gfs2_log_write_fndecl_43502_fields gfs2_log_write fndecl 4-3 43502 NULL nohasharray
++max_reqs_rpc_xprt_43502_fields max_reqs rpc_xprt 0 43502 &gfs2_log_write_fndecl_43502_fields
++adxl34x_i2c_read_block_fndecl_43504_fields adxl34x_i2c_read_block fndecl 3 43504 NULL nohasharray
++limit_cmdline_vardecl_dma_contiguous_c_43504_fields limit_cmdline vardecl_dma-contiguous.c 0 43504 &adxl34x_i2c_read_block_fndecl_43504_fields
++ext4_ind_map_blocks_fndecl_43505_fields ext4_ind_map_blocks fndecl 0 43505 NULL
++ioremap_wc_fndecl_43508_fields ioremap_wc fndecl 2-1 43508 NULL
++size_compat_ipt_replace_43509_fields size compat_ipt_replace 0 43509 NULL
++size_uvc_control_info_43512_fields size uvc_control_info 0 43512 NULL
++snd_es1968_new_memory_fndecl_43515_fields snd_es1968_new_memory fndecl 2 43515 NULL
++i_lenExtents_udf_inode_info_43517_fields i_lenExtents udf_inode_info 0 43517 NULL
++sb_rextslog_xfs_sb_43520_fields sb_rextslog xfs_sb 0 43520 NULL
++fifo_pool_size_snd_seq_user_client_43523_fields fifo_pool_size snd_seq_user_client 0 43523 NULL
++mei_amthif_read_start_fndecl_43534_fields mei_amthif_read_start fndecl 0 43534 NULL
++points_per_channel_pda_pa_curve_data_43548_fields points_per_channel pda_pa_curve_data 0 43548 NULL
++offset_qcafrm_handle_43553_fields offset qcafrm_handle 0 43553 NULL
++bg_inode_table_lo_ext4_group_desc_43555_fields bg_inode_table_lo ext4_group_desc 0 43555 NULL
++hdrlen_hip_hdr_43556_fields hdrlen hip_hdr 0 43556 NULL
++buffer_size_budget_43564_fields buffer_size budget 0 43564 NULL
++tx_buf_clear_sent_ks959_cb_43565_fields tx_buf_clear_sent ks959_cb 0 43565 NULL
++ib_create_send_mad_fndecl_43569_fields ib_create_send_mad fndecl 6 43569 NULL
++ccp_fill_queue_buf_fndecl_43580_fields ccp_fill_queue_buf fndecl 0 43580 NULL
++xfs_difree_fndecl_43581_fields xfs_difree fndecl 2 43581 NULL
++__br_vlan_set_default_pvid_fndecl_43587_fields __br_vlan_set_default_pvid fndecl 2 43587 NULL
++size_ext4_io_end_43590_fields size ext4_io_end 0 43590 NULL
++page_cnt_i40iw_mr_43591_fields page_cnt i40iw_mr 0 43591 NULL
++recv_data_fndecl_43596_fields recv_data fndecl 3 43596 NULL
++rem_len_hci_rp_read_local_amp_assoc_43602_fields rem_len hci_rp_read_local_amp_assoc 0 43602 NULL nohasharray
++isdn_ppp_ccp_xmit_reset_fndecl_43602_fields isdn_ppp_ccp_xmit_reset fndecl 6 43602 &rem_len_hci_rp_read_local_amp_assoc_43602_fields nohasharray
++mult_req_ide_drive_s_43602_fields mult_req ide_drive_s 0 43602 &isdn_ppp_ccp_xmit_reset_fndecl_43602_fields
++nfsd_vfs_read_fndecl_43608_fields nfsd_vfs_read fndecl 3-5 43608 NULL
++raid5_resize_fndecl_43609_fields raid5_resize fndecl 2 43609 NULL
++minor_usb_serial_port_43611_fields minor usb_serial_port 0 43611 NULL
++phys_ctlmem_fst_card_info_43612_fields phys_ctlmem fst_card_info 0 43612 NULL
++sg_limit_blogic_ext_setup_43615_fields sg_limit blogic_ext_setup 0 43615 NULL nohasharray
++qnx4_block_map_fndecl_43615_fields qnx4_block_map fndecl 0-2 43615 &sg_limit_blogic_ext_setup_43615_fields
++camera_fbmem_size_viafb_dev_43616_fields camera_fbmem_size viafb_dev 0 43616 NULL
++ceph_fill_file_size_fndecl_43619_fields ceph_fill_file_size fndecl 4 43619 NULL
++drm_format_plane_cpp_fndecl_43621_fields drm_format_plane_cpp fndecl 0 43621 NULL
++btusb_recv_isoc_fndecl_43628_fields btusb_recv_isoc fndecl 3 43628 NULL
++count_phm_ppt_v1_clock_voltage_dependency_table_43634_fields count phm_ppt_v1_clock_voltage_dependency_table 0 43634 NULL
++drm_gtf2_k_fndecl_43638_fields drm_gtf2_k fndecl 0 43638 NULL nohasharray
++technisat_usb2_eeprom_lrc_read_fndecl_43638_fields technisat_usb2_eeprom_lrc_read fndecl 4 43638 &drm_gtf2_k_fndecl_43638_fields
++walk_iomem_res_desc_fndecl_43641_fields walk_iomem_res_desc fndecl 4-3 43641 NULL
++info_server_fndecl_43644_fields info_server fndecl 4 43644 NULL
++xfs_setfilesize_trans_alloc_fndecl_43654_fields xfs_setfilesize_trans_alloc fndecl 0 43654 NULL
++name_len_ceph_object_id_43655_fields name_len ceph_object_id 0 43655 NULL
++ibp_queue_depth_kib_peer_43675_fields ibp_queue_depth kib_peer 0 43675 NULL
++gsi_kvm_irq_routing_entry_43676_fields gsi kvm_irq_routing_entry 0 43676 NULL
++header_size_perf_event_43679_fields header_size perf_event 0 43679 NULL
++init_packet_fndecl_43683_fields init_packet fndecl 3 43683 NULL
++data_offset_nfsd4_compound_state_43684_fields data_offset nfsd4_compound_state 0 43684 NULL nohasharray
++data_len_pegasus_43684_fields data_len pegasus 0 43684 &data_offset_nfsd4_compound_state_43684_fields
++__get_meta_page_fndecl_43692_fields __get_meta_page fndecl 2 43692 NULL
++nxt200x_readbytes_fndecl_43693_fields nxt200x_readbytes fndecl 4 43693 NULL
++num_tx_descs_octeon_nic_if_config_43704_fields num_tx_descs octeon_nic_if_config 0 43704 NULL
++rx_buf_len_bcmgenet_priv_43705_fields rx_buf_len bcmgenet_priv 0 43705 NULL
++rtl_tx_agg_start_fndecl_43707_fields rtl_tx_agg_start fndecl 4 43707 NULL
++gtk_icvlen_iwl_mvm_43710_fields gtk_icvlen iwl_mvm 0 43710 NULL
++of_irq_get_fndecl_43712_fields of_irq_get fndecl 0 43712 NULL
++data_block_quadlets_amdtp_stream_43723_fields data_block_quadlets amdtp_stream 0 43723 NULL
++ReplyFrameSize_mpt3sas_facts_43736_fields ReplyFrameSize mpt3sas_facts 0 43736 NULL nohasharray
++kone_send_fndecl_43736_fields kone_send fndecl 4 43736 &ReplyFrameSize_mpt3sas_facts_43736_fields
++used_map_cnt_verifier_env_43747_fields used_map_cnt verifier_env 0 43747 NULL
++sas_host_smp_write_gpio_fndecl_43749_fields sas_host_smp_write_gpio fndecl 0 43749 NULL
++rrpc_update_map_fndecl_43752_fields rrpc_update_map fndecl 2 43752 NULL
++__copy_from_user_ll_nocache_fndecl_43756_fields __copy_from_user_ll_nocache fndecl 0 43756 NULL nohasharray
++data1_sisusb_command_43756_fields data1 sisusb_command 0 43756 &__copy_from_user_ll_nocache_fndecl_43756_fields nohasharray
++len_meta_value_43756_fields len meta_value 0 43756 &data1_sisusb_command_43756_fields
++firstEUN_INFTLrecord_43763_fields firstEUN INFTLrecord 0 43763 NULL
++cached_start_hfsplus_inode_info_43773_fields cached_start hfsplus_inode_info 0 43773 NULL
++clipcount_cap_vivid_dev_43781_fields clipcount_cap vivid_dev 0 43781 NULL
++prepare_packet_fndecl_43783_fields prepare_packet fndecl 0 43783 NULL
++data_pad_ubi_volume_43787_fields data_pad ubi_volume 0 43787 NULL
++smsc47m1_device_add_fndecl_43796_fields smsc47m1_device_add fndecl 1 43796 NULL
++uhci_urb_dequeue_fndecl_43804_fields uhci_urb_dequeue fndecl 3 43804 NULL
++xfs_trans_reserve_fndecl_43809_fields xfs_trans_reserve fndecl 3-0 43809 NULL
++rdes0_rx_desc_43817_fields rdes0 rx_desc 0 43817 NULL
++__vb2_perform_fileio_fndecl_43818_fields __vb2_perform_fileio fndecl 3 43818 NULL
++_save_mc_fndecl_43819_fields _save_mc fndecl 0-3 43819 NULL
++i915_gem_object_create_stolen_fndecl_43837_fields i915_gem_object_create_stolen fndecl 2 43837 NULL
++unlink1_fndecl_43840_fields unlink1 fndecl 2 43840 NULL
++ath6kl_wmi_enable_sched_scan_cmd_fndecl_43841_fields ath6kl_wmi_enable_sched_scan_cmd fndecl 2 43841 NULL
++initrd_start_vardecl_43848_fields initrd_start vardecl 0 43848 NULL
++xen_set_nslabs_fndecl_43849_fields xen_set_nslabs fndecl 0-1 43849 NULL
++wlcore_scan_fndecl_43850_fields wlcore_scan fndecl 4 43850 NULL nohasharray
++wm_adsp_read_data_block_fndecl_43850_fields wm_adsp_read_data_block fndecl 0 43850 &wlcore_scan_fndecl_43850_fields
++first_sector_swap_map_handle_43853_fields first_sector swap_map_handle 0 43853 NULL
++indat_endpoint_keyspan_device_details_43860_fields indat_endpoint keyspan_device_details 0 43860 NULL
++get_sset_count_ethtool_ops_43861_fields get_sset_count ethtool_ops 0 43861 NULL
++nr_channels_dw_dma_platform_data_43863_fields nr_channels dw_dma_platform_data 0 43863 NULL
++s_l2bsize_jfs_superblock_43870_fields s_l2bsize jfs_superblock 0 43870 NULL
++bulk_in_endpointAddr_hdpvr_device_43874_fields bulk_in_endpointAddr hdpvr_device 0 43874 NULL nohasharray
++of_property_read_u32_array_fndecl_43874_fields of_property_read_u32_array fndecl 0 43874 &bulk_in_endpointAddr_hdpvr_device_43874_fields
++iovec_count_sg_io_hdr_43875_fields iovec_count sg_io_hdr 0 43875 NULL
++ts_ctxnum_gru_thread_state_43878_fields ts_ctxnum gru_thread_state 0 43878 NULL
++m_logbsize_xfs_mount_43888_fields m_logbsize xfs_mount 0 43888 NULL
++zap_page_range_single_fndecl_43890_fields zap_page_range_single fndecl 3-2 43890 NULL
++len_libipw_info_element_43892_fields len libipw_info_element 0 43892 NULL
++ocfs2_decrease_refcount_fndecl_43893_fields ocfs2_decrease_refcount fndecl 4-3 43893 NULL
++skb_vlan_push_fndecl_43895_fields skb_vlan_push fndecl 3 43895 NULL nohasharray
++device_id_onenand_chip_43895_fields device_id onenand_chip 0 43895 &skb_vlan_push_fndecl_43895_fields
++xstats_len_gnet_dump_43898_fields xstats_len gnet_dump 0 43898 NULL
++pnp_add_dma_resource_fndecl_43903_fields pnp_add_dma_resource fndecl 2 43903 NULL
++lc_up_len_nfsd4_layoutcommit_43904_fields lc_up_len nfsd4_layoutcommit 0 43904 NULL
++il4965_tx_agg_start_fndecl_43905_fields il4965_tx_agg_start fndecl 4 43905 NULL
++sta_data_size_ieee80211_hw_43910_fields sta_data_size ieee80211_hw 0 43910 NULL
++xres_drm_cmdline_mode_43915_fields xres drm_cmdline_mode 0 43915 NULL
++vcount_snd_emu10k1_fx8010_ctl_43917_fields vcount snd_emu10k1_fx8010_ctl 0 43917 NULL
++in_int_pipe_usbtest_dev_43922_fields in_int_pipe usbtest_dev 0 43922 NULL
++phys_statctrl_base__synclinkmp_info_43923_fields phys_statctrl_base _synclinkmp_info 0 43923 NULL
++rd_length_nfsd4_read_43924_fields rd_length nfsd4_read 0 43924 NULL
++mbind_range_fndecl_43926_fields mbind_range fndecl 3-2 43926 NULL
++max_threads_vardecl_43940_fields max_threads vardecl 0 43940 NULL nohasharray
++queue_pages_pte_range_fndecl_43940_fields queue_pages_pte_range fndecl 2 43940 &max_threads_vardecl_43940_fields
++ubifs_change_one_lp_fndecl_43942_fields ubifs_change_one_lp fndecl 3 43942 NULL
++dce_pvc_count_frad_state_43946_fields dce_pvc_count frad_state 0 43946 NULL
++sddr09_readX_fndecl_43951_fields sddr09_readX fndecl 5 43951 NULL
++ib_send_cm_rtu_fndecl_43953_fields ib_send_cm_rtu fndecl 3 43953 NULL
++size_soundfont_sample_info_43957_fields size soundfont_sample_info 0 43957 NULL
++num_drc_cfgs_wm8904_pdata_43963_fields num_drc_cfgs wm8904_pdata 0 43963 NULL
++rx_ring_count_igb_adapter_43964_fields rx_ring_count igb_adapter 0 43964 NULL
++s_firstdatazone_isofs_sb_info_43968_fields s_firstdatazone isofs_sb_info 0 43968 NULL
++csum_start_virtio_net_hdr_43969_fields csum_start virtio_net_hdr 0 43969 NULL
++value_size_bpf_map_43980_fields value_size bpf_map 0 43980 NULL nohasharray
++s_first_cluster_group_ocfs2_super_block_43980_fields s_first_cluster_group ocfs2_super_block 0 43980 &value_size_bpf_map_43980_fields
++security_policydb_len_fndecl_43981_fields security_policydb_len fndecl 0 43981 NULL
++cur_size_zr364xx_framei_43985_fields cur_size zr364xx_framei 0 43985 NULL
++free_memtype_fndecl_43986_fields free_memtype fndecl 1-2 43986 NULL
++vid_mv88e6xxx_vtu_stu_entry_43991_fields vid mv88e6xxx_vtu_stu_entry 0 43991 NULL
++pvm_determine_end_fndecl_43995_fields pvm_determine_end fndecl 0-3 43995 NULL nohasharray
++nsize_jffs2_raw_dirent_43995_fields nsize jffs2_raw_dirent 0 43995 &pvm_determine_end_fndecl_43995_fields
++copy_templates_fndecl_43996_fields copy_templates fndecl 3 43996 NULL
++snd_pcm_lib_malloc_pages_fndecl_43997_fields snd_pcm_lib_malloc_pages fndecl 2 43997 NULL
++__e820_add_region_fndecl_44001_fields __e820_add_region fndecl 3 44001 NULL
++max_io_sz_snic_fw_info_44009_fields max_io_sz snic_fw_info 0 44009 NULL
++level_pid_namespace_44021_fields level pid_namespace 0 44021 NULL
++rx_buffer_truesize_efx_nic_44027_fields rx_buffer_truesize efx_nic 0 44027 NULL
++ahc_linux_map_seg_fndecl_44059_fields ahc_linux_map_seg fndecl 4-5 44059 NULL
++num_trace_enums_module_44062_fields num_trace_enums module 0 44062 NULL nohasharray
++ctxt_hfi1_ctxtdata_44062_fields ctxt hfi1_ctxtdata 0 44062 &num_trace_enums_module_44062_fields
++blksize_xfs_da_geometry_44068_fields blksize xfs_da_geometry 0 44068 NULL
++xen_io_tlb_nslabs_vardecl_swiotlb_xen_c_44077_fields xen_io_tlb_nslabs vardecl_swiotlb-xen.c 0 44077 NULL
++num_subpackets_rmi_register_desc_item_44083_fields num_subpackets rmi_register_desc_item 0 44083 NULL
++netup_read_i2c_fndecl_44096_fields netup_read_i2c fndecl 5 44096 NULL
++ipoib_cm_create_srq_fndecl_44098_fields ipoib_cm_create_srq fndecl 2 44098 NULL
++xdr_decode_array2_fndecl_44099_fields xdr_decode_array2 fndecl 2-0 44099 NULL
++m_inode_cluster_size_xfs_mount_44101_fields m_inode_cluster_size xfs_mount 0 44101 NULL
++payload_sz_storvsc_cmd_request_44107_fields payload_sz storvsc_cmd_request 0 44107 NULL
++fats_fat_boot_sector_44112_fields fats fat_boot_sector 0 44112 NULL
++max_rdma_ctxs_ib_qp_cap_44123_fields max_rdma_ctxs ib_qp_cap 0 44123 NULL
++base_nforce2_smbus_44136_fields base nforce2_smbus 0 44136 NULL
++key_maxval_mcs_platform_data_44139_fields key_maxval mcs_platform_data 0 44139 NULL
++submit_extent_page_fndecl_44155_fields submit_extent_page fndecl 7-8-6 44155 NULL
++octeon_setup_droq_fndecl_44160_fields octeon_setup_droq fndecl 4-3 44160 NULL
++bfad_debugfs_write_regwr_fndecl_44162_fields bfad_debugfs_write_regwr fndecl 3 44162 NULL
++recvmsg_proto_ops_44163_fields recvmsg proto_ops 0 44163 NULL
++y_len_ccp_ecc_point_44168_fields y_len ccp_ecc_point 0 44168 NULL
++size_drm_mode_create_dumb_44176_fields size drm_mode_create_dumb 0 44176 NULL
++tcfp_nkeys_tcf_pedit_44184_fields tcfp_nkeys tcf_pedit 0 44184 NULL
++qlcnic_change_mtu_fndecl_44186_fields qlcnic_change_mtu fndecl 2 44186 NULL
++btrfs_file_llseek_fndecl_44189_fields btrfs_file_llseek fndecl 2 44189 NULL
++len_scifioctl_copy_44214_fields len scifioctl_copy 0 44214 NULL
++s_bsize_jfs_superblock_44215_fields s_bsize jfs_superblock 0 44215 NULL nohasharray
++i2c_len_intel_scu_ipc_pdata_t_44215_fields i2c_len intel_scu_ipc_pdata_t 0 44215 &s_bsize_jfs_superblock_44215_fields
++IA_TX_BUF_vardecl_iphase_c_44217_fields IA_TX_BUF vardecl_iphase.c 0 44217 NULL nohasharray
++ext2_inode_by_name_fndecl_44217_fields ext2_inode_by_name fndecl 0 44217 &IA_TX_BUF_vardecl_iphase_c_44217_fields
++__ubifs_setxattr_fndecl_44224_fields __ubifs_setxattr fndecl 4 44224 NULL
++length_rxe_dma_info_44225_fields length rxe_dma_info 0 44225 NULL
++len_args_fndecl_44226_fields len_args fndecl 0 44226 NULL
++ufs_extend_tail_fndecl_44228_fields ufs_extend_tail fndecl 2 44228 NULL
++ima_store_measurement_fndecl_44233_fields ima_store_measurement fndecl 5 44233 NULL
++au0828_init_isoc_fndecl_44238_fields au0828_init_isoc fndecl 4-2 44238 NULL nohasharray
++ns_first_data_block_the_nilfs_44238_fields ns_first_data_block the_nilfs 0 44238 &au0828_init_isoc_fndecl_44238_fields nohasharray
++iriap_connect_indication_fndecl_44238_fields iriap_connect_indication fndecl 5 44238 &ns_first_data_block_the_nilfs_44238_fields
++irda_sendmsg_fndecl_44239_fields irda_sendmsg fndecl 3 44239 NULL nohasharray
++frag_stride_mlx4_en_frag_info_44239_fields frag_stride mlx4_en_frag_info 0 44239 &irda_sendmsg_fndecl_44239_fields
++num_pages_vb2_dma_sg_buf_44241_fields num_pages vb2_dma_sg_buf 0 44241 NULL
++cxgb4_pktgl_to_skb_fndecl_44248_fields cxgb4_pktgl_to_skb fndecl 3-2 44248 NULL nohasharray
++ax25_addr_size_fndecl_44248_fields ax25_addr_size fndecl 0 44248 &cxgb4_pktgl_to_skb_fndecl_44248_fields
++num_reg_defaults_raw_regmap_config_44249_fields num_reg_defaults_raw regmap_config 0 44249 NULL
++skd_sgs_per_request_vardecl_skd_main_c_44264_fields skd_sgs_per_request vardecl_skd_main.c 0 44264 NULL
++length_ceph_pagelist_44267_fields length ceph_pagelist 0 44267 NULL
++s_blocks_per_group_ext2_sb_info_44270_fields s_blocks_per_group ext2_sb_info 0 44270 NULL nohasharray
++skb_put_frags_fndecl_44270_fields skb_put_frags fndecl 3-2 44270 &s_blocks_per_group_ext2_sb_info_44270_fields
++log_pmtu_rvt_ah_44277_fields log_pmtu rvt_ah 0 44277 NULL
++new_raid_disk_md_rdev_44282_fields new_raid_disk md_rdev 0 44282 NULL
++send_bulk_static_data_fndecl_44287_fields send_bulk_static_data fndecl 3 44287 NULL
++rsp_len_bfad_fcxp_44290_fields rsp_len bfad_fcxp 0 44290 NULL
++pbus_size_mem_fndecl_44293_fields pbus_size_mem fndecl 6 44293 NULL
++NumberOfPorts_mpt3sas_facts_44306_fields NumberOfPorts mpt3sas_facts 0 44306 NULL
++plen_iwch_ep_44317_fields plen iwch_ep 0 44317 NULL
++rq_num_entries_c4iw_qp_attributes_44321_fields rq_num_entries c4iw_qp_attributes 0 44321 NULL
++produce_size_qp_entry_44325_fields produce_size qp_entry 0 44325 NULL
++encode_op_hdr_fndecl_44327_fields encode_op_hdr fndecl 3 44327 NULL
++size_drm_radeon_gem_userptr_44334_fields size drm_radeon_gem_userptr 0 44334 NULL
++arm_copy_from_user_fndecl_44337_fields arm_copy_from_user fndecl 0 44337 NULL
++bytesused_cx18_buffer_44339_fields bytesused cx18_buffer 0 44339 NULL
++tail_circ_buf_44346_fields tail circ_buf 0 44346 NULL nohasharray
++count_v4l2_ext_controls_44346_fields count v4l2_ext_controls 0 44346 &tail_circ_buf_44346_fields
++brcmf_sdio_txpkt_prep_sg_fndecl_44354_fields brcmf_sdio_txpkt_prep_sg fndecl 4-0 44354 NULL
++irlan_connect_confirm_fndecl_44361_fields irlan_connect_confirm fndecl 5 44361 NULL
++jffs2_write_end_fndecl_44362_fields jffs2_write_end fndecl 3 44362 NULL
++info0_htt_rx_delba_44375_fields info0 htt_rx_delba 0 44375 NULL
++tipc_link_bc_create_fndecl_44381_fields tipc_link_bc_create fndecl 4 44381 NULL
++dvb_net_ioctl_fndecl_44388_fields dvb_net_ioctl fndecl 2 44388 NULL
++reiserfs_xattr_set_fndecl_44389_fields reiserfs_xattr_set fndecl 4 44389 NULL
++s_raid_stripe_width_ext4_super_block_44401_fields s_raid_stripe_width ext4_super_block 0 44401 NULL
++kcm_sendpage_fndecl_44404_fields kcm_sendpage fndecl 4-3 44404 NULL nohasharray
++num_iscsi_tasks_cnic_local_44404_fields num_iscsi_tasks cnic_local 0 44404 &kcm_sendpage_fndecl_44404_fields
++child_mtu_cached_xfrm_dst_44407_fields child_mtu_cached xfrm_dst 0 44407 NULL
++vmxnet3_create_queues_fndecl_44410_fields vmxnet3_create_queues fndecl 5 44410 NULL
++yres_virtual_fb_var_screeninfo_44414_fields yres_virtual fb_var_screeninfo 0 44414 NULL
++count_configfs_buffer_44416_fields count configfs_buffer 0 44416 NULL
++__get_vm_area_fndecl_44428_fields __get_vm_area fndecl 3 44428 NULL nohasharray
++rq_ecount_lpfc_sli4_hba_44428_fields rq_ecount lpfc_sli4_hba 0 44428 &__get_vm_area_fndecl_44428_fields
++nbd_ioctl_fndecl_44444_fields nbd_ioctl fndecl 4 44444 NULL
++ivsize_crypto_skcipher_44448_fields ivsize crypto_skcipher 0 44448 NULL
++hh_len_hh_cache_44455_fields hh_len hh_cache 0 44455 NULL
++cx2341x_handler_init_fndecl_44466_fields cx2341x_handler_init fndecl 2 44466 NULL
++cap_height_usbtv_norm_params_44467_fields cap_height usbtv_norm_params 0 44467 NULL
++get_data_block_bmap_fndecl_44468_fields get_data_block_bmap fndecl 2 44468 NULL
++address_length_acpi_address32_attribute_44471_fields address_length acpi_address32_attribute 0 44471 NULL
++skb_find_text_fndecl_44481_fields skb_find_text fndecl 2-0 44481 NULL
++virtio_gpu_gem_create_fndecl_44491_fields virtio_gpu_gem_create fndecl 3 44491 NULL
++s_first_data_block_ext4_super_block_44495_fields s_first_data_block ext4_super_block 0 44495 NULL
++mmcies_max_wusbhc_44498_fields mmcies_max wusbhc 0 44498 NULL
++pci_cardbus_io_size_vardecl_44500_fields pci_cardbus_io_size vardecl 0 44500 NULL
++io_start_nfs_pgio_header_44501_fields io_start nfs_pgio_header 0 44501 NULL
++omfs_bread_fndecl_44502_fields omfs_bread fndecl 2 44502 NULL nohasharray
++skb_append_pagefrags_fndecl_44502_fields skb_append_pagefrags fndecl 3 44502 &omfs_bread_fndecl_44502_fields
++btrfs_add_ordered_extent_fndecl_44505_fields btrfs_add_ordered_extent fndecl 4-2-3 44505 NULL
++len_iwl_fw_dbg_mem_seg_tlv_44509_fields len iwl_fw_dbg_mem_seg_tlv 0 44509 NULL
++ftdi_elan_edset_setup_fndecl_44513_fields ftdi_elan_edset_setup fndecl 0 44513 NULL nohasharray
++ubifs_add_snod_fndecl_44513_fields ubifs_add_snod fndecl 4 44513 &ftdi_elan_edset_setup_fndecl_44513_fields
++lock_loop_fndecl_44514_fields lock_loop fndecl 1-0 44514 NULL
++__do_tune_cpucache_fndecl_44519_fields __do_tune_cpucache fndecl 3-2-4 44519 NULL
++len_pnfs_block_extent_44521_fields len pnfs_block_extent 0 44521 NULL
++video_bpp_sis_video_info_44522_fields video_bpp sis_video_info 0 44522 NULL nohasharray
++length_mtd_oob_buf_44522_fields length mtd_oob_buf 0 44522 &video_bpp_sis_video_info_44522_fields
++rbytes_tree_balance_44523_fields rbytes tree_balance 0 44523 NULL
++set_le_key_k_type_fndecl_44525_fields set_le_key_k_type fndecl 3 44525 NULL
++xlog_recover_clear_agi_bucket_fndecl_44526_fields xlog_recover_clear_agi_bucket fndecl 2 44526 NULL
++yenta_search_one_res_fndecl_44533_fields yenta_search_one_res fndecl 3 44533 NULL
++max_cqes_mthca_limits_44535_fields max_cqes mthca_limits 0 44535 NULL
++consume_size_vmci_transport_44542_fields consume_size vmci_transport 0 44542 NULL
++add_debugfs_mem_fndecl_44546_fields add_debugfs_mem fndecl 4 44546 NULL
++container_height_dmm_44549_fields container_height dmm 0 44549 NULL
++chanctx_data_size_ieee80211_hw_44557_fields chanctx_data_size ieee80211_hw 0 44557 NULL
++wTotalLength_usb_config_descriptor_44569_fields wTotalLength usb_config_descriptor 0 44569 NULL nohasharray
++hpfs_fnode_dno_fndecl_44569_fields hpfs_fnode_dno fndecl 0-2 44569 &wTotalLength_usb_config_descriptor_44569_fields
++parent_i_pos_hi_fat_fid_44570_fields parent_i_pos_hi fat_fid 0 44570 NULL
++cfg0_base_pcie_port_44572_fields cfg0_base pcie_port 0 44572 NULL
++tw_transfer_internal_fndecl_44581_fields tw_transfer_internal fndecl 4 44581 NULL
++nlb_nvme_dsm_range_44584_fields nlb nvme_dsm_range 0 44584 NULL
++smsc47m1_find_fndecl_44589_fields smsc47m1_find fndecl 0 44589 NULL
++rd_data0_gfs2_rgrpd_44591_fields rd_data0 gfs2_rgrpd 0 44591 NULL
++allocate_partition_fndecl_44598_fields allocate_partition fndecl 4 44598 NULL
++of_io_request_and_map_fndecl_44605_fields of_io_request_and_map fndecl 2 44605 NULL
++vid_hdr_offset_ubi_attach_req_44622_fields vid_hdr_offset ubi_attach_req 0 44622 NULL nohasharray
++irq_cros_ec_device_44622_fields irq cros_ec_device 0 44622 &vid_hdr_offset_ubi_attach_req_44622_fields
++security_file_permission_fndecl_44629_fields security_file_permission fndecl 0 44629 NULL
++max_sectors_Scsi_Host_44630_fields max_sectors Scsi_Host 0 44630 NULL
++data_len_krb5_tagged_data_44634_fields data_len krb5_tagged_data 0 44634 NULL
++bd_block_size_block_device_44635_fields bd_block_size block_device 0 44635 NULL
++chunk_root_btrfs_super_block_44639_fields chunk_root btrfs_super_block 0 44639 NULL
++hfcpci_empty_bfifo_fndecl_44640_fields hfcpci_empty_bfifo fndecl 4 44640 NULL
++nb_dev_strip_zone_44645_fields nb_dev strip_zone 0 44645 NULL
++len_nlm_lock_44646_fields len nlm_lock 0 44646 NULL
++cp_payload_f2fs_super_block_44648_fields cp_payload f2fs_super_block 0 44648 NULL
++rel_sectors_mmc_ext_csd_44650_fields rel_sectors mmc_ext_csd 0 44650 NULL
++iscsi_segment_init_linear_fndecl_44654_fields iscsi_segment_init_linear fndecl 3 44654 NULL nohasharray
++cm_cno_nilfs_cpmode_44654_fields cm_cno nilfs_cpmode 0 44654 &iscsi_segment_init_linear_fndecl_44654_fields
++bLength_usb_interface_descriptor_44655_fields bLength usb_interface_descriptor 0 44655 NULL nohasharray
++nr_sectors_blkif_request_discard_44655_fields nr_sectors blkif_request_discard 0 44655 &bLength_usb_interface_descriptor_44655_fields
++sparse_early_usemaps_alloc_pgdat_section_fndecl_44659_fields sparse_early_usemaps_alloc_pgdat_section fndecl 2 44659 NULL
++import_single_range_fndecl_44662_fields import_single_range fndecl 3 44662 NULL
++max_rqe_pdid_ocrdma_query_srq_rsp_44663_fields max_rqe_pdid ocrdma_query_srq_rsp 0 44663 NULL
++fe_len_ext4_free_extent_44669_fields fe_len ext4_free_extent 0 44669 NULL
++lfb_width_screen_info_44670_fields lfb_width screen_info 0 44670 NULL
++overlay_cap_top_vivid_dev_44672_fields overlay_cap_top vivid_dev 0 44672 NULL
++mad_sendq_size_vardecl_mad_c_44673_fields mad_sendq_size vardecl_mad.c 0 44673 NULL nohasharray
++flash_write_fndecl_44673_fields flash_write fndecl 3 44673 &mad_sendq_size_vardecl_mad_c_44673_fields
++sys_io_setup_fndecl_44679_fields sys_io_setup fndecl 1 44679 NULL nohasharray
++pipes_psb_ops_44679_fields pipes psb_ops 0 44679 &sys_io_setup_fndecl_44679_fields
++vlan_cnt_ncsi_rsp_gc_pkt_44681_fields vlan_cnt ncsi_rsp_gc_pkt 0 44681 NULL nohasharray
++COM_len_camera_data_44681_fields COM_len camera_data 0 44681 &vlan_cnt_ncsi_rsp_gc_pkt_44681_fields nohasharray
++setup_swap_map_and_extents_fndecl_44681_fields setup_swap_map_and_extents fndecl 5 44681 &COM_len_camera_data_44681_fields nohasharray
++length_ore_striping_info_44681_fields length ore_striping_info 0 44681 &setup_swap_map_and_extents_fndecl_44681_fields
++msg_size_ecryptfs_msg_ctx_44687_fields msg_size ecryptfs_msg_ctx 0 44687 NULL
++offset_drm_map_44692_fields offset drm_map 0 44692 NULL
++start_linear_c_44708_fields start linear_c 0 44708 NULL
++drbd_alloc_peer_req_fndecl_44710_fields drbd_alloc_peer_req fndecl 3-4 44710 NULL
++au_rslack_rpc_auth_44712_fields au_rslack rpc_auth 0 44712 NULL
++__nilfs_get_page_block_fndecl_44723_fields __nilfs_get_page_block fndecl 4 44723 NULL
++inlen_mimd_44727_fields inlen mimd 0 44727 NULL
++nd_blk_rw_integrity_fndecl_44728_fields nd_blk_rw_integrity fndecl 0 44728 NULL nohasharray
++adv7842_read_cable_det_fndecl_44728_fields adv7842_read_cable_det fndecl 0 44728 &nd_blk_rw_integrity_fndecl_44728_fields
++buffer_size_st_buffer_44731_fields buffer_size st_buffer 0 44731 NULL nohasharray
++assoc_req_ies_len_station_info_44731_fields assoc_req_ies_len station_info 0 44731 &buffer_size_st_buffer_44731_fields
++desc_size_orangefs_bufmap_44734_fields desc_size orangefs_bufmap 0 44734 NULL nohasharray
++wait_for_direct_io_fndecl_44734_fields wait_for_direct_io fndecl 5 44734 &desc_size_orangefs_bufmap_44734_fields
++name_len_name_cache_entry_44739_fields name_len name_cache_entry 0 44739 NULL
++page_size_mspro_sys_info_44749_fields page_size mspro_sys_info 0 44749 NULL
++max_phy_id_vardecl_x86_pkg_temp_thermal_c_44750_fields max_phy_id vardecl_x86_pkg_temp_thermal.c 0 44750 NULL
++dev_sectors_mddev_44756_fields dev_sectors mddev 0 44756 NULL
++set_ssp_fndecl_44760_fields set_ssp fndecl 4 44760 NULL
++p_memsz_elf64_phdr_44763_fields p_memsz elf64_phdr 0 44763 NULL
++mt9m111_reg_read_fndecl_44764_fields mt9m111_reg_read fndecl 0 44764 NULL
++telem_pmc_ssram_base_intel_pmc_ipc_dev_44767_fields telem_pmc_ssram_base intel_pmc_ipc_dev 0 44767 NULL
++sys_tee_fndecl_44769_fields sys_tee fndecl 3 44769 NULL
++count_snd_kcontrol_44773_fields count snd_kcontrol 0 44773 NULL
++nbp_vlan_add_fndecl_44783_fields nbp_vlan_add fndecl 2 44783 NULL nohasharray
++n_values_i2c_mux_gpio_platform_data_44783_fields n_values i2c_mux_gpio_platform_data 0 44783 &nbp_vlan_add_fndecl_44783_fields
++ocfs2_handle_error_fndecl_44785_fields ocfs2_handle_error fndecl 0 44785 NULL
++device_count_pci_bus_relations_44792_fields device_count pci_bus_relations 0 44792 NULL
++btt_data_write_fndecl_44793_fields btt_data_write fndecl 0 44793 NULL
++truncate_size_ceph_mds_caps_44794_fields truncate_size ceph_mds_caps 0 44794 NULL
++sg_used_ccp_sg_workarea_44796_fields sg_used ccp_sg_workarea 0 44796 NULL
++n_caps_whci_card_44799_fields n_caps whci_card 0 44799 NULL nohasharray
++ioc_queue_depth_bfad_cfg_param_s_44799_fields ioc_queue_depth bfad_cfg_param_s 0 44799 &n_caps_whci_card_44799_fields
++mtd_ooblayout_get_bytes_fndecl_44801_fields mtd_ooblayout_get_bytes fndecl 4 44801 NULL
++tclass_sq_psn_ocrdma_qp_params_44805_fields tclass_sq_psn ocrdma_qp_params 0 44805 NULL
++__remove_privs_fndecl_44811_fields __remove_privs fndecl 0 44811 NULL nohasharray
++raw_getfrag_fndecl_44811_fields raw_getfrag fndecl 3-4 44811 &__remove_privs_fndecl_44811_fields
++st21nfca_hci_dm_reset_fndecl_44819_fields st21nfca_hci_dm_reset fndecl 3 44819 NULL
++cluster_pages_for_defrag_fndecl_44823_fields cluster_pages_for_defrag fndecl 0-4-3 44823 NULL nohasharray
++loffset_scifioctl_copy_44823_fields loffset scifioctl_copy 0 44823 &cluster_pages_for_defrag_fndecl_44823_fields
++bytesize_nbd_device_44824_fields bytesize nbd_device 0 44824 NULL
++vlan_tag_be_rx_compl_info_44830_fields vlan_tag be_rx_compl_info 0 44830 NULL nohasharray
++fix_read_error_fndecl_44830_fields fix_read_error fndecl 4-3 44830 &vlan_tag_be_rx_compl_info_44830_fields
++name_len_exofs_dir_entry_44838_fields name_len exofs_dir_entry 0 44838 NULL
++num_zones_quirk_entry_44844_fields num_zones quirk_entry 0 44844 NULL
++btrfs_shrink_device_fndecl_44845_fields btrfs_shrink_device fndecl 2 44845 NULL
++ext4_da_get_block_prep_fndecl_44848_fields ext4_da_get_block_prep fndecl 2 44848 NULL
++primary_size_drm_mga_dma_bootstrap_44851_fields primary_size drm_mga_dma_bootstrap 0 44851 NULL
++start_segno_sit_entry_set_44852_fields start_segno sit_entry_set 0 44852 NULL
++compat_do_readv_writev_fndecl_44857_fields compat_do_readv_writev fndecl 4 44857 NULL
++viafb_second_yres_vardecl_44862_fields viafb_second_yres vardecl 0 44862 NULL
++crypt_extent_fndecl_44866_fields crypt_extent fndecl 4 44866 NULL nohasharray
++h4_recv_fndecl_44866_fields h4_recv fndecl 3 44866 &crypt_extent_fndecl_44866_fields
++alloc_rc_map_44870_fields alloc rc_map 0 44870 NULL
++romfs_blk_read_fndecl_44875_fields romfs_blk_read fndecl 4-2 44875 NULL
++ppp_tx_cp_fndecl_44879_fields ppp_tx_cp fndecl 5 44879 NULL
++rvt_set_page_fndecl_44884_fields rvt_set_page fndecl 2 44884 NULL
++__cookie_v4_check_fndecl_44887_fields __cookie_v4_check fndecl 0 44887 NULL nohasharray
++jffs2_do_unlink_fndecl_44887_fields jffs2_do_unlink fndecl 4 44887 &__cookie_v4_check_fndecl_44887_fields
++code_length_lirc_driver_44888_fields code_length lirc_driver 0 44888 NULL
++msg_len_rndis_data_hdr_44891_fields msg_len rndis_data_hdr 0 44891 NULL
++inst_evtlog_size_iwl_fw_44893_fields inst_evtlog_size iwl_fw 0 44893 NULL
++FormattedSize_NFTLMediaHeader_44896_fields FormattedSize NFTLMediaHeader 0 44896 NULL
++io_size_gpio_lpc_sch_info_44898_fields io_size_gpio lpc_sch_info 0 44898 NULL
++pcpu_alloc_bootmem_fndecl_44905_fields pcpu_alloc_bootmem fndecl 3-2 44905 NULL nohasharray
++sge_offset_rxe_dma_info_44905_fields sge_offset rxe_dma_info 0 44905 &pcpu_alloc_bootmem_fndecl_44905_fields
++gotoxy_fndecl_44908_fields gotoxy fndecl 2-3 44908 NULL
++write_packet_fndecl_44910_fields write_packet fndecl 3 44910 NULL
++catas_size_mlx4_fw_44916_fields catas_size mlx4_fw 0 44916 NULL
++bvec_iter_advance_fndecl_44933_fields bvec_iter_advance fndecl 3 44933 NULL
++mlx5e_add_skb_frag_fragmented_mpwqe_fndecl_44934_fields mlx5e_add_skb_frag_fragmented_mpwqe fndecl 6-5 44934 NULL
++liquidio_push_packet_fndecl_44941_fields liquidio_push_packet fndecl 3 44941 NULL nohasharray
++roccat_common2_sysfs_write_fndecl_44941_fields roccat_common2_sysfs_write fndecl 6 44941 &liquidio_push_packet_fndecl_44941_fields
++data_dev_block_bits_dm_verity_44943_fields data_dev_block_bits dm_verity 0 44943 NULL
++_xfs_log_force_lsn_fndecl_44944_fields _xfs_log_force_lsn fndecl 0 44944 NULL nohasharray
++data_block_dm_thin_new_mapping_44944_fields data_block dm_thin_new_mapping 0 44944 &_xfs_log_force_lsn_fndecl_44944_fields nohasharray
++acpiphp_max_busnr_fndecl_44944_fields acpiphp_max_busnr fndecl 0 44944 &data_block_dm_thin_new_mapping_44944_fields
++srp_sq_size_srpt_port_attrib_44947_fields srp_sq_size srpt_port_attrib 0 44947 NULL
++max_post_mlx5_ib_wq_44949_fields max_post mlx5_ib_wq 0 44949 NULL
++sd_diptrs_gfs2_sbd_44954_fields sd_diptrs gfs2_sbd 0 44954 NULL
++coff_ddb_output_44962_fields coff ddb_output 0 44962 NULL
++fat12_ent_bread_fndecl_44968_fields fat12_ent_bread fndecl 4 44968 NULL
++i915_pages_create_for_stolen_fndecl_44970_fields i915_pages_create_for_stolen fndecl 3 44970 NULL
++x0_osd_cmd_s_44978_fields x0 osd_cmd_s 0 44978 NULL
++length_mtd_oob_buf64_44979_fields length mtd_oob_buf64 0 44979 NULL
++ip_recv_error_fndecl_44982_fields ip_recv_error fndecl 3 44982 NULL nohasharray
++num_free_virtqueue_44982_fields num_free virtqueue 0 44982 &ip_recv_error_fndecl_44982_fields
++generic_block_fiemap_fndecl_44985_fields generic_block_fiemap fndecl 4 44985 NULL
++snd_ak4114_external_rate_fndecl_44987_fields snd_ak4114_external_rate fndecl 0 44987 NULL
++num_carats_acpi_namestring_info_44990_fields num_carats acpi_namestring_info 0 44990 NULL
++fts_libipw_device_44996_fields fts libipw_device 0 44996 NULL
++iscsi_max_outsnd_r2t_dev_db_entry_44997_fields iscsi_max_outsnd_r2t dev_db_entry 0 44997 NULL
++eeprom_size_il_cfg_44998_fields eeprom_size il_cfg 0 44998 NULL
++ocfs2_list_xattr_tree_rec_fndecl_45001_fields ocfs2_list_xattr_tree_rec fndecl 3 45001 NULL
++max_recv_sge_ocrdma_dev_attr_45006_fields max_recv_sge ocrdma_dev_attr 0 45006 NULL
++fq_init_fndecl_45009_fields fq_init fndecl 2 45009 NULL
++size_e820entry_45018_fields size e820entry 0 45018 NULL
++num_cqs_mthca_limits_45021_fields num_cqs mthca_limits 0 45021 NULL
++membase_vgastate_45022_fields membase vgastate 0 45022 NULL
++rd_size_hidp_session_45023_fields rd_size hidp_session 0 45023 NULL
++size_nf_queue_entry_45047_fields size nf_queue_entry 0 45047 NULL
++tx_ring_count_e1000_adapter_45060_fields tx_ring_count e1000_adapter 0 45060 NULL
++crypto_akcipher_maxsize_fndecl_45073_fields crypto_akcipher_maxsize fndecl 0 45073 NULL
++read_vbt_r10_fndecl_45076_fields read_vbt_r10 fndecl 1 45076 NULL
++sendpage_iscsi_sw_tcp_conn_45081_fields sendpage iscsi_sw_tcp_conn 0 45081 NULL
++unmap_mapping_range_vma_fndecl_45084_fields unmap_mapping_range_vma fndecl 2-3 45084 NULL
++regshift_uart_port_45089_fields regshift uart_port 0 45089 NULL
++revmap_size_irq_domain_45091_fields revmap_size irq_domain 0 45091 NULL
++ocfs2_lock_reflink_xattr_rec_allocators_fndecl_45097_fields ocfs2_lock_reflink_xattr_rec_allocators fndecl 3 45097 NULL
++bblog_size_mdp_superblock_1_45102_fields bblog_size mdp_superblock_1 0 45102 NULL
++pitch_tmHWStreamParameters_45105_fields pitch tmHWStreamParameters 0 45105 NULL
++skb_tx_rsvd_cxgbi_device_45109_fields skb_tx_rsvd cxgbi_device 0 45109 NULL
++init_data_container_fndecl_45110_fields init_data_container fndecl 1 45110 NULL nohasharray
++watchdog_devt_vardecl_watchdog_dev_c_45110_fields watchdog_devt vardecl_watchdog_dev.c 0 45110 &init_data_container_fndecl_45110_fields
++drvinfo_sz_rtl8xxxu_rxdesc16_45111_fields drvinfo_sz rtl8xxxu_rxdesc16 0 45111 NULL
++ea_size_s_fnode_45115_fields ea_size_s fnode 0 45115 NULL
++ov518_pkt_scan_fndecl_45121_fields ov518_pkt_scan fndecl 3 45121 NULL
++vblk_size_vmdb_45123_fields vblk_size vmdb 0 45123 NULL
++key_len_mwifiex_ds_encrypt_key_45127_fields key_len mwifiex_ds_encrypt_key 0 45127 NULL nohasharray
++offset_nb8800_rx_buf_45127_fields offset nb8800_rx_buf 0 45127 &key_len_mwifiex_ds_encrypt_key_45127_fields
++rpc_max_bc_payload_fndecl_45131_fields rpc_max_bc_payload fndecl 0 45131 NULL
++img_x_zoran_jpg_settings_45135_fields img_x zoran_jpg_settings 0 45135 NULL
++offset_mlx4_clock_params_45137_fields offset mlx4_clock_params 0 45137 NULL
++specified_table_size_vardecl_45152_fields specified_table_size vardecl 0 45152 NULL
++MaxLanBuckets__MSG_PORT_FACTS_REPLY_45155_fields MaxLanBuckets _MSG_PORT_FACTS_REPLY 0 45155 NULL
++ocfs2_set_refcount_tree_fndecl_45158_fields ocfs2_set_refcount_tree fndecl 3 45158 NULL
++nvmet_copy_from_sgl_fndecl_45160_fields nvmet_copy_from_sgl fndecl 2-4 45160 NULL
++desc_len_skb_frame_desc_45170_fields desc_len skb_frame_desc 0 45170 NULL nohasharray
++pkcs7_sig_note_issuer_fndecl_45170_fields pkcs7_sig_note_issuer fndecl 5 45170 &desc_len_skb_frame_desc_45170_fields
++hpfs_remove_dirent_fndecl_45171_fields hpfs_remove_dirent fndecl 2 45171 NULL
++sel_write_checkreqprot_fndecl_45173_fields sel_write_checkreqprot fndecl 3 45173 NULL
++leaf_cut_entries_fndecl_45176_fields leaf_cut_entries fndecl 0-4 45176 NULL
++nfsd_splice_read_fndecl_45181_fields nfsd_splice_read fndecl 3 45181 NULL nohasharray
++quirk_awe32_add_ports_fndecl_45181_fields quirk_awe32_add_ports fndecl 3 45181 &nfsd_splice_read_fndecl_45181_fields
++n_namesz_elf32_note_45186_fields n_namesz elf32_note 0 45186 NULL
++gfs2_bmap_alloc_fndecl_45189_fields gfs2_bmap_alloc fndecl 7 45189 NULL
++mtu_l2cap_conn_45195_fields mtu l2cap_conn 0 45195 NULL
++count_user_sgentry_45207_fields count user_sgentry 0 45207 NULL
++i40iw_reject_fndecl_45212_fields i40iw_reject fndecl 3 45212 NULL
++l2cap_sock_recvmsg_fndecl_45221_fields l2cap_sock_recvmsg fndecl 3 45221 NULL
++ep_out_usbtest_info_45222_fields ep_out usbtest_info 0 45222 NULL
++nwords_xdr_stream_45223_fields nwords xdr_stream 0 45223 NULL
++cmt_orphans_ubifs_info_45232_fields cmt_orphans ubifs_info 0 45232 NULL
++packet_buffer_put_fndecl_45234_fields packet_buffer_put fndecl 3 45234 NULL nohasharray
++cros_ec_cmd_xfer_status_fndecl_45234_fields cros_ec_cmd_xfer_status fndecl 0 45234 &packet_buffer_put_fndecl_45234_fields
++max_cqes_mlx4_caps_45237_fields max_cqes mlx4_caps 0 45237 NULL
++internal_dev_change_mtu_fndecl_45242_fields internal_dev_change_mtu fndecl 2 45242 NULL
++aggregate_new_rx_fndecl_45246_fields aggregate_new_rx fndecl 4 45246 NULL nohasharray
++info0_htt_rx_addba_45246_fields info0 htt_rx_addba 0 45246 &aggregate_new_rx_fndecl_45246_fields
++st_nci_hci_dm_fwupd_start_fndecl_45248_fields st_nci_hci_dm_fwupd_start fndecl 3 45248 NULL
++__xattr_check_inode_fndecl_45251_fields __xattr_check_inode fndecl 0 45251 NULL
++base_erst_erange_45255_fields base erst_erange 0 45255 NULL
++rpcrdma_count_chunks_fndecl_45258_fields rpcrdma_count_chunks fndecl 0 45258 NULL
++nameLen_nw_info_struct_45260_fields nameLen nw_info_struct 0 45260 NULL
++check_sectors_in_chain_fndecl_45261_fields check_sectors_in_chain fndecl 2 45261 NULL
++num_rx_ring_sh_eth_private_45262_fields num_rx_ring sh_eth_private 0 45262 NULL
++alloc_buf_fndecl_45267_fields alloc_buf fndecl 2 45267 NULL
++generic_writepages_fndecl_45268_fields generic_writepages fndecl 0 45268 NULL nohasharray
++vmw_dmabuf_init_fndecl_45268_fields vmw_dmabuf_init fndecl 3 45268 &generic_writepages_fndecl_45268_fields
++btrfs_test_qgroups_fndecl_45273_fields btrfs_test_qgroups fndecl 1-2 45273 NULL
++rss_size_max_i40e_pf_45282_fields rss_size_max i40e_pf 0 45282 NULL
++mgt_set_varlen_fndecl_45287_fields mgt_set_varlen fndecl 4 45287 NULL
++ath6kl_sdio_write_async_fndecl_45290_fields ath6kl_sdio_write_async fndecl 4 45290 NULL
++rcvhdrcnt_qib_devdata_45297_fields rcvhdrcnt qib_devdata 0 45297 NULL
++rcvhdrcnt_vardecl_init_c_45302_fields rcvhdrcnt vardecl_init.c 0 45302 NULL
++hugetlbfs_read_actor_fndecl_45304_fields hugetlbfs_read_actor fndecl 4-0-2 45304 NULL
++atl1_change_mtu_fndecl_45313_fields atl1_change_mtu fndecl 2 45313 NULL nohasharray
++rx_count_ethtool_channels_45313_fields rx_count ethtool_channels 0 45313 &atl1_change_mtu_fndecl_45313_fields nohasharray
++rx_ring_count_xgbe_prv_data_45313_fields rx_ring_count xgbe_prv_data 0 45313 &rx_count_ethtool_channels_45313_fields
++tipc_buf_acquire_fndecl_45318_fields tipc_buf_acquire fndecl 1 45318 NULL
++rx_data_fndecl_45321_fields rx_data fndecl 4 45321 NULL
++len_qib_diag_xpkt_45322_fields len qib_diag_xpkt 0 45322 NULL nohasharray
++fec_decode_bufs_fndecl_45322_fields fec_decode_bufs fndecl 3-5 45322 &len_qib_diag_xpkt_45322_fields
++tipc_recv_stream_fndecl_45323_fields tipc_recv_stream fndecl 3 45323 NULL
++back_xfs_dir3_icleaf_hdr_45324_fields back xfs_dir3_icleaf_hdr 0 45324 NULL
++tcf_csum_ipv4_igmp_fndecl_45325_fields tcf_csum_ipv4_igmp fndecl 3 45325 NULL
++of_property_count_elems_of_size_fndecl_45337_fields of_property_count_elems_of_size fndecl 0 45337 NULL
++peer_chan_len_wmi_tdls_peer_capab_arg_45339_fields peer_chan_len wmi_tdls_peer_capab_arg 0 45339 NULL
++vm_munmap_fndecl_45341_fields vm_munmap fndecl 1-2 45341 NULL
++__snd_util_mem_alloc_fndecl_45349_fields __snd_util_mem_alloc fndecl 2 45349 NULL
++uar_size_mlx4_dev_cap_45351_fields uar_size mlx4_dev_cap 0 45351 NULL
++reserve_bad_mem_fndecl_45356_fields reserve_bad_mem fndecl 2-3 45356 NULL
++icq_size_elevator_type_45359_fields icq_size elevator_type 0 45359 NULL
++mad_recvq_size_vardecl_mad_c_45372_fields mad_recvq_size vardecl_mad.c 0 45372 NULL
++get_urb_status_from_qtd_fndecl_45378_fields get_urb_status_from_qtd fndecl 0 45378 NULL
++txq_entries_efx_nic_45383_fields txq_entries efx_nic 0 45383 NULL
++verity_finish_io_fndecl_45387_fields verity_finish_io fndecl 2 45387 NULL nohasharray
++nchildren_retu_data_45387_fields nchildren retu_data 0 45387 &verity_finish_io_fndecl_45387_fields
++pd_idx_sd_pd_idx_45398_fields pd_idx sd_pd_idx 0 45398 NULL
++mtu_l2cap_le_conn_req_45411_fields mtu l2cap_le_conn_req 0 45411 NULL
++lastUnit_INFTLPartition_45416_fields lastUnit INFTLPartition 0 45416 NULL
++st95hf_response_handler_fndecl_45419_fields st95hf_response_handler fndecl 3 45419 NULL
++ath_tx_init_fndecl_45424_fields ath_tx_init fndecl 2 45424 NULL
++fats_msdos_sb_info_45426_fields fats msdos_sb_info 0 45426 NULL
++__munlock_pagevec_fill_fndecl_45430_fields __munlock_pagevec_fill fndecl 0-4 45430 NULL
++rn_tnamelen_nfsd4_rename_45437_fields rn_tnamelen nfsd4_rename 0 45437 NULL
++radeon_ttm_tt_set_userptr_fndecl_45438_fields radeon_ttm_tt_set_userptr fndecl 2 45438 NULL
++rvt_alloc_device_fndecl_45442_fields rvt_alloc_device fndecl 1 45442 NULL
++qcaspi_netdev_change_mtu_fndecl_45450_fields qcaspi_netdev_change_mtu fndecl 2 45450 NULL
++start_bdi_bd_transfer_45454_fields start_bdi bd_transfer 0 45454 NULL
++wTotalLength_usb_bos_descriptor_45455_fields wTotalLength usb_bos_descriptor 0 45455 NULL
++cfrfml_create_fndecl_45463_fields cfrfml_create fndecl 3 45463 NULL
++nents_sg_splitter_45469_fields nents sg_splitter 0 45469 NULL
++sockaddr_len_audit_context_45471_fields sockaddr_len audit_context 0 45471 NULL
++elf_load_addr_kimage_arch_45472_fields elf_load_addr kimage_arch 0 45472 NULL
++i_pos_fat_slot_info_45481_fields i_pos fat_slot_info 0 45481 NULL
++hdisplay_drm_display_mode_45484_fields hdisplay drm_display_mode 0 45484 NULL
++memblock_virt_alloc_try_nid_nopanic_fndecl_45487_fields memblock_virt_alloc_try_nid_nopanic fndecl 2-3-4 45487 NULL
++pipe_out_lan78xx_net_45497_fields pipe_out lan78xx_net 0 45497 NULL nohasharray
++isofs_bmap_fndecl_45497_fields isofs_bmap fndecl 0-2 45497 &pipe_out_lan78xx_net_45497_fields
++bdeSize_ULP_BDL_45501_fields bdeSize ULP_BDL 0 45501 NULL
++nci_uart_default_recv_buf_fndecl_45502_fields nci_uart_default_recv_buf fndecl 4 45502 NULL
++mwifiex_set_gen_ie_fndecl_45504_fields mwifiex_set_gen_ie fndecl 3 45504 NULL
++free_dind_blocks_fndecl_45512_fields free_dind_blocks fndecl 3 45512 NULL
++ubifs_recover_leb_fndecl_45516_fields ubifs_recover_leb fndecl 3 45516 NULL
++buffer_size_vardecl_cpia2_v4l_c_45517_fields buffer_size vardecl_cpia2_v4l.c 0 45517 NULL nohasharray
++stv6110_write_regs_fndecl_45517_fields stv6110_write_regs fndecl 4 45517 &buffer_size_vardecl_cpia2_v4l_c_45517_fields
++inode_change_ok_fndecl_45525_fields inode_change_ok fndecl 0 45525 NULL
++cifs_partialpagewrite_fndecl_45527_fields cifs_partialpagewrite fndecl 2-3 45527 NULL nohasharray
++callback_via_vardecl_platform_pci_c_45527_fields callback_via vardecl_platform-pci.c 0 45527 &cifs_partialpagewrite_fndecl_45527_fields
++ssb_hcd_create_pdev_fndecl_45528_fields ssb_hcd_create_pdev fndecl 4-3 45528 NULL
++sizeof_dev_private_peak_usb_adapter_45529_fields sizeof_dev_private peak_usb_adapter 0 45529 NULL
++hpfs_trim_fs_fndecl_45531_fields hpfs_trim_fs fndecl 2-3 45531 NULL
++rtsx_usb_bulk_transfer_sglist_fndecl_45538_fields rtsx_usb_bulk_transfer_sglist fndecl 5-2-4 45538 NULL
++size_nft_expr_ops_45543_fields size nft_expr_ops 0 45543 NULL
++if_sdio_host_to_card_fndecl_45545_fields if_sdio_host_to_card fndecl 4 45545 NULL
++mp_agg_pkt_limit_sdio_mmc_card_45546_fields mp_agg_pkt_limit sdio_mmc_card 0 45546 NULL
++driver_max_VFs_pci_sriov_45552_fields driver_max_VFs pci_sriov 0 45552 NULL
++bpp_via_format_45554_fields bpp via_format 0 45554 NULL
++syncinterval_snd_usb_endpoint_45567_fields syncinterval snd_usb_endpoint 0 45567 NULL
++height_pwc_device_45570_fields height pwc_device 0 45570 NULL nohasharray
++amdtp_tscm_init_fndecl_45570_fields amdtp_tscm_init fndecl 4 45570 &height_pwc_device_45570_fields
++get_gate_page_fndecl_45571_fields get_gate_page fndecl 2 45571 NULL
++s_partition_func_udf_part_map_45579_fields s_partition_func udf_part_map 0 45579 NULL
++udf_free_blocks_fndecl_45589_fields udf_free_blocks fndecl 4-5 45589 NULL
++upd_received_ubi_volume_45595_fields upd_received ubi_volume 0 45595 NULL
++readpos_cx18_buffer_45604_fields readpos cx18_buffer 0 45604 NULL
++l_logBBsize_xlog_45614_fields l_logBBsize xlog 0 45614 NULL
++intel_th_device_add_resources_fndecl_45615_fields intel_th_device_add_resources fndecl 3 45615 NULL
++crtc_vblank_end_drm_display_mode_45620_fields crtc_vblank_end drm_display_mode 0 45620 NULL
++image_size_nvbios_npdeT_45624_fields image_size nvbios_npdeT 0 45624 NULL
++ext4_mb_init_group_fndecl_45626_fields ext4_mb_init_group fndecl 0 45626 NULL
++blocknr_disk_index_entry_45635_fields blocknr disk_index_entry 0 45635 NULL
++advmss_tcp_sock_45637_fields advmss tcp_sock 0 45637 NULL nohasharray
++btrfs_bio_alloc_fndecl_45637_fields btrfs_bio_alloc fndecl 2-3 45637 &advmss_tcp_sock_45637_fields nohasharray
++ifalias_store_fndecl_45637_fields ifalias_store fndecl 4 45637 &btrfs_bio_alloc_fndecl_45637_fields
++tcfv_push_vid_tcf_vlan_45639_fields tcfv_push_vid tcf_vlan 0 45639 NULL
++ecc_strength_ds_nand_chip_45651_fields ecc_strength_ds nand_chip 0 45651 NULL
++inftl_writeblock_fndecl_45653_fields inftl_writeblock fndecl 2 45653 NULL
++size_core_name_45656_fields size core_name 0 45656 NULL
++b_public_size_kpp_testvec_45660_fields b_public_size kpp_testvec 0 45660 NULL
++blockmask_alauda_media_info_45662_fields blockmask alauda_media_info 0 45662 NULL
++dmi_base_vardecl_dmi_scan_c_45673_fields dmi_base vardecl_dmi_scan.c 0 45673 NULL
++_snd_pcm_hw_param_min_fndecl_45677_fields _snd_pcm_hw_param_min fndecl 3 45677 NULL
++ocfs2_get_sector_fndecl_45678_fields ocfs2_get_sector fndecl 4-3 45678 NULL
++ib_umem_odp_map_dma_pages_fndecl_45679_fields ib_umem_odp_map_dma_pages fndecl 0-2 45679 NULL nohasharray
++lhead_offs_ubifs_info_45679_fields lhead_offs ubifs_info 0 45679 &ib_umem_odp_map_dma_pages_fndecl_45679_fields
++hfsplus_getxattr_finder_info_fndecl_45680_fields hfsplus_getxattr_finder_info fndecl 0 45680 NULL
++src_y_yuv_frame_info_45681_fields src_y yuv_frame_info 0 45681 NULL
++endpt_ubifs_unclean_leb_45692_fields endpt ubifs_unclean_leb 0 45692 NULL
++shift_badblocks_45703_fields shift badblocks 0 45703 NULL
++offset_ixgbe_ring_feature_45704_fields offset ixgbe_ring_feature 0 45704 NULL
++data_transfer_length_hpt_iop_request_get_config_45705_fields data_transfer_length hpt_iop_request_get_config 0 45705 NULL
++do_splice_direct_fndecl_45710_fields do_splice_direct fndecl 0-5 45710 NULL nohasharray
++fi_nblocks_nilfs_finfo_45710_fields fi_nblocks nilfs_finfo 0 45710 &do_splice_direct_fndecl_45710_fields
++st5481_setup_isocpipes_fndecl_45711_fields st5481_setup_isocpipes fndecl 4 45711 NULL
++width_cx23885_dev_45714_fields width cx23885_dev 0 45714 NULL
++ocfs2_xattr_set_fndecl_45720_fields ocfs2_xattr_set fndecl 5 45720 NULL
++num_cqs_mlx4_caps_45727_fields num_cqs mlx4_caps 0 45727 NULL
++len_bnx2x_fw_file_section_45732_fields len bnx2x_fw_file_section 0 45732 NULL
++sys_ptrace_fndecl_45738_fields sys_ptrace fndecl 3 45738 NULL
++get_args_iw_priv_args_45748_fields get_args iw_priv_args 0 45748 NULL
++vslen_vardecl_matroxfb_base_c_45755_fields vslen vardecl_matroxfb_base.c 0 45755 NULL
++extra_postfix_len_ieee80211_crypto_ops_45763_fields extra_postfix_len ieee80211_crypto_ops 0 45763 NULL
++size_entry_mwt_fndecl_45771_fields size_entry_mwt fndecl 0 45771 NULL nohasharray
++cc2520_write_txfifo_fndecl_45771_fields cc2520_write_txfifo fndecl 4 45771 &size_entry_mwt_fndecl_45771_fields
++set_acoustic_fndecl_45772_fields set_acoustic fndecl 2 45772 NULL
++len_ch_mem_range_45781_fields len ch_mem_range 0 45781 NULL
++ath6kl_wmi_set_htcap_cmd_fndecl_45784_fields ath6kl_wmi_set_htcap_cmd fndecl 2 45784 NULL
++change_xattr_fndecl_45789_fields change_xattr fndecl 5 45789 NULL
++stripe_size_nvme_ctrl_45800_fields stripe_size nvme_ctrl 0 45800 NULL
++i2c_r_fndecl_45804_fields i2c_r fndecl 0 45804 NULL
++h_suballoc_loc_ocfs2_extent_block_45805_fields h_suballoc_loc ocfs2_extent_block 0 45805 NULL
++sdebug_dev_size_mb_vardecl_scsi_debug_c_45811_fields sdebug_dev_size_mb vardecl_scsi_debug.c 0 45811 NULL
++max_node_size_pnp_dev_node_info_45813_fields max_node_size pnp_dev_node_info 0 45813 NULL
++msg_init_fndecl_45825_fields msg_init fndecl 4 45825 NULL nohasharray
++hfi1_max_srq_sges_vardecl_45825_fields hfi1_max_srq_sges vardecl 0 45825 &msg_init_fndecl_45825_fields
++tx_cmd_ep_usb_card_rec_45833_fields tx_cmd_ep usb_card_rec 0 45833 NULL
++max_channels_evtchn_ops_45841_fields max_channels evtchn_ops 0 45841 NULL
++width_zr364xx_camera_45844_fields width zr364xx_camera 0 45844 NULL nohasharray
++mwifiex_cfg80211_assoc_fndecl_45844_fields mwifiex_cfg80211_assoc fndecl 2 45844 &width_zr364xx_camera_45844_fields
++sys_mlock_fndecl_45847_fields sys_mlock fndecl 1-2 45847 NULL
++xfs_rtallocate_extent_size_fndecl_45848_fields xfs_rtallocate_extent_size fndecl 4-8-0 45848 NULL
++page_add_new_anon_rmap_fndecl_45850_fields page_add_new_anon_rmap fndecl 3 45850 NULL
++dio_complete_fndecl_45853_fields dio_complete fndecl 0-2 45853 NULL
++num_wsm_udp_port_filter_hdr_45858_fields num wsm_udp_port_filter_hdr 0 45858 NULL
++st21nfca_hci_dm_put_data_fndecl_45859_fields st21nfca_hci_dm_put_data fndecl 3 45859 NULL nohasharray
++data_used_cx18_mdl_ack_45859_fields data_used cx18_mdl_ack 0 45859 &st21nfca_hci_dm_put_data_fndecl_45859_fields
++pipe_interrupt_rtl8xxxu_priv_45862_fields pipe_interrupt rtl8xxxu_priv 0 45862 NULL
++net_header_len_inet_connection_sock_af_ops_45863_fields net_header_len inet_connection_sock_af_ops 0 45863 NULL
++xfrm_nr_xfrm_policy_45865_fields xfrm_nr xfrm_policy 0 45865 NULL
++lkey_table_size_rvt_driver_params_45866_fields lkey_table_size rvt_driver_params 0 45866 NULL
++parity_ore_layout_45869_fields parity ore_layout 0 45869 NULL
++aead_sendpage_fndecl_45873_fields aead_sendpage fndecl 4-3 45873 NULL
++ext4_es_remove_extent_fndecl_45877_fields ext4_es_remove_extent fndecl 3-2 45877 NULL
++quality_v4l2_jpegcompression_45881_fields quality v4l2_jpegcompression 0 45881 NULL
++max_buffer_sectors_vardecl_floppy_c_45884_fields max_buffer_sectors vardecl_floppy.c 0 45884 NULL
++index_cnt_btrfs_inode_45890_fields index_cnt btrfs_inode 0 45890 NULL
++__absent_pages_in_range_fndecl_45892_fields __absent_pages_in_range fndecl 0-2-3 45892 NULL nohasharray
++map_target_type_45892_fields map target_type 0 45892 &__absent_pages_in_range_fndecl_45892_fields
++lldd_write_gpio_sas_domain_function_template_45895_fields lldd_write_gpio sas_domain_function_template 0 45895 NULL
++bLength_usb_descriptor_header_45904_fields bLength usb_descriptor_header 0 45904 NULL
++jhead_cnt_ubifs_info_45905_fields jhead_cnt ubifs_info 0 45905 NULL
++vce_v1_0_bo_size_fndecl_45909_fields vce_v1_0_bo_size fndecl 0 45909 NULL
++bg_itable_unused_hi_ext4_group_desc_45918_fields bg_itable_unused_hi ext4_group_desc 0 45918 NULL
++wl1271_tx_allocate_fndecl_45921_fields wl1271_tx_allocate fndecl 4 45921 NULL
++mru_asyncppp_45929_fields mru asyncppp 0 45929 NULL
++base_i40iw_hmc_obj_info_45931_fields base i40iw_hmc_obj_info 0 45931 NULL
++fan_count_applesmc_registers_45934_fields fan_count applesmc_registers 0 45934 NULL
++num_ports_pciserial_board_45938_fields num_ports pciserial_board 0 45938 NULL
++sdhci_pltfm_register_fndecl_45940_fields sdhci_pltfm_register fndecl 3 45940 NULL
++ath6kl_wmi_setpmkid_cmd_fndecl_45949_fields ath6kl_wmi_setpmkid_cmd fndecl 2 45949 NULL nohasharray
++num_vfs_be_pcie_res_desc_45949_fields num_vfs be_pcie_res_desc 0 45949 &ath6kl_wmi_setpmkid_cmd_fndecl_45949_fields nohasharray
++smbus_base_vardecl_i2c_sis630_c_45949_fields smbus_base vardecl_i2c-sis630.c 0 45949 &num_vfs_be_pcie_res_desc_45949_fields
++fraglen_decryptor_desc_45950_fields fraglen decryptor_desc 0 45950 NULL
++max_sge_ib_srq_attr_45956_fields max_sge ib_srq_attr 0 45956 NULL
++len_ippp_buf_queue_45969_fields len ippp_buf_queue 0 45969 NULL nohasharray
++alpha_illinois_45969_fields alpha illinois 0 45969 &len_ippp_buf_queue_45969_fields
++ext_tree_split_fndecl_45973_fields ext_tree_split fndecl 3 45973 NULL
++addr_rrpc_rev_addr_45978_fields addr rrpc_rev_addr 0 45978 NULL
++target_size_ebt_entry_target_45980_fields target_size ebt_entry_target 0 45980 NULL nohasharray
++dbdma_cmd_yellowfin_desc_45980_fields dbdma_cmd yellowfin_desc 0 45980 &target_size_ebt_entry_target_45980_fields nohasharray
++tcp_lp_cong_avoid_fndecl_45980_fields tcp_lp_cong_avoid fndecl 3 45980 &dbdma_cmd_yellowfin_desc_45980_fields
++i40e_calculate_l2fpm_size_fndecl_45987_fields i40e_calculate_l2fpm_size fndecl 0-1-2-3-4 45987 NULL
++up_fnode_45991_fields up fnode 0 45991 NULL nohasharray
++lancer_cmd_get_file_len_fndecl_45991_fields lancer_cmd_get_file_len fndecl 0 45991 &up_fnode_45991_fields
++alloc_chrdev_region_fndecl_45995_fields alloc_chrdev_region fndecl 0 45995 NULL
++num_total_dacs_snd_ice1712_45997_fields num_total_dacs snd_ice1712 0 45997 NULL
++finish_request_fndecl_46010_fields finish_request fndecl 5 46010 NULL
++pcs_duplex_stmmac_extra_stats_46013_fields pcs_duplex stmmac_extra_stats 0 46013 NULL
++afs_proc_cells_write_fndecl_46016_fields afs_proc_cells_write fndecl 3 46016 NULL
++latency_st33zp24_spi_phy_46028_fields latency st33zp24_spi_phy 0 46028 NULL
++acl_mtu_hci_dev_46038_fields acl_mtu hci_dev 0 46038 NULL
++dma_size_qlcnic_host_rds_ring_46045_fields dma_size qlcnic_host_rds_ring 0 46045 NULL
++log_ind_tbl_size_ib_uverbs_ex_create_rwq_ind_table_46051_fields log_ind_tbl_size ib_uverbs_ex_create_rwq_ind_table 0 46051 NULL
++pair_device_fndecl_46052_fields pair_device fndecl 4 46052 NULL nohasharray
++num_wsm_mib_beacon_filter_table_46052_fields num wsm_mib_beacon_filter_table 0 46052 &pair_device_fndecl_46052_fields
++sisfb_parm_mem_sis_video_info_46063_fields sisfb_parm_mem sis_video_info 0 46063 NULL nohasharray
++get_tx_data_len_rt2x00lib_ops_46063_fields get_tx_data_len rt2x00lib_ops 0 46063 &sisfb_parm_mem_sis_video_info_46063_fields
++s_start_bfs_super_block_46064_fields s_start bfs_super_block 0 46064 NULL nohasharray
++MaxBurstLength_iscsi_sess_ops_46064_fields MaxBurstLength iscsi_sess_ops 0 46064 &s_start_bfs_super_block_46064_fields
++seg_count_drm_buf_entry_46065_fields seg_count drm_buf_entry 0 46065 NULL
++FirstPhysicalEUN_NFTLMediaHeader_46068_fields FirstPhysicalEUN NFTLMediaHeader 0 46068 NULL
++ext4_ext_determine_hole_fndecl_46073_fields ext4_ext_determine_hole fndecl 0 46073 NULL
++__devcgroup_check_permission_fndecl_46082_fields __devcgroup_check_permission fndecl 0 46082 NULL
++wSamplesPerFrame_uac_format_type_ii_ext_descriptor_46084_fields wSamplesPerFrame uac_format_type_ii_ext_descriptor 0 46084 NULL
++dm_startblk_adfs_discmap_46088_fields dm_startblk adfs_discmap 0 46088 NULL
++num_type_reg_regmap_irq_chip_46090_fields num_type_reg regmap_irq_chip 0 46090 NULL
++nr_pages_splice_pipe_desc_46095_fields nr_pages splice_pipe_desc 0 46095 NULL
++len_sfi_table_header_46097_fields len sfi_table_header 0 46097 NULL
++jbd2_journal_write_metadata_buffer_fndecl_46103_fields jbd2_journal_write_metadata_buffer fndecl 4 46103 NULL nohasharray
++control_write_fndecl_46103_fields control_write fndecl 6 46103 &jbd2_journal_write_metadata_buffer_fndecl_46103_fields nohasharray
++ym_wmfw_adsp2_alg_hdr_46103_fields ym wmfw_adsp2_alg_hdr 0 46103 &control_write_fndecl_46103_fields
++bs_vardecl_null_blk_c_46104_fields bs vardecl_null_blk.c 0 46104 NULL
++ax88179_write_cmd_fndecl_46110_fields ax88179_write_cmd fndecl 5 46110 NULL
++len_eeprom_private_46124_fields len eeprom_private 0 46124 NULL
++height_saa7134_dev_46126_fields height saa7134_dev 0 46126 NULL nohasharray
++tx_totallen_ncp_request_reply_46126_fields tx_totallen ncp_request_reply 0 46126 &height_saa7134_dev_46126_fields
++get_mctgt_type_fndecl_46128_fields get_mctgt_type fndecl 2 46128 NULL nohasharray
++len_cp_header_46128_fields len cp_header 0 46128 &get_mctgt_type_fndecl_46128_fields
++sriov_enable_fndecl_46138_fields sriov_enable fndecl 2 46138 NULL
++memblock_alloc_range_nid_fndecl_46147_fields memblock_alloc_range_nid fndecl 2-3-4 46147 NULL nohasharray
++next_read_size_fdp_i2c_phy_46147_fields next_read_size fdp_i2c_phy 0 46147 &memblock_alloc_range_nid_fndecl_46147_fields
++transfer_len_xhci_transfer_event_46161_fields transfer_len xhci_transfer_event 0 46161 NULL
++key_size_ecryptfs_private_key_46181_fields key_size ecryptfs_private_key 0 46181 NULL
++mlock_fixup_fndecl_46182_fields mlock_fixup fndecl 4-3 46182 NULL
++ib_alloc_cq_fndecl_46188_fields ib_alloc_cq fndecl 3 46188 NULL
++fuse_file_llseek_fndecl_46193_fields fuse_file_llseek fndecl 2 46193 NULL nohasharray
++size_aper_size_info_32_46193_fields size aper_size_info_32 0 46193 &fuse_file_llseek_fndecl_46193_fields
++length_usb_iso_packet_descriptor_46197_fields length usb_iso_packet_descriptor 0 46197 NULL
++sctp_manip_pkt_fndecl_46198_fields sctp_manip_pkt fndecl 4 46198 NULL
++musb_readb_vardecl_46199_fields musb_readb vardecl 0 46199 NULL nohasharray
++snd_interval_refine_set_fndecl_46199_fields snd_interval_refine_set fndecl 2 46199 &musb_readb_vardecl_46199_fields
++efx_rx_packet_gro_fndecl_46201_fields efx_rx_packet_gro fndecl 3 46201 NULL
++count_raw_sock_46204_fields count raw_sock 0 46204 NULL
++hdrlen_ip_beet_phdr_46210_fields hdrlen ip_beet_phdr 0 46210 NULL nohasharray
++sync_request_md_personality_46210_fields sync_request md_personality 0 46210 &hdrlen_ip_beet_phdr_46210_fields
++assocresp_ies_len_cfg80211_beacon_data_46212_fields assocresp_ies_len cfg80211_beacon_data 0 46212 NULL
++unuse_pte_fndecl_46217_fields unuse_pte fndecl 3 46217 NULL
++cob_size_savagefb_par_46219_fields cob_size savagefb_par 0 46219 NULL
++ipw_write_fndecl_46220_fields ipw_write fndecl 3 46220 NULL
++bLength_usb_interface_assoc_descriptor_46229_fields bLength usb_interface_assoc_descriptor 0 46229 NULL
++mei_nfc_recv_fndecl_46235_fields mei_nfc_recv fndecl 0-3 46235 NULL
++rsn_ie_len_libipw_network_46238_fields rsn_ie_len libipw_network 0 46238 NULL nohasharray
++xlog_do_recover_fndecl_46238_fields xlog_do_recover fndecl 3 46238 &rsn_ie_len_libipw_network_46238_fields
++node_acl_size_target_core_fabric_ops_46247_fields node_acl_size target_core_fabric_ops 0 46247 NULL
++erst_clear_fndecl_46248_fields erst_clear fndecl 1 46248 NULL
++proc_pid_cmdline_read_fndecl_46249_fields proc_pid_cmdline_read fndecl 3 46249 NULL
++extra_beacon_tailroom_ieee80211_hw_46256_fields extra_beacon_tailroom ieee80211_hw 0 46256 NULL
++nf_ct_helper_init_fndecl_46259_fields nf_ct_helper_init fndecl 10 46259 NULL
++rocker_port_change_mtu_fndecl_46262_fields rocker_port_change_mtu fndecl 2 46262 NULL nohasharray
++len_ath10k_fw_ie_46262_fields len ath10k_fw_ie 0 46262 &rocker_port_change_mtu_fndecl_46262_fields
++size_xenvif_rx_meta_46270_fields size xenvif_rx_meta 0 46270 NULL
++sq_size_i40iw_qp_uk_46272_fields sq_size i40iw_qp_uk 0 46272 NULL
++onenand_read_oob_fndecl_46274_fields onenand_read_oob fndecl 2 46274 NULL
++smem_len_iwl_cfg_46276_fields smem_len iwl_cfg 0 46276 NULL
++desc_nr_md_rdev_46281_fields desc_nr md_rdev 0 46281 NULL
++xi_value_len_ocfs2_xattr_info_46285_fields xi_value_len ocfs2_xattr_info 0 46285 NULL
++dq_local_phys_blk_ocfs2_dquot_46292_fields dq_local_phys_blk ocfs2_dquot 0 46292 NULL
++len_nfs3_setaclargs_46293_fields len nfs3_setaclargs 0 46293 NULL
++tx_data_size_ircomm_tty_cb_46294_fields tx_data_size ircomm_tty_cb 0 46294 NULL
++omfs_allocate_block_fndecl_46295_fields omfs_allocate_block fndecl 2 46295 NULL
++status2_ar9003_rxs_46299_fields status2 ar9003_rxs 0 46299 NULL
++capture_snd_soc_tplg_pcm_46306_fields capture snd_soc_tplg_pcm 0 46306 NULL
++offset_nfsd3_readargs_46311_fields offset nfsd3_readargs 0 46311 NULL
++g_size_dh_46316_fields g_size dh 0 46316 NULL
++num_vci_lanai_dev_46318_fields num_vci lanai_dev 0 46318 NULL
++unit_qib_devdata_46325_fields unit qib_devdata 0 46325 NULL nohasharray
++biovec_create_pool_fndecl_46325_fields biovec_create_pool fndecl 1 46325 &unit_qib_devdata_46325_fields
++i_size_inode_46327_fields i_size inode 0 46327 NULL
++pvr2_ioread_set_sync_key_fndecl_46329_fields pvr2_ioread_set_sync_key fndecl 3 46329 NULL
++__ieee80211_amsdu_copy_frag_fndecl_46332_fields __ieee80211_amsdu_copy_frag fndecl 4-3 46332 NULL
++shmem_zero_setup_fndecl_46334_fields shmem_zero_setup fndecl 0 46334 NULL
++mwifiex_cfg80211_tdls_mgmt_fndecl_46335_fields mwifiex_cfg80211_tdls_mgmt fndecl 10 46335 NULL
++stv6110_read_regs_fndecl_46339_fields stv6110_read_regs fndecl 4 46339 NULL
++af9013_rd_regs_i2c_fndecl_46343_fields af9013_rd_regs_i2c fndecl 5 46343 NULL
++recently_deleted_fndecl_46346_fields recently_deleted fndecl 3 46346 NULL
++zoran_v4l_set_format_fndecl_46347_fields zoran_v4l_set_format fndecl 3-2 46347 NULL
++fc_frame_alloc_fill_fndecl_46353_fields fc_frame_alloc_fill fndecl 2 46353 NULL
++nid_f2fs_summary_46354_fields nid f2fs_summary 0 46354 NULL
++dvb_ep_isoc_em28xx_46357_fields dvb_ep_isoc em28xx 0 46357 NULL
++chv_get_stolen_size_fndecl_46362_fields chv_get_stolen_size fndecl 0-1 46362 NULL
++max_write_size_ubifs_info_46369_fields max_write_size ubifs_info 0 46369 NULL
++device_create_with_groups_fndecl_46371_fields device_create_with_groups fndecl 3 46371 NULL
++descriptor_loc_fndecl_46373_fields descriptor_loc fndecl 0-3-2 46373 NULL
++bnx2_change_mtu_fndecl_46374_fields bnx2_change_mtu fndecl 2 46374 NULL
++gb_vardecl_null_blk_c_46399_fields gb vardecl_null_blk.c 0 46399 NULL
++strength_nand_ecc_ctrl_46402_fields strength nand_ecc_ctrl 0 46402 NULL
++piosize4k_qib_devdata_46406_fields piosize4k qib_devdata 0 46406 NULL
++SavagePanelWidth_savagefb_par_46407_fields SavagePanelWidth savagefb_par 0 46407 NULL
++ie_len_cfg80211_ibss_params_46411_fields ie_len cfg80211_ibss_params 0 46411 NULL
++skb_maybe_pull_tail_fndecl_46422_fields skb_maybe_pull_tail fndecl 3 46422 NULL
++proberesp_ies_len_cfg80211_beacon_data_46424_fields proberesp_ies_len cfg80211_beacon_data 0 46424 NULL
++rds_pin_pages_fndecl_46432_fields rds_pin_pages fndecl 1 46432 NULL
++st21nfca_hci_dep_link_up_fndecl_46438_fields st21nfca_hci_dep_link_up fndecl 5 46438 NULL nohasharray
++qib_dev_vardecl_qib_file_ops_c_46438_fields qib_dev vardecl_qib_file_ops.c 0 46438 &st21nfca_hci_dep_link_up_fndecl_46438_fields
++vid_bridge_vlan_info_46442_fields vid bridge_vlan_info 0 46442 NULL nohasharray
++len_acm_wb_46442_fields len acm_wb 0 46442 &vid_bridge_vlan_info_46442_fields nohasharray
++nframes_gspca_dev_46442_fields nframes gspca_dev 0 46442 &len_acm_wb_46442_fields
++btrfsic_process_superblock_dev_mirror_fndecl_46444_fields btrfsic_process_superblock_dev_mirror fndecl 4 46444 NULL nohasharray
++iblock_execute_unmap_fndecl_46444_fields iblock_execute_unmap fndecl 3-2 46444 &btrfsic_process_superblock_dev_mirror_fndecl_46444_fields
++fb_base_phys_mb862xxfb_par_46449_fields fb_base_phys mb862xxfb_par 0 46449 NULL
++snd_seq_oss_writeq_new_fndecl_46455_fields snd_seq_oss_writeq_new fndecl 2 46455 NULL
++get_znode_fndecl_46463_fields get_znode fndecl 3 46463 NULL
++ssid_len_hfa384x_hostscan_result_46466_fields ssid_len hfa384x_hostscan_result 0 46466 NULL
++ext4_resize_fs_fndecl_46468_fields ext4_resize_fs fndecl 2 46468 NULL
++hpfs_add_de_fndecl_46472_fields hpfs_add_de fndecl 4 46472 NULL
++idr_alloc_fndecl_46474_fields idr_alloc fndecl 0 46474 NULL
++nla_put_nohdr_fndecl_46479_fields nla_put_nohdr fndecl 2 46479 NULL
++ro_slot_rcom_slot_46481_fields ro_slot rcom_slot 0 46481 NULL
++ssid_len_ieee80211_bss_conf_46483_fields ssid_len ieee80211_bss_conf 0 46483 NULL
++xen_early_virt_to_phys_fndecl_46486_fields xen_early_virt_to_phys fndecl 0 46486 NULL
++usb_wwan_write_fndecl_46494_fields usb_wwan_write fndecl 4 46494 NULL
++__copy_from_user_ll_nozero_fndecl_46496_fields __copy_from_user_ll_nozero fndecl 0 46496 NULL
++iram_size_sst_res_info_46499_fields iram_size sst_res_info 0 46499 NULL
++align_ieee80211_vendor_radiotap_46503_fields align ieee80211_vendor_radiotap 0 46503 NULL
++append_elf_note_fndecl_46508_fields append_elf_note fndecl 5 46508 NULL nohasharray
++write_pbl_fndecl_46508_fields write_pbl fndecl 4 46508 &append_elf_note_fndecl_46508_fields
++pagesz_cifs_readdata_46514_fields pagesz cifs_readdata 0 46514 NULL
++test_btrfs_get_extent_fndecl_46516_fields test_btrfs_get_extent fndecl 1-2 46516 NULL
++free_bootmem_with_active_regions_fndecl_46521_fields free_bootmem_with_active_regions fndecl 2 46521 NULL
++bio_split_fndecl_46527_fields bio_split fndecl 2 46527 NULL
++sddr09_request_sense_fndecl_46529_fields sddr09_request_sense fndecl 3 46529 NULL
++dr_suballoc_loc_ocfs2_dx_root_block_46531_fields dr_suballoc_loc ocfs2_dx_root_block 0 46531 NULL
++fcoe_ctlr_vn_send_fndecl_46532_fields fcoe_ctlr_vn_send fndecl 4 46532 NULL
++bNrChannels_uac_format_type_i_continuous_descriptor_46536_fields bNrChannels uac_format_type_i_continuous_descriptor 0 46536 NULL
++contrast_sd_gl860_46538_fields contrast sd_gl860 0 46538 NULL
++size_kstat_46541_fields size kstat 0 46541 NULL
++resp_write_same_fndecl_46544_fields resp_write_same fndecl 2 46544 NULL
++sc18is602_check_transfer_fndecl_46545_fields sc18is602_check_transfer fndecl 0 46545 NULL
++seq_open_tab_fndecl_46562_fields seq_open_tab fndecl 3-2 46562 NULL
++erasesize_shift_mtd_info_46565_fields erasesize_shift mtd_info 0 46565 NULL nohasharray
++xt_compat_init_offsets_fndecl_46565_fields xt_compat_init_offsets fndecl 2 46565 &erasesize_shift_mtd_info_46565_fields
++max_msix_vectors_vardecl_mpt3sas_base_c_46566_fields max_msix_vectors vardecl_mpt3sas_base.c 0 46566 NULL
++ndivs_divs_data_46571_fields ndivs divs_data 0 46571 NULL
++xfs_trans_log_finish_rmap_update_fndecl_46574_fields xfs_trans_log_finish_rmap_update fndecl 7 46574 NULL
++sock_sendpage_fndecl_46581_fields sock_sendpage fndecl 4 46581 NULL
++back_xfs_attr3_icleaf_hdr_46595_fields back xfs_attr3_icleaf_hdr 0 46595 NULL
++fuse_async_req_send_fndecl_46596_fields fuse_async_req_send fndecl 0-3 46596 NULL nohasharray
++mmc_do_calc_max_discard_fndecl_46596_fields mmc_do_calc_max_discard fndecl 0 46596 &fuse_async_req_send_fndecl_46596_fields
++it87_device_add_fndecl_46597_fields it87_device_add fndecl 2 46597 NULL
++cfpkt_extr_head_fndecl_46598_fields cfpkt_extr_head fndecl 3 46598 NULL
++nfp_net_msix_alloc_fndecl_46607_fields nfp_net_msix_alloc fndecl 0 46607 NULL
++pci_scan_bridge_fndecl_46615_fields pci_scan_bridge fndecl 3-0 46615 NULL
++snd_usb_parse_datainterval_fndecl_46616_fields snd_usb_parse_datainterval fndecl 0 46616 NULL nohasharray
++sizeof_idt_fndecl_46616_fields sizeof_idt fndecl 0 46616 &snd_usb_parse_datainterval_fndecl_46616_fields
++fw_cdev_major_vardecl_46618_fields fw_cdev_major vardecl 0 46618 NULL
++num_ppns_qp_guest_endpoint_46623_fields num_ppns qp_guest_endpoint 0 46623 NULL nohasharray
++usbvision_read_reg_fndecl_46623_fields usbvision_read_reg fndecl 0 46623 &num_ppns_qp_guest_endpoint_46623_fields
++cl_maxproc_rpc_clnt_46627_fields cl_maxproc rpc_clnt 0 46627 NULL
++start_ipack_region_46628_fields start ipack_region 0 46628 NULL
++qlcnic_83xx_diag_free_res_fndecl_46632_fields qlcnic_83xx_diag_free_res fndecl 2 46632 NULL
++snd_cwnd_cnt_tcp_sock_46635_fields snd_cwnd_cnt tcp_sock 0 46635 NULL nohasharray
++ccp_queue_buf_fndecl_46635_fields ccp_queue_buf fndecl 0 46635 &snd_cwnd_cnt_tcp_sock_46635_fields
++data_offset_iscsi_tcp_task_46641_fields data_offset iscsi_tcp_task 0 46641 NULL
++ib_send_cm_mra_fndecl_46649_fields ib_send_cm_mra fndecl 4 46649 NULL
++mwifiex_set_wps_ie_fndecl_46650_fields mwifiex_set_wps_ie fndecl 3 46650 NULL
++transfer_buffer_length_usbip_header_cmd_submit_46658_fields transfer_buffer_length usbip_header_cmd_submit 0 46658 NULL
++btrfs_get_extent_fiemap_fndecl_46659_fields btrfs_get_extent_fiemap fndecl 5-4-3 46659 NULL
++bmap_fndecl_46663_fields bmap fndecl 0 46663 NULL
++physical_block_size_queue_limits_46666_fields physical_block_size queue_limits 0 46666 NULL
++mpx_notify_unmap_fndecl_46669_fields mpx_notify_unmap fndecl 3-4 46669 NULL
++xfs_difree_inode_chunk_fndecl_46677_fields xfs_difree_inode_chunk fndecl 2 46677 NULL
++max_wr_ib_srq_attr_46680_fields max_wr ib_srq_attr 0 46680 NULL
++usb_ftdi_elan_edset_input_fndecl_46689_fields usb_ftdi_elan_edset_input fndecl 0 46689 NULL
++__pskb_pull_tail_fndecl_46700_fields __pskb_pull_tail fndecl 2 46700 NULL
++rxe_mem_init_user_fndecl_46710_fields rxe_mem_init_user fndecl 3-4 46710 NULL
++cmsg_len_cmsghdr_46711_fields cmsg_len cmsghdr 0 46711 NULL
++length_ib_mr_46713_fields length ib_mr 0 46713 NULL nohasharray
++extra_priv_size_ehci_driver_overrides_46713_fields extra_priv_size ehci_driver_overrides 0 46713 &length_ib_mr_46713_fields
++length_page_collect_46716_fields length page_collect 0 46716 NULL
++peer_max_bio_size_drbd_device_46722_fields peer_max_bio_size drbd_device 0 46722 NULL
++first_ino_xfs_icluster_46725_fields first_ino xfs_icluster 0 46725 NULL
++virtio_gpu_cmd_resource_attach_backing_fndecl_46726_fields virtio_gpu_cmd_resource_attach_backing fndecl 4 46726 NULL
++iwlagn_tx_agg_stop_fndecl_46756_fields iwlagn_tx_agg_stop fndecl 4 46756 NULL
++count_nfs_readdirargs_46759_fields count nfs_readdirargs 0 46759 NULL
++perf_aux_output_skip_fndecl_46762_fields perf_aux_output_skip fndecl 2 46762 NULL
++mlx5_ib_umem_get_fndecl_46768_fields mlx5_ib_umem_get fndecl 3-4 46768 NULL
++s_bshift_ufs_sb_private_info_46773_fields s_bshift ufs_sb_private_info 0 46773 NULL nohasharray
++target_begin_dm_region_hash_46773_fields target_begin dm_region_hash 0 46773 &s_bshift_ufs_sb_private_info_46773_fields
++acpi_aml_lock_write_fndecl_46777_fields acpi_aml_lock_write fndecl 0 46777 NULL
++rq_size_i40iw_qp_uk_46792_fields rq_size i40iw_qp_uk 0 46792 NULL nohasharray
++ubi_eba_atomic_leb_change_fndecl_46792_fields ubi_eba_atomic_leb_change fndecl 5 46792 &rq_size_i40iw_qp_uk_46792_fields
++brcmf_usb_rx_ctlpkt_fndecl_46799_fields brcmf_usb_rx_ctlpkt fndecl 3 46799 NULL
++ceph_msg_data_bio_advance_fndecl_46804_fields ceph_msg_data_bio_advance fndecl 2 46804 NULL
++mlx4_en_change_mtu_fndecl_46805_fields mlx4_en_change_mtu fndecl 2 46805 NULL
++mesh_rx_csa_frame_fndecl_46810_fields mesh_rx_csa_frame fndecl 3 46810 NULL
++buffer_size_snd_rawmidi_params_46813_fields buffer_size snd_rawmidi_params 0 46813 NULL
++nfulnl_set_mode_fndecl_46818_fields nfulnl_set_mode fndecl 3 46818 NULL
++frame_size_ipw2100_status_46819_fields frame_size ipw2100_status 0 46819 NULL
++major_hwif_s_46820_fields major hwif_s 0 46820 NULL
++numberoflines_tmHWStreamParameters_46824_fields numberoflines tmHWStreamParameters 0 46824 NULL
++residue_c67x00_td_46828_fields residue c67x00_td 0 46828 NULL
++per_cpu_ptr_to_phys_fndecl_46833_fields per_cpu_ptr_to_phys fndecl 0 46833 NULL
++tid_limit_hfi1_filedata_46834_fields tid_limit hfi1_filedata 0 46834 NULL
++extra_priv_size_xhci_driver_overrides_46837_fields extra_priv_size xhci_driver_overrides 0 46837 NULL
++num_prior_parent_snaps_ceph_snap_realm_46841_fields num_prior_parent_snaps ceph_snap_realm 0 46841 NULL nohasharray
++mthca_alloc_resize_buf_fndecl_46841_fields mthca_alloc_resize_buf fndecl 3 46841 &num_prior_parent_snaps_ceph_snap_realm_46841_fields
++len_wl12xx_rx_filter_field_46843_fields len wl12xx_rx_filter_field 0 46843 NULL
++tveeprom_read_fndecl_46846_fields tveeprom_read fndecl 3 46846 NULL nohasharray
++vt596_smba_vardecl_i2c_viapro_c_46846_fields vt596_smba vardecl_i2c-viapro.c 0 46846 &tveeprom_read_fndecl_46846_fields
++__bread_gfp_fndecl_46858_fields __bread_gfp fndecl 3-2 46858 NULL
++xwrite_fndecl_46865_fields xwrite fndecl 3 46865 NULL
++nb_ace_lite_cci_nb_ports_46870_fields nb_ace_lite cci_nb_ports 0 46870 NULL
++len_nfsd3_readlinkres_46888_fields len nfsd3_readlinkres 0 46888 NULL
++buffer_size_snd_urb_ctx_46897_fields buffer_size snd_urb_ctx 0 46897 NULL
++cb_break_head_afs_server_46900_fields cb_break_head afs_server 0 46900 NULL
++ql_process_mac_rx_gro_page_fndecl_46902_fields ql_process_mac_rx_gro_page fndecl 4-5 46902 NULL
++size_vbt_r0_46913_fields size vbt_r0 0 46913 NULL
++num_sacks_tcp_options_received_46914_fields num_sacks tcp_options_received 0 46914 NULL nohasharray
++mmc_queue_packed_map_sg_fndecl_46914_fields mmc_queue_packed_map_sg fndecl 0 46914 &num_sacks_tcp_options_received_46914_fields
++rd_size_hidp_connadd_req_46916_fields rd_size hidp_connadd_req 0 46916 NULL
++osd_req_read_kern_fndecl_46917_fields osd_req_read_kern fndecl 5 46917 NULL
++tot_len_ipv6_txoptions_46931_fields tot_len ipv6_txoptions 0 46931 NULL
++__free_pages_bootmem_fndecl_46937_fields __free_pages_bootmem fndecl 3 46937 NULL nohasharray
++squashfs_max_decompressors_fndecl_46937_fields squashfs_max_decompressors fndecl 0 46937 &__free_pages_bootmem_fndecl_46937_fields
++devblksize_squashfs_sb_info_46950_fields devblksize squashfs_sb_info 0 46950 NULL
++osd_req_list_dev_partitions_fndecl_46952_fields osd_req_list_dev_partitions fndecl 4 46952 NULL
++tx_ring_num_mlx4_en_priv_46953_fields tx_ring_num mlx4_en_priv 0 46953 NULL
++steer_qpn_count_mlx4_ib_dev_46957_fields steer_qpn_count mlx4_ib_dev 0 46957 NULL nohasharray
++xlog_bread_offset_fndecl_46957_fields xlog_bread_offset fndecl 2-3 46957 &steer_qpn_count_mlx4_ib_dev_46957_fields
++vmw_piter_start_fndecl_46964_fields vmw_piter_start fndecl 3 46964 NULL nohasharray
++cy_next_channel_vardecl_cyclades_c_46964_fields cy_next_channel vardecl_cyclades.c 0 46964 &vmw_piter_start_fndecl_46964_fields
++can_queue_Scsi_Host_46966_fields can_queue Scsi_Host 0 46966 NULL
++mthca_init_cq_fndecl_46968_fields mthca_init_cq fndecl 2 46968 NULL
++icv_len_ieee80211_fast_rx_46969_fields icv_len ieee80211_fast_rx 0 46969 NULL nohasharray
++fsl_spi_cpu_bufs_fndecl_46969_fields fsl_spi_cpu_bufs fndecl 3-0 46969 &icv_len_ieee80211_fast_rx_46969_fields
++vb2_dc_alloc_fndecl_46971_fields vb2_dc_alloc fndecl 3 46971 NULL
++register_device_fndecl_46972_fields register_device fndecl 3-2 46972 NULL
++f71882fg_find_fndecl_46975_fields f71882fg_find fndecl 0 46975 NULL
++size_dwc3_trb_46986_fields size dwc3_trb 0 46986 NULL
++ri_max_frmr_depth_rpcrdma_ia_46987_fields ri_max_frmr_depth rpcrdma_ia 0 46987 NULL nohasharray
++gru_alloc_gts_fndecl_46987_fields gru_alloc_gts fndecl 6 46987 &ri_max_frmr_depth_rpcrdma_ia_46987_fields
++tx_queue_size_pxa168_eth_platform_data_46988_fields tx_queue_size pxa168_eth_platform_data 0 46988 NULL
++msb_cache_write_fndecl_46992_fields msb_cache_write fndecl 6-2 46992 NULL
++lrg_buffer_len_ql3_adapter_46994_fields lrg_buffer_len ql3_adapter 0 46994 NULL
++buflen_cdrom_generic_command_47000_fields buflen cdrom_generic_command 0 47000 NULL
++no_seek_end_llseek_fndecl_47002_fields no_seek_end_llseek fndecl 2 47002 NULL
++do_ip6t_set_ctl_fndecl_47003_fields do_ip6t_set_ctl fndecl 4 47003 NULL
++n_input_formats_malidp_hw_regmap_47006_fields n_input_formats malidp_hw_regmap 0 47006 NULL
++va_start_vmap_area_47016_fields va_start vmap_area 0 47016 NULL nohasharray
++vmw_kms_update_proxy_fndecl_47016_fields vmw_kms_update_proxy fndecl 3 47016 &va_start_vmap_area_47016_fields
++bytesused_uvc_buffer_47017_fields bytesused uvc_buffer 0 47017 NULL
++length_ixgb_rx_desc_47027_fields length ixgb_rx_desc 0 47027 NULL
++npins_chv_community_47032_fields npins chv_community 0 47032 NULL
++desc_size_shdma_dev_47035_fields desc_size shdma_dev 0 47035 NULL
++xfs_fs_map_blocks_fndecl_47038_fields xfs_fs_map_blocks fndecl 2-3 47038 NULL nohasharray
++minor_index_cardstate_47038_fields minor_index cardstate 0 47038 &xfs_fs_map_blocks_fndecl_47038_fields
++ttm_bo_kmap_fndecl_47045_fields ttm_bo_kmap fndecl 3-2 47045 NULL
++icds_per_ctrl_hba_parameters_47047_fields icds_per_ctrl hba_parameters 0 47047 NULL
++amdgpu_drm_ioctl_fndecl_47050_fields amdgpu_drm_ioctl fndecl 2 47050 NULL
++width_tm6000_core_47057_fields width tm6000_core 0 47057 NULL nohasharray
++vbi_width_em28xx_v4l2_47057_fields vbi_width em28xx_v4l2 0 47057 &width_tm6000_core_47057_fields
++sect_ide_drive_s_47062_fields sect ide_drive_s 0 47062 NULL
++len_Vmxnet3_RxCompDesc_47066_fields len Vmxnet3_RxCompDesc 0 47066 NULL
++epnum_isp116x_ep_47082_fields epnum isp116x_ep 0 47082 NULL
++yres_fb_videomode_47087_fields yres fb_videomode 0 47087 NULL nohasharray
++authorizer_buf_len_ceph_auth_handshake_47087_fields authorizer_buf_len ceph_auth_handshake 0 47087 &yres_fb_videomode_47087_fields
++ext2_get_inode_fndecl_47089_fields ext2_get_inode fndecl 2 47089 NULL
++__send_empty_flush_fndecl_47094_fields __send_empty_flush fndecl 0 47094 NULL
++eeprom_93xx46_read_fndecl_47095_fields eeprom_93xx46_read fndecl 2-4 47095 NULL
++begin_dm_target_47098_fields begin dm_target 0 47098 NULL
++spu_wait_for_u16_fndecl_47101_fields spu_wait_for_u16 fndecl 0 47101 NULL
++len_wmi_rx_action_event_47102_fields len wmi_rx_action_event 0 47102 NULL
++cc2520_read_rxfifo_fndecl_47105_fields cc2520_read_rxfifo fndecl 3 47105 NULL
++agp_size_drm_mga_dma_bootstrap_47108_fields agp_size drm_mga_dma_bootstrap 0 47108 NULL
++num_mthca_resource_47114_fields num mthca_resource 0 47114 NULL
++nportcntrs_qib_chip_specific_47118_fields nportcntrs qib_chip_specific 0 47118 NULL
++j_len_reiserfs_journal_47121_fields j_len reiserfs_journal 0 47121 NULL
++filemap_fdatawrite_range_fndecl_47125_fields filemap_fdatawrite_range fndecl 2-3 47125 NULL
++efi_ioremap_fndecl_47129_fields efi_ioremap fndecl 2-1 47129 NULL
++target_xcopy_write_destination_fndecl_47134_fields target_xcopy_write_destination fndecl 5 47134 NULL
++st33zp24_spi_evaluate_latency_fndecl_47139_fields st33zp24_spi_evaluate_latency fndecl 0 47139 NULL
++data_len_nvme_passthru_cmd_47145_fields data_len nvme_passthru_cmd 0 47145 NULL
++iwl_trans_send_cmd_fndecl_47146_fields iwl_trans_send_cmd fndecl 0 47146 NULL
++do_otp_lock_fndecl_47148_fields do_otp_lock fndecl 3 47148 NULL
++vmw_kms_sou_readback_fndecl_47150_fields vmw_kms_sou_readback fndecl 6 47150 NULL nohasharray
++mcs7830_set_reg_async_fndecl_47150_fields mcs7830_set_reg_async fndecl 3 47150 &vmw_kms_sou_readback_fndecl_47150_fields
++ttm_dma_tt_init_fndecl_47159_fields ttm_dma_tt_init fndecl 3 47159 NULL nohasharray
++req_xfer_ide_atapi_pc_47159_fields req_xfer ide_atapi_pc 0 47159 &ttm_dma_tt_init_fndecl_47159_fields
++mlxsw_sx_port_change_mtu_fndecl_47160_fields mlxsw_sx_port_change_mtu fndecl 2 47160 NULL
++max_blk_size_mmc_host_47174_fields max_blk_size mmc_host 0 47174 NULL
++posix_lock_inode_fndecl_47190_fields posix_lock_inode fndecl 0 47190 NULL
++msix_count_qla_hw_data_47192_fields msix_count qla_hw_data 0 47192 NULL
++max_sq_sg_mlx4_caps_47193_fields max_sq_sg mlx4_caps 0 47193 NULL
++max_inline_data_ib_qp_cap_47196_fields max_inline_data ib_qp_cap 0 47196 NULL
++bi_phys_segments_bio_47200_fields bi_phys_segments bio 0 47200 NULL
++wpos_p9_conn_47212_fields wpos p9_conn 0 47212 NULL
++authsize_crypto_aead_47219_fields authsize crypto_aead 0 47219 NULL
++mwifiex_form_mgmt_frame_fndecl_47220_fields mwifiex_form_mgmt_frame fndecl 3 47220 NULL
++acpi_map_fndecl_47222_fields acpi_map fndecl 2-1 47222 NULL
++csum_exist_in_range_fndecl_47225_fields csum_exist_in_range fndecl 3-2 47225 NULL
++fuse_reverse_inval_inode_fndecl_47245_fields fuse_reverse_inval_inode fndecl 4-3 47245 NULL
++__do_config_autodelink_fndecl_47256_fields __do_config_autodelink fndecl 3 47256 NULL
++num_srqs_mthca_limits_47260_fields num_srqs mthca_limits 0 47260 NULL
++num_ifaces_batadv_priv_47263_fields num_ifaces batadv_priv 0 47263 NULL
++dm_get_blk_mq_queue_depth_fndecl_47265_fields dm_get_blk_mq_queue_depth fndecl 0 47265 NULL
++isku_sysfs_read_fndecl_47269_fields isku_sysfs_read fndecl 5 47269 NULL
++bts_buffer_setup_aux_fndecl_47274_fields bts_buffer_setup_aux fndecl 3 47274 NULL
++write_file_fndecl_47279_fields write_file fndecl 4 47279 NULL
++rom_size_qxl_device_47287_fields rom_size qxl_device 0 47287 NULL
++RequestSenseLength_DAC960_V2_UserCommand_47289_fields RequestSenseLength DAC960_V2_UserCommand 0 47289 NULL nohasharray
++__wa_xfer_submit_fndecl_47289_fields __wa_xfer_submit fndecl 0 47289 &RequestSenseLength_DAC960_V2_UserCommand_47289_fields nohasharray
++ipx_sendmsg_fndecl_47289_fields ipx_sendmsg fndecl 3 47289 &__wa_xfer_submit_fndecl_47289_fields
++sk_gso_max_segs_sock_47290_fields sk_gso_max_segs sock 0 47290 NULL
++dev_number_mdp_superblock_1_47292_fields dev_number mdp_superblock_1 0 47292 NULL
++pppol2tp_recvmsg_fndecl_47301_fields pppol2tp_recvmsg fndecl 3 47301 NULL
++bigdirsize_adfs_bigdirheader_47315_fields bigdirsize adfs_bigdirheader 0 47315 NULL
++special_e1000_rx_desc_47320_fields special e1000_rx_desc 0 47320 NULL
++nr_pages_swap_extent_47325_fields nr_pages swap_extent 0 47325 NULL
++nr_pages_scif_window_47329_fields nr_pages scif_window 0 47329 NULL
++dma_buffer_size_vardecl_budget_core_c_47332_fields dma_buffer_size vardecl_budget-core.c 0 47332 NULL
++brcmf_chip_core_read32_fndecl_47346_fields brcmf_chip_core_read32 fndecl 0 47346 NULL
++__reserve_metadata_bytes_fndecl_47350_fields __reserve_metadata_bytes fndecl 0 47350 NULL
++myri10ge_change_mtu_fndecl_47351_fields myri10ge_change_mtu fndecl 2 47351 NULL nohasharray
++gtt_base_align_amdgpu_mc_47351_fields gtt_base_align amdgpu_mc 0 47351 &myri10ge_change_mtu_fndecl_47351_fields
++dmi_memdev_nr_vardecl_dmi_scan_c_47352_fields dmi_memdev_nr vardecl_dmi_scan.c 0 47352 NULL
++erasesize_mtd_info_47358_fields erasesize mtd_info 0 47358 NULL
++ath6kl_wmi_send_action_cmd_fndecl_47359_fields ath6kl_wmi_send_action_cmd fndecl 2 47359 NULL nohasharray
++altc_entry_sz_mlx4_dev_cap_47359_fields altc_entry_sz mlx4_dev_cap 0 47359 &ath6kl_wmi_send_action_cmd_fndecl_47359_fields
++ie_len_ieee80211_if_mesh_47360_fields ie_len ieee80211_if_mesh 0 47360 NULL nohasharray
++get_vaddr_frames_fndecl_47360_fields get_vaddr_frames fndecl 1 47360 &ie_len_ieee80211_if_mesh_47360_fields
++nr_sects_hd_struct_47364_fields nr_sects hd_struct 0 47364 NULL
++size_rsa_asn1_template_47369_fields size rsa_asn1_template 0 47369 NULL
++batadv_iv_ogm_aggregate_fndecl_47372_fields batadv_iv_ogm_aggregate fndecl 3 47372 NULL
++btt_data_read_fndecl_47374_fields btt_data_read fndecl 0 47374 NULL
++max_fibre_devices_qla_hw_data_47375_fields max_fibre_devices qla_hw_data 0 47375 NULL
++nilfs_bmap_convert_error_fndecl_47376_fields nilfs_bmap_convert_error fndecl 0-3 47376 NULL
++vmw_ttm_tt_create_fndecl_47378_fields vmw_ttm_tt_create fndecl 2 47378 NULL
++data_in_pipe_uas_dev_info_47380_fields data_in_pipe uas_dev_info 0 47380 NULL
++max_tx_length_macb_47385_fields max_tx_length macb 0 47385 NULL
++memblocks_max_vxge_hw_mempool_47387_fields memblocks_max vxge_hw_mempool 0 47387 NULL
++radix_tree_extend_fndecl_47392_fields radix_tree_extend fndecl 0-3 47392 NULL
++access_vm_operations_struct_47395_fields access vm_operations_struct 0 47395 NULL
++sr_bg_stable_blkno_ocfs2_suballoc_result_47398_fields sr_bg_stable_blkno ocfs2_suballoc_result 0 47398 NULL
++efd_start_cluster_ext4_free_data_47399_fields efd_start_cluster ext4_free_data 0 47399 NULL
++iscsi_offload_mesg_fndecl_47402_fields iscsi_offload_mesg fndecl 5 47402 NULL
++datalen_key_preparsed_payload_47406_fields datalen key_preparsed_payload 0 47406 NULL
++vmw_kms_generic_present_fndecl_47407_fields vmw_kms_generic_present fndecl 9 47407 NULL
++tp_len_tpacket_hdr_47410_fields tp_len tpacket_hdr 0 47410 NULL
++idetape_pad_zeros_fndecl_47413_fields idetape_pad_zeros fndecl 2 47413 NULL
++cdc_ncm_update_rxtx_max_fndecl_47421_fields cdc_ncm_update_rxtx_max fndecl 3-2 47421 NULL
++ctx_index_i915_guc_client_47425_fields ctx_index i915_guc_client 0 47425 NULL
++sinit_max_instreams_sctp_cookie_47433_fields sinit_max_instreams sctp_cookie 0 47433 NULL
++depth_bttv_format_47442_fields depth bttv_format 0 47442 NULL nohasharray
++ufs_frag_map_fndecl_47442_fields ufs_frag_map fndecl 0 47442 &depth_bttv_format_47442_fields
++__ieee80211_stop_tx_ba_session_fndecl_47449_fields __ieee80211_stop_tx_ba_session fndecl 2 47449 NULL
++__irq_domain_alloc_irqs_fndecl_47462_fields __irq_domain_alloc_irqs fndecl 0-2 47462 NULL nohasharray
++part_bits_mtd_blktrans_ops_47462_fields part_bits mtd_blktrans_ops 0 47462 &__irq_domain_alloc_irqs_fndecl_47462_fields
++len_wmfw_region_47463_fields len wmfw_region 0 47463 NULL
++memblock_alloc_try_nid_fndecl_47470_fields memblock_alloc_try_nid fndecl 2 47470 NULL
++compat_do_ipt_set_ctl_fndecl_47473_fields compat_do_ipt_set_ctl fndecl 4 47473 NULL
++maxDataSize__mpt_ioctl_header_47477_fields maxDataSize _mpt_ioctl_header 0 47477 NULL
++affs_write_end_ofs_fndecl_47486_fields affs_write_end_ofs fndecl 4-3 47486 NULL
++value_acpi_rsconvert_info_47488_fields value acpi_rsconvert_info 0 47488 NULL
++page_size_cas_47493_fields page_size cas 0 47493 NULL
++first_block_efs_sb_info_47499_fields first_block efs_sb_info 0 47499 NULL
++rss_table_size_i40e_vsi_47500_fields rss_table_size i40e_vsi 0 47500 NULL
++cifs_write_from_iter_fndecl_47501_fields cifs_write_from_iter fndecl 2-1 47501 NULL
++gr_ep_init_fndecl_47502_fields gr_ep_init fndecl 4 47502 NULL
++try_unmap_single_bt_fndecl_47503_fields try_unmap_single_bt fndecl 2-3 47503 NULL
++btrfs_cont_expand_fndecl_47505_fields btrfs_cont_expand fndecl 3-2 47505 NULL
++nr_outport_coresight_platform_data_47506_fields nr_outport coresight_platform_data 0 47506 NULL
++ucNumEntries__ATOM_Tonga_MCLK_Dependency_Table_47510_fields ucNumEntries _ATOM_Tonga_MCLK_Dependency_Table 0 47510 NULL nohasharray
++romfs_blk_strcmp_fndecl_47510_fields romfs_blk_strcmp fndecl 4-2 47510 &ucNumEntries__ATOM_Tonga_MCLK_Dependency_Table_47510_fields
++num_connector_drm_mode_config_47518_fields num_connector drm_mode_config 0 47518 NULL nohasharray
++elf_header_exclude_ranges_fndecl_47518_fields elf_header_exclude_ranges fndecl 2-3 47518 &num_connector_drm_mode_config_47518_fields nohasharray
++gfs2_dir_get_new_buffer_fndecl_47518_fields gfs2_dir_get_new_buffer fndecl 2 47518 &elf_header_exclude_ranges_fndecl_47518_fields
++helene_write_regs_fndecl_47531_fields helene_write_regs fndecl 4 47531 NULL nohasharray
++rome_tlv_send_segment_fndecl_47531_fields rome_tlv_send_segment fndecl 3 47531 &helene_write_regs_fndecl_47531_fields
++llcp_sock_sendmsg_fndecl_47535_fields llcp_sock_sendmsg fndecl 3 47535 NULL
++bytes_nvmem_cell_47539_fields bytes nvmem_cell 0 47539 NULL
++skb_headers_offset_update_fndecl_47543_fields skb_headers_offset_update fndecl 2 47543 NULL
++relocs_num_drm_qxl_command_47550_fields relocs_num drm_qxl_command 0 47550 NULL
++add_replay_bud_fndecl_47552_fields add_replay_bud fndecl 3 47552 NULL
++max_concur_ios_snic_fw_info_47556_fields max_concur_ios snic_fw_info 0 47556 NULL
++fbcon_scrolldelta_fndecl_47560_fields fbcon_scrolldelta fndecl 2 47560 NULL
++max_xmit_dlength_iscsi_bus_flash_conn_47565_fields max_xmit_dlength iscsi_bus_flash_conn 0 47565 NULL
++ubh_bread_uspi_fndecl_47568_fields ubh_bread_uspi fndecl 3 47568 NULL
++bnx2x_calc_num_queues_fndecl_47576_fields bnx2x_calc_num_queues fndecl 0 47576 NULL
++i_start_msdos_inode_info_47589_fields i_start msdos_inode_info 0 47589 NULL nohasharray
++traffic_class_ib_global_route_47589_fields traffic_class ib_global_route 0 47589 &i_start_msdos_inode_info_47589_fields
++acpi_check_region_fndecl_47594_fields acpi_check_region fndecl 2-1 47594 NULL
++ecryptfs_write_end_fndecl_47601_fields ecryptfs_write_end fndecl 5-3 47601 NULL
++rx_page_order_iwl_trans_pcie_47605_fields rx_page_order iwl_trans_pcie 0 47605 NULL
++ebt_buf_count_fndecl_47612_fields ebt_buf_count fndecl 2 47612 NULL
++control_1_vxge_hw_ring_rxd_1_47616_fields control_1 vxge_hw_ring_rxd_1 0 47616 NULL
++mincore_pte_range_fndecl_47625_fields mincore_pte_range fndecl 2 47625 NULL nohasharray
++len_ib_ucm_req_47625_fields len ib_ucm_req 0 47625 &mincore_pte_range_fndecl_47625_fields
++ubifs_load_znode_fndecl_47628_fields ubifs_load_znode fndecl 4 47628 NULL
++allocate_resource_fndecl_47629_fields allocate_resource fndecl 4-3-5-6 47629 NULL
++size_early_log_47637_fields size early_log 0 47637 NULL
++nentries_ebt_table_info_47639_fields nentries ebt_table_info 0 47639 NULL
++buffer_alignment_fore200e_bus_47640_fields buffer_alignment fore200e_bus 0 47640 NULL
++num_phys_hw_profile_47641_fields num_phys hw_profile 0 47641 NULL
++radeon_compat_ioctl_fndecl_47645_fields radeon_compat_ioctl fndecl 2 47645 NULL
++ocfs2_move_extent_fndecl_47648_fields ocfs2_move_extent fndecl 5-3-2 47648 NULL nohasharray
++fetch_to_dev_buffer_fndecl_47648_fields fetch_to_dev_buffer fndecl 3 47648 &ocfs2_move_extent_fndecl_47648_fields
++rate_max_snd_soc_pcm_stream_47650_fields rate_max snd_soc_pcm_stream 0 47650 NULL
++max_sge_rqe_allocated_ocrdma_create_srq_rsp_47654_fields max_sge_rqe_allocated ocrdma_create_srq_rsp 0 47654 NULL
++height_console_font_47655_fields height console_font 0 47655 NULL
++length_fw_cdev_add_descriptor_47656_fields length fw_cdev_add_descriptor 0 47656 NULL
++__of_address_to_resource_fndecl_47662_fields __of_address_to_resource fndecl 3 47662 NULL
++wPropertyNameLength_usb_ext_prop_desc_47663_fields wPropertyNameLength usb_ext_prop_desc 0 47663 NULL
++dlm_rcom_names_fndecl_47668_fields dlm_rcom_names fndecl 4 47668 NULL
++chans_zatm_dev_47669_fields chans zatm_dev 0 47669 NULL
++setup_window_fndecl_47673_fields setup_window fndecl 2-3 47673 NULL
++pci_iov_bus_range_fndecl_47686_fields pci_iov_bus_range fndecl 0 47686 NULL
++maxframesize_snd_usb_endpoint_47687_fields maxframesize snd_usb_endpoint 0 47687 NULL
++batadv_hardif_min_mtu_fndecl_47691_fields batadv_hardif_min_mtu fndecl 0 47691 NULL
++virtblk_queue_depth_vardecl_virtio_blk_c_47692_fields virtblk_queue_depth vardecl_virtio_blk.c 0 47692 NULL
++gpu_mem_base_vml_par_47703_fields gpu_mem_base vml_par 0 47703 NULL
++onenand_bbt_read_oob_fndecl_47704_fields onenand_bbt_read_oob fndecl 2 47704 NULL nohasharray
++xfs_iext_realloc_indirect_fndecl_47704_fields xfs_iext_realloc_indirect fndecl 2 47704 &onenand_bbt_read_oob_fndecl_47704_fields
++ppp_sync_receive_fndecl_47706_fields ppp_sync_receive fndecl 4 47706 NULL
++small_bytes_myri10ge_priv_47709_fields small_bytes myri10ge_priv 0 47709 NULL nohasharray
++fast_rx_path_fndecl_47709_fields fast_rx_path fndecl 3 47709 &small_bytes_myri10ge_priv_47709_fields nohasharray
++i2c_hid_raw_request_fndecl_47709_fields i2c_hid_raw_request fndecl 4 47709 &fast_rx_path_fndecl_47709_fields
++oxu_init_fndecl_47714_fields oxu_init fndecl 3-2 47714 NULL
++bdev_stack_limits_fndecl_47732_fields bdev_stack_limits fndecl 3 47732 NULL
++copy_nocow_pages_for_inode_fndecl_47736_fields copy_nocow_pages_for_inode fndecl 2 47736 NULL
++SMB2_write_fndecl_47741_fields SMB2_write fndecl 5 47741 NULL
++minbcnt_aoetgt_47744_fields minbcnt aoetgt 0 47744 NULL
++buffer_size_snd_emu10k1_fx8010_pcm_47753_fields buffer_size snd_emu10k1_fx8010_pcm 0 47753 NULL
++fixed_out_len_gether_47754_fields fixed_out_len gether 0 47754 NULL
++key_instantiate_and_link_fndecl_47756_fields key_instantiate_and_link fndecl 3 47756 NULL
++num_def_rx_descs_octeon_config_47759_fields num_def_rx_descs octeon_config 0 47759 NULL
++write_chunk_fndecl_47763_fields write_chunk fndecl 4 47763 NULL
++ticket_length_rxrpc_key_data_v1_47764_fields ticket_length rxrpc_key_data_v1 0 47764 NULL
++mq_ecount_lpfc_sli4_hba_47770_fields mq_ecount lpfc_sli4_hba 0 47770 NULL
++rx_count_ll_struct_47772_fields rx_count ll_struct 0 47772 NULL nohasharray
++minor_osd_uld_device_47772_fields minor osd_uld_device 0 47772 &rx_count_ll_struct_47772_fields
++fill_func_debug_buffer_47773_fields fill_func debug_buffer 0 47773 NULL
++dma1_shift_es1938_47776_fields dma1_shift es1938 0 47776 NULL
++rx_ring_size_bnx2x_47784_fields rx_ring_size bnx2x 0 47784 NULL
++hfi1_create_ctxtdata_fndecl_47785_fields hfi1_create_ctxtdata fndecl 2 47785 NULL nohasharray
++bg_blkno_ocfs2_group_desc_47785_fields bg_blkno ocfs2_group_desc 0 47785 &hfi1_create_ctxtdata_fndecl_47785_fields
++max_cmds_mlx4_cmd_47790_fields max_cmds mlx4_cmd 0 47790 NULL nohasharray
++skb_prepare_seq_read_fndecl_47790_fields skb_prepare_seq_read fndecl 2 47790 &max_cmds_mlx4_cmd_47790_fields
++do_otp_read_fndecl_47794_fields do_otp_read fndecl 2 47794 NULL
++num_vmdq_qps_i40e_pf_47795_fields num_vmdq_qps i40e_pf 0 47795 NULL
++mxt_bootloader_read_fndecl_47796_fields mxt_bootloader_read fndecl 3 47796 NULL nohasharray
++major_vardecl_sound_c_47796_fields major vardecl_sound.c 0 47796 &mxt_bootloader_read_fndecl_47796_fields
++__push_leaf_right_fndecl_47797_fields __push_leaf_right fndecl 8 47797 NULL nohasharray
++get_key_haup_common_fndecl_47797_fields get_key_haup_common fndecl 5 47797 &__push_leaf_right_fndecl_47797_fields
++i_eblock_bfs_inode_47799_fields i_eblock bfs_inode 0 47799 NULL
++h_suballoc_bit_ocfs2_extent_block_47802_fields h_suballoc_bit ocfs2_extent_block 0 47802 NULL
++odd_byte_adjustment_sym_ccb_47803_fields odd_byte_adjustment sym_ccb 0 47803 NULL
++xfs_attrmulti_attr_set_fndecl_47809_fields xfs_attrmulti_attr_set fndecl 4 47809 NULL
++fuse_copy_do_fndecl_47822_fields fuse_copy_do fndecl 0 47822 NULL
++create_srq_user_fndecl_47828_fields create_srq_user fndecl 5 47828 NULL
++rom_length_fw_cdev_get_info_47831_fields rom_length fw_cdev_get_info 0 47831 NULL
++cifs_readv_from_socket_fndecl_47833_fields cifs_readv_from_socket fndecl 0 47833 NULL
++tcp_check_reno_reordering_fndecl_47842_fields tcp_check_reno_reordering fndecl 2 47842 NULL
++assoc_len_amp_ctrl_47844_fields assoc_len amp_ctrl 0 47844 NULL nohasharray
++ieee80211_tdls_add_setup_start_ies_fndecl_47844_fields ieee80211_tdls_add_setup_start_ies fndecl 7 47844 &assoc_len_amp_ctrl_47844_fields
++rl_rgrps_gfs2_rgrp_list_47847_fields rl_rgrps gfs2_rgrp_list 0 47847 NULL
++ch_t_tlevel_jsm_channel_47848_fields ch_t_tlevel jsm_channel 0 47848 NULL
++s_mmp_block_ext4_super_block_47865_fields s_mmp_block ext4_super_block 0 47865 NULL
++length_ar9170_stream_47870_fields length ar9170_stream 0 47870 NULL
++smssdio_sendrequest_fndecl_47873_fields smssdio_sendrequest fndecl 3 47873 NULL
++len_nlm_cookie_47875_fields len nlm_cookie 0 47875 NULL nohasharray
++ivtv_convert_ivtv_vbi_fndecl_47875_fields ivtv_convert_ivtv_vbi fndecl 0 47875 &len_nlm_cookie_47875_fields
++smt_send_ecf_fndecl_47881_fields smt_send_ecf fndecl 6 47881 NULL
++n_bytes_rockchip_spi_47891_fields n_bytes rockchip_spi 0 47891 NULL
++end_bus_number_acpi_mcfg_allocation_47894_fields end_bus_number acpi_mcfg_allocation 0 47894 NULL
++sb_inoalignmt_xfs_sb_47899_fields sb_inoalignmt xfs_sb 0 47899 NULL
++set_offset_v2_k_offset_fndecl_47902_fields set_offset_v2_k_offset fndecl 2 47902 NULL
++msize_p9_client_47905_fields msize p9_client 0 47905 NULL
++spi_map_msg_fndecl_47912_fields spi_map_msg fndecl 0 47912 NULL
++nbytes_fsl_edma_hw_tcd_47913_fields nbytes fsl_edma_hw_tcd 0 47913 NULL
++xfs_bmap_read_extents_fndecl_47915_fields xfs_bmap_read_extents fndecl 0 47915 NULL
++telem_pmc_ssram_size_intel_pmc_ipc_dev_47917_fields telem_pmc_ssram_size intel_pmc_ipc_dev 0 47917 NULL
++mxl111sf_stream_config_isoc_fndecl_47924_fields mxl111sf_stream_config_isoc fndecl 2 47924 NULL
++phys_esb2rom_window_47933_fields phys esb2rom_window 0 47933 NULL
++fddi_change_mtu_fndecl_47942_fields fddi_change_mtu fndecl 2 47942 NULL
++rxd_vlan_rxd_desc_47943_fields rxd_vlan rxd_desc 0 47943 NULL
++max_param_range_47945_fields max param_range 0 47945 NULL
++get_user_pages_unlocked_fndecl_47946_fields get_user_pages_unlocked fndecl 0-1 47946 NULL
++produce_q_size_vmci_qp_47948_fields produce_q_size vmci_qp 0 47948 NULL
++dlm_new_lockspace_fndecl_47954_fields dlm_new_lockspace fndecl 4 47954 NULL
++l2bsize_jfs_log_47956_fields l2bsize jfs_log 0 47956 NULL
++depth_pitch_drm_r128_private_47959_fields depth_pitch drm_r128_private 0 47959 NULL
++netpoll_send_udp_fndecl_47960_fields netpoll_send_udp fndecl 3 47960 NULL
++st5481_isoc_flatten_fndecl_47963_fields st5481_isoc_flatten fndecl 0 47963 NULL
++handle_rx_packet_fndecl_47970_fields handle_rx_packet fndecl 3 47970 NULL
++encap_hlen_ip_tunnel_encap_ops_47971_fields encap_hlen ip_tunnel_encap_ops 0 47971 NULL nohasharray
++length_xfs_bmalloca_47971_fields length xfs_bmalloca 0 47971 &encap_hlen_ip_tunnel_encap_ops_47971_fields
++num_irqs_nfp_net_47984_fields num_irqs nfp_net 0 47984 NULL
++remap_to_cache_dirty_fndecl_47996_fields remap_to_cache_dirty fndecl 4 47996 NULL
++size_sc_config_sizes_47998_fields size sc_config_sizes 0 47998 NULL
++blocks_num_c2port_ops_47999_fields blocks_num c2port_ops 0 47999 NULL
++width_console_font_op_48005_fields width console_font_op 0 48005 NULL
++size_nfs_fh_48014_fields size nfs_fh 0 48014 NULL
++temp_end_applesmc_registers_48016_fields temp_end applesmc_registers 0 48016 NULL
++original_mtu_slave_48025_fields original_mtu slave 0 48025 NULL
++hmac_len_sctp_hmac_48030_fields hmac_len sctp_hmac 0 48030 NULL
++rm_namelen_nfsd4_remove_48040_fields rm_namelen nfsd4_remove 0 48040 NULL
++s_reserved_affs_sb_info_48043_fields s_reserved affs_sb_info 0 48043 NULL
++sb_size_md_rdev_48046_fields sb_size md_rdev 0 48046 NULL
++num_pages_ttm_buffer_object_48047_fields num_pages ttm_buffer_object 0 48047 NULL
++num_privcmd_mmapbatch_v2_48051_fields num privcmd_mmapbatch_v2 0 48051 NULL
++ioctl_datasize_ips_ha_48058_fields ioctl_datasize ips_ha 0 48058 NULL
++nr_channels_at_dma_platform_data_48060_fields nr_channels at_dma_platform_data 0 48060 NULL
++lso_max_fc_lport_48064_fields lso_max fc_lport 0 48064 NULL
++zonesize_alauda_media_info_48068_fields zonesize alauda_media_info 0 48068 NULL
++sc16is7xx_alloc_line_fndecl_48075_fields sc16is7xx_alloc_line fndecl 0 48075 NULL
++mt9t031_skip_fndecl_48078_fields mt9t031_skip fndecl 0-3-2 48078 NULL
++mlx5_ib_read_user_wqe_fndecl_48085_fields mlx5_ib_read_user_wqe fndecl 3-5 48085 NULL
++count_atl1c_rfd_ring_48095_fields count atl1c_rfd_ring 0 48095 NULL
++seg_count_agp_region32_48097_fields seg_count agp_region32 0 48097 NULL
++icq_align_elevator_type_48098_fields icq_align elevator_type 0 48098 NULL
++ep_out_mts_desc_48099_fields ep_out mts_desc 0 48099 NULL
++__lbs_cmd_async_fndecl_48102_fields __lbs_cmd_async fndecl 4 48102 NULL
++bit_offset_nvmem_cell_info_48105_fields bit_offset nvmem_cell_info 0 48105 NULL
++max_pkt_size_cx231xx_audio_48117_fields max_pkt_size cx231xx_audio 0 48117 NULL
++discard_granularity_queue_limits_48119_fields discard_granularity queue_limits 0 48119 NULL
++gfs2_write_begin_fndecl_48129_fields gfs2_write_begin fndecl 4-3 48129 NULL
++netid_len_pnfs_ff_netaddr_48139_fields netid_len pnfs_ff_netaddr 0 48139 NULL
++osdmap_set_max_osd_fndecl_48141_fields osdmap_set_max_osd fndecl 2 48141 NULL nohasharray
++sisusbcon_putcs_fndecl_48141_fields sisusbcon_putcs fndecl 3 48141 &osdmap_set_max_osd_fndecl_48141_fields
++max_gs_mlx5_core_srq_48153_fields max_gs mlx5_core_srq 0 48153 NULL
++isdnhdlc_encode_fndecl_48155_fields isdnhdlc_encode fndecl 0-6 48155 NULL
++usb_endpoint_data_queue_48158_fields usb_endpoint data_queue 0 48158 NULL nohasharray
++update_res_fndecl_48158_fields update_res fndecl 3-2 48158 &usb_endpoint_data_queue_48158_fields
++ceph_set_xattr_handler_fndecl_48161_fields ceph_set_xattr_handler fndecl 6 48161 NULL
++qs_in_channels_hdsp_48166_fields qs_in_channels hdsp 0 48166 NULL nohasharray
++xfs_alloc_ag_vextent_near_fndecl_48166_fields xfs_alloc_ag_vextent_near fndecl 0 48166 &qs_in_channels_hdsp_48166_fields
++hub_control_hc_driver_48178_fields hub_control hc_driver 0 48178 NULL
++mwifiex_parse_cal_cfg_fndecl_48179_fields mwifiex_parse_cal_cfg fndecl 0 48179 NULL
++num_pages_vmw_sg_table_48192_fields num_pages vmw_sg_table 0 48192 NULL
++qcafrm_fsm_decode_fndecl_48193_fields qcafrm_fsm_decode fndecl 0-4 48193 NULL
++xres_virtual_fb_var_screeninfo_48196_fields xres_virtual fb_var_screeninfo 0 48196 NULL nohasharray
++sy_fb_copyarea_48196_fields sy fb_copyarea 0 48196 &xres_virtual_fb_var_screeninfo_48196_fields
++snd_rawmidi_transmit_ack_fndecl_48200_fields snd_rawmidi_transmit_ack fndecl 2 48200 NULL
++rxoffset_dma_info_48202_fields rxoffset dma_info 0 48202 NULL
++btusb_recv_bulk_intel_fndecl_48211_fields btusb_recv_bulk_intel fndecl 3 48211 NULL
++srp_response_common_fndecl_48216_fields srp_response_common fndecl 4 48216 NULL nohasharray
++ax88179_read_cmd_nopm_fndecl_48216_fields ax88179_read_cmd_nopm fndecl 5 48216 &srp_response_common_fndecl_48216_fields
++cur_inode_last_extent_send_ctx_48219_fields cur_inode_last_extent send_ctx 0 48219 NULL
++xdr_buf_read_netobj_fndecl_48238_fields xdr_buf_read_netobj fndecl 3 48238 NULL
++num_rx_rings_bnx2_48240_fields num_rx_rings bnx2 0 48240 NULL
++frag_offset_kcm_tx_msg_48243_fields frag_offset kcm_tx_msg 0 48243 NULL
++qib_make_grh_fndecl_48250_fields qib_make_grh fndecl 0 48250 NULL
++height_cx88_core_48255_fields height cx88_core 0 48255 NULL
++region_length_acpi_table_bert_48274_fields region_length acpi_table_bert 0 48274 NULL
++vrows_display_48275_fields vrows display 0 48275 NULL
++add_packet_fndecl_48295_fields add_packet fndecl 3 48295 NULL
++nep_buffer_size_wahc_48313_fields nep_buffer_size wahc 0 48313 NULL
++ngroups_group_info_48320_fields ngroups group_info 0 48320 NULL
++pin_down_extent_fndecl_48324_fields pin_down_extent fndecl 4-3 48324 NULL
++acpi_efi_48328_fields acpi efi 0 48328 NULL nohasharray
++btn_rec_size_cyttsp4_sysinfo_ofs_48328_fields btn_rec_size cyttsp4_sysinfo_ofs 0 48328 &acpi_efi_48328_fields
++vga_scan_lines_vardecl_vgacon_c_48330_fields vga_scan_lines vardecl_vgacon.c 0 48330 NULL
++region_table_entry_bits_switch_ctx_48332_fields region_table_entry_bits switch_ctx 0 48332 NULL
++tch_rec_size_cyttsp4_opcfg_48339_fields tch_rec_size cyttsp4_opcfg 0 48339 NULL
++spare_bytes_per_page_nand_jedec_params_48344_fields spare_bytes_per_page nand_jedec_params 0 48344 NULL
++bno_xfs_extent_busy_48346_fields bno xfs_extent_busy 0 48346 NULL
++generic_ptrace_peekdata_fndecl_48349_fields generic_ptrace_peekdata fndecl 2 48349 NULL
++hwahc_op_urb_dequeue_fndecl_48351_fields hwahc_op_urb_dequeue fndecl 3 48351 NULL
++xfs_rtpick_extent_fndecl_48352_fields xfs_rtpick_extent fndecl 0 48352 NULL
++num_phys_samsung_usb2_phy_config_48358_fields num_phys samsung_usb2_phy_config 0 48358 NULL
++qib_make_rc_ack_fndecl_48361_fields qib_make_rc_ack fndecl 4 48361 NULL
++ule_sndu_len_dvb_net_priv_48367_fields ule_sndu_len dvb_net_priv 0 48367 NULL nohasharray
++low_rio_doorbell_filter_48367_fields low rio_doorbell_filter 0 48367 &ule_sndu_len_dvb_net_priv_48367_fields
++xlog_write_setup_copy_fndecl_48368_fields xlog_write_setup_copy fndecl 0 48368 NULL
++i915_gem_object_bind_to_vm_fndecl_48370_fields i915_gem_object_bind_to_vm fndecl 5 48370 NULL nohasharray
++gmch_chip_id_intel_gtt_driver_description_48370_fields gmch_chip_id intel_gtt_driver_description 0 48370 &i915_gem_object_bind_to_vm_fndecl_48370_fields
++width_dt3155_priv_48375_fields width dt3155_priv 0 48375 NULL
++driver_data_pci_device_id_48380_fields driver_data pci_device_id 0 48380 NULL
++_snd_pcm_hw_param_set_fndecl_48394_fields _snd_pcm_hw_param_set fndecl 3 48394 NULL
++blk_queue_dma_pad_fndecl_48409_fields blk_queue_dma_pad fndecl 2 48409 NULL
++ieee80211_start_rx_ba_session_offl_fndecl_48410_fields ieee80211_start_rx_ba_session_offl fndecl 3 48410 NULL
++osd_depth_vardecl_ivtvfb_c_48413_fields osd_depth vardecl_ivtvfb.c 0 48413 NULL
++__install_special_mapping_fndecl_48415_fields __install_special_mapping fndecl 2-3 48415 NULL
++seq_buf_putmem_fndecl_48421_fields seq_buf_putmem fndecl 3 48421 NULL
++sys_fadvise64_64_fndecl_48424_fields sys_fadvise64_64 fndecl 2-3 48424 NULL nohasharray
++stex_copy_data_fndecl_48424_fields stex_copy_data fndecl 3 48424 &sys_fadvise64_64_fndecl_48424_fields
++bMaxBurst_usb_wireless_ep_comp_descriptor_48430_fields bMaxBurst usb_wireless_ep_comp_descriptor 0 48430 NULL
++mmio_phys_end_amd_iommu_48432_fields mmio_phys_end amd_iommu 0 48432 NULL
++__nvme_submit_sync_cmd_fndecl_48438_fields __nvme_submit_sync_cmd fndecl 5 48438 NULL nohasharray
++tty_register_device_attr_fndecl_48438_fields tty_register_device_attr fndecl 2 48438 &__nvme_submit_sync_cmd_fndecl_48438_fields
++bzImage64_load_fndecl_48447_fields bzImage64_load fndecl 5 48447 NULL
++__tcp_retransmit_skb_fndecl_48449_fields __tcp_retransmit_skb fndecl 3 48449 NULL
++compat_keyctl_instantiate_key_iov_fndecl_48452_fields compat_keyctl_instantiate_key_iov fndecl 3 48452 NULL
++frag_ceph_file_info_48455_fields frag ceph_file_info 0 48455 NULL
++xen_align_and_add_e820_region_fndecl_48457_fields xen_align_and_add_e820_region fndecl 2-1 48457 NULL nohasharray
++dp_out_buf_len_digi_port_48457_fields dp_out_buf_len digi_port 0 48457 &xen_align_and_add_e820_region_fndecl_48457_fields
++len_rx_header_48462_fields len rx_header 0 48462 NULL
++__nla_reserve_nohdr_fndecl_48468_fields __nla_reserve_nohdr fndecl 2 48468 NULL
++gre_manip_pkt_fndecl_48475_fields gre_manip_pkt fndecl 4 48475 NULL
++nr_domains_rapl_package_48482_fields nr_domains rapl_package 0 48482 NULL
++xe_value_size_ocfs2_xattr_entry_48485_fields xe_value_size ocfs2_xattr_entry 0 48485 NULL
++__roundup_pow_of_two_fndecl_48486_fields __roundup_pow_of_two fndecl 0 48486 NULL
++l_len_ocfs2_space_resv_48490_fields l_len ocfs2_space_resv 0 48490 NULL
++ydepth_sh_veu_format_48498_fields ydepth sh_veu_format 0 48498 NULL
++encode_filename_fndecl_48501_fields encode_filename fndecl 3 48501 NULL
++len_cfg80211_bss_ies_48503_fields len cfg80211_bss_ies 0 48503 NULL
++channels_snd_soc_dai_48509_fields channels snd_soc_dai 0 48509 NULL
++rx_count_kim_data_s_48513_fields rx_count kim_data_s 0 48513 NULL
++octeon_read_device_mem32_fndecl_48520_fields octeon_read_device_mem32 fndecl 0 48520 NULL
++fcoe_get_paged_crc_eof_fndecl_48522_fields fcoe_get_paged_crc_eof fndecl 2 48522 NULL
++receive_buf_fndecl_48528_fields receive_buf fndecl 4 48528 NULL
++dxfer_len_sg_io_hdr_48532_fields dxfer_len sg_io_hdr 0 48532 NULL
++discard_block_size_cache_48539_fields discard_block_size cache 0 48539 NULL
++fack_count_tcp_sacktag_state_48543_fields fack_count tcp_sacktag_state 0 48543 NULL
++aid_len_nfc_evt_transaction_48544_fields aid_len nfc_evt_transaction 0 48544 NULL
++dccp_sync_mss_fndecl_48556_fields dccp_sync_mss fndecl 2 48556 NULL
++__vlan_vid_add_fndecl_48559_fields __vlan_vid_add fndecl 3 48559 NULL
++intel_tile_height_fndecl_48566_fields intel_tile_height fndecl 0-3 48566 NULL
++len_wep_key_t_48574_fields len wep_key_t 0 48574 NULL
++iomem_reg_shift_old_serial_port_48579_fields iomem_reg_shift old_serial_port 0 48579 NULL
++max_skb_frags_iwl_trans_48580_fields max_skb_frags iwl_trans 0 48580 NULL
++vce_v2_0_bo_size_fndecl_48581_fields vce_v2_0_bo_size fndecl 0 48581 NULL
++max_num_vdevs_ath10k_48584_fields max_num_vdevs ath10k 0 48584 NULL nohasharray
++tx_ring_size_bnx2x_48584_fields tx_ring_size bnx2x 0 48584 &max_num_vdevs_ath10k_48584_fields
++backup_size_vmw_resource_48590_fields backup_size vmw_resource 0 48590 NULL
++arm_copy_to_user_fndecl_48602_fields arm_copy_to_user fndecl 0 48602 NULL
++datalen_atp_info_48607_fields datalen atp_info 0 48607 NULL
++count_e8390_pkt_hdr_48610_fields count e8390_pkt_hdr 0 48610 NULL
++mmc_test_prepare_mrq_fndecl_48612_fields mmc_test_prepare_mrq fndecl 7-6-4 48612 NULL
++hva_to_pfn_remapped_fndecl_48620_fields hva_to_pfn_remapped fndecl 2 48620 NULL
++len_i40iw_post_inline_send_48623_fields len i40iw_post_inline_send 0 48623 NULL
++xen_get_max_pages_fndecl_48626_fields xen_get_max_pages fndecl 0 48626 NULL
++crc_eof_offset_fcoe_percpu_s_48630_fields crc_eof_offset fcoe_percpu_s 0 48630 NULL
++bcma_of_get_irq_fndecl_48631_fields bcma_of_get_irq fndecl 0 48631 NULL
++ili210x_read_reg_fndecl_48632_fields ili210x_read_reg fndecl 4 48632 NULL
++igu_sb_cnt_qed_igu_info_48638_fields igu_sb_cnt qed_igu_info 0 48638 NULL
++check_next_phase_fndecl_48641_fields check_next_phase fndecl 2 48641 NULL
++w_panel_info_48643_fields w panel_info 0 48643 NULL
++origin_sectors_cache_48650_fields origin_sectors cache 0 48650 NULL
++pkt_len_eth_end_agg_rx_cqe_48658_fields pkt_len eth_end_agg_rx_cqe 0 48658 NULL
++mmc_test_rnd_perf_fndecl_48660_fields mmc_test_rnd_perf fndecl 4 48660 NULL
++brcmf_sdio_bus_get_memdump_fndecl_48669_fields brcmf_sdio_bus_get_memdump fndecl 3 48669 NULL
++snd_seq_fifo_new_fndecl_48670_fields snd_seq_fifo_new fndecl 1 48670 NULL
++ep_out_if_usb_card_48678_fields ep_out if_usb_card 0 48678 NULL
++vscan_drm_display_mode_48680_fields vscan drm_display_mode 0 48680 NULL nohasharray
++ext4_bg_num_gdb_fndecl_48680_fields ext4_bg_num_gdb fndecl 0 48680 &vscan_drm_display_mode_48680_fields
++simple_transaction_set_fndecl_48684_fields simple_transaction_set fndecl 2 48684 NULL
++max_eqs_mlx4_dev_cap_48689_fields max_eqs mlx4_dev_cap 0 48689 NULL
++sb_dblocks_xfs_sb_48691_fields sb_dblocks xfs_sb 0 48691 NULL
++usCRTC_H_Disp__ATOM_MODE_TIMING_48694_fields usCRTC_H_Disp _ATOM_MODE_TIMING 0 48694 NULL nohasharray
++ib_qib_max_qp_wrs_vardecl_48694_fields ib_qib_max_qp_wrs vardecl 0 48694 &usCRTC_H_Disp__ATOM_MODE_TIMING_48694_fields
++max_rds_rings_netxen_adapter_48699_fields max_rds_rings netxen_adapter 0 48699 NULL
++cqe_ib_cq_init_attr_48707_fields cqe ib_cq_init_attr 0 48707 NULL nohasharray
++asix_write_cmd_fndecl_48707_fields asix_write_cmd fndecl 5 48707 &cqe_ib_cq_init_attr_48707_fields
++xfs_zero_extent_fndecl_48709_fields xfs_zero_extent fndecl 0-3-2 48709 NULL
++orangefs_normalize_to_errno_fndecl_48715_fields orangefs_normalize_to_errno fndecl 0-1 48715 NULL nohasharray
++sect_count_hfsplus_sb_info_48715_fields sect_count hfsplus_sb_info 0 48715 &orangefs_normalize_to_errno_fndecl_48715_fields
++base_gfn_kvm_memory_slot_48716_fields base_gfn kvm_memory_slot 0 48716 NULL
++nci_send_cmd_fndecl_48717_fields nci_send_cmd fndecl 3 48717 NULL nohasharray
++num_cols_vardecl_arcfb_c_48717_fields num_cols vardecl_arcfb.c 0 48717 &nci_send_cmd_fndecl_48717_fields
++rx_max_cdc_ncm_ctx_48720_fields rx_max cdc_ncm_ctx 0 48720 NULL nohasharray
++mdata_ofs_cyttsp4_sysinfo_ofs_48720_fields mdata_ofs cyttsp4_sysinfo_ofs 0 48720 &rx_max_cdc_ncm_ctx_48720_fields
++ceph_tcp_recvmsg_fndecl_48722_fields ceph_tcp_recvmsg fndecl 0-3 48722 NULL
++can_dlc_can_frame_48738_fields can_dlc can_frame 0 48738 NULL
++numEntries__ATOM_PPLIB_UVD_Clock_Voltage_Limit_Table_48741_fields numEntries _ATOM_PPLIB_UVD_Clock_Voltage_Limit_Table 0 48741 NULL nohasharray
++bad_peb_count_ubi_device_48741_fields bad_peb_count ubi_device 0 48741 &numEntries__ATOM_PPLIB_UVD_Clock_Voltage_Limit_Table_48741_fields
++iommu_size_vardecl_amd_gart_64_c_48749_fields iommu_size vardecl_amd_gart_64.c 0 48749 NULL
++default_value_v4l2_ctrl_48751_fields default_value v4l2_ctrl 0 48751 NULL
++e_blkno_ocfs2_extent_rec_48756_fields e_blkno ocfs2_extent_rec 0 48756 NULL
++ide_rate_filter_fndecl_48764_fields ide_rate_filter fndecl 0 48764 NULL
++nfree_arena_info_48769_fields nfree arena_info 0 48769 NULL
++xmit_size_modem_info_48775_fields xmit_size modem_info 0 48775 NULL
++usable_leb_size_ubi_volume_info_48776_fields usable_leb_size ubi_volume_info 0 48776 NULL
++cfg80211_mgmt_tx_status_fndecl_48777_fields cfg80211_mgmt_tx_status fndecl 4 48777 NULL
++height_drm_framebuffer_48781_fields height drm_framebuffer 0 48781 NULL
++value_len_jffs2_xattr_datum_48786_fields value_len jffs2_xattr_datum 0 48786 NULL nohasharray
++hva_to_pfn_fndecl_48786_fields hva_to_pfn fndecl 1 48786 &value_len_jffs2_xattr_datum_48786_fields nohasharray
++mwifiex_host_to_card_mp_aggr_fndecl_48786_fields mwifiex_host_to_card_mp_aggr fndecl 3 48786 &hva_to_pfn_fndecl_48786_fields
++head_len_cfg80211_beacon_data_48794_fields head_len cfg80211_beacon_data 0 48794 NULL
++unit_size_mspro_sys_info_48796_fields unit_size mspro_sys_info 0 48796 NULL
++da_num_tokens_vardecl_dell_smbios_c_48798_fields da_num_tokens vardecl_dell-smbios.c 0 48798 NULL
++twl6030_init_irq_fndecl_48804_fields twl6030_init_irq fndecl 0 48804 NULL
++dev_id_rbd_device_48813_fields dev_id rbd_device 0 48813 NULL
++m_rmap_maxlevels_xfs_mount_48821_fields m_rmap_maxlevels xfs_mount 0 48821 NULL
++sharpness_sd_gl860_48824_fields sharpness sd_gl860 0 48824 NULL
++endpoint_pvr2_stream_48828_fields endpoint pvr2_stream 0 48828 NULL
++num_vring_48831_fields num vring 0 48831 NULL nohasharray
++xbofs_irda_skb_cb_48831_fields xbofs irda_skb_cb 0 48831 &num_vring_48831_fields
++osst_init_aux_fndecl_48837_fields osst_init_aux fndecl 6-5 48837 NULL
++busnum_usb_bus_48843_fields busnum usb_bus 0 48843 NULL
++pcim_iomap_fndecl_48845_fields pcim_iomap fndecl 3 48845 NULL
++adf7242_read_fbuf_fndecl_48847_fields adf7242_read_fbuf fndecl 3 48847 NULL
++container_width_dmm_48858_fields container_width dmm 0 48858 NULL
++end_io_target_type_48863_fields end_io target_type 0 48863 NULL
++pagefault_single_data_segment_fndecl_48864_fields pagefault_single_data_segment fndecl 4 48864 NULL
++num_desc_i40e_vsi_48872_fields num_desc i40e_vsi 0 48872 NULL
++log_mtts_per_seg_vardecl_48880_fields log_mtts_per_seg vardecl 0 48880 NULL
++skb_ensure_writable_fndecl_48882_fields skb_ensure_writable fndecl 2 48882 NULL
++diva_init_dma_map_fndecl_48883_fields diva_init_dma_map fndecl 3 48883 NULL nohasharray
++memblock_clear_hotplug_fndecl_48883_fields memblock_clear_hotplug fndecl 2-1 48883 &diva_init_dma_map_fndecl_48883_fields
++cl_in_max_entry_size_mvumi_hs_page1_48890_fields cl_in_max_entry_size mvumi_hs_page1 0 48890 NULL
++nr_buffers_drm_nouveau_gem_pushbuf_48902_fields nr_buffers drm_nouveau_gem_pushbuf 0 48902 NULL
++nr_addr_filters_pmu_48905_fields nr_addr_filters pmu 0 48905 NULL
++offset_scatterlist_48908_fields offset scatterlist 0 48908 NULL nohasharray
++max_devices_support_mvumi_hs_page1_48908_fields max_devices_support mvumi_hs_page1 0 48908 &offset_scatterlist_48908_fields
++ucNumEntries__StateArray_48910_fields ucNumEntries _StateArray 0 48910 NULL
++s_groups_count_ext2_sb_info_48915_fields s_groups_count ext2_sb_info 0 48915 NULL
++tailsz_cifs_readdata_48919_fields tailsz cifs_readdata 0 48919 NULL
++write_file_operations_48930_fields write file_operations 0 48930 NULL nohasharray
++rx_ring_count_ixgbevf_adapter_48930_fields rx_ring_count ixgbevf_adapter 0 48930 &write_file_operations_48930_fields
++iio_read_first_n_kfifo_fndecl_48933_fields iio_read_first_n_kfifo fndecl 2 48933 NULL
++emi26_writememory_fndecl_48935_fields emi26_writememory fndecl 4 48935 NULL
++w1_reply_len_fndecl_48943_fields w1_reply_len fndecl 0 48943 NULL
++start_mthca_resource_48948_fields start mthca_resource 0 48948 NULL nohasharray
++set_dma_reserve_fndecl_48948_fields set_dma_reserve fndecl 1 48948 &start_mthca_resource_48948_fields nohasharray
++get_eld_i915_audio_component_ops_48948_fields get_eld i915_audio_component_ops 0 48948 &set_dma_reserve_fndecl_48948_fields
++length_iwl_calib_res_notif_phy_db_48949_fields length iwl_calib_res_notif_phy_db 0 48949 NULL
++to_index_fndecl_48953_fields to_index fndecl 0 48953 NULL
++wptr_radeon_ring_48959_fields wptr radeon_ring 0 48959 NULL
++size_uv_systab_48965_fields size uv_systab 0 48965 NULL
++block_size_sm_ftl_48967_fields block_size sm_ftl 0 48967 NULL
++rx_fndecl_48971_fields rx fndecl 4 48971 NULL
++twl_i2c_write_fndecl_48976_fields twl_i2c_write fndecl 0 48976 NULL
++pkt_overhead_pktgen_dev_48989_fields pkt_overhead pktgen_dev 0 48989 NULL
++xt_socket_get_sock_v6_fndecl_48991_fields xt_socket_get_sock_v6 fndecl 3 48991 NULL
++pid_task_struct_49000_fields pid task_struct 0 49000 NULL nohasharray
++iov_iter_npages_fndecl_49000_fields iov_iter_npages fndecl 0-2 49000 &pid_task_struct_49000_fields
++sg_alloc_table_chained_fndecl_49001_fields sg_alloc_table_chained fndecl 2 49001 NULL
++rec_len_exofs_dir_entry_49002_fields rec_len exofs_dir_entry 0 49002 NULL
++size_mlx4_en_tx_ring_49005_fields size mlx4_en_tx_ring 0 49005 NULL
++mmio_addr_stm_data_49015_fields mmio_addr stm_data 0 49015 NULL
++compat_writev_fndecl_49017_fields compat_writev fndecl 3 49017 NULL
++bm_len_xfs_buf_map_49022_fields bm_len xfs_buf_map 0 49022 NULL
++size_vmw_otable_49032_fields size vmw_otable 0 49032 NULL
++dev_id_rfcomm_dev_req_49039_fields dev_id rfcomm_dev_req 0 49039 NULL
++reg_r_fndecl_49040_fields reg_r fndecl 0 49040 NULL
++dwMaxVideoFrameSize_uvc_streaming_control_49044_fields dwMaxVideoFrameSize uvc_streaming_control 0 49044 NULL
++max_port_per_lag_mlxsw_config_profile_49046_fields max_port_per_lag mlxsw_config_profile 0 49046 NULL
++devices_per_bus__MPT_ADAPTER_49051_fields devices_per_bus _MPT_ADAPTER 0 49051 NULL
++cxacru_cm_fndecl_49052_fields cxacru_cm fndecl 4 49052 NULL
++iguanair_send_fndecl_49054_fields iguanair_send fndecl 2 49054 NULL
++route_key_size_nf_afinfo_49055_fields route_key_size nf_afinfo 0 49055 NULL
++ide_pio_bytes_fndecl_49063_fields ide_pio_bytes fndecl 4 49063 NULL
++cm_size_tp_params_49065_fields cm_size tp_params 0 49065 NULL
++transport_mtu_vardecl_ntb_transport_c_49067_fields transport_mtu vardecl_ntb_transport.c 0 49067 NULL
++scan_nat_page_fndecl_49068_fields scan_nat_page fndecl 3 49068 NULL nohasharray
++do_writepage_fndecl_49068_fields do_writepage fndecl 2 49068 &scan_nat_page_fndecl_49068_fields
++ccid_hc_tx_obj_size_ccid_operations_49077_fields ccid_hc_tx_obj_size ccid_operations 0 49077 NULL
++max_ctrl_pkt_payload_len_nci_core_conn_create_rsp_49079_fields max_ctrl_pkt_payload_len nci_core_conn_create_rsp 0 49079 NULL
++tty_major_vardecl_hso_c_49084_fields tty_major vardecl_hso.c 0 49084 NULL
++optrom_region_size_qla_hw_data_49087_fields optrom_region_size qla_hw_data 0 49087 NULL
++bi_vcnt_bio_49090_fields bi_vcnt bio 0 49090 NULL nohasharray
++ocfs2_find_leaf_fndecl_49090_fields ocfs2_find_leaf fndecl 0 49090 &bi_vcnt_bio_49090_fields
++ocfs2_mv_xattr_bucket_cross_cluster_fndecl_49091_fields ocfs2_mv_xattr_bucket_cross_cluster fndecl 5-6 49091 NULL
++end_sector_dev_info_49096_fields end_sector dev_info 0 49096 NULL nohasharray
++misc_sbp_command_block_orb_49096_fields misc sbp_command_block_orb 0 49096 &end_sector_dev_info_49096_fields
++u132_hcd_interrupt_recv_fndecl_49098_fields u132_hcd_interrupt_recv fndecl 4 49098 NULL
++xdr_align_pages_fndecl_49102_fields xdr_align_pages fndecl 0-2 49102 NULL
++n_sz_rsa_key_49103_fields n_sz rsa_key 0 49103 NULL
++ri_super_root_nilfs_recovery_info_49105_fields ri_super_root nilfs_recovery_info 0 49105 NULL
++vmci_qpair_alloc_fndecl_49107_fields vmci_qpair_alloc fndecl 4-3 49107 NULL nohasharray
++qnx6_block_map_fndecl_49107_fields qnx6_block_map fndecl 0 49107 &vmci_qpair_alloc_fndecl_49107_fields
++mtd_ooblayout_find_region_fndecl_49110_fields mtd_ooblayout_find_region fndecl 2 49110 NULL
++max_mtu_nfp_net_49121_fields max_mtu nfp_net 0 49121 NULL
++btrfs_alloc_dummy_root_fndecl_49123_fields btrfs_alloc_dummy_root fndecl 2-3 49123 NULL
++m_ialloc_min_blks_xfs_mount_49129_fields m_ialloc_min_blks xfs_mount 0 49129 NULL
++mad_seg_size_ib_mad_recv_wc_49134_fields mad_seg_size ib_mad_recv_wc 0 49134 NULL
++neo_init_hw_fndecl_49135_fields neo_init_hw fndecl 0 49135 NULL
++snd_pcm_hw_param_min_fndecl_49139_fields snd_pcm_hw_param_min fndecl 4 49139 NULL
++batch_len_drm_i915_gem_execbuffer2_49145_fields batch_len drm_i915_gem_execbuffer2 0 49145 NULL
++max_dev_mdp_superblock_1_49148_fields max_dev mdp_superblock_1 0 49148 NULL
++ecryptfs_inode_newsize_ok_fndecl_49153_fields ecryptfs_inode_newsize_ok fndecl 2 49153 NULL
++tx_tr_cfv_info_49171_fields tx_tr cfv_info 0 49171 NULL
++addr_len_pnfs_ff_netaddr_49177_fields addr_len pnfs_ff_netaddr 0 49177 NULL
++page_size_nvme_ctrl_49190_fields page_size nvme_ctrl 0 49190 NULL
++len_fb_cmap_user_49195_fields len fb_cmap_user 0 49195 NULL
++fsl_edma_prep_dma_cyclic_fndecl_49197_fields fsl_edma_prep_dma_cyclic fndecl 2 49197 NULL nohasharray
++ielen_wps_status_t_49197_fields ielen wps_status_t 0 49197 &fsl_edma_prep_dma_cyclic_fndecl_49197_fields
++offset_page_chunk_49201_fields offset page_chunk 0 49201 NULL
++key_size_dh_49210_fields key_size dh 0 49210 NULL
++osst_read_fndecl_49214_fields osst_read fndecl 3 49214 NULL
++i_pos_low_fat_fid_49216_fields i_pos_low fat_fid 0 49216 NULL nohasharray
++nleft_ide_cmd_49216_fields nleft ide_cmd 0 49216 &i_pos_low_fat_fid_49216_fields
++offset_rq_map_data_49234_fields offset rq_map_data 0 49234 NULL
++ext_ramdisk_image_boot_params_49238_fields ext_ramdisk_image boot_params 0 49238 NULL
++mos7840_write_fndecl_49240_fields mos7840_write fndecl 4 49240 NULL
++persistent_ram_iomap_fndecl_49243_fields persistent_ram_iomap fndecl 2-1 49243 NULL
++ext2_fiemap_fndecl_49244_fields ext2_fiemap fndecl 4 49244 NULL
++dmpt_entry_sz_mlx4_dev_cap_49245_fields dmpt_entry_sz mlx4_dev_cap 0 49245 NULL
++get_user_pages_locked_fndecl_49246_fields get_user_pages_locked fndecl 1 49246 NULL nohasharray
++xfs_map_buffer_fndecl_49246_fields xfs_map_buffer fndecl 4 49246 &get_user_pages_locked_fndecl_49246_fields
++mppe_compress_fndecl_49248_fields mppe_compress fndecl 4 49248 NULL
++nfs_file_llseek_fndecl_49249_fields nfs_file_llseek fndecl 2 49249 NULL
++i40iw_create_cm_node_fndecl_49252_fields i40iw_create_cm_node fndecl 3 49252 NULL
++fifo_reserve_size_vmw_kms_dirty_49255_fields fifo_reserve_size vmw_kms_dirty 0 49255 NULL
++rdmarc_shift_mlx4_qp_table_49259_fields rdmarc_shift mlx4_qp_table 0 49259 NULL
++di_size_qnx4_inode_entry_49263_fields di_size qnx4_inode_entry 0 49263 NULL
++qat_uclo_map_obj_fndecl_49271_fields qat_uclo_map_obj fndecl 3 49271 NULL
++rate_floppy_struct_49273_fields rate floppy_struct 0 49273 NULL
++name_len_audit_names_49277_fields name_len audit_names 0 49277 NULL
++of_irq_parse_raw_fndecl_49280_fields of_irq_parse_raw fndecl 0 49280 NULL
++slub_min_order_vardecl_slub_c_49292_fields slub_min_order vardecl_slub.c 0 49292 NULL
++header_length_ipr_ucode_image_header_49294_fields header_length ipr_ucode_image_header 0 49294 NULL
++iomap_write_failed_fndecl_49298_fields iomap_write_failed fndecl 2-3 49298 NULL
++bTransferSegment_wa_xfer_result_49303_fields bTransferSegment wa_xfer_result 0 49303 NULL
++splice_direct_to_actor_fndecl_49310_fields splice_direct_to_actor fndecl 0 49310 NULL
++membase_avmcard_49314_fields membase avmcard 0 49314 NULL
++filternum_dmxdev_49322_fields filternum dmxdev 0 49322 NULL nohasharray
++via_cputemp_device_add_fndecl_49322_fields via_cputemp_device_add fndecl 1 49322 &filternum_dmxdev_49322_fields
++fwnet_incoming_packet_fndecl_49327_fields fwnet_incoming_packet fndecl 3 49327 NULL
++ocfs2_release_clusters_fndecl_49328_fields ocfs2_release_clusters fndecl 4 49328 NULL
++length_iwl_wipan_noa_data_49332_fields length iwl_wipan_noa_data 0 49332 NULL
++cmnd_res_ep_vub300_mmc_host_49334_fields cmnd_res_ep vub300_mmc_host 0 49334 NULL
++s3fwrn5_fw_enter_update_mode_fndecl_49342_fields s3fwrn5_fw_enter_update_mode fndecl 3-5 49342 NULL
++mute_bttv_49358_fields mute bttv 0 49358 NULL
++max_transfer_size_spi_master_49363_fields max_transfer_size spi_master 0 49363 NULL
++fsbcount_xfs_da_geometry_49380_fields fsbcount xfs_da_geometry 0 49380 NULL nohasharray
++x509_akid_note_serial_fndecl_49380_fields x509_akid_note_serial fndecl 5 49380 &fsbcount_xfs_da_geometry_49380_fields
++pe_data_len_ip_vs_conn_49384_fields pe_data_len ip_vs_conn 0 49384 NULL
++short_mark_sd_49388_fields short_mark sd 0 49388 NULL
++pci_iov_resource_size_fndecl_49389_fields pci_iov_resource_size fndecl 0 49389 NULL
++ecryptfs_read_lower_fndecl_49392_fields ecryptfs_read_lower fndecl 3 49392 NULL
++current_font_height_sisusb_usb_data_49394_fields current_font_height sisusb_usb_data 0 49394 NULL nohasharray
++usb_ftdi_elan_edset_empty_fndecl_49394_fields usb_ftdi_elan_edset_empty fndecl 0 49394 &current_font_height_sisusb_usb_data_49394_fields nohasharray
++send_cmd_iwl_trans_ops_49394_fields send_cmd iwl_trans_ops 0 49394 &usb_ftdi_elan_edset_empty_fndecl_49394_fields
++btrfs_delalloc_release_space_fndecl_49397_fields btrfs_delalloc_release_space fndecl 2-3 49397 NULL
++pmtu_rvt_qp_49401_fields pmtu rvt_qp 0 49401 NULL
++pinctrl_register_mappings_fndecl_49407_fields pinctrl_register_mappings fndecl 2 49407 NULL
++ss_next_nilfs_segment_summary_49410_fields ss_next nilfs_segment_summary 0 49410 NULL nohasharray
++pnp_register_port_resource_fndecl_49410_fields pnp_register_port_resource fndecl 6-3-5 49410 &ss_next_nilfs_segment_summary_49410_fields nohasharray
++next_bio_fndecl_49410_fields next_bio fndecl 2 49410 &pnp_register_port_resource_fndecl_49410_fields
++base_doorbell_index_nes_device_49415_fields base_doorbell_index nes_device 0 49415 NULL
++bio_chain_clone_range_fndecl_49420_fields bio_chain_clone_range fndecl 3 49420 NULL
++tipc_msg_build_fndecl_49424_fields tipc_msg_build fndecl 4-5 49424 NULL
++ds_out_channels_hdsp_49429_fields ds_out_channels hdsp 0 49429 NULL
++onenand_write_oob_fndecl_49431_fields onenand_write_oob fndecl 2 49431 NULL
++bytenr_tree_block_49432_fields bytenr tree_block 0 49432 NULL nohasharray
++fwnet_pd_new_fndecl_49432_fields fwnet_pd_new fndecl 4 49432 &bytenr_tree_block_49432_fields nohasharray
++set_run_fndecl_49432_fields set_run fndecl 2 49432 &fwnet_pd_new_fndecl_49432_fields
++nv_min_cwnd_vardecl_tcp_nv_c_49437_fields nv_min_cwnd vardecl_tcp_nv.c 0 49437 NULL
++perf_output_copy_fndecl_49448_fields perf_output_copy fndecl 3 49448 NULL
++global_irq_acpi_madt_interrupt_override_49451_fields global_irq acpi_madt_interrupt_override 0 49451 NULL
++dwc3_readl_fndecl_49455_fields dwc3_readl fndecl 0 49455 NULL nohasharray
++get_setup_data_total_num_fndecl_49455_fields get_setup_data_total_num fndecl 1 49455 &dwc3_readl_fndecl_49455_fields
++ch_count_srp_target_port_49465_fields ch_count srp_target_port 0 49465 NULL
++usb_tx_block_fndecl_49466_fields usb_tx_block fndecl 3 49466 NULL
++len_r6040_descriptor_49471_fields len r6040_descriptor 0 49471 NULL
++s_cblkno_ufs_sb_private_info_49472_fields s_cblkno ufs_sb_private_info 0 49472 NULL
++ks8995_read_fndecl_49475_fields ks8995_read fndecl 4 49475 NULL
++nf_nat_icmpv6_reply_translation_fndecl_49476_fields nf_nat_icmpv6_reply_translation fndecl 5 49476 NULL
++make_rx_response_fndecl_49477_fields make_rx_response fndecl 5-3-4 49477 NULL
++mc_mask_amdgpu_mc_49478_fields mc_mask amdgpu_mc 0 49478 NULL nohasharray
++rpc_max_payload_fndecl_49478_fields rpc_max_payload fndecl 0 49478 &mc_mask_amdgpu_mc_49478_fields
++iomap_write_begin_fndecl_49486_fields iomap_write_begin fndecl 2-3 49486 NULL
++i2c_readn_fndecl_49490_fields i2c_readn fndecl 4 49490 NULL
++xfs_file_llseek_fndecl_49492_fields xfs_file_llseek fndecl 2 49492 NULL nohasharray
++length_nvme_sgl_desc_49492_fields length nvme_sgl_desc 0 49492 &xfs_file_llseek_fndecl_49492_fields
++din_xfer_len_sg_io_v4_49498_fields din_xfer_len sg_io_v4 0 49498 NULL
++rd_size_uhid_create2_req_49499_fields rd_size uhid_create2_req 0 49499 NULL
++smb_send_fndecl_49500_fields smb_send fndecl 3 49500 NULL
++usCRTC_H_Total__ATOM_MODE_TIMING_49501_fields usCRTC_H_Total _ATOM_MODE_TIMING 0 49501 NULL
++__radix_tree_create_fndecl_49505_fields __radix_tree_create fndecl 0 49505 NULL
++intel_framebuffer_create_for_mode_fndecl_49508_fields intel_framebuffer_create_for_mode fndecl 4 49508 NULL nohasharray
++l2cap_create_iframe_pdu_fndecl_49508_fields l2cap_create_iframe_pdu fndecl 3 49508 &intel_framebuffer_create_for_mode_fndecl_49508_fields nohasharray
++__bnx2x_get_preset_regs_len_fndecl_49508_fields __bnx2x_get_preset_regs_len fndecl 0 49508 &l2cap_create_iframe_pdu_fndecl_49508_fields nohasharray
++add_tty_fndecl_49508_fields add_tty fndecl 1 49508 &__bnx2x_get_preset_regs_len_fndecl_49508_fields
++tx_blk_size_rsi_91x_sdiodev_49511_fields tx_blk_size rsi_91x_sdiodev 0 49511 NULL
++usbvision_write_reg_irq_fndecl_49516_fields usbvision_write_reg_irq fndecl 4 49516 NULL
++buf_size_sge_fl_49517_fields buf_size sge_fl 0 49517 NULL
++Zmin_hfc_multi_49520_fields Zmin hfc_multi 0 49520 NULL
++log_mtts_per_seg_vardecl_mthca_main_c_49524_fields log_mtts_per_seg vardecl_mthca_main.c 0 49524 NULL
++num_eps_bdc_49525_fields num_eps bdc 0 49525 NULL
++mtt_entry_sz_mlx4_caps_49531_fields mtt_entry_sz mlx4_caps 0 49531 NULL
++consume_bytes_snd_fw_async_midi_port_49542_fields consume_bytes snd_fw_async_midi_port 0 49542 NULL
++disk_offset_pnfs_block_dev_map_49546_fields disk_offset pnfs_block_dev_map 0 49546 NULL
++lpfc_debugfs_hbqinfo_data_fndecl_49551_fields lpfc_debugfs_hbqinfo_data fndecl 0 49551 NULL
++ioremap_wt_fndecl_49562_fields ioremap_wt fndecl 2-1 49562 NULL
++nrs_num_pols_ptlrpc_nrs_49564_fields nrs_num_pols ptlrpc_nrs 0 49564 NULL
++nilfs_mdt_delete_block_fndecl_49565_fields nilfs_mdt_delete_block fndecl 2 49565 NULL nohasharray
++vfs_readv_fndecl_49565_fields vfs_readv fndecl 3 49565 &nilfs_mdt_delete_block_fndecl_49565_fields
++max_cm_mtu_ipoib_cm_dev_priv_49566_fields max_cm_mtu ipoib_cm_dev_priv 0 49566 NULL
++xfs_insert_file_space_fndecl_49569_fields xfs_insert_file_space fndecl 2-3 49569 NULL
++snd_soc_dapm_new_pcm_fndecl_49572_fields snd_soc_dapm_new_pcm fndecl 3 49572 NULL
++ncp_request2_fndecl_49589_fields ncp_request2 fndecl 4 49589 NULL
++ssid_length_beacon_format_49591_fields ssid_length beacon_format 0 49591 NULL
++xfs_rtbuf_get_fndecl_49592_fields xfs_rtbuf_get fndecl 3-0 49592 NULL
++width_vim2m_q_data_49600_fields width vim2m_q_data 0 49600 NULL
++drm_display_info_set_bus_formats_fndecl_49607_fields drm_display_info_set_bus_formats fndecl 3 49607 NULL
++tot_num_rules_mlx5e_ethtool_steering_49612_fields tot_num_rules mlx5e_ethtool_steering 0 49612 NULL
++hsync_start_drm_display_mode_49613_fields hsync_start drm_display_mode 0 49613 NULL nohasharray
++ppm_get_cpu_entries_fndecl_49613_fields ppm_get_cpu_entries fndecl 0 49613 &hsync_start_drm_display_mode_49613_fields nohasharray
++start_drm_mm_node_49613_fields start drm_mm_node 0 49613 &ppm_get_cpu_entries_fndecl_49613_fields
++spare_bytes_per_page_nand_onfi_params_49617_fields spare_bytes_per_page nand_onfi_params 0 49617 NULL
++lengthExtendedAttr_extendedFileEntry_49618_fields lengthExtendedAttr extendedFileEntry 0 49618 NULL
++write_cmd_usb_fndecl_49619_fields write_cmd_usb fndecl 3 49619 NULL
++ieee80211_tdls_add_setup_cfm_ies_fndecl_49620_fields ieee80211_tdls_add_setup_cfm_ies fndecl 6 49620 NULL
++reg_read_range_fndecl_49623_fields reg_read_range fndecl 4-0 49623 NULL
++nn_nvme_id_ctrl_49625_fields nn nvme_id_ctrl 0 49625 NULL
++srsize_brcmf_chip_49639_fields srsize brcmf_chip 0 49639 NULL
++list_size_of_flash_49643_fields list_size of_flash 0 49643 NULL
++start_io_failure_record_49645_fields start io_failure_record 0 49645 NULL
++align_resource_constraint_49647_fields align resource_constraint 0 49647 NULL
++mlx4_alloc_icm_pages_fndecl_49658_fields mlx4_alloc_icm_pages fndecl 2 49658 NULL
++size_i915_ggtt_49666_fields size i915_ggtt 0 49666 NULL
++dwMaxPayloadTransferSize_uvc_streaming_control_49668_fields dwMaxPayloadTransferSize uvc_streaming_control 0 49668 NULL
++bytes_ubi_leb_change_req_49669_fields bytes ubi_leb_change_req 0 49669 NULL
++tipc_node_get_mtu_fndecl_49670_fields tipc_node_get_mtu fndecl 0 49670 NULL
++placement_offset_eth_fast_path_rx_reg_cqe_49676_fields placement_offset eth_fast_path_rx_reg_cqe 0 49676 NULL
++intel_gtt_map_memory_fndecl_49677_fields intel_gtt_map_memory fndecl 2 49677 NULL
++port_priv_size_team_mode_49682_fields port_priv_size team_mode 0 49682 NULL
++clk_core_get_rate_nolock_fndecl_49685_fields clk_core_get_rate_nolock fndecl 0 49685 NULL
++alt_name_store_fndecl_49688_fields alt_name_store fndecl 4 49688 NULL
++set_extent_bit_fndecl_49692_fields set_extent_bit fndecl 3-2 49692 NULL
++pnode_uv_gam_range_entry_49695_fields pnode uv_gam_range_entry 0 49695 NULL nohasharray
++slider_num_ad714x_platform_data_49695_fields slider_num ad714x_platform_data 0 49695 &pnode_uv_gam_range_entry_49695_fields
++s_segshift_logfs_super_49707_fields s_segshift logfs_super 0 49707 NULL
++end_resource_49712_fields end resource 0 49712 NULL
++fuse_readpages_fndecl_49714_fields fuse_readpages fndecl 4 49714 NULL
++xfs_iext_remove_direct_fndecl_49723_fields xfs_iext_remove_direct fndecl 3 49723 NULL
++IOCMaxChainSegmentSize_mpt3sas_facts_49724_fields IOCMaxChainSegmentSize mpt3sas_facts 0 49724 NULL
++sof_len_sd_49729_fields sof_len sd 0 49729 NULL
++num_uars_mthca_limits_49735_fields num_uars mthca_limits 0 49735 NULL
++pyra_sysfs_read_fndecl_49736_fields pyra_sysfs_read fndecl 6 49736 NULL
++wqe_size_ib_uverbs_post_recv_49738_fields wqe_size ib_uverbs_post_recv 0 49738 NULL
++xfs_bmap_split_extent_fndecl_49740_fields xfs_bmap_split_extent fndecl 2 49740 NULL
++udf_prealloc_blocks_fndecl_49747_fields udf_prealloc_blocks fndecl 0-5 49747 NULL
++hpfs_add_dirent_fndecl_49754_fields hpfs_add_dirent fndecl 3 49754 NULL
++provider_in_words_ib_uverbs_ex_cmd_hdr_49757_fields provider_in_words ib_uverbs_ex_cmd_hdr 0 49757 NULL
++ngroups_netlink_sock_49758_fields ngroups netlink_sock 0 49758 NULL
++match_size_compat_ebt_entry_mwt_49763_fields match_size compat_ebt_entry_mwt 0 49763 NULL
++nl80211_send_roamed_fndecl_49770_fields nl80211_send_roamed fndecl 5-7 49770 NULL
++cifs_sign_smbv_fndecl_49776_fields cifs_sign_smbv fndecl 2 49776 NULL
++sprom_size_ssb_bus_49781_fields sprom_size ssb_bus 0 49781 NULL
++page2_len_ses_device_49783_fields page2_len ses_device 0 49783 NULL
++seeks_shrinker_49793_fields seeks shrinker 0 49793 NULL
++outlen_mimd_49796_fields outlen mimd 0 49796 NULL
++substream_alloc_pages_fndecl_49800_fields substream_alloc_pages fndecl 3 49800 NULL
++n_mmc_ies_whc_49802_fields n_mmc_ies whc 0 49802 NULL
++ocfs2_zero_partial_clusters_fndecl_49803_fields ocfs2_zero_partial_clusters fndecl 2-3 49803 NULL
++max_fib_size_aac_dev_49804_fields max_fib_size aac_dev 0 49804 NULL
++num_uar_mthca_profile_49807_fields num_uar mthca_profile 0 49807 NULL
++__udf_add_aext_fndecl_49811_fields __udf_add_aext fndecl 4 49811 NULL
++fat_chain_add_fndecl_49812_fields fat_chain_add fndecl 2 49812 NULL
++fat_bits_msdos_sb_info_49817_fields fat_bits msdos_sb_info 0 49817 NULL
++reserved_fat_boot_sector_49818_fields reserved fat_boot_sector 0 49818 NULL
++nr_pages_flash_info_49822_fields nr_pages flash_info 0 49822 NULL
++elemsize_nft_set_ops_49830_fields elemsize nft_set_ops 0 49830 NULL
++wl12xx_cmd_build_probe_req_fndecl_49835_fields wl12xx_cmd_build_probe_req fndecl 10-8-6 49835 NULL
++fifosize_uart_port_49843_fields fifosize uart_port 0 49843 NULL
++gen9_get_stolen_size_fndecl_49846_fields gen9_get_stolen_size fndecl 0-1 49846 NULL
++read_endpoint_s2255_dev_49848_fields read_endpoint s2255_dev 0 49848 NULL
++scsi_send_eh_cmnd_fndecl_49849_fields scsi_send_eh_cmnd fndecl 5 49849 NULL
++plen_c4iw_ep_49856_fields plen c4iw_ep 0 49856 NULL nohasharray
++vol_cdev_write_fndecl_49856_fields vol_cdev_write fndecl 3 49856 &plen_c4iw_ep_49856_fields
++kempld_gpio_pincount_fndecl_49860_fields kempld_gpio_pincount fndecl 0 49860 NULL
++__kfifo_init_fndecl_49861_fields __kfifo_init fndecl 4 49861 NULL
++si_get_csb_size_fndecl_49864_fields si_get_csb_size fndecl 0 49864 NULL
++bucket_bits_cache_set_49869_fields bucket_bits cache_set 0 49869 NULL
++record_inode_for_nocow_fndecl_49872_fields record_inode_for_nocow fndecl 2 49872 NULL
++__i915_error_seek_fndecl_49882_fields __i915_error_seek fndecl 2 49882 NULL
++sg_alloc_table_fndecl_49895_fields sg_alloc_table fndecl 2-0 49895 NULL
++offset_drm_i915_gem_pwrite_49896_fields offset drm_i915_gem_pwrite 0 49896 NULL nohasharray
++iwl_mvm_create_skb_fndecl_49896_fields iwl_mvm_create_skb fndecl 4-3 49896 &offset_drm_i915_gem_pwrite_49896_fields
++max_desc_sz_mthca_dev_lim_49905_fields max_desc_sz mthca_dev_lim 0 49905 NULL
++block_descriptor_length_scsi_mode_data_49918_fields block_descriptor_length scsi_mode_data 0 49918 NULL
++cx18_prepare_buffer_fndecl_49942_fields cx18_prepare_buffer fndecl 6-5 49942 NULL
++repair_io_failure_fndecl_49943_fields repair_io_failure fndecl 6-3 49943 NULL
++internal_ewma_pkt_len_49944_fields internal ewma_pkt_len 0 49944 NULL
++rcvcnt_elsa_hw_49949_fields rcvcnt elsa_hw 0 49949 NULL
++segsize_rem_dn_scp_49951_fields segsize_rem dn_scp 0 49951 NULL
++smbus_xfer_i2c_algorithm_49954_fields smbus_xfer i2c_algorithm 0 49954 NULL
++len_lmc_xilinx_control_49960_fields len lmc_xilinx_control 0 49960 NULL
++xfs_iread_extents_fndecl_49965_fields xfs_iread_extents fndecl 0 49965 NULL
++afs_fs_store_data_fndecl_49975_fields afs_fs_store_data fndecl 5-6 49975 NULL
++dig_in_nid_hda_gen_spec_49979_fields dig_in_nid hda_gen_spec 0 49979 NULL
++subtract_range_fndecl_49980_fields subtract_range fndecl 3-4 49980 NULL nohasharray
++tty_write_room_fndecl_49980_fields tty_write_room fndecl 0 49980 &subtract_range_fndecl_49980_fields
++__radix_tree_insert_fndecl_49981_fields __radix_tree_insert fndecl 0 49981 NULL
++__mms114_read_reg_fndecl_49983_fields __mms114_read_reg fndecl 3 49983 NULL
++eqc_entry_sz_mthca_dev_lim_49984_fields eqc_entry_sz mthca_dev_lim 0 49984 NULL
++pgbase_nfs3_readlinkargs_49993_fields pgbase nfs3_readlinkargs 0 49993 NULL
++leafblk_xfs_da_geometry_49997_fields leafblk xfs_da_geometry 0 49997 NULL
++batadv_check_unicast_ttvn_fndecl_49999_fields batadv_check_unicast_ttvn fndecl 3 49999 NULL nohasharray
++make_checksum_fndecl_49999_fields make_checksum fndecl 3-5 49999 &batadv_check_unicast_ttvn_fndecl_49999_fields
++block_isofs_iget5_callback_data_50000_fields block isofs_iget5_callback_data 0 50000 NULL
++vbi_v_start_0_saa7134_tvnorm_50002_fields vbi_v_start_0 saa7134_tvnorm 0 50002 NULL
++delete_object_part_fndecl_50007_fields delete_object_part fndecl 2-1 50007 NULL
++ip6_err_gen_icmpv6_unreach_fndecl_50009_fields ip6_err_gen_icmpv6_unreach fndecl 2 50009 NULL
++tcm_qla2xxx_handle_cmd_fndecl_50016_fields tcm_qla2xxx_handle_cmd fndecl 4 50016 NULL nohasharray
++nci_core_cmd_fndecl_50016_fields nci_core_cmd fndecl 3 50016 &tcm_qla2xxx_handle_cmd_fndecl_50016_fields
++bi_size_bvec_iter_50026_fields bi_size bvec_iter 0 50026 NULL nohasharray
++bl_alloc_init_bio_fndecl_50026_fields bl_alloc_init_bio fndecl 3-1 50026 &bi_size_bvec_iter_50026_fields
++snd_oss_kernel_minor_fndecl_50028_fields snd_oss_kernel_minor fndecl 0 50028 NULL
++length_fotg210_qtd_50029_fields length fotg210_qtd 0 50029 NULL
++BlockMultiplierBits_INFTLMediaHeader_50032_fields BlockMultiplierBits INFTLMediaHeader 0 50032 NULL
++depth_zoran_format_50033_fields depth zoran_format 0 50033 NULL
++f_dac_hackrf_dev_50035_fields f_dac hackrf_dev 0 50035 NULL
++qed_rd_fndecl_50037_fields qed_rd fndecl 0 50037 NULL
++pwc_vidioc_fill_fmt_fndecl_50048_fields pwc_vidioc_fill_fmt fndecl 2-3 50048 NULL
++len_nft_userdata_50052_fields len nft_userdata 0 50052 NULL
++skge_rx_get_fndecl_50053_fields skge_rx_get fndecl 3 50053 NULL
++num_crtc_amdgpu_mode_info_50055_fields num_crtc amdgpu_mode_info 0 50055 NULL
++lba_to_map_index_fndecl_50071_fields lba_to_map_index fndecl 0-1 50071 NULL
++sem_nsems_sem_array_50085_fields sem_nsems sem_array 0 50085 NULL nohasharray
++sch56xx_find_fndecl_50085_fields sch56xx_find fndecl 0 50085 &sem_nsems_sem_array_50085_fields
++total_len_splice_desc_50112_fields total_len splice_desc 0 50112 NULL
++fst_rx_dma_complete_fndecl_50118_fields fst_rx_dma_complete fndecl 3 50118 NULL
++__cfg80211_roamed_fndecl_50127_fields __cfg80211_roamed fndecl 4-6 50127 NULL
++get_current_nat_page_fndecl_50130_fields get_current_nat_page fndecl 2 50130 NULL
++i_files_ceph_inode_info_50132_fields i_files ceph_inode_info 0 50132 NULL
++num_entries_ip6t_replace_50138_fields num_entries ip6t_replace 0 50138 NULL
++cutlen_ovs_skb_cb_50141_fields cutlen ovs_skb_cb 0 50141 NULL
++usb_tx_block_fndecl_50144_fields usb_tx_block fndecl 3 50144 NULL
++vendpoint_pwc_device_50145_fields vendpoint pwc_device 0 50145 NULL
++htotal_drm_display_mode_50148_fields htotal drm_display_mode 0 50148 NULL
++idr_get_empty_slot_fndecl_50161_fields idr_get_empty_slot fndecl 0 50161 NULL
++ext4_mark_inode_dirty_fndecl_50162_fields ext4_mark_inode_dirty fndecl 0 50162 NULL
++fops_read_fndecl_50163_fields fops_read fndecl 3 50163 NULL nohasharray
++length_ib_ip_iocb_rsp_50163_fields length ib_ip_iocb_rsp 0 50163 &fops_read_fndecl_50163_fields
++next_burst_len_iscsi_cmd_50168_fields next_burst_len iscsi_cmd 0 50168 NULL
++rd_buf_size_xilly_channel_50171_fields rd_buf_size xilly_channel 0 50171 NULL
++hdr_len_atm_flow_data_50178_fields hdr_len atm_flow_data 0 50178 NULL
++ubi_more_update_data_fndecl_50182_fields ubi_more_update_data fndecl 4 50182 NULL
++__isofs_iget_fndecl_50194_fields __isofs_iget fndecl 2 50194 NULL
++amdgpu_sched_hw_submission_vardecl_50202_fields amdgpu_sched_hw_submission vardecl 0 50202 NULL
++gbufsize_vardecl_meye_c_50205_fields gbufsize vardecl_meye.c 0 50205 NULL
++length_dfw_binrec_50222_fields length dfw_binrec 0 50222 NULL
++pin_pci_dev_50231_fields pin pci_dev 0 50231 NULL
++qla4_82xx_pci_mem_read_direct_fndecl_50235_fields qla4_82xx_pci_mem_read_direct fndecl 2 50235 NULL
++efi_memmap_size_efi_info_50236_fields efi_memmap_size efi_info 0 50236 NULL
++r128_compat_ioctl_fndecl_50241_fields r128_compat_ioctl fndecl 2 50241 NULL
++i915_error_state_read_fndecl_50245_fields i915_error_state_read fndecl 3 50245 NULL
++fnic_trace_max_pages_vardecl_50246_fields fnic_trace_max_pages vardecl 0 50246 NULL
++h_tot_disp_crtc_50258_fields h_tot_disp crtc 0 50258 NULL
++len_mrp_attr_50262_fields len mrp_attr 0 50262 NULL
++bLength_usb_ss_ep_comp_descriptor_50270_fields bLength usb_ss_ep_comp_descriptor 0 50270 NULL nohasharray
++end_range_50270_fields end range 0 50270 &bLength_usb_ss_ep_comp_descriptor_50270_fields
++vframes_pwc_device_50272_fields vframes pwc_device 0 50272 NULL
++curr_resync_completed_mddev_50273_fields curr_resync_completed mddev 0 50273 NULL
++count_defcmd_set_50274_fields count defcmd_set 0 50274 NULL
++phys_amd76xrom_window_50277_fields phys amd76xrom_window 0 50277 NULL
++ath6kl_wmi_set_appie_cmd_fndecl_50289_fields ath6kl_wmi_set_appie_cmd fndecl 5-2 50289 NULL
++mwifiex_append_rsn_ie_wpa_wpa2_fndecl_50296_fields mwifiex_append_rsn_ie_wpa_wpa2 fndecl 0 50296 NULL nohasharray
++gpioled_count_f30_data_50296_fields gpioled_count f30_data 0 50296 &mwifiex_append_rsn_ie_wpa_wpa2_fndecl_50296_fields
++insert_reserved_file_extent_fndecl_50316_fields insert_reserved_file_extent fndecl 6-3-7 50316 NULL
++__cfg80211_connect_result_fndecl_50317_fields __cfg80211_connect_result fndecl 4-6 50317 NULL
++scif_rma_copy_fndecl_50320_fields scif_rma_copy fndecl 2-5-4-3 50320 NULL
++rbytes_ceph_mds_reply_inode_50321_fields rbytes ceph_mds_reply_inode 0 50321 NULL
++VST_kyrofb_info_50324_fields VST kyrofb_info 0 50324 NULL
++level_guest_walker64_50325_fields level guest_walker64 0 50325 NULL
++ucNumEntries__ATOM_PPLIB_CAC_Leakage_Table_50326_fields ucNumEntries _ATOM_PPLIB_CAC_Leakage_Table 0 50326 NULL
++pos_r5l_recovery_ctx_50328_fields pos r5l_recovery_ctx 0 50328 NULL
++size_nand_ecc_ctrl_50335_fields size nand_ecc_ctrl 0 50335 NULL
++aim_read_fndecl_50336_fields aim_read fndecl 3 50336 NULL
++__copy_from_user_nocache_fndecl_50340_fields __copy_from_user_nocache fndecl 0 50340 NULL
++nextindex_xtheader_50354_fields nextindex xtheader 0 50354 NULL
++wimax_msg_alloc_fndecl_50364_fields wimax_msg_alloc fndecl 4 50364 NULL
++__send_to_port_fndecl_50377_fields __send_to_port fndecl 3 50377 NULL
++table_size_amdgpu_gart_50380_fields table_size amdgpu_gart 0 50380 NULL
++num_tc_qede_dev_50384_fields num_tc qede_dev 0 50384 NULL
++NumberOfReferrals_smb_com_transaction_get_dfs_refer_rsp_50387_fields NumberOfReferrals smb_com_transaction_get_dfs_refer_rsp 0 50387 NULL
++max_write_len_cftype_50399_fields max_write_len cftype 0 50399 NULL
++ocfs2_xattr_user_set_fndecl_50407_fields ocfs2_xattr_user_set fndecl 6 50407 NULL
++init_urbs_fndecl_50408_fields init_urbs fndecl 2-4-5 50408 NULL
++sgx_offset_psb_ops_50417_fields sgx_offset psb_ops 0 50417 NULL
++length_acpi_srat_mem_affinity_50419_fields length acpi_srat_mem_affinity 0 50419 NULL
++__initramfs_size_vardecl_50420_fields __initramfs_size vardecl 0 50420 NULL nohasharray
++jffs2_scan_xattr_node_fndecl_50420_fields jffs2_scan_xattr_node fndecl 4 50420 &__initramfs_size_vardecl_50420_fields
++sd_max_rg_data_gfs2_sbd_50430_fields sd_max_rg_data gfs2_sbd 0 50430 NULL
++__vcc_connect_fndecl_50431_fields __vcc_connect fndecl 4-3 50431 NULL
++nilfs_gccache_submit_read_data_fndecl_50434_fields nilfs_gccache_submit_read_data fndecl 3-4 50434 NULL
++nr_phys_segments_request_50449_fields nr_phys_segments request 0 50449 NULL nohasharray
++nfsd4_encode_fattr_to_buf_fndecl_50449_fields nfsd4_encode_fattr_to_buf fndecl 2 50449 &nr_phys_segments_request_50449_fields
++extra_tx_headroom_ieee802154_hw_50457_fields extra_tx_headroom ieee802154_hw 0 50457 NULL
++fec_read_parity_fndecl_50461_fields fec_read_parity fndecl 2-3 50461 NULL
++iscsi_iolen_cxgb4_lld_info_50467_fields iscsi_iolen cxgb4_lld_info 0 50467 NULL
++vmw_cmdbuf_reserve_cur_fndecl_50468_fields vmw_cmdbuf_reserve_cur fndecl 2 50468 NULL
++__ath6kl_wmi_send_mgmt_cmd_fndecl_50472_fields __ath6kl_wmi_send_mgmt_cmd fndecl 2 50472 NULL
++paylen_rxe_pkt_info_50479_fields paylen rxe_pkt_info 0 50479 NULL
++len_fuse_ioctl_iovec_50481_fields len fuse_ioctl_iovec 0 50481 NULL
++snd_sbmixer_add_ctl_fndecl_50491_fields snd_sbmixer_add_ctl fndecl 5 50491 NULL
++max_pages_nilfs_write_info_50494_fields max_pages nilfs_write_info 0 50494 NULL
++udf_new_block_fndecl_50500_fields udf_new_block fndecl 0 50500 NULL
++bio_clone_range_fndecl_50502_fields bio_clone_range fndecl 2-3 50502 NULL
++mwifiex_read_data_sync_fndecl_50504_fields mwifiex_read_data_sync fndecl 3 50504 NULL
++readahead_tree_block_fndecl_50505_fields readahead_tree_block fndecl 2 50505 NULL
++i2c_hid_output_report_fndecl_50508_fields i2c_hid_output_report fndecl 3 50508 NULL
++t4vf_pktgl_to_skb_fndecl_50510_fields t4vf_pktgl_to_skb fndecl 3 50510 NULL
++usb_maxpacket_fndecl_50514_fields usb_maxpacket fndecl 0 50514 NULL nohasharray
++adfs_fplus_read_fndecl_50514_fields adfs_fplus_read fndecl 2 50514 &usb_maxpacket_fndecl_50514_fields
++len_nfs3_mkdirargs_50515_fields len nfs3_mkdirargs 0 50515 NULL
++nframes_cdrom_read_audio_50517_fields nframes cdrom_read_audio 0 50517 NULL nohasharray
++__alt_name_store_fndecl_50517_fields __alt_name_store fndecl 3 50517 &nframes_cdrom_read_audio_50517_fields
++ohci_urb_dequeue_fndecl_50529_fields ohci_urb_dequeue fndecl 3 50529 NULL
++rtmax_nfs_fsinfo_50537_fields rtmax nfs_fsinfo 0 50537 NULL nohasharray
++dccpd_seq_dccp_skb_cb_50537_fields dccpd_seq dccp_skb_cb 0 50537 &rtmax_nfs_fsinfo_50537_fields
++ext4_xattr_trusted_set_fndecl_50538_fields ext4_xattr_trusted_set fndecl 6 50538 NULL
++spi_rd8_fndecl_50555_fields spi_rd8 fndecl 0 50555 NULL
++frag_threshold_wiphy_50556_fields frag_threshold wiphy 0 50556 NULL
++__blkdev_issue_zeroout_fndecl_50559_fields __blkdev_issue_zeroout fndecl 3-0-2 50559 NULL
++gen_pool_create_fndecl_50571_fields gen_pool_create fndecl 1 50571 NULL
++img_y_zoran_jpg_settings_50573_fields img_y zoran_jpg_settings 0 50573 NULL nohasharray
++W6692_empty_fifo_fndecl_50573_fields W6692_empty_fifo fndecl 2 50573 &img_y_zoran_jpg_settings_50573_fields
++hdr_len_ib_mad_send_buf_50577_fields hdr_len ib_mad_send_buf 0 50577 NULL nohasharray
++_osd_req_alist_size_fndecl_50577_fields _osd_req_alist_size fndecl 0 50577 &hdr_len_ib_mad_send_buf_50577_fields
++xfs_attr_calc_size_fndecl_50579_fields xfs_attr_calc_size fndecl 0 50579 NULL
++length_fuse_page_desc_50581_fields length fuse_page_desc 0 50581 NULL
++kcm_tcp_recv_fndecl_50586_fields kcm_tcp_recv fndecl 4-3 50586 NULL
++off2_xad_50592_fields off2 xad 0 50592 NULL
++count_ORANGEFS_dev_map_desc_50596_fields count ORANGEFS_dev_map_desc 0 50596 NULL
++intel_gtt_total_entries_fndecl_50599_fields intel_gtt_total_entries fndecl 0 50599 NULL
++__i915_gem_userptr_set_pages_fndecl_50600_fields __i915_gem_userptr_set_pages fndecl 3 50600 NULL
++ipoib_max_conn_qp_vardecl_50615_fields ipoib_max_conn_qp vardecl 0 50615 NULL
++len_fuse_notify_inval_inode_out_50619_fields len fuse_notify_inval_inode_out 0 50619 NULL nohasharray
++dle_count__isdn_audio_data_50619_fields dle_count _isdn_audio_data 0 50619 &len_fuse_notify_inval_inode_out_50619_fields
++zr364xx_fillbuff_fndecl_50623_fields zr364xx_fillbuff fndecl 3 50623 NULL nohasharray
++cb_mirror_cnt_exofs_dt_data_map_50623_fields cb_mirror_cnt exofs_dt_data_map 0 50623 &zr364xx_fillbuff_fndecl_50623_fields
++phys_port_cnt_ib_device_50625_fields phys_port_cnt ib_device 0 50625 NULL
++pglen_nfs3_readlinkargs_50630_fields pglen nfs3_readlinkargs 0 50630 NULL nohasharray
++data_len_pmcraid_hcam_hdr_50630_fields data_len pmcraid_hcam_hdr 0 50630 &pglen_nfs3_readlinkargs_50630_fields
++l2tp_ip6_recvmsg_fndecl_50633_fields l2tp_ip6_recvmsg fndecl 3 50633 NULL
++ircomm_tty_write_fndecl_50642_fields ircomm_tty_write fndecl 3 50642 NULL
++num_regs_soc_bytes_50648_fields num_regs soc_bytes 0 50648 NULL
++usb_hcd_giveback_urb_fndecl_50649_fields usb_hcd_giveback_urb fndecl 3 50649 NULL
++pvid_net_bridge_vlan_group_50651_fields pvid net_bridge_vlan_group 0 50651 NULL
++recalc_rate_clk_ops_50655_fields recalc_rate clk_ops 0 50655 NULL
++io_size_tulip_chip_table_50656_fields io_size tulip_chip_table 0 50656 NULL
++f2fs_replace_block_fndecl_50663_fields f2fs_replace_block fndecl 4 50663 NULL
++ucNumEntries__ATOM_Tonga_SCLK_Dependency_Table_50666_fields ucNumEntries _ATOM_Tonga_SCLK_Dependency_Table 0 50666 NULL
++i915_gem_alloc_context_obj_fndecl_50671_fields i915_gem_alloc_context_obj fndecl 2 50671 NULL
++nclips_bttv_overlay_50673_fields nclips bttv_overlay 0 50673 NULL
++dig_in_ca0132_spec_50677_fields dig_in ca0132_spec 0 50677 NULL
++size_snd_util_memblk_50679_fields size snd_util_memblk 0 50679 NULL nohasharray
++pci_iomap_wc_fndecl_50679_fields pci_iomap_wc fndecl 3 50679 &size_snd_util_memblk_50679_fields nohasharray
++__kernfs_create_file_fndecl_50679_fields __kernfs_create_file fndecl 4 50679 &pci_iomap_wc_fndecl_50679_fields
++count_dm_io_region_50683_fields count dm_io_region 0 50683 NULL
++sr_offset_nfs42_seek_res_50684_fields sr_offset nfs42_seek_res 0 50684 NULL
++generic_permission_fndecl_50685_fields generic_permission fndecl 0 50685 NULL
++rxkad_secure_packet_encrypt_fndecl_50687_fields rxkad_secure_packet_encrypt fndecl 3 50687 NULL
++dm_bm_read_try_lock_fndecl_50688_fields dm_bm_read_try_lock fndecl 2 50688 NULL
++back_xfs_da3_icnode_hdr_50715_fields back xfs_da3_icnode_hdr 0 50715 NULL
++sc18is602_wait_ready_fndecl_50717_fields sc18is602_wait_ready fndecl 0 50717 NULL
++num_lbufq_entries_ql3_adapter_50721_fields num_lbufq_entries ql3_adapter 0 50721 NULL nohasharray
++ibnl_put_msg_fndecl_50721_fields ibnl_put_msg fndecl 4 50721 &num_lbufq_entries_ql3_adapter_50721_fields
++mpdu_header_off_wcn36xx_pdu_50723_fields mpdu_header_off wcn36xx_pdu 0 50723 NULL
++max_table_count_acpi_table_list_50733_fields max_table_count acpi_table_list 0 50733 NULL
++max_mr_size_ib_device_attr_50735_fields max_mr_size ib_device_attr 0 50735 NULL nohasharray
++sector_size_blkfront_info_50735_fields sector_size blkfront_info 0 50735 &max_mr_size_ib_device_attr_50735_fields
++data_size_usbtouch_usb_50738_fields data_size usbtouch_usb 0 50738 NULL
++MaximumDataTransferSizeInBlocks_DAC960_V2_ControllerInfo_50742_fields MaximumDataTransferSizeInBlocks DAC960_V2_ControllerInfo 0 50742 NULL nohasharray
++rx_count_st_data_s_50742_fields rx_count st_data_s 0 50742 &MaximumDataTransferSizeInBlocks_DAC960_V2_ControllerInfo_50742_fields
++opt_flen_ipv6_txoptions_50747_fields opt_flen ipv6_txoptions 0 50747 NULL
++nicvf_change_mtu_fndecl_50748_fields nicvf_change_mtu fndecl 2 50748 NULL
++i_dataoffset_romfs_inode_info_50755_fields i_dataoffset romfs_inode_info 0 50755 NULL
++root_len_ubifs_mst_node_50757_fields root_len ubifs_mst_node 0 50757 NULL
++cluster_bits_msdos_sb_info_50763_fields cluster_bits msdos_sb_info 0 50763 NULL
++usb_hcd_map_urb_for_dma_fndecl_50765_fields usb_hcd_map_urb_for_dma fndecl 0 50765 NULL
++cifs_readpages_read_into_pages_fndecl_50770_fields cifs_readpages_read_into_pages fndecl 3 50770 NULL
++hpfs_get_sector_fndecl_50776_fields hpfs_get_sector fndecl 2 50776 NULL
++vmap_fndecl_50778_fields vmap fndecl 2 50778 NULL
++cmd_size_blk_mq_tag_set_50782_fields cmd_size blk_mq_tag_set 0 50782 NULL
++readdir_nfs_rpc_ops_50783_fields readdir nfs_rpc_ops 0 50783 NULL
++remove_pmkid_fndecl_50793_fields remove_pmkid fndecl 4 50793 NULL
++len_rfd_50801_fields len rfd 0 50801 NULL
++argslen_svc_deferred_req_50807_fields argslen svc_deferred_req 0 50807 NULL nohasharray
++cmdQueueSize_sis_video_info_50807_fields cmdQueueSize sis_video_info 0 50807 &argslen_svc_deferred_req_50807_fields
++hpfs_map_dnode_fndecl_50813_fields hpfs_map_dnode fndecl 2 50813 NULL
++clkrc_ov7670_info_50815_fields clkrc ov7670_info 0 50815 NULL
++cdce925_regmap_i2c_read_fndecl_50819_fields cdce925_regmap_i2c_read fndecl 5 50819 NULL
++rq_nvec_smb_rqst_50820_fields rq_nvec smb_rqst 0 50820 NULL
++xdr_read_pages_fndecl_50824_fields xdr_read_pages fndecl 2 50824 NULL nohasharray
++bcast_ring_order_vardecl_main_c_50824_fields bcast_ring_order vardecl_main.c 0 50824 &xdr_read_pages_fndecl_50824_fields
++t_tinc_data_rem_rds_tcp_connection_50828_fields t_tinc_data_rem rds_tcp_connection 0 50828 NULL
++bssid_info_count_ndis_80211_pmkid_50829_fields bssid_info_count ndis_80211_pmkid 0 50829 NULL
++filelayout_get_dserver_offset_fndecl_50833_fields filelayout_get_dserver_offset fndecl 0-2 50833 NULL
++m_rsumlevels_xfs_mount_50843_fields m_rsumlevels xfs_mount 0 50843 NULL
++_brk_end_vardecl_50849_fields _brk_end vardecl 0 50849 NULL
++journal_read_transaction_fndecl_50853_fields journal_read_transaction fndecl 2 50853 NULL
++x2_drm_clip_rect_50854_fields x2 drm_clip_rect 0 50854 NULL
++fm10k_read_pci_cfg_word_fndecl_50857_fields fm10k_read_pci_cfg_word fndecl 0 50857 NULL
++dat_offset_brcmf_sdio_hdrinfo_50859_fields dat_offset brcmf_sdio_hdrinfo 0 50859 NULL
++rrpc_l2p_update_fndecl_50868_fields rrpc_l2p_update fndecl 1 50868 NULL
++alg_key_len_xfrm_algo_auth_50871_fields alg_key_len xfrm_algo_auth 0 50871 NULL
++mtu_adj_ipvl_dev_50874_fields mtu_adj ipvl_dev 0 50874 NULL
++collapse_huge_page_fndecl_50875_fields collapse_huge_page fndecl 2 50875 NULL
++max_ceqs_i40iw_hmc_fpm_misc_50878_fields max_ceqs i40iw_hmc_fpm_misc 0 50878 NULL
++qib_read_kreg64_fndecl_50881_fields qib_read_kreg64 fndecl 0 50881 NULL
++get_ramdisk_image_fndecl_50888_fields get_ramdisk_image fndecl 0 50888 NULL
++size_t4_sq_50890_fields size t4_sq 0 50890 NULL
++gpu_offset_ttm_mem_type_manager_50894_fields gpu_offset ttm_mem_type_manager 0 50894 NULL
++nvkm_vm_create_fndecl_50895_fields nvkm_vm_create fndecl 3-2 50895 NULL
++netlbl_catmap_walkrng_fndecl_50910_fields netlbl_catmap_walkrng fndecl 2-0 50910 NULL
++exofs_read_kern_fndecl_50914_fields exofs_read_kern fndecl 6 50914 NULL
++vnet_hdr_sz_tun_struct_50916_fields vnet_hdr_sz tun_struct 0 50916 NULL
++raid1_sync_request_fndecl_50917_fields raid1_sync_request fndecl 2 50917 NULL
++num_chunks_drm_radeon_cs_50925_fields num_chunks drm_radeon_cs 0 50925 NULL
++__spi_async_fndecl_50927_fields __spi_async fndecl 0 50927 NULL
++j_start_reiserfs_journal_50930_fields j_start reiserfs_journal 0 50930 NULL
++ssidLen_BSSListRid_50931_fields ssidLen BSSListRid 0 50931 NULL
++efs_map_block_fndecl_50932_fields efs_map_block fndecl 0-2 50932 NULL
++sge_pktshift_cxgb4_lld_info_50935_fields sge_pktshift cxgb4_lld_info 0 50935 NULL
++send_reply_fndecl_50941_fields send_reply fndecl 6 50941 NULL
++__mnt_want_write_file_fndecl_50942_fields __mnt_want_write_file fndecl 0 50942 NULL
++ubi_start_update_fndecl_50948_fields ubi_start_update fndecl 3 50948 NULL
++sync_key_len_pvr2_ioread_50952_fields sync_key_len pvr2_ioread 0 50952 NULL
++iser_prepare_write_cmd_fndecl_50953_fields iser_prepare_write_cmd fndecl 2 50953 NULL
++reg_list_size_radeon_rlc_50955_fields reg_list_size radeon_rlc 0 50955 NULL
++alloc_agpphysmem_i8xx_fndecl_50960_fields alloc_agpphysmem_i8xx fndecl 1 50960 NULL
++gamma_sd_gl860_50970_fields gamma sd_gl860 0 50970 NULL
++irq_ssb_device_50977_fields irq ssb_device 0 50977 NULL
++seq_start_offset_iscsi_cmd_50983_fields seq_start_offset iscsi_cmd 0 50983 NULL
++first_burst_len_iscsi_cmd_50987_fields first_burst_len iscsi_cmd 0 50987 NULL
++do_get_mempolicy_fndecl_50990_fields do_get_mempolicy fndecl 3 50990 NULL
++intel_tile_dims_fndecl_50992_fields intel_tile_dims fndecl 5 50992 NULL
++pa_mic_mw_51003_fields pa mic_mw 0 51003 NULL nohasharray
++cb_break_tail_afs_server_51003_fields cb_break_tail afs_server 0 51003 &pa_mic_mw_51003_fields
++resize_size_resize_parms_51005_fields resize_size resize_parms 0 51005 NULL
++soft_pp_table_size_pp_hwmgr_51014_fields soft_pp_table_size pp_hwmgr 0 51014 NULL
++room_ceph_pagelist_51016_fields room ceph_pagelist 0 51016 NULL
++num_of_queues_il_cfg_51023_fields num_of_queues il_cfg 0 51023 NULL
++img_sram_size_fw_hdr_51027_fields img_sram_size fw_hdr 0 51027 NULL
++xfs_flush_unmap_range_fndecl_51039_fields xfs_flush_unmap_range fndecl 2-3 51039 NULL
++find_free_ioapic_entry_fndecl_51042_fields find_free_ioapic_entry fndecl 0 51042 NULL
++setattr_inode_operations_51054_fields setattr inode_operations 0 51054 NULL
++vfs_truncate_fndecl_51056_fields vfs_truncate fndecl 2 51056 NULL
++romfs_dev_strnlen_fndecl_51058_fields romfs_dev_strnlen fndecl 2-3-0 51058 NULL
++index_vardecl_atiixp_modem_c_51061_fields index vardecl_atiixp_modem.c 0 51061 NULL
++crtc_vtotal_drm_display_mode_51070_fields crtc_vtotal drm_display_mode 0 51070 NULL
++fbmem_len_viafb_dev_51071_fields fbmem_len viafb_dev 0 51071 NULL
++i40iw_config_fpm_values_fndecl_51081_fields i40iw_config_fpm_values fndecl 2 51081 NULL
++size_p9_wstat_51083_fields size p9_wstat 0 51083 NULL
++td_end_whc_qset_51089_fields td_end whc_qset 0 51089 NULL nohasharray
++sr_write_cmd_fndecl_51089_fields sr_write_cmd fndecl 5 51089 &td_end_whc_qset_51089_fields
++order_mmc_test_pages_51098_fields order mmc_test_pages 0 51098 NULL
++namelen_hpfs_dirent_51099_fields namelen hpfs_dirent 0 51099 NULL
++ocfs2_file_llseek_fndecl_51102_fields ocfs2_file_llseek fndecl 2 51102 NULL
++memblock_virt_alloc_internal_fndecl_51107_fields memblock_virt_alloc_internal fndecl 2-3-4 51107 NULL nohasharray
++bu_blocks_ocfs2_xattr_bucket_51107_fields bu_blocks ocfs2_xattr_bucket 0 51107 &memblock_virt_alloc_internal_fndecl_51107_fields
++msb_read_page_fndecl_51110_fields msb_read_page fndecl 6-2 51110 NULL
++elog_size_vardecl_acpi_extlog_c_51112_fields elog_size vardecl_acpi_extlog.c 0 51112 NULL
++fbmem_free_viafb_par_51115_fields fbmem_free viafb_par 0 51115 NULL
++len_garp_attr_hdr_51119_fields len garp_attr_hdr 0 51119 NULL
++ls_num_slots_dlm_ls_51120_fields ls_num_slots dlm_ls 0 51120 NULL
++new_read_fndecl_51123_fields new_read fndecl 2 51123 NULL
++max_write_sge_ib_qp_51132_fields max_write_sge ib_qp 0 51132 NULL
++cachelsz_ath_common_51138_fields cachelsz ath_common 0 51138 NULL
++length_sky2_status_le_51139_fields length sky2_status_le 0 51139 NULL
++arg_start_mm_struct_51140_fields arg_start mm_struct 0 51140 NULL nohasharray
++fm_send_cmd_fndecl_51140_fields fm_send_cmd fndecl 5-0 51140 &arg_start_mm_struct_51140_fields nohasharray
++pin_2_irq_fndecl_51140_fields pin_2_irq fndecl 3 51140 &fm_send_cmd_fndecl_51140_fields nohasharray
++drm_dp_send_dpcd_write_fndecl_51140_fields drm_dp_send_dpcd_write fndecl 4 51140 &pin_2_irq_fndecl_51140_fields
++num_rx_bnad_51141_fields num_rx bnad 0 51141 NULL
++set_dev_class_fndecl_51150_fields set_dev_class fndecl 4 51150 NULL nohasharray
++dm_exception_table_init_fndecl_51150_fields dm_exception_table_init fndecl 2 51150 &set_dev_class_fndecl_51150_fields
++sdio_readb_fndecl_51153_fields sdio_readb fndecl 0 51153 NULL
++n_krcvqs_vardecl_51157_fields n_krcvqs vardecl 0 51157 NULL
++bytes_per_pixel_osd_info_51169_fields bytes_per_pixel osd_info 0 51169 NULL nohasharray
++max_sge_rd_ib_device_attr_51169_fields max_sge_rd ib_device_attr 0 51169 &bytes_per_pixel_osd_info_51169_fields
++raid10_takeover_raid0_fndecl_51171_fields raid10_takeover_raid0 fndecl 3-2 51171 NULL
++mc_cnt_ncsi_rsp_gc_pkt_51173_fields mc_cnt ncsi_rsp_gc_pkt 0 51173 NULL
++per_vf_cids_qed_src_iids_51181_fields per_vf_cids qed_src_iids 0 51181 NULL nohasharray
++splice_write_null_fndecl_51181_fields splice_write_null fndecl 4 51181 &per_vf_cids_qed_src_iids_51181_fields
++convert_extent_bit_fndecl_51191_fields convert_extent_bit fndecl 3-2 51191 NULL
++mlx5_ib_invalidate_range_fndecl_51195_fields mlx5_ib_invalidate_range fndecl 2 51195 NULL
++pfkey_sockaddr_size_fndecl_51198_fields pfkey_sockaddr_size fndecl 0 51198 NULL
++btrfs_extent_same_fndecl_51200_fields btrfs_extent_same fndecl 2-5 51200 NULL
++max_num_vringh_kiov_51202_fields max_num vringh_kiov 0 51202 NULL
++cirrus_ttm_tt_create_fndecl_51204_fields cirrus_ttm_tt_create fndecl 2 51204 NULL
++vcc_recvmsg_fndecl_51205_fields vcc_recvmsg fndecl 3 51205 NULL
++phys_vram_area_51217_fields phys vram_area 0 51217 NULL
++vsi_oltext_vxfs_sb_info_51222_fields vsi_oltext vxfs_sb_info 0 51222 NULL
++mem_cgroup_count_precharge_pte_range_fndecl_51229_fields mem_cgroup_count_precharge_pte_range fndecl 2 51229 NULL
++stb0899_read_regs_fndecl_51234_fields stb0899_read_regs fndecl 4 51234 NULL
++proc_set_size_fndecl_51237_fields proc_set_size fndecl 2 51237 NULL
++unlinked_urb_51246_fields unlinked urb 0 51246 NULL
++max_desc_sz_mthca_limits_51248_fields max_desc_sz mthca_limits 0 51248 NULL
++max_gs_mlx4_ib_wq_51251_fields max_gs mlx4_ib_wq 0 51251 NULL nohasharray
++cdev_add_fndecl_51251_fields cdev_add fndecl 3-2 51251 &max_gs_mlx4_ib_wq_51251_fields
++maxdatafieldsize_vnic_fc_config_51275_fields maxdatafieldsize vnic_fc_config 0 51275 NULL
++xfs_rtallocate_range_fndecl_51292_fields xfs_rtallocate_range fndecl 3-4-0 51292 NULL nohasharray
++osd_req_list_partition_collections_fndecl_51292_fields osd_req_list_partition_collections fndecl 5 51292 &xfs_rtallocate_range_fndecl_51292_fields
++first_burst_iscsi_bus_flash_session_51294_fields first_burst iscsi_bus_flash_session 0 51294 NULL
++size_autofs_dev_ioctl_51298_fields size autofs_dev_ioctl 0 51298 NULL
++iscsi_ping_comp_event_fndecl_51300_fields iscsi_ping_comp_event fndecl 5 51300 NULL
++xfs_qm_dqrepair_fndecl_51301_fields xfs_qm_dqrepair fndecl 0 51301 NULL
++y2_virtio_gpu_framebuffer_51309_fields y2 virtio_gpu_framebuffer 0 51309 NULL
++size_bts_phys_51332_fields size bts_phys 0 51332 NULL
++sync_dma_snd_usb_endpoint_51333_fields sync_dma snd_usb_endpoint 0 51333 NULL
++skb_put_frags_fndecl_51337_fields skb_put_frags fndecl 2-3 51337 NULL
++s_first_meta_bg_ext4_super_block_51338_fields s_first_meta_bg ext4_super_block 0 51338 NULL
++zd_mac_rx_fndecl_51339_fields zd_mac_rx fndecl 3 51339 NULL
++m_ag_max_usable_xfs_mount_51344_fields m_ag_max_usable xfs_mount 0 51344 NULL
++size_seq_file_51354_fields size seq_file 0 51354 NULL nohasharray
++ftdi_process_packet_fndecl_51354_fields ftdi_process_packet fndecl 4 51354 &size_seq_file_51354_fields
++i40iw_vchnl_vf_add_hmc_objs_fndecl_51356_fields i40iw_vchnl_vf_add_hmc_objs fndecl 4 51356 NULL
++get_frame_size_fndecl_51358_fields get_frame_size fndecl 0 51358 NULL
++length_mpc_table_51364_fields length mpc_table 0 51364 NULL
++ida_simple_get_fndecl_51365_fields ida_simple_get fndecl 0 51365 NULL nohasharray
++la_size_sect_drbd_md_51365_fields la_size_sect drbd_md 0 51365 &ida_simple_get_fndecl_51365_fields
++sb_logblocks_xfs_sb_51372_fields sb_logblocks xfs_sb 0 51372 NULL
++i915_ggtt_view_size_fndecl_51385_fields i915_ggtt_view_size fndecl 0 51385 NULL
++ath6kl_wmi_addkey_cmd_fndecl_51389_fields ath6kl_wmi_addkey_cmd fndecl 2 51389 NULL
++reshape_progress_r10conf_51390_fields reshape_progress r10conf 0 51390 NULL
++size_hbucket_51397_fields size hbucket 0 51397 NULL
++ext4_ext_next_allocated_block_fndecl_51410_fields ext4_ext_next_allocated_block fndecl 0 51410 NULL
++max_amsdu_len_ieee80211_sta_51415_fields max_amsdu_len ieee80211_sta 0 51415 NULL
++max_header_size_irnet_socket_51423_fields max_header_size irnet_socket 0 51423 NULL
++base_memblock_region_51424_fields base memblock_region 0 51424 NULL
++gre_parse_header_fndecl_51433_fields gre_parse_header fndecl 0-5 51433 NULL
++mixer_channels_fw_spkr_51437_fields mixer_channels fw_spkr 0 51437 NULL
++nethctrl_vf_resources_51438_fields nethctrl vf_resources 0 51438 NULL nohasharray
++size_omap3isp_ccdc_lsc_config_51438_fields size omap3isp_ccdc_lsc_config 0 51438 &nethctrl_vf_resources_51438_fields
++pyra_sysfs_write_fndecl_51441_fields pyra_sysfs_write fndecl 6 51441 NULL
++xfs_free_file_space_fndecl_51452_fields xfs_free_file_space fndecl 2-3 51452 NULL
++pcpu_fc_free_fndecl_51456_fields pcpu_fc_free fndecl 2 51456 NULL
++nr_segments_blkif_request_indirect_51457_fields nr_segments blkif_request_indirect 0 51457 NULL
++size_hashlimit_cfg1_51460_fields size hashlimit_cfg1 0 51460 NULL
++rx_urb_size_usbnet_51461_fields rx_urb_size usbnet 0 51461 NULL
++nTxLock_vardecl_jfs_txnmgr_c_51464_fields nTxLock vardecl_jfs_txnmgr.c 0 51464 NULL
++ext4_xattr_user_set_fndecl_51477_fields ext4_xattr_user_set fndecl 6 51477 NULL nohasharray
++orig_offset_iscsi_seq_51477_fields orig_offset iscsi_seq 0 51477 &ext4_xattr_user_set_fndecl_51477_fields
++finish_urb_fndecl_51484_fields finish_urb fndecl 3 51484 NULL
++xlog_alloc_log_fndecl_51486_fields xlog_alloc_log fndecl 3-4 51486 NULL
++log_blocksize_f2fs_super_block_51487_fields log_blocksize f2fs_super_block 0 51487 NULL
++f2fs_do_zero_range_fndecl_51504_fields f2fs_do_zero_range fndecl 2 51504 NULL
++inftl_readblock_fndecl_51508_fields inftl_readblock fndecl 2 51508 NULL
++xfer_len_scb_platform_data_51509_fields xfer_len scb_platform_data 0 51509 NULL
++count_atl1_tpd_ring_51510_fields count atl1_tpd_ring 0 51510 NULL
++pkt_alloc_packet_data_fndecl_51515_fields pkt_alloc_packet_data fndecl 1 51515 NULL
++size_fb_pixmap_51528_fields size fb_pixmap 0 51528 NULL
++mft_no__ntfs_inode_51541_fields mft_no _ntfs_inode 0 51541 NULL
++len_hfa384x_info_frame_51543_fields len hfa384x_info_frame 0 51543 NULL
++scan_bytes_iio_dev_51546_fields scan_bytes iio_dev 0 51546 NULL
++segCnt_Vmxnet3_RxCompDescExt_51547_fields segCnt Vmxnet3_RxCompDescExt 0 51547 NULL
++buffer_size_snd_emu10k1_fx8010_pcm_rec_51548_fields buffer_size snd_emu10k1_fx8010_pcm_rec 0 51548 NULL
++residual_len_vscsiif_response_51559_fields residual_len vscsiif_response 0 51559 NULL
++size_mdp_superblock_1_51572_fields size mdp_superblock_1 0 51572 NULL
++netxen_nic_change_mtu_fndecl_51573_fields netxen_nic_change_mtu fndecl 2 51573 NULL nohasharray
++rds_rdma_extra_size_fndecl_51573_fields rds_rdma_extra_size fndecl 0 51573 &netxen_nic_change_mtu_fndecl_51573_fields
++of_regulator_match_fndecl_51576_fields of_regulator_match fndecl 0 51576 NULL
++aio_setup_vectored_rw_fndecl_51577_fields aio_setup_vectored_rw fndecl 3 51577 NULL
++s_writeshift_logfs_super_51578_fields s_writeshift logfs_super 0 51578 NULL
++i_blkno_ocfs2_dinode_51582_fields i_blkno ocfs2_dinode 0 51582 NULL
++ufs_commit_chunk_fndecl_51591_fields ufs_commit_chunk fndecl 3 51591 NULL
++rx_buf_missing_hso_net_51595_fields rx_buf_missing hso_net 0 51595 NULL
++klsi_105_prepare_write_buffer_fndecl_51599_fields klsi_105_prepare_write_buffer fndecl 3 51599 NULL nohasharray
++ep_count_bytes_remain_fndecl_51599_fields ep_count_bytes_remain fndecl 0 51599 &klsi_105_prepare_write_buffer_fndecl_51599_fields nohasharray
++af9013_wr_regs_i2c_fndecl_51599_fields af9013_wr_regs_i2c fndecl 5 51599 &ep_count_bytes_remain_fndecl_51599_fields
++receive_mergeable_fndecl_51601_fields receive_mergeable fndecl 5-4 51601 NULL
++va_for_temp_scif_window_51603_fields va_for_temp scif_window 0 51603 NULL
++cur_vfio_pci_fill_info_51616_fields cur vfio_pci_fill_info 0 51616 NULL nohasharray
++data_transfer_length_vmscsi_request_51616_fields data_transfer_length vmscsi_request 0 51616 &cur_vfio_pci_fill_info_51616_fields
++alloc_ltalkdev_fndecl_51620_fields alloc_ltalkdev fndecl 1 51620 NULL
++ioc_plen1_obd_ioctl_data_51625_fields ioc_plen1 obd_ioctl_data 0 51625 NULL
++btuart_write_fndecl_51627_fields btuart_write fndecl 0 51627 NULL
++nodesize_btrfs_root_51633_fields nodesize btrfs_root 0 51633 NULL
++SsidLength_ndis_802_11_ssid_51638_fields SsidLength ndis_802_11_ssid 0 51638 NULL
++remap_cell_to_cache_dirty_fndecl_51640_fields remap_cell_to_cache_dirty fndecl 4 51640 NULL
++amdgpu_cgs_add_irq_source_fndecl_51642_fields amdgpu_cgs_add_irq_source fndecl 3 51642 NULL
++imm_count_jit_ctx_51643_fields imm_count jit_ctx 0 51643 NULL
++tx_ring_size_gfar_priv_tx_q_51655_fields tx_ring_size gfar_priv_tx_q 0 51655 NULL
++o2hb_read_slots_fndecl_51658_fields o2hb_read_slots fndecl 2 51658 NULL
++create_cache_fndecl_51660_fields create_cache fndecl 3-4-2 51660 NULL
++phys_mdio_mux_mmioreg_state_51673_fields phys mdio_mux_mmioreg_state 0 51673 NULL
++tcf_csum_ipv4_udp_fndecl_51674_fields tcf_csum_ipv4_udp fndecl 3 51674 NULL nohasharray
++seq_create_client1_fndecl_51674_fields seq_create_client1 fndecl 2 51674 &tcf_csum_ipv4_udp_fndecl_51674_fields
++nr_dirtied_task_struct_51675_fields nr_dirtied task_struct 0 51675 NULL
++ls_num_nodes_dlm_ls_51681_fields ls_num_nodes dlm_ls 0 51681 NULL nohasharray
++vmw_kms_present_fndecl_51681_fields vmw_kms_present fndecl 9 51681 &ls_num_nodes_dlm_ls_51681_fields
++virtio_gpu_object_create_fndecl_51692_fields virtio_gpu_object_create fndecl 2 51692 NULL nohasharray
++extsize_xfs_growfs_rt_51692_fields extsize xfs_growfs_rt 0 51692 &virtio_gpu_object_create_fndecl_51692_fields
++rtl8169_change_mtu_fndecl_51693_fields rtl8169_change_mtu fndecl 2 51693 NULL
++ms_os_descs_ext_prop_data_len_ffs_data_51698_fields ms_os_descs_ext_prop_data_len ffs_data 0 51698 NULL nohasharray
++pa_credit_return_base_51698_fields pa credit_return_base 0 51698 &ms_os_descs_ext_prop_data_len_ffs_data_51698_fields
++gfx_v7_0_get_csb_size_fndecl_51701_fields gfx_v7_0_get_csb_size fndecl 0 51701 NULL
++bNumMMCIEs_usb_wa_descriptor_51706_fields bNumMMCIEs usb_wa_descriptor 0 51706 NULL
++reqsize_crypto_skcipher_51708_fields reqsize crypto_skcipher 0 51708 NULL
++nilfs_write_end_fndecl_51713_fields nilfs_write_end fndecl 5 51713 NULL
++mwifiex_cmd_append_11n_tlv_fndecl_51715_fields mwifiex_cmd_append_11n_tlv fndecl 0 51715 NULL nohasharray
++ubifs_scan_fndecl_51715_fields ubifs_scan fndecl 3 51715 &mwifiex_cmd_append_11n_tlv_fndecl_51715_fields
++tt_stat_ofs_cyttsp4_sysinfo_ofs_51717_fields tt_stat_ofs cyttsp4_sysinfo_ofs 0 51717 NULL
++rx_ring_num_mlx4_en_priv_51723_fields rx_ring_num mlx4_en_priv 0 51723 NULL
++MaxChainDepth__MSG_IOC_FACTS_REPLY_51731_fields MaxChainDepth _MSG_IOC_FACTS_REPLY 0 51731 NULL
++xfs_da3_node_create_fndecl_51737_fields xfs_da3_node_create fndecl 2 51737 NULL
++start_falloc_range_51744_fields start falloc_range 0 51744 NULL
++qed_cxt_set_proto_cid_count_fndecl_51748_fields qed_cxt_set_proto_cid_count fndecl 4-3 51748 NULL nohasharray
++bnx2_change_ring_size_fndecl_51748_fields bnx2_change_ring_size fndecl 3-2 51748 &qed_cxt_set_proto_cid_count_fndecl_51748_fields
++sie_num_c67x00_sie_51754_fields sie_num c67x00_sie 0 51754 NULL
++find_next_usable_block_fndecl_51759_fields find_next_usable_block fndecl 0 51759 NULL
++rxbuf_size_alx_priv_51766_fields rxbuf_size alx_priv 0 51766 NULL
++vb2_dma_contig_set_max_seg_size_fndecl_51767_fields vb2_dma_contig_set_max_seg_size fndecl 2 51767 NULL
++ls_slot_dlm_ls_51774_fields ls_slot dlm_ls 0 51774 NULL
++rbio_add_io_page_fndecl_51775_fields rbio_add_io_page fndecl 5-6 51775 NULL
++s_blocksize_reiserfs_super_block_v1_51777_fields s_blocksize reiserfs_super_block_v1 0 51777 NULL
++SSID_size_atmel_private_51778_fields SSID_size atmel_private 0 51778 NULL
++snd_rme32_capture_getrate_fndecl_51779_fields snd_rme32_capture_getrate fndecl 0 51779 NULL
++pci_bar2_map_lpfc_hba_51792_fields pci_bar2_map lpfc_hba 0 51792 NULL
++ns_nextnum_the_nilfs_51797_fields ns_nextnum the_nilfs 0 51797 NULL
++uar_page_size_mlx4_caps_51798_fields uar_page_size mlx4_caps 0 51798 NULL
++reg_size_mtk_nfc_fdm_51803_fields reg_size mtk_nfc_fdm 0 51803 NULL
++si476x_core_i2c_xfer_fndecl_51818_fields si476x_core_i2c_xfer fndecl 4 51818 NULL
++val_ulist_node_51819_fields val ulist_node 0 51819 NULL
++bcache_device_init_fndecl_51822_fields bcache_device_init fndecl 2 51822 NULL
++isac_empty_fifo_fndecl_51832_fields isac_empty_fifo fndecl 2 51832 NULL
++udf_readpages_fndecl_51834_fields udf_readpages fndecl 4 51834 NULL
++hde_ast_vbios_enhtable_51835_fields hde ast_vbios_enhtable 0 51835 NULL
++xfs_bmap_btalloc_filestreams_fndecl_51838_fields xfs_bmap_btalloc_filestreams fndecl 0 51838 NULL
++mmio_len_mb862xxfb_par_51844_fields mmio_len mb862xxfb_par 0 51844 NULL
++xfs_qm_dqiter_bufs_fndecl_51846_fields xfs_qm_dqiter_bufs fndecl 3 51846 NULL
++max_bdi_bd_list_51847_fields max_bdi bd_list 0 51847 NULL
++free_size_jffs2_eraseblock_51848_fields free_size jffs2_eraseblock 0 51848 NULL
++mlx5e_rx_wqes_to_packets_fndecl_51860_fields mlx5e_rx_wqes_to_packets fndecl 0-3 51860 NULL
++slab_order_fndecl_51865_fields slab_order fndecl 0 51865 NULL
++TupleDataLen_tuple_t_51870_fields TupleDataLen tuple_t 0 51870 NULL
++efs_get_block_fndecl_51871_fields efs_get_block fndecl 2 51871 NULL
++rho2_7ls_hybla_51873_fields rho2_7ls hybla 0 51873 NULL
++MaxFrameSize_s_smt_os_51875_fields MaxFrameSize s_smt_os 0 51875 NULL
++vbi_height_em28xx_v4l2_51876_fields vbi_height em28xx_v4l2 0 51876 NULL
++lright_ext4_allocation_request_51877_fields lright ext4_allocation_request 0 51877 NULL
++skb_headroom_port100_51893_fields skb_headroom port100 0 51893 NULL
++len_sdla_mem_51902_fields len sdla_mem 0 51902 NULL
++datainterval_audioformat_51903_fields datainterval audioformat 0 51903 NULL
++v9fs_xattr_handler_set_fndecl_51905_fields v9fs_xattr_handler_set fndecl 6 51905 NULL
++rx_buf_sz_yellowfin_private_51912_fields rx_buf_sz yellowfin_private 0 51912 NULL
++len_nfs3_diropargs_51913_fields len nfs3_diropargs 0 51913 NULL
++pgbase_nfs4_readlink_51921_fields pgbase nfs4_readlink 0 51921 NULL
++aead_sendmsg_fndecl_51926_fields aead_sendmsg fndecl 3 51926 NULL
++start_discovery_fndecl_51929_fields start_discovery fndecl 4 51929 NULL
++btrfs_read_dev_one_super_fndecl_51932_fields btrfs_read_dev_one_super fndecl 2 51932 NULL
++xfs_dir_createname_fndecl_51936_fields xfs_dir_createname fndecl 7 51936 NULL
++__fswab16_fndecl_51937_fields __fswab16 fndecl 0-1 51937 NULL
++len_probe_resp_51942_fields len probe_resp 0 51942 NULL
++len_fscrypt_symlink_data_51950_fields len fscrypt_symlink_data 0 51950 NULL nohasharray
++rsi_mgmt_pkt_to_core_fndecl_51950_fields rsi_mgmt_pkt_to_core fndecl 3 51950 &len_fscrypt_symlink_data_51950_fields
++size_mdp_superblock_s_51954_fields size mdp_superblock_s 0 51954 NULL
++max_channels_efx_nic_51955_fields max_channels efx_nic 0 51955 NULL nohasharray
++__remaining_sg_mapping_iter_51955_fields __remaining sg_mapping_iter 0 51955 &max_channels_efx_nic_51955_fields nohasharray
++num_mpt_mlx4_profile_51955_fields num_mpt mlx4_profile 0 51955 &__remaining_sg_mapping_iter_51955_fields nohasharray
++start_drm_i915_error_state_buf_51955_fields start drm_i915_error_state_buf 0 51955 &num_mpt_mlx4_profile_51955_fields
++meta_total_blocks_r5l_recovery_ctx_51960_fields meta_total_blocks r5l_recovery_ctx 0 51960 NULL
++pipe_src_w_intel_crtc_state_51963_fields pipe_src_w intel_crtc_state 0 51963 NULL nohasharray
++submit_bio_wait_fndecl_51963_fields submit_bio_wait fndecl 0 51963 &pipe_src_w_intel_crtc_state_51963_fields nohasharray
++num_eqs_mthca_limits_51963_fields num_eqs mthca_limits 0 51963 &submit_bio_wait_fndecl_51963_fields
++bufsize_usbhid_device_51964_fields bufsize usbhid_device 0 51964 NULL
++pad_bits_regmap_config_51968_fields pad_bits regmap_config 0 51968 NULL nohasharray
++should_error_unserviceable_bio_fndecl_51968_fields should_error_unserviceable_bio fndecl 0 51968 &pad_bits_regmap_config_51968_fields
++asix_write_cmd_async_fndecl_51975_fields asix_write_cmd_async fndecl 5 51975 NULL
++insert_one_name_fndecl_51977_fields insert_one_name fndecl 6 51977 NULL
++pcnet32_realloc_tx_ring_fndecl_51983_fields pcnet32_realloc_tx_ring fndecl 3 51983 NULL
++bus_num_sm501_platdata_gpio_i2c_51989_fields bus_num sm501_platdata_gpio_i2c 0 51989 NULL
++ocfs2_which_cluster_group_fndecl_51998_fields ocfs2_which_cluster_group fndecl 0-2 51998 NULL
++size_fuse_write_out_52017_fields size fuse_write_out 0 52017 NULL nohasharray
++immediate_data_length_iscsi_build_list_52017_fields immediate_data_length iscsi_build_list 0 52017 &size_fuse_write_out_52017_fields
++batadv_iv_ogm_aggregate_new_fndecl_52022_fields batadv_iv_ogm_aggregate_new fndecl 2 52022 NULL
++dev_set_mtu_fndecl_52028_fields dev_set_mtu fndecl 2 52028 NULL
++bounce_buf_len_xhci_ring_52035_fields bounce_buf_len xhci_ring 0 52035 NULL
++oobavail_mtd_info_52037_fields oobavail mtd_info 0 52037 NULL
++gfs2_setattr_size_fndecl_52038_fields gfs2_setattr_size fndecl 2 52038 NULL nohasharray
++mapbase_priv_52038_fields mapbase priv 0 52038 &gfs2_setattr_size_fndecl_52038_fields
++prepare_ack_packet_fndecl_52041_fields prepare_ack_packet fndecl 5 52041 NULL
++xdr_shrink_pagelen_fndecl_52043_fields xdr_shrink_pagelen fndecl 2 52043 NULL nohasharray
++sysctl_sync_sock_size_netns_ipvs_52043_fields sysctl_sync_sock_size netns_ipvs 0 52043 &xdr_shrink_pagelen_fndecl_52043_fields
++num_controls_op_x86_model_spec_52044_fields num_controls op_x86_model_spec 0 52044 NULL
++min_initial_entries_vmw_cotable_info_52048_fields min_initial_entries vmw_cotable_info 0 52048 NULL
++section_size_nvsp_1_message_send_send_buffer_complete_52050_fields section_size nvsp_1_message_send_send_buffer_complete 0 52050 NULL
++iomap_zero_range_actor_fndecl_52051_fields iomap_zero_range_actor fndecl 3-2 52051 NULL
++cxgb_change_mtu_fndecl_52055_fields cxgb_change_mtu fndecl 2 52055 NULL
++scif_register_fndecl_52065_fields scif_register fndecl 3 52065 NULL
++nid_node_info_52075_fields nid node_info 0 52075 NULL
++lpfc_bsg_copy_data_fndecl_52084_fields lpfc_bsg_copy_data fndecl 0-3 52084 NULL
++nvbios_rd32_fndecl_52086_fields nvbios_rd32 fndecl 0 52086 NULL
++ceph_handle_auth_reply_fndecl_52105_fields ceph_handle_auth_reply fndecl 0 52105 NULL nohasharray
++btindex_jfs_inode_info_52105_fields btindex jfs_inode_info 0 52105 &ceph_handle_auth_reply_fndecl_52105_fields
++attr_bytes_osdv1_attributes_list_element_52106_fields attr_bytes osdv1_attributes_list_element 0 52106 NULL
++MaxDevices__MSG_PORT_FACTS_REPLY_52112_fields MaxDevices _MSG_PORT_FACTS_REPLY 0 52112 NULL
++mlx4_ib_db_map_user_fndecl_52114_fields mlx4_ib_db_map_user fndecl 2 52114 NULL
++max3421_transfer_out_done_fndecl_52121_fields max3421_transfer_out_done fndecl 0 52121 NULL nohasharray
++length_wsm_update_ie_52121_fields length wsm_update_ie 0 52121 &max3421_transfer_out_done_fndecl_52121_fields
++db_page_mthca_create_srq_52122_fields db_page mthca_create_srq 0 52122 NULL
++mtu_cmtp_session_52125_fields mtu cmtp_session 0 52125 NULL
++iscsi_sw_tcp_recv_fndecl_52131_fields iscsi_sw_tcp_recv fndecl 3 52131 NULL
++ima_read_xattr_fndecl_52132_fields ima_read_xattr fndecl 0 52132 NULL
++s_inode_size_ext2_sb_info_52134_fields s_inode_size ext2_sb_info 0 52134 NULL
++isofs_export_iget_fndecl_52144_fields isofs_export_iget fndecl 2 52144 NULL
++qib_rc_rcv_fndecl_52145_fields qib_rc_rcv fndecl 5 52145 NULL
++tcp_sendmsg_fndecl_52147_fields tcp_sendmsg fndecl 3 52147 NULL nohasharray
++tcp_update_reordering_fndecl_52147_fields tcp_update_reordering fndecl 2 52147 &tcp_sendmsg_fndecl_52147_fields
++set_le_ih_k_type_fndecl_52149_fields set_le_ih_k_type fndecl 2 52149 NULL
++pep_indicate_fndecl_52160_fields pep_indicate fndecl 5 52160 NULL
++mpx_mmap_fndecl_52167_fields mpx_mmap fndecl 1-0 52167 NULL
++nf_ct_sack_adjust_fndecl_52168_fields nf_ct_sack_adjust fndecl 2 52168 NULL
++mtdchar_lseek_fndecl_52170_fields mtdchar_lseek fndecl 2 52170 NULL
++reserved_operations_rvt_driver_params_52173_fields reserved_operations rvt_driver_params 0 52173 NULL
++compat_sys_ptrace_fndecl_52176_fields compat_sys_ptrace fndecl 3 52176 NULL
++b_length_xfs_buf_52177_fields b_length xfs_buf 0 52177 NULL
++log_sq_size_mlx5e_params_52182_fields log_sq_size mlx5e_params 0 52182 NULL
++icdoff_nvme_ctrl_52188_fields icdoff nvme_ctrl 0 52188 NULL
++virtfn_add_bus_fndecl_52190_fields virtfn_add_bus fndecl 2 52190 NULL
++ext2_readpages_fndecl_52195_fields ext2_readpages fndecl 4 52195 NULL
++patch_regs_regmap_52197_fields patch_regs regmap 0 52197 NULL
++metapage_get_blocks_fndecl_52200_fields metapage_get_blocks fndecl 0-2 52200 NULL
++mmc_send_cxd_data_fndecl_52204_fields mmc_send_cxd_data fndecl 5 52204 NULL
++num_lro_rxd_netxen_adapter_52211_fields num_lro_rxd netxen_adapter 0 52211 NULL
++num_dtv_properties_52216_fields num dtv_properties 0 52216 NULL
++numlower_ovl_entry_52218_fields numlower ovl_entry 0 52218 NULL
++max_sge_rvt_rq_52222_fields max_sge rvt_rq 0 52222 NULL
++cp2112_write_read_req_fndecl_52230_fields cp2112_write_read_req fndecl 0-6 52230 NULL
++BlockSize_erase_unit_header_t_52231_fields BlockSize erase_unit_header_t 0 52231 NULL
++lpc_sch_get_io_fndecl_52232_fields lpc_sch_get_io fndecl 5 52232 NULL
++nfs3_proc_readlink_fndecl_52235_fields nfs3_proc_readlink fndecl 4-3 52235 NULL
++devm_nvdimm_memremap_fndecl_52240_fields devm_nvdimm_memremap fndecl 3-2 52240 NULL
++num_ports_mthca_limits_52246_fields num_ports mthca_limits 0 52246 NULL
++paddr_drm_gem_cma_object_52250_fields paddr drm_gem_cma_object 0 52250 NULL
++ceph_osdc_alloc_messages_fndecl_52252_fields ceph_osdc_alloc_messages fndecl 0 52252 NULL
++snd_hda_get_conn_list_fndecl_52255_fields snd_hda_get_conn_list fndecl 0 52255 NULL nohasharray
++kmemleak_alloc_percpu_fndecl_52255_fields kmemleak_alloc_percpu fndecl 2 52255 &snd_hda_get_conn_list_fndecl_52255_fields
++bufsize_brcmf_console_52266_fields bufsize brcmf_console 0 52266 NULL
++value_len_xattr_52269_fields value_len xattr 0 52269 NULL nohasharray
++pd_idx_stripe_head_52269_fields pd_idx stripe_head 0 52269 &value_len_xattr_52269_fields
++req_depth_pvscsi_adapter_52271_fields req_depth pvscsi_adapter 0 52271 NULL nohasharray
++hdsp_set_rate_fndecl_52271_fields hdsp_set_rate fndecl 2 52271 &req_depth_pvscsi_adapter_52271_fields nohasharray
++hfsplus_ext_find_block_fndecl_52271_fields hfsplus_ext_find_block fndecl 0-2 52271 &hdsp_set_rate_fndecl_52271_fields
++set_multcount_fndecl_52272_fields set_multcount fndecl 2 52272 NULL
++num_leds_adp5520_leds_platform_data_52273_fields num_leds adp5520_leds_platform_data 0 52273 NULL
++hlen_raw_frag_vec_52276_fields hlen raw_frag_vec 0 52276 NULL
++length_sigma_fw_chunk_52285_fields length sigma_fw_chunk 0 52285 NULL
++hpfs_alloc_dnode_fndecl_52288_fields hpfs_alloc_dnode fndecl 2 52288 NULL
++read_pointer_osst_buffer_52292_fields read_pointer osst_buffer 0 52292 NULL
++reserve_low_vardecl_setup_c_52293_fields reserve_low vardecl_setup.c 0 52293 NULL
++error_submit_bio_ret_52294_fields error submit_bio_ret 0 52294 NULL
++slot_legacy_probe_52300_fields slot legacy_probe 0 52300 NULL
++setup_items_for_insert_fndecl_52301_fields setup_items_for_insert fndecl 7 52301 NULL
++origin_size_thin_c_52302_fields origin_size thin_c 0 52302 NULL
++length_rxe_opcode_info_52306_fields length rxe_opcode_info 0 52306 NULL
++h_stop_saa7134_tvnorm_52311_fields h_stop saa7134_tvnorm 0 52311 NULL
++rss_table_entry_width_i40e_hw_capabilities_52312_fields rss_table_entry_width i40e_hw_capabilities 0 52312 NULL
++btrfs_delalloc_reserve_space_fndecl_52314_fields btrfs_delalloc_reserve_space fndecl 0-3-2 52314 NULL
++ep_out_kingsun_cb_52317_fields ep_out kingsun_cb 0 52317 NULL
++pglen_nfs4_readlink_52318_fields pglen nfs4_readlink 0 52318 NULL
++cxgbi_conn_init_pdu_fndecl_52327_fields cxgbi_conn_init_pdu fndecl 3 52327 NULL
++inline_rsize_rpcrdma_create_data_internal_52331_fields inline_rsize rpcrdma_create_data_internal 0 52331 NULL
++mac_header_sk_buff_52356_fields mac_header sk_buff 0 52356 NULL
++pipe_src_h_intel_crtc_state_52358_fields pipe_src_h intel_crtc_state 0 52358 NULL nohasharray
++blk_queue_max_hw_sectors_fndecl_52358_fields blk_queue_max_hw_sectors fndecl 2 52358 &pipe_src_h_intel_crtc_state_52358_fields
++nr_upid_52360_fields nr upid 0 52360 NULL
++create_cq_user_fndecl_52365_fields create_cq_user fndecl 5 52365 NULL nohasharray
++r_cpos_ocfs2_refcount_rec_52365_fields r_cpos ocfs2_refcount_rec 0 52365 &create_cq_user_fndecl_52365_fields
++se_callback_netid_len_nfsd4_setclientid_52366_fields se_callback_netid_len nfsd4_setclientid 0 52366 NULL
++req_depth__MPT_ADAPTER_52375_fields req_depth _MPT_ADAPTER 0 52375 NULL
++rh_string_fndecl_52376_fields rh_string fndecl 0-4 52376 NULL
++bMaxBurst_usb_ss_ep_comp_descriptor_52382_fields bMaxBurst usb_ss_ep_comp_descriptor 0 52382 NULL
++ath6kl_wmi_set_ie_cmd_fndecl_52383_fields ath6kl_wmi_set_ie_cmd fndecl 6-2 52383 NULL nohasharray
++sg_pgoffset_sg_page_iter_52383_fields sg_pgoffset sg_page_iter 0 52383 &ath6kl_wmi_set_ie_cmd_fndecl_52383_fields
++raw_bufsize_edt_ft5x06_ts_data_52390_fields raw_bufsize edt_ft5x06_ts_data 0 52390 NULL
++jffs2_write_dirent_fndecl_52396_fields jffs2_write_dirent fndecl 5 52396 NULL
++u132_hcd_initial_input_recv_fndecl_52397_fields u132_hcd_initial_input_recv fndecl 4 52397 NULL
++srp_map_idb_fndecl_52402_fields srp_map_idb fndecl 0-5 52402 NULL
++length_TAG_TW_SG_Entry_52403_fields length TAG_TW_SG_Entry 0 52403 NULL
++eapol_len_wmi_eapol_rx_event_52408_fields eapol_len wmi_eapol_rx_event 0 52408 NULL
++btrfs_test_free_space_cache_fndecl_52410_fields btrfs_test_free_space_cache fndecl 1-2 52410 NULL
++agp_return_size_fndecl_52417_fields agp_return_size fndecl 0 52417 NULL
++group_ocfs2_new_group_input_52421_fields group ocfs2_new_group_input 0 52421 NULL
++jffs2_user_setxattr_fndecl_52427_fields jffs2_user_setxattr fndecl 6 52427 NULL nohasharray
++xfs_iomap_write_allocate_fndecl_52427_fields xfs_iomap_write_allocate fndecl 0 52427 &jffs2_user_setxattr_fndecl_52427_fields
++move_vma_fndecl_52430_fields move_vma fndecl 5-4-2-3 52430 NULL
++zap_pte_range_fndecl_52434_fields zap_pte_range fndecl 4-0 52434 NULL
++min_scaled_width_bttv_crop_52442_fields min_scaled_width bttv_crop 0 52442 NULL
++dvb_max_pkt_size_isoc_em28xx_52444_fields dvb_max_pkt_size_isoc em28xx 0 52444 NULL nohasharray
++map_nth_dirent_fndecl_52444_fields map_nth_dirent fndecl 2 52444 &dvb_max_pkt_size_isoc_em28xx_52444_fields
++read_rsp_size_smb_version_values_52446_fields read_rsp_size smb_version_values 0 52446 NULL
++bulk_out_size_usb_serial_port_52448_fields bulk_out_size usb_serial_port 0 52448 NULL
++corr_peb_count_ubi_device_52450_fields corr_peb_count ubi_device 0 52450 NULL nohasharray
++wl1251_spi_write_fndecl_52450_fields wl1251_spi_write fndecl 4 52450 &corr_peb_count_ubi_device_52450_fields
++end_bus_pci_mmcfg_region_52468_fields end_bus pci_mmcfg_region 0 52468 NULL
++nvi_vf_resources_52470_fields nvi vf_resources 0 52470 NULL
++sz_field_t_52472_fields sz field_t 0 52472 NULL
++metadata_snap_era_metadata_52475_fields metadata_snap era_metadata 0 52475 NULL
++ib_ucm_alloc_data_fndecl_52486_fields ib_ucm_alloc_data fndecl 3 52486 NULL
++user_base_rvt_mregion_52489_fields user_base rvt_mregion 0 52489 NULL
++eqpc_entry_sz_mthca_dev_lim_52498_fields eqpc_entry_sz mthca_dev_lim 0 52498 NULL
++s_clustersize_bits_ocfs2_super_52499_fields s_clustersize_bits ocfs2_super 0 52499 NULL
++used_ubifs_wbuf_52504_fields used ubifs_wbuf 0 52504 NULL
++size_virtio_gpu_vbuffer_52521_fields size virtio_gpu_vbuffer 0 52521 NULL
++refcount_loc_ocfs2_move_extents_context_52526_fields refcount_loc ocfs2_move_extents_context 0 52526 NULL
++vm_cmdline_id_vardecl_virtio_mmio_c_52527_fields vm_cmdline_id vardecl_virtio_mmio.c 0 52527 NULL
++tas5086_register_size_fndecl_52528_fields tas5086_register_size fndecl 0 52528 NULL
++fps_solo_dev_52530_fields fps solo_dev 0 52530 NULL
++iov_offset_iov_iter_52535_fields iov_offset iov_iter 0 52535 NULL
++rx_buf_sz_hamachi_private_52536_fields rx_buf_sz hamachi_private 0 52536 NULL
++queue_pair_size_vmci_transport_52540_fields queue_pair_size vmci_transport 0 52540 NULL
++packet_sendmsg_spkt_fndecl_52542_fields packet_sendmsg_spkt fndecl 3 52542 NULL
++rdb_shift_mthca_qp_table_52547_fields rdb_shift mthca_qp_table 0 52547 NULL
++dccp_insert_option_fndecl_52554_fields dccp_insert_option fndecl 4 52554 NULL
++ovfx2_i2c_r_fndecl_52555_fields ovfx2_i2c_r fndecl 0 52555 NULL
++write_leb_fndecl_52558_fields write_leb fndecl 5 52558 NULL
++num_mtt_mlx4_profile_52565_fields num_mtt mlx4_profile 0 52565 NULL
++fragsize_sdma_req_info_52566_fields fragsize sdma_req_info 0 52566 NULL
++ax88179_write_cmd_nopm_fndecl_52569_fields ax88179_write_cmd_nopm fndecl 5 52569 NULL
++physical_sector_size_blkfront_info_52571_fields physical_sector_size blkfront_info 0 52571 NULL
++end_logsuper_52574_fields end logsuper 0 52574 NULL
++amdgpu_ttm_tt_set_userptr_fndecl_52575_fields amdgpu_ttm_tt_set_userptr fndecl 2 52575 NULL
++device_create_groups_vargs_fndecl_52576_fields device_create_groups_vargs fndecl 3 52576 NULL
++__mincore_unmapped_range_fndecl_52595_fields __mincore_unmapped_range fndecl 1 52595 NULL
++xfs_shift_file_space_fndecl_52596_fields xfs_shift_file_space fndecl 2-3 52596 NULL
++cached_dev_init_fndecl_52600_fields cached_dev_init fndecl 2 52600 NULL
++w5200_spi_writebulk_fndecl_52604_fields w5200_spi_writebulk fndecl 4 52604 NULL
++ext4_da_write_end_fndecl_52605_fields ext4_da_write_end fndecl 5 52605 NULL
++length_usbdevfs_iso_packet_desc_52610_fields length usbdevfs_iso_packet_desc 0 52610 NULL
++ondemand_readahead_fndecl_52612_fields ondemand_readahead fndecl 5 52612 NULL
++datalen_tcf_ematch_52613_fields datalen tcf_ematch 0 52613 NULL
++wl1251_spi_read_fndecl_52615_fields wl1251_spi_read fndecl 4 52615 NULL
++max_sge_ib_device_attr_52617_fields max_sge ib_device_attr 0 52617 NULL
++_set_error_resid_fndecl_52623_fields _set_error_resid fndecl 3 52623 NULL
++lo_rw_aio_complete_fndecl_52629_fields lo_rw_aio_complete fndecl 2 52629 NULL nohasharray
++mlx5e_add_skb_frag_linear_mpwqe_fndecl_52629_fields mlx5e_add_skb_frag_linear_mpwqe fndecl 6-5 52629 &lo_rw_aio_complete_fndecl_52629_fields nohasharray
++drbd_new_dev_size_fndecl_52629_fields drbd_new_dev_size fndecl 0-3 52629 &mlx5e_add_skb_frag_linear_mpwqe_fndecl_52629_fields
++image_size_cgs_firmware_info_52630_fields image_size cgs_firmware_info 0 52630 NULL
++vaddr_hfi1_tid_info_52635_fields vaddr hfi1_tid_info 0 52635 NULL
++burst_len_qcaspi_52637_fields burst_len qcaspi 0 52637 NULL
++figure_loop_size_fndecl_52648_fields figure_loop_size fndecl 2 52648 NULL
++qp_broker_create_fndecl_52654_fields qp_broker_create fndecl 6-5 52654 NULL
++extra_bytes_sym_ccb_52656_fields extra_bytes sym_ccb 0 52656 NULL
++block_size_ms_boot_attr_info_52659_fields block_size ms_boot_attr_info 0 52659 NULL
++snd_hdac_get_sub_nodes_fndecl_52668_fields snd_hdac_get_sub_nodes fndecl 0 52668 NULL
++vt_ast_vbios_enhtable_52669_fields vt ast_vbios_enhtable 0 52669 NULL
++nr_ioapics_vardecl_52671_fields nr_ioapics vardecl 0 52671 NULL
++pcm512x_sck_max_fndecl_52677_fields pcm512x_sck_max fndecl 0 52677 NULL
++__handle_mm_fault_fndecl_52682_fields __handle_mm_fault fndecl 2 52682 NULL
++btrfs_double_extent_unlock_fndecl_52687_fields btrfs_double_extent_unlock fndecl 2-4-5 52687 NULL
++fpHeight_nvidia_par_52691_fields fpHeight nvidia_par 0 52691 NULL nohasharray
++urb_done_max3421_hcd_52691_fields urb_done max3421_hcd 0 52691 &fpHeight_nvidia_par_52691_fields
++max_data_link_payload_nfc_hci_dev_52699_fields max_data_link_payload nfc_hci_dev 0 52699 NULL
++count_vfio_pci_hot_reset_52708_fields count vfio_pci_hot_reset 0 52708 NULL
++gen_ie_buf_len_mwifiex_private_52710_fields gen_ie_buf_len mwifiex_private 0 52710 NULL nohasharray
++din_size_cros_ec_device_52710_fields din_size cros_ec_device 0 52710 &gen_ie_buf_len_mwifiex_private_52710_fields
++wptr_old_radeon_ring_52716_fields wptr_old radeon_ring 0 52716 NULL nohasharray
++videomemorysize_vardecl_vfb_c_52716_fields videomemorysize vardecl_vfb.c 0 52716 &wptr_old_radeon_ring_52716_fields
++xlog_grant_head_check_fndecl_52719_fields xlog_grant_head_check fndecl 0 52719 NULL
++cifs_min_small_vardecl_52732_fields cifs_min_small vardecl 0 52732 NULL
++vmw_framebuffer_dmabuf_dirty_fndecl_52750_fields vmw_framebuffer_dmabuf_dirty fndecl 6 52750 NULL
++dd_fcrport_size_fc_function_template_52753_fields dd_fcrport_size fc_function_template 0 52753 NULL
++num_btns_cyttsp4_sysinfo_ofs_52758_fields num_btns cyttsp4_sysinfo_ofs 0 52758 NULL
++dr_blkno_ocfs2_dx_root_block_52759_fields dr_blkno ocfs2_dx_root_block 0 52759 NULL
++playback_frlog_rme96_52763_fields playback_frlog rme96 0 52763 NULL
++do_compat_pwritev64_fndecl_52765_fields do_compat_pwritev64 fndecl 3 52765 NULL
++iov_iter_fault_in_readable_fndecl_52767_fields iov_iter_fault_in_readable fndecl 2 52767 NULL
++wIDIbytesPerSector_ms_bootblock_idi_52770_fields wIDIbytesPerSector ms_bootblock_idi 0 52770 NULL
++size_drm_i915_gem_create_52771_fields size drm_i915_gem_create 0 52771 NULL
++maxBuf_TCP_Server_Info_52774_fields maxBuf TCP_Server_Info 0 52774 NULL
++qxl_allocate_chunk_fndecl_52791_fields qxl_allocate_chunk fndecl 4 52791 NULL nohasharray
++tcp_mss_split_point_fndecl_52791_fields tcp_mss_split_point fndecl 0 52791 &qxl_allocate_chunk_fndecl_52791_fields
++batadv_get_vid_fndecl_52792_fields batadv_get_vid fndecl 2 52792 NULL
++__wa_seg_calculate_isoc_frame_count_fndecl_52795_fields __wa_seg_calculate_isoc_frame_count fndecl 0 52795 NULL
++buffer_size_vardecl_ethoc_c_52796_fields buffer_size vardecl_ethoc.c 0 52796 NULL
++xhci_ring_alloc_fndecl_52799_fields xhci_ring_alloc fndecl 5 52799 NULL
++payload_len_bfa_bsg_data_52800_fields payload_len bfa_bsg_data 0 52800 NULL
++postcopy_buffers_fndecl_52806_fields postcopy_buffers fndecl 3 52806 NULL
++ule_sndu_type_dvb_net_priv_52811_fields ule_sndu_type dvb_net_priv 0 52811 NULL
++mmc_test_map_sg_fndecl_52812_fields mmc_test_map_sg fndecl 6-5-8-2 52812 NULL nohasharray
++mini_cm_connect_fndecl_52812_fields mini_cm_connect fndecl 3 52812 &mmc_test_map_sg_fndecl_52812_fields
++brcmf_sdiod_recv_chain_fndecl_52822_fields brcmf_sdiod_recv_chain fndecl 3 52822 NULL
++xdr_encode_array2_fndecl_52834_fields xdr_encode_array2 fndecl 0-2 52834 NULL
++xfs_read_agf_fndecl_52838_fields xfs_read_agf fndecl 3-0 52838 NULL nohasharray
++ocfs2_duplicate_clusters_by_jbd_fndecl_52838_fields ocfs2_duplicate_clusters_by_jbd fndecl 4-5 52838 &xfs_read_agf_fndecl_52838_fields
++svc_rdma_xdr_decode_req_fndecl_52859_fields svc_rdma_xdr_decode_req fndecl 0 52859 NULL
++netxen_validate_ringparam_fndecl_52863_fields netxen_validate_ringparam fndecl 0 52863 NULL
++mlx4_load_one_fndecl_52867_fields mlx4_load_one fndecl 3 52867 NULL nohasharray
++wqe_shift_mlx5_ib_wq_52867_fields wqe_shift mlx5_ib_wq 0 52867 &mlx4_load_one_fndecl_52867_fields
++video_ram_radeonfb_info_52868_fields video_ram radeonfb_info 0 52868 NULL
++ddata_ofsh_cyttsp4_sysinfo_data_52870_fields ddata_ofsh cyttsp4_sysinfo_data 0 52870 NULL
++offset_pipe_buffer_52880_fields offset pipe_buffer 0 52880 NULL
++address_length_acpi_resource_memory24_52885_fields address_length acpi_resource_memory24 0 52885 NULL
++i40iw_vchnl_vf_del_hmc_obj_fndecl_52890_fields i40iw_vchnl_vf_del_hmc_obj fndecl 4 52890 NULL
++buffer_size_vardecl_ir_usb_c_52893_fields buffer_size vardecl_ir-usb.c 0 52893 NULL
++offset_bnxt_sw_rx_agg_bd_52895_fields offset bnxt_sw_rx_agg_bd 0 52895 NULL
++data_len_hermes_rx_descriptor_52909_fields data_len hermes_rx_descriptor 0 52909 NULL
++of_alias_add_fndecl_52916_fields of_alias_add fndecl 3 52916 NULL nohasharray
++cqc_entry_sz_mlx4_dev_cap_52916_fields cqc_entry_sz mlx4_dev_cap 0 52916 &of_alias_add_fndecl_52916_fields
++num_tx_queues_e1000_adapter_52922_fields num_tx_queues e1000_adapter 0 52922 NULL
++swd_swregs_state_52928_fields swd swregs_state 0 52928 NULL
++xfs_mount_validate_sb_fndecl_52930_fields xfs_mount_validate_sb fndecl 0 52930 NULL
++count_i40e_ring_52936_fields count i40e_ring 0 52936 NULL nohasharray
++max_write_shift_ubifs_info_52936_fields max_write_shift ubifs_info 0 52936 &count_i40e_ring_52936_fields
++si2165_write_fndecl_52941_fields si2165_write fndecl 4 52941 NULL
++rules_count_canid_match_52943_fields rules_count canid_match 0 52943 NULL nohasharray
++num_rx_ethoc_52943_fields num_rx ethoc 0 52943 &rules_count_canid_match_52943_fields
++pipe_urb_52947_fields pipe urb 0 52947 NULL
++position_jfs_dirent_52952_fields position jfs_dirent 0 52952 NULL
++trigger_level_eg20t_port_52953_fields trigger_level eg20t_port 0 52953 NULL
++i2c_read_demod_bytes_fndecl_52958_fields i2c_read_demod_bytes fndecl 4 52958 NULL
++bnx2fc_get_paged_crc_eof_fndecl_52960_fields bnx2fc_get_paged_crc_eof fndecl 2 52960 NULL
++fw_size_pvr2_hdw_52961_fields fw_size pvr2_hdw 0 52961 NULL
++priv_sz_sja1000_of_data_52963_fields priv_sz sja1000_of_data 0 52963 NULL
++musb_h_ep0_continue_fndecl_52966_fields musb_h_ep0_continue fndecl 2 52966 NULL
++set_registers_fndecl_52968_fields set_registers fndecl 4 52968 NULL
++dma_start_lo_rx_buf_desc_52972_fields dma_start_lo rx_buf_desc 0 52972 NULL
++dataOutSize_mpt_ioctl_command_52974_fields dataOutSize mpt_ioctl_command 0 52974 NULL
++scif_readfrom_fndecl_52975_fields scif_readfrom fndecl 2-4-3 52975 NULL nohasharray
++dvb_net_sec_fndecl_52975_fields dvb_net_sec fndecl 3 52975 &scif_readfrom_fndecl_52975_fields nohasharray
++xdr_truncate_encode_fndecl_52975_fields xdr_truncate_encode fndecl 2 52975 &dvb_net_sec_fndecl_52975_fields
++scatter_n_efx_rx_queue_52988_fields scatter_n efx_rx_queue 0 52988 NULL nohasharray
++size_eeprom_93xx46_dev_52988_fields size eeprom_93xx46_dev 0 52988 &scatter_n_efx_rx_queue_52988_fields
++xfs_dir2_block_to_sf_fndecl_52991_fields xfs_dir2_block_to_sf fndecl 3 52991 NULL
++max_rx_agg_size_iwl_cfg_52997_fields max_rx_agg_size iwl_cfg 0 52997 NULL
++hidp_output_report_fndecl_53002_fields hidp_output_report fndecl 3 53002 NULL
++actual_length_urb_53003_fields actual_length urb 0 53003 NULL nohasharray
++rx_nr_pages_bnxt_53003_fields rx_nr_pages bnxt 0 53003 &actual_length_urb_53003_fields
++max_mlx4_srq_53011_fields max mlx4_srq 0 53011 NULL nohasharray
++__shadow_block_fndecl_53011_fields __shadow_block fndecl 2 53011 &max_mlx4_srq_53011_fields
++BC_Read_Reg_IsdnCardState_53020_fields BC_Read_Reg IsdnCardState 0 53020 NULL
++bytesused_ivtv_buffer_53021_fields bytesused ivtv_buffer 0 53021 NULL
++run_test_fndecl_53022_fields run_test fndecl 3-4 53022 NULL
++tty_insert_flip_string_fixed_flag_fndecl_53031_fields tty_insert_flip_string_fixed_flag fndecl 0 53031 NULL
++ni_peertxcredits_lnet_ni_53034_fields ni_peertxcredits lnet_ni 0 53034 NULL
++xfs_filestream_pick_ag_fndecl_53040_fields xfs_filestream_pick_ag fndecl 2-0 53040 NULL nohasharray
++nports0_adapter_info_53040_fields nports0 adapter_info 0 53040 &xfs_filestream_pick_ag_fndecl_53040_fields
++xmit_fifo_size_serial_struct_53048_fields xmit_fifo_size serial_struct 0 53048 NULL
++fcoe_alloc_paged_crc_eof_fndecl_53049_fields fcoe_alloc_paged_crc_eof fndecl 2 53049 NULL
++rqsize_hwif_s_53050_fields rqsize hwif_s 0 53050 NULL
++rx_pad_len_hif_device_usb_53051_fields rx_pad_len hif_device_usb 0 53051 NULL
++dm_bm_write_lock_zero_fndecl_53053_fields dm_bm_write_lock_zero fndecl 2 53053 NULL
++cols_cros_ec_keyb_53054_fields cols cros_ec_keyb 0 53054 NULL
++m_len_ext4_map_blocks_53056_fields m_len ext4_map_blocks 0 53056 NULL
++s_inode_size_nilfs_super_block_53064_fields s_inode_size nilfs_super_block 0 53064 NULL
++ext4_write_end_fndecl_53067_fields ext4_write_end fndecl 5 53067 NULL
++get_pdev_same_bus_fndecl_53069_fields get_pdev_same_bus fndecl 2 53069 NULL
++rcvegrcnt_qib_chip_specific_53071_fields rcvegrcnt qib_chip_specific 0 53071 NULL
++get_rx_frame_len_sxgbe_desc_ops_53074_fields get_rx_frame_len sxgbe_desc_ops 0 53074 NULL
++wMTU_usb_cdc_mbim_extended_desc_53075_fields wMTU usb_cdc_mbim_extended_desc 0 53075 NULL
++vmw_shader_alloc_fndecl_53077_fields vmw_shader_alloc fndecl 3 53077 NULL
++request_len_sg_io_v4_53081_fields request_len sg_io_v4 0 53081 NULL nohasharray
++map_swap_entry_fndecl_53081_fields map_swap_entry fndecl 0 53081 &request_len_sg_io_v4_53081_fields nohasharray
++tcp_established_options_fndecl_53081_fields tcp_established_options fndecl 0 53081 &map_swap_entry_fndecl_53081_fields
++__hci_cmd_sync_ev_fndecl_53090_fields __hci_cmd_sync_ev fndecl 3 53090 NULL
++ext4_itable_unused_set_fndecl_53091_fields ext4_itable_unused_set fndecl 3 53091 NULL
++size_fuse_attr_53098_fields size fuse_attr 0 53098 NULL
++s_blocksize_minix3_super_block_53099_fields s_blocksize minix3_super_block 0 53099 NULL
++prepare_header80_fndecl_53108_fields prepare_header80 fndecl 0 53108 NULL
++count_vbi_info_53110_fields count vbi_info 0 53110 NULL
++fb_max_width_vmw_private_53114_fields fb_max_width vmw_private 0 53114 NULL
++reserve_region_with_split_fndecl_53115_fields reserve_region_with_split fndecl 3-2 53115 NULL
++logi_dj_recv_forward_hidpp_fndecl_53117_fields logi_dj_recv_forward_hidpp fndecl 3 53117 NULL
++pci_iov_add_virtfn_fndecl_53122_fields pci_iov_add_virtfn fndecl 2 53122 NULL
++real_vram_size_radeon_mc_53132_fields real_vram_size radeon_mc 0 53132 NULL
++data_dma_td_53137_fields data_dma td 0 53137 NULL
++log_rq_size_mlx5e_params_53140_fields log_rq_size mlx5e_params 0 53140 NULL
++mmc_spi_readbytes_fndecl_53146_fields mmc_spi_readbytes fndecl 2 53146 NULL
++bdev_writeseg_fndecl_53148_fields bdev_writeseg fndecl 2-3 53148 NULL
++xoffset_fb_var_screeninfo_53153_fields xoffset fb_var_screeninfo 0 53153 NULL
++fat_cont_expand_fndecl_53155_fields fat_cont_expand fndecl 2 53155 NULL
++sb_blocksize_xfs_sb_53160_fields sb_blocksize xfs_sb 0 53160 NULL
++nvmet_copy_to_sgl_fndecl_53164_fields nvmet_copy_to_sgl fndecl 2-4 53164 NULL
++uhci_debug_lseek_fndecl_53171_fields uhci_debug_lseek fndecl 2 53171 NULL
++buf_size_mwifiex_event_scan_result_53175_fields buf_size mwifiex_event_scan_result 0 53175 NULL
++offset_page_frag_53180_fields offset page_frag 0 53180 NULL
++rx_tpa_start_cmp_metadata_rx_tpa_start_cmp_ext_53181_fields rx_tpa_start_cmp_metadata rx_tpa_start_cmp_ext 0 53181 NULL
++tbl_size_vardecl_memattr_c_53182_fields tbl_size vardecl_memattr.c 0 53182 NULL nohasharray
++tpm_devt_vardecl_53182_fields tpm_devt vardecl 0 53182 &tbl_size_vardecl_memattr_c_53182_fields
++xhci_alloc_streams_fndecl_53185_fields xhci_alloc_streams fndecl 5 53185 NULL
++rate_min_snd_soc_pcm_stream_53186_fields rate_min snd_soc_pcm_stream 0 53186 NULL
++len_nxtfrm_brcmf_sdio_hdrinfo_53193_fields len_nxtfrm brcmf_sdio_hdrinfo 0 53193 NULL nohasharray
++num_entries_hfi1_wss_53193_fields num_entries hfi1_wss 0 53193 &len_nxtfrm_brcmf_sdio_hdrinfo_53193_fields
++mpage_process_page_bufs_fndecl_53197_fields mpage_process_page_bufs fndecl 4 53197 NULL
++minor_start_tty_driver_53214_fields minor_start tty_driver 0 53214 NULL
++write_iter_file_operations_53218_fields write_iter file_operations 0 53218 NULL
++aio_run_iocb_fndecl_53224_fields aio_run_iocb fndecl 4 53224 NULL nohasharray
++udf_block_map_fndecl_53224_fields udf_block_map fndecl 0 53224 &aio_run_iocb_fndecl_53224_fields
++meta_slots_used_xenvif_rx_cb_53230_fields meta_slots_used xenvif_rx_cb 0 53230 NULL
++bnx2x_sriov_configure_fndecl_53235_fields bnx2x_sriov_configure fndecl 2 53235 NULL
++mlx4_get_mgm_entry_size_fndecl_53236_fields mlx4_get_mgm_entry_size fndecl 0 53236 NULL
++svcxdr_init_encode_from_buffer_fndecl_53239_fields svcxdr_init_encode_from_buffer fndecl 4 53239 NULL nohasharray
++mmc_test_rw_multiple_fndecl_53239_fields mmc_test_rw_multiple fndecl 3-5 53239 &svcxdr_init_encode_from_buffer_fndecl_53239_fields
++sys_sync_file_range2_fndecl_53247_fields sys_sync_file_range2 fndecl 3-4 53247 NULL
++readpos_ivtv_buffer_53258_fields readpos ivtv_buffer 0 53258 NULL
++qxl_bo_create_fndecl_53261_fields qxl_bo_create fndecl 2 53261 NULL nohasharray
++num_cq_mlx4_profile_53261_fields num_cq mlx4_profile 0 53261 &qxl_bo_create_fndecl_53261_fields
++add_new_ctl_fndecl_53263_fields add_new_ctl fndecl 8 53263 NULL
++asl_urb_dequeue_fndecl_53268_fields asl_urb_dequeue fndecl 3 53268 NULL
++update_dind_extent_range_fndecl_53271_fields update_dind_extent_range fndecl 3 53271 NULL
++rx_pkt_n_frags_efx_channel_53276_fields rx_pkt_n_frags efx_channel 0 53276 NULL nohasharray
++rmi_i2c_write_block_fndecl_53276_fields rmi_i2c_write_block fndecl 4 53276 &rx_pkt_n_frags_efx_channel_53276_fields
++nr_cmds_ctlr_info_53278_fields nr_cmds ctlr_info 0 53278 NULL
++alignment_acpi_resource_memory32_53289_fields alignment acpi_resource_memory32 0 53289 NULL
++nfs4_xattr_set_nfs4_label_fndecl_53292_fields nfs4_xattr_set_nfs4_label fndecl 6 53292 NULL
++compat_ptrace_request_fndecl_53296_fields compat_ptrace_request fndecl 3 53296 NULL
++fuse_ioctl_common_fndecl_53305_fields fuse_ioctl_common fndecl 2 53305 NULL
++gtt_start_radeon_mc_53307_fields gtt_start radeon_mc 0 53307 NULL nohasharray
++dma_size_cx23885_audio_dev_53307_fields dma_size cx23885_audio_dev 0 53307 &gtt_start_radeon_mc_53307_fields
++isoc_in_usbatm_driver_53310_fields isoc_in usbatm_driver 0 53310 NULL nohasharray
++__gfs2_free_blocks_fndecl_53310_fields __gfs2_free_blocks fndecl 2 53310 &isoc_in_usbatm_driver_53310_fields
++len_i40iw_inline_rdma_write_53313_fields len i40iw_inline_rdma_write 0 53313 NULL
++__sync_dirty_buffer_fndecl_53315_fields __sync_dirty_buffer fndecl 0 53315 NULL
++sys_send_fndecl_53330_fields sys_send fndecl 3 53330 NULL
++__drm_gem_cma_create_fndecl_53334_fields __drm_gem_cma_create fndecl 2 53334 NULL
++s_inode_readahead_blks_ext4_sb_info_53337_fields s_inode_readahead_blks ext4_sb_info 0 53337 NULL
++xilly_get_dma_buffers_fndecl_53341_fields xilly_get_dma_buffers fndecl 4 53341 NULL
++v9fs_xattr_set_fndecl_53342_fields v9fs_xattr_set fndecl 4 53342 NULL
++ioc_len_libcfs_ioctl_hdr_53352_fields ioc_len libcfs_ioctl_hdr 0 53352 NULL
++frag_size_hwbm_pool_53355_fields frag_size hwbm_pool 0 53355 NULL
++ali1563_smba_vardecl_i2c_ali1563_c_53362_fields ali1563_smba vardecl_i2c-ali1563.c 0 53362 NULL
++__xdr_inline_decode_fndecl_53363_fields __xdr_inline_decode fndecl 2 53363 NULL
++rsize_hid_device_53365_fields rsize hid_device 0 53365 NULL
++xattr_len_ceph_mds_reply_info_in_53369_fields xattr_len ceph_mds_reply_info_in 0 53369 NULL
++xdr_inline_pages_fndecl_53377_fields xdr_inline_pages fndecl 5-4-2 53377 NULL
++num_user_contexts_vardecl_53379_fields num_user_contexts vardecl 0 53379 NULL
++dummy_urb_dequeue_fndecl_53380_fields dummy_urb_dequeue fndecl 3 53380 NULL
++vmsplice_to_user_fndecl_53382_fields vmsplice_to_user fndecl 3 53382 NULL
++scrub_stripe_fndecl_53387_fields scrub_stripe fndecl 5 53387 NULL
++isd200_action_fndecl_53390_fields isd200_action fndecl 4 53390 NULL
++nfqnl_mangle_fndecl_53393_fields nfqnl_mangle fndecl 2-4 53393 NULL
++irda_recvmsg_stream_fndecl_53403_fields irda_recvmsg_stream fndecl 3 53403 NULL
++len_nft_cmp_fast_expr_53407_fields len nft_cmp_fast_expr 0 53407 NULL
++nid_dnode_of_data_53408_fields nid dnode_of_data 0 53408 NULL
++pwm_num_nct6775_data_53412_fields pwm_num nct6775_data 0 53412 NULL
++vlan_dev_set_egress_priority_fndecl_53418_fields vlan_dev_set_egress_priority fndecl 3 53418 NULL
++nbits_nvmem_cell_info_53426_fields nbits nvmem_cell_info 0 53426 NULL nohasharray
++expand_stack_fndecl_53426_fields expand_stack fndecl 2 53426 &nbits_nvmem_cell_info_53426_fields
++compat_sys_mbind_fndecl_53427_fields compat_sys_mbind fndecl 2-1 53427 NULL nohasharray
++dn_mk_ack_header_fndecl_53427_fields dn_mk_ack_header fndecl 4 53427 &compat_sys_mbind_fndecl_53427_fields
++len_type_frame_head_53438_fields len type_frame_head 0 53438 NULL nohasharray
++chipsize_nand_chip_53438_fields chipsize nand_chip 0 53438 &len_type_frame_head_53438_fields
++ocfs2_filecheck_handle_fndecl_53445_fields ocfs2_filecheck_handle fndecl 2 53445 NULL
++c_blkno_ocfs2_chain_rec_53466_fields c_blkno ocfs2_chain_rec 0 53466 NULL
++new_chunk_sectors_mddev_53479_fields new_chunk_sectors mddev 0 53479 NULL
++ext2_nfs_get_inode_fndecl_53480_fields ext2_nfs_get_inode fndecl 2 53480 NULL
++map_sector_fndecl_53483_fields map_sector fndecl 0 53483 NULL
++nfs4_proc_readlink_fndecl_53484_fields nfs4_proc_readlink fndecl 4-3 53484 NULL
++orangefs_bufmap_copy_from_iovec_fndecl_53485_fields orangefs_bufmap_copy_from_iovec fndecl 3 53485 NULL
++size_mthca_catas_err_53487_fields size mthca_catas_err 0 53487 NULL
++oper_log_mgm_entry_size_mlx4_dev_53488_fields oper_log_mgm_entry_size mlx4_dev 0 53488 NULL
++usCRTC_V_SyncWidth__ATOM_MODE_TIMING_53489_fields usCRTC_V_SyncWidth _ATOM_MODE_TIMING 0 53489 NULL nohasharray
++len_rx_pool_53489_fields len rx_pool 0 53489 &usCRTC_V_SyncWidth__ATOM_MODE_TIMING_53489_fields
++len_nft_cmp_expr_53491_fields len nft_cmp_expr 0 53491 NULL
++isdn_getnum_fndecl_53492_fields isdn_getnum fndecl 0 53492 NULL
++subctxt_cnt_qib_ctxtdata_53495_fields subctxt_cnt qib_ctxtdata 0 53495 NULL nohasharray
++get_allocated_memblock_memory_regions_info_fndecl_53495_fields get_allocated_memblock_memory_regions_info fndecl 0 53495 &subctxt_cnt_qib_ctxtdata_53495_fields
++tipc_link_mtu_fndecl_53508_fields tipc_link_mtu fndecl 0 53508 NULL
++mmc_io_rw_extended_fndecl_53515_fields mmc_io_rw_extended fndecl 8-7 53515 NULL
++dme1737_isa_device_add_fndecl_53516_fields dme1737_isa_device_add fndecl 1 53516 NULL
++fsinfo_sector_msdos_sb_info_53531_fields fsinfo_sector msdos_sb_info 0 53531 NULL nohasharray
++m_max_mds_ceph_mdsmap_53531_fields m_max_mds ceph_mdsmap 0 53531 &fsinfo_sector_msdos_sb_info_53531_fields
++unix_seqpacket_sendmsg_fndecl_53534_fields unix_seqpacket_sendmsg fndecl 3 53534 NULL
++num_res_platform_device_info_53536_fields num_res platform_device_info 0 53536 NULL
++e820_add_region_fndecl_53540_fields e820_add_region fndecl 2 53540 NULL nohasharray
++tcp_mark_head_lost_fndecl_53540_fields tcp_mark_head_lost fndecl 2 53540 &e820_add_region_fndecl_53540_fields
++crtc_w_drm_plane_state_53541_fields crtc_w drm_plane_state 0 53541 NULL
++smi_num_vardecl_ipmi_si_intf_c_53542_fields smi_num vardecl_ipmi_si_intf.c 0 53542 NULL
++start_extent_state_53546_fields start extent_state 0 53546 NULL
++block_size_partition_53549_fields block_size partition 0 53549 NULL
++r_result_ceph_osd_request_53555_fields r_result ceph_osd_request 0 53555 NULL
++log_mpt_sz_mlx4_init_hca_param_53586_fields log_mpt_sz mlx4_init_hca_param 0 53586 NULL
++num_ports_mlx4_caps_53588_fields num_ports mlx4_caps 0 53588 NULL nohasharray
++tokens_size_cfg80211_wowlan_tcp_53588_fields tokens_size cfg80211_wowlan_tcp 0 53588 &num_ports_mlx4_caps_53588_fields
++nr_labels_pktgen_dev_53591_fields nr_labels pktgen_dev 0 53591 NULL
++ocfs2_orphan_filldir_fndecl_53593_fields ocfs2_orphan_filldir fndecl 5 53593 NULL
++nilfs_load_super_block_fndecl_53596_fields nilfs_load_super_block fndecl 3 53596 NULL
++hwptr_done_snd_usb_substream_53606_fields hwptr_done snd_usb_substream 0 53606 NULL
++pcfg_ofsl_cyttsp4_sysinfo_data_53607_fields pcfg_ofsl cyttsp4_sysinfo_data 0 53607 NULL
++md_dump_size_netxen_minidump_53611_fields md_dump_size netxen_minidump 0 53611 NULL
++len_rproc_vring_53618_fields len rproc_vring 0 53618 NULL
++qcaspi_write_legacy_fndecl_53623_fields qcaspi_write_legacy fndecl 3 53623 NULL
++btt_flog_write_fndecl_53628_fields btt_flog_write fndecl 0 53628 NULL
++koneplus_sysfs_write_fndecl_53642_fields koneplus_sysfs_write fndecl 6 53642 NULL
++remote_nentries_xpc_openclose_args_53643_fields remote_nentries xpc_openclose_args 0 53643 NULL
++ticket2_len_rxk5_key_53644_fields ticket2_len rxk5_key 0 53644 NULL
++ioc_plen2_obd_ioctl_data_53648_fields ioc_plen2 obd_ioctl_data 0 53648 NULL
++extra_tx_headroom_rt2x00_dev_53650_fields extra_tx_headroom rt2x00_dev 0 53650 NULL
++ceph_buffer_new_fndecl_53653_fields ceph_buffer_new fndecl 1 53653 NULL
++dlist_count_vc4_plane_state_53658_fields dlist_count vc4_plane_state 0 53658 NULL
++hr_data_len_hsm_request_53666_fields hr_data_len hsm_request 0 53666 NULL
++num_sge_ib_uverbs_send_wr_53667_fields num_sge ib_uverbs_send_wr 0 53667 NULL
++cpu_addr_of_pci_range_53670_fields cpu_addr of_pci_range 0 53670 NULL
++sesskey_len_cifs_spnego_msg_53678_fields sesskey_len cifs_spnego_msg 0 53678 NULL nohasharray
++xen_foreach_remap_area_fndecl_53678_fields xen_foreach_remap_area fndecl 0 53678 &sesskey_len_cifs_spnego_msg_53678_fields nohasharray
++ubi_eba_write_leb_fndecl_53678_fields ubi_eba_write_leb fndecl 6-5 53678 &xen_foreach_remap_area_fndecl_53678_fields
++console_store_fndecl_53684_fields console_store fndecl 4 53684 NULL
++i_depth_gfs2_inode_53692_fields i_depth gfs2_inode 0 53692 NULL nohasharray
++drbd_setup_queue_param_fndecl_53692_fields drbd_setup_queue_param fndecl 3 53692 &i_depth_gfs2_inode_53692_fields
++ql_is_full_dup_fndecl_53694_fields ql_is_full_dup fndecl 0 53694 NULL
++length_iscsi_pdu_53695_fields length iscsi_pdu 0 53695 NULL
++vgt_balloon_space_fndecl_53697_fields vgt_balloon_space fndecl 3-4 53697 NULL
++cfg1_size_pcie_port_53701_fields cfg1_size pcie_port 0 53701 NULL
++wipers_tpl0102_cfg_53702_fields wipers tpl0102_cfg 0 53702 NULL
++qlge_change_mtu_fndecl_53706_fields qlge_change_mtu fndecl 2 53706 NULL
++pos_hdpvr_buffer_53708_fields pos hdpvr_buffer 0 53708 NULL
++create_header_ops_53712_fields create header_ops 0 53712 NULL
++num_leds_gpio_led_platform_data_53715_fields num_leds gpio_led_platform_data 0 53715 NULL
++xdr_inline_decode_fndecl_53721_fields xdr_inline_decode fndecl 2 53721 NULL
++onenand_write_ops_nolock_fndecl_53724_fields onenand_write_ops_nolock fndecl 2 53724 NULL
++i915_gem_object_do_pin_fndecl_53726_fields i915_gem_object_do_pin fndecl 5 53726 NULL
++btt_rw_integrity_fndecl_53727_fields btt_rw_integrity fndecl 0 53727 NULL
++xhci_alloc_stream_info_fndecl_53732_fields xhci_alloc_stream_info fndecl 4 53732 NULL
++adp5588_build_gpiomap_fndecl_53733_fields adp5588_build_gpiomap fndecl 0 53733 NULL nohasharray
++dnode_scif_peer_dev_53733_fields dnode scif_peer_dev 0 53733 &adp5588_build_gpiomap_fndecl_53733_fields
++map_capability_fndecl_53738_fields map_capability fndecl 5 53738 NULL
++chunk_size_stripe_c_53745_fields chunk_size stripe_c 0 53745 NULL
++count_user_sgmap_53748_fields count user_sgmap 0 53748 NULL
++SenderSize_aac_fibhdr_53758_fields SenderSize aac_fibhdr 0 53758 NULL
++seg_num_mad_rmpp_recv_53761_fields seg_num mad_rmpp_recv 0 53761 NULL
++padding_iscsi_cmd_53768_fields padding iscsi_cmd 0 53768 NULL
++end_nilfs_write_info_53770_fields end nilfs_write_info 0 53770 NULL
++msb_read_oob_fndecl_53772_fields msb_read_oob fndecl 2 53772 NULL
++get_slot_from_bitmask_fndecl_53775_fields get_slot_from_bitmask fndecl 0-1 53775 NULL
++do_sendfile_fndecl_53777_fields do_sendfile fndecl 5-4 53777 NULL
++qed_chain_alloc_fndecl_53778_fields qed_chain_alloc fndecl 6-5 53778 NULL
++index_nsc_ircc_cb_53782_fields index nsc_ircc_cb 0 53782 NULL
++src_maxburst_dma_slave_config_53783_fields src_maxburst dma_slave_config 0 53783 NULL
++max_chipselect_fsl_spi_platform_data_53785_fields max_chipselect fsl_spi_platform_data 0 53785 NULL
++Control_2_RxD_t_53794_fields Control_2 RxD_t 0 53794 NULL nohasharray
++qlcnic_process_rcv_fndecl_53794_fields qlcnic_process_rcv fndecl 4 53794 &Control_2_RxD_t_53794_fields
++st21nfca_hci_loopback_fndecl_53795_fields st21nfca_hci_loopback fndecl 3 53795 NULL
++epnum_isp1362_ep_53803_fields epnum isp1362_ep 0 53803 NULL nohasharray
++mgmt_send_event_fndecl_53803_fields mgmt_send_event fndecl 5 53803 &epnum_isp1362_ep_53803_fields nohasharray
++osd_req_list_collection_objects_fndecl_53803_fields osd_req_list_collection_objects fndecl 5 53803 &mgmt_send_event_fndecl_53803_fields
++test_btrfs_split_item_fndecl_53804_fields test_btrfs_split_item fndecl 1-2 53804 NULL nohasharray
++iscsi_host_alloc_fndecl_53804_fields iscsi_host_alloc fndecl 2 53804 &test_btrfs_split_item_fndecl_53804_fields
++rsn_dm_verity_fec_53808_fields rsn dm_verity_fec 0 53808 NULL
++msix_count_xhci_hcd_53816_fields msix_count xhci_hcd 0 53816 NULL
++jffs2_flash_write_fndecl_53819_fields jffs2_flash_write fndecl 3-2 53819 NULL
++doorbell_start_nes_device_53820_fields doorbell_start nes_device 0 53820 NULL
++choose_rate_fndecl_53821_fields choose_rate fndecl 3 53821 NULL
++smem_len_fb_fix_screeninfo_53824_fields smem_len fb_fix_screeninfo 0 53824 NULL
++gsmtty_write_fndecl_53837_fields gsmtty_write fndecl 3 53837 NULL
++resp_ie_length_ndis_80211_assoc_info_53840_fields resp_ie_length ndis_80211_assoc_info 0 53840 NULL
++ssid_len_hidden_net_info_53841_fields ssid_len hidden_net_info 0 53841 NULL
++ext4_mb_discard_group_preallocations_fndecl_53854_fields ext4_mb_discard_group_preallocations fndecl 2 53854 NULL
++minleft_xfs_alloc_arg_53855_fields minleft xfs_alloc_arg 0 53855 NULL
++saa7134_i2c_eeprom_fndecl_53866_fields saa7134_i2c_eeprom fndecl 3 53866 NULL
++data_len_msgbuf_rx_complete_53868_fields data_len msgbuf_rx_complete 0 53868 NULL
++cfsiz_bcm_op_53871_fields cfsiz bcm_op 0 53871 NULL
++discard_alignment_hd_struct_53874_fields discard_alignment hd_struct 0 53874 NULL
++br_fill_ifvlaninfo_range_fndecl_53875_fields br_fill_ifvlaninfo_range fndecl 2-3 53875 NULL
++lnum_bits_ubifs_info_53884_fields lnum_bits ubifs_info 0 53884 NULL
++st_nci_loopback_fndecl_53886_fields st_nci_loopback fndecl 3 53886 NULL nohasharray
++cx25821_alsa_dma_init_fndecl_53886_fields cx25821_alsa_dma_init fndecl 2 53886 &st_nci_loopback_fndecl_53886_fields
++drbd_setbufsize_fndecl_53887_fields drbd_setbufsize fndecl 2 53887 NULL
++amdgpu_vce_sw_init_fndecl_53888_fields amdgpu_vce_sw_init fndecl 2 53888 NULL nohasharray
++max_out_queue_skl_module_cfg_53888_fields max_out_queue skl_module_cfg 0 53888 &amdgpu_vce_sw_init_fndecl_53888_fields
++total_read_TCP_Server_Info_53900_fields total_read TCP_Server_Info 0 53900 NULL
++alignf_resource_constraint_53903_fields alignf resource_constraint 0 53903 NULL nohasharray
++e1000_consume_page_fndecl_53903_fields e1000_consume_page fndecl 3 53903 &alignf_resource_constraint_53903_fields
++image_len_brcmf_usbdev_info_53909_fields image_len brcmf_usbdev_info 0 53909 NULL
++vop_len_solo_enc_dev_53910_fields vop_len solo_enc_dev 0 53910 NULL
++fc_exch_mgr_alloc_fndecl_53916_fields fc_exch_mgr_alloc fndecl 3-4 53916 NULL
++num_cvt_hdac_hdmi_priv_53920_fields num_cvt hdac_hdmi_priv 0 53920 NULL
++htcp_cong_avoid_fndecl_53921_fields htcp_cong_avoid fndecl 3 53921 NULL
++usb_stor_sg_tablesize_fndecl_53929_fields usb_stor_sg_tablesize fndecl 0 53929 NULL nohasharray
++osd_req_op_extent_dup_last_fndecl_53929_fields osd_req_op_extent_dup_last fndecl 3 53929 &usb_stor_sg_tablesize_fndecl_53929_fields
++of_iomap_fndecl_53930_fields of_iomap fndecl 2 53930 NULL
++chip_sdma_engines_hfi1_devdata_53934_fields chip_sdma_engines hfi1_devdata 0 53934 NULL
++i40e_init_lan_hmc_fndecl_53935_fields i40e_init_lan_hmc fndecl 2-3-4-5 53935 NULL
++depth_tm6000_fmt_53938_fields depth tm6000_fmt 0 53938 NULL
++ip4ip6_err_fndecl_53943_fields ip4ip6_err fndecl 5 53943 NULL nohasharray
++_find_first_zero_bit_be_fndecl_53943_fields _find_first_zero_bit_be fndecl 0 53943 &ip4ip6_err_fndecl_53943_fields
++llc_mac_header_len_fndecl_53947_fields llc_mac_header_len fndecl 0 53947 NULL
++buffer_end_nm256_53949_fields buffer_end nm256 0 53949 NULL
++swiotlb_nr_tbl_fndecl_53950_fields swiotlb_nr_tbl fndecl 0 53950 NULL
++p_size_drbd_device_53954_fields p_size drbd_device 0 53954 NULL
++tcf_csum_ipv6_tcp_fndecl_53957_fields tcf_csum_ipv6_tcp fndecl 3 53957 NULL
++c_srate_f_uac2_opts_53962_fields c_srate f_uac2_opts 0 53962 NULL nohasharray
++vmw_sou_backing_alloc_fndecl_53962_fields vmw_sou_backing_alloc fndecl 3 53962 &c_srate_f_uac2_opts_53962_fields
++dests_size_fs_fte_53973_fields dests_size fs_fte 0 53973 NULL
++key_len_wpa_key_t_53980_fields key_len wpa_key_t 0 53980 NULL
++rx_buf_sz_cp_private_53982_fields rx_buf_sz cp_private 0 53982 NULL
++assoc_resp_len_wmi_connect_event_53983_fields assoc_resp_len wmi_connect_event 0 53983 NULL
++nfs_proc_mknod_fndecl_53987_fields nfs_proc_mknod fndecl 4 53987 NULL
++cfpkt_add_head_fndecl_53990_fields cfpkt_add_head fndecl 3 53990 NULL
++vbt_size_intel_opregion_53991_fields vbt_size intel_opregion 0 53991 NULL
++btrfs_init_new_buffer_fndecl_53996_fields btrfs_init_new_buffer fndecl 3 53996 NULL
++size_drbd_interval_54002_fields size drbd_interval 0 54002 NULL
++ax88179_change_mtu_fndecl_54007_fields ax88179_change_mtu fndecl 2 54007 NULL
++nonstatic_find_io_fndecl_54015_fields nonstatic_find_io fndecl 4 54015 NULL
++rsi_setblocklength_fndecl_54024_fields rsi_setblocklength fndecl 2 54024 NULL
++xz_dec_lzma2_create_fndecl_54034_fields xz_dec_lzma2_create fndecl 2 54034 NULL
++sum_size_jffs2_summary_54035_fields sum_size jffs2_summary 0 54035 NULL
++nr_states_gpio_regulator_config_54042_fields nr_states gpio_regulator_config 0 54042 NULL
++msb_update_block_fndecl_54063_fields msb_update_block fndecl 4-2 54063 NULL
++process_ptload_program_headers_elf32_fndecl_54067_fields process_ptload_program_headers_elf32 fndecl 3-2 54067 NULL
++width_fb_image_54071_fields width fb_image 0 54071 NULL
++rp2_minor_next_vardecl_rp2_c_54074_fields rp2_minor_next vardecl_rp2.c 0 54074 NULL
++xennet_change_mtu_fndecl_54076_fields xennet_change_mtu fndecl 2 54076 NULL
++bytes_cifs_writedata_54089_fields bytes cifs_writedata 0 54089 NULL
++get_mtu_xfrm_type_54090_fields get_mtu xfrm_type 0 54090 NULL
++sctp_tsnmap_init_fndecl_54093_fields sctp_tsnmap_init fndecl 2 54093 NULL nohasharray
++align_pnp_port_54093_fields align pnp_port 0 54093 &sctp_tsnmap_init_fndecl_54093_fields
++fat_ent_write_fndecl_54100_fields fat_ent_write fndecl 0 54100 NULL
++i2c_bus_read_fndecl_54111_fields i2c_bus_read fndecl 7-5 54111 NULL
++xfs_rtmodify_summary_int_fndecl_54118_fields xfs_rtmodify_summary_int fndecl 4-3-0 54118 NULL nohasharray
++rio_request_inb_mbox_fndecl_54118_fields rio_request_inb_mbox fndecl 3 54118 &xfs_rtmodify_summary_int_fndecl_54118_fields
++vringh_iov_push_kern_fndecl_54119_fields vringh_iov_push_kern fndecl 3 54119 NULL
++alloc_etherdev_mqs_fndecl_54129_fields alloc_etherdev_mqs fndecl 2-1-3 54129 NULL
++mtu_vxlan_config_54132_fields mtu vxlan_config 0 54132 NULL nohasharray
++skb_trim_fndecl_54132_fields skb_trim fndecl 2 54132 &mtu_vxlan_config_54132_fields
++io_offset_xfs_ioend_54137_fields io_offset xfs_ioend 0 54137 NULL nohasharray
++bdx_fifo_init_fndecl_54137_fields bdx_fifo_init fndecl 3 54137 &io_offset_xfs_ioend_54137_fields
++tcf_csum_ipv6_udp_fndecl_54138_fields tcf_csum_ipv6_udp fndecl 3 54138 NULL
++change_protection_range_fndecl_54141_fields change_protection_range fndecl 3-2 54141 NULL
++netvsc_change_mtu_fndecl_54142_fields netvsc_change_mtu fndecl 2 54142 NULL nohasharray
++nr_uart_sc16is7xx_devtype_54142_fields nr_uart sc16is7xx_devtype 0 54142 &netvsc_change_mtu_fndecl_54142_fields
++f2fs_do_collapse_fndecl_54143_fields f2fs_do_collapse fndecl 2 54143 NULL
++brcmf_usb_dl_writeimage_fndecl_54144_fields brcmf_usb_dl_writeimage fndecl 3 54144 NULL
++hs_cur_bits_cfs_hash_54147_fields hs_cur_bits cfs_hash 0 54147 NULL
++sp2_write_i2c_fndecl_54157_fields sp2_write_i2c fndecl 4 54157 NULL
++num_qp_mthca_profile_54160_fields num_qp mthca_profile 0 54160 NULL
++buf_len_lpfc_sli_config_mse_54165_fields buf_len lpfc_sli_config_mse 0 54165 NULL
++cmd_loop_fndecl_54168_fields cmd_loop fndecl 0 54168 NULL
++writebuf_size_tomoyo_io_buffer_54169_fields writebuf_size tomoyo_io_buffer 0 54169 NULL
++st_nci_probe_fndecl_54170_fields st_nci_probe fndecl 2 54170 NULL
++handle_one_ule_extension_fndecl_54174_fields handle_one_ule_extension fndecl 0 54174 NULL
++num_bytes_drm_dp_remote_dpcd_write_54181_fields num_bytes drm_dp_remote_dpcd_write 0 54181 NULL
++ecc_size_mtk_nfc_fdm_54182_fields ecc_size mtk_nfc_fdm 0 54182 NULL
++len_xfs_alloc_arg_54187_fields len xfs_alloc_arg 0 54187 NULL
++nfs_llseek_dir_fndecl_54192_fields nfs_llseek_dir fndecl 2 54192 NULL
++tp_ep_bcm5974_config_54193_fields tp_ep bcm5974_config 0 54193 NULL
++current_speed_ide_drive_s_54197_fields current_speed ide_drive_s 0 54197 NULL
++ipw2100_set_essid_fndecl_54200_fields ipw2100_set_essid fndecl 3 54200 NULL
++contexts_nouveau_fence_priv_54204_fields contexts nouveau_fence_priv 0 54204 NULL nohasharray
++ath6kl_interface_add_fndecl_54204_fields ath6kl_interface_add fndecl 5 54204 &contexts_nouveau_fence_priv_54204_fields
++___ieee80211_stop_tx_ba_session_fndecl_54205_fields ___ieee80211_stop_tx_ba_session fndecl 2 54205 NULL
++alloced_ctxt_eager_bufs_54208_fields alloced ctxt_eager_bufs 0 54208 NULL
++__lock_page_killable_fndecl_54210_fields __lock_page_killable fndecl 0 54210 NULL nohasharray
++mxt_bootloader_write_fndecl_54210_fields mxt_bootloader_write fndecl 3 54210 &__lock_page_killable_fndecl_54210_fields
++page_offset_ixgbe_rx_buffer_54214_fields page_offset ixgbe_rx_buffer 0 54214 NULL
++post_send_ib_device_54215_fields post_send ib_device 0 54215 NULL
++tx_ring_size_ql_adapter_54220_fields tx_ring_size ql_adapter 0 54220 NULL nohasharray
++append_frame_to_pkt_fndecl_54220_fields append_frame_to_pkt fndecl 2 54220 &tx_ring_size_ql_adapter_54220_fields
++lib80211_tkip_encrypt_fndecl_54222_fields lib80211_tkip_encrypt fndecl 2 54222 NULL
++num_boxes_intel_uncore_type_54227_fields num_boxes intel_uncore_type 0 54227 NULL
++vbi_hlen_saa7134_dev_54228_fields vbi_hlen saa7134_dev 0 54228 NULL
++do_init_dirent_fndecl_54230_fields do_init_dirent fndecl 5 54230 NULL
++skb_copy_and_csum_datagram_msg_fndecl_54237_fields skb_copy_and_csum_datagram_msg fndecl 2 54237 NULL
++tcp_queue_rcv_fndecl_54242_fields tcp_queue_rcv fndecl 3 54242 NULL
++upper_margin_fb_var_screeninfo_54245_fields upper_margin fb_var_screeninfo 0 54245 NULL
++la_last_gd_ocfs2_super_54246_fields la_last_gd ocfs2_super 0 54246 NULL
++num_counters_compat_ipt_replace_54249_fields num_counters compat_ipt_replace 0 54249 NULL
++ttm_object_device_init_fndecl_54252_fields ttm_object_device_init fndecl 2 54252 NULL
++__erst_read_fndecl_54256_fields __erst_read fndecl 1 54256 NULL
++ssb_bus_scan_fndecl_54257_fields ssb_bus_scan fndecl 2 54257 NULL
++msdu_len_htt_rx_in_ord_msdu_desc_54278_fields msdu_len htt_rx_in_ord_msdu_desc 0 54278 NULL
++xfs_bmap_split_indlen_fndecl_54284_fields xfs_bmap_split_indlen fndecl 0 54284 NULL
++key_size_crypt_config_54287_fields key_size crypt_config 0 54287 NULL
++thoff_flow_dissector_key_control_54299_fields thoff flow_dissector_key_control 0 54299 NULL
++rss_key_size_i40evf_adapter_54301_fields rss_key_size i40evf_adapter 0 54301 NULL
++ntfs_attr_extend_initialized_fndecl_54303_fields ntfs_attr_extend_initialized fndecl 2 54303 NULL nohasharray
++count_ext4_new_flex_group_data_54303_fields count ext4_new_flex_group_data 0 54303 &ntfs_attr_extend_initialized_fndecl_54303_fields
++ceph_osdc_start_request_fndecl_54305_fields ceph_osdc_start_request fndecl 0 54305 NULL
++determine_backup_region_fndecl_54330_fields determine_backup_region fndecl 1-2 54330 NULL
++length_acpi_table_header_54332_fields length acpi_table_header 0 54332 NULL
++vringh_iov_push_user_fndecl_54340_fields vringh_iov_push_user fndecl 3 54340 NULL nohasharray
++iscsi_conn_setup_fndecl_54340_fields iscsi_conn_setup fndecl 2 54340 &vringh_iov_push_user_fndecl_54340_fields
++max_rcvbuf_size_tipc_server_54342_fields max_rcvbuf_size tipc_server 0 54342 NULL
++max_raw_minors_vardecl_raw_c_54348_fields max_raw_minors vardecl_raw.c 0 54348 NULL
++p_offset_elf32_phdr_54352_fields p_offset elf32_phdr 0 54352 NULL
++hfsplus_block_allocate_fndecl_54353_fields hfsplus_block_allocate fndecl 0-3-2 54353 NULL
++s_fpbmask_ufs_sb_private_info_54354_fields s_fpbmask ufs_sb_private_info 0 54354 NULL
++encode_netobj_fndecl_54356_fields encode_netobj fndecl 3 54356 NULL
++radeon_vram_limit_vardecl_54357_fields radeon_vram_limit vardecl 0 54357 NULL
++tpm_tis_i2c_send_fndecl_54358_fields tpm_tis_i2c_send fndecl 3 54358 NULL
++pkt_size_rx_pkt_status_54360_fields pkt_size rx_pkt_status 0 54360 NULL
++ceph_get_caps_fndecl_54363_fields ceph_get_caps fndecl 0 54363 NULL nohasharray
++len_ieee_types_vendor_header_54363_fields len ieee_types_vendor_header 0 54363 &ceph_get_caps_fndecl_54363_fields
++mlx4_ib_get_cq_umem_fndecl_54371_fields mlx4_ib_get_cq_umem fndecl 5-6 54371 NULL nohasharray
++num_cpu_pages_radeon_gart_54371_fields num_cpu_pages radeon_gart 0 54371 &mlx4_ib_get_cq_umem_fndecl_54371_fields
++paddr_vmcore_54380_fields paddr vmcore 0 54380 NULL
++iwl_nvm_read_chunk_fndecl_54381_fields iwl_nvm_read_chunk fndecl 0 54381 NULL
++btrfs_copy_file_range_fndecl_54383_fields btrfs_copy_file_range fndecl 4-2-5 54383 NULL
++bt878_adr_bt878_54384_fields bt878_adr bt878 0 54384 NULL
++mt7601u_rx_next_seg_len_fndecl_54390_fields mt7601u_rx_next_seg_len fndecl 0 54390 NULL
++csum_offset_nft_payload_set_54397_fields csum_offset nft_payload_set 0 54397 NULL
++memsize_viafb_par_54399_fields memsize viafb_par 0 54399 NULL
++leaf_shift_left_fndecl_54401_fields leaf_shift_left fndecl 3 54401 NULL
++_osd_req_alist_elem_size_fndecl_54403_fields _osd_req_alist_elem_size fndecl 0-2 54403 NULL
++gr_ep0_respond_fndecl_54405_fields gr_ep0_respond fndecl 3 54405 NULL
++len_a2mp_cmd_54407_fields len a2mp_cmd 0 54407 NULL
++vmw_execbuf_submit_fifo_fndecl_54409_fields vmw_execbuf_submit_fifo fndecl 3 54409 NULL nohasharray
++wp_retry_size_smb_version_operations_54409_fields wp_retry_size smb_version_operations 0 54409 &vmw_execbuf_submit_fifo_fndecl_54409_fields nohasharray
++xfs_ialloc_ag_select_fndecl_54409_fields xfs_ialloc_ag_select fndecl 2-0 54409 &wp_retry_size_smb_version_operations_54409_fields
++mthca_alloc_icm_coherent_fndecl_54412_fields mthca_alloc_icm_coherent fndecl 3 54412 NULL
++user_height_soc_camera_device_54417_fields user_height soc_camera_device 0 54417 NULL
++qlcnic_process_lro_fndecl_54418_fields qlcnic_process_lro fndecl 4-3 54418 NULL
++oxygen_pci_probe_fndecl_54423_fields oxygen_pci_probe fndecl 2 54423 NULL
++follow_page_mask_fndecl_54427_fields follow_page_mask fndecl 2 54427 NULL
++qnx6_get_devblock_fndecl_54428_fields qnx6_get_devblock fndecl 0 54428 NULL
++startbit_netlbl_lsm_catmap_54432_fields startbit netlbl_lsm_catmap 0 54432 NULL
++ieee80211_add_tx_radiotap_header_fndecl_54443_fields ieee80211_add_tx_radiotap_header fndecl 5 54443 NULL
++jbd2_journal_get_write_access_fndecl_54444_fields jbd2_journal_get_write_access fndecl 0 54444 NULL
++upd_ltab_fndecl_54459_fields upd_ltab fndecl 3 54459 NULL
++a_count_posix_acl_54461_fields a_count posix_acl 0 54461 NULL nohasharray
++vringh_init_kern_fndecl_54461_fields vringh_init_kern fndecl 3 54461 &a_count_posix_acl_54461_fields
++ide_inb_fndecl_54462_fields ide_inb fndecl 0 54462 NULL nohasharray
++ide_mm_inb_fndecl_54462_fields ide_mm_inb fndecl 0 54462 &ide_inb_fndecl_54462_fields
++mlxsw_emad_alloc_fndecl_54469_fields mlxsw_emad_alloc fndecl 2 54469 NULL
++memory_device_code_ms_boot_attr_info_54474_fields memory_device_code ms_boot_attr_info 0 54474 NULL
++ocfs2_divide_xattr_cluster_fndecl_54477_fields ocfs2_divide_xattr_cluster fndecl 3-4 54477 NULL
++initial_height_vmw_private_54479_fields initial_height vmw_private 0 54479 NULL nohasharray
++adf7242_write_fbuf_fndecl_54479_fields adf7242_write_fbuf fndecl 3 54479 &initial_height_vmw_private_54479_fields
++spi_write_buf_fndecl_54490_fields spi_write_buf fndecl 2 54490 NULL
++do_preadv_fndecl_54493_fields do_preadv fndecl 3 54493 NULL
++n_chan_comedi_subdevice_54496_fields n_chan comedi_subdevice 0 54496 NULL
++dev_start_strip_zone_54501_fields dev_start strip_zone 0 54501 NULL
++max_fds_fdtable_54502_fields max_fds fdtable 0 54502 NULL
++mwifiex_set_gen_ie_helper_fndecl_54506_fields mwifiex_set_gen_ie_helper fndecl 3 54506 NULL
++m_agfrotor_xfs_mount_54510_fields m_agfrotor xfs_mount 0 54510 NULL nohasharray
++get_rxfh_indir_size_ethtool_ops_54510_fields get_rxfh_indir_size ethtool_ops 0 54510 &m_agfrotor_xfs_mount_54510_fields
++__btrfs_buffered_write_fndecl_54524_fields __btrfs_buffered_write fndecl 3 54524 NULL
++ocfs2_read_dir_block_direct_fndecl_54528_fields ocfs2_read_dir_block_direct fndecl 2 54528 NULL
++num_ccells_cnic_local_54538_fields num_ccells cnic_local 0 54538 NULL
++v_sync_strt_wid_crtc_54541_fields v_sync_strt_wid crtc 0 54541 NULL nohasharray
++bandlength_Kiara_table_entry_54541_fields bandlength Kiara_table_entry 0 54541 &v_sync_strt_wid_crtc_54541_fields
++s_dev_table_count_exofs_fscb_54542_fields s_dev_table_count exofs_fscb 0 54542 NULL
++smaps_hugetlb_range_fndecl_54549_fields smaps_hugetlb_range fndecl 3 54549 NULL
++pages_snd_sg_buf_54557_fields pages snd_sg_buf 0 54557 NULL
++interval_exp_blk_integrity_54558_fields interval_exp blk_integrity 0 54558 NULL
++ath6kl_wmi_probe_report_req_cmd_fndecl_54576_fields ath6kl_wmi_probe_report_req_cmd fndecl 2 54576 NULL
++qnx6_check_first_superblock_fndecl_54577_fields qnx6_check_first_superblock fndecl 2 54577 NULL
++priority_sk_buff_54581_fields priority sk_buff 0 54581 NULL
++size_dw_guc_css_header_54583_fields size_dw guc_css_header 0 54583 NULL nohasharray
++size_acpi_gpio_mapping_54583_fields size acpi_gpio_mapping 0 54583 &size_dw_guc_css_header_54583_fields
++usb_serial_generic_prepare_write_buffer_fndecl_54586_fields usb_serial_generic_prepare_write_buffer fndecl 3 54586 NULL
++erase_size_mmc_card_54587_fields erase_size mmc_card 0 54587 NULL
++width_cx231xx_54591_fields width cx231xx 0 54591 NULL nohasharray
++near_copies_geom_54591_fields near_copies geom 0 54591 &width_cx231xx_54591_fields
++viafb_i2c_readbytes_fndecl_54593_fields viafb_i2c_readbytes fndecl 5 54593 NULL
++alloc_block_buf_fndecl_54594_fields alloc_block_buf fndecl 1 54594 NULL
++vmw_local_fifo_reserve_fndecl_54601_fields vmw_local_fifo_reserve fndecl 2 54601 NULL
++fat32_length_fat_bios_param_block_54606_fields fat32_length fat_bios_param_block 0 54606 NULL
++adfs_f_read_fndecl_54612_fields adfs_f_read fndecl 2 54612 NULL
++pages_in_unit___stripe_pages_2d_54623_fields pages_in_unit __stripe_pages_2d 0 54623 NULL nohasharray
++nr_frames_frame_vector_54623_fields nr_frames frame_vector 0 54623 &pages_in_unit___stripe_pages_2d_54623_fields
++ext4_new_meta_blocks_fndecl_54631_fields ext4_new_meta_blocks fndecl 0 54631 NULL
++vt1211_device_add_fndecl_54634_fields vt1211_device_add fndecl 1 54634 NULL
++text_len_printk_log_54636_fields text_len printk_log 0 54636 NULL nohasharray
++bits_per_sample_soc_mbus_pixelfmt_54636_fields bits_per_sample soc_mbus_pixelfmt 0 54636 &text_len_printk_log_54636_fields
++scif_create_remote_window_fndecl_54638_fields scif_create_remote_window fndecl 2 54638 NULL nohasharray
++n_tx_channels_efx_nic_54638_fields n_tx_channels efx_nic 0 54638 &scif_create_remote_window_fndecl_54638_fields
++extra_mpdu_prefix_len_lib80211_crypto_ops_54644_fields extra_mpdu_prefix_len lib80211_crypto_ops 0 54644 NULL nohasharray
++nchannels_cosa_data_54644_fields nchannels cosa_data 0 54644 &extra_mpdu_prefix_len_lib80211_crypto_ops_54644_fields
++MaxChainDepth_mpt3sas_facts_54646_fields MaxChainDepth mpt3sas_facts 0 54646 NULL
++write_msg_fndecl_54647_fields write_msg fndecl 3 54647 NULL
++calc_buffer_ahash_fndecl_54648_fields calc_buffer_ahash fndecl 2 54648 NULL
++__inode_permission_fndecl_54654_fields __inode_permission fndecl 0 54654 NULL
++tx_flags_fe_priv_54658_fields tx_flags fe_priv 0 54658 NULL
++reshape_position_mddev_54660_fields reshape_position mddev 0 54660 NULL nohasharray
++truncate_pagecache_fndecl_54660_fields truncate_pagecache fndecl 2 54660 &reshape_position_mddev_54660_fields
++s_session_udf_sb_info_54662_fields s_session udf_sb_info 0 54662 NULL
++ssid_len_hostap_bss_info_54670_fields ssid_len hostap_bss_info 0 54670 NULL
++sb_imax_pct_xfs_sb_54671_fields sb_imax_pct xfs_sb 0 54671 NULL
++id_pps_device_54684_fields id pps_device 0 54684 NULL
++fwbulkwritelen_tda10048_config_54693_fields fwbulkwritelen tda10048_config 0 54693 NULL
++num_queue_pairs_i40e_vsi_54696_fields num_queue_pairs i40e_vsi 0 54696 NULL
++max_pages_per_frmr_ocrdma_dev_attr_54699_fields max_pages_per_frmr ocrdma_dev_attr 0 54699 NULL
++ia_rows_ar5416IniArray_54700_fields ia_rows ar5416IniArray 0 54700 NULL
++osd_req_op_notify_ack_init_fndecl_54701_fields osd_req_op_notify_ack_init fndecl 6 54701 NULL
++qed_sriov_configure_fndecl_54702_fields qed_sriov_configure fndecl 2 54702 NULL
++bo_number_drm_amdgpu_bo_list_in_54706_fields bo_number drm_amdgpu_bo_list_in 0 54706 NULL
++buffer_size_pisosr_gpio_54707_fields buffer_size pisosr_gpio 0 54707 NULL
++read_endpoint_zr364xx_camera_54710_fields read_endpoint zr364xx_camera 0 54710 NULL
++process_rcvd_status_fndecl_54722_fields process_rcvd_status fndecl 3 54722 NULL
++queue_size_eata_info_54734_fields queue_size eata_info 0 54734 NULL
++wBytesPerInterval_usb_ss_ep_comp_descriptor_54739_fields wBytesPerInterval usb_ss_ep_comp_descriptor 0 54739 NULL
++end_writequeue_entry_54752_fields end writequeue_entry 0 54752 NULL
++lpfc_hba_queue_depth_init_fndecl_54754_fields lpfc_hba_queue_depth_init fndecl 2 54754 NULL
++size__drm_via_cmdbuffer_54755_fields size _drm_via_cmdbuffer 0 54755 NULL
++spi_xcomm_setup_transfer_fndecl_54757_fields spi_xcomm_setup_transfer fndecl 0 54757 NULL
++qib_lkey_table_size_vardecl_qib_verbs_c_54764_fields qib_lkey_table_size vardecl_qib_verbs.c 0 54764 NULL
++hsc_major_vardecl_hsi_char_c_54769_fields hsc_major vardecl_hsi_char.c 0 54769 NULL
++x_len_ccp_ecc_point_54774_fields x_len ccp_ecc_point 0 54774 NULL
++start_fstrim_range_54775_fields start fstrim_range 0 54775 NULL
++append_cnt_ixgbe_cb_54776_fields append_cnt ixgbe_cb 0 54776 NULL
++ext_channel_count_hda_gen_spec_54778_fields ext_channel_count hda_gen_spec 0 54778 NULL
++xfs_rtallocate_extent_fndecl_54783_fields xfs_rtallocate_extent fndecl 2-8-4-0 54783 NULL
++rcvegrbuf_chunks_qib_ctxtdata_54789_fields rcvegrbuf_chunks qib_ctxtdata 0 54789 NULL
++size_dvb_ringbuffer_54794_fields size dvb_ringbuffer 0 54794 NULL
++num_sg_agp_memory_54800_fields num_sg agp_memory 0 54800 NULL
++num_snd_bebob_meter_spec_54805_fields num snd_bebob_meter_spec 0 54805 NULL
++dma_reserve_vardecl_page_alloc_c_54807_fields dma_reserve vardecl_page_alloc.c 0 54807 NULL
++fsx_extsize_fsxattr_54812_fields fsx_extsize fsxattr 0 54812 NULL
++ep_out_ksdazzle_cb_54817_fields ep_out ksdazzle_cb 0 54817 NULL nohasharray
++stripe_sectors_dm_raid_superblock_54817_fields stripe_sectors dm_raid_superblock 0 54817 &ep_out_ksdazzle_cb_54817_fields nohasharray
++nv50_vm_create_fndecl_54817_fields nv50_vm_create fndecl 3-2 54817 &stripe_sectors_dm_raid_superblock_54817_fields
++mtu_cap_rxe_port_54821_fields mtu_cap rxe_port 0 54821 NULL
++target_count_dm_ioctl_54826_fields target_count dm_ioctl 0 54826 NULL
++last_adv_data_len_discovery_state_54833_fields last_adv_data_len discovery_state 0 54833 NULL
++kernel_readv_fndecl_54834_fields kernel_readv fndecl 3 54834 NULL
++bgpio_bits_gpio_chip_54844_fields bgpio_bits gpio_chip 0 54844 NULL
++reiserfs_readpages_fndecl_54846_fields reiserfs_readpages fndecl 4 54846 NULL
++request_lock_fndecl_54853_fields request_lock fndecl 4 54853 NULL
++addr_len_net_device_54857_fields addr_len net_device 0 54857 NULL
++sr_blkno_ocfs2_suballoc_result_54860_fields sr_blkno ocfs2_suballoc_result 0 54860 NULL
++shmem_file_llseek_fndecl_54863_fields shmem_file_llseek fndecl 2 54863 NULL nohasharray
++mru_ippp_struct_54863_fields mru ippp_struct 0 54863 &shmem_file_llseek_fndecl_54863_fields
++leaf_copy_boundary_item_fndecl_54870_fields leaf_copy_boundary_item fndecl 4 54870 NULL
++cxgb4_iov_configure_fndecl_54874_fields cxgb4_iov_configure fndecl 2 54874 NULL
++bufsize_nm256_stream_54875_fields bufsize nm256_stream 0 54875 NULL
++md_super_write_fndecl_54884_fields md_super_write fndecl 4-3 54884 NULL
++__breadahead_fndecl_54896_fields __breadahead fndecl 3-2 54896 NULL
++dm_table_create_fndecl_54900_fields dm_table_create fndecl 3 54900 NULL
++ext4_es_cache_extent_fndecl_54906_fields ext4_es_cache_extent fndecl 2-3 54906 NULL
++numa_distance_cnt_vardecl_numa_c_54911_fields numa_distance_cnt vardecl_numa.c 0 54911 NULL
++iscsit_build_pdu_and_seq_lists_fndecl_54916_fields iscsit_build_pdu_and_seq_lists fndecl 2 54916 NULL
++line_length_fb_fix_screeninfo_54923_fields line_length fb_fix_screeninfo 0 54923 NULL nohasharray
++ipr_copy_ucode_buffer_fndecl_54923_fields ipr_copy_ucode_buffer fndecl 3 54923 &line_length_fb_fix_screeninfo_54923_fields
++sector_dm_io_region_54924_fields sector dm_io_region 0 54924 NULL
++__clone_blkaddrs_fndecl_54943_fields __clone_blkaddrs fndecl 6-5 54943 NULL
++blk_queue_logical_block_size_fndecl_54946_fields blk_queue_logical_block_size fndecl 2 54946 NULL
++page_add_anon_rmap_fndecl_54950_fields page_add_anon_rmap fndecl 3 54950 NULL
++encx24j600_cmdn_fndecl_54953_fields encx24j600_cmdn fndecl 4 54953 NULL nohasharray
++per_rxd_space_vxge_hw_ring_attr_54953_fields per_rxd_space vxge_hw_ring_attr 0 54953 &encx24j600_cmdn_fndecl_54953_fields
++log_blocks_per_seg_f2fs_super_block_54960_fields log_blocks_per_seg f2fs_super_block 0 54960 NULL
++pci_enable_sriov_fndecl_54962_fields pci_enable_sriov fndecl 2 54962 NULL
++offset_usb_iso_packet_descriptor_54977_fields offset usb_iso_packet_descriptor 0 54977 NULL
++v4l2_src_w_yuv_playback_info_54979_fields v4l2_src_w yuv_playback_info 0 54979 NULL
++rx_frame_size_pn533_frame_ops_54990_fields rx_frame_size pn533_frame_ops 0 54990 NULL
++ns_last_cno_the_nilfs_54997_fields ns_last_cno the_nilfs 0 54997 NULL
++rx_bufsize_bc_state_54999_fields rx_bufsize bc_state 0 54999 NULL nohasharray
++send_wqe_overhead_fndecl_54999_fields send_wqe_overhead fndecl 0 54999 &rx_bufsize_bc_state_54999_fields
++of_irq_to_resource_fndecl_55008_fields of_irq_to_resource fndecl 2 55008 NULL
++reply_payload_rcv_len_iscsi_bsg_reply_55012_fields reply_payload_rcv_len iscsi_bsg_reply 0 55012 NULL
++of_pci_get_host_bridge_resources_fndecl_55015_fields of_pci_get_host_bridge_resources fndecl 3-2 55015 NULL
++cz_smu_populate_single_scratch_entry_fndecl_55022_fields cz_smu_populate_single_scratch_entry fndecl 3 55022 NULL
++get_memsize_fndecl_55032_fields get_memsize fndecl 0 55032 NULL
++ov518_i2c_r_fndecl_55039_fields ov518_i2c_r fndecl 0 55039 NULL
++vram_end_amdgpu_mc_55051_fields vram_end amdgpu_mc 0 55051 NULL
++h_panel_info_55057_fields h panel_info 0 55057 NULL nohasharray
++osd_xres_vardecl_ivtvfb_c_55057_fields osd_xres vardecl_ivtvfb.c 0 55057 &h_panel_info_55057_fields
++olo_num_comps_pnfs_osd_layout_55062_fields olo_num_comps pnfs_osd_layout 0 55062 NULL
++restart_sge_fndecl_55067_fields restart_sge fndecl 0-4-3 55067 NULL
++size_netup_unidvb_buffer_55068_fields size netup_unidvb_buffer 0 55068 NULL
++p9_virtio_zc_request_fndecl_55074_fields p9_virtio_zc_request fndecl 6-5-7 55074 NULL
++dev_dm_ioctl_55075_fields dev dm_ioctl 0 55075 NULL
++btrfs_truncate_block_fndecl_55083_fields btrfs_truncate_block fndecl 2 55083 NULL nohasharray
++__snd_rawmidi_transmit_ack_fndecl_55083_fields __snd_rawmidi_transmit_ack fndecl 0-2 55083 &btrfs_truncate_block_fndecl_55083_fields
++frame_len_b43legacy_rxhdr_fw3_55086_fields frame_len b43legacy_rxhdr_fw3 0 55086 NULL
++vlan_rx_desc_55097_fields vlan rx_desc 0 55097 NULL
++nftids_tid_info_55104_fields nftids tid_info 0 55104 NULL nohasharray
++fat_mirror_bhs_fndecl_55104_fields fat_mirror_bhs fndecl 0 55104 &nftids_tid_info_55104_fields
++num_channels_ad5360_chip_info_55106_fields num_channels ad5360_chip_info 0 55106 NULL nohasharray
++fat_dir_entries_fat_bios_param_block_55106_fields fat_dir_entries fat_bios_param_block 0 55106 &num_channels_ad5360_chip_info_55106_fields
++pnfs_num_cont_bytes_fndecl_55107_fields pnfs_num_cont_bytes fndecl 0-2 55107 NULL
++min_channel_count_hda_gen_spec_55108_fields min_channel_count hda_gen_spec 0 55108 NULL
++scatterwalk_ffwd_fndecl_55110_fields scatterwalk_ffwd fndecl 3 55110 NULL
++y_zoran_overlay_settings_55113_fields y zoran_overlay_settings 0 55113 NULL
++unpack_to_rootfs_fndecl_55124_fields unpack_to_rootfs fndecl 2 55124 NULL
++ea_data_len_gfs2_ea_header_55134_fields ea_data_len gfs2_ea_header 0 55134 NULL
++___ieee80211_stop_rx_ba_session_fndecl_55145_fields ___ieee80211_stop_rx_ba_session fndecl 2 55145 NULL
++namelen_dlm_lock_params_55146_fields namelen dlm_lock_params 0 55146 NULL
++gigaset_isowbuf_getbytes_fndecl_55147_fields gigaset_isowbuf_getbytes fndecl 0-2 55147 NULL
++befs_find_brun_dblindirect_fndecl_55152_fields befs_find_brun_dblindirect fndecl 3 55152 NULL
++offset_req_ies_ndis_80211_assoc_info_55155_fields offset_req_ies ndis_80211_assoc_info 0 55155 NULL
++sb_start_md_rdev_55161_fields sb_start md_rdev 0 55161 NULL
++bytes_xfered_i40iw_cq_poll_info_55165_fields bytes_xfered i40iw_cq_poll_info 0 55165 NULL
++len_replay_entry_55168_fields len replay_entry 0 55168 NULL
++pid_filter_count_dvb_usb_adapter_fe_properties_55180_fields pid_filter_count dvb_usb_adapter_fe_properties 0 55180 NULL
++hpfs_load_code_page_fndecl_55184_fields hpfs_load_code_page fndecl 2 55184 NULL
++rvda_opregion_asle_55185_fields rvda opregion_asle 0 55185 NULL
++result_dio_55189_fields result dio 0 55189 NULL
++extended_capabilities_len_wiphy_iftype_ext_capab_55191_fields extended_capabilities_len wiphy_iftype_ext_capab 0 55191 NULL nohasharray
++n_limits_ieee80211_iface_combination_55191_fields n_limits ieee80211_iface_combination 0 55191 &extended_capabilities_len_wiphy_iftype_ext_capab_55191_fields
++vmxnet3_change_mtu_fndecl_55195_fields vmxnet3_change_mtu fndecl 2 55195 NULL
++seg_count_agp_region_55196_fields seg_count agp_region 0 55196 NULL
++drm_gtf2_2c_fndecl_55202_fields drm_gtf2_2c fndecl 0 55202 NULL
++len_uffdio_range_55211_fields len uffdio_range 0 55211 NULL
++num_eqs_mlx4_caps_55225_fields num_eqs mlx4_caps 0 55225 NULL
++adv_instance_cnt_hci_dev_55228_fields adv_instance_cnt hci_dev 0 55228 NULL
++iwl_read_prph_fndecl_55229_fields iwl_read_prph fndecl 0 55229 NULL
++btrfs_prealloc_file_range_trans_fndecl_55231_fields btrfs_prealloc_file_range_trans fndecl 4-5 55231 NULL
++sb_logsunit_xfs_sb_55236_fields sb_logsunit xfs_sb 0 55236 NULL
++ibnl_put_attr_fndecl_55238_fields ibnl_put_attr fndecl 3 55238 NULL
++nvme_rdma_init_queue_fndecl_55245_fields nvme_rdma_init_queue fndecl 3 55245 NULL
++mwifiex_set_encode_fndecl_55247_fields mwifiex_set_encode fndecl 4 55247 NULL
++d_reclen_venus_dirent_55253_fields d_reclen venus_dirent 0 55253 NULL
++__filemap_fdatawrite_range_fndecl_55259_fields __filemap_fdatawrite_range fndecl 0-2-3 55259 NULL
++mbox_count_blogic_adapter_55274_fields mbox_count blogic_adapter 0 55274 NULL
++bSubframeSize_uac_format_type_i_discrete_descriptor_55277_fields bSubframeSize uac_format_type_i_discrete_descriptor 0 55277 NULL nohasharray
++sgoffset_cxgbi_task_data_55277_fields sgoffset cxgbi_task_data 0 55277 &bSubframeSize_uac_format_type_i_discrete_descriptor_55277_fields
++apic_phys_vardecl_apic_c_55279_fields apic_phys vardecl_apic.c 0 55279 NULL nohasharray
++ext2_acl_from_disk_fndecl_55279_fields ext2_acl_from_disk fndecl 2 55279 &apic_phys_vardecl_apic_c_55279_fields
++ld_default_stripe_count_lov_desc_55281_fields ld_default_stripe_count lov_desc 0 55281 NULL
++copy_to_urb_fndecl_55284_fields copy_to_urb fndecl 5-4 55284 NULL
++hdrlen_ipv6_rt_hdr_55289_fields hdrlen ipv6_rt_hdr 0 55289 NULL
++c_can_read_msg_object_fndecl_55291_fields c_can_read_msg_object fndecl 3 55291 NULL
++regmap_irq_chip_get_base_fndecl_55298_fields regmap_irq_chip_get_base fndecl 0 55298 NULL
++upd_bytes_ubi_volume_55301_fields upd_bytes ubi_volume 0 55301 NULL
++tgt_cnt_snic_report_tgts_cmpl_55306_fields tgt_cnt snic_report_tgts_cmpl 0 55306 NULL
++mxl111sf_stream_config_bulk_fndecl_55308_fields mxl111sf_stream_config_bulk fndecl 2 55308 NULL
++xfs_dialloc_fndecl_55309_fields xfs_dialloc fndecl 2 55309 NULL
++xfs_log_mount_fndecl_55312_fields xfs_log_mount fndecl 3-4 55312 NULL
++bm_page_io_async_fndecl_55313_fields bm_page_io_async fndecl 2 55313 NULL nohasharray
++dataflash_read_fndecl_55313_fields dataflash_read fndecl 3 55313 &bm_page_io_async_fndecl_55313_fields
++mon_buff_area_shrink_fndecl_55317_fields mon_buff_area_shrink fndecl 2 55317 NULL
++pcibios_iov_resource_alignment_fndecl_55327_fields pcibios_iov_resource_alignment fndecl 0 55327 NULL
++p_size_dh_55335_fields p_size dh 0 55335 NULL
++alc_alloc_spec_fndecl_55356_fields alc_alloc_spec fndecl 2 55356 NULL
++btrfs_csum_one_bio_fndecl_55370_fields btrfs_csum_one_bio fndecl 0 55370 NULL
++cdc_mbim_process_dgram_fndecl_55371_fields cdc_mbim_process_dgram fndecl 4-3 55371 NULL nohasharray
++sctp_addto_param_fndecl_55371_fields sctp_addto_param fndecl 2 55371 &cdc_mbim_process_dgram_fndecl_55371_fields
++DataLength_smb2_write_rsp_55389_fields DataLength smb2_write_rsp 0 55389 NULL
++st_sensors_spi_read_multiple_byte_fndecl_55393_fields st_sensors_spi_read_multiple_byte fndecl 4 55393 NULL
++dxfer_len_skd_sg_io_55394_fields dxfer_len skd_sg_io 0 55394 NULL
++index_capsule_info_55396_fields index capsule_info 0 55396 NULL
++nprim_symtab_55398_fields nprim symtab 0 55398 NULL
++skb_to_sgvec_fndecl_55400_fields skb_to_sgvec fndecl 0-4-3 55400 NULL
++data_len_nf_conntrack_helper_55405_fields data_len nf_conntrack_helper 0 55405 NULL
++first_sd_index_i40iw_hmc_info_55411_fields first_sd_index i40iw_hmc_info 0 55411 NULL
++sd_cnt_i40iw_hmc_sd_table_55416_fields sd_cnt i40iw_hmc_sd_table 0 55416 NULL
++min_param_range_55419_fields min param_range 0 55419 NULL
++start_iwl_prph_range_55420_fields start iwl_prph_range 0 55420 NULL
++memblock_trim_memory_fndecl_55423_fields memblock_trim_memory fndecl 1 55423 NULL
++snd_pcm_format_width_fndecl_55426_fields snd_pcm_format_width fndecl 0 55426 NULL
++hidp_set_raw_report_fndecl_55427_fields hidp_set_raw_report fndecl 4 55427 NULL
++irq_sfi_timer_table_entry_55432_fields irq sfi_timer_table_entry 0 55432 NULL
++rate_via_rate_lock_55434_fields rate via_rate_lock 0 55434 NULL
++rbd_osd_req_create_fndecl_55437_fields rbd_osd_req_create fndecl 3 55437 NULL
++wake_packet_length_iwl_wowlan_status_data_55438_fields wake_packet_length iwl_wowlan_status_data 0 55438 NULL
++nilfs_read_log_header_fndecl_55445_fields nilfs_read_log_header fndecl 2 55445 NULL nohasharray
++scan_read32_fndecl_55445_fields scan_read32 fndecl 0 55445 &nilfs_read_log_header_fndecl_55445_fields
++dma_length_scatterlist_55447_fields dma_length scatterlist 0 55447 NULL nohasharray
++klen_nft_set_55447_fields klen nft_set 0 55447 &dma_length_scatterlist_55447_fields
++set_sample_rate_fndecl_55451_fields set_sample_rate fndecl 2 55451 NULL
++acpi_register_gsi_fndecl_55453_fields acpi_register_gsi fndecl 0 55453 NULL
++n_tty_receive_buf_fndecl_55457_fields n_tty_receive_buf fndecl 4 55457 NULL
++bcma_bus_next_num_vardecl_main_c_55461_fields bcma_bus_next_num vardecl_main.c 0 55461 NULL
++rx_ring2_size_vmxnet3_adapter_55465_fields rx_ring2_size vmxnet3_adapter 0 55465 NULL
++macvtap_major_vardecl_macvtap_c_55469_fields macvtap_major vardecl_macvtap.c 0 55469 NULL
++xfs_bmapi_write_fndecl_55475_fields xfs_bmapi_write fndecl 3-4-0 55475 NULL
++ext4_da_write_begin_fndecl_55476_fields ext4_da_write_begin fndecl 4-3 55476 NULL
++vrefresh_drm_display_mode_55481_fields vrefresh drm_display_mode 0 55481 NULL nohasharray
++__send_command_fndecl_55481_fields __send_command fndecl 5-7 55481 &vrefresh_drm_display_mode_55481_fields
++orangefs_bufmap_copy_to_iovec_fndecl_55482_fields orangefs_bufmap_copy_to_iovec fndecl 3 55482 NULL
++ocfs2_read_dx_leaf_fndecl_55488_fields ocfs2_read_dx_leaf fndecl 2 55488 NULL nohasharray
++data_offset_rndis_data_hdr_55488_fields data_offset rndis_data_hdr 0 55488 &ocfs2_read_dx_leaf_fndecl_55488_fields
++nft_set_ext_add_length_fndecl_55489_fields nft_set_ext_add_length fndecl 3 55489 NULL
++rx_jumbo_thresh_bnx2_55494_fields rx_jumbo_thresh bnx2 0 55494 NULL nohasharray
++data_length_iscsi_data_count_55494_fields data_length iscsi_data_count 0 55494 &rx_jumbo_thresh_bnx2_55494_fields nohasharray
++r_offset_rds_page_remainder_55494_fields r_offset rds_page_remainder 0 55494 &data_length_iscsi_data_count_55494_fields
++iram_offset_sst_res_info_55518_fields iram_offset sst_res_info 0 55518 NULL
++root_dm_pool_metadata_55520_fields root dm_pool_metadata 0 55520 NULL
++reg_bits_regmap_config_55521_fields reg_bits regmap_config 0 55521 NULL
++__blkdev_issue_discard_fndecl_55526_fields __blkdev_issue_discard fndecl 0-3-2 55526 NULL nohasharray
++NumBlockTypes_cfi_intelext_regioninfo_55526_fields NumBlockTypes cfi_intelext_regioninfo 0 55526 &__blkdev_issue_discard_fndecl_55526_fields
++bofs_count_irlap_cb_55531_fields bofs_count irlap_cb 0 55531 NULL nohasharray
++iscsi_login_rx_data_fndecl_55531_fields iscsi_login_rx_data fndecl 3 55531 &bofs_count_irlap_cb_55531_fields
++blkdev_max_hw_sectors_vardecl_dev_c_55533_fields blkdev_max_hw_sectors vardecl_dev.c 0 55533 NULL
++irq_intel_lpss_platform_info_55538_fields irq intel_lpss_platform_info 0 55538 NULL
++crtcs_psb_ops_55540_fields crtcs psb_ops 0 55540 NULL
++rf_blkno_ocfs2_refcount_block_55545_fields rf_blkno ocfs2_refcount_block 0 55545 NULL
++tmp_afs_call_55554_fields tmp afs_call 0 55554 NULL
++usVSyncOffset__ATOM_DTD_FORMAT_55558_fields usVSyncOffset _ATOM_DTD_FORMAT 0 55558 NULL
++read_reg_fndecl_55560_fields read_reg fndecl 0 55560 NULL
++iv_len_ieee80211_key_conf_55561_fields iv_len ieee80211_key_conf 0 55561 NULL
++io_tlb_overflow_vardecl_swiotlb_c_55570_fields io_tlb_overflow vardecl_swiotlb.c 0 55570 NULL
++if_sdio_read_rx_len_fndecl_55579_fields if_sdio_read_rx_len fndecl 0 55579 NULL
++index_vardecl_pcsp_c_55582_fields index vardecl_pcsp.c 0 55582 NULL
++coh_page_bufsize_cl_object_header_55585_fields coh_page_bufsize cl_object_header 0 55585 NULL
++rcvtid_size_ctxt_eager_bufs_55589_fields rcvtid_size ctxt_eager_bufs 0 55589 NULL
++split_by_ceph_inode_frag_55595_fields split_by ceph_inode_frag 0 55595 NULL
++ext4_punch_hole_fndecl_55604_fields ext4_punch_hole fndecl 2-3 55604 NULL
++overlay_out_top_vivid_dev_55610_fields overlay_out_top vivid_dev 0 55610 NULL
++udplite_manip_pkt_fndecl_55611_fields udplite_manip_pkt fndecl 4 55611 NULL
++length_ipw_rx_frame_55612_fields length ipw_rx_frame 0 55612 NULL
++alg_trunc_len_xfrm_algo_auth_55613_fields alg_trunc_len xfrm_algo_auth 0 55613 NULL
++initial_width_vmw_private_55615_fields initial_width vmw_private 0 55615 NULL
++vmci_transport_dgram_dequeue_fndecl_55628_fields vmci_transport_dgram_dequeue fndecl 3 55628 NULL
++bin_string_fndecl_55631_fields bin_string fndecl 5-3 55631 NULL
++max_pkt_size_cx231xx_isoc_ctl_55637_fields max_pkt_size cx231xx_isoc_ctl 0 55637 NULL
++extra_tx_headroom_ieee80211_hw_55638_fields extra_tx_headroom ieee80211_hw 0 55638 NULL
++mr_umem_get_fndecl_55642_fields mr_umem_get fndecl 2-3 55642 NULL
++rcvidx_isar_hw_55643_fields rcvidx isar_hw 0 55643 NULL nohasharray
++__blockdev_direct_IO_fndecl_55643_fields __blockdev_direct_IO fndecl 0 55643 &rcvidx_isar_hw_55643_fields
++sr_read_sector_fndecl_55647_fields sr_read_sector fndecl 3 55647 NULL
++start_sector_mspro_sys_info_55650_fields start_sector mspro_sys_info 0 55650 NULL
++raid10_copies_raid_set_55657_fields raid10_copies raid_set 0 55657 NULL
++max_len_ovs_action_trunc_55658_fields max_len ovs_action_trunc 0 55658 NULL
++ath6kl_sdio_io_fndecl_55662_fields ath6kl_sdio_io fndecl 5 55662 NULL
++pagl_rightrec_xfs_perag_55670_fields pagl_rightrec xfs_perag 0 55670 NULL
++smsc47m1_handle_resources_fndecl_55676_fields smsc47m1_handle_resources fndecl 1 55676 NULL
++al_stripes_drbd_md_55679_fields al_stripes drbd_md 0 55679 NULL
++omfs_iget_fndecl_55693_fields omfs_iget fndecl 2 55693 NULL nohasharray
++cp2112_i2c_write_read_req_fndecl_55693_fields cp2112_i2c_write_read_req fndecl 0-4 55693 &omfs_iget_fndecl_55693_fields
++st_nci_hci_dm_update_aid_fndecl_55699_fields st_nci_hci_dm_update_aid fndecl 3 55699 NULL
++unique_pos_vardecl_jfs_dtree_c_55709_fields unique_pos vardecl_jfs_dtree.c 0 55709 NULL
++inline_wsize_rpcrdma_create_data_internal_55719_fields inline_wsize rpcrdma_create_data_internal 0 55719 NULL
++fbcon_resize_fndecl_55724_fields fbcon_resize fndecl 2-3 55724 NULL
++dst_command_fndecl_55728_fields dst_command fndecl 3 55728 NULL
++vsi_iext_vxfs_sb_info_55734_fields vsi_iext vxfs_sb_info 0 55734 NULL
++btrfs_delalloc_reserve_metadata_fndecl_55736_fields btrfs_delalloc_reserve_metadata fndecl 0 55736 NULL
++max_eq_mlx4_func_55747_fields max_eq mlx4_func 0 55747 NULL
++nilfs_mdt_set_entry_size_fndecl_55751_fields nilfs_mdt_set_entry_size fndecl 2-3 55751 NULL nohasharray
++pad_len_ubifs_pad_node_55751_fields pad_len ubifs_pad_node 0 55751 &nilfs_mdt_set_entry_size_fndecl_55751_fields
++idma64_active_desc_size_fndecl_55752_fields idma64_active_desc_size fndecl 0 55752 NULL
++nilfs_cpfile_read_fndecl_55758_fields nilfs_cpfile_read fndecl 2 55758 NULL nohasharray
++cap_nvme_rdma_ctrl_55758_fields cap nvme_rdma_ctrl 0 55758 &nilfs_cpfile_read_fndecl_55758_fields
++lane_cnt_mipi_config_55759_fields lane_cnt mipi_config 0 55759 NULL
++offset_xfs_bmalloca_55767_fields offset xfs_bmalloca 0 55767 NULL
++get_current_sit_page_fndecl_55771_fields get_current_sit_page fndecl 2 55771 NULL nohasharray
++flag_lpfc_dmabufext_55771_fields flag lpfc_dmabufext 0 55771 &get_current_sit_page_fndecl_55771_fields
++dump_emit_fndecl_55772_fields dump_emit fndecl 3 55772 NULL
++width_cx25821_channel_55782_fields width cx25821_channel 0 55782 NULL
++MaxLiteCmds_vardecl_ips_c_55793_fields MaxLiteCmds vardecl_ips.c 0 55793 NULL
++lbs_lowrssi_write_fndecl_55802_fields lbs_lowrssi_write fndecl 3 55802 NULL
++media_dev_t_vardecl_media_devnode_c_55805_fields media_dev_t vardecl_media-devnode.c 0 55805 NULL
++xennet_tx_setup_grant_fndecl_55807_fields xennet_tx_setup_grant fndecl 3-2 55807 NULL
++velocity_rx_copy_fndecl_55812_fields velocity_rx_copy fndecl 2 55812 NULL
++encx24j600_raw_read_fndecl_55819_fields encx24j600_raw_read fndecl 4 55819 NULL
++result_status_yellowfin_desc_55822_fields result_status yellowfin_desc 0 55822 NULL
++sd_blksz_fw_dl_btmrvl_sdio_card_55832_fields sd_blksz_fw_dl btmrvl_sdio_card 0 55832 NULL
++dvb_ringbuffer_init_fndecl_55834_fields dvb_ringbuffer_init fndecl 3 55834 NULL
++or51132_readbuf_fndecl_55836_fields or51132_readbuf fndecl 3 55836 NULL
++max_cnt_i40iw_hmc_obj_info_55847_fields max_cnt i40iw_hmc_obj_info 0 55847 NULL
++dr_free_blk_ocfs2_dx_root_block_55848_fields dr_free_blk ocfs2_dx_root_block 0 55848 NULL
++s_segment_usage_size_nilfs_super_block_55851_fields s_segment_usage_size nilfs_super_block 0 55851 NULL
++__cfg80211_disconnected_fndecl_55853_fields __cfg80211_disconnected fndecl 3 55853 NULL
++rdma_rw_init_map_wrs_fndecl_55859_fields rdma_rw_init_map_wrs fndecl 5-6 55859 NULL
++ceph_msgpool_init_fndecl_55860_fields ceph_msgpool_init fndecl 3-4 55860 NULL
++snd_cwnd_tcp_sock_55861_fields snd_cwnd tcp_sock 0 55861 NULL
++__find_pending_exception_fndecl_55867_fields __find_pending_exception fndecl 3 55867 NULL
++__nonstatic_find_io_region_fndecl_55871_fields __nonstatic_find_io_region fndecl 2-3 55871 NULL
++usVSyncWidth__ATOM_DTD_FORMAT_55875_fields usVSyncWidth _ATOM_DTD_FORMAT 0 55875 NULL
++frame_size_usb_stream_config_55876_fields frame_size usb_stream_config 0 55876 NULL
++gtt_phys_start_psb_gtt_55877_fields gtt_phys_start psb_gtt 0 55877 NULL
++cp_table_size_amdgpu_rlc_55879_fields cp_table_size amdgpu_rlc 0 55879 NULL
++tomoyo_dump_page_fndecl_55882_fields tomoyo_dump_page fndecl 2 55882 NULL
++mb_cache_entry_create_fndecl_55893_fields mb_cache_entry_create fndecl 4 55893 NULL
++tlclk_major_vardecl_tlclk_c_55901_fields tlclk_major vardecl_tlclk.c 0 55901 NULL
++fragment_size_snd_compressed_buffer_55903_fields fragment_size snd_compressed_buffer 0 55903 NULL
++major_char_device_struct_55907_fields major char_device_struct 0 55907 NULL
++mrf24j40_long_regmap_read_fndecl_55922_fields mrf24j40_long_regmap_read fndecl 3-5 55922 NULL
++nf_nat_mangle_udp_packet_fndecl_55926_fields nf_nat_mangle_udp_packet fndecl 6-8 55926 NULL
++do_readv_writev_fndecl_55934_fields do_readv_writev fndecl 4 55934 NULL
++change_prot_numa_fndecl_55935_fields change_prot_numa fndecl 3-2 55935 NULL
++autofs4_write_fndecl_55944_fields autofs4_write fndecl 4 55944 NULL
++image_size_nvbios_pcirT_55946_fields image_size nvbios_pcirT 0 55946 NULL
++rate_snd_oxfw_stream_formation_55949_fields rate snd_oxfw_stream_formation 0 55949 NULL
++osst_seek_logical_blk_fndecl_55950_fields osst_seek_logical_blk fndecl 3 55950 NULL
++__generic_file_write_iter_fndecl_55960_fields __generic_file_write_iter fndecl 0 55960 NULL
++pkey_table_len_mthca_limits_55962_fields pkey_table_len mthca_limits 0 55962 NULL
++transfer_buffer_length_urb_55970_fields transfer_buffer_length urb 0 55970 NULL nohasharray
++data2_sisusb_command_55970_fields data2 sisusb_command 0 55970 &transfer_buffer_length_urb_55970_fields
++num_channels_max1027_chip_info_55971_fields num_channels max1027_chip_info 0 55971 NULL
++subbuf_size_rchan_55979_fields subbuf_size rchan 0 55979 NULL nohasharray
++scsi_sense_length_se_cmd_55979_fields scsi_sense_length se_cmd 0 55979 &subbuf_size_rchan_55979_fields
++mon_bin_get_data_fndecl_55998_fields mon_bin_get_data fndecl 0-4 55998 NULL
++max_degraded_r5conf_56004_fields max_degraded r5conf 0 56004 NULL
++len_pipe_buffer_56007_fields len pipe_buffer 0 56007 NULL
++qib_cdev_init_fndecl_56009_fields qib_cdev_init fndecl 1 56009 NULL
++midi_snd_bebob_stream_formation_56012_fields midi snd_bebob_stream_formation 0 56012 NULL
++usbtest_alloc_urb_fndecl_56013_fields usbtest_alloc_urb fndecl 2 56013 NULL
++i2400m_change_mtu_fndecl_56021_fields i2400m_change_mtu fndecl 2 56021 NULL
++num_pins_lola_pin_array_56022_fields num_pins lola_pin_array 0 56022 NULL
++__ocfs2_change_file_space_fndecl_56023_fields __ocfs2_change_file_space fndecl 3 56023 NULL
++vlan_id_ib_mac_iocb_rsp_56025_fields vlan_id ib_mac_iocb_rsp 0 56025 NULL
++ov519_pkt_scan_fndecl_56026_fields ov519_pkt_scan fndecl 3 56026 NULL
++vbi_pixel_to_capture_vardecl_saa7146_vbi_c_56037_fields vbi_pixel_to_capture vardecl_saa7146_vbi.c 0 56037 NULL nohasharray
++sg_update_list_fndecl_56037_fields sg_update_list fndecl 2 56037 &vbi_pixel_to_capture_vardecl_saa7146_vbi_c_56037_fields nohasharray
++temp_num_nct6683_data_56037_fields temp_num nct6683_data 0 56037 &sg_update_list_fndecl_56037_fields
++wr_len_i40iw_sq_uk_wr_trk_info_56039_fields wr_len i40iw_sq_uk_wr_trk_info 0 56039 NULL
++totalram_pages_vardecl_56043_fields totalram_pages vardecl 0 56043 NULL
++hpi_instream_read_buf_fndecl_56045_fields hpi_instream_read_buf fndecl 3 56045 NULL
++status_whc_qtd_56049_fields status whc_qtd 0 56049 NULL
++usb_wwan_setup_urb_fndecl_56054_fields usb_wwan_setup_urb fndecl 6-3-2 56054 NULL
++mod_xfs_alloc_arg_56058_fields mod xfs_alloc_arg 0 56058 NULL
++drm_mm_insert_helper_range_fndecl_56060_fields drm_mm_insert_helper_range fndecl 3 56060 NULL
++xfs_trans_free_extent_fndecl_56063_fields xfs_trans_free_extent fndecl 3-4 56063 NULL
++frag_ceph_mds_reply_dirfrag_56070_fields frag ceph_mds_reply_dirfrag 0 56070 NULL
++full_page_bnx2x_agg_info_56071_fields full_page bnx2x_agg_info 0 56071 NULL
++pkcs1pad_sg_set_buf_fndecl_56076_fields pkcs1pad_sg_set_buf fndecl 3 56076 NULL
++tx_fifo_num_vardecl_s2io_c_56077_fields tx_fifo_num vardecl_s2io.c 0 56077 NULL
++num_chunks_drm_amdgpu_cs_in_56088_fields num_chunks drm_amdgpu_cs_in 0 56088 NULL
++size_perf_event_header_56096_fields size perf_event_header 0 56096 NULL
++datalength_fwheader_56097_fields datalength fwheader 0 56097 NULL
++l_sectBBsize_xlog_56103_fields l_sectBBsize xlog 0 56103 NULL
++max_frame_size__synclinkmp_info_56104_fields max_frame_size _synclinkmp_info 0 56104 NULL
++max_request_packet_size_ec_response_get_protocol_info_56107_fields max_request_packet_size ec_response_get_protocol_info 0 56107 NULL
++p54_alloc_skb_fndecl_56109_fields p54_alloc_skb fndecl 3 56109 NULL
++hw_context_send_context_56118_fields hw_context send_context 0 56118 NULL
++q0_depth_bna_rx_config_56122_fields q0_depth bna_rx_config 0 56122 NULL
++ath5k_setup_channels_fndecl_56123_fields ath5k_setup_channels fndecl 0 56123 NULL nohasharray
++max_queue_depth_vardecl_mpt3sas_base_c_56123_fields max_queue_depth vardecl_mpt3sas_base.c 0 56123 &ath5k_setup_channels_fndecl_56123_fields
++size_direct_56131_fields size direct 0 56131 NULL
++sl_max_ip_sf_socklist_56140_fields sl_max ip_sf_socklist 0 56140 NULL
++prepare_add_efi_setup_data_fndecl_56147_fields prepare_add_efi_setup_data fndecl 3-2 56147 NULL
++reiserfs_resize_fndecl_56154_fields reiserfs_resize fndecl 2 56154 NULL
++i2c_hid_get_raw_report_fndecl_56155_fields i2c_hid_get_raw_report fndecl 4 56155 NULL
++nd_num_o2nm_node_56160_fields nd_num o2nm_node 0 56160 NULL
++block_len_extent_map_56171_fields block_len extent_map 0 56171 NULL
++csum_offset_virtio_net_hdr_56180_fields csum_offset virtio_net_hdr 0 56180 NULL
++ivsize_vardecl_encrypted_c_56181_fields ivsize vardecl_encrypted.c 0 56181 NULL nohasharray
++sccb_reg_read_fndecl_56181_fields sccb_reg_read fndecl 0 56181 &ivsize_vardecl_encrypted_c_56181_fields
++xlog_rseek_logrec_hdr_fndecl_56182_fields xlog_rseek_logrec_hdr fndecl 2 56182 NULL
++sctp_make_heartbeat_ack_fndecl_56184_fields sctp_make_heartbeat_ack fndecl 4 56184 NULL
++rx_ring_size_bnx2_56185_fields rx_ring_size bnx2 0 56185 NULL
++geneve_build_skb_fndecl_56186_fields geneve_build_skb fndecl 5 56186 NULL
++wl1271_tx_fill_hdr_fndecl_56191_fields wl1271_tx_fill_hdr fndecl 4 56191 NULL
++kmemleak_free_part_fndecl_56193_fields kmemleak_free_part fndecl 2 56193 NULL
++rx_data_fndecl_56202_fields rx_data fndecl 4-3 56202 NULL nohasharray
++qgroupid_btrfs_qgroup_56202_fields qgroupid btrfs_qgroup 0 56202 &rx_data_fndecl_56202_fields
++dlen_pg_56210_fields dlen pg 0 56210 NULL
++jffs2_fill_wbuf_fndecl_56212_fields jffs2_fill_wbuf fndecl 3 56212 NULL
++width_v4l2_mbus_framefmt_56214_fields width v4l2_mbus_framefmt 0 56214 NULL
++ath10k_htt_tx_fetch_resp_fndecl_56215_fields ath10k_htt_tx_fetch_resp fndecl 5 56215 NULL
++sample_stack_user_perf_event_attr_56220_fields sample_stack_user perf_event_attr 0 56220 NULL
++reg_cache_size_snd_soc_codec_driver_56222_fields reg_cache_size snd_soc_codec_driver 0 56222 NULL nohasharray
++offset_cifs_writedata_56222_fields offset cifs_writedata 0 56222 &reg_cache_size_snd_soc_codec_driver_56222_fields
++reg_cache_size_omap_mcbsp_56223_fields reg_cache_size omap_mcbsp 0 56223 NULL
++depth_s2255_fmt_56229_fields depth s2255_fmt 0 56229 NULL
++psn_mask_rvt_driver_params_56230_fields psn_mask rvt_driver_params 0 56230 NULL
++ocfs2_mv_xattr_buckets_fndecl_56231_fields ocfs2_mv_xattr_buckets fndecl 6-3-5-4 56231 NULL
++security_inode_permission_fndecl_56235_fields security_inode_permission fndecl 0 56235 NULL
++wm8350_register_led_fndecl_56237_fields wm8350_register_led fndecl 2-4-3 56237 NULL
++max_recv_dlength_iscsi_bus_flash_conn_56238_fields max_recv_dlength iscsi_bus_flash_conn 0 56238 NULL
++af9013_wr_regs_fndecl_56239_fields af9013_wr_regs fndecl 4 56239 NULL
++wBlockNumber_ms_bootblock_sysinf_56240_fields wBlockNumber ms_bootblock_sysinf 0 56240 NULL
++cfpkt_peek_head_fndecl_56245_fields cfpkt_peek_head fndecl 3 56245 NULL
++qtd_fill_fndecl_56249_fields qtd_fill fndecl 5-6-3-4 56249 NULL nohasharray
++ima_calc_buffer_hash_fndecl_56249_fields ima_calc_buffer_hash fndecl 2 56249 &qtd_fill_fndecl_56249_fields
++dmreq_start_crypt_config_56268_fields dmreq_start crypt_config 0 56268 NULL
++flows_cnt_fq_56276_fields flows_cnt fq 0 56276 NULL nohasharray
++vyres_crtc_56276_fields vyres crtc 0 56276 &flows_cnt_fq_56276_fields
++s_raid_stride_ext4_super_block_56277_fields s_raid_stride ext4_super_block 0 56277 NULL
++pci_mmconfig_add_fndecl_56279_fields pci_mmconfig_add fndecl 2-3-4 56279 NULL
++dram_base_intel_sst_drv_56282_fields dram_base intel_sst_drv 0 56282 NULL
++header_length_txentry_desc_56288_fields header_length txentry_desc 0 56288 NULL
++nr_rates_audioformat_56293_fields nr_rates audioformat 0 56293 NULL
++intel_rotation_info_size_fndecl_56294_fields intel_rotation_info_size fndecl 0 56294 NULL
++ttymajor_vardecl_synclink_gt_c_56300_fields ttymajor vardecl_synclink_gt.c 0 56300 NULL
++ext4_fallocate_fndecl_56314_fields ext4_fallocate fndecl 3-4 56314 NULL
++essid_len_ipw_priv_56318_fields essid_len ipw_priv 0 56318 NULL
++ebt_compat_match_offset_fndecl_56334_fields ebt_compat_match_offset fndecl 0 56334 NULL
++ath6kl_wmi_ap_set_apsd_fndecl_56339_fields ath6kl_wmi_ap_set_apsd fndecl 2 56339 NULL
++drm_atomic_helper_plane_set_property_fndecl_56340_fields drm_atomic_helper_plane_set_property fndecl 3 56340 NULL
++tx_ring_size_bnx2_56345_fields tx_ring_size bnx2 0 56345 NULL
++blksize_vardecl_encrypted_c_56348_fields blksize vardecl_encrypted.c 0 56348 NULL
++macsec_add_dev_fndecl_56352_fields macsec_add_dev fndecl 3 56352 NULL
++gfs2_write_end_fndecl_56354_fields gfs2_write_end fndecl 5 56354 NULL
++dccp_ackvec_add_new_fndecl_56359_fields dccp_ackvec_add_new fndecl 2-3 56359 NULL
++acl_permission_check_fndecl_56360_fields acl_permission_check fndecl 0 56360 NULL
++interrupt_out_endpointAddress_usb_serial_port_56364_fields interrupt_out_endpointAddress usb_serial_port 0 56364 NULL
++ide_set_pio_mode_fndecl_56371_fields ide_set_pio_mode fndecl 2 56371 NULL
++xfs_alloc_ag_max_usable_fndecl_56380_fields xfs_alloc_ag_max_usable fndecl 0 56380 NULL
++len_asd_ha_addrspace_56381_fields len asd_ha_addrspace 0 56381 NULL
++stride_geom_56394_fields stride geom 0 56394 NULL
++ieee80211_fragment_fndecl_56395_fields ieee80211_fragment fndecl 4-3 56395 NULL
++lost_out_tcp_sock_56397_fields lost_out tcp_sock 0 56397 NULL
++buf_count_drm_device_dma_56399_fields buf_count drm_device_dma 0 56399 NULL
++ccw_clear_fndecl_56408_fields ccw_clear fndecl 3-5-6-4 56408 NULL
++f2fs_llseek_fndecl_56409_fields f2fs_llseek fndecl 2 56409 NULL
++ieee80211_auth_challenge_fndecl_56418_fields ieee80211_auth_challenge fndecl 3 56418 NULL
++notify_change_fndecl_56420_fields notify_change fndecl 0 56420 NULL
++max_recv_wr_ib_qp_cap_56426_fields max_recv_wr ib_qp_cap 0 56426 NULL
++llc_ui_sendmsg_fndecl_56432_fields llc_ui_sendmsg fndecl 3 56432 NULL
++ath6kl_wmi_cancel_remain_on_chnl_cmd_fndecl_56434_fields ath6kl_wmi_cancel_remain_on_chnl_cmd fndecl 2 56434 NULL nohasharray
++write_node_fndecl_56434_fields write_node fndecl 4 56434 &ath6kl_wmi_cancel_remain_on_chnl_cmd_fndecl_56434_fields
++idx_lebs_ubifs_lp_stats_56439_fields idx_lebs ubifs_lp_stats 0 56439 NULL nohasharray
++hsync_end_drm_display_mode_56439_fields hsync_end drm_display_mode 0 56439 &idx_lebs_ubifs_lp_stats_56439_fields nohasharray
++bdbars_count_intel8x0_56439_fields bdbars_count intel8x0 0 56439 &hsync_end_drm_display_mode_56439_fields
++vlan_tag_lro_56441_fields vlan_tag lro 0 56441 NULL nohasharray
++fb_sys_write_fndecl_56441_fields fb_sys_write fndecl 0 56441 &vlan_tag_lro_56441_fields
++gtk_ivlen_iwl_mvm_56442_fields gtk_ivlen iwl_mvm 0 56442 NULL nohasharray
++num_rx_queues_igb_adapter_56442_fields num_rx_queues igb_adapter 0 56442 &gtk_ivlen_iwl_mvm_56442_fields
++DataTransferLength_bulk_cb_wrap_56447_fields DataTransferLength bulk_cb_wrap 0 56447 NULL
++raw_send_hdrinc_fndecl_56449_fields raw_send_hdrinc fndecl 4 56449 NULL
++__ocfs2_increase_refcount_fndecl_56450_fields __ocfs2_increase_refcount fndecl 5-4 56450 NULL
++size_tcp_fastopen_request_56457_fields size tcp_fastopen_request 0 56457 NULL nohasharray
++block_dm_thin_lookup_result_56457_fields block dm_thin_lookup_result 0 56457 &size_tcp_fastopen_request_56457_fields
++winfo_size_data_queue_56462_fields winfo_size data_queue 0 56462 NULL nohasharray
++scnt_aoe_cfghdr_56462_fields scnt aoe_cfghdr 0 56462 &winfo_size_data_queue_56462_fields
++tpg_init_fndecl_56464_fields tpg_init fndecl 3-2 56464 NULL
++ia_size_iattr_56465_fields ia_size iattr 0 56465 NULL nohasharray
++packet_sendmsg_fndecl_56465_fields packet_sendmsg fndecl 3 56465 &ia_size_iattr_56465_fields
++banks_mca_config_56472_fields banks mca_config 0 56472 NULL
++__erst_clear_from_storage_fndecl_56476_fields __erst_clear_from_storage fndecl 1 56476 NULL
++sb_cnt_qed_sb_cnt_info_56477_fields sb_cnt qed_sb_cnt_info 0 56477 NULL
++func_suspend_usb_function_56478_fields func_suspend usb_function 0 56478 NULL
++ext4_split_convert_extents_fndecl_56493_fields ext4_split_convert_extents fndecl 0 56493 NULL
++nci_hci_send_cmd_fndecl_56495_fields nci_hci_send_cmd fndecl 5 56495 NULL
++free_bit_ocfs2_cached_block_free_56500_fields free_bit ocfs2_cached_block_free 0 56500 NULL
++choose_mtu_fndecl_56503_fields choose_mtu fndecl 0 56503 NULL nohasharray
++len_audit_proctitle_56503_fields len audit_proctitle 0 56503 &choose_mtu_fndecl_56503_fields
++process_ptload_program_headers_elf64_fndecl_56505_fields process_ptload_program_headers_elf64 fndecl 3-2 56505 NULL
++stream_size_yuv_playback_info_56511_fields stream_size yuv_playback_info 0 56511 NULL
++error_retry_list_with_code_fndecl_56518_fields error_retry_list_with_code fndecl 2 56518 NULL nohasharray
++ntb_netdev_rx_handler_fndecl_56518_fields ntb_netdev_rx_handler fndecl 4 56518 &error_retry_list_with_code_fndecl_56518_fields
++num_ids_amdgpu_vm_manager_56520_fields num_ids amdgpu_vm_manager 0 56520 NULL
++vp_modern_find_vqs_fndecl_56530_fields vp_modern_find_vqs fndecl 2 56530 NULL
++npins_byt_pinctrl_soc_data_56540_fields npins byt_pinctrl_soc_data 0 56540 NULL nohasharray
++sq_overhead_fndecl_56540_fields sq_overhead fndecl 0 56540 &npins_byt_pinctrl_soc_data_56540_fields
++priv_size_rocker_world_ops_56542_fields priv_size rocker_world_ops 0 56542 NULL
++snd_pcm_plug_client_size_fndecl_56544_fields snd_pcm_plug_client_size fndecl 0-2 56544 NULL
++max_ethqsets_sge_56552_fields max_ethqsets sge 0 56552 NULL
++sf_size_adapter_params_56574_fields sf_size adapter_params 0 56574 NULL
++sctp_tsnmap_grow_fndecl_56579_fields sctp_tsnmap_grow fndecl 2 56579 NULL
++buf_bytes_mmc_blk_ioc_data_56589_fields buf_bytes mmc_blk_ioc_data 0 56589 NULL
++qt2_write_fndecl_56603_fields qt2_write fndecl 4 56603 NULL
++cb_irq_yenta_socket_56604_fields cb_irq yenta_socket 0 56604 NULL
++q_num_hnae_handle_56609_fields q_num hnae_handle 0 56609 NULL
++security_size_rxrpc_connection_56613_fields security_size rxrpc_connection 0 56613 NULL
++pci_map_size_iadev_priv_56617_fields pci_map_size iadev_priv 0 56617 NULL
++ieee80211_tdls_mgmt_fndecl_56618_fields ieee80211_tdls_mgmt fndecl 10 56618 NULL
++memremap_fndecl_56619_fields memremap fndecl 2-1 56619 NULL nohasharray
++ext4_get_block_unwritten_fndecl_56619_fields ext4_get_block_unwritten fndecl 2 56619 &memremap_fndecl_56619_fields
++afs_dir_iterate_block_fndecl_56630_fields afs_dir_iterate_block fndecl 3 56630 NULL
++x509_note_issuer_fndecl_56631_fields x509_note_issuer fndecl 5 56631 NULL
++max_blk_count_mmc_host_56634_fields max_blk_count mmc_host 0 56634 NULL nohasharray
++get_register_page_interruptible_fndecl_56634_fields get_register_page_interruptible fndecl 5 56634 &max_blk_count_mmc_host_56634_fields nohasharray
++num_disc_configs_nci_rf_disc_cmd_56634_fields num_disc_configs nci_rf_disc_cmd 0 56634 &get_register_page_interruptible_fndecl_56634_fields
++arena_write_bytes_fndecl_56636_fields arena_write_bytes fndecl 0 56636 NULL
++devt_device_56638_fields devt device 0 56638 NULL
++last_sect_blkif_request_segment_56644_fields last_sect blkif_request_segment 0 56644 NULL
++bytenr_btrfs_root_item_56657_fields bytenr btrfs_root_item 0 56657 NULL
++__ksize_fndecl_56662_fields __ksize fndecl 0 56662 NULL
++xlog_set_state_fndecl_56663_fields xlog_set_state fndecl 2 56663 NULL
++__memblock_find_range_top_down_fndecl_56669_fields __memblock_find_range_top_down fndecl 0-4-3-1-2 56669 NULL nohasharray
++csio_scsi_iqlen_vardecl_56669_fields csio_scsi_iqlen vardecl 0 56669 &__memblock_find_range_top_down_fndecl_56669_fields
++len_fw_desc_56676_fields len fw_desc 0 56676 NULL
++pbl_top_rdma_info_56683_fields pbl_top rdma_info 0 56683 NULL
++max_channels_hda_multi_out_56686_fields max_channels hda_multi_out 0 56686 NULL
++ath6kl_usb_post_recv_transfers_fndecl_56687_fields ath6kl_usb_post_recv_transfers fndecl 2 56687 NULL nohasharray
++npages_in_use_dma_pool_56687_fields npages_in_use dma_pool 0 56687 &ath6kl_usb_post_recv_transfers_fndecl_56687_fields
++modulus_size_dw_guc_css_header_56691_fields modulus_size_dw guc_css_header 0 56691 NULL
++ks8851_rdreg_fndecl_56695_fields ks8851_rdreg fndecl 4 56695 NULL
++cfg_len_goodix_ts_data_56699_fields cfg_len goodix_ts_data 0 56699 NULL
++remove_migration_pte_fndecl_56701_fields remove_migration_pte fndecl 3 56701 NULL nohasharray
++ath6kl_wmi_set_rssi_filter_cmd_fndecl_56701_fields ath6kl_wmi_set_rssi_filter_cmd fndecl 2 56701 &remove_migration_pte_fndecl_56701_fields
++orangefs_file_llseek_fndecl_56704_fields orangefs_file_llseek fndecl 2 56704 NULL
++qgroupid_btrfs_ioctl_qgroup_create_args_56717_fields qgroupid btrfs_ioctl_qgroup_create_args 0 56717 NULL
++munlock_vma_pages_range_fndecl_56718_fields munlock_vma_pages_range fndecl 2 56718 NULL
++ext4_get_group_number_fndecl_56720_fields ext4_get_group_number fndecl 0 56720 NULL nohasharray
++rcvegrbuf_size_qib_ctxtdata_56720_fields rcvegrbuf_size qib_ctxtdata 0 56720 &ext4_get_group_number_fndecl_56720_fields
++opcnt_nfsd4_compoundargs_56722_fields opcnt nfsd4_compoundargs 0 56722 NULL
++offset_cw1200_txpriv_56729_fields offset cw1200_txpriv 0 56729 NULL
++tx_ring_size_mvpp2_port_56735_fields tx_ring_size mvpp2_port 0 56735 NULL
++search_empty_fndecl_56737_fields search_empty fndecl 2 56737 NULL
++drm_gem_cma_create_fndecl_56742_fields drm_gem_cma_create fndecl 2 56742 NULL nohasharray
++val_len_ceph_inode_xattr_56742_fields val_len ceph_inode_xattr 0 56742 &drm_gem_cma_create_fndecl_56742_fields
++sb_logsectlog_xfs_sb_56750_fields sb_logsectlog xfs_sb 0 56750 NULL
++page_offset_skb_frag_struct_56751_fields page_offset skb_frag_struct 0 56751 NULL
++read_pipe_ezusb_priv_56753_fields read_pipe ezusb_priv 0 56753 NULL nohasharray
++xprt_complete_bc_request_fndecl_56753_fields xprt_complete_bc_request fndecl 2 56753 &read_pipe_ezusb_priv_56753_fields
++length_scatterlist_56760_fields length scatterlist 0 56760 NULL
++npkt_cam_56768_fields npkt cam 0 56768 NULL
++arch_ptrace_fndecl_56774_fields arch_ptrace fndecl 3 56774 NULL
++max_rpi_lpfc_max_cfg_param_56782_fields max_rpi lpfc_max_cfg_param 0 56782 NULL
++vc_saved_y_vc_data_56792_fields vc_saved_y vc_data 0 56792 NULL nohasharray
++ext4_group_overhead_blocks_fndecl_56792_fields ext4_group_overhead_blocks fndecl 0 56792 &vc_saved_y_vc_data_56792_fields
++state_count_acpi_processor_performance_56807_fields state_count acpi_processor_performance 0 56807 NULL nohasharray
++context_id_bnx2fc_rport_56807_fields context_id bnx2fc_rport 0 56807 &state_count_acpi_processor_performance_56807_fields
++num_pages_vmci_queue_kern_if_56812_fields num_pages vmci_queue_kern_if 0 56812 NULL
++hugetlbfs_pagecache_page_fndecl_56822_fields hugetlbfs_pagecache_page fndecl 3 56822 NULL
++netdev_change_mtu_fndecl_56827_fields netdev_change_mtu fndecl 2 56827 NULL
++io_size_smi_info_56832_fields io_size smi_info 0 56832 NULL nohasharray
++acked_illinois_56832_fields acked illinois 0 56832 &io_size_smi_info_56832_fields
++truesize_sk_buff_56834_fields truesize sk_buff 0 56834 NULL
++tail_TxFifo_56844_fields tail TxFifo 0 56844 NULL
++unit_size_wlan_host_mem_req_56846_fields unit_size wlan_host_mem_req 0 56846 NULL
++transfer_one_spi_master_56858_fields transfer_one spi_master 0 56858 NULL
++max_cq_sz_mlx4_dev_cap_56868_fields max_cq_sz mlx4_dev_cap 0 56868 NULL
++status_pipe_uas_dev_info_56869_fields status_pipe uas_dev_info 0 56869 NULL
++combined_count_ethtool_channels_56871_fields combined_count ethtool_channels 0 56871 NULL
++freecom_writedata_fndecl_56872_fields freecom_writedata fndecl 4 56872 NULL
++read_aperture_fndecl_56876_fields read_aperture fndecl 0 56876 NULL
++copy_file_range_file_operations_56877_fields copy_file_range file_operations 0 56877 NULL nohasharray
++fat_rebuild_parent_fndecl_56877_fields fat_rebuild_parent fndecl 2 56877 &copy_file_range_file_operations_56877_fields nohasharray
++ath6kl_wmi_set_pvb_cmd_fndecl_56877_fields ath6kl_wmi_set_pvb_cmd fndecl 2 56877 &fat_rebuild_parent_fndecl_56877_fields
++xfs_itruncate_extents_fndecl_56879_fields xfs_itruncate_extents fndecl 4 56879 NULL nohasharray
++scsi_execute_fndecl_56879_fields scsi_execute fndecl 5 56879 &xfs_itruncate_extents_fndecl_56879_fields
++xfs_rmap_free_fndecl_56880_fields xfs_rmap_free fndecl 0 56880 NULL
++__btrfs_set_prop_fndecl_56883_fields __btrfs_set_prop fndecl 5 56883 NULL
++dx_dirent_blk_ocfs2_dx_entry_56884_fields dx_dirent_blk ocfs2_dx_entry 0 56884 NULL
++cmtp_send_frame_fndecl_56890_fields cmtp_send_frame fndecl 3 56890 NULL
++zr364xx_got_frame_fndecl_56891_fields zr364xx_got_frame fndecl 2 56891 NULL
++prev_adaption_gsm_dlci_56892_fields prev_adaption gsm_dlci 0 56892 NULL nohasharray
++total_size_qed_ilt_cli_blk_56892_fields total_size qed_ilt_cli_blk 0 56892 &prev_adaption_gsm_dlci_56892_fields nohasharray
++byte_count_drm_device_dma_56892_fields byte_count drm_device_dma 0 56892 &total_size_qed_ilt_cli_blk_56892_fields
++width_font_desc_56899_fields width font_desc 0 56899 NULL
++eld_size_hdac_hdmi_eld_56901_fields eld_size hdac_hdmi_eld 0 56901 NULL
++xen_find_free_area_fndecl_56905_fields xen_find_free_area fndecl 0-1 56905 NULL
++length_fw_cdev_send_response_56906_fields length fw_cdev_send_response 0 56906 NULL nohasharray
++__process_new_xattr_fndecl_56906_fields __process_new_xattr fndecl 6-4 56906 &length_fw_cdev_send_response_56906_fields nohasharray
++rho_hybla_56906_fields rho hybla 0 56906 &__process_new_xattr_fndecl_56906_fields
++max_port_number_tb_regs_switch_header_56907_fields max_port_number tb_regs_switch_header 0 56907 NULL
++mcopy_atomic_pte_fndecl_56913_fields mcopy_atomic_pte fndecl 4 56913 NULL
++diff_objects_assoc_array_ops_56914_fields diff_objects assoc_array_ops 0 56914 NULL
++xt_compat_target_offset_fndecl_56923_fields xt_compat_target_offset fndecl 0 56923 NULL nohasharray
++ip6_find_1stfragopt_fndecl_56923_fields ip6_find_1stfragopt fndecl 0 56923 &xt_compat_target_offset_fndecl_56923_fields
++vram_vardecl_nvidia_c_56925_fields vram vardecl_nvidia.c 0 56925 NULL
++beiscsi_process_async_pdu_fndecl_56929_fields beiscsi_process_async_pdu fndecl 6 56929 NULL
++data_len_ib_mac_iocb_rsp_56930_fields data_len ib_mac_iocb_rsp 0 56930 NULL
++max_tar_initio_host_56934_fields max_tar initio_host 0 56934 NULL
++vmw_gmr_bind_fndecl_56940_fields vmw_gmr_bind fndecl 3 56940 NULL
++len_rx_hdr_56949_fields len rx_hdr 0 56949 NULL
++target_submit_cmd_fndecl_56950_fields target_submit_cmd fndecl 6 56950 NULL
++memblock_set_node_fndecl_56955_fields memblock_set_node fndecl 2-1 56955 NULL
++DevSizeShift_qinfo_chip_56957_fields DevSizeShift qinfo_chip 0 56957 NULL
++i_lastalloc_affs_inode_info_56961_fields i_lastalloc affs_inode_info 0 56961 NULL
++cur_pkt_size_pktgen_dev_56962_fields cur_pkt_size pktgen_dev 0 56962 NULL
++spanned_pages_zone_56972_fields spanned_pages zone 0 56972 NULL
++find_next_chunk_fndecl_56983_fields find_next_chunk fndecl 0 56983 NULL
++ath6kl_wmi_startscan_cmd_fndecl_56985_fields ath6kl_wmi_startscan_cmd fndecl 8-2 56985 NULL
++i2c_hid_alloc_buffers_fndecl_56986_fields i2c_hid_alloc_buffers fndecl 2 56986 NULL
++max_packet_whc_qset_56991_fields max_packet whc_qset 0 56991 NULL nohasharray
++btrfs_dio_bio_alloc_fndecl_56991_fields btrfs_dio_bio_alloc fndecl 2 56991 &max_packet_whc_qset_56991_fields
++file_remove_privs_fndecl_57001_fields file_remove_privs fndecl 0 57001 NULL nohasharray
++num_tx_rings_bnx2_57001_fields num_tx_rings bnx2 0 57001 &file_remove_privs_fndecl_57001_fields
++edid_size_dlfb_data_57003_fields edid_size dlfb_data 0 57003 NULL
++max_size_akcipher_alg_57009_fields max_size akcipher_alg 0 57009 NULL
++ext4_clear_blocks_fndecl_57012_fields ext4_clear_blocks fndecl 4-5 57012 NULL
++watchdog_cdev_register_fndecl_57017_fields watchdog_cdev_register fndecl 2 57017 NULL
++expand_corename_fndecl_57021_fields expand_corename fndecl 2 57021 NULL
++buffer_bytes_max_snd_pcm_substream_57022_fields buffer_bytes_max snd_pcm_substream 0 57022 NULL
++xs_send_kvec_fndecl_57023_fields xs_send_kvec fndecl 5 57023 NULL
++nfs_idmap_instantiate_fndecl_57026_fields nfs_idmap_instantiate fndecl 4 57026 NULL
++usb_packet_maxlen_usb_fifo_57029_fields usb_packet_maxlen usb_fifo 0 57029 NULL
++stacksize_xt_table_info_57031_fields stacksize xt_table_info 0 57031 NULL nohasharray
++xfrm_count_pfkey_enc_supported_fndecl_57031_fields xfrm_count_pfkey_enc_supported fndecl 0 57031 &stacksize_xt_table_info_57031_fields
++do_munmap_fndecl_57035_fields do_munmap fndecl 2-3 57035 NULL
++size_mb_flash_desc_57036_fields size_mb flash_desc 0 57036 NULL
++ib_qib_max_cqes_vardecl_57049_fields ib_qib_max_cqes vardecl 0 57049 NULL
++elem_size_bpf_array_57051_fields elem_size bpf_array 0 57051 NULL
++i_subdirs_ceph_inode_info_57052_fields i_subdirs ceph_inode_info 0 57052 NULL
++index_scsi_disk_57053_fields index scsi_disk 0 57053 NULL
++nsindex_size_nvdimm_drvdata_57060_fields nsindex_size nvdimm_drvdata 0 57060 NULL
++size_garmin_packet_57061_fields size garmin_packet 0 57061 NULL
++log_blocks_per_seg_f2fs_sb_info_57063_fields log_blocks_per_seg f2fs_sb_info 0 57063 NULL
++amdgpu_cgs_gmap_kmem_fndecl_57064_fields amdgpu_cgs_gmap_kmem fndecl 3 57064 NULL
++dm_pool_block_is_used_fndecl_57067_fields dm_pool_block_is_used fndecl 0 57067 NULL
++ezusb_write_ltv_fndecl_57071_fields ezusb_write_ltv fndecl 4 57071 NULL nohasharray
++exponent_size_dw_guc_css_header_57071_fields exponent_size_dw guc_css_header 0 57071 &ezusb_write_ltv_fndecl_57071_fields
++mem_map_size_efx_nic_type_57089_fields mem_map_size efx_nic_type 0 57089 NULL
++num_uars_mlx4_caps_57093_fields num_uars mlx4_caps 0 57093 NULL nohasharray
++xfs_submit_ioend_fndecl_57093_fields xfs_submit_ioend fndecl 3-0 57093 &num_uars_mlx4_caps_57093_fields
++mcs7830_get_reg_fndecl_57103_fields mcs7830_get_reg fndecl 3 57103 NULL
++total_sections_f2fs_sb_info_57118_fields total_sections f2fs_sb_info 0 57118 NULL
++submit_stripe_bio_fndecl_57124_fields submit_stripe_bio fndecl 4 57124 NULL
++gsm_mux_rx_netchar_fndecl_57131_fields gsm_mux_rx_netchar fndecl 3 57131 NULL
++ath10k_htt_rx_crypto_tail_len_fndecl_57132_fields ath10k_htt_rx_crypto_tail_len fndecl 0 57132 NULL
++max_write_same_sectors_queue_limits_57138_fields max_write_same_sectors queue_limits 0 57138 NULL
++iblock_get_bio_fndecl_57139_fields iblock_get_bio fndecl 2-3 57139 NULL
++pack_sg_list_p_fndecl_57142_fields pack_sg_list_p fndecl 7-6 57142 NULL
++sb_agblklog_xfs_sb_57145_fields sb_agblklog xfs_sb 0 57145 NULL
++ath6kl_usb_ctrl_msg_exchange_fndecl_57148_fields ath6kl_usb_ctrl_msg_exchange fndecl 4 57148 NULL
++vlan_dev_vlan_id_fndecl_57152_fields vlan_dev_vlan_id fndecl 0 57152 NULL
++ofs_in_node_dnode_of_data_57156_fields ofs_in_node dnode_of_data 0 57156 NULL nohasharray
++segs_per_sec_f2fs_sb_info_57156_fields segs_per_sec f2fs_sb_info 0 57156 &ofs_in_node_dnode_of_data_57156_fields
++bytes_written_flags_cq_enet_rq_desc_57164_fields bytes_written_flags cq_enet_rq_desc 0 57164 NULL
++spi_wr_buf_fndecl_57169_fields spi_wr_buf fndecl 4 57169 NULL
++alloc_len_xps_map_57174_fields alloc_len xps_map 0 57174 NULL
++dpcm_playback_snd_soc_dai_link_57182_fields dpcm_playback snd_soc_dai_link 0 57182 NULL
++create_xattr_datum_fndecl_57183_fields create_xattr_datum fndecl 5 57183 NULL
++udf_delete_aext_fndecl_57186_fields udf_delete_aext fndecl 4 57186 NULL
++num_vfs_mlx4_dev_persistent_57187_fields num_vfs mlx4_dev_persistent 0 57187 NULL
++z1_zt_57189_fields z1 zt 0 57189 NULL
++max_lag_mlxsw_config_profile_57191_fields max_lag mlxsw_config_profile 0 57191 NULL
++OutputCount_smb2_ioctl_rsp_57198_fields OutputCount smb2_ioctl_rsp 0 57198 NULL
++sector_dm_crypt_io_57208_fields sector dm_crypt_io 0 57208 NULL
++frag_max_size_inet6_skb_parm_57210_fields frag_max_size inet6_skb_parm 0 57210 NULL
++osd_req_op_xattr_init_fndecl_57211_fields osd_req_op_xattr_init fndecl 6 57211 NULL
++overflow_maj_vardecl_uverbs_main_c_57216_fields overflow_maj vardecl_uverbs_main.c 0 57216 NULL
++node_spanned_pages_pglist_data_57226_fields node_spanned_pages pglist_data 0 57226 NULL
++mss_Vmxnet3_RxCompDescExt_57228_fields mss Vmxnet3_RxCompDescExt 0 57228 NULL
++len_setup_data_57234_fields len setup_data 0 57234 NULL nohasharray
++ufs_getfrag_block_fndecl_57234_fields ufs_getfrag_block fndecl 2 57234 &len_setup_data_57234_fields
++ext4_meta_bg_first_block_no_fndecl_57235_fields ext4_meta_bg_first_block_no fndecl 0-2 57235 NULL
++header_asix_rx_fixup_info_57237_fields header asix_rx_fixup_info 0 57237 NULL nohasharray
++li_namelen_nfsd4_link_57237_fields li_namelen nfsd4_link 0 57237 &header_asix_rx_fixup_info_57237_fields
++iomap_write_end_fndecl_57238_fields iomap_write_end fndecl 2-0-4-3 57238 NULL
++offset_ion_test_rw_data_57241_fields offset ion_test_rw_data 0 57241 NULL
++pkg_size_raydium_data_57243_fields pkg_size raydium_data 0 57243 NULL
++maxlen_xfs_alloc_arg_57260_fields maxlen xfs_alloc_arg 0 57260 NULL
++si2165_read_fndecl_57262_fields si2165_read fndecl 4 57262 NULL
++sc18is602_setup_transfer_fndecl_57266_fields sc18is602_setup_transfer fndecl 0 57266 NULL
++fuse_dev_do_write_fndecl_57267_fields fuse_dev_do_write fndecl 3 57267 NULL
++iwl_mvm_sta_tx_agg_stop_fndecl_57274_fields iwl_mvm_sta_tx_agg_stop fndecl 4 57274 NULL
++mps_l2cap_le_conn_rsp_57280_fields mps l2cap_le_conn_rsp 0 57280 NULL
++entry_nr_kvm_assigned_msix_nr_57282_fields entry_nr kvm_assigned_msix_nr 0 57282 NULL
++packet_sz_musb_ep_57296_fields packet_sz musb_ep 0 57296 NULL
++ie_len_parsed_vndr_ie_info_57299_fields ie_len parsed_vndr_ie_info 0 57299 NULL
++qtd_copy_status_fndecl_57306_fields qtd_copy_status fndecl 0-4-3 57306 NULL
++ptk_ivlen_iwl_mvm_57307_fields ptk_ivlen iwl_mvm 0 57307 NULL
++usCRTC_V_SyncStart__ATOM_MODE_TIMING_57308_fields usCRTC_V_SyncStart _ATOM_MODE_TIMING 0 57308 NULL nohasharray
++elf_map_fndecl_57308_fields elf_map fndecl 6 57308 &usCRTC_V_SyncStart__ATOM_MODE_TIMING_57308_fields
++orinoco_hw_get_essid_fndecl_57314_fields orinoco_hw_get_essid fndecl 0 57314 NULL
++sndbuf_size_rds_tcp_net_57323_fields sndbuf_size rds_tcp_net 0 57323 NULL
++acpi_gsi_to_irq_fndecl_57326_fields acpi_gsi_to_irq fndecl 1 57326 NULL
++ext4_expand_extra_isize_ea_fndecl_57344_fields ext4_expand_extra_isize_ea fndecl 2 57344 NULL
++root_hpfs_super_block_57345_fields root hpfs_super_block 0 57345 NULL
++align_nf_ct_ext_type_57348_fields align nf_ct_ext_type 0 57348 NULL
++lbs_debugfs_write_fndecl_57358_fields lbs_debugfs_write fndecl 3 57358 NULL
++usFirmwareUseInKb__ATOM_FIRMWARE_VRAM_RESERVE_INFO_57360_fields usFirmwareUseInKb _ATOM_FIRMWARE_VRAM_RESERVE_INFO 0 57360 NULL
++next_burst_len_iscsi_seq_57361_fields next_burst_len iscsi_seq 0 57361 NULL
++nfs_create_request_fndecl_57363_fields nfs_create_request fndecl 5 57363 NULL
++au_sd_ssr_57367_fields au sd_ssr 0 57367 NULL
++dqi_giblk_ocfs2_mem_dqinfo_57374_fields dqi_giblk ocfs2_mem_dqinfo 0 57374 NULL
++rcount_slip_57376_fields rcount slip 0 57376 NULL
++tcp_retransmit_skb_fndecl_57379_fields tcp_retransmit_skb fndecl 3 57379 NULL
++kfd_pasid_alloc_fndecl_57381_fields kfd_pasid_alloc fndecl 0 57381 NULL
++ocfs2_reflink_xattr_bucket_fndecl_57395_fields ocfs2_reflink_xattr_bucket fndecl 2-6-3 57395 NULL
++iwl_dbgfs_fw_dbg_collect_write_fndecl_57398_fields iwl_dbgfs_fw_dbg_collect_write fndecl 3 57398 NULL
++iscsit_xmit_pdu_fndecl_57408_fields iscsit_xmit_pdu fndecl 5 57408 NULL nohasharray
++skb_pull_fndecl_57408_fields skb_pull fndecl 2 57408 &iscsit_xmit_pdu_fndecl_57408_fields nohasharray
++cryptlen_chachapoly_req_ctx_57408_fields cryptlen chachapoly_req_ctx 0 57408 &skb_pull_fndecl_57408_fields
++copy_page_from_iter_iovec_fndecl_57409_fields copy_page_from_iter_iovec fndecl 3 57409 NULL
++numbered_hid_report_enum_57419_fields numbered hid_report_enum 0 57419 NULL
++blkdev_get_block_fndecl_57432_fields blkdev_get_block fndecl 2 57432 NULL
++kvm_page_track_create_memslot_fndecl_57439_fields kvm_page_track_create_memslot fndecl 2 57439 NULL
++segsize_loc_dn_scp_57445_fields segsize_loc dn_scp 0 57445 NULL
++dln2_i2c_read_fndecl_57452_fields dln2_i2c_read fndecl 0-4 57452 NULL
++cp_table_size_radeon_rlc_57462_fields cp_table_size radeon_rlc 0 57462 NULL
++drbd_bm_capacity_fndecl_57473_fields drbd_bm_capacity fndecl 0 57473 NULL
++wiimote_hid_send_fndecl_57475_fields wiimote_hid_send fndecl 3 57475 NULL
++leaf_copy_dir_entries_fndecl_57477_fields leaf_copy_dir_entries fndecl 6 57477 NULL
++nutrs_ufs_hba_57478_fields nutrs ufs_hba 0 57478 NULL
++data_len_ib_mad_send_buf_57480_fields data_len ib_mad_send_buf 0 57480 NULL
++gfs2_log_get_bio_fndecl_57481_fields gfs2_log_get_bio fndecl 2 57481 NULL
++lrc_setup_wa_ctx_obj_fndecl_57482_fields lrc_setup_wa_ctx_obj fndecl 2 57482 NULL
++brcmf_sdio_glom_len_fndecl_57483_fields brcmf_sdio_glom_len fndecl 0 57483 NULL
++mps_l2cap_le_conn_req_57484_fields mps l2cap_le_conn_req 0 57484 NULL
++phantom_get_free_fndecl_57489_fields phantom_get_free fndecl 0 57489 NULL
++consume_q_size_vmci_qp_57492_fields consume_q_size vmci_qp 0 57492 NULL
++r8a66597_urb_done_fndecl_57497_fields r8a66597_urb_done fndecl 3 57497 NULL
++truncate_data_blocks_range_fndecl_57510_fields truncate_data_blocks_range fndecl 2 57510 NULL nohasharray
++usnic_uiom_get_pages_fndecl_57510_fields usnic_uiom_get_pages fndecl 1 57510 &truncate_data_blocks_range_fndecl_57510_fields
++raid10_size_fndecl_57512_fields raid10_size fndecl 0-3-2 57512 NULL
++s_log_block_size_ext4_super_block_57520_fields s_log_block_size ext4_super_block 0 57520 NULL
++igb_rd32_fndecl_57524_fields igb_rd32 fndecl 0 57524 NULL
++temp_begin_applesmc_registers_57532_fields temp_begin applesmc_registers 0 57532 NULL
++height_tw68_dev_57535_fields height tw68_dev 0 57535 NULL
++trimmed_cp_control_57542_fields trimmed cp_control 0 57542 NULL
++i_file_sec_hpfs_inode_info_57545_fields i_file_sec hpfs_inode_info 0 57545 NULL
++fdp_nci_probe_fndecl_57547_fields fdp_nci_probe fndecl 4 57547 NULL
++is_zd1211b_zd_usb_57548_fields is_zd1211b zd_usb 0 57548 NULL
++last_to_afs_call_57563_fields last_to afs_call 0 57563 NULL
++resp_len_ql4_task_data_57567_fields resp_len ql4_task_data 0 57567 NULL
++offset_mtd_part_57572_fields offset mtd_part 0 57572 NULL
++i40e_receive_skb_fndecl_57575_fields i40e_receive_skb fndecl 3 57575 NULL nohasharray
++pvr2_ctrl_get_max_fndecl_57575_fields pvr2_ctrl_get_max fndecl 0 57575 &i40e_receive_skb_fndecl_57575_fields
++blkstol2_fndecl_57577_fields blkstol2 fndecl 0 57577 NULL nohasharray
++do_mpage_readpage_fndecl_57577_fields do_mpage_readpage fndecl 3 57577 &blkstol2_fndecl_57577_fields
++opt_optl_optdata_dn_57580_fields opt_optl optdata_dn 0 57580 NULL
++ngpps_intel_community_57584_fields ngpps intel_community 0 57584 NULL
++shared_max_reservation_object_list_57587_fields shared_max reservation_object_list 0 57587 NULL
++data_dot_offset_xfs_dir_ops_57591_fields data_dot_offset xfs_dir_ops 0 57591 NULL nohasharray
++unmap_blk_desc_data_len_scsi_unmap_parm_list_57591_fields unmap_blk_desc_data_len scsi_unmap_parm_list 0 57591 &data_dot_offset_xfs_dir_ops_57591_fields
++usCRTC_V_Disp__ATOM_MODE_TIMING_57594_fields usCRTC_V_Disp _ATOM_MODE_TIMING 0 57594 NULL
++update_regset_xstate_info_fndecl_57602_fields update_regset_xstate_info fndecl 1 57602 NULL
++buffer_bytes_osst_buffer_57604_fields buffer_bytes osst_buffer 0 57604 NULL nohasharray
++sc_pwd_len_wl18xx_event_mailbox_57604_fields sc_pwd_len wl18xx_event_mailbox 0 57604 &buffer_bytes_osst_buffer_57604_fields
++__tcp_push_pending_frames_fndecl_57607_fields __tcp_push_pending_frames fndecl 2 57607 NULL nohasharray
++mch_bar_vardecl_cr_pll_c_57607_fields mch_bar vardecl_cr_pll.c 0 57607 &__tcp_push_pending_frames_fndecl_57607_fields
++wWidth_uvc_frame_57615_fields wWidth uvc_frame 0 57615 NULL
++vmw_framebuffer_surface_dirty_fndecl_57623_fields vmw_framebuffer_surface_dirty fndecl 6 57623 NULL
++memblock_enforce_memory_limit_fndecl_57628_fields memblock_enforce_memory_limit fndecl 1 57628 NULL
++ieee80211_mesh_rx_probe_req_fndecl_57630_fields ieee80211_mesh_rx_probe_req fndecl 3 57630 NULL nohasharray
++set_discoverable_fndecl_57630_fields set_discoverable fndecl 4 57630 &ieee80211_mesh_rx_probe_req_fndecl_57630_fields
++ieee80211_ie_split_ric_fndecl_57640_fields ieee80211_ie_split_ric fndecl 0-7 57640 NULL nohasharray
++init_ipath_fndecl_57640_fields init_ipath fndecl 1 57640 &ieee80211_ie_split_ric_fndecl_57640_fields
++alloc_cc770dev_fndecl_57641_fields alloc_cc770dev fndecl 1 57641 NULL
++num_stripes_btrfs_bio_57647_fields num_stripes btrfs_bio 0 57647 NULL
++ctl_out_pipe_brcmf_usbdev_info_57648_fields ctl_out_pipe brcmf_usbdev_info 0 57648 NULL
++ttymajor_vardecl_moxa_c_57652_fields ttymajor vardecl_moxa.c 0 57652 NULL
++fuse_request_init_fndecl_57656_fields fuse_request_init fndecl 4 57656 NULL
++rbd_obj_method_sync_fndecl_57657_fields rbd_obj_method_sync fndecl 6-8 57657 NULL
++btrfs_qgroup_release_data_fndecl_57660_fields btrfs_qgroup_release_data fndecl 2-3 57660 NULL
++curheight_usb_usbvision_57669_fields curheight usb_usbvision 0 57669 NULL
++len_pn533_poll_modulations_57671_fields len pn533_poll_modulations 0 57671 NULL
++xfs_dir3_data_readahead_fndecl_57683_fields xfs_dir3_data_readahead fndecl 2 57683 NULL
++data_dma_kbtab_57688_fields data_dma kbtab 0 57688 NULL
++conflen_gss_krb5_enctype_57693_fields conflen gss_krb5_enctype 0 57693 NULL nohasharray
++phys_base_ptr_vbe_mode_ib_57693_fields phys_base_ptr vbe_mode_ib 0 57693 &conflen_gss_krb5_enctype_57693_fields
++__spi_sync_fndecl_57696_fields __spi_sync fndecl 0 57696 NULL
++i40iw_reg_user_mr_fndecl_57699_fields i40iw_reg_user_mr fndecl 2-3 57699 NULL
++residual_datacnt_initiator_status_57708_fields residual_datacnt initiator_status 0 57708 NULL
++nfs4_xattr_set_nfs4_acl_fndecl_57711_fields nfs4_xattr_set_nfs4_acl fndecl 6 57711 NULL
++de_size_fndecl_57715_fields de_size fndecl 0-1 57715 NULL
++ttm_bo_create_fndecl_57717_fields ttm_bo_create fndecl 2 57717 NULL
++nilfs_readpages_fndecl_57718_fields nilfs_readpages fndecl 4 57718 NULL
++nports_adap_ports_57721_fields nports adap_ports 0 57721 NULL
++x509_akid_note_kid_fndecl_57725_fields x509_akid_note_kid fndecl 5 57725 NULL
++max_devs_vardecl_aic94xx_hwi_c_57731_fields max_devs vardecl_aic94xx_hwi.c 0 57731 NULL
++opts1_cp_desc_57736_fields opts1 cp_desc 0 57736 NULL
++buffer_width_budget_57739_fields buffer_width budget 0 57739 NULL
++used_ebs_ubi_ainf_volume_57743_fields used_ebs ubi_ainf_volume 0 57743 NULL nohasharray
++prepare_message_spi_master_57743_fields prepare_message spi_master 0 57743 &used_ebs_ubi_ainf_volume_57743_fields
++usb_hcd_submit_urb_fndecl_57747_fields usb_hcd_submit_urb fndecl 0 57747 NULL
++__videobuf_free_fndecl_57751_fields __videobuf_free fndecl 0 57751 NULL
++res_hor_val_pvr2_hdw_57754_fields res_hor_val pvr2_hdw 0 57754 NULL nohasharray
++mdts_nvme_id_ctrl_57754_fields mdts nvme_id_ctrl 0 57754 &res_hor_val_pvr2_hdw_57754_fields
++kernel_sendmsg_fndecl_57763_fields kernel_sendmsg fndecl 0-5-4 57763 NULL
++numEntries__ATOM_PPLIB_ACPClk_Voltage_Limit_Table_57767_fields numEntries _ATOM_PPLIB_ACPClk_Voltage_Limit_Table 0 57767 NULL
++b_io_error_xfs_buf_57771_fields b_io_error xfs_buf 0 57771 NULL
++minor_media_devnode_57774_fields minor media_devnode 0 57774 NULL
++height_fb_copyarea_57780_fields height fb_copyarea 0 57780 NULL nohasharray
++end_numa_memblk_57780_fields end numa_memblk 0 57780 &height_fb_copyarea_57780_fields
++mp_rx_agg_buf_size_sdio_mmc_card_57794_fields mp_rx_agg_buf_size sdio_mmc_card 0 57794 NULL
++pos_lzma_header_57804_fields pos lzma_header 0 57804 NULL
++nic_num_sqs_en_fndecl_57805_fields nic_num_sqs_en fndecl 0-2 57805 NULL
++blocks_mmc_data_57821_fields blocks mmc_data 0 57821 NULL
++force_size_vardecl_pcmciamtd_c_57827_fields force_size vardecl_pcmciamtd.c 0 57827 NULL
++cmd_len_cmd_57830_fields cmd_len cmd 0 57830 NULL nohasharray
++ecc_bits_nand_onfi_params_57830_fields ecc_bits nand_onfi_params 0 57830 &cmd_len_cmd_57830_fields nohasharray
++ioc_count_obd_ioctl_data_57830_fields ioc_count obd_ioctl_data 0 57830 &ecc_bits_nand_onfi_params_57830_fields
++vxfs_bmap_ext4_fndecl_57831_fields vxfs_bmap_ext4 fndecl 0-2 57831 NULL nohasharray
++iscsi_complete_pdu_fndecl_57831_fields iscsi_complete_pdu fndecl 4 57831 &vxfs_bmap_ext4_fndecl_57831_fields
++length_hsu_dma_chip_57843_fields length hsu_dma_chip 0 57843 NULL
++i_pos_hi_fat_fid_57850_fields i_pos_hi fat_fid 0 57850 NULL
++vd_dsr_au_count_gru_vma_data_57855_fields vd_dsr_au_count gru_vma_data 0 57855 NULL
++target_to_linux_sector_fndecl_57857_fields target_to_linux_sector fndecl 0-2 57857 NULL
++nilfs_resize_fs_fndecl_57861_fields nilfs_resize_fs fndecl 2 57861 NULL
++len_splice_desc_57862_fields len splice_desc 0 57862 NULL
++cid_count_qed_conn_type_cfg_57865_fields cid_count qed_conn_type_cfg 0 57865 NULL
++_usbctrl_vendorreq_async_write_fndecl_57866_fields _usbctrl_vendorreq_async_write fndecl 6 57866 NULL
++lpfc_sli4_get_els_iocb_cnt_fndecl_57869_fields lpfc_sli4_get_els_iocb_cnt fndecl 0 57869 NULL
++fsl_spi_setup_transfer_fndecl_57873_fields fsl_spi_setup_transfer fndecl 0 57873 NULL nohasharray
++at24_adjust_write_count_fndecl_57873_fields at24_adjust_write_count fndecl 0-2-3 57873 &fsl_spi_setup_transfer_fndecl_57873_fields nohasharray
++mac_drv_rx_init_fndecl_57873_fields mac_drv_rx_init fndecl 2 57873 &at24_adjust_write_count_fndecl_57873_fields nohasharray
++joydev_handle_JSIOCSAXMAP_fndecl_57873_fields joydev_handle_JSIOCSAXMAP fndecl 3 57873 &mac_drv_rx_init_fndecl_57873_fields
++length_ib_umad_packet_57875_fields length ib_umad_packet 0 57875 NULL nohasharray
++init_pci_serial_quirk_57875_fields init pci_serial_quirk 0 57875 &length_ib_umad_packet_57875_fields
++v4l2_src_h_yuv_playback_info_57877_fields v4l2_src_h yuv_playback_info 0 57877 NULL
++max_devices_hpt_iop_request_get_config_57889_fields max_devices hpt_iop_request_get_config 0 57889 NULL
++num_mrs_qed_rdma_pf_params_57908_fields num_mrs qed_rdma_pf_params 0 57908 NULL
++fat_sectors_fat_bios_param_block_57917_fields fat_sectors fat_bios_param_block 0 57917 NULL
++devm_kmemdup_fndecl_57923_fields devm_kmemdup fndecl 3 57923 NULL
++MaxXmitDataSegmentLength_iscsi_conn_ops_57926_fields MaxXmitDataSegmentLength iscsi_conn_ops 0 57926 NULL
++mpwqe_log_stride_sz_mlx5e_params_57934_fields mpwqe_log_stride_sz mlx5e_params 0 57934 NULL
++memblock_set_current_limit_fndecl_57935_fields memblock_set_current_limit fndecl 1 57935 NULL
++eeprom_size_rt2x00_ops_57953_fields eeprom_size rt2x00_ops 0 57953 NULL
++i2c_read_fndecl_57956_fields i2c_read fndecl 0 57956 NULL
++ticket_len_rxkad_response_57960_fields ticket_len rxkad_response 0 57960 NULL
++filemap_check_errors_fndecl_57965_fields filemap_check_errors fndecl 0 57965 NULL
++sel_write_enforce_fndecl_57973_fields sel_write_enforce fndecl 3 57973 NULL
++rds_rm_size_fndecl_57975_fields rds_rm_size fndecl 0-2 57975 NULL
++hpfs_map_anode_fndecl_57993_fields hpfs_map_anode fndecl 2 57993 NULL
++faultin_page_fndecl_57994_fields faultin_page fndecl 3 57994 NULL
++perf_sample_ustack_size_fndecl_57995_fields perf_sample_ustack_size fndecl 0-2-1 57995 NULL
++codes_size_input_mask_57996_fields codes_size input_mask 0 57996 NULL
++max_idx_node_sz_ubifs_info_57997_fields max_idx_node_sz ubifs_info 0 57997 NULL
++SSIDlen_StatusRid_58002_fields SSIDlen StatusRid 0 58002 NULL nohasharray
++di_size_dinode_58002_fields di_size dinode 0 58002 &SSIDlen_StatusRid_58002_fields
++set_alt_usb_function_58003_fields set_alt usb_function 0 58003 NULL
++atl2_change_mtu_fndecl_58020_fields atl2_change_mtu fndecl 2 58020 NULL
++xdr_buf_subsegment_fndecl_58027_fields xdr_buf_subsegment fndecl 4-3 58027 NULL
++xfs_extent_busy_reuse_fndecl_58034_fields xfs_extent_busy_reuse fndecl 4-3 58034 NULL
++reserve_btrfs_dio_data_58035_fields reserve btrfs_dio_data 0 58035 NULL
++rindex_sc18is602_58043_fields rindex sc18is602 0 58043 NULL nohasharray
++rtw_check_beacon_data23a_fndecl_58043_fields rtw_check_beacon_data23a fndecl 3 58043 &rindex_sc18is602_58043_fields
++num_sqsets_csio_hw_58048_fields num_sqsets csio_hw 0 58048 NULL nohasharray
++cur_fw_iocb_count_qla_hw_data_58048_fields cur_fw_iocb_count qla_hw_data 0 58048 &num_sqsets_csio_hw_58048_fields
++num_pairs_nvm_id_lp_mlc_58055_fields num_pairs nvm_id_lp_mlc 0 58055 NULL
++cylinders_mspro_devinfo_58057_fields cylinders mspro_devinfo 0 58057 NULL
++max_iso_npdu_cxgbit_sock_58062_fields max_iso_npdu cxgbit_sock 0 58062 NULL
++wpa_ie_len_hostap_bss_info_58063_fields wpa_ie_len hostap_bss_info 0 58063 NULL nohasharray
++offset_m48t59_plat_data_58063_fields offset m48t59_plat_data 0 58063 &wpa_ie_len_hostap_bss_info_58063_fields nohasharray
++buffer_size_octeon_droq_58063_fields buffer_size octeon_droq 0 58063 &offset_m48t59_plat_data_58063_fields
++ath10k_htt_rx_nwifi_hdrlen_fndecl_58065_fields ath10k_htt_rx_nwifi_hdrlen fndecl 0 58065 NULL
++n_dma_bufs_vardecl_mcam_core_c_58067_fields n_dma_bufs vardecl_mcam-core.c 0 58067 NULL
++max_fast_reg_page_list_len_ib_device_attr_58072_fields max_fast_reg_page_list_len ib_device_attr 0 58072 NULL
++read_file_fndecl_58082_fields read_file fndecl 4 58082 NULL
++qib_user_sdma_pin_pages_fndecl_58083_fields qib_user_sdma_pin_pages fndecl 5-4 58083 NULL
++buffer_count_drm_i915_gem_execbuffer2_58084_fields buffer_count drm_i915_gem_execbuffer2 0 58084 NULL
++next_bofs_irlap_cb_58088_fields next_bofs irlap_cb 0 58088 NULL
++chipsize_onenand_chip_58089_fields chipsize onenand_chip 0 58089 NULL
++atyfb_setup_generic_fndecl_58092_fields atyfb_setup_generic fndecl 3 58092 NULL
++button_num_ad714x_platform_data_58098_fields button_num ad714x_platform_data 0 58098 NULL
++head_p9_rdir_58110_fields head p9_rdir 0 58110 NULL
++usb_stor_ctrl_transfer_fndecl_58117_fields usb_stor_ctrl_transfer fndecl 8-2 58117 NULL
++ore_get_rw_state_fndecl_58120_fields ore_get_rw_state fndecl 5-4 58120 NULL
++nvkm_disp_new__fndecl_58125_fields nvkm_disp_new_ fndecl 4 58125 NULL
++l_pn_lbuf_58130_fields l_pn lbuf 0 58130 NULL
++n_bitrates_ieee80211_supported_band_58136_fields n_bitrates ieee80211_supported_band 0 58136 NULL nohasharray
++jbd2_journal_inode_add_wait_fndecl_58136_fields jbd2_journal_inode_add_wait fndecl 0 58136 &n_bitrates_ieee80211_supported_band_58136_fields
++mtd_read_fndecl_58140_fields mtd_read fndecl 0 58140 NULL
++pci_alloc_child_bus_fndecl_58142_fields pci_alloc_child_bus fndecl 3 58142 NULL
++packet_recvmsg_fndecl_58143_fields packet_recvmsg fndecl 3 58143 NULL
++hr_block_bytes_o2hb_region_58145_fields hr_block_bytes o2hb_region 0 58145 NULL
++nroutes_mc5_params_58146_fields nroutes mc5_params 0 58146 NULL nohasharray
++security_inode_setattr_fndecl_58146_fields security_inode_setattr fndecl 0 58146 &nroutes_mc5_params_58146_fields
++i_clusters_ocfs2_dinode_58151_fields i_clusters ocfs2_dinode 0 58151 NULL
++rx_status_rx_desc_58154_fields rx_status rx_desc 0 58154 NULL
++size_drm_i915_gem_pwrite_58161_fields size drm_i915_gem_pwrite 0 58161 NULL nohasharray
++f2fs_mpage_readpages_fndecl_58161_fields f2fs_mpage_readpages fndecl 4 58161 &size_drm_i915_gem_pwrite_58161_fields
++l2cap_build_cmd_fndecl_58167_fields l2cap_build_cmd fndecl 4 58167 NULL
++tun_set_headroom_fndecl_58172_fields tun_set_headroom fndecl 2 58172 NULL
++head_len_beacon_data_58173_fields head_len beacon_data 0 58173 NULL
++configfs_write_bin_file_fndecl_58175_fields configfs_write_bin_file fndecl 3 58175 NULL
++num_clips_drm_vmw_present_readback_arg_58182_fields num_clips drm_vmw_present_readback_arg 0 58182 NULL
++total_resid_ceph_msg_data_cursor_58198_fields total_resid ceph_msg_data_cursor 0 58198 NULL
++maxOutstanding_AdapterControlBlock_58208_fields maxOutstanding AdapterControlBlock 0 58208 NULL
++src_w_drm_plane_state_58212_fields src_w drm_plane_state 0 58212 NULL
++rx_pipe_at76_priv_58217_fields rx_pipe at76_priv 0 58217 NULL
++size_skb_frag_struct_58222_fields size skb_frag_struct 0 58222 NULL
++xfs_attr_set_fndecl_58225_fields xfs_attr_set fndecl 4 58225 NULL
++len_on_bd_bnx2x_agg_info_58236_fields len_on_bd bnx2x_agg_info 0 58236 NULL
++font_backup_height_sisusb_usb_data_58247_fields font_backup_height sisusb_usb_data 0 58247 NULL
++lua_sysfs_write_fndecl_58254_fields lua_sysfs_write fndecl 6 58254 NULL
++ies_len_cfg80211_ft_event_params_58259_fields ies_len cfg80211_ft_event_params 0 58259 NULL
++l2cap_segment_sdu_fndecl_58263_fields l2cap_segment_sdu fndecl 4 58263 NULL
++file_size_fnode_58268_fields file_size fnode 0 58268 NULL
++intel_fbc_calculate_cfb_size_fndecl_58270_fields intel_fbc_calculate_cfb_size fndecl 0 58270 NULL
++em28xx_set_video_format_fndecl_58273_fields em28xx_set_video_format fndecl 3-4 58273 NULL
++tcp_push_one_fndecl_58275_fields tcp_push_one fndecl 2 58275 NULL nohasharray
++pages_in_block_msb_data_58275_fields pages_in_block msb_data 0 58275 &tcp_push_one_fndecl_58275_fields
++iso_size_usbtv_58278_fields iso_size usbtv 0 58278 NULL
++vmw_fifo_reserve_dx_fndecl_58283_fields vmw_fifo_reserve_dx fndecl 2 58283 NULL
++lib80211_michael_mic_add_fndecl_58285_fields lib80211_michael_mic_add fndecl 2 58285 NULL
++tx_desc_count_i40evf_adapter_58286_fields tx_desc_count i40evf_adapter 0 58286 NULL
++v9fs_fid_xattr_set_fndecl_58288_fields v9fs_fid_xattr_set fndecl 4 58288 NULL
++adfs_map_lookup_fndecl_58299_fields adfs_map_lookup fndecl 0-3 58299 NULL
++y2_drm_clip_rect_58302_fields y2 drm_clip_rect 0 58302 NULL
++buffer_size_snd_pcm_runtime_58304_fields buffer_size snd_pcm_runtime 0 58304 NULL
++CountHigh_smb_com_write_rsp_58306_fields CountHigh smb_com_write_rsp 0 58306 NULL
++vc_do_resize_fndecl_58329_fields vc_do_resize fndecl 4-3 58329 NULL nohasharray
++num_tx_ethoc_58329_fields num_tx ethoc 0 58329 &vc_do_resize_fndecl_58329_fields
++sys_setgroups16_fndecl_58337_fields sys_setgroups16 fndecl 1 58337 NULL
++nlmon_change_mtu_fndecl_58340_fields nlmon_change_mtu fndecl 2 58340 NULL nohasharray
++start_crypt_config_58340_fields start crypt_config 0 58340 &nlmon_change_mtu_fndecl_58340_fields
++get_num_of_pp_table_entries_pp_hwmgr_func_58341_fields get_num_of_pp_table_entries pp_hwmgr_func 0 58341 NULL
++s2io_change_mtu_fndecl_58344_fields s2io_change_mtu fndecl 2 58344 NULL
++ext2_alloc_branch_fndecl_58346_fields ext2_alloc_branch fndecl 4 58346 NULL
++add_regulator_fndecl_58367_fields add_regulator fndecl 1 58367 NULL
++tun_recvmsg_fndecl_58372_fields tun_recvmsg fndecl 3 58372 NULL
++collapse_shmem_fndecl_58383_fields collapse_shmem fndecl 3 58383 NULL
++dma_contiguous_reserve_fndecl_58386_fields dma_contiguous_reserve fndecl 1 58386 NULL
++max_resource_constraint_58388_fields max resource_constraint 0 58388 NULL
++kvm_arch_create_memslot_fndecl_58391_fields kvm_arch_create_memslot fndecl 3 58391 NULL
++hci_prepare_cmd_fndecl_58399_fields hci_prepare_cmd fndecl 3 58399 NULL
++lbs_wrrf_write_fndecl_58409_fields lbs_wrrf_write fndecl 3 58409 NULL
++offset_snd_util_memblk_58414_fields offset snd_util_memblk 0 58414 NULL
++skip_to_level_assoc_array_shortcut_58418_fields skip_to_level assoc_array_shortcut 0 58418 NULL
++align4k_qib_devdata_58424_fields align4k qib_devdata 0 58424 NULL
++pskb_carve_inside_header_fndecl_58427_fields pskb_carve_inside_header fndecl 2 58427 NULL nohasharray
++lbs_wrmac_write_fndecl_58427_fields lbs_wrmac_write fndecl 3 58427 &pskb_carve_inside_header_fndecl_58427_fields
++sys32_ftruncate64_fndecl_58429_fields sys32_ftruncate64 fndecl 2-3 58429 NULL
++SiS_GetReg_fndecl_58436_fields SiS_GetReg fndecl 0 58436 NULL
++environ_read_fndecl_58440_fields environ_read fndecl 3 58440 NULL
++nr_pages_fuse_fill_data_58443_fields nr_pages fuse_fill_data 0 58443 NULL
++num_vhost_virtqueue_58446_fields num vhost_virtqueue 0 58446 NULL
++val_bytes_snd_soc_component_58447_fields val_bytes snd_soc_component 0 58447 NULL nohasharray
++set_cpu_key_k_offset_fndecl_58447_fields set_cpu_key_k_offset fndecl 2 58447 &val_bytes_snd_soc_component_58447_fields
++f_adc_msi2500_dev_58451_fields f_adc msi2500_dev 0 58451 NULL
++fwlen_mpt_fw_xfer32_58453_fields fwlen mpt_fw_xfer32 0 58453 NULL
++di_anextents_xfs_icdinode_58455_fields di_anextents xfs_icdinode 0 58455 NULL
++caif_seqpkt_sendmsg_fndecl_58458_fields caif_seqpkt_sendmsg fndecl 3 58458 NULL
++NumProtectionFields_cfi_pri_intelext_58461_fields NumProtectionFields cfi_pri_intelext 0 58461 NULL
++btrfs_clone_fndecl_58462_fields btrfs_clone fndecl 5-3-6 58462 NULL
++pgsize_bitmap_iommu_domain_58464_fields pgsize_bitmap iommu_domain 0 58464 NULL
++compat_sys_preadv64v2_fndecl_58477_fields compat_sys_preadv64v2 fndecl 3 58477 NULL
++jbd2_journal_inode_add_write_fndecl_58489_fields jbd2_journal_inode_add_write fndecl 0 58489 NULL
++r2tq_size_cnic_local_58490_fields r2tq_size cnic_local 0 58490 NULL nohasharray
++try_lock_extent_fndecl_58490_fields try_lock_extent fndecl 3-2 58490 &r2tq_size_cnic_local_58490_fields
++set_console_size_fndecl_58495_fields set_console_size fndecl 3-2 58495 NULL
++unlink_simple_fndecl_58497_fields unlink_simple fndecl 2 58497 NULL nohasharray
++unit_minor_sound_unit_58497_fields unit_minor sound_unit 0 58497 &unlink_simple_fndecl_58497_fields
++pstore_decompress_fndecl_58501_fields pstore_decompress fndecl 0 58501 NULL
++max_segment_size_device_dma_parameters_58507_fields max_segment_size device_dma_parameters 0 58507 NULL
++phys_in_snd_efw_58512_fields phys_in snd_efw 0 58512 NULL nohasharray
++mcp23s17_read_regs_fndecl_58512_fields mcp23s17_read_regs fndecl 4 58512 &phys_in_snd_efw_58512_fields
++pixel_stride_ivtv_osd_coords_58513_fields pixel_stride ivtv_osd_coords 0 58513 NULL
++len_bnxt_tpa_info_58516_fields len bnxt_tpa_info 0 58516 NULL
++xfs_file_iomap_end_fndecl_58525_fields xfs_file_iomap_end fndecl 4-2 58525 NULL
++rx_frag_size_bnx2x_fastpath_58531_fields rx_frag_size bnx2x_fastpath 0 58531 NULL
++cfpkt_split_fndecl_58534_fields cfpkt_split fndecl 2 58534 NULL
++populate_vma_page_range_fndecl_58544_fields populate_vma_page_range fndecl 2-0 58544 NULL
++volinit_CHIPDESC_58545_fields volinit CHIPDESC 0 58545 NULL
++ddata_ofsl_cyttsp4_sysinfo_data_58549_fields ddata_ofsl cyttsp4_sysinfo_data 0 58549 NULL
++size_vram_area_58552_fields size vram_area 0 58552 NULL
++xfs_inobt_insert_fndecl_58558_fields xfs_inobt_insert fndecl 4 58558 NULL nohasharray
++process_vm_rw_fndecl_58558_fields process_vm_rw fndecl 5-3 58558 &xfs_inobt_insert_fndecl_58558_fields
++remaining_asix_rx_fixup_info_58562_fields remaining asix_rx_fixup_info 0 58562 NULL
++pci_iomap_fndecl_58564_fields pci_iomap fndecl 3 58564 NULL
++qib_copy_from_sge_fndecl_58565_fields qib_copy_from_sge fndecl 3 58565 NULL
++llc_shdlc_init_fndecl_58573_fields llc_shdlc_init fndecl 4 58573 NULL nohasharray
++index_vardecl_intel8x0m_c_58573_fields index vardecl_intel8x0m.c 0 58573 &llc_shdlc_init_fndecl_58573_fields
++acpi_gpio_package_count_fndecl_58585_fields acpi_gpio_package_count fndecl 0 58585 NULL
++aoe_maxsectors_vardecl_aoeblk_c_58600_fields aoe_maxsectors vardecl_aoeblk.c 0 58600 NULL
++uea_request_fndecl_58606_fields uea_request fndecl 4 58606 NULL
++hfi1_acquire_user_pages_fndecl_58612_fields hfi1_acquire_user_pages fndecl 2-0 58612 NULL
++rd_count_ring_descr_hw_58616_fields rd_count ring_descr_hw 0 58616 NULL
++__erst_write_to_storage_fndecl_58627_fields __erst_write_to_storage fndecl 1 58627 NULL
++dccps_gss_dccp_sock_58634_fields dccps_gss dccp_sock 0 58634 NULL
++layout_mdu_array_info_s_58636_fields layout mdu_array_info_s 0 58636 NULL nohasharray
++ext4_ext_handle_unwritten_extents_fndecl_58636_fields ext4_ext_handle_unwritten_extents fndecl 0-6-7 58636 &layout_mdu_array_info_s_58636_fields
++num_iwarp_msix_i40e_pf_58637_fields num_iwarp_msix i40e_pf 0 58637 NULL nohasharray
++mei_cldev_recv_fndecl_58637_fields mei_cldev_recv fndecl 0-3 58637 &num_iwarp_msix_i40e_pf_58637_fields
++pgbase_nfs4_readdir_arg_58643_fields pgbase nfs4_readdir_arg 0 58643 NULL
++tboot_log_read_fndecl_58645_fields tboot_log_read fndecl 3 58645 NULL
++report_id_hid_global_58647_fields report_id hid_global 0 58647 NULL
++page10_len_ses_device_58648_fields page10_len ses_device 0 58648 NULL
++mwifiex_alloc_dma_align_buf_fndecl_58656_fields mwifiex_alloc_dma_align_buf fndecl 1 58656 NULL nohasharray
++highest_bit_swap_info_struct_58656_fields highest_bit swap_info_struct 0 58656 &mwifiex_alloc_dma_align_buf_fndecl_58656_fields
++max_key_len_hfs_btree_58671_fields max_key_len hfs_btree 0 58671 NULL
++sb_inopblog_xfs_sb_58672_fields sb_inopblog xfs_sb 0 58672 NULL
++s_dirblksize_ufs_sb_private_info_58675_fields s_dirblksize ufs_sb_private_info 0 58675 NULL
++ses_recv_diag_fndecl_58676_fields ses_recv_diag fndecl 4 58676 NULL
++s_partition_size_affs_sb_info_58677_fields s_partition_size affs_sb_info 0 58677 NULL
++max_response_len_sg_io_v4_58687_fields max_response_len sg_io_v4 0 58687 NULL nohasharray
++head_userio_device_58687_fields head userio_device 0 58687 &max_response_len_sg_io_v4_58687_fields
++subdirs_ceph_mds_reply_inode_58689_fields subdirs ceph_mds_reply_inode 0 58689 NULL
++ioremap_cache_fndecl_58694_fields ioremap_cache fndecl 2-1 58694 NULL
++rx_dma_len_efx_nic_58695_fields rx_dma_len efx_nic 0 58695 NULL
++wdt87xx_get_desc_fndecl_58707_fields wdt87xx_get_desc fndecl 4 58707 NULL
++svc_pool_map_alloc_arrays_fndecl_58718_fields svc_pool_map_alloc_arrays fndecl 0 58718 NULL nohasharray
++fw_emem_len_rt_firmware_58718_fields fw_emem_len rt_firmware 0 58718 &svc_pool_map_alloc_arrays_fndecl_58718_fields nohasharray
++btrfs_del_inode_ref_fndecl_58718_fields btrfs_del_inode_ref fndecl 4 58718 &fw_emem_len_rt_firmware_58718_fields
++btrfs_xattr_handler_set_prop_fndecl_58727_fields btrfs_xattr_handler_set_prop fndecl 6 58727 NULL
++length_nhlt_resource_desc_58730_fields length nhlt_resource_desc 0 58730 NULL
++read_va_isert_cmd_58733_fields read_va isert_cmd 0 58733 NULL
++valid_chaoskey_58736_fields valid chaoskey 0 58736 NULL
++init_page_array_fndecl_58744_fields init_page_array fndecl 2 58744 NULL
++Residue_bulk_cs_wrap_58746_fields Residue bulk_cs_wrap 0 58746 NULL
++imaxpct_xfs_growfs_data_58747_fields imaxpct xfs_growfs_data 0 58747 NULL
++nobh_write_end_fndecl_58749_fields nobh_write_end fndecl 5 58749 NULL
++shift_rtl8xxxu_rxdesc16_58750_fields shift rtl8xxxu_rxdesc16 0 58750 NULL
++skb_copy_datagram_from_iter_fndecl_58758_fields skb_copy_datagram_from_iter fndecl 4-2 58758 NULL
++reada_add_block_fndecl_58761_fields reada_add_block fndecl 2 58761 NULL
++output_userspace_fndecl_58762_fields output_userspace fndecl 7 58762 NULL
++page_size_ib_mr_58764_fields page_size ib_mr 0 58764 NULL
++ocfs2_xattr_free_block_fndecl_58767_fields ocfs2_xattr_free_block fndecl 2 58767 NULL
++port_fops_splice_write_fndecl_58771_fields port_fops_splice_write fndecl 4 58771 NULL
++bi_bvec_done_bvec_iter_58781_fields bi_bvec_done bvec_iter 0 58781 NULL nohasharray
++ucNumEntries__ATOM_PPLIB_PhaseSheddingLimits_Table_58781_fields ucNumEntries _ATOM_PPLIB_PhaseSheddingLimits_Table 0 58781 &bi_bvec_done_bvec_iter_58781_fields
++get_formats_soc_camera_host_ops_58784_fields get_formats soc_camera_host_ops 0 58784 NULL
++off1_xad_58785_fields off1 xad 0 58785 NULL
++cache_shift_qed_dev_58790_fields cache_shift qed_dev 0 58790 NULL nohasharray
++gfs2_readpages_fndecl_58790_fields gfs2_readpages fndecl 4 58790 &cache_shift_qed_dev_58790_fields
++mppe_decompress_fndecl_58795_fields mppe_decompress fndecl 3 58795 NULL
++blkbits_dio_submit_58797_fields blkbits dio_submit 0 58797 NULL
++ci_flags_fscrypt_info_58804_fields ci_flags fscrypt_info 0 58804 NULL nohasharray
++wNumRPipes_usb_wa_descriptor_58804_fields wNumRPipes usb_wa_descriptor 0 58804 &ci_flags_fscrypt_info_58804_fields
++i40iw_qp_get_next_send_wqe_fndecl_58805_fields i40iw_qp_get_next_send_wqe fndecl 4 58805 NULL
++snd_pcm_hw_constraint_minmax_fndecl_58816_fields snd_pcm_hw_constraint_minmax fndecl 4-3 58816 NULL
++slen_snap_58819_fields slen snap 0 58819 NULL
++num_counters_op_x86_model_spec_58827_fields num_counters op_x86_model_spec 0 58827 NULL
++set_db_page_mthca_create_cq_58830_fields set_db_page mthca_create_cq 0 58830 NULL
++ms_lib_read_extrablock_fndecl_58857_fields ms_lib_read_extrablock fndecl 4 58857 NULL
++address_fault_env_58869_fields address fault_env 0 58869 NULL
++hfp_ast_vbios_enhtable_58872_fields hfp ast_vbios_enhtable 0 58872 NULL
++gbuffers_vardecl_bttv_driver_c_58873_fields gbuffers vardecl_bttv-driver.c 0 58873 NULL
++addr_nvme_sgl_desc_58875_fields addr nvme_sgl_desc 0 58875 NULL
++xm_wmfw_adsp2_alg_hdr_58884_fields xm wmfw_adsp2_alg_hdr 0 58884 NULL
++rx_buf_sz_fe_priv_58888_fields rx_buf_sz fe_priv 0 58888 NULL
++max_xfer_nd_cmd_get_config_size_58894_fields max_xfer nd_cmd_get_config_size 0 58894 NULL
++usb_stor_bulk_transfer_sg_fndecl_58896_fields usb_stor_bulk_transfer_sg fndecl 4-2 58896 NULL
++size__iohandle_58897_fields size _iohandle 0 58897 NULL
++get_next_nat_page_fndecl_58898_fields get_next_nat_page fndecl 2 58898 NULL
++mwifiex_write_data_sync_fndecl_58903_fields mwifiex_write_data_sync fndecl 3 58903 NULL
++cmodio_setup_subdevice_fndecl_58913_fields cmodio_setup_subdevice fndecl 4 58913 NULL
++befs_bread_fndecl_58922_fields befs_bread fndecl 2 58922 NULL
++parent_block_isofs_fid_58926_fields parent_block isofs_fid 0 58926 NULL
++osd_req_read_sg_fndecl_58930_fields osd_req_read_sg fndecl 5 58930 NULL
++send_reply_chunks_fndecl_58933_fields send_reply_chunks fndecl 0 58933 NULL
++leaf_item_bottle_fndecl_58937_fields leaf_item_bottle fndecl 5 58937 NULL
++ocfs2_alloc_write_ctxt_fndecl_58943_fields ocfs2_alloc_write_ctxt fndecl 3 58943 NULL
++lpe_base_sst_pdata_58946_fields lpe_base sst_pdata 0 58946 NULL
++__frame_add_frag_fndecl_58947_fields __frame_add_frag fndecl 4-5 58947 NULL
++num_req_rx_rings_bnx2_58949_fields num_req_rx_rings bnx2 0 58949 NULL
++size_drm_nouveau_gem_info_58954_fields size drm_nouveau_gem_info 0 58954 NULL
++_ext4_get_block_fndecl_58959_fields _ext4_get_block fndecl 2 58959 NULL nohasharray
++entry_size_shift_tracing_map_array_58959_fields entry_size_shift tracing_map_array 0 58959 &_ext4_get_block_fndecl_58959_fields
++query_len_tomoyo_query_58960_fields query_len tomoyo_query 0 58960 NULL
++integrity_alg_len_net_conf_58973_fields integrity_alg_len net_conf 0 58973 NULL
++adjust_managed_page_count_fndecl_58974_fields adjust_managed_page_count fndecl 2 58974 NULL
++pglen_nfs4_layoutdriver_data_58977_fields pglen nfs4_layoutdriver_data 0 58977 NULL nohasharray
++info0_rx_msdu_start_common_58977_fields info0 rx_msdu_start_common 0 58977 &pglen_nfs4_layoutdriver_data_58977_fields
++nent_mthca_eq_58979_fields nent mthca_eq 0 58979 NULL
++len_extent_buffer_58980_fields len extent_buffer 0 58980 NULL nohasharray
++ptk_icvlen_iwl_mvm_58980_fields ptk_icvlen iwl_mvm 0 58980 &len_extent_buffer_58980_fields
++sg_miter_skip_fndecl_58982_fields sg_miter_skip fndecl 2 58982 NULL
++len_cont_58983_fields len cont 0 58983 NULL
++index_ldtentry_58989_fields index ldtentry 0 58989 NULL nohasharray
++__tda18271_write_regs_fndecl_58989_fields __tda18271_write_regs fndecl 3 58989 &index_ldtentry_58989_fields
++translate_desc_fndecl_58993_fields translate_desc fndecl 3-2-0 58993 NULL
++max_hw_sectors_nvme_ctrl_59000_fields max_hw_sectors nvme_ctrl 0 59000 NULL nohasharray
++trace_max_pages_vardecl_59000_fields trace_max_pages vardecl 0 59000 &max_hw_sectors_nvme_ctrl_59000_fields
++num_lun_nvm_id_group_59001_fields num_lun nvm_id_group 0 59001 NULL nohasharray
++private_value_snd_kcontrol_59001_fields private_value snd_kcontrol 0 59001 &num_lun_nvm_id_group_59001_fields
++tid_iwl_mvm_baid_data_59008_fields tid iwl_mvm_baid_data 0 59008 NULL nohasharray
++wa_urb_dequeue_fndecl_59008_fields wa_urb_dequeue fndecl 3 59008 &tid_iwl_mvm_baid_data_59008_fields
++numextents_efs_inode_info_59009_fields numextents efs_inode_info 0 59009 NULL
++amdgpu_vram_location_fndecl_59010_fields amdgpu_vram_location fndecl 3 59010 NULL
++dccpsl_nr_dccp_service_list_59022_fields dccpsl_nr dccp_service_list 0 59022 NULL
++frag_max_size_inet_skb_parm_59029_fields frag_max_size inet_skb_parm 0 59029 NULL
++frags_len_lro_59030_fields frags_len lro 0 59030 NULL
++in_epnum_usb_gadget_59033_fields in_epnum usb_gadget 0 59033 NULL
++max_inbound_frames__i2o_status_block_59034_fields max_inbound_frames _i2o_status_block 0 59034 NULL
++head_inbuf_t_59044_fields head inbuf_t 0 59044 NULL
++len_nand_bbt_descr_59045_fields len nand_bbt_descr 0 59045 NULL
++ref_node_alsz_ubifs_info_59046_fields ref_node_alsz ubifs_info 0 59046 NULL
++data0_myri10ge_cmd_59049_fields data0 myri10ge_cmd 0 59049 NULL
++max_block_docg3_59051_fields max_block docg3 0 59051 NULL nohasharray
++aligned_pep_sock_59051_fields aligned pep_sock 0 59051 &max_block_docg3_59051_fields
++s_block_count_reiserfs_super_block_v1_59058_fields s_block_count reiserfs_super_block_v1 0 59058 NULL
++mpeglinesize_vardecl_cx231xx_417_c_59059_fields mpeglinesize vardecl_cx231xx-417.c 0 59059 NULL
++mem_cgroup_try_charge_fndecl_59062_fields mem_cgroup_try_charge fndecl 0 59062 NULL nohasharray
++sys32_pread_fndecl_59062_fields sys32_pread fndecl 3 59062 &mem_cgroup_try_charge_fndecl_59062_fields
++piobufbase_qib_devdata_59067_fields piobufbase qib_devdata 0 59067 NULL
++bmv_offset_getbmapx_59079_fields bmv_offset getbmapx 0 59079 NULL nohasharray
++write_va_isert_cmd_59079_fields write_va isert_cmd 0 59079 &bmv_offset_getbmapx_59079_fields
++i915_gem_stolen_insert_node_in_range_fndecl_59083_fields i915_gem_stolen_insert_node_in_range fndecl 3 59083 NULL
++cp2112_hid_output_fndecl_59085_fields cp2112_hid_output fndecl 3 59085 NULL
++rcvidx_hscx_hw_59100_fields rcvidx hscx_hw 0 59100 NULL
++ctrl_dma_ims_pcu_59106_fields ctrl_dma ims_pcu 0 59106 NULL
++remap_and_issue_shared_cell_fndecl_59114_fields remap_and_issue_shared_cell fndecl 3 59114 NULL
++sec_per_clus_fat_floppy_defaults_59119_fields sec_per_clus fat_floppy_defaults 0 59119 NULL
++omapdss_count_strings_fndecl_59120_fields omapdss_count_strings fndecl 0 59120 NULL
++npages_for_summary_flush_fndecl_59124_fields npages_for_summary_flush fndecl 0 59124 NULL
++width_em28xx_v4l2_59127_fields width em28xx_v4l2 0 59127 NULL nohasharray
++xfs_read_agi_fndecl_59127_fields xfs_read_agi fndecl 3 59127 &width_em28xx_v4l2_59127_fields
++bitrate_ieee80211_rate_59130_fields bitrate ieee80211_rate 0 59130 NULL
++do_sys_ftruncate_fndecl_59136_fields do_sys_ftruncate fndecl 2 59136 NULL
++q1_block_size_i40iw_hmc_fpm_misc_59149_fields q1_block_size i40iw_hmc_fpm_misc 0 59149 NULL
++rx_data_ep_usb_card_rec_59150_fields rx_data_ep usb_card_rec 0 59150 NULL
++get_desc_rtl_hal_ops_59151_fields get_desc rtl_hal_ops 0 59151 NULL
++free_low_memory_core_early_fndecl_59160_fields free_low_memory_core_early fndecl 0 59160 NULL
++log_buf_len_vardecl_printk_c_59170_fields log_buf_len vardecl_printk.c 0 59170 NULL
++address_length_acpi_resource_io_59176_fields address_length acpi_resource_io 0 59176 NULL
++av_buf_ackno_dccp_ackvec_59183_fields av_buf_ackno dccp_ackvec 0 59183 NULL
++comps_used_iser_device_59187_fields comps_used iser_device 0 59187 NULL
++img_height_zoran_jpg_settings_59188_fields img_height zoran_jpg_settings 0 59188 NULL
++isl12022_read_regs_fndecl_59190_fields isl12022_read_regs fndecl 4 59190 NULL
++vtag_rx_pkt_status_59191_fields vtag rx_pkt_status 0 59191 NULL
++cdc_ncm_check_rx_max_fndecl_59192_fields cdc_ncm_check_rx_max fndecl 0-2 59192 NULL
++ms_os_descs_ext_prop_name_len_ffs_data_59205_fields ms_os_descs_ext_prop_name_len ffs_data 0 59205 NULL
++s_bmap_bits_affs_sb_info_59206_fields s_bmap_bits affs_sb_info 0 59206 NULL
++fat_sector_size_fat_bios_param_block_59207_fields fat_sector_size fat_bios_param_block 0 59207 NULL nohasharray
++nblocks_nilfs_segsum_info_59207_fields nblocks nilfs_segsum_info 0 59207 &fat_sector_size_fat_bios_param_block_59207_fields
++jade_empty_fifo_fndecl_59210_fields jade_empty_fifo fndecl 2 59210 NULL
++usCRTC_H_SyncWidth__ATOM_MODE_TIMING_59211_fields usCRTC_H_SyncWidth _ATOM_MODE_TIMING 0 59211 NULL
++xfs_bmapi_trim_map_fndecl_59212_fields xfs_bmapi_trim_map fndecl 6 59212 NULL nohasharray
++mpdu_len_wcn36xx_pdu_59212_fields mpdu_len wcn36xx_pdu 0 59212 &xfs_bmapi_trim_map_fndecl_59212_fields
++cqe_size_mlx5_ib_create_cq_59213_fields cqe_size mlx5_ib_create_cq 0 59213 NULL
++lock_extent_direct_fndecl_59219_fields lock_extent_direct fndecl 3-2 59219 NULL
++fbmem_used_viafb_par_59221_fields fbmem_used viafb_par 0 59221 NULL nohasharray
++rtl8723b_parse_firmware_fndecl_59221_fields rtl8723b_parse_firmware fndecl 0 59221 &fbmem_used_viafb_par_59221_fields
++gprs_set_mtu_fndecl_59222_fields gprs_set_mtu fndecl 2 59222 NULL
++up_anode_59225_fields up anode 0 59225 NULL
++size_vhost_umem_node_59230_fields size vhost_umem_node 0 59230 NULL
++__iptunnel_pull_header_fndecl_59234_fields __iptunnel_pull_header fndecl 2 59234 NULL
++sierra_net_skb_clone_fndecl_59236_fields sierra_net_skb_clone fndecl 3 59236 NULL
++nr_segs_iov_iter_59239_fields nr_segs iov_iter 0 59239 NULL nohasharray
++clear_record_extent_bits_fndecl_59239_fields clear_record_extent_bits fndecl 2-3 59239 &nr_segs_iov_iter_59239_fields
++num_mbc_cfgs_wm8994_pdata_59240_fields num_mbc_cfgs wm8994_pdata 0 59240 NULL
++nlp_maxframe_lpfc_nodelist_59242_fields nlp_maxframe lpfc_nodelist 0 59242 NULL
++save_microcode_fndecl_59254_fields save_microcode fndecl 3 59254 NULL
++set_dma_channels_fndecl_59256_fields set_dma_channels fndecl 2 59256 NULL
++rcvidx_hdlc_hw_59264_fields rcvidx hdlc_hw 0 59264 NULL nohasharray
++nilfs_sufile_get_offset_fndecl_59264_fields nilfs_sufile_get_offset fndecl 0-2 59264 &rcvidx_hdlc_hw_59264_fields
++indir_size_ethtool_rxfh_59267_fields indir_size ethtool_rxfh 0 59267 NULL
++number_of_sets_host_cmd_ds_802_11_scan_rsp_59273_fields number_of_sets host_cmd_ds_802_11_scan_rsp 0 59273 NULL
++ovs_dp_upcall_fndecl_59279_fields ovs_dp_upcall fndecl 5 59279 NULL nohasharray
++data_length_bnx2i_cmd_response_59279_fields data_length bnx2i_cmd_response 0 59279 &ovs_dp_upcall_fndecl_59279_fields
++ir_prepare_write_buffer_fndecl_59280_fields ir_prepare_write_buffer fndecl 3 59280 NULL
++nentries_afs_dir_pagehdr_59283_fields nentries afs_dir_pagehdr 0 59283 NULL
++used_snd_array_59285_fields used snd_array 0 59285 NULL
++hpfs_write_end_fndecl_59287_fields hpfs_write_end fndecl 5 59287 NULL
++nr_regs_omap_prcm_irq_setup_59292_fields nr_regs omap_prcm_irq_setup 0 59292 NULL
++range_oid_t_59299_fields range oid_t 0 59299 NULL
++jffs2_write_dnode_fndecl_59301_fields jffs2_write_dnode fndecl 5 59301 NULL
++next_segno_curseg_info_59302_fields next_segno curseg_info 0 59302 NULL
++stretch_width_usb_usbvision_59304_fields stretch_width usb_usbvision 0 59304 NULL
++W6692_empty_Bfifo_fndecl_59311_fields W6692_empty_Bfifo fndecl 2 59311 NULL
++frame_bytes_ua101_stream_59312_fields frame_bytes ua101_stream 0 59312 NULL
++befs_fblock2brun_fndecl_59313_fields befs_fblock2brun fndecl 3 59313 NULL
++qib_copy_sge_fndecl_59314_fields qib_copy_sge fndecl 3 59314 NULL
++nv_getlen_fndecl_59327_fields nv_getlen fndecl 0-3 59327 NULL
++i2c_inb_fndecl_59328_fields i2c_inb fndecl 0 59328 NULL
++stmmac_set_bfsize_fndecl_59337_fields stmmac_set_bfsize fndecl 0 59337 NULL
++hfi1_max_cqes_vardecl_59339_fields hfi1_max_cqes vardecl 0 59339 NULL
++raw_sendmsg_fndecl_59341_fields raw_sendmsg fndecl 3 59341 NULL
++mbox_size_sst_res_info_59343_fields mbox_size sst_res_info 0 59343 NULL
++ttymajor_vardecl_synclinkmp_c_59344_fields ttymajor vardecl_synclinkmp.c 0 59344 NULL
++offset_first_afs_writeback_59348_fields offset_first afs_writeback 0 59348 NULL
++rtl_cmd_width_vardecl_ibm_rtl_c_59349_fields rtl_cmd_width vardecl_ibm_rtl.c 0 59349 NULL
++vc_cols_vc_data_59351_fields vc_cols vc_data 0 59351 NULL
++r5l_write_super_and_discard_space_fndecl_59352_fields r5l_write_super_and_discard_space fndecl 2 59352 NULL nohasharray
++mw_count_ntb_dev_ops_59352_fields mw_count ntb_dev_ops 0 59352 &r5l_write_super_and_discard_space_fndecl_59352_fields
++vsync_end_drm_display_mode_59355_fields vsync_end drm_display_mode 0 59355 NULL
++hpfs_alloc_fnode_fndecl_59356_fields hpfs_alloc_fnode fndecl 2 59356 NULL
++ie_len_cfg80211_assoc_request_59359_fields ie_len cfg80211_assoc_request 0 59359 NULL
++sys_mmap_fndecl_59360_fields sys_mmap fndecl 2 59360 NULL
++tid_iwl_mvm_ba_notif_59361_fields tid iwl_mvm_ba_notif 0 59361 NULL
++timer_bucket_i40iw_hmc_fpm_misc_59364_fields timer_bucket i40iw_hmc_fpm_misc 0 59364 NULL
++ixgbe_change_mtu_fndecl_59370_fields ixgbe_change_mtu fndecl 2 59370 NULL
++max_size_drm_vmw_get_3d_cap_arg_59378_fields max_size drm_vmw_get_3d_cap_arg 0 59378 NULL
++frag_point_sctp_association_59379_fields frag_point sctp_association 0 59379 NULL
++num_fcxp_reqs_bfa_iocfc_fwcfg_s_59383_fields num_fcxp_reqs bfa_iocfc_fwcfg_s 0 59383 NULL
++line_outs_auto_pin_cfg_59389_fields line_outs auto_pin_cfg 0 59389 NULL nohasharray
++sync_io_fndecl_59389_fields sync_io fndecl 0 59389 &line_outs_auto_pin_cfg_59389_fields
++batadv_iv_ogm_queue_add_fndecl_59398_fields batadv_iv_ogm_queue_add fndecl 3 59398 NULL
++fm_size_ubi_device_59399_fields fm_size ubi_device 0 59399 NULL
++max_tx_channels_efx_nic_59400_fields max_tx_channels efx_nic 0 59400 NULL
++drm_legacy_addmap_fndecl_59402_fields drm_legacy_addmap fndecl 3-2 59402 NULL
++btrfs_lookup_bio_sums_fndecl_59404_fields btrfs_lookup_bio_sums fndecl 0 59404 NULL
++alloc_mad_private_fndecl_59408_fields alloc_mad_private fndecl 1 59408 NULL
++elem_size_bpf_htab_59409_fields elem_size bpf_htab 0 59409 NULL
++reuseport_select_sock_fndecl_59410_fields reuseport_select_sock fndecl 4 59410 NULL nohasharray
++secure_dccpv6_sequence_number_fndecl_59410_fields secure_dccpv6_sequence_number fndecl 0 59410 &reuseport_select_sock_fndecl_59410_fields
++optlen_xfrm_mode_skb_cb_59411_fields optlen xfrm_mode_skb_cb 0 59411 NULL
++fotg210_urb_dequeue_fndecl_59414_fields fotg210_urb_dequeue fndecl 3 59414 NULL
++start_crash_mem_range_59421_fields start crash_mem_range 0 59421 NULL
++omfactor_user_sdma_request_59425_fields omfactor user_sdma_request 0 59425 NULL
++vma_adjust_fndecl_59429_fields vma_adjust fndecl 3-2-4 59429 NULL
++mmap_ureg_fndecl_59431_fields mmap_ureg fndecl 3 59431 NULL
++s_checkpoint_size_nilfs_super_block_59433_fields s_checkpoint_size nilfs_super_block 0 59433 NULL
++offset_ipfrag_skb_cb_59445_fields offset ipfrag_skb_cb 0 59445 NULL
++z2_zt_59452_fields z2 zt 0 59452 NULL
++ubi_dump_flash_fndecl_59454_fields ubi_dump_flash fndecl 4 59454 NULL
++vmbus_sendpacket_pagebuffer_fndecl_59463_fields vmbus_sendpacket_pagebuffer fndecl 5 59463 NULL
++ath6kl_wmi_mcast_filter_cmd_fndecl_59465_fields ath6kl_wmi_mcast_filter_cmd fndecl 2 59465 NULL
++_pmcraid_io_done_fndecl_59469_fields _pmcraid_io_done fndecl 2 59469 NULL
++common_ie_len_ieee80211_scan_ies_59478_fields common_ie_len ieee80211_scan_ies 0 59478 NULL
++phys_acpi_ioremap_59485_fields phys acpi_ioremap 0 59485 NULL
++i2c_hid_output_raw_report_fndecl_59486_fields i2c_hid_output_raw_report fndecl 3 59486 NULL
++length_acpi_pnp_device_id_59493_fields length acpi_pnp_device_id 0 59493 NULL
++src_addr_width_dma_slave_config_59497_fields src_addr_width dma_slave_config 0 59497 NULL
++wdata_alloc_and_fillpages_fndecl_59510_fields wdata_alloc_and_fillpages fndecl 1 59510 NULL
++rmtblkno2_xfs_da_args_59516_fields rmtblkno2 xfs_da_args 0 59516 NULL
++nilfs_commit_chunk_fndecl_59518_fields nilfs_commit_chunk fndecl 3-4 59518 NULL
++queue_length_vardecl_ua101_c_59524_fields queue_length vardecl_ua101.c 0 59524 NULL
++limit_data_queue_59525_fields limit data_queue 0 59525 NULL
++extLength_short_ad_59527_fields extLength short_ad 0 59527 NULL
++ocfs2_adjust_xattr_cross_cluster_fndecl_59528_fields ocfs2_adjust_xattr_cross_cluster fndecl 5-6 59528 NULL
++handle_ule_extensions_fndecl_59533_fields handle_ule_extensions fndecl 0 59533 NULL
++playback_snd_soc_tplg_pcm_59551_fields playback snd_soc_tplg_pcm 0 59551 NULL
++__btrfs_map_block_fndecl_59552_fields __btrfs_map_block fndecl 0 59552 NULL
++snd_pcm_oss_format_from_fndecl_59553_fields snd_pcm_oss_format_from fndecl 0 59553 NULL nohasharray
++nouveau_drm_ioctl_fndecl_59553_fields nouveau_drm_ioctl fndecl 2 59553 &snd_pcm_oss_format_from_fndecl_59553_fields
++pci_get_subsys_fndecl_59555_fields pci_get_subsys fndecl 2 59555 NULL nohasharray
++mthca_alloc_cq_buf_fndecl_59555_fields mthca_alloc_cq_buf fndecl 3 59555 &pci_get_subsys_fndecl_59555_fields
++rc_rcv_resp_fndecl_59556_fields rc_rcv_resp fndecl 9-7-8-4 59556 NULL
++rest_blocks_nilfs_write_info_59560_fields rest_blocks nilfs_write_info 0 59560 NULL
++chunk_size_disk_header_59563_fields chunk_size disk_header 0 59563 NULL
++bdx_rxdb_create_fndecl_59566_fields bdx_rxdb_create fndecl 1 59566 NULL
++fill_in_write_vector_fndecl_59569_fields fill_in_write_vector fndecl 0 59569 NULL
++unmap_mapping_range_fndecl_59573_fields unmap_mapping_range fndecl 2-3 59573 NULL
++pin_code_reply_fndecl_59581_fields pin_code_reply fndecl 4 59581 NULL
++data_mapping_root_thin_disk_superblock_59582_fields data_mapping_root thin_disk_superblock 0 59582 NULL
++length_sctp_paramhdr_59588_fields length sctp_paramhdr 0 59588 NULL
++reserved_tags_blk_mq_tag_set_59594_fields reserved_tags blk_mq_tag_set 0 59594 NULL
++bMaxPacketSize0_usb_device_descriptor_59595_fields bMaxPacketSize0 usb_device_descriptor 0 59595 NULL
++size_amd76xrom_window_59596_fields size amd76xrom_window 0 59596 NULL nohasharray
++last_sgs_total_ore_per_dev_state_59596_fields last_sgs_total ore_per_dev_state 0 59596 &size_amd76xrom_window_59596_fields
++tipc_link_create_fndecl_59597_fields tipc_link_create fndecl 6 59597 NULL
++rcvhdrqentsize_hfi1_ctxtdata_59613_fields rcvhdrqentsize hfi1_ctxtdata 0 59613 NULL
++unmap_single_vma_fndecl_59634_fields unmap_single_vma fndecl 4-3 59634 NULL
++gpio_count_tle62x0_pdata_59637_fields gpio_count tle62x0_pdata 0 59637 NULL
++q_fileoffset_xfs_dquot_59638_fields q_fileoffset xfs_dquot 0 59638 NULL
++trf7970a_transmit_fndecl_59648_fields trf7970a_transmit fndecl 3-5 59648 NULL
++SSID_len_brcmf_pno_net_info_le_59653_fields SSID_len brcmf_pno_net_info_le 0 59653 NULL
++xfs_trim_extents_fndecl_59654_fields xfs_trim_extents fndecl 2 59654 NULL
++num_subchannels_nvsp_5_subchannel_complete_59660_fields num_subchannels nvsp_5_subchannel_complete 0 59660 NULL
++fat_free_clusters_fndecl_59665_fields fat_free_clusters fndecl 2 59665 NULL
++mgmt_remote_name_fndecl_59667_fields mgmt_remote_name fndecl 7 59667 NULL nohasharray
++amdgpu_kms_compat_ioctl_fndecl_59667_fields amdgpu_kms_compat_ioctl fndecl 2 59667 &mgmt_remote_name_fndecl_59667_fields
++ipmi_pci_probe_regspacing_fndecl_59668_fields ipmi_pci_probe_regspacing fndecl 0 59668 NULL
++ms_read_bytes_fndecl_59672_fields ms_read_bytes fndecl 4 59672 NULL
++old_block_size_swap_info_struct_59674_fields old_block_size swap_info_struct 0 59674 NULL
++ata_host_alloc_fndecl_59677_fields ata_host_alloc fndecl 2 59677 NULL
++xprt_hlen_svc_deferred_req_59683_fields xprt_hlen svc_deferred_req 0 59683 NULL
++get_user_pages_fndecl_59686_fields get_user_pages fndecl 0-1 59686 NULL
++flt_region_bootload_ql82xx_hw_data_59701_fields flt_region_bootload ql82xx_hw_data 0 59701 NULL
++atalk_sendmsg_fndecl_59718_fields atalk_sendmsg fndecl 3 59718 NULL nohasharray
++aux_entry_sz_mlx4_dev_cap_59718_fields aux_entry_sz mlx4_dev_cap 0 59718 &atalk_sendmsg_fndecl_59718_fields
++dock_station_count_vardecl_dock_c_59728_fields dock_station_count vardecl_dock.c 0 59728 NULL
++nilfs_btnode_create_block_fndecl_59734_fields nilfs_btnode_create_block fndecl 2 59734 NULL
++val_i2400m_pld_59735_fields val i2400m_pld 0 59735 NULL
++offset_bts_phys_59741_fields offset bts_phys 0 59741 NULL
++l_iclog_hsize_xlog_59743_fields l_iclog_hsize xlog 0 59743 NULL
++ocfs2_read_dx_leaves_fndecl_59744_fields ocfs2_read_dx_leaves fndecl 2 59744 NULL
++nx_fw_cmd_set_phy_fndecl_59745_fields nx_fw_cmd_set_phy fndecl 3 59745 NULL
++mt_count_mtop_59746_fields mt_count mtop 0 59746 NULL
++seedsize_rng_alg_59748_fields seedsize rng_alg 0 59748 NULL
++xlog_write_calc_vec_length_fndecl_59749_fields xlog_write_calc_vec_length fndecl 0 59749 NULL
++request_size_afs_call_59750_fields request_size afs_call 0 59750 NULL
++addr_phys_netup_dma_59759_fields addr_phys netup_dma 0 59759 NULL
++mtu_dst_ops_59765_fields mtu dst_ops 0 59765 NULL
++au_cslack_rpc_auth_59766_fields au_cslack rpc_auth 0 59766 NULL
++max_wr_rxe_rq_59771_fields max_wr rxe_rq 0 59771 NULL
++tipc_msg_create_fndecl_59776_fields tipc_msg_create fndecl 4-3 59776 NULL
++osd_full_w_yuv_playback_info_59778_fields osd_full_w yuv_playback_info 0 59778 NULL
++reiserfs_new_symlink_fndecl_59783_fields reiserfs_new_symlink fndecl 6 59783 NULL nohasharray
++max_segments_queue_limits_59783_fields max_segments queue_limits 0 59783 &reiserfs_new_symlink_fndecl_59783_fields
++sdio_set_block_size_fndecl_59792_fields sdio_set_block_size fndecl 2 59792 NULL
++bandlength_Timon_table_entry_59793_fields bandlength Timon_table_entry 0 59793 NULL
++tm6000_i2c_recv_regs_fndecl_59796_fields tm6000_i2c_recv_regs fndecl 5 59796 NULL
++length_lv_59797_fields length lv 0 59797 NULL
++i2400m_op_msg_from_user_fndecl_59798_fields i2400m_op_msg_from_user fndecl 4 59798 NULL
++NumPhys__CONFIG_PAGE_SAS_IO_UNIT_0_59799_fields NumPhys _CONFIG_PAGE_SAS_IO_UNIT_0 0 59799 NULL nohasharray
++br_vlan_get_master_fndecl_59799_fields br_vlan_get_master fndecl 2 59799 &NumPhys__CONFIG_PAGE_SAS_IO_UNIT_0_59799_fields
++rcount_sixpack_59806_fields rcount sixpack 0 59806 NULL
++vcan_change_mtu_fndecl_59807_fields vcan_change_mtu fndecl 2 59807 NULL
++vmw_surface_gb_priv_define_fndecl_59811_fields vmw_surface_gb_priv_define fndecl 8 59811 NULL
++to_last_afs_writeback_59812_fields to_last afs_writeback 0 59812 NULL
++setup_sgtable_fndecl_59813_fields setup_sgtable fndecl 4 59813 NULL
++frsz_gspca_dev_59816_fields frsz gspca_dev 0 59816 NULL
++num_entries_arpt_replace_59819_fields num_entries arpt_replace 0 59819 NULL
++numpstates_pst_s_59820_fields numpstates pst_s 0 59820 NULL
++plen_hci_command_hdr_59837_fields plen hci_command_hdr 0 59837 NULL
++max_len_xc2028_ctrl_59842_fields max_len xc2028_ctrl 0 59842 NULL
++tcp_sendmsg_fastopen_fndecl_59843_fields tcp_sendmsg_fastopen fndecl 4 59843 NULL
++f2fs_fill_dentries_fndecl_59844_fields f2fs_fill_dentries fndecl 3 59844 NULL
++status_mei_cl_cb_59845_fields status mei_cl_cb 0 59845 NULL
++pep_alloc_skb_fndecl_59852_fields pep_alloc_skb fndecl 3 59852 NULL
++count_audit_chunk_59856_fields count audit_chunk 0 59856 NULL
++im_blkno_xfs_imap_59866_fields im_blkno xfs_imap 0 59866 NULL
++__process_changed_deleted_xattr_fndecl_59870_fields __process_changed_deleted_xattr fndecl 4 59870 NULL
++ide_scan_pio_blacklist_fndecl_59877_fields ide_scan_pio_blacklist fndecl 0 59877 NULL
++dx_fb_fillrect_59878_fields dx fb_fillrect 0 59878 NULL
++max_ars_out_nd_cmd_ars_cap_59879_fields max_ars_out nd_cmd_ars_cap 0 59879 NULL
++mos7720_write_fndecl_59901_fields mos7720_write fndecl 4 59901 NULL nohasharray
++rxbuffersize_rtl_pci_59901_fields rxbuffersize rtl_pci 0 59901 &mos7720_write_fndecl_59901_fields nohasharray
++xfs_xattr_set_fndecl_59901_fields xfs_xattr_set fndecl 6 59901 &rxbuffersize_rtl_pci_59901_fields
++num_gpio_wm831x_59907_fields num_gpio wm831x 0 59907 NULL
++x86_set_memory_region_fndecl_59911_fields x86_set_memory_region fndecl 4 59911 NULL
++wheel_num_ad714x_platform_data_59912_fields wheel_num ad714x_platform_data 0 59912 NULL
++qp_memcpy_from_queue_iov_fndecl_59913_fields qp_memcpy_from_queue_iov fndecl 5-4 59913 NULL
++rvmalloc_fndecl_59914_fields rvmalloc fndecl 1 59914 NULL
++video_endp_usb_usbvision_59918_fields video_endp usb_usbvision 0 59918 NULL
++nr_virtfn_bnx2x_sriov_59919_fields nr_virtfn bnx2x_sriov 0 59919 NULL
++wOverTheAirPacketSize_usb_wireless_ep_comp_descriptor_59926_fields wOverTheAirPacketSize usb_wireless_ep_comp_descriptor 0 59926 NULL
++n_user_regset_59935_fields n user_regset 0 59935 NULL
++maximum_acpi_address32_attribute_59936_fields maximum acpi_address32_attribute 0 59936 NULL
++blk_queue_max_write_same_sectors_fndecl_59954_fields blk_queue_max_write_same_sectors fndecl 2 59954 NULL
++bpl_cx25821_buffer_59964_fields bpl cx25821_buffer 0 59964 NULL
++pull_to_netfront_cb_59965_fields pull_to netfront_cb 0 59965 NULL
++acpi_os_create_cache_fndecl_59968_fields acpi_os_create_cache fndecl 2 59968 NULL
++mwifiex_set_wapi_ie_fndecl_59972_fields mwifiex_set_wapi_ie fndecl 3 59972 NULL
++calc_line_length_fndecl_59973_fields calc_line_length fndecl 0-3-2 59973 NULL
++fuse_file_fallocate_fndecl_59983_fields fuse_file_fallocate fndecl 4-3 59983 NULL nohasharray
++scrub_pages_fndecl_59983_fields scrub_pages fndecl 3-2-11-4 59983 &fuse_file_fallocate_fndecl_59983_fields
++affs_write_begin_ofs_fndecl_59991_fields affs_write_begin_ofs fndecl 3 59991 NULL
++count_drm_buf_desc_59998_fields count drm_buf_desc 0 59998 NULL
++size_fuse_arg_60001_fields size fuse_arg 0 60001 NULL
++__find_resource_fndecl_60011_fields __find_resource fndecl 4 60011 NULL nohasharray
++xfs_free_extent_fndecl_60011_fields xfs_free_extent fndecl 2-3 60011 &__find_resource_fndecl_60011_fields
++len_ubifs_ch_60014_fields len ubifs_ch 0 60014 NULL nohasharray
++flags_ata_port_info_60014_fields flags ata_port_info 0 60014 &len_ubifs_ch_60014_fields
++skb_priority_pktgen_dev_60015_fields skb_priority pktgen_dev 0 60015 NULL
++portnum_usb_device_60022_fields portnum usb_device 0 60022 NULL
++ntfs_truncate_fndecl_60026_fields ntfs_truncate fndecl 0 60026 NULL
++alloc_in_bmp_fndecl_60028_fields alloc_in_bmp fndecl 0-4-3-2 60028 NULL
++calculate_alignment_fndecl_60029_fields calculate_alignment fndecl 0-2 60029 NULL
++write_tx_buf_fndecl_60032_fields write_tx_buf fndecl 4 60032 NULL
++orangefs_bufmap_shift_query_fndecl_60035_fields orangefs_bufmap_shift_query fndecl 0 60035 NULL
++print_bad_pte_fndecl_60036_fields print_bad_pte fndecl 2 60036 NULL
++hdrlen_ip_auth_hdr_60037_fields hdrlen ip_auth_hdr 0 60037 NULL
++sel_write_bool_fndecl_60039_fields sel_write_bool fndecl 3 60039 NULL
++MaxMSIxVectors_mpt3sas_facts_60045_fields MaxMSIxVectors mpt3sas_facts 0 60045 NULL
++blk_rq_map_kern_fndecl_60047_fields blk_rq_map_kern fndecl 4 60047 NULL
++mgmt_pending_add_fndecl_60051_fields mgmt_pending_add fndecl 5 60051 NULL
++drm_atomic_helper_update_plane_fndecl_60059_fields drm_atomic_helper_update_plane fndecl 6-10-7-11 60059 NULL
++cx231xx_init_bulk_fndecl_60067_fields cx231xx_init_bulk fndecl 4-2 60067 NULL
++lpfc_hba_queue_depth_vardecl_lpfc_attr_c_60071_fields lpfc_hba_queue_depth vardecl_lpfc_attr.c 0 60071 NULL
++osd_req_encode_op_fndecl_60073_fields osd_req_encode_op fndecl 0 60073 NULL
++hpi_outstream_host_buffer_allocate_fndecl_60074_fields hpi_outstream_host_buffer_allocate fndecl 2 60074 NULL
++phys_eager_buffer_60082_fields phys eager_buffer 0 60082 NULL
++dram_offset_sst_res_info_60089_fields dram_offset sst_res_info 0 60089 NULL
++f2fs_issue_discard_fndecl_60090_fields f2fs_issue_discard fndecl 3-2 60090 NULL
++tty_audit_add_data_fndecl_60093_fields tty_audit_add_data fndecl 3 60093 NULL
++src_len_ccp_passthru_nomap_engine_60102_fields src_len ccp_passthru_nomap_engine 0 60102 NULL
++sample_rate_min_lola_60104_fields sample_rate_min lola 0 60104 NULL
++length_rio_transfer_io_60108_fields length rio_transfer_io 0 60108 NULL
++ufs_new_fragments_fndecl_60109_fields ufs_new_fragments fndecl 5-3 60109 NULL
++num_tx_bnad_60115_fields num_tx bnad 0 60115 NULL nohasharray
++raid10_find_virt_fndecl_60115_fields raid10_find_virt fndecl 0-3-2 60115 &num_tx_bnad_60115_fields
++display_height_vivid_dev_60116_fields display_height vivid_dev 0 60116 NULL
++ht_ast_vbios_enhtable_60121_fields ht ast_vbios_enhtable 0 60121 NULL
++btrfs_create_dio_extent_fndecl_60123_fields btrfs_create_dio_extent fndecl 3-2-7-6-5 60123 NULL
++vga_vram_end_vardecl_vgacon_c_60130_fields vga_vram_end vardecl_vgacon.c 0 60130 NULL
++st33zp24_spi_read8_reg_fndecl_60133_fields st33zp24_spi_read8_reg fndecl 4-0 60133 NULL
++fb_base_drm_mode_config_60135_fields fb_base drm_mode_config 0 60135 NULL
++external_rate_fndecl_60138_fields external_rate fndecl 0 60138 NULL
++data_len_ib_ucm_event_60142_fields data_len ib_ucm_event 0 60142 NULL
++scalar_len_ccp_ecc_point_math_60144_fields scalar_len ccp_ecc_point_math 0 60144 NULL
++index_drm_minor_60149_fields index drm_minor 0 60149 NULL
++skb_checksum_setup_ip_fndecl_60154_fields skb_checksum_setup_ip fndecl 3 60154 NULL
++dt_mem_next_cell_fndecl_60162_fields dt_mem_next_cell fndecl 0 60162 NULL
++drm_fb_helper_initial_config_fndecl_60163_fields drm_fb_helper_initial_config fndecl 2 60163 NULL nohasharray
++smem_start_fb_fix_screeninfo_60163_fields smem_start fb_fix_screeninfo 0 60163 &drm_fb_helper_initial_config_fndecl_60163_fields
++vscnprintf_fndecl_60170_fields vscnprintf fndecl 0 60170 NULL
++dccp_ackvec_buflen_fndecl_60177_fields dccp_ackvec_buflen fndecl 0 60177 NULL
++cc2520_write_ram_fndecl_60183_fields cc2520_write_ram fndecl 3 60183 NULL
++unlink1_fndecl_60188_fields unlink1 fndecl 3 60188 NULL
++ue_cpos_ocfs2_unwritten_extent_60192_fields ue_cpos ocfs2_unwritten_extent 0 60192 NULL
++kvm_vcpu_init_fndecl_60195_fields kvm_vcpu_init fndecl 3 60195 NULL
++esrt_efi_60200_fields esrt efi 0 60200 NULL
++submit_bh_fndecl_60202_fields submit_bh fndecl 0 60202 NULL nohasharray
++vfs_getxattr_alloc_fndecl_60202_fields vfs_getxattr_alloc fndecl 0 60202 &submit_bh_fndecl_60202_fields
++av7110_ipack_init_fndecl_60204_fields av7110_ipack_init fndecl 2 60204 NULL
++bio_advance_iter_fndecl_60205_fields bio_advance_iter fndecl 3 60205 NULL
++src_frames_snd_pcm_plugin_60210_fields src_frames snd_pcm_plugin 0 60210 NULL nohasharray
++iuu_read_buf_fndecl_60210_fields iuu_read_buf fndecl 2 60210 &src_frames_snd_pcm_plugin_60210_fields
++lpfc_fcp_io_channel_vardecl_lpfc_attr_c_60216_fields lpfc_fcp_io_channel vardecl_lpfc_attr.c 0 60216 NULL
++rmmio_base_radeon_device_60218_fields rmmio_base radeon_device 0 60218 NULL
++btusb_recv_bulk_fndecl_60219_fields btusb_recv_bulk fndecl 3 60219 NULL
++MaximumParallelCommands_DAC960_V2_ControllerInfo_60222_fields MaximumParallelCommands DAC960_V2_ControllerInfo 0 60222 NULL
++l2cap_parse_conf_rsp_fndecl_60232_fields l2cap_parse_conf_rsp fndecl 0 60232 NULL
++l2cap_create_le_flowctl_pdu_fndecl_60233_fields l2cap_create_le_flowctl_pdu fndecl 3 60233 NULL
++dlfb_alloc_urb_list_fndecl_60234_fields dlfb_alloc_urb_list fndecl 3 60234 NULL
++bttv_crop_adjust_fndecl_60236_fields bttv_crop_adjust fndecl 3-4 60236 NULL nohasharray
++irnet_connect_indication_fndecl_60236_fields irnet_connect_indication fndecl 5 60236 &bttv_crop_adjust_fndecl_60236_fields
++mwifiex_usb_host_to_card_fndecl_60239_fields mwifiex_usb_host_to_card fndecl 2 60239 NULL
++frag_len_pau_fpdu_frag_60242_fields frag_len pau_fpdu_frag 0 60242 NULL
++max_pages_per_fmr_ib_fmr_pool_param_60248_fields max_pages_per_fmr ib_fmr_pool_param 0 60248 NULL
++length_squashfs_page_actor_60249_fields length squashfs_page_actor 0 60249 NULL
++dirty_bytes_extent_io_tree_60254_fields dirty_bytes extent_io_tree 0 60254 NULL
++sector_size_jffs2_sb_info_60255_fields sector_size jffs2_sb_info 0 60255 NULL
++xenvif_change_mtu_fndecl_60258_fields xenvif_change_mtu fndecl 2 60258 NULL
++len_mwifiex_assoc_event_60259_fields len mwifiex_assoc_event 0 60259 NULL
++size_of_priv_dvb_usb_adapter_properties_60261_fields size_of_priv dvb_usb_adapter_properties 0 60261 NULL
++data_len_sym_ccb_60262_fields data_len sym_ccb 0 60262 NULL
++rotate_left_fndecl_60276_fields rotate_left fndecl 3-1 60276 NULL
++empty_dir_llseek_fndecl_60280_fields empty_dir_llseek fndecl 2 60280 NULL
++__receive_buf_fndecl_60286_fields __receive_buf fndecl 4 60286 NULL
++length_ore_per_dev_state_60287_fields length ore_per_dev_state 0 60287 NULL
++recv_actor_unix_stream_read_state_60306_fields recv_actor unix_stream_read_state 0 60306 NULL
++area_whcrc_60320_fields area whcrc 0 60320 NULL
++pnp_add_irq_resource_fndecl_60321_fields pnp_add_irq_resource fndecl 2 60321 NULL
++pg_count_nfs_pgio_mirror_60324_fields pg_count nfs_pgio_mirror 0 60324 NULL
++transfer_fndecl_60326_fields transfer fndecl 4-0 60326 NULL
++eor_jfs_log_60327_fields eor jfs_log 0 60327 NULL
++rq_addrlen_svc_rqst_60328_fields rq_addrlen svc_rqst 0 60328 NULL
++upper_vardecl_matroxfb_base_c_60329_fields upper vardecl_matroxfb_base.c 0 60329 NULL
++bd_add_to_bdi_fndecl_60336_fields bd_add_to_bdi fndecl 0-2 60336 NULL
++offset_nvkm_mem_60339_fields offset nvkm_mem 0 60339 NULL
++qib_rc_rcv_resp_fndecl_60341_fields qib_rc_rcv_resp fndecl 9-7-8-4 60341 NULL
++h_dloarea_60342_fields h dloarea 0 60342 NULL nohasharray
++raid5_compute_blocknr_fndecl_60342_fields raid5_compute_blocknr fndecl 0-2 60342 &h_dloarea_60342_fields
++pagesize_alauda_media_info_60348_fields pagesize alauda_media_info 0 60348 NULL
++setup_geo_fndecl_60351_fields setup_geo fndecl 0 60351 NULL nohasharray
++rq_wqe_shift_mlx5_ib_create_qp_60351_fields rq_wqe_shift mlx5_ib_create_qp 0 60351 &setup_geo_fndecl_60351_fields
++softback_lines_vardecl_fbcon_c_60357_fields softback_lines vardecl_fbcon.c 0 60357 NULL
++idd_bar0_ioc4_driver_data_60385_fields idd_bar0 ioc4_driver_data 0 60385 NULL
++s_inodes_per_group_ext4_super_block_60387_fields s_inodes_per_group ext4_super_block 0 60387 NULL
++acpi_dev_get_memresource_fndecl_60389_fields acpi_dev_get_memresource fndecl 3-2 60389 NULL
++count_tx_ring_60390_fields count tx_ring 0 60390 NULL
++block_in_file_dio_submit_60403_fields block_in_file dio_submit 0 60403 NULL
++btrfs_insert_empty_items_fndecl_60405_fields btrfs_insert_empty_items fndecl 6 60405 NULL
++max_vfs_vardecl_ixgbe_main_c_60408_fields max_vfs vardecl_ixgbe_main.c 0 60408 NULL
++xfs_iroot_realloc_fndecl_60409_fields xfs_iroot_realloc fndecl 2 60409 NULL
++__ocfs2_mknod_locked_fndecl_60427_fields __ocfs2_mknod_locked fndecl 8-9-10 60427 NULL
++__i2c_hid_command_fndecl_60442_fields __i2c_hid_command fndecl 6-8 60442 NULL
++minimum_cx88_ctrl_60444_fields minimum cx88_ctrl 0 60444 NULL
++digestsize_hash_alg_common_60446_fields digestsize hash_alg_common 0 60446 NULL
++count_hscx_hw_60448_fields count hscx_hw 0 60448 NULL
++lib80211_tkip_decrypt_fndecl_60450_fields lib80211_tkip_decrypt fndecl 2 60450 NULL
++maxsgentries_ctlr_info_60455_fields maxsgentries ctlr_info 0 60455 NULL
++osd_req_op_cls_request_data_pages_fndecl_60457_fields osd_req_op_cls_request_data_pages fndecl 4 60457 NULL
++clone_copy_inline_extent_fndecl_60461_fields clone_copy_inline_extent fndecl 7-6 60461 NULL
++prep_umr_wqe_common_fndecl_60470_fields prep_umr_wqe_common fndecl 5 60470 NULL
++drm_vma_offset_add_fndecl_60483_fields drm_vma_offset_add fndecl 3 60483 NULL nohasharray
++osd_left_vardecl_ivtvfb_c_60483_fields osd_left vardecl_ivtvfb.c 0 60483 &drm_vma_offset_add_fndecl_60483_fields
++lane2_associate_req_fndecl_60485_fields lane2_associate_req fndecl 4 60485 NULL
++v_nmembs_nilfs_argv_60498_fields v_nmembs nilfs_argv 0 60498 NULL
++cap_intel_iommu_60508_fields cap intel_iommu 0 60508 NULL
++n_host_mvs_chip_info_60517_fields n_host mvs_chip_info 0 60517 NULL
++b44_change_mtu_fndecl_60528_fields b44_change_mtu fndecl 2 60528 NULL
++hso_serial_write_fndecl_60530_fields hso_serial_write fndecl 3 60530 NULL
++sock_recv_errqueue_fndecl_60535_fields sock_recv_errqueue fndecl 3 60535 NULL
++qib_sdma_verbs_send_fndecl_60539_fields qib_sdma_verbs_send fndecl 3 60539 NULL
++device_size_scsi_transport_template_60546_fields device_size scsi_transport_template 0 60546 NULL nohasharray
++mic_card_map_fndecl_60546_fields mic_card_map fndecl 3-2 60546 &device_size_scsi_transport_template_60546_fields
++dma_tx_bytes_lpuart_port_60550_fields dma_tx_bytes lpuart_port 0 60550 NULL
++udp_manip_pkt_fndecl_60552_fields udp_manip_pkt fndecl 4 60552 NULL
++PSize_RxDesc_60553_fields PSize RxDesc 0 60553 NULL
++max_response_cros_ec_device_60558_fields max_response cros_ec_device 0 60558 NULL
++chr_major_ports_device_60572_fields chr_major ports_device 0 60572 NULL
++slot_dlm_member_60581_fields slot dlm_member 0 60581 NULL
++max_sge_rxe_rq_60583_fields max_sge rxe_rq 0 60583 NULL
++xfs_dir2_free_try_read_fndecl_60591_fields xfs_dir2_free_try_read fndecl 3 60591 NULL nohasharray
++vfcount_arch_specific_params_60591_fields vfcount arch_specific_params 0 60591 &xfs_dir2_free_try_read_fndecl_60591_fields
++assoclen_chachapoly_req_ctx_60596_fields assoclen chachapoly_req_ctx 0 60596 NULL
++in_size_ide_task_request_s_60603_fields in_size ide_task_request_s 0 60603 NULL
++__split_vma_fndecl_60609_fields __split_vma fndecl 3 60609 NULL
++fuse_ref_page_fndecl_60613_fields fuse_ref_page fndecl 4-3 60613 NULL nohasharray
++first_page_mpage_da_data_60613_fields first_page mpage_da_data 0 60613 &fuse_ref_page_fndecl_60613_fields
++qpc_entry_sz_mlx4_dev_cap_60618_fields qpc_entry_sz mlx4_dev_cap 0 60618 NULL
++dqi_usable_bs_qtree_mem_dqinfo_60619_fields dqi_usable_bs qtree_mem_dqinfo 0 60619 NULL
++copy_nocow_pages_fndecl_60628_fields copy_nocow_pages fndecl 3-5 60628 NULL
++initial_ssthresh_vardecl_tcp_bic_c_60630_fields initial_ssthresh vardecl_tcp_bic.c 0 60630 NULL
++num_tx_desc_iadev_priv_60636_fields num_tx_desc iadev_priv 0 60636 NULL nohasharray
++gso_size_skb_shared_info_60636_fields gso_size skb_shared_info 0 60636 &num_tx_desc_iadev_priv_60636_fields
++btrfs_new_extent_direct_fndecl_60642_fields btrfs_new_extent_direct fndecl 2 60642 NULL
++fill_snd_fw_async_midi_port_60647_fields fill snd_fw_async_midi_port 0 60647 NULL
++num_mpts_mthca_limits_60648_fields num_mpts mthca_limits 0 60648 NULL
++psi_count_xhci_hub_60651_fields psi_count xhci_hub 0 60651 NULL
++neo_map_video_fndecl_60656_fields neo_map_video fndecl 3 60656 NULL
++i_extra_isize_ext4_inode_info_60659_fields i_extra_isize ext4_inode_info 0 60659 NULL nohasharray
++__ax88179_read_cmd_fndecl_60659_fields __ax88179_read_cmd fndecl 5 60659 &i_extra_isize_ext4_inode_info_60659_fields
++eld_size_hdmi_eld_60661_fields eld_size hdmi_eld 0 60661 NULL
++secondary_head_adu_device_60665_fields secondary_head adu_device 0 60665 NULL
++cxd2820r_rd_regs_i2c_fndecl_60668_fields cxd2820r_rd_regs_i2c fndecl 5 60668 NULL
++pos_saa7164_user_buffer_60678_fields pos saa7164_user_buffer 0 60678 NULL
++ext4_dio_get_block_unwritten_async_fndecl_60679_fields ext4_dio_get_block_unwritten_async fndecl 2 60679 NULL
++MaxBufSize_lanman_neg_rsp_60693_fields MaxBufSize lanman_neg_rsp 0 60693 NULL nohasharray
++vnic_dev_mtu_fndecl_60693_fields vnic_dev_mtu fndecl 0 60693 &MaxBufSize_lanman_neg_rsp_60693_fields
++mon_bin_collate_isodesc_fndecl_60695_fields mon_bin_collate_isodesc fndecl 0 60695 NULL nohasharray
++remap_oldmem_pfn_range_fndecl_60695_fields remap_oldmem_pfn_range fndecl 3-4 60695 &mon_bin_collate_isodesc_fndecl_60695_fields
++max_size_vx_ibl_info_60702_fields max_size vx_ibl_info 0 60702 NULL
++snd_card_new_fndecl_60707_fields snd_card_new fndecl 2 60707 NULL
++sock_sendmsg_fndecl_60718_fields sock_sendmsg fndecl 0 60718 NULL
++HighPriorityCredit_mpt3sas_facts_60721_fields HighPriorityCredit mpt3sas_facts 0 60721 NULL
++reserved_pebs_ubi_volume_60725_fields reserved_pebs ubi_volume 0 60725 NULL
++cwnd_growth_factor_tcpnv_60728_fields cwnd_growth_factor tcpnv 0 60728 NULL
++splice_from_pipe_fndecl_60735_fields splice_from_pipe fndecl 4 60735 NULL nohasharray
++count_ptd_60735_fields count ptd 0 60735 &splice_from_pipe_fndecl_60735_fields
++__vlan_vid_del_fndecl_60738_fields __vlan_vid_del fndecl 3 60738 NULL
++ns_inode_size_the_nilfs_60742_fields ns_inode_size the_nilfs 0 60742 NULL nohasharray
++send_to_tty_fndecl_60742_fields send_to_tty fndecl 3 60742 &ns_inode_size_the_nilfs_60742_fields
++io_size_wdt_lpc_sch_info_60747_fields io_size_wdt lpc_sch_info 0 60747 NULL
++max_cluster_msdos_sb_info_60753_fields max_cluster msdos_sb_info 0 60753 NULL
++index_vardecl_intel8x0_c_60756_fields index vardecl_intel8x0.c 0 60756 NULL nohasharray
++index_hpi_adapter_obj_60756_fields index hpi_adapter_obj 0 60756 &index_vardecl_intel8x0_c_60756_fields
++chipshift_nand_flash_dev_60758_fields chipshift nand_flash_dev 0 60758 NULL
++jpg_bufsize_vardecl_60761_fields jpg_bufsize vardecl 0 60761 NULL
++devid_intel_lpss_60766_fields devid intel_lpss 0 60766 NULL
++base_ttm_bus_placement_60769_fields base ttm_bus_placement 0 60769 NULL
++i_block_group_ext2_inode_info_60771_fields i_block_group ext2_inode_info 0 60771 NULL
++blksize_shift_nvmet_ns_60777_fields blksize_shift nvmet_ns 0 60777 NULL
++a_channels_libipw_geo_60784_fields a_channels libipw_geo 0 60784 NULL nohasharray
++verity_hash_init_fndecl_60784_fields verity_hash_init fndecl 0 60784 &a_channels_libipw_geo_60784_fields
++length_blkpg_partition_60788_fields length blkpg_partition 0 60788 NULL
++x2_virtio_gpu_framebuffer_60789_fields x2 virtio_gpu_framebuffer 0 60789 NULL
++ocfs2_remove_inode_range_fndecl_60791_fields ocfs2_remove_inode_range fndecl 3-4 60791 NULL
++tomoyo_write_self_fndecl_60794_fields tomoyo_write_self fndecl 3 60794 NULL
++count_hdlc_hw_60796_fields count hdlc_hw 0 60796 NULL
++iso_alloc_urb_fndecl_60805_fields iso_alloc_urb fndecl 4-2-5 60805 NULL
++mpt_lan_change_mtu_fndecl_60806_fields mpt_lan_change_mtu fndecl 2 60806 NULL
++bytes_nand_ecc_ctrl_60817_fields bytes nand_ecc_ctrl 0 60817 NULL
++min_addr_nhlt_resource_desc_60819_fields min_addr nhlt_resource_desc 0 60819 NULL
++new_log_buf_len_vardecl_printk_c_60824_fields new_log_buf_len vardecl_printk.c 0 60824 NULL
++beacon_ies_len_cfg80211_beacon_data_60831_fields beacon_ies_len cfg80211_beacon_data 0 60831 NULL
++register_sound_dsp_fndecl_60835_fields register_sound_dsp fndecl 2 60835 NULL
++limit_fm10k_ring_feature_60843_fields limit fm10k_ring_feature 0 60843 NULL nohasharray
++bInterval_usb_endpoint_descriptor_60843_fields bInterval usb_endpoint_descriptor 0 60843 &limit_fm10k_ring_feature_60843_fields
++channels_max_snd_pcm_hardware_60854_fields channels_max snd_pcm_hardware 0 60854 NULL nohasharray
++ars_status_alloc_fndecl_60854_fields ars_status_alloc fndecl 2 60854 &channels_max_snd_pcm_hardware_60854_fields
++async_io_fndecl_60855_fields async_io fndecl 0 60855 NULL
++dev_priv_size_drm_driver_60870_fields dev_priv_size drm_driver 0 60870 NULL
++sectors_per_block_cache_60872_fields sectors_per_block cache 0 60872 NULL
++map_size_tpm_inf_dev_60880_fields map_size tpm_inf_dev 0 60880 NULL
++osd_y_offset_yuv_playback_info_60883_fields osd_y_offset yuv_playback_info 0 60883 NULL
++xenvif_add_frag_responses_fndecl_60886_fields xenvif_add_frag_responses fndecl 2 60886 NULL
++last_data_size_ubi_ainf_volume_60887_fields last_data_size ubi_ainf_volume 0 60887 NULL nohasharray
++do_shared_fault_fndecl_60887_fields do_shared_fault fndecl 2 60887 &last_data_size_ubi_ainf_volume_60887_fields
++btmrvl_send_sync_cmd_fndecl_60899_fields btmrvl_send_sync_cmd fndecl 4 60899 NULL
++bNrChannels_uac_input_terminal_descriptor_60901_fields bNrChannels uac_input_terminal_descriptor 0 60901 NULL
++xfs_alert_fsblock_zero_fndecl_60907_fields xfs_alert_fsblock_zero fndecl 0 60907 NULL
++xdr_shrink_bufhead_fndecl_60908_fields xdr_shrink_bufhead fndecl 2 60908 NULL
++gfs2_fiemap_fndecl_60913_fields gfs2_fiemap fndecl 4 60913 NULL
++ctrl_set_cropw_fndecl_60918_fields ctrl_set_cropw fndecl 3 60918 NULL
++blf_blkno_xfs_buf_log_format_60925_fields blf_blkno xfs_buf_log_format 0 60925 NULL
++read_ltv_hermes_ops_60939_fields read_ltv hermes_ops 0 60939 NULL
++x509_process_extension_fndecl_60941_fields x509_process_extension fndecl 5 60941 NULL
++msix_vector_count_MPT3SAS_ADAPTER_60944_fields msix_vector_count MPT3SAS_ADAPTER 0 60944 NULL
++ipv6_recv_rxpmtu_fndecl_60949_fields ipv6_recv_rxpmtu fndecl 3 60949 NULL
++__exchange_data_block_fndecl_60951_fields __exchange_data_block fndecl 4-3 60951 NULL nohasharray
++efi_memmap_hi_efi_info_60951_fields efi_memmap_hi efi_info 0 60951 &__exchange_data_block_fndecl_60951_fields
++prior_ssthresh_tcp_sock_60952_fields prior_ssthresh tcp_sock 0 60952 NULL nohasharray
++audit_make_reply_fndecl_60952_fields audit_make_reply fndecl 7 60952 &prior_ssthresh_tcp_sock_60952_fields
++ocfs2_dx_dir_new_cluster_fndecl_60953_fields ocfs2_dx_dir_new_cluster fndecl 3 60953 NULL
++xfs_alloc_ioend_fndecl_60954_fields xfs_alloc_ioend fndecl 3 60954 NULL nohasharray
++s_partition_root_udf_part_map_60954_fields s_partition_root udf_part_map 0 60954 &xfs_alloc_ioend_fndecl_60954_fields
++get_rdac_req_fndecl_60969_fields get_rdac_req fndecl 3 60969 NULL
++tx_remainder_cdc_ncm_ctx_60973_fields tx_remainder cdc_ncm_ctx 0 60973 NULL
++xfs_extent_busy_update_extent_fndecl_60975_fields xfs_extent_busy_update_extent fndecl 5-4 60975 NULL
++hcs_params1_xhci_hcd_60979_fields hcs_params1 xhci_hcd 0 60979 NULL
++count_nvif_ioctl_sclass_v0_60980_fields count nvif_ioctl_sclass_v0 0 60980 NULL
++hfi1_lkey_table_size_vardecl_verbs_c_60988_fields hfi1_lkey_table_size vardecl_verbs.c 0 60988 NULL
++weight_dlm_member_60989_fields weight dlm_member 0 60989 NULL nohasharray
++first_block_migrate_struct_60989_fields first_block migrate_struct 0 60989 &weight_dlm_member_60989_fields
++rtl8152_change_mtu_fndecl_60996_fields rtl8152_change_mtu fndecl 2 60996 NULL
++endp_out_zd1201_61001_fields endp_out zd1201 0 61001 NULL
++ocfs2_xattr_block_find_fndecl_61008_fields ocfs2_xattr_block_find fndecl 0 61008 NULL
++size_page_frag_61029_fields size page_frag 0 61029 NULL
++setup_possible_cpus_vardecl_smpboot_c_61040_fields setup_possible_cpus vardecl_smpboot.c 0 61040 NULL nohasharray
++ath6kl_wmi_listeninterval_cmd_fndecl_61040_fields ath6kl_wmi_listeninterval_cmd fndecl 2 61040 &setup_possible_cpus_vardecl_smpboot_c_61040_fields
++nports1_adapter_info_61044_fields nports1 adapter_info 0 61044 NULL
++_dln2_transfer_fndecl_61049_fields _dln2_transfer fndecl 0 61049 NULL
++len_tcp_fastopen_cookie_61053_fields len tcp_fastopen_cookie 0 61053 NULL
++regmap_encx24j600_read_fndecl_61061_fields regmap_encx24j600_read fndecl 5 61061 NULL
++ezusb_writememory_fndecl_61067_fields ezusb_writememory fndecl 4 61067 NULL
++get_rx_packet_len_wlcore_ops_61070_fields get_rx_packet_len wlcore_ops 0 61070 NULL
++untag_qdepth_blogic_adapter_61071_fields untag_qdepth blogic_adapter 0 61071 NULL
++left_v4l2_rect_61093_fields left v4l2_rect 0 61093 NULL
++snd_hdac_exec_verb_fndecl_61100_fields snd_hdac_exec_verb fndecl 0 61100 NULL
++current_write_offset_scif_rb_61107_fields current_write_offset scif_rb 0 61107 NULL
++bv_offset_bio_vec_61109_fields bv_offset bio_vec 0 61109 NULL
++tcp_adjust_fackets_out_fndecl_61118_fields tcp_adjust_fackets_out fndecl 3 61118 NULL nohasharray
++max_nch_mlx5e_profile_61118_fields max_nch mlx5e_profile 0 61118 &tcp_adjust_fackets_out_fndecl_61118_fields
++blocknr_nilfs_write_info_61124_fields blocknr nilfs_write_info 0 61124 NULL
++insert_node_fndecl_61132_fields insert_node fndecl 3-4 61132 NULL
++ore_calc_stripe_info_fndecl_61140_fields ore_calc_stripe_info fndecl 3 61140 NULL
++display_byte_stride_osd_info_61141_fields display_byte_stride osd_info 0 61141 NULL
++__access_remote_vm_fndecl_61148_fields __access_remote_vm fndecl 5-0-3 61148 NULL
++sierra_setup_urb_fndecl_61150_fields sierra_setup_urb fndecl 3-2 61150 NULL
++slhc_toss_fndecl_61153_fields slhc_toss fndecl 0 61153 NULL
++ctl_mt7601u_rxwi_61155_fields ctl mt7601u_rxwi 0 61155 NULL
++__vmalloc_node_range_fndecl_61157_fields __vmalloc_node_range fndecl 3 61157 NULL
++addr_kcore_list_61158_fields addr kcore_list 0 61158 NULL
++ceph_locks_to_pagelist_fndecl_61162_fields ceph_locks_to_pagelist fndecl 3-4 61162 NULL
++sel_commit_bools_write_fndecl_61166_fields sel_commit_bools_write fndecl 3 61166 NULL
++ftdi_elan_edset_empty_fndecl_61170_fields ftdi_elan_edset_empty fndecl 0 61170 NULL nohasharray
++lldd_execute_task_sas_domain_function_template_61170_fields lldd_execute_task sas_domain_function_template 0 61170 &ftdi_elan_edset_empty_fndecl_61170_fields
++in_length_nd_cmd_vendor_hdr_61172_fields in_length nd_cmd_vendor_hdr 0 61172 NULL
++phys_memory_base__synclinkmp_info_61174_fields phys_memory_base _synclinkmp_info 0 61174 NULL
++pvr2_buffer_set_buffer_fndecl_61176_fields pvr2_buffer_set_buffer fndecl 3 61176 NULL
++register_sound_mixer_fndecl_61179_fields register_sound_mixer fndecl 2 61179 NULL
++__ocfs2_move_extent_fndecl_61183_fields __ocfs2_move_extent fndecl 4-5-6-3 61183 NULL
++osd_req_op_extent_init_fndecl_61188_fields osd_req_op_extent_init fndecl 5 61188 NULL
++allocated_vector_iwl_trans_pcie_61194_fields allocated_vector iwl_trans_pcie 0 61194 NULL nohasharray
++channels_vendor_data_61194_fields channels vendor_data 0 61194 &allocated_vector_iwl_trans_pcie_61194_fields
++pos_dir_context_61195_fields pos dir_context 0 61195 NULL nohasharray
++rdma_set_ib_paths_fndecl_61195_fields rdma_set_ib_paths fndecl 3 61195 &pos_dir_context_61195_fields
++port_id_ssp_device_61196_fields port_id ssp_device 0 61196 NULL
++size_bcma_sflash_61197_fields size bcma_sflash 0 61197 NULL
++num_qps_mthca_limits_61203_fields num_qps mthca_limits 0 61203 NULL nohasharray
++pxa2xx_spi_dma_prepare_fndecl_61203_fields pxa2xx_spi_dma_prepare fndecl 0 61203 &num_qps_mthca_limits_61203_fields
++parsed_tag_70_packet_size_ecryptfs_parse_tag_70_packet_silly_stack_61204_fields parsed_tag_70_packet_size ecryptfs_parse_tag_70_packet_silly_stack 0 61204 NULL
++ts_nr_packets_vardecl_saa7134_ts_c_61205_fields ts_nr_packets vardecl_saa7134-ts.c 0 61205 NULL
++audit_log_n_hex_fndecl_61218_fields audit_log_n_hex fndecl 3 61218 NULL
++rx_buffersize_b43_dmaring_61223_fields rx_buffersize b43_dmaring 0 61223 NULL nohasharray
++rmtblkcnt_xfs_da_args_61223_fields rmtblkcnt xfs_da_args 0 61223 &rx_buffersize_b43_dmaring_61223_fields nohasharray
++register_chrdev_region_fndecl_61223_fields register_chrdev_region fndecl 2-1 61223 &rmtblkcnt_xfs_da_args_61223_fields
++rx_tail_len_pn533_frame_ops_61226_fields rx_tail_len pn533_frame_ops 0 61226 NULL
++resource_clip_fndecl_61231_fields resource_clip fndecl 2-3 61231 NULL
++isert_rx_opcode_fndecl_61234_fields isert_rx_opcode fndecl 4-6 61234 NULL
++tcp_illinois_cong_avoid_fndecl_61238_fields tcp_illinois_cong_avoid fndecl 3 61238 NULL nohasharray
++max_data_pkt_payload_size_nci_rf_intf_activated_ntf_61238_fields max_data_pkt_payload_size nci_rf_intf_activated_ntf 0 61238 &tcp_illinois_cong_avoid_fndecl_61238_fields
++tipc_add_tlv_fndecl_61239_fields tipc_add_tlv fndecl 4 61239 NULL
++ext4_reserve_inode_write_fndecl_61253_fields ext4_reserve_inode_write fndecl 0 61253 NULL
++b_blocknr_buffer_head_61260_fields b_blocknr buffer_head 0 61260 NULL
++key_create_or_update_fndecl_61266_fields key_create_or_update fndecl 5 61266 NULL
++split_boundary_dm_origin_61269_fields split_boundary dm_origin 0 61269 NULL
++__filemap_fdatawait_range_fndecl_61278_fields __filemap_fdatawait_range fndecl 0 61278 NULL
++len_ubifs_zbranch_61279_fields len ubifs_zbranch 0 61279 NULL
++h_minimode_61280_fields h minimode 0 61280 NULL
++i_file_acl_ext4_inode_info_61282_fields i_file_acl ext4_inode_info 0 61282 NULL
++ieee80211_amsdu_realloc_pad_fndecl_61288_fields ieee80211_amsdu_realloc_pad fndecl 3 61288 NULL nohasharray
++smk_write_ambient_fndecl_61288_fields smk_write_ambient fndecl 3 61288 &ieee80211_amsdu_realloc_pad_fndecl_61288_fields
++dataSgeOffset_mpt_ioctl_command_61289_fields dataSgeOffset mpt_ioctl_command 0 61289 NULL
++jpg_nbufs_vardecl_61299_fields jpg_nbufs vardecl 0 61299 NULL
++fat_length_fat_floppy_defaults_61308_fields fat_length fat_floppy_defaults 0 61308 NULL
++wlcore_smart_config_decode_event_fndecl_61313_fields wlcore_smart_config_decode_event fndecl 2-4 61313 NULL
++rtl2830_regmap_write_fndecl_61335_fields rtl2830_regmap_write fndecl 3 61335 NULL
++wbuf_len_jffs2_sb_info_61340_fields wbuf_len jffs2_sb_info 0 61340 NULL
++iscsit_put_login_tx_fndecl_61345_fields iscsit_put_login_tx fndecl 3 61345 NULL
++rw_copy_check_uvector_fndecl_61351_fields rw_copy_check_uvector fndecl 0 61351 NULL nohasharray
++vb2_vmalloc_alloc_fndecl_61351_fields vb2_vmalloc_alloc fndecl 3 61351 &rw_copy_check_uvector_fndecl_61351_fields nohasharray
++v4l2_ctrl_new_std_fndecl_61351_fields v4l2_ctrl_new_std fndecl 4-7 61351 &vb2_vmalloc_alloc_fndecl_61351_fields
++conn_num_hci_conn_list_req_61354_fields conn_num hci_conn_list_req 0 61354 NULL
++hfs_get_block_fndecl_61360_fields hfs_get_block fndecl 2 61360 NULL
++handle_response_icmp_fndecl_61366_fields handle_response_icmp fndecl 7 61366 NULL
++tx_headroom_libipw_device_61370_fields tx_headroom libipw_device 0 61370 NULL
++sync_dirty_buffer_fndecl_61371_fields sync_dirty_buffer fndecl 0 61371 NULL
++data_dma_usb_onetouch_61372_fields data_dma usb_onetouch 0 61372 NULL
++num_of_phy_chans_stedma40_platform_data_61373_fields num_of_phy_chans stedma40_platform_data 0 61373 NULL
++devs_max_btrfs_raid_attr_61376_fields devs_max btrfs_raid_attr 0 61376 NULL
++bfa_cb_ioim_done_fndecl_61381_fields bfa_cb_ioim_done fndecl 7 61381 NULL
++xfs_dir3_data_read_fndecl_61387_fields xfs_dir3_data_read fndecl 3 61387 NULL
++num_msix_vectors_i40evf_adapter_61390_fields num_msix_vectors i40evf_adapter 0 61390 NULL nohasharray
++npages_nfs_page_array_61390_fields npages nfs_page_array 0 61390 &num_msix_vectors_i40evf_adapter_61390_fields
++byte_len_at24_platform_data_61393_fields byte_len at24_platform_data 0 61393 NULL
++fpg_sz_nvm_id_group_61394_fields fpg_sz nvm_id_group 0 61394 NULL
++h_virtio_gpu_box_61407_fields h virtio_gpu_box 0 61407 NULL
++buf_sz_vardecl_stmmac_main_c_61408_fields buf_sz vardecl_stmmac_main.c 0 61408 NULL
++pcpu_alloc_alloc_info_fndecl_61414_fields pcpu_alloc_alloc_info fndecl 1-2 61414 NULL nohasharray
++keylen_tcp_md5sig_key_61414_fields keylen tcp_md5sig_key 0 61414 &pcpu_alloc_alloc_info_fndecl_61414_fields
++size_aper_size_info_lvl2_61417_fields size aper_size_info_lvl2 0 61417 NULL
++nservers_mc5_params_61428_fields nservers mc5_params 0 61428 NULL nohasharray
++tst_size_idt77252_dev_61428_fields tst_size idt77252_dev 0 61428 &nservers_mc5_params_61428_fields
++offset_ceph_mds_reply_dir_entry_61431_fields offset ceph_mds_reply_dir_entry 0 61431 NULL
++length_drm_mode_create_blob_61435_fields length drm_mode_create_blob 0 61435 NULL nohasharray
++rows_omap4_keypad_61435_fields rows omap4_keypad 0 61435 &length_drm_mode_create_blob_61435_fields
++nd_opt_len_nd_opt_hdr_61437_fields nd_opt_len nd_opt_hdr 0 61437 NULL
++nsblk_sector_size_fndecl_61439_fields nsblk_sector_size fndecl 0 61439 NULL
++group_size_efs_sb_info_61441_fields group_size efs_sb_info 0 61441 NULL
++bulk_out_size_usb_serial_driver_61450_fields bulk_out_size usb_serial_driver 0 61450 NULL
++total_size_iscsi_segment_61454_fields total_size iscsi_segment 0 61454 NULL
++ocfs2_zero_range_for_truncate_fndecl_61461_fields ocfs2_zero_range_for_truncate fndecl 3-4 61461 NULL nohasharray
++next_interface_id_usb_configuration_61461_fields next_interface_id usb_configuration 0 61461 &ocfs2_zero_range_for_truncate_fndecl_61461_fields
++ucNumEntries__ATOM_Tonga_MM_Dependency_Table_61467_fields ucNumEntries _ATOM_Tonga_MM_Dependency_Table 0 61467 NULL
++irlan_client_ctrl_connect_confirm_fndecl_61475_fields irlan_client_ctrl_connect_confirm fndecl 5 61475 NULL
++ubi_eba_write_leb_st_fndecl_61476_fields ubi_eba_write_leb_st fndecl 5 61476 NULL
++buf_kern_offset_ebt_entries_buf_state_61478_fields buf_kern_offset ebt_entries_buf_state 0 61478 NULL
++dreq_iss_dccp_request_sock_61480_fields dreq_iss dccp_request_sock 0 61480 NULL
++radix_tree_maybe_preload_fndecl_61481_fields radix_tree_maybe_preload fndecl 0 61481 NULL nohasharray
++s_size_rvt_qp_61481_fields s_size rvt_qp 0 61481 &radix_tree_maybe_preload_fndecl_61481_fields
++new_chunk_mdp_superblock_s_61482_fields new_chunk mdp_superblock_s 0 61482 NULL
++nlen_ubifs_dent_node_61488_fields nlen ubifs_dent_node 0 61488 NULL
++generic_file_read_iter_fndecl_61491_fields generic_file_read_iter fndecl 0 61491 NULL
++f_adc_hackrf_dev_61493_fields f_adc hackrf_dev 0 61493 NULL
++ccp_init_data_fndecl_61495_fields ccp_init_data fndecl 4 61495 NULL
++unpack_lookup_result_fndecl_61496_fields unpack_lookup_result fndecl 2 61496 NULL
++vb_size_drm_savage_cmdbuf_61501_fields vb_size drm_savage_cmdbuf 0 61501 NULL
++mgag200_gem_create_fndecl_61507_fields mgag200_gem_create fndecl 2 61507 NULL nohasharray
++width_pwc_device_61507_fields width pwc_device 0 61507 &mgag200_gem_create_fndecl_61507_fields
++depth_cx8800_fmt_61510_fields depth cx8800_fmt 0 61510 NULL
++total_sect_fat_boot_sector_61513_fields total_sect fat_boot_sector 0 61513 NULL
++sys_write_fndecl_61526_fields sys_write fndecl 3-0 61526 NULL
++scif_register_temp_fndecl_61529_fields scif_register_temp fndecl 3-2 61529 NULL
++irq_base_regmap_irq_chip_data_61532_fields irq_base regmap_irq_chip_data 0 61532 NULL
++strlcpy_fndecl_61539_fields strlcpy fndecl 0 61539 NULL
++osst_do_scsi_fndecl_61545_fields osst_do_scsi fndecl 4 61545 NULL
++intel_init_pipe_control_fndecl_61547_fields intel_init_pipe_control fndecl 2 61547 NULL
++gpiointr_intel_pmic_gpio_platform_data_61549_fields gpiointr intel_pmic_gpio_platform_data 0 61549 NULL
++reg_size_rmi_register_desc_item_61553_fields reg_size rmi_register_desc_item 0 61553 NULL
++datalen_iscsi_tcp_recv_61556_fields datalen iscsi_tcp_recv 0 61556 NULL
++xdr_init_decode_pages_fndecl_61557_fields xdr_init_decode_pages fndecl 4 61557 NULL nohasharray
++regmap_encx24j600_sfr_update_fndecl_61557_fields regmap_encx24j600_sfr_update fndecl 4 61557 &xdr_init_decode_pages_fndecl_61557_fields
++ei_block_ext4_extent_idx_61567_fields ei_block ext4_extent_idx 0 61567 NULL
++iwl_fill_data_tbs_amsdu_fndecl_61581_fields iwl_fill_data_tbs_amsdu fndecl 4 61581 NULL
++pos_in_item_tree_balance_61583_fields pos_in_item tree_balance 0 61583 NULL
++usb_internal_control_msg_fndecl_61589_fields usb_internal_control_msg fndecl 5-2 61589 NULL
++blkdev_issue_write_same_fndecl_61596_fields blkdev_issue_write_same fndecl 2-3 61596 NULL
++hdisplay_moderec_61597_fields hdisplay moderec 0 61597 NULL
++__hci_cmd_sync_fndecl_61598_fields __hci_cmd_sync fndecl 3 61598 NULL
++ext4_max_size_fndecl_61600_fields ext4_max_size fndecl 0-1 61600 NULL
++i2c_base_intel_scu_ipc_pdata_t_61609_fields i2c_base intel_scu_ipc_pdata_t 0 61609 NULL
++head_align_brcmf_sdio_61610_fields head_align brcmf_sdio 0 61610 NULL nohasharray
++filternum_dvb_demux_61610_fields filternum dvb_demux 0 61610 &head_align_brcmf_sdio_61610_fields
++extra_priv_size_ohci_driver_overrides_61611_fields extra_priv_size ohci_driver_overrides 0 61611 NULL
++eth_change_mtu_fndecl_61617_fields eth_change_mtu fndecl 2 61617 NULL
++add_sit_entry_fndecl_61621_fields add_sit_entry fndecl 1 61621 NULL
++af_alg_make_sg_fndecl_61624_fields af_alg_make_sg fndecl 0-3 61624 NULL
++efx_tx_max_skb_descs_fndecl_61628_fields efx_tx_max_skb_descs fndecl 0 61628 NULL
++ext4_xattr_shift_entries_fndecl_61629_fields ext4_xattr_shift_entries fndecl 2 61629 NULL
++___alloc_bootmem_node_nopanic_fndecl_61630_fields ___alloc_bootmem_node_nopanic fndecl 3-4-5 61630 NULL
++bio_advance_fndecl_61635_fields bio_advance fndecl 2 61635 NULL
++btrfsic_process_written_block_fndecl_61638_fields btrfsic_process_written_block fndecl 2 61638 NULL
++index_count_applesmc_registers_61647_fields index_count applesmc_registers 0 61647 NULL nohasharray
++vc_bottom_vc_data_61647_fields vc_bottom vc_data 0 61647 &index_count_applesmc_registers_61647_fields nohasharray
++sci_req_tx_bytes_fndecl_61647_fields sci_req_tx_bytes fndecl 0 61647 &vc_bottom_vc_data_61647_fields
++dout_size_cros_ec_device_61649_fields dout_size cros_ec_device 0 61649 NULL
++height_cx23885_dev_61651_fields height cx23885_dev 0 61651 NULL
++mem_start_pci_params_61652_fields mem_start pci_params 0 61652 NULL
++security_socket_sendmsg_fndecl_61654_fields security_socket_sendmsg fndecl 0 61654 NULL
++anode_lookup_fndecl_61656_fields anode_lookup fndecl 0-3-2 61656 NULL
++sdio_align_size_fndecl_61658_fields sdio_align_size fndecl 2 61658 NULL
++sk_pacing_rate_sock_61667_fields sk_pacing_rate sock 0 61667 NULL
++min_io_size_ubi_device_info_61673_fields min_io_size ubi_device_info 0 61673 NULL
++recv_queue_size_nvmet_rdma_queue_61674_fields recv_queue_size nvmet_rdma_queue 0 61674 NULL nohasharray
++sys_msgsnd_fndecl_61674_fields sys_msgsnd fndecl 3 61674 &recv_queue_size_nvmet_rdma_queue_61674_fields
++len_l2cap_cmd_hdr_61676_fields len l2cap_cmd_hdr 0 61676 NULL
++sd_fsb2bb_shift_gfs2_sbd_61677_fields sd_fsb2bb_shift gfs2_sbd 0 61677 NULL
++page_size_ms_boot_attr_info_61681_fields page_size ms_boot_attr_info 0 61681 NULL
++sv_max_mesg_svc_serv_61683_fields sv_max_mesg svc_serv 0 61683 NULL
++ip_clusters_ocfs2_inode_info_61689_fields ip_clusters ocfs2_inode_info 0 61689 NULL
++cma_set_req_event_data_fndecl_61691_fields cma_set_req_event_data fndecl 4 61691 NULL
++ieee80211_rx_mgmt_assoc_resp_fndecl_61694_fields ieee80211_rx_mgmt_assoc_resp fndecl 3 61694 NULL
++qib_ud_rcv_fndecl_61701_fields qib_ud_rcv fndecl 5 61701 NULL
++segnum_nilfs_segment_entry_61704_fields segnum nilfs_segment_entry 0 61704 NULL
++hfi1_cdev_init_fndecl_61706_fields hfi1_cdev_init fndecl 1 61706 NULL
++find_key_fndecl_61711_fields find_key fndecl 2 61711 NULL
++BytesPerSector_ms_lib_ctrl_61717_fields BytesPerSector ms_lib_ctrl 0 61717 NULL
++do_lfb_size_fndecl_61720_fields do_lfb_size fndecl 0 61720 NULL
++dm_bufio_new_fndecl_61727_fields dm_bufio_new fndecl 2 61727 NULL
++n_patterns_cfg80211_wowlan_61737_fields n_patterns cfg80211_wowlan 0 61737 NULL
++nvkm_disp_ctor_fndecl_61743_fields nvkm_disp_ctor fndecl 4 61743 NULL
++wmi_call_fndecl_61745_fields wmi_call fndecl 4 61745 NULL nohasharray
++count_nfs_pgio_args_61745_fields count nfs_pgio_args 0 61745 &wmi_call_fndecl_61745_fields
++drbd_recv_short_fndecl_61748_fields drbd_recv_short fndecl 3-0 61748 NULL nohasharray
++smt_add_frame_len_fndecl_61748_fields smt_add_frame_len fndecl 2 61748 &drbd_recv_short_fndecl_61748_fields
++mon_buff_area_alloc_fndecl_61752_fields mon_buff_area_alloc fndecl 2 61752 NULL
++nr_fingers_f11_2d_sensor_queries_61756_fields nr_fingers f11_2d_sensor_queries 0 61756 NULL
++sl_count_ip_sf_socklist_61758_fields sl_count ip_sf_socklist 0 61758 NULL
++rsp_residual_count_sts_entry_24xx_61762_fields rsp_residual_count sts_entry_24xx 0 61762 NULL
++dvb_net_sec_callback_fndecl_61767_fields dvb_net_sec_callback fndecl 2 61767 NULL
++height_zr364xx_camera_61781_fields height zr364xx_camera 0 61781 NULL nohasharray
++xlog_recover_add_to_cont_trans_fndecl_61781_fields xlog_recover_add_to_cont_trans fndecl 4 61781 &height_zr364xx_camera_61781_fields
++num_leds_adp8870_backlight_platform_data_61782_fields num_leds adp8870_backlight_platform_data 0 61782 NULL
++pclk_max_ov6650_61784_fields pclk_max ov6650 0 61784 NULL
++xdr_enter_page_fndecl_61791_fields xdr_enter_page fndecl 2 61791 NULL
++num_gpios_htcpld_chip_platform_data_61792_fields num_gpios htcpld_chip_platform_data 0 61792 NULL
++address_length_pcc_memory_resource_61793_fields address_length pcc_memory_resource 0 61793 NULL
++num_arfs_vnic_enet_config_61794_fields num_arfs vnic_enet_config 0 61794 NULL
++size_snd_cs46xx_region_61796_fields size snd_cs46xx_region 0 61796 NULL
++vxfs_bmap_typed_fndecl_61801_fields vxfs_bmap_typed fndecl 0-2 61801 NULL
++imm_count_iscsi_task_61804_fields imm_count iscsi_task 0 61804 NULL
++end_map_range_61813_fields end map_range 0 61813 NULL nohasharray
++fat_alloc_clusters_fndecl_61813_fields fat_alloc_clusters fndecl 0 61813 &end_map_range_61813_fields
++len_nfs_createargs_61814_fields len nfs_createargs 0 61814 NULL
++m_rsumsize_xfs_mount_61815_fields m_rsumsize xfs_mount 0 61815 NULL
++txq_req_tg3_61834_fields txq_req tg3 0 61834 NULL
++start_segno_free_segmap_info_61843_fields start_segno free_segmap_info 0 61843 NULL
++ocfs2_xattr_bucket_find_fndecl_61853_fields ocfs2_xattr_bucket_find fndecl 0-5 61853 NULL
++sents_per_block_sit_info_61856_fields sents_per_block sit_info 0 61856 NULL
++dma_len_rx_fst_card_info_61862_fields dma_len_rx fst_card_info 0 61862 NULL
++num_mpts_mlx4_caps_61866_fields num_mpts mlx4_caps 0 61866 NULL
++ehci_urb_done_fndecl_61889_fields ehci_urb_done fndecl 3 61889 NULL
++find_group_orlov_fndecl_61896_fields find_group_orlov fndecl 0 61896 NULL
++MaxRecvDataSegmentLength_iscsi_conn_ops_61904_fields MaxRecvDataSegmentLength iscsi_conn_ops 0 61904 NULL
++maxframe_size_fc_rport_61909_fields maxframe_size fc_rport 0 61909 NULL
++send_data_in_fndecl_61914_fields send_data_in fndecl 3 61914 NULL
++cxd2820r_wr_regs_i2c_fndecl_61922_fields cxd2820r_wr_regs_i2c fndecl 5 61922 NULL
++raid_disks_mdp_superblock_1_61927_fields raid_disks mdp_superblock_1 0 61927 NULL
++net2272_ep_read_fndecl_61935_fields net2272_ep_read fndecl 0 61935 NULL
++st33zp24_i2c_recv_fndecl_61939_fields st33zp24_i2c_recv fndecl 4 61939 NULL
++alloc_size_ttm_pool_opts_61945_fields alloc_size ttm_pool_opts 0 61945 NULL
++btrfs_double_extent_lock_fndecl_61946_fields btrfs_double_extent_lock fndecl 4-2-5 61946 NULL
++rx_std_ring_mask_tg3_61948_fields rx_std_ring_mask tg3 0 61948 NULL
++pfid_bnx2x_61952_fields pfid bnx2x 0 61952 NULL
++num_qps_qed_rdma_pf_params_61953_fields num_qps qed_rdma_pf_params 0 61953 NULL
++tcp_veno_cong_avoid_fndecl_61954_fields tcp_veno_cong_avoid fndecl 3 61954 NULL
++ntrips___thermal_zone_61955_fields ntrips __thermal_zone 0 61955 NULL
++hsu_dma_active_desc_size_fndecl_61956_fields hsu_dma_active_desc_size fndecl 0 61956 NULL
++s_maxbytes_super_block_61963_fields s_maxbytes super_block 0 61963 NULL
++periods_min_snd_pcm_hardware_61965_fields periods_min snd_pcm_hardware 0 61965 NULL
++wm_adsp_compr_read_fndecl_61972_fields wm_adsp_compr_read fndecl 3 61972 NULL
++nfs_set_pgio_error_fndecl_61975_fields nfs_set_pgio_error fndecl 3 61975 NULL
++physical_for_dev_replace_scrub_page_61977_fields physical_for_dev_replace scrub_page 0 61977 NULL
++x25_pacsize_to_bytes_fndecl_61983_fields x25_pacsize_to_bytes fndecl 0 61983 NULL
++qib_verbs_send_dma_fndecl_61985_fields qib_verbs_send_dma fndecl 7-5 61985 NULL
++opts1_de_desc_61986_fields opts1 de_desc 0 61986 NULL
++vblank_panel_info_61990_fields vblank panel_info 0 61990 NULL
++num_srq_mlx4_profile_61993_fields num_srq mlx4_profile 0 61993 NULL
++r_num_ops_ceph_osd_request_61995_fields r_num_ops ceph_osd_request 0 61995 NULL
++rdmaciqs_sge_61997_fields rdmaciqs sge 0 61997 NULL
++iscsi_login_tx_data_fndecl_61998_fields iscsi_login_tx_data fndecl 4 61998 NULL
++sc_reader_svcxprt_rdma_62004_fields sc_reader svcxprt_rdma 0 62004 NULL
++__add_discard_entry_fndecl_62006_fields __add_discard_entry fndecl 4-5 62006 NULL
++ext4_ext_convert_to_initialized_fndecl_62009_fields ext4_ext_convert_to_initialized fndecl 0 62009 NULL
++length_snd_efw_transaction_62012_fields length snd_efw_transaction 0 62012 NULL
++memblock_setclr_flag_fndecl_62013_fields memblock_setclr_flag fndecl 2-1 62013 NULL
++srp_map_sg_fr_fndecl_62023_fields srp_map_sg_fr fndecl 0 62023 NULL
++size_mtd_blktrans_dev_62024_fields size mtd_blktrans_dev 0 62024 NULL
++nf_bridge_encap_header_len_fndecl_62025_fields nf_bridge_encap_header_len fndecl 0 62025 NULL
++filter_count_rx_used_efx_nic_type_62026_fields filter_count_rx_used efx_nic_type 0 62026 NULL
++encode_diropargs_fndecl_62031_fields encode_diropargs fndecl 4 62031 NULL
++num_qps_mlx4_caps_62033_fields num_qps mlx4_caps 0 62033 NULL
++n_rx_channels_efx_nic_62034_fields n_rx_channels efx_nic 0 62034 NULL
++dev_sectors_r10conf_62035_fields dev_sectors r10conf 0 62035 NULL
++set_advertising_fndecl_62037_fields set_advertising fndecl 4 62037 NULL
++tfcpad_xfrm_state_62038_fields tfcpad xfrm_state 0 62038 NULL
++lmm_stripe_count_lov_user_md_v3_62042_fields lmm_stripe_count lov_user_md_v3 0 62042 NULL
++flag_count_sg_simple_element_62044_fields flag_count sg_simple_element 0 62044 NULL
++entries_size_ebt_replace_62051_fields entries_size ebt_replace 0 62051 NULL
++regmap_spi_read_fndecl_62058_fields regmap_spi_read fndecl 3-5 62058 NULL
++ex_offset_extent_s_62059_fields ex_offset extent_s 0 62059 NULL
++num_attr_vgastate_62064_fields num_attr vgastate 0 62064 NULL
++cb_stripe_unit_exofs_dt_data_map_62068_fields cb_stripe_unit exofs_dt_data_map 0 62068 NULL
++num_devices_dm_raid_superblock_62072_fields num_devices dm_raid_superblock 0 62072 NULL
++ip_vs_send_async_fndecl_62075_fields ip_vs_send_async fndecl 3 62075 NULL
++wBlockSize_ms_bootblock_sysinf_62081_fields wBlockSize ms_bootblock_sysinf 0 62081 NULL
++ieee80211_build_probe_req_fndecl_62084_fields ieee80211_build_probe_req fndecl 9-7 62084 NULL
++rtsx_usb_seq_write_register_fndecl_62088_fields rtsx_usb_seq_write_register fndecl 3 62088 NULL
++init_shash_alg_62095_fields init shash_alg 0 62095 NULL
++max_xid_bnx2fc_hba_62096_fields max_xid bnx2fc_hba 0 62096 NULL
++bcm_recvmsg_fndecl_62099_fields bcm_recvmsg fndecl 3 62099 NULL nohasharray
++word3_atl1c_recv_ret_status_62099_fields word3 atl1c_recv_ret_status 0 62099 &bcm_recvmsg_fndecl_62099_fields
++task_ctx_size_pmu_62102_fields task_ctx_size pmu 0 62102 NULL
++yoffset_fb_var_screeninfo_62110_fields yoffset fb_var_screeninfo 0 62110 NULL nohasharray
++bulk_out_ep_bfusb_data_62110_fields bulk_out_ep bfusb_data 0 62110 &yoffset_fb_var_screeninfo_62110_fields
++st_nci_hci_dm_vdc_measurement_value_fndecl_62123_fields st_nci_hci_dm_vdc_measurement_value fndecl 3 62123 NULL
++vcs_lseek_fndecl_62125_fields vcs_lseek fndecl 2 62125 NULL
++__process_deleted_xattr_fndecl_62133_fields __process_deleted_xattr fndecl 4 62133 NULL
++__irq_alloc_descs_fndecl_62140_fields __irq_alloc_descs fndecl 0 62140 NULL
++next_setup_data_62142_fields next setup_data 0 62142 NULL
++drbd_recv_all_warn_fndecl_62144_fields drbd_recv_all_warn fndecl 3 62144 NULL
++cciss_tape_cmds_vardecl_cciss_c_62147_fields cciss_tape_cmds vardecl_cciss.c 0 62147 NULL
++tcp_trim_head_fndecl_62157_fields tcp_trim_head fndecl 3 62157 NULL
++ptrace_writedata_fndecl_62158_fields ptrace_writedata fndecl 3 62158 NULL
++map_index_to_lba_fndecl_62162_fields map_index_to_lba fndecl 0-1 62162 NULL
++size_vfio_pci_region_62163_fields size vfio_pci_region 0 62163 NULL nohasharray
++max_i2s_chan_img_i2s_out_62163_fields max_i2s_chan img_i2s_out 0 62163 &size_vfio_pci_region_62163_fields
++user_frag_sctp_association_62167_fields user_frag sctp_association 0 62167 NULL nohasharray
++alloc_huge_page_fndecl_62167_fields alloc_huge_page fndecl 2 62167 &user_frag_sctp_association_62167_fields
++len_scrub_copy_nocow_ctx_62170_fields len scrub_copy_nocow_ctx 0 62170 NULL
++igb_change_mtu_fndecl_62189_fields igb_change_mtu fndecl 2 62189 NULL
++eps_count_ffs_data_62193_fields eps_count ffs_data 0 62193 NULL nohasharray
++agent_send_response_fndecl_62193_fields agent_send_response fndecl 7 62193 &eps_count_ffs_data_62193_fields
++rose_sendmsg_fndecl_62194_fields rose_sendmsg fndecl 3 62194 NULL
++max_pkt_size_em28xx_62196_fields max_pkt_size em28xx 0 62196 NULL
++snd_cwnd_clamp_tcp_sock_62197_fields snd_cwnd_clamp tcp_sock 0 62197 NULL
++maxframe_caifsock_62201_fields maxframe caifsock 0 62201 NULL
++at24_eeprom_write_smbus_block_fndecl_62212_fields at24_eeprom_write_smbus_block fndecl 3-4 62212 NULL
++generic_file_direct_write_fndecl_62226_fields generic_file_direct_write fndecl 0 62226 NULL
++datainterval_snd_usb_endpoint_62227_fields datainterval snd_usb_endpoint 0 62227 NULL
++svm_create_vcpu_fndecl_62239_fields svm_create_vcpu fndecl 2 62239 NULL
++snd_pcm_alloc_vmalloc_buffer_fndecl_62240_fields snd_pcm_alloc_vmalloc_buffer fndecl 2 62240 NULL
++btrfs_set_extent_delalloc_fndecl_62264_fields btrfs_set_extent_delalloc fndecl 3-2 62264 NULL
++num_rxqs_octeon_nic_if_config_62266_fields num_rxqs octeon_nic_if_config 0 62266 NULL
++usable_leb_size_ubi_volume_62272_fields usable_leb_size ubi_volume 0 62272 NULL
++max_eps_mv_udc_62274_fields max_eps mv_udc 0 62274 NULL
++cfpkt_add_body_fndecl_62277_fields cfpkt_add_body fndecl 3 62277 NULL
++tx_cnt_virtio_vsock_sock_62281_fields tx_cnt virtio_vsock_sock 0 62281 NULL
++msb_get_free_block_fndecl_62282_fields msb_get_free_block fndecl 0 62282 NULL
++email_size_x509_parse_context_62283_fields email_size x509_parse_context 0 62283 NULL
++mappable_end_i915_ggtt_62288_fields mappable_end i915_ggtt 0 62288 NULL
++omfs_scan_list_fndecl_62289_fields omfs_scan_list fndecl 2 62289 NULL
++num_arq_entries_i40e_adminq_info_62293_fields num_arq_entries i40e_adminq_info 0 62293 NULL
++num_chunks_icp_qat_suof_filehdr_62296_fields num_chunks icp_qat_suof_filehdr 0 62296 NULL
++max_io_mvumi_hba_62301_fields max_io mvumi_hba 0 62301 NULL
++ceph_llseek_fndecl_62305_fields ceph_llseek fndecl 2 62305 NULL
++sb_rbmblocks_xfs_sb_62307_fields sb_rbmblocks xfs_sb 0 62307 NULL
++rtl2832_sdr_convert_stream_fndecl_62308_fields rtl2832_sdr_convert_stream fndecl 0-4 62308 NULL
++ircomm_tty_connect_confirm_fndecl_62310_fields ircomm_tty_connect_confirm fndecl 4-5 62310 NULL nohasharray
++iov_data_count_iscsi_cmd_62310_fields iov_data_count iscsi_cmd 0 62310 &ircomm_tty_connect_confirm_fndecl_62310_fields
++map_extent_mft_record_fndecl_62312_fields map_extent_mft_record fndecl 2 62312 NULL
++ss_channels_snd_rme9652_62315_fields ss_channels snd_rme9652 0 62315 NULL
++ext2_new_block_fndecl_62326_fields ext2_new_block fndecl 0-2 62326 NULL
++tcp_vegas_cong_avoid_fndecl_62332_fields tcp_vegas_cong_avoid fndecl 3 62332 NULL
++qib_get_user_pages_fndecl_62338_fields qib_get_user_pages fndecl 1 62338 NULL nohasharray
++hdrlen_adm8211_tx_ring_info_62338_fields hdrlen adm8211_tx_ring_info 0 62338 &qib_get_user_pages_fndecl_62338_fields nohasharray
++bbtskipbytes_denali_nand_info_62338_fields bbtskipbytes denali_nand_info 0 62338 &hdrlen_adm8211_tx_ring_info_62338_fields
++pagf_flcount_xfs_perag_62340_fields pagf_flcount xfs_perag 0 62340 NULL
++pcl_status_pcl_62348_fields pcl_status pcl 0 62348 NULL
++mtu_from_qp_rvt_driver_provided_62354_fields mtu_from_qp rvt_driver_provided 0 62354 NULL
++raid56_parity_write_fndecl_62355_fields raid56_parity_write fndecl 0 62355 NULL
++len_eager_buffer_62357_fields len eager_buffer 0 62357 NULL
++rawv6_sendmsg_fndecl_62363_fields rawv6_sendmsg fndecl 3 62363 NULL
++drxbsp_i2c_write_read_fndecl_62366_fields drxbsp_i2c_write_read fndecl 5-2 62366 NULL
++num_entries_compat_arpt_replace_62377_fields num_entries compat_arpt_replace 0 62377 NULL
++new_chunk_mdp_superblock_1_62380_fields new_chunk mdp_superblock_1 0 62380 NULL
++max_cnt_ocrdma_qp_hwq_info_62383_fields max_cnt ocrdma_qp_hwq_info 0 62383 NULL nohasharray
++efx_wanted_parallelism_fndecl_62383_fields efx_wanted_parallelism fndecl 0 62383 &max_cnt_ocrdma_qp_hwq_info_62383_fields
++ivsize_aead_alg_62386_fields ivsize aead_alg 0 62386 NULL nohasharray
++send_queue_size_nvmet_rdma_queue_62386_fields send_queue_size nvmet_rdma_queue 0 62386 &ivsize_aead_alg_62386_fields
++m_blkbb_log_xfs_mount_62391_fields m_blkbb_log xfs_mount 0 62391 NULL
++__generic_block_fiemap_fndecl_62394_fields __generic_block_fiemap fndecl 4 62394 NULL
++hwCBP_td_62396_fields hwCBP td 0 62396 NULL
++len_scifioctl_node_ids_62402_fields len scifioctl_node_ids 0 62402 NULL
++pty_write_fndecl_62406_fields pty_write fndecl 3 62406 NULL
++segment_acpi_pci_root_62407_fields segment acpi_pci_root 0 62407 NULL
++fill_holes_fndecl_62408_fields fill_holes fndecl 4-5 62408 NULL nohasharray
++rtsx_usb_get_rsp_fndecl_62408_fields rtsx_usb_get_rsp fndecl 2 62408 &fill_holes_fndecl_62408_fields
++gfs2_log_bmap_fndecl_62411_fields gfs2_log_bmap fndecl 0 62411 NULL
++unmap_page_range_fndecl_62415_fields unmap_page_range fndecl 4-3 62415 NULL
++adap_id_pca954x_platform_mode_62418_fields adap_id pca954x_platform_mode 0 62418 NULL
++inet6_lookup_listener_fndecl_62428_fields inet6_lookup_listener fndecl 4 62428 NULL
++set_brk_fndecl_62430_fields set_brk fndecl 1-2 62430 NULL nohasharray
++io_size_xfs_ioend_62430_fields io_size xfs_ioend 0 62430 &set_brk_fndecl_62430_fields
++rx_urb_size_lan78xx_net_62443_fields rx_urb_size lan78xx_net 0 62443 NULL nohasharray
++sum_link_node_ref_fndecl_62443_fields sum_link_node_ref fndecl 4-3 62443 &rx_urb_size_lan78xx_net_62443_fields
++run_bpf_fndecl_62447_fields run_bpf fndecl 5 62447 NULL
++__videobuf_copy_stream_fndecl_62450_fields __videobuf_copy_stream fndecl 0 62450 NULL
++npods_cxgbi_task_tag_info_62453_fields npods cxgbi_task_tag_info 0 62453 NULL
++lower_offset_skb_seq_state_62465_fields lower_offset skb_seq_state 0 62465 NULL
++ipx_recvmsg_fndecl_62469_fields ipx_recvmsg fndecl 3 62469 NULL
++ram_alignment_fndecl_62470_fields ram_alignment fndecl 0 62470 NULL
++payload_bytes_controlvm_message_header_62474_fields payload_bytes controlvm_message_header 0 62474 NULL
++fw_stats_bus_myri10ge_slice_state_62482_fields fw_stats_bus myri10ge_slice_state 0 62482 NULL
++rx_ring_tail_sc92031_priv_62486_fields rx_ring_tail sc92031_priv 0 62486 NULL
++mlx5_ib_reg_user_mr_fndecl_62488_fields mlx5_ib_reg_user_mr fndecl 4-2-3 62488 NULL
++dlen_ippp_ccp_reset_state_62491_fields dlen ippp_ccp_reset_state 0 62491 NULL nohasharray
++residual_len_sts_entry_fx00_62491_fields residual_len sts_entry_fx00 0 62491 &dlen_ippp_ccp_reset_state_62491_fields
++filemap_write_and_wait_range_fndecl_62492_fields filemap_write_and_wait_range fndecl 0-2-3 62492 NULL nohasharray
++svc_sock_setbufsize_fndecl_62492_fields svc_sock_setbufsize fndecl 2 62492 &filemap_write_and_wait_range_fndecl_62492_fields
++try_charge_fndecl_62496_fields try_charge fndecl 0 62496 NULL
++vmci_transport_set_buffer_size_fndecl_62498_fields vmci_transport_set_buffer_size fndecl 2 62498 NULL
++max_enic_rfs_flw_tbl_62505_fields max enic_rfs_flw_tbl 0 62505 NULL
++rq_tailsz_smb_rqst_62506_fields rq_tailsz smb_rqst 0 62506 NULL
++jade_ale_bkm_hw_62507_fields jade_ale bkm_hw 0 62507 NULL
++sgs_per_request_skd_device_62508_fields sgs_per_request skd_device 0 62508 NULL
++mpage_alloc_fndecl_62512_fields mpage_alloc fndecl 2-3 62512 NULL
++dma_phys_netup_unidvb_dev_62519_fields dma_phys netup_unidvb_dev 0 62519 NULL
++rx_buf_sz_iadev_priv_62524_fields rx_buf_sz iadev_priv 0 62524 NULL
++xfs_log_regrant_fndecl_62533_fields xfs_log_regrant fndecl 0 62533 NULL
++iova_vhost_iotlb_msg_62545_fields iova vhost_iotlb_msg 0 62545 NULL
++len_ErrMsg_62547_fields len ErrMsg 0 62547 NULL
++__ext4_get_inode_loc_fndecl_62551_fields __ext4_get_inode_loc fndecl 0 62551 NULL nohasharray
++xfs_log_reserve_fndecl_62551_fields xfs_log_reserve fndecl 0 62551 &__ext4_get_inode_loc_fndecl_62551_fields
++num_cq_entries_hba_parameters_62556_fields num_cq_entries hba_parameters 0 62556 NULL
++wDatagramLength_usb_cdc_ncm_dpe16_62564_fields wDatagramLength usb_cdc_ncm_dpe16 0 62564 NULL
++outbuf_dma_ati_remote_62567_fields outbuf_dma ati_remote 0 62567 NULL
++btrfs_check_data_free_space_fndecl_62583_fields btrfs_check_data_free_space fndecl 0-3-2 62583 NULL
++mtd_ooblayout_find_eccregion_fndecl_62594_fields mtd_ooblayout_find_eccregion fndecl 2 62594 NULL
++mon_bin_dev0_vardecl_mon_bin_c_62600_fields mon_bin_dev0 vardecl_mon_bin.c 0 62600 NULL
++__alloc_bootmem_low_fndecl_62604_fields __alloc_bootmem_low fndecl 2-3 62604 NULL nohasharray
++max_header_size_irlan_cb_62604_fields max_header_size irlan_cb 0 62604 &__alloc_bootmem_low_fndecl_62604_fields
++ext4_xattr_check_names_fndecl_62605_fields ext4_xattr_check_names fndecl 0 62605 NULL
++sizeoftlvs_lec_arp_table_62608_fields sizeoftlvs lec_arp_table 0 62608 NULL
++pci_sriov_set_totalvfs_fndecl_62615_fields pci_sriov_set_totalvfs fndecl 2 62615 NULL
++mixed_cnt_ncsi_rsp_gc_pkt_62619_fields mixed_cnt ncsi_rsp_gc_pkt 0 62619 NULL
++l2linesize_linelock_62626_fields l2linesize linelock 0 62626 NULL
++min_pkt_size_pktgen_dev_62629_fields min_pkt_size pktgen_dev 0 62629 NULL
++virtio_gpu_ttm_tt_create_fndecl_62636_fields virtio_gpu_ttm_tt_create fndecl 2 62636 NULL nohasharray
++wil_change_mtu_fndecl_62636_fields wil_change_mtu fndecl 2 62636 &virtio_gpu_ttm_tt_create_fndecl_62636_fields
++ath6kl_wmi_get_stats_cmd_fndecl_62638_fields ath6kl_wmi_get_stats_cmd fndecl 2 62638 NULL
++fts_rtllib_device_62643_fields fts rtllib_device 0 62643 NULL
++cfg_sg_seg_cnt_lpfc_hba_62646_fields cfg_sg_seg_cnt lpfc_hba 0 62646 NULL
++curr_len_max3421_hcd_62658_fields curr_len max3421_hcd 0 62658 NULL
++irq_max_tg3_62664_fields irq_max tg3 0 62664 NULL
++calculate_discard_block_size_fndecl_62667_fields calculate_discard_block_size fndecl 0-1 62667 NULL nohasharray
++alloc_new_reservation_fndecl_62667_fields alloc_new_reservation fndecl 0 62667 &calculate_discard_block_size_fndecl_62667_fields nohasharray
++base_i40e_hmc_obj_info_62667_fields base i40e_hmc_obj_info 0 62667 &alloc_new_reservation_fndecl_62667_fields
++qxl_gem_object_create_fndecl_62668_fields qxl_gem_object_create fndecl 2 62668 NULL
++bss_priv_size_wiphy_62669_fields bss_priv_size wiphy 0 62669 NULL nohasharray
++max_outstanding_tx_leaf_msg_softinfo_62669_fields max_outstanding_tx leaf_msg_softinfo 0 62669 &bss_priv_size_wiphy_62669_fields
++ocfs2_xattr_trusted_set_fndecl_62672_fields ocfs2_xattr_trusted_set fndecl 6 62672 NULL
++pci_cfg_space_size_ext_fndecl_62679_fields pci_cfg_space_size_ext fndecl 0 62679 NULL
++encode_rpcb_string_fndecl_62680_fields encode_rpcb_string fndecl 3 62680 NULL
++num_vsis_i40e_hw_capabilities_62685_fields num_vsis i40e_hw_capabilities 0 62685 NULL
++start_ttm_mem_reg_62688_fields start ttm_mem_reg 0 62688 NULL
++vmemdup_fndecl_62706_fields vmemdup fndecl 2 62706 NULL
++curwidth_usb_usbvision_62710_fields curwidth usb_usbvision 0 62710 NULL
++mtu_ring_info_62721_fields mtu ring_info 0 62721 NULL
++limit_tc_sfq_qopt_62728_fields limit tc_sfq_qopt 0 62728 NULL nohasharray
++jffs2_write_begin_fndecl_62728_fields jffs2_write_begin fndecl 3 62728 &limit_tc_sfq_qopt_62728_fields
++total_len_android_wifi_priv_cmd_62735_fields total_len android_wifi_priv_cmd 0 62735 NULL
++smi_read_eeprom_fndecl_62737_fields smi_read_eeprom fndecl 4 62737 NULL nohasharray
++nct6683_create_attr_group_fndecl_62737_fields nct6683_create_attr_group fndecl 3 62737 &smi_read_eeprom_fndecl_62737_fields
++xfs_da_read_buf_fndecl_62739_fields xfs_da_read_buf fndecl 3 62739 NULL
++twa_load_sgl_fndecl_62743_fields twa_load_sgl fndecl 5 62743 NULL
++mi_first_entry_offset_nilfs_mdt_info_62749_fields mi_first_entry_offset nilfs_mdt_info 0 62749 NULL
++num_counters_vardecl_op_model_amd_c_62750_fields num_counters vardecl_op_model_amd.c 0 62750 NULL
++__bioset_create_fndecl_62752_fields __bioset_create fndecl 2-1 62752 NULL
++min_align_pci_dev_resource_62768_fields min_align pci_dev_resource 0 62768 NULL
++cp2112_read_req_fndecl_62770_fields cp2112_read_req fndecl 0 62770 NULL
++st_nci_hci_dm_fwupd_end_fndecl_62777_fields st_nci_hci_dm_fwupd_end fndecl 3 62777 NULL
++e_value_size_ext4_xattr_entry_62783_fields e_value_size ext4_xattr_entry 0 62783 NULL
++ecc_bits_jedec_ecc_info_62785_fields ecc_bits jedec_ecc_info 0 62785 NULL
++mt2131_writeregs_fndecl_62788_fields mt2131_writeregs fndecl 3 62788 NULL
++dump_skip_fndecl_62793_fields dump_skip fndecl 2 62793 NULL
++cur_tx_netdev_private_62799_fields cur_tx netdev_private 0 62799 NULL
++hfi1_hdrq_entsize_vardecl_init_c_62810_fields hfi1_hdrq_entsize vardecl_init.c 0 62810 NULL
++xattr_len_ima_event_data_62811_fields xattr_len ima_event_data 0 62811 NULL
++head_aio_ring_62812_fields head aio_ring 0 62812 NULL
++capture_frlog_rme32_62817_fields capture_frlog rme32 0 62817 NULL
++coex_rx_win_size_mwifiex_adapter_62818_fields coex_rx_win_size mwifiex_adapter 0 62818 NULL
++tlen_hfi1_packet_62825_fields tlen hfi1_packet 0 62825 NULL
++gfs2_journaled_truncate_fndecl_62839_fields gfs2_journaled_truncate fndecl 3-2 62839 NULL
++ix2505v_write_fndecl_62840_fields ix2505v_write fndecl 3 62840 NULL
++fuse_read_fill_fndecl_62851_fields fuse_read_fill fndecl 4 62851 NULL
++max_register_regmap_62857_fields max_register regmap 0 62857 NULL
++nr_vecs_nilfs_write_info_62858_fields nr_vecs nilfs_write_info 0 62858 NULL
++spi_xcomm_txrx_bufs_fndecl_62860_fields spi_xcomm_txrx_bufs fndecl 0 62860 NULL
++height_tm6000_core_62864_fields height tm6000_core 0 62864 NULL
++c67x00_td_to_error_fndecl_62867_fields c67x00_td_to_error fndecl 0 62867 NULL
++ext2_max_size_fndecl_62871_fields ext2_max_size fndecl 0-1 62871 NULL
++i2c_hid_get_report_fndecl_62874_fields i2c_hid_get_report fndecl 5 62874 NULL
++qp_count_ntb_transport_ctx_62876_fields qp_count ntb_transport_ctx 0 62876 NULL
++xfs_dir3_leaf_read_fndecl_62878_fields xfs_dir3_leaf_read fndecl 3 62878 NULL
++create_kmalloc_cache_fndecl_62883_fields create_kmalloc_cache fndecl 2 62883 NULL
++valueblk_xfs_attr_inactive_list_62884_fields valueblk xfs_attr_inactive_list 0 62884 NULL
++phys_start_nvs_page_62885_fields phys_start nvs_page 0 62885 NULL
++midi_in_ports_snd_efw_62902_fields midi_in_ports snd_efw 0 62902 NULL
++xfs_init_local_fork_fndecl_62904_fields xfs_init_local_fork fndecl 4 62904 NULL
++arg2__cdrp_cmd_62906_fields arg2 _cdrp_cmd 0 62906 NULL
++length_uvc_buffer_62907_fields length uvc_buffer 0 62907 NULL
++buflen_xdr_buf_62914_fields buflen xdr_buf 0 62914 NULL nohasharray
++n_subdevices_comedi_device_62914_fields n_subdevices comedi_device 0 62914 &buflen_xdr_buf_62914_fields
++out_size_ide_task_request_s_62924_fields out_size ide_task_request_s 0 62924 NULL
++uar_size_mthca_dev_lim_62925_fields uar_size mthca_dev_lim 0 62925 NULL
++teiup_create_fndecl_62930_fields teiup_create fndecl 3 62930 NULL
++ext4_xattr_ibody_get_fndecl_62931_fields ext4_xattr_ibody_get fndecl 0 62931 NULL nohasharray
++madvise_free_pte_range_fndecl_62931_fields madvise_free_pte_range fndecl 2 62931 &ext4_xattr_ibody_get_fndecl_62931_fields
++regmap_encx24j600_sfr_write_fndecl_62935_fields regmap_encx24j600_sfr_write fndecl 4 62935 NULL
++bfad_send_fcpt_cb_fndecl_62936_fields bfad_send_fcpt_cb fndecl 5 62936 NULL
++f2fs_acl_from_disk_fndecl_62937_fields f2fs_acl_from_disk fndecl 2 62937 NULL
++mtu_atmlec_config_msg_62946_fields mtu atmlec_config_msg 0 62946 NULL
++ax88178_change_mtu_fndecl_62947_fields ax88178_change_mtu fndecl 2 62947 NULL
++fixup_leb_fndecl_62955_fields fixup_leb fndecl 3 62955 NULL
++adfs_get_block_fndecl_62966_fields adfs_get_block fndecl 2 62966 NULL
++i_sblock_bfs_inode_62968_fields i_sblock bfs_inode 0 62968 NULL
++io_tlb_nslabs_vardecl_swiotlb_c_62972_fields io_tlb_nslabs vardecl_swiotlb.c 0 62972 NULL
++vmemmap_alloc_block_fndecl_62974_fields vmemmap_alloc_block fndecl 1 62974 NULL nohasharray
++tcp_cdg_cong_avoid_fndecl_62974_fields tcp_cdg_cong_avoid fndecl 3 62974 &vmemmap_alloc_block_fndecl_62974_fields
++max_requests_hpt_iop_request_get_config_62975_fields max_requests hpt_iop_request_get_config 0 62975 NULL
++move_to_top_fndecl_62981_fields move_to_top fndecl 2-3 62981 NULL
++memblock_insert_region_fndecl_62987_fields memblock_insert_region fndecl 3-4 62987 NULL
++integrity_kernel_read_fndecl_62991_fields integrity_kernel_read fndecl 4 62991 NULL
++layout_mddev_62992_fields layout mddev 0 62992 NULL
++i2c_smbus_write_word_data_fndecl_62993_fields i2c_smbus_write_word_data fndecl 0 62993 NULL
++alloc_name_seq_62994_fields alloc name_seq 0 62994 NULL
++ocfs2_xattr_get_value_outside_fndecl_63000_fields ocfs2_xattr_get_value_outside fndecl 0 63000 NULL
++finish_item_xfs_defer_op_type_63002_fields finish_item xfs_defer_op_type 0 63002 NULL
++do_garbage_collect_fndecl_63005_fields do_garbage_collect fndecl 2 63005 NULL
++pagesize_flash_info_63006_fields pagesize flash_info 0 63006 NULL
++get_rsb_struct_fndecl_63014_fields get_rsb_struct fndecl 3 63014 NULL
++btrfs_xattr_handler_set_fndecl_63016_fields btrfs_xattr_handler_set fndecl 6 63016 NULL
++packets_per_second_ua101_63022_fields packets_per_second ua101 0 63022 NULL nohasharray
++iomap_write_actor_fndecl_63022_fields iomap_write_actor fndecl 2-3 63022 &packets_per_second_ua101_63022_fields
++mmio_size_controller_63024_fields mmio_size controller 0 63024 NULL
++hci_send_cmd_fndecl_63025_fields hci_send_cmd fndecl 3 63025 NULL
++mdsl_cxgbit_device_63030_fields mdsl cxgbit_device 0 63030 NULL
++gspca_coarse_grained_expo_autogain_fndecl_63033_fields gspca_coarse_grained_expo_autogain fndecl 4-2-3 63033 NULL
++rsi_sdio_host_intf_write_pkt_fndecl_63034_fields rsi_sdio_host_intf_write_pkt fndecl 3 63034 NULL
++size_align_rxrpc_connection_63035_fields size_align rxrpc_connection 0 63035 NULL
++display_width_vivid_dev_63040_fields display_width vivid_dev 0 63040 NULL
++acpi_aml_write_user_fndecl_63043_fields acpi_aml_write_user fndecl 2-0 63043 NULL
++reset_psn_fndecl_63045_fields reset_psn fndecl 2 63045 NULL
++ttymajor_vardecl_synclink_cs_c_63046_fields ttymajor vardecl_synclink_cs.c 0 63046 NULL
++sizeimage_deinterlace_q_data_63050_fields sizeimage deinterlace_q_data 0 63050 NULL
++atl1c_change_mtu_fndecl_63051_fields atl1c_change_mtu fndecl 2 63051 NULL
++irq_create_fwspec_mapping_fndecl_63056_fields irq_create_fwspec_mapping fndecl 0 63056 NULL
++p54_download_eeprom_fndecl_63057_fields p54_download_eeprom fndecl 4 63057 NULL
++nr_perf_branch_stack_63058_fields nr perf_branch_stack 0 63058 NULL nohasharray
++q0_num_vecs_bna_rx_config_63058_fields q0_num_vecs bna_rx_config 0 63058 &nr_perf_branch_stack_63058_fields
++pcibios_scan_root_fndecl_63059_fields pcibios_scan_root fndecl 1 63059 NULL
++if_bytes_xfs_ifork_63066_fields if_bytes xfs_ifork 0 63066 NULL
++writesize_onenand_chip_63069_fields writesize onenand_chip 0 63069 NULL
++prev_algo_r5conf_63075_fields prev_algo r5conf 0 63075 NULL
++num_records_htt_tx_fetch_ind_63076_fields num_records htt_tx_fetch_ind 0 63076 NULL
++start_bus_pci_mmcfg_region_63086_fields start_bus pci_mmcfg_region 0 63086 NULL
++width_saa7134_dev_63087_fields width saa7134_dev 0 63087 NULL nohasharray
++s_anchor_udf_sb_info_63087_fields s_anchor udf_sb_info 0 63087 &width_saa7134_dev_63087_fields nohasharray
++init_labels_fndecl_63087_fields init_labels fndecl 2 63087 &s_anchor_udf_sb_info_63087_fields
++nfc_hci_execute_cmd_fndecl_63097_fields nfc_hci_execute_cmd fndecl 5 63097 NULL
++rd_page_count_rd_dev_63098_fields rd_page_count rd_dev 0 63098 NULL
++get_registry_size_bnx2x_mcast_obj_63102_fields get_registry_size bnx2x_mcast_obj 0 63102 NULL
++size_devlog_params_63104_fields size devlog_params 0 63104 NULL
++cros_ec_num_pwms_fndecl_63107_fields cros_ec_num_pwms fndecl 0 63107 NULL
++drxdap_fasi_read_block_fndecl_63113_fields drxdap_fasi_read_block fndecl 3 63113 NULL
++ticket_len_rxkad_key_63114_fields ticket_len rxkad_key 0 63114 NULL
++max_recv_sge_ib_qp_cap_63118_fields max_recv_sge ib_qp_cap 0 63118 NULL
++max_cqe_ib_device_attr_63121_fields max_cqe ib_device_attr 0 63121 NULL
++txf_size_bdx_priv_63122_fields txf_size bdx_priv 0 63122 NULL
++uvc_video_decode_data_fndecl_63124_fields uvc_video_decode_data fndecl 4 63124 NULL
++rcvhdrq_cnt_hfi1_ctxtdata_63132_fields rcvhdrq_cnt hfi1_ctxtdata 0 63132 NULL
++prism2_sta_send_mgmt_fndecl_63135_fields prism2_sta_send_mgmt fndecl 5 63135 NULL
++peer_cookie_len_l2tp_session_63142_fields peer_cookie_len l2tp_session 0 63142 NULL
++gk104_fifo_new__fndecl_63149_fields gk104_fifo_new_ fndecl 4 63149 NULL
++vback_porch_videomode_63152_fields vback_porch videomode 0 63152 NULL nohasharray
++nid_nat_journal_entry_63152_fields nid nat_journal_entry 0 63152 &vback_porch_videomode_63152_fields
++obj_order_rbd_image_header_63156_fields obj_order rbd_image_header 0 63156 NULL
++length_req_que_63158_fields length req_que 0 63158 NULL
++dst_y_yuv_frame_info_63162_fields dst_y yuv_frame_info 0 63162 NULL
++get_pattern_len_ts_ops_63165_fields get_pattern_len ts_ops 0 63165 NULL
++word_4_rsq_entry_63169_fields word_4 rsq_entry 0 63169 NULL
++nla_reserve_fndecl_63171_fields nla_reserve fndecl 3 63171 NULL
++vma_hugecache_offset_fndecl_63172_fields vma_hugecache_offset fndecl 0-3 63172 NULL
++object_counter_vardecl_hidma_mgmt_c_63176_fields object_counter vardecl_hidma_mgmt.c 0 63176 NULL
++ulist_add_fndecl_63177_fields ulist_add fndecl 0 63177 NULL
++nr_to_scan_shrink_control_63181_fields nr_to_scan shrink_control 0 63181 NULL
++srpt_srq_size_vardecl_ib_srpt_c_63183_fields srpt_srq_size vardecl_ib_srpt.c 0 63183 NULL
++csums_alg_len_net_conf_63190_fields csums_alg_len net_conf 0 63190 NULL nohasharray
++__sg_page_iter_start_fndecl_63190_fields __sg_page_iter_start fndecl 4 63190 &csums_alg_len_net_conf_63190_fields
++val_v4l2_ctrl_63196_fields val v4l2_ctrl 0 63196 NULL
++__get_required_blob_size_fndecl_63199_fields __get_required_blob_size fndecl 0-3-2 63199 NULL
++mwl8k_add_dma_header_fndecl_63203_fields mwl8k_add_dma_header fndecl 3 63203 NULL
++lcd_lower_margin_atyfb_par_63209_fields lcd_lower_margin atyfb_par 0 63209 NULL nohasharray
++nvm_submit_ppa_list_fndecl_63209_fields nvm_submit_ppa_list fndecl 7 63209 &lcd_lower_margin_atyfb_par_63209_fields
++sdebug_unmap_granularity_vardecl_scsi_debug_c_63211_fields sdebug_unmap_granularity vardecl_scsi_debug.c 0 63211 NULL
++blk_queue_chunk_sectors_fndecl_63214_fields blk_queue_chunk_sectors fndecl 2 63214 NULL
++ufs_alloccg_block_fndecl_63239_fields ufs_alloccg_block fndecl 0 63239 NULL nohasharray
++npins_intel_pinctrl_soc_data_63239_fields npins intel_pinctrl_soc_data 0 63239 &ufs_alloccg_block_fndecl_63239_fields
++mod_len_start_info_63244_fields mod_len start_info 0 63244 NULL
++ep_image_mts_desc_63258_fields ep_image mts_desc 0 63258 NULL
++cachefiles_daemon_write_fndecl_63260_fields cachefiles_daemon_write fndecl 3 63260 NULL
++pdu_write_u_fndecl_63261_fields pdu_write_u fndecl 3 63261 NULL
++sch56xx_device_add_fndecl_63264_fields sch56xx_device_add fndecl 1 63264 NULL
++_fc_frame_alloc_fndecl_63267_fields _fc_frame_alloc fndecl 1 63267 NULL
++version_size_ks_wlan_private_63280_fields version_size ks_wlan_private 0 63280 NULL
++s_mb_last_start_ext4_sb_info_63283_fields s_mb_last_start ext4_sb_info 0 63283 NULL
++num_counters_ebt_replace_63286_fields num_counters ebt_replace 0 63286 NULL
++xprt_rdma_slot_table_entries_vardecl_transport_c_63290_fields xprt_rdma_slot_table_entries vardecl_transport.c 0 63290 NULL
++num_regulators_mc13xxx_regulator_platform_data_63291_fields num_regulators mc13xxx_regulator_platform_data 0 63291 NULL
++ath_rx_init_fndecl_63295_fields ath_rx_init fndecl 2 63295 NULL
++num_req_tx_rings_bnx2_63306_fields num_req_tx_rings bnx2 0 63306 NULL
++valuelen_jfs_ea_63309_fields valuelen jfs_ea 0 63309 NULL
++con_out_kvec_add_fndecl_63316_fields con_out_kvec_add fndecl 2 63316 NULL nohasharray
++big_key_crypt_fndecl_63316_fields big_key_crypt fndecl 3 63316 &con_out_kvec_add_fndecl_63316_fields
++pkt_len_eth_fast_path_rx_reg_cqe_63328_fields pkt_len eth_fast_path_rx_reg_cqe 0 63328 NULL
++doorbell_start_offset_kgd2kfd_shared_resources_63332_fields doorbell_start_offset kgd2kfd_shared_resources 0 63332 NULL
++gf100_vm_create_fndecl_63335_fields gf100_vm_create fndecl 3-2 63335 NULL
++bulk_out_endpointAddress_usb_serial_port_63340_fields bulk_out_endpointAddress usb_serial_port 0 63340 NULL
++clipcount_out_vivid_dev_63343_fields clipcount_out vivid_dev 0 63343 NULL
++len_n_flags_iwl_rx_packet_63345_fields len_n_flags iwl_rx_packet 0 63345 NULL nohasharray
++pf_cids_qed_cdu_iids_63345_fields pf_cids qed_cdu_iids 0 63345 &len_n_flags_iwl_rx_packet_63345_fields
++src_offset_scif_copy_work_63353_fields src_offset scif_copy_work 0 63353 NULL
++x_zoran_overlay_settings_63359_fields x zoran_overlay_settings 0 63359 NULL
++lbq_buf_size_rx_ring_63363_fields lbq_buf_size rx_ring 0 63363 NULL
++phys_mem_fst_card_info_63365_fields phys_mem fst_card_info 0 63365 NULL
++ascot2e_write_regs_fndecl_63369_fields ascot2e_write_regs fndecl 4 63369 NULL
++alloc_irq_domain_ops_63379_fields alloc irq_domain_ops 0 63379 NULL
++wait_request_timeout_fndecl_63387_fields wait_request_timeout fndecl 0 63387 NULL
++data_len_ubifs_inode_63396_fields data_len ubifs_inode 0 63396 NULL
++buflen_audit_rule_data_63397_fields buflen audit_rule_data 0 63397 NULL nohasharray
++hidp_send_ctrl_message_fndecl_63397_fields hidp_send_ctrl_message fndecl 4 63397 &buflen_audit_rule_data_63397_fields
++efi_memdesc_size_vardecl_runtime_map_c_63399_fields efi_memdesc_size vardecl_runtime-map.c 0 63399 NULL nohasharray
++max_cqes_per_cq_iwch_rnic_attributes_63399_fields max_cqes_per_cq iwch_rnic_attributes 0 63399 &efi_memdesc_size_vardecl_runtime_map_c_63399_fields
++geneve6_build_skb_fndecl_63402_fields geneve6_build_skb fndecl 5 63402 NULL nohasharray
++bnx2_find_max_ring_fndecl_63402_fields bnx2_find_max_ring fndecl 0-2 63402 &geneve6_build_skb_fndecl_63402_fields
++flt_chap_size_ql82xx_hw_data_63406_fields flt_chap_size ql82xx_hw_data 0 63406 NULL
++_drbd_no_send_page_fndecl_63409_fields _drbd_no_send_page fndecl 4 63409 NULL
++lib80211_wep_decrypt_fndecl_63419_fields lib80211_wep_decrypt fndecl 2 63419 NULL
++write_midi_fndecl_63421_fields write_midi fndecl 0-3 63421 NULL
++xfs_buf_set_empty_fndecl_63425_fields xfs_buf_set_empty fndecl 2 63425 NULL
++i2400m_tx_fndecl_63427_fields i2400m_tx fndecl 3-4 63427 NULL
++brcmf_sdio_download_firmware_fndecl_63429_fields brcmf_sdio_download_firmware fndecl 4 63429 NULL
++ocfs2_replace_clusters_fndecl_63430_fields ocfs2_replace_clusters fndecl 5-3 63430 NULL nohasharray
++tas571x_register_size_fndecl_63430_fields tas571x_register_size fndecl 0 63430 &ocfs2_replace_clusters_fndecl_63430_fields nohasharray
++ad_sd_read_reg_raw_fndecl_63430_fields ad_sd_read_reg_raw fndecl 3 63430 &tas571x_register_size_fndecl_63430_fields
++mem_len_bfa_mem_kva_s_63432_fields mem_len bfa_mem_kva_s 0 63432 NULL
++m_max_file_size_ceph_mdsmap_63449_fields m_max_file_size ceph_mdsmap 0 63449 NULL
++max_send_wr_ib_qp_cap_63450_fields max_send_wr ib_qp_cap 0 63450 NULL
++vb2_create_framevec_fndecl_63451_fields vb2_create_framevec fndecl 1-2 63451 NULL
++cmd_status_netdev_desc_63452_fields cmd_status netdev_desc 0 63452 NULL nohasharray
++len_on_first_bd_eth_fast_path_rx_tpa_start_cqe_63452_fields len_on_first_bd eth_fast_path_rx_tpa_start_cqe 0 63452 &cmd_status_netdev_desc_63452_fields
++fuse_send_read_fndecl_63454_fields fuse_send_read fndecl 4 63454 NULL
++sysv_raw_inode_fndecl_63458_fields sysv_raw_inode fndecl 2 63458 NULL
++btrfs_drop_extent_cache_fndecl_63461_fields btrfs_drop_extent_cache fndecl 3-2 63461 NULL
++skb_read_pdu_bhs_fndecl_63463_fields skb_read_pdu_bhs fndecl 0 63463 NULL
++biter_fsl_edma_hw_tcd_63464_fields biter fsl_edma_hw_tcd 0 63464 NULL
++count_ceph_inode_xattrs_info_63465_fields count ceph_inode_xattrs_info 0 63465 NULL
++rcvhdrq_size_qib_ctxtdata_63468_fields rcvhdrq_size qib_ctxtdata 0 63468 NULL
++srq_lmt_max_sge_ocrdma_query_srq_rsp_63477_fields srq_lmt_max_sge ocrdma_query_srq_rsp 0 63477 NULL
++__bm_find_next_fndecl_63479_fields __bm_find_next fndecl 0-2 63479 NULL
++cur_fw_xcb_count_qla_hw_data_63480_fields cur_fw_xcb_count qla_hw_data 0 63480 NULL
++sb_spino_align_xfs_sb_63492_fields sb_spino_align xfs_sb 0 63492 NULL
++find_last_bit_fndecl_63495_fields find_last_bit fndecl 0-2 63495 NULL
++__pcpu_size_to_slot_fndecl_63500_fields __pcpu_size_to_slot fndecl 0 63500 NULL
++icv_len_macsec_secy_63501_fields icv_len macsec_secy 0 63501 NULL
++read_data_offset_smb_version_operations_63502_fields read_data_offset smb_version_operations 0 63502 NULL
++xfs_rtfree_range_fndecl_63511_fields xfs_rtfree_range fndecl 3-4 63511 NULL
++bNrChannels_uac_format_type_i_discrete_descriptor_63512_fields bNrChannels uac_format_type_i_discrete_descriptor 0 63512 NULL
++wIELength_uwb_rc_cmd_set_drp_ie_63528_fields wIELength uwb_rc_cmd_set_drp_ie 0 63528 NULL
++wq_sig_mlx5_ib_qp_63533_fields wq_sig mlx5_ib_qp 0 63533 NULL
++maxvram_video_board_63535_fields maxvram video_board 0 63535 NULL
++num_wsm_ether_type_filter_hdr_63536_fields num wsm_ether_type_filter_hdr 0 63536 NULL
++srp_map_finish_fr_fndecl_63538_fields srp_map_finish_fr fndecl 0 63538 NULL
++num_clips_drm_mode_fb_dirty_cmd_63540_fields num_clips drm_mode_fb_dirty_cmd 0 63540 NULL
++word_size_ixgbe_eeprom_info_63556_fields word_size ixgbe_eeprom_info 0 63556 NULL
++multi_rmw_idx_wmi_63557_fields multi_rmw_idx wmi 0 63557 NULL
++tcp_sync_mss_fndecl_63561_fields tcp_sync_mss fndecl 0-2 63561 NULL
++unmap_granularity_scsi_disk_63574_fields unmap_granularity scsi_disk 0 63574 NULL
++xfs_vm_readpages_fndecl_63575_fields xfs_vm_readpages fndecl 4 63575 NULL
++num_ethernet_queues_bnx2x_63578_fields num_ethernet_queues bnx2x 0 63578 NULL
++ide_raw_taskfile_fndecl_63584_fields ide_raw_taskfile fndecl 4 63584 NULL
++trace_fill_header_fndecl_63588_fields trace_fill_header fndecl 5 63588 NULL
++width_console_font_63590_fields width console_font 0 63590 NULL
++fbmem_viafb_par_63594_fields fbmem viafb_par 0 63594 NULL nohasharray
++ri_cno_nilfs_recovery_info_63594_fields ri_cno nilfs_recovery_info 0 63594 &fbmem_viafb_par_63594_fields
++srp_map_data_fndecl_63596_fields srp_map_data fndecl 0 63596 NULL
++f2_id_amd64_family_type_63598_fields f2_id amd64_family_type 0 63598 NULL
++size_dmaengine_unmap_pool_63599_fields size dmaengine_unmap_pool 0 63599 NULL nohasharray
++dbFree_fndecl_63599_fields dbFree fndecl 3-2 63599 &size_dmaengine_unmap_pool_63599_fields
++snd_pcm_plug_alloc_fndecl_63600_fields snd_pcm_plug_alloc fndecl 2 63600 NULL
++offset_pci_sriov_63604_fields offset pci_sriov 0 63604 NULL
++rx_mtu_p54_common_63619_fields rx_mtu p54_common 0 63619 NULL
++len_fscrypt_str_63626_fields len fscrypt_str 0 63626 NULL
++buf_len_mwifiex_sdio_mpa_rx_63636_fields buf_len mwifiex_sdio_mpa_rx 0 63636 NULL nohasharray
++find_run_fndecl_63636_fields find_run fndecl 0 63636 &buf_len_mwifiex_sdio_mpa_rx_63636_fields
++be_v_offset_pnfs_block_extent_63637_fields be_v_offset pnfs_block_extent 0 63637 NULL nohasharray
++rx_ring_size_gfar_priv_rx_q_63637_fields rx_ring_size gfar_priv_rx_q 0 63637 &be_v_offset_pnfs_block_extent_63637_fields
++spad_count_ntb_dev_ops_63660_fields spad_count ntb_dev_ops 0 63660 NULL
++id_nvdimm_63666_fields id nvdimm 0 63666 NULL
++nr_map_e820map_63674_fields nr_map e820map 0 63674 NULL
++nfs_writepage_setup_fndecl_63682_fields nfs_writepage_setup fndecl 3-4 63682 NULL
++pci_get_device_func_fndecl_63689_fields pci_get_device_func fndecl 2 63689 NULL
++nr_pages_msc_63690_fields nr_pages msc 0 63690 NULL
++cell_error_with_code_fndecl_63693_fields cell_error_with_code fndecl 3 63693 NULL
++obj_size_proto_63697_fields obj_size proto 0 63697 NULL
++adv76xx_read_check_fndecl_63705_fields adv76xx_read_check fndecl 0 63705 NULL
++real_trim_memory_fndecl_63709_fields real_trim_memory fndecl 1-2 63709 NULL
++owner_snd_ctl_elem_info_63711_fields owner snd_ctl_elem_info 0 63711 NULL
++index_dtsplit_63712_fields index dtsplit 0 63712 NULL nohasharray
++xfs_alloc_compute_aligned_fndecl_63712_fields xfs_alloc_compute_aligned fndecl 3-2 63712 &index_dtsplit_63712_fields
++kernel_recvmsg_fndecl_63713_fields kernel_recvmsg fndecl 0-5-4 63713 NULL
++omfs_readpages_fndecl_63721_fields omfs_readpages fndecl 4 63721 NULL
++osd_vis_h_yuv_playback_info_63734_fields osd_vis_h yuv_playback_info 0 63734 NULL
++pci_hotplug_mem_size_vardecl_63735_fields pci_hotplug_mem_size vardecl 0 63735 NULL
++get_mergeable_buf_len_fndecl_63736_fields get_mergeable_buf_len fndecl 0 63736 NULL
++__register_chrdev_region_fndecl_63741_fields __register_chrdev_region fndecl 1 63741 NULL
++size_vb2_dc_buf_63751_fields size vb2_dc_buf 0 63751 NULL
++target_size_scsi_transport_template_63753_fields target_size scsi_transport_template 0 63753 NULL
++mp_irqdomain_get_attr_fndecl_63759_fields mp_irqdomain_get_attr fndecl 1 63759 NULL
++ath6kl_wmi_remain_on_chnl_cmd_fndecl_63760_fields ath6kl_wmi_remain_on_chnl_cmd fndecl 2 63760 NULL
++xfs_qm_dqalloc_fndecl_63762_fields xfs_qm_dqalloc fndecl 5-0 63762 NULL nohasharray
++index_isi_board_63762_fields index isi_board 0 63762 &xfs_qm_dqalloc_fndecl_63762_fields
++device_get_child_node_count_fndecl_63779_fields device_get_child_node_count fndecl 0 63779 NULL
++__xfs_rmap_add_fndecl_63780_fields __xfs_rmap_add fndecl 0 63780 NULL
++f2fs_xattr_generic_set_fndecl_63782_fields f2fs_xattr_generic_set fndecl 6 63782 NULL
++items_priv_size_vxge_hw_mempool_63785_fields items_priv_size vxge_hw_mempool 0 63785 NULL
++num_slices_myri10ge_priv_63789_fields num_slices myri10ge_priv 0 63789 NULL
++order_pmcraid_sglist_63792_fields order pmcraid_sglist 0 63792 NULL nohasharray
++orinoco_mic_fndecl_63792_fields orinoco_mic fndecl 7 63792 &order_pmcraid_sglist_63792_fields
++modem_write_cmd_fndecl_63794_fields modem_write_cmd fndecl 3 63794 NULL nohasharray
++dpcm_capture_snd_soc_dai_link_63794_fields dpcm_capture snd_soc_dai_link 0 63794 &modem_write_cmd_fndecl_63794_fields
++read_prph_iwl_trans_ops_63799_fields read_prph iwl_trans_ops 0 63799 NULL
++nouveau_ttm_tt_create_fndecl_63801_fields nouveau_ttm_tt_create fndecl 2 63801 NULL
++ncp_add_mem_fndecl_63822_fields ncp_add_mem fndecl 3 63822 NULL nohasharray
++named_prepare_buf_fndecl_63822_fields named_prepare_buf fndecl 3 63822 &ncp_add_mem_fndecl_63822_fields
++len_extent_map_63823_fields len extent_map 0 63823 NULL
++jffs2_do_link_fndecl_63827_fields jffs2_do_link fndecl 6 63827 NULL
++compat_sys_sendfile_fndecl_63828_fields compat_sys_sendfile fndecl 4 63828 NULL
++alt_mem_k_boot_params_63829_fields alt_mem_k boot_params 0 63829 NULL
++rpipe_aim_fndecl_63832_fields rpipe_aim fndecl 0 63832 NULL
++p_end_nilfs_period_63833_fields p_end nilfs_period 0 63833 NULL
++rx_ring_order_vardecl_main_c_63838_fields rx_ring_order vardecl_main.c 0 63838 NULL
++media_entity_pads_init_fndecl_63846_fields media_entity_pads_init fndecl 2 63846 NULL
++yskip_mt9t031_63853_fields yskip mt9t031 0 63853 NULL
++rx_data_size_sky2_port_63855_fields rx_data_size sky2_port 0 63855 NULL nohasharray
++submit_inquiry_fndecl_63855_fields submit_inquiry fndecl 3 63855 &rx_data_size_sky2_port_63855_fields
++out_phase_peeked_usb_stream_kernel_63871_fields out_phase_peeked usb_stream_kernel 0 63871 NULL
++ssid_len_ieee80211_if_ibss_63872_fields ssid_len ieee80211_if_ibss 0 63872 NULL nohasharray
++Read_hfc16_stable_fndecl_63872_fields Read_hfc16_stable fndecl 0 63872 &ssid_len_ieee80211_if_ibss_63872_fields
++xlvbd_alloc_gendisk_fndecl_63874_fields xlvbd_alloc_gendisk fndecl 4-5 63874 NULL
++__btrfs_unlink_inode_fndecl_63889_fields __btrfs_unlink_inode fndecl 6 63889 NULL
++lmWriteRecord_fndecl_63896_fields lmWriteRecord fndecl 0 63896 NULL
++sent_kcm_tx_msg_63899_fields sent kcm_tx_msg 0 63899 NULL
++ext4_do_update_inode_fndecl_63900_fields ext4_do_update_inode fndecl 0 63900 NULL
++tx_cnt_fritz_bcs_63901_fields tx_cnt fritz_bcs 0 63901 NULL
++mmc_align_data_size_fndecl_63906_fields mmc_align_data_size fndecl 0-2 63906 NULL nohasharray
++fraglen_encryptor_desc_63906_fields fraglen encryptor_desc 0 63906 &mmc_align_data_size_fndecl_63906_fields
++fw_stats_len_wl1271_stats_63915_fields fw_stats_len wl1271_stats 0 63915 NULL
++iwl_mvm_send_cmd_fndecl_63918_fields iwl_mvm_send_cmd fndecl 0 63918 NULL
++align_nft_set_ext_type_63919_fields align nft_set_ext_type 0 63919 NULL nohasharray
++new_data_offset_md_rdev_63919_fields new_data_offset md_rdev 0 63919 &align_nft_set_ext_type_63919_fields
++nilfs_ifile_read_fndecl_63921_fields nilfs_ifile_read fndecl 3 63921 NULL
++start_btrfs_ioctl_defrag_range_args_63924_fields start btrfs_ioctl_defrag_range_args 0 63924 NULL
++efx_change_mtu_fndecl_63926_fields efx_change_mtu fndecl 2 63926 NULL
++dentry_needs_remove_privs_fndecl_63934_fields dentry_needs_remove_privs fndecl 0 63934 NULL
++ro_maxpages_rpcrdma_memreg_ops_63937_fields ro_maxpages rpcrdma_memreg_ops 0 63937 NULL nohasharray
++filemark_cnt_osst_tape_63937_fields filemark_cnt osst_tape 0 63937 &ro_maxpages_rpcrdma_memreg_ops_63937_fields
++Xfacs_acpi_table_fadt_63943_fields Xfacs acpi_table_fadt 0 63943 NULL
++replen_compound_hdr_63944_fields replen compound_hdr 0 63944 NULL
++map_szl_cyttsp4_sysinfo_data_63948_fields map_szl cyttsp4_sysinfo_data 0 63948 NULL
++pcfg_ofs_cyttsp4_sysinfo_ofs_63956_fields pcfg_ofs cyttsp4_sysinfo_ofs 0 63956 NULL
++psb_gtt_alloc_range_fndecl_63966_fields psb_gtt_alloc_range fndecl 2-5 63966 NULL
++bt_ep_bcm5974_config_63978_fields bt_ep bcm5974_config 0 63978 NULL
++max_lba_sm_ftl_63992_fields max_lba sm_ftl 0 63992 NULL
++ihandlen_compat_xfs_fsop_handlereq_63994_fields ihandlen compat_xfs_fsop_handlereq 0 63994 NULL
++iomap_end_iomap_ops_63997_fields iomap_end iomap_ops 0 63997 NULL
++vram_start_amdgpu_mc_63998_fields vram_start amdgpu_mc 0 63998 NULL
++iscsi_conn_send_pdu_fndecl_64002_fields iscsi_conn_send_pdu fndecl 4 64002 NULL
++pvr2_send_request_ex_fndecl_64004_fields pvr2_send_request_ex fndecl 5-7 64004 NULL
++ndescs_clk_corediv_soc_desc_64005_fields ndescs clk_corediv_soc_desc 0 64005 NULL
++field_count_audit_krule_64007_fields field_count audit_krule 0 64007 NULL
++pinctrl_register_map_fndecl_64010_fields pinctrl_register_map fndecl 2 64010 NULL
++rx_ring_size_fe_priv_64012_fields rx_ring_size fe_priv 0 64012 NULL
++wBlocks_usb_rpipe_descriptor_64014_fields wBlocks usb_rpipe_descriptor 0 64014 NULL
++space_snd_ctl_elem_list_64016_fields space snd_ctl_elem_list 0 64016 NULL
++n_sectors_flash_info_64017_fields n_sectors flash_info 0 64017 NULL
++dma_drain_size_request_queue_64023_fields dma_drain_size request_queue 0 64023 NULL
++extAlloc_fndecl_64026_fields extAlloc fndecl 3 64026 NULL
++kxtj9_i2c_read_fndecl_64041_fields kxtj9_i2c_read fndecl 4 64041 NULL
++ieee80211_request_ibss_scan_fndecl_64043_fields ieee80211_request_ibss_scan fndecl 3 64043 NULL
++xdr_partial_copy_from_skb_fndecl_64046_fields xdr_partial_copy_from_skb fndecl 0 64046 NULL
++devs_increment_btrfs_raid_attr_64050_fields devs_increment btrfs_raid_attr 0 64050 NULL
++koneplus_sysfs_read_fndecl_64059_fields koneplus_sysfs_read fndecl 6 64059 NULL
++claim_region_fndecl_64076_fields claim_region fndecl 3-2 64076 NULL
++dma_size_cx88_audio_dev_64082_fields dma_size cx88_audio_dev 0 64082 NULL
++xfs_iomap_eof_prealloc_initial_size_fndecl_64085_fields xfs_iomap_eof_prealloc_initial_size fndecl 3 64085 NULL nohasharray
++max_request_cros_ec_device_64085_fields max_request cros_ec_device 0 64085 &xfs_iomap_eof_prealloc_initial_size_fndecl_64085_fields
++s_end_bfs_super_block_64092_fields s_end bfs_super_block 0 64092 NULL
++act_len_htc_packet_64101_fields act_len htc_packet 0 64101 NULL
++b53_spi_read_fndecl_64106_fields b53_spi_read fndecl 5 64106 NULL
++j_first_unflushed_offset_reiserfs_journal_header_64107_fields j_first_unflushed_offset reiserfs_journal_header 0 64107 NULL
++ncells_nvmem_config_64108_fields ncells nvmem_config 0 64108 NULL
++lmac_count_bgx_64109_fields lmac_count bgx 0 64109 NULL
++fc_copy_buffer_to_sglist_fndecl_64115_fields fc_copy_buffer_to_sglist fndecl 0-2 64115 NULL
++amdgpu_bo_set_metadata_fndecl_64120_fields amdgpu_bo_set_metadata fndecl 3 64120 NULL
++gigaset_fill_inbuf_fndecl_64130_fields gigaset_fill_inbuf fndecl 3 64130 NULL
++gru_alloc_locked_gts_fndecl_64132_fields gru_alloc_locked_gts fndecl 1 64132 NULL
++alx_change_mtu_fndecl_64137_fields alx_change_mtu fndecl 2 64137 NULL
++xenvif_count_requests_fndecl_64138_fields xenvif_count_requests fndecl 0 64138 NULL nohasharray
++ieee80211_tdls_mgmt_teardown_fndecl_64138_fields ieee80211_tdls_mgmt_teardown fndecl 10 64138 &xenvif_count_requests_fndecl_64138_fields
++pskb_expand_head_fndecl_64146_fields pskb_expand_head fndecl 2 64146 NULL
++free_bootmem_fndecl_64150_fields free_bootmem fndecl 2-1 64150 NULL
++llimit_ulp_iscsi_info_64159_fields llimit ulp_iscsi_info 0 64159 NULL
++btrfs_readpage_end_io_hook_fndecl_64160_fields btrfs_readpage_end_io_hook fndecl 4-5 64160 NULL
++drbd_header_size_fndecl_64163_fields drbd_header_size fndecl 0 64163 NULL
++pq_align_dma_device_64165_fields pq_align dma_device 0 64165 NULL nohasharray
++max_gs_mthca_wq_64165_fields max_gs mthca_wq 0 64165 &pq_align_dma_device_64165_fields
++xfs_bmapi_allocate_fndecl_64169_fields xfs_bmapi_allocate fndecl 0 64169 NULL
++ext4_get_stripe_size_fndecl_64170_fields ext4_get_stripe_size fndecl 0 64170 NULL
++nfcid1_len_nfc_target_64182_fields nfcid1_len nfc_target 0 64182 NULL
++wait_reserve_ticket_fndecl_64185_fields wait_reserve_ticket fndecl 0 64185 NULL nohasharray
++lba_to_arena_fndecl_64185_fields lba_to_arena fndecl 0 64185 &wait_reserve_ticket_fndecl_64185_fields
++phys_pcm_format_data_64188_fields phys pcm_format_data 0 64188 NULL
++bi_error_bio_64189_fields bi_error bio 0 64189 NULL
++bulk_out_endpointAddr_usb_ftdi_64197_fields bulk_out_endpointAddr usb_ftdi 0 64197 NULL
++pcibios_scan_specific_bus_fndecl_64203_fields pcibios_scan_specific_bus fndecl 1 64203 NULL
++ath6kl_wmi_pmparams_cmd_fndecl_64204_fields ath6kl_wmi_pmparams_cmd fndecl 2 64204 NULL
++mlx5e_change_mtu_fndecl_64217_fields mlx5e_change_mtu fndecl 2 64217 NULL
++outbuf_dma_usbhid_device_64218_fields outbuf_dma usbhid_device 0 64218 NULL
++start_pfn_xen_memory_region_64226_fields start_pfn xen_memory_region 0 64226 NULL
++f2fs_move_file_range_fndecl_64227_fields f2fs_move_file_range fndecl 4 64227 NULL
++balance_dirty_pages_fndecl_64228_fields balance_dirty_pages fndecl 3 64228 NULL
++ecdh_supported_curve_fndecl_64237_fields ecdh_supported_curve fndecl 0 64237 NULL
++format_chain_fndecl_64242_fields format_chain fndecl 2 64242 NULL
++bNbrPorts_usb_hub_descriptor_64245_fields bNbrPorts usb_hub_descriptor 0 64245 NULL
++payload_sz_status_msg_64247_fields payload_sz status_msg 0 64247 NULL
++ccid_hc_rx_obj_size_ccid_operations_64257_fields ccid_hc_rx_obj_size ccid_operations 0 64257 NULL
++num_entries_wmi_target_roam_tbl_64263_fields num_entries wmi_target_roam_tbl 0 64263 NULL
++getxattr_cb_ceph_vxattr_64271_fields getxattr_cb ceph_vxattr 0 64271 NULL nohasharray
++dio_bio_complete_fndecl_64271_fields dio_bio_complete fndecl 0 64271 &getxattr_cb_ceph_vxattr_64271_fields
++dm_tm_read_lock_fndecl_64272_fields dm_tm_read_lock fndecl 2 64272 NULL
++t_prot_nents_se_cmd_64282_fields t_prot_nents se_cmd 0 64282 NULL
++dev_number_vardecl_rio_cm_c_64286_fields dev_number vardecl_rio_cm.c 0 64286 NULL
++_dump_buf_data_order_vardecl_64288_fields _dump_buf_data_order vardecl 0 64288 NULL
++dev_minor_cuse_init_out_64292_fields dev_minor cuse_init_out 0 64292 NULL
++num_bds_table_bd_list_64306_fields num_bds_table bd_list 0 64306 NULL
++vfp_ast_vbios_enhtable_64307_fields vfp ast_vbios_enhtable 0 64307 NULL nohasharray
++sq_size_vardecl_64307_fields sq_size vardecl 0 64307 &vfp_ast_vbios_enhtable_64307_fields
++sys_vmsplice_fndecl_64310_fields sys_vmsplice fndecl 3 64310 NULL
++cw_putcs_fndecl_64311_fields cw_putcs fndecl 4-5-6 64311 NULL
++__wa_xfer_setup_fndecl_64316_fields __wa_xfer_setup fndecl 0 64316 NULL
++alloc_descs_fndecl_64324_fields alloc_descs fndecl 0-1 64324 NULL
++hs_descs_count_ffs_data_64332_fields hs_descs_count ffs_data 0 64332 NULL
++tx_padding_usbatm_driver_64341_fields tx_padding usbatm_driver 0 64341 NULL
++vif_data_size_ieee80211_hw_64342_fields vif_data_size ieee80211_hw 0 64342 NULL
++apply_vma_lock_flags_fndecl_64346_fields apply_vma_lock_flags fndecl 2-1 64346 NULL
++part_start_hfsplus_sb_info_64347_fields part_start hfsplus_sb_info 0 64347 NULL
++bytesperline_au0828_dev_64350_fields bytesperline au0828_dev 0 64350 NULL
++opcount_compat_xfs_fsop_attrmulti_handlereq_64355_fields opcount compat_xfs_fsop_attrmulti_handlereq 0 64355 NULL
++logfs_truncate_fndecl_64356_fields logfs_truncate fndecl 2 64356 NULL
++isofs_get_blocks_fndecl_64368_fields isofs_get_blocks fndecl 2 64368 NULL nohasharray
++hpi_instream_host_buffer_allocate_fndecl_64368_fields hpi_instream_host_buffer_allocate fndecl 2 64368 &isofs_get_blocks_fndecl_64368_fields
++map_state_fndecl_64377_fields map_state fndecl 1 64377 NULL
++hdr_len_ib_mac_iocb_rsp_64379_fields hdr_len ib_mac_iocb_rsp 0 64379 NULL
++num_rxd_qlcnic_adapter_64380_fields num_rxd qlcnic_adapter 0 64380 NULL
++endio_readpage_release_extent_fndecl_64387_fields endio_readpage_release_extent fndecl 3-2 64387 NULL
++mem_kexec_segment_64393_fields mem kexec_segment 0 64393 NULL
++MemoryWindowSize_DAC960_privdata_64399_fields MemoryWindowSize DAC960_privdata 0 64399 NULL
++oobretlen_mtd_oob_ops_64400_fields oobretlen mtd_oob_ops 0 64400 NULL
++init_data_si_sm_handlers_64406_fields init_data si_sm_handlers 0 64406 NULL
++__get_user_pages_unlocked_fndecl_64409_fields __get_user_pages_unlocked fndecl 3 64409 NULL
++cdc_ncm_max_dgram_size_fndecl_64415_fields cdc_ncm_max_dgram_size fndecl 0 64415 NULL
++l2tp_xmit_skb_fndecl_64419_fields l2tp_xmit_skb fndecl 3 64419 NULL
++ssid_len_cfg80211_ap_settings_64422_fields ssid_len cfg80211_ap_settings 0 64422 NULL
++nfs4_new_slot_fndecl_64436_fields nfs4_new_slot fndecl 2 64436 NULL
++index_v4l2_frmivalenum_64442_fields index v4l2_frmivalenum 0 64442 NULL
++sierra_net_send_cmd_fndecl_64455_fields sierra_net_send_cmd fndecl 3 64455 NULL
++bLength_uvc_control_endpoint_descriptor_64456_fields bLength uvc_control_endpoint_descriptor 0 64456 NULL
++jpg_size_s2255_vc_64457_fields jpg_size s2255_vc 0 64457 NULL
++num_ch_st_sensor_settings_64459_fields num_ch st_sensor_settings 0 64459 NULL
++__ocfs2_decrease_refcount_fndecl_64462_fields __ocfs2_decrease_refcount fndecl 5-4 64462 NULL
++send_write_chunks_fndecl_64466_fields send_write_chunks fndecl 0 64466 NULL
++btrfs_grow_device_fndecl_64468_fields btrfs_grow_device fndecl 3 64468 NULL
++acpi_dev_get_irqresource_fndecl_64469_fields acpi_dev_get_irqresource fndecl 2 64469 NULL
++burst_mode_ratio_intel_dsi_64472_fields burst_mode_ratio intel_dsi 0 64472 NULL
++vb2_read_fndecl_64476_fields vb2_read fndecl 3 64476 NULL nohasharray
++new_blkaddr_f2fs_io_info_64476_fields new_blkaddr f2fs_io_info 0 64476 &vb2_read_fndecl_64476_fields
++pid_vnr_fndecl_64480_fields pid_vnr fndecl 0 64480 NULL nohasharray
++nr_dirtied_pause_task_struct_64480_fields nr_dirtied_pause task_struct 0 64480 &pid_vnr_fndecl_64480_fields
++transport_header_sk_buff_64483_fields transport_header sk_buff 0 64483 NULL
++SendReceive2_fndecl_64485_fields SendReceive2 fndecl 4 64485 NULL
++vhost_hlen_vhost_net_virtqueue_64488_fields vhost_hlen vhost_net_virtqueue 0 64488 NULL
++val_reginit_item_64493_fields val reginit_item 0 64493 NULL
++__FIXADDR_TOP_vardecl_64494_fields __FIXADDR_TOP vardecl 0 64494 NULL nohasharray
++mrf24j40_long_regmap_write_fndecl_64494_fields mrf24j40_long_regmap_write fndecl 3 64494 &__FIXADDR_TOP_vardecl_64494_fields
++ddr_end_intel_sst_drv_64496_fields ddr_end intel_sst_drv 0 64496 NULL
++read_status_fndecl_64497_fields read_status fndecl 0 64497 NULL
++ext_ramdisk_size_boot_params_64498_fields ext_ramdisk_size boot_params 0 64498 NULL
++num_def_tx_descs_octeon_config_64501_fields num_def_tx_descs octeon_config 0 64501 NULL
++dvb_demux_ioctl_fndecl_64510_fields dvb_demux_ioctl fndecl 2 64510 NULL
++fc_plogi_get_maxframe_fndecl_64511_fields fc_plogi_get_maxframe fndecl 0-2 64511 NULL
++at24_eeprom_read_serial_fndecl_64518_fields at24_eeprom_read_serial fndecl 4 64518 NULL
++insize_cros_ec_command_64521_fields insize cros_ec_command 0 64521 NULL
++hdr_len_st_proto_s_64523_fields hdr_len st_proto_s 0 64523 NULL
++tcp_reno_cong_avoid_fndecl_64525_fields tcp_reno_cong_avoid fndecl 3 64525 NULL
++tun_alloc_skb_fndecl_64531_fields tun_alloc_skb fndecl 4-3-2 64531 NULL
++txq_cnt_tg3_64539_fields txq_cnt tg3 0 64539 NULL
++fw_dump_tmplt_size_scsi_qla_host_64541_fields fw_dump_tmplt_size scsi_qla_host 0 64541 NULL
++phys_size_ntb_transport_mw_64544_fields phys_size ntb_transport_mw 0 64544 NULL
++minix_V1_raw_inode_fndecl_64554_fields minix_V1_raw_inode fndecl 2 64554 NULL
++expected_count_hfi1_ctxtdata_64557_fields expected_count hfi1_ctxtdata 0 64557 NULL
++valid_tty_audit_buf_64560_fields valid tty_audit_buf 0 64560 NULL
++stv090x_write_regs_fndecl_64562_fields stv090x_write_regs fndecl 4 64562 NULL
++blockshift_nand_flash_dev_64570_fields blockshift nand_flash_dev 0 64570 NULL
++offset_seg_buf_64571_fields offset seg_buf 0 64571 NULL
++__fprog_create_fndecl_64572_fields __fprog_create fndecl 2 64572 NULL
++erst_read_fndecl_64575_fields erst_read fndecl 1 64575 NULL nohasharray
++mirrors_p1_ore_layout_64575_fields mirrors_p1 ore_layout 0 64575 &erst_read_fndecl_64575_fields nohasharray
++cdc_ncm_align_tail_fndecl_64575_fields cdc_ncm_align_tail fndecl 4-3-2 64575 &mirrors_p1_ore_layout_64575_fields
++msb_set_overwrite_flag_fndecl_64576_fields msb_set_overwrite_flag fndecl 2 64576 NULL
++long_len_fat_ioctl_filldir_callback_64585_fields long_len fat_ioctl_filldir_callback 0 64585 NULL nohasharray
++len_fuse_copy_state_64585_fields len fuse_copy_state 0 64585 &long_len_fat_ioctl_filldir_callback_64585_fields
++blocks_per_seg_f2fs_sb_info_64587_fields blocks_per_seg f2fs_sb_info 0 64587 NULL
++t4_init_l2t_fndecl_64588_fields t4_init_l2t fndecl 1-2 64588 NULL
++udl_gem_create_fndecl_64590_fields udl_gem_create fndecl 3 64590 NULL
++isp1362_urb_dequeue_fndecl_64595_fields isp1362_urb_dequeue fndecl 3 64595 NULL
++s_gdb_count_ext4_sb_info_64617_fields s_gdb_count ext4_sb_info 0 64617 NULL
++xfs_iext_remove_indirect_fndecl_64624_fields xfs_iext_remove_indirect fndecl 3 64624 NULL
++objio_alloc_io_state_fndecl_64631_fields objio_alloc_io_state fndecl 7-6 64631 NULL
++bsg_job_done_fndecl_64640_fields bsg_job_done fndecl 3 64640 NULL
++tpacket_fill_skb_fndecl_64651_fields tpacket_fill_skb fndecl 10-6-9 64651 NULL
++netlink_alloc_large_skb_fndecl_64652_fields netlink_alloc_large_skb fndecl 1 64652 NULL
++cnic_init_id_tbl_fndecl_64665_fields cnic_init_id_tbl fndecl 3 64665 NULL
++maximum_num_containers_aac_dev_64672_fields maximum_num_containers aac_dev 0 64672 NULL
++mapbase_uart_port_64681_fields mapbase uart_port 0 64681 NULL
++xfs_trans_mod_sb_fndecl_64682_fields xfs_trans_mod_sb fndecl 3 64682 NULL
++num_fields_ima_template_desc_64688_fields num_fields ima_template_desc 0 64688 NULL
++i40iw_send_mpa_reject_fndecl_64702_fields i40iw_send_mpa_reject fndecl 3 64702 NULL nohasharray
++max_ars_nfit_spa_64702_fields max_ars nfit_spa 0 64702 &i40iw_send_mpa_reject_fndecl_64702_fields
++size_cramfs_inode_64704_fields size cramfs_inode 0 64704 NULL
++isdn_ppp_fill_rq_fndecl_64711_fields isdn_ppp_fill_rq fndecl 2 64711 NULL
++base_cmdline_vardecl_dma_contiguous_c_64713_fields base_cmdline vardecl_dma-contiguous.c 0 64713 NULL nohasharray
++peek_len_proto_ops_64713_fields peek_len proto_ops 0 64713 &base_cmdline_vardecl_dma_contiguous_c_64713_fields
++rcount_x25_asy_64715_fields rcount x25_asy 0 64715 NULL
++width_drm_framebuffer_64716_fields width drm_framebuffer 0 64716 NULL
++spc_modesense_long_blockdesc_fndecl_64717_fields spc_modesense_long_blockdesc fndecl 0 64717 NULL
++pool_index_max_cxgbi_ppm_64718_fields pool_index_max cxgbi_ppm 0 64718 NULL nohasharray
++vs_bsize_vxfs_sb_64718_fields vs_bsize vxfs_sb 0 64718 &pool_index_max_cxgbi_ppm_64718_fields nohasharray
++goldfish_tty_current_line_count_vardecl_goldfish_c_64718_fields goldfish_tty_current_line_count vardecl_goldfish.c 0 64718 &vs_bsize_vxfs_sb_64718_fields
++mt7601u_dma_fw_fndecl_64719_fields mt7601u_dma_fw fndecl 4 64719 NULL
++size_host_cmd_ds_command_64722_fields size host_cmd_ds_command 0 64722 NULL
++max_touch_num_goodix_ts_data_64725_fields max_touch_num goodix_ts_data 0 64725 NULL
++xfs_iext_add_fndecl_64733_fields xfs_iext_add fndecl 3 64733 NULL
++last_mgmt_tx_frame_len_wmi_64739_fields last_mgmt_tx_frame_len wmi 0 64739 NULL
++se_io_cb_fndecl_64742_fields se_io_cb fndecl 3 64742 NULL
++ulite_assign_fndecl_64744_fields ulite_assign fndecl 3-2 64744 NULL
++net_frag_header_len_inet_connection_sock_af_ops_64745_fields net_frag_header_len inet_connection_sock_af_ops 0 64745 NULL
++create_pid_cachep_fndecl_64753_fields create_pid_cachep fndecl 1 64753 NULL
++ocfs2_fill_initial_dirents_fndecl_64755_fields ocfs2_fill_initial_dirents fndecl 4 64755 NULL
++datasz_memelfnote_64760_fields datasz memelfnote 0 64760 NULL
++raid_disk_mdp_device_descriptor_s_64762_fields raid_disk mdp_device_descriptor_s 0 64762 NULL
++vid_begin_switchdev_obj_port_vlan_64767_fields vid_begin switchdev_obj_port_vlan 0 64767 NULL
++full_len_kcm_rx_msg_64771_fields full_len kcm_rx_msg 0 64771 NULL
++jfs_get_block_fndecl_64772_fields jfs_get_block fndecl 2 64772 NULL
++ib_qib_max_srq_sges_vardecl_64786_fields ib_qib_max_srq_sges vardecl 0 64786 NULL nohasharray
++keep_resources_fndecl_64786_fields keep_resources fndecl 6-5 64786 &ib_qib_max_srq_sges_vardecl_64786_fields
++tun_hlen_ip_tunnel_64791_fields tun_hlen ip_tunnel 0 64791 NULL
++_update_journal_header_block_fndecl_64803_fields _update_journal_header_block fndecl 2 64803 NULL nohasharray
++fr_max_payload_fcoe_rcv_info_64803_fields fr_max_payload fcoe_rcv_info 0 64803 &_update_journal_header_block_fndecl_64803_fields
++tx_headroom_nci_dev_64805_fields tx_headroom nci_dev 0 64805 NULL
++alloc_align_snd_array_64806_fields alloc_align snd_array 0 64806 NULL
++f2fs_set_context_fndecl_64813_fields f2fs_set_context fndecl 3 64813 NULL
++reg_list_size_amdgpu_rlc_64826_fields reg_list_size amdgpu_rlc 0 64826 NULL
++ocfs2_xattr_index_block_find_fndecl_64835_fields ocfs2_xattr_index_block_find fndecl 0 64835 NULL
++ngpio_gpio_chip_64845_fields ngpio gpio_chip 0 64845 NULL nohasharray
++smsc75xx_change_mtu_fndecl_64845_fields smsc75xx_change_mtu fndecl 2 64845 &ngpio_gpio_chip_64845_fields
++_send_fndecl_64846_fields _send fndecl 3 64846 NULL nohasharray
++ath6kl_wmi_sta_bmiss_enhance_cmd_fndecl_64846_fields ath6kl_wmi_sta_bmiss_enhance_cmd fndecl 2 64846 &_send_fndecl_64846_fields
++_req_append_segment_fndecl_64852_fields _req_append_segment fndecl 2 64852 NULL
++log_max_len_client_hdr_64853_fields log_max_len client_hdr 0 64853 NULL nohasharray
++E_info_CARD_PROPERTIES_64853_fields E_info CARD_PROPERTIES 0 64853 &log_max_len_client_hdr_64853_fields
++bud_wbuf_callback_fndecl_64863_fields bud_wbuf_callback fndecl 3 64863 NULL
++vring_create_virtqueue_fndecl_64864_fields vring_create_virtqueue fndecl 2 64864 NULL
++raw_recvmsg_fndecl_64866_fields raw_recvmsg fndecl 3 64866 NULL nohasharray
++len_discard_entry_64866_fields len discard_entry 0 64866 &raw_recvmsg_fndecl_64866_fields
++p_linux_binprm_64868_fields p linux_binprm 0 64868 NULL
++rq_count_enic_64875_fields rq_count enic 0 64875 NULL
++tx_ring_size_fe_priv_64876_fields tx_ring_size fe_priv 0 64876 NULL
++tx_max_frame_ntb_transport_qp_64878_fields tx_max_frame ntb_transport_qp 0 64878 NULL
++snd_pcm_hw_param_max_fndecl_64887_fields snd_pcm_hw_param_max fndecl 4 64887 NULL nohasharray
++qs_in_channels_hdspm_64887_fields qs_in_channels hdspm 0 64887 &snd_pcm_hw_param_max_fndecl_64887_fields
++count_ioctl_gntalloc_alloc_gref_64889_fields count ioctl_gntalloc_alloc_gref 0 64889 NULL nohasharray
++ks8995_write_fndecl_64889_fields ks8995_write fndecl 4 64889 &count_ioctl_gntalloc_alloc_gref_64889_fields
++xfs_defer_trans_roll_fndecl_64897_fields xfs_defer_trans_roll fndecl 0 64897 NULL
++mpeglinesize_vardecl_cx23885_417_c_64898_fields mpeglinesize vardecl_cx23885-417.c 0 64898 NULL
++__ieee80211_amsdu_copy_fndecl_64900_fields __ieee80211_amsdu_copy fndecl 4-2-3 64900 NULL
++unuse_pte_range_fndecl_64903_fields unuse_pte_range fndecl 3 64903 NULL
++data_size_event_reader_64909_fields data_size event_reader 0 64909 NULL
++nmsgs_i2c_rdwr_ioctl_data_64911_fields nmsgs i2c_rdwr_ioctl_data 0 64911 NULL
++next_block_for_io_dio_submit_64914_fields next_block_for_io dio_submit 0 64914 NULL
++rd_size_uhid_create_req_64916_fields rd_size uhid_create_req 0 64916 NULL
++dma_attach_fndecl_64917_fields dma_attach fndecl 10-8-7 64917 NULL
++piothreshold_vardecl_64919_fields piothreshold vardecl 0 64919 NULL
++nl80211_send_mlme_event_fndecl_64920_fields nl80211_send_mlme_event fndecl 4 64920 NULL
++verity_for_bv_block_fndecl_64936_fields verity_for_bv_block fndecl 0 64936 NULL
++ath10k_wmi_tlv_op_gen_bcn_tmpl_fndecl_64938_fields ath10k_wmi_tlv_op_gen_bcn_tmpl fndecl 8 64938 NULL nohasharray
++sq_max_wqes_per_wr_mlx4_ib_qp_64938_fields sq_max_wqes_per_wr mlx4_ib_qp 0 64938 &ath10k_wmi_tlv_op_gen_bcn_tmpl_fndecl_64938_fields
++ieee80211_start_tx_ba_cb_irqsafe_fndecl_64943_fields ieee80211_start_tx_ba_cb_irqsafe fndecl 3 64943 NULL
++pci_iov_virtfn_bus_fndecl_64949_fields pci_iov_virtfn_bus fndecl 0-2 64949 NULL
++ieee80211_tdls_add_ies_fndecl_64954_fields ieee80211_tdls_add_ies fndecl 8 64954 NULL
++status_spi_message_64956_fields status spi_message 0 64956 NULL
++count_acpi_processor_power_64969_fields count acpi_processor_power 0 64969 NULL
++len_ctrl_queue_64975_fields len ctrl_queue 0 64975 NULL
++hq_size_cnic_local_64987_fields hq_size cnic_local 0 64987 NULL nohasharray
++rp2_alloc_ports_fndecl_64987_fields rp2_alloc_ports fndecl 0-1 64987 &hq_size_cnic_local_64987_fields
++maxTxCredits_edgeport_port_64991_fields maxTxCredits edgeport_port 0 64991 NULL
++UpdateRegs_fndecl_64995_fields UpdateRegs fndecl 2-3 64995 NULL nohasharray
++vt8231_device_add_fndecl_64995_fields vt8231_device_add fndecl 1 64995 &UpdateRegs_fndecl_64995_fields
++access_length_acpi_connection_info_65000_fields access_length acpi_connection_info 0 65000 NULL
++mask_cbuf_65001_fields mask cbuf 0 65001 NULL
++actual_size_saa7164_user_buffer_65010_fields actual_size saa7164_user_buffer 0 65010 NULL
++cmd_len_sg_io_hdr_65018_fields cmd_len sg_io_hdr 0 65018 NULL
++intr_size_usb_pcwd_private_65024_fields intr_size usb_pcwd_private 0 65024 NULL
++au8522_rc_read_fndecl_65026_fields au8522_rc_read fndecl 5 65026 NULL
++ocfs2_block_group_fill_fndecl_65027_fields ocfs2_block_group_fill fndecl 4 65027 NULL
++codeword_size_onfi_ext_ecc_info_65032_fields codeword_size onfi_ext_ecc_info 0 65032 NULL
++xfs_calc_dquots_per_chunk_fndecl_65040_fields xfs_calc_dquots_per_chunk fndecl 0-1 65040 NULL
++brcmf_cfg80211_vndr_cmds_dcmd_handler_fndecl_65059_fields brcmf_cfg80211_vndr_cmds_dcmd_handler fndecl 4 65059 NULL
++iscsi_max_rcv_data_seg_len_dev_db_entry_65060_fields iscsi_max_rcv_data_seg_len dev_db_entry 0 65060 NULL nohasharray
++xen_free_ro_pages_fndecl_65060_fields xen_free_ro_pages fndecl 2-1 65060 &iscsi_max_rcv_data_seg_len_dev_db_entry_65060_fields
++line_count_acpi_nfit_interleave_65069_fields line_count acpi_nfit_interleave 0 65069 NULL
++ResidualCnt__ErrorInfo_struct_65074_fields ResidualCnt _ErrorInfo_struct 0 65074 NULL
++xfs_growfs_rt_alloc_fndecl_65079_fields xfs_growfs_rt_alloc fndecl 2-3 65079 NULL
++len_scifioctl_reg_65083_fields len scifioctl_reg 0 65083 NULL
++frame_size_pwc_device_65084_fields frame_size pwc_device 0 65084 NULL
++fcoe_len_fcoe_rport_65085_fields fcoe_len fcoe_rport 0 65085 NULL
++width_cx88_core_65086_fields width cx88_core 0 65086 NULL
++size_ion_test_rw_data_65088_fields size ion_test_rw_data 0 65088 NULL
++queue_depth_se_node_acl_65089_fields queue_depth se_node_acl 0 65089 NULL
++sco_send_frame_fndecl_65092_fields sco_send_frame fndecl 3 65092 NULL
++fat_write_end_fndecl_65095_fields fat_write_end fndecl 5 65095 NULL
++ecryptfs_write_begin_fndecl_65099_fields ecryptfs_write_begin fndecl 3 65099 NULL
++max_xri_lpfc_max_cfg_param_65100_fields max_xri lpfc_max_cfg_param 0 65100 NULL nohasharray
++ieee802154_hdr_push_fndecl_65100_fields ieee802154_hdr_push fndecl 0 65100 &max_xri_lpfc_max_cfg_param_65100_fields
++sndsize_sock_xprt_65105_fields sndsize sock_xprt 0 65105 NULL
++x25_recvmsg_fndecl_65106_fields x25_recvmsg fndecl 3 65106 NULL nohasharray
++ocfs2_dx_dir_rebalance_fndecl_65106_fields ocfs2_dx_dir_rebalance fndecl 7 65106 &x25_recvmsg_fndecl_65106_fields
++mmc_test_seq_read_perf_fndecl_65111_fields mmc_test_seq_read_perf fndecl 2 65111 NULL
++fat_alloc_new_dir_fndecl_65115_fields fat_alloc_new_dir fndecl 0 65115 NULL
++wpa_ie_len_libipw_device_65120_fields wpa_ie_len libipw_device 0 65120 NULL
++scrub_extent_for_parity_fndecl_65123_fields scrub_extent_for_parity fndecl 3-2-4 65123 NULL
++keyctl_instantiate_key_fndecl_65132_fields keyctl_instantiate_key fndecl 3 65132 NULL
++qib_rcvhdrentsize_vardecl_qib_iba7322_c_65133_fields qib_rcvhdrentsize vardecl_qib_iba7322.c 0 65133 NULL
++num_pipe_drm_psb_private_65138_fields num_pipe drm_psb_private 0 65138 NULL
++byte_count_iwl_stored_beacon_notif_65145_fields byte_count iwl_stored_beacon_notif 0 65145 NULL
++depth_sh_veu_format_65150_fields depth sh_veu_format 0 65150 NULL
++pci_mem_end_qed_dev_info_65160_fields pci_mem_end qed_dev_info 0 65160 NULL
++nexthdrlen_lowpan_nhc_65161_fields nexthdrlen lowpan_nhc 0 65161 NULL
++mwifiex_cmd_append_vsie_tlv_fndecl_65164_fields mwifiex_cmd_append_vsie_tlv fndecl 0 65164 NULL
++ccp_get_dm_area_fndecl_65170_fields ccp_get_dm_area fndecl 4 65170 NULL
++__ext4_block_zero_page_range_fndecl_65173_fields __ext4_block_zero_page_range fndecl 3 65173 NULL
++vlans_b53_chip_data_65177_fields vlans b53_chip_data 0 65177 NULL
++crb_read_netxen_adapter_65178_fields crb_read netxen_adapter 0 65178 NULL
++xfs_rtget_summary_fndecl_65179_fields xfs_rtget_summary fndecl 4-3-0 65179 NULL
++usb_gadget_get_string_fndecl_65180_fields usb_gadget_get_string fndecl 0 65180 NULL
++fat_total_sect_fat_bios_param_block_65184_fields fat_total_sect fat_bios_param_block 0 65184 NULL
++svc_tcp_restore_pages_fndecl_65189_fields svc_tcp_restore_pages fndecl 0 65189 NULL
++free_blk_ocfs2_cached_block_free_65195_fields free_blk ocfs2_cached_block_free 0 65195 NULL
++xfs_bmap_shift_extents_fndecl_65200_fields xfs_bmap_shift_extents fndecl 4 65200 NULL
++NumIdentPartitions_cfi_intelext_regioninfo_65201_fields NumIdentPartitions cfi_intelext_regioninfo 0 65201 NULL
++ackr_win_top_rxrpc_call_65205_fields ackr_win_top rxrpc_call 0 65205 NULL
++fat_shortname2uni_fndecl_65206_fields fat_shortname2uni fndecl 0 65206 NULL nohasharray
++height_dt3155_priv_65206_fields height dt3155_priv 0 65206 &fat_shortname2uni_fndecl_65206_fields
++aper_size_radeon_mc_65212_fields aper_size radeon_mc 0 65212 NULL
++rx_agg_ring_mask_bnxt_65213_fields rx_agg_ring_mask bnxt 0 65213 NULL nohasharray
++get_regs_len_ethtool_ops_65213_fields get_regs_len ethtool_ops 0 65213 &rx_agg_ring_mask_bnxt_65213_fields
++i40evf_change_mtu_fndecl_65220_fields i40evf_change_mtu fndecl 2 65220 NULL
++maxresp_sz_nfsd4_channel_attrs_65221_fields maxresp_sz nfsd4_channel_attrs 0 65221 NULL
++memory_manufacturer_code_ms_boot_attr_info_65224_fields memory_manufacturer_code ms_boot_attr_info 0 65224 NULL
++ocfs2_xattr_bucket_get_name_value_fndecl_65230_fields ocfs2_xattr_bucket_get_name_value fndecl 0 65230 NULL
++iscsi_iser_recv_fndecl_65231_fields iscsi_iser_recv fndecl 4 65231 NULL
++install_irq_resource_fndecl_65241_fields install_irq_resource fndecl 2 65241 NULL
++fb_max_height_vmw_private_65243_fields fb_max_height vmw_private 0 65243 NULL
++ext4_da_write_inline_data_begin_fndecl_65244_fields ext4_da_write_inline_data_begin fndecl 4-3 65244 NULL nohasharray
++word3_alx_rrd_65244_fields word3 alx_rrd 0 65244 &ext4_da_write_inline_data_begin_fndecl_65244_fields
++range_end_writeback_control_65245_fields range_end writeback_control 0 65245 NULL
++bytes_dump_iterator_65249_fields bytes dump_iterator 0 65249 NULL
++ctx_blk_size_cnic_eth_dev_65262_fields ctx_blk_size cnic_eth_dev 0 65262 NULL
++get_dir_index_using_offset_fndecl_65267_fields get_dir_index_using_offset fndecl 0-7 65267 NULL
++ubi_self_check_all_ff_fndecl_65268_fields ubi_self_check_all_ff fndecl 4 65268 NULL
++m_ialloc_blks_xfs_mount_65284_fields m_ialloc_blks xfs_mount 0 65284 NULL
++size_t4_rq_65285_fields size t4_rq 0 65285 NULL
++cp_pack_total_block_count_f2fs_checkpoint_65288_fields cp_pack_total_block_count f2fs_checkpoint 0 65288 NULL
++txfifo_size_lpuart_port_65300_fields txfifo_size lpuart_port 0 65300 NULL nohasharray
++ntfs_bmap_fndecl_65300_fields ntfs_bmap fndecl 2 65300 &txfifo_size_lpuart_port_65300_fields
++memory_lseek_fndecl_65306_fields memory_lseek fndecl 2 65306 NULL
++ext4_dio_get_block_unwritten_sync_fndecl_65307_fields ext4_dio_get_block_unwritten_sync fndecl 2 65307 NULL
++in_param_mlx4_vhcr_65311_fields in_param mlx4_vhcr 0 65311 NULL
++mt312_read_fndecl_65312_fields mt312_read fndecl 4 65312 NULL
++ExtPageLength__MPI2_CONFIG_REPLY_65319_fields ExtPageLength _MPI2_CONFIG_REPLY 0 65319 NULL
++info_arc_emac_bd_65321_fields info arc_emac_bd 0 65321 NULL
++dm_get_reserved_rq_based_ios_fndecl_65322_fields dm_get_reserved_rq_based_ios fndecl 0 65322 NULL
++align_size_hwbus_ops_65327_fields align_size hwbus_ops 0 65327 NULL
++ath10k_wmi_start_scan_tlvs_len_fndecl_65331_fields ath10k_wmi_start_scan_tlvs_len fndecl 0 65331 NULL
++alloc_in_dirband_fndecl_65332_fields alloc_in_dirband fndecl 2 65332 NULL
++panel_count_vbt_r10_65334_fields panel_count vbt_r10 0 65334 NULL
++ldisc_receive_fndecl_65343_fields ldisc_receive fndecl 4 65343 NULL
++gss_krb5_cts_crypt_fndecl_65346_fields gss_krb5_cts_crypt fndecl 3 65346 NULL
++snap_count_rbd_image_header_ondisk_65348_fields snap_count rbd_image_header_ondisk 0 65348 NULL nohasharray
++si476x_radio_fops_read_fndecl_65348_fields si476x_radio_fops_read fndecl 3 65348 &snap_count_rbd_image_header_ondisk_65348_fields
++len_rpc_pipe_msg_65361_fields len rpc_pipe_msg 0 65361 NULL
++fec_decode_rsb_fndecl_65362_fields fec_decode_rsb fndecl 4 65362 NULL
++dma_out_iguanair_65368_fields dma_out iguanair 0 65368 NULL nohasharray
++add_excluded_extent_fndecl_65368_fields add_excluded_extent fndecl 3-2 65368 &dma_out_iguanair_65368_fields
++drbd_send_command_fndecl_65377_fields drbd_send_command fndecl 4-6 65377 NULL
++nfsd_readv_fndecl_65378_fields nfsd_readv fndecl 4 65378 NULL
++rpcrdma_tail_pullup_fndecl_65388_fields rpcrdma_tail_pullup fndecl 0 65388 NULL
++max_rx_aggregation_subframes_ieee80211_hw_65391_fields max_rx_aggregation_subframes ieee80211_hw 0 65391 NULL
++vhost_net_rx_peek_head_len_fndecl_65395_fields vhost_net_rx_peek_head_len fndecl 0 65395 NULL
++rcvegrbufsize_qib_devdata_65397_fields rcvegrbufsize qib_devdata 0 65397 NULL
++digital_in_send_atr_req_fndecl_65398_fields digital_in_send_atr_req fndecl 5 65398 NULL
++wl12xx_sdio_raw_write_fndecl_65406_fields wl12xx_sdio_raw_write fndecl 4 65406 NULL
++__napi_alloc_skb_fndecl_65409_fields __napi_alloc_skb fndecl 2 65409 NULL
++macb_init_rx_buffer_size_fndecl_65410_fields macb_init_rx_buffer_size fndecl 2 65410 NULL
++queue_size_iwl_rxq_65412_fields queue_size iwl_rxq 0 65412 NULL
++fat_zeroed_cluster_fndecl_65422_fields fat_zeroed_cluster fndecl 3-2-0 65422 NULL
++free_bud_entry_65425_fields free bud_entry 0 65425 NULL
++block_size_card_cfg_data_65426_fields block_size card_cfg_data 0 65426 NULL
++period_bytes_snd_usb_substream_65430_fields period_bytes snd_usb_substream 0 65430 NULL
++uar_page_shift_mlx4_dev_65434_fields uar_page_shift mlx4_dev 0 65434 NULL
++lbs_bcnmiss_write_fndecl_65438_fields lbs_bcnmiss_write fndecl 3 65438 NULL
++xfs_dir3_data_block_free_fndecl_65456_fields xfs_dir3_data_block_free fndecl 4 65456 NULL
++wNtbOutMaxDatagrams_usb_cdc_ncm_ntb_parameters_65459_fields wNtbOutMaxDatagrams usb_cdc_ncm_ntb_parameters 0 65459 NULL
++lfb_base_screen_info_65479_fields lfb_base screen_info 0 65479 NULL
++pci_hotplug_io_size_vardecl_65480_fields pci_hotplug_io_size vardecl 0 65480 NULL
++isoc_size_wa_seg_65482_fields isoc_size wa_seg 0 65482 NULL
++aac_src_ioremap_fndecl_65483_fields aac_src_ioremap fndecl 2 65483 NULL
++logical_tree_mod_root_65499_fields logical tree_mod_root 0 65499 NULL
++rw_bytes_nd_namespace_common_65501_fields rw_bytes nd_namespace_common 0 65501 NULL
++xfs_dir2_shrink_inode_fndecl_65502_fields xfs_dir2_shrink_inode fndecl 2 65502 NULL
++bdx_tx_db_init_fndecl_65508_fields bdx_tx_db_init fndecl 2 65508 NULL
++sys_pwritev_fndecl_65513_fields sys_pwritev fndecl 3 65513 NULL
++_recv_fndecl_65526_fields _recv fndecl 3 65526 NULL
++write_page_nocow_fndecl_65527_fields write_page_nocow fndecl 2 65527 NULL
++size_mei_msg_data_65529_fields size mei_msg_data 0 65529 NULL
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/e_fns.data b/scripts/gcc-plugins/size_overflow_plugin/e_fns.data
+new file mode 100644
+index 0000000..269bba1
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/e_fns.data
+@@ -0,0 +1,5527 @@
++logi_dj_recv_query_paired_devices_fndecl_13_fns logi_dj_recv_query_paired_devices fndecl 0 13 NULL
++response_length_ib_uverbs_ex_destroy_wq_resp_15_fns response_length ib_uverbs_ex_destroy_wq_resp 0 15 NULL
++kfd_wait_on_events_fndecl_19_fns kfd_wait_on_events fndecl 2 19 NULL
++snic_reset_stats_write_fndecl_30_fns snic_reset_stats_write fndecl 3 30 NULL
++iwl_dbgfs_nvm_read_fndecl_54_fns iwl_dbgfs_nvm_read fndecl 3 54 NULL
++bin_to_hex_dup_fndecl_62_fns bin_to_hex_dup fndecl 2 62 NULL
++npages_mlx5_pages_req_70_fns npages mlx5_pages_req 0 70 NULL
++iov_iter_get_pages_alloc_fndecl_76_fns iov_iter_get_pages_alloc fndecl 3 76 NULL
++ieee80211_if_read_dot11MeshMaxPeerLinks_fndecl_85_fns ieee80211_if_read_dot11MeshMaxPeerLinks fndecl 3 85 NULL
++kvm_read_guest_fndecl_107_fns kvm_read_guest fndecl 2-4 107 NULL
++ieee80211_if_read_hw_queues_fndecl_116_fns ieee80211_if_read_hw_queues fndecl 3 116 NULL
++rereg_umr_fndecl_155_fns rereg_umr fndecl 5 155 NULL
++acl_len_nfs_getaclres_171_fns acl_len nfs_getaclres 0 171 NULL
++ufx_read_edid_fndecl_184_fns ufx_read_edid fndecl 0 184 NULL
++sddr55_write_data_fndecl_188_fns sddr55_write_data fndecl 4 188 NULL
++mptctl_do_fw_download_fndecl_190_fns mptctl_do_fw_download fndecl 3 190 NULL
++brcmf_iovar_data_set_fndecl_192_fns brcmf_iovar_data_set fndecl 4 192 NULL
++give_pages_fndecl_198_fns give_pages fndecl 3 198 NULL
++cxgb_alloc_mem_fndecl_212_fns cxgb_alloc_mem fndecl 1 212 NULL
++afs_cell_alloc_fndecl_231_fns afs_cell_alloc fndecl 2 231 NULL
++iwl_dbgfs_low_latency_read_fndecl_237_fns iwl_dbgfs_low_latency_read fndecl 3 237 NULL
++adis16400_show_serial_number_fndecl_246_fns adis16400_show_serial_number fndecl 3 246 NULL
++venus_symlink_fndecl_257_fns venus_symlink fndecl 6-4 257 NULL
++lf_entries_gfs2_leaf_263_fns lf_entries gfs2_leaf 0 263 NULL
++read_snd_midi_event_282_fns read snd_midi_event 0 282 NULL
++islpci_mgt_transaction_fndecl_297_fns islpci_mgt_transaction fndecl 5 297 NULL
++xfpregs_get_fndecl_305_fns xfpregs_get fndecl 4 305 NULL
++num_alt_usb_usbvision_328_fns num_alt usb_usbvision 0 328 NULL
++bNumConfigurations_usb_device_descriptor_360_fns bNumConfigurations usb_device_descriptor 0 360 NULL
++intel_soc_dts_iosf_init_fndecl_374_fns intel_soc_dts_iosf_init fndecl 2 374 NULL
++__i2400mu_send_barker_fndecl_375_fns __i2400mu_send_barker fndecl 3 375 NULL
++cx18_read_fndecl_384_fns cx18_read fndecl 3 384 NULL
++mlxsw_cmd_mbox_query_aq_cap_max_num_eqs_get_fndecl_402_fns mlxsw_cmd_mbox_query_aq_cap_max_num_eqs_get fndecl 0 402 NULL
++apparmor_setprocattr_fndecl_421_fns apparmor_setprocattr fndecl 4 421 NULL
++hfs_file_fsync_fndecl_434_fns hfs_file_fsync fndecl 2-3 434 NULL
++k3_dma_prep_memcpy_fndecl_451_fns k3_dma_prep_memcpy fndecl 4 451 NULL
++__kfifo_max_r_fndecl_459_fns __kfifo_max_r fndecl 1-2-0 459 NULL
++ssp_debug_mode_read_fndecl_463_fns ssp_debug_mode_read fndecl 3 463 NULL
++rx_rx_dropped_frame_read_fndecl_471_fns rx_rx_dropped_frame_read fndecl 3 471 NULL
++print_page_owner_fndecl_474_fns print_page_owner fndecl 2 474 NULL
++rx_path_reset_read_fndecl_490_fns rx_path_reset_read fndecl 3 490 NULL
++security_inode_getxattr_fndecl_502_fns security_inode_getxattr fndecl 0 502 NULL nohasharray
++ll_mtu_ipw_hardware_502_fns ll_mtu ipw_hardware 0 502 &security_inode_getxattr_fndecl_502_fns
++mr_pool_size_srp_target_port_510_fns mr_pool_size srp_target_port 0 510 NULL
++si476x_radio_read_acf_blob_fndecl_515_fns si476x_radio_read_acf_blob fndecl 3 515 NULL
++grow_gnttab_list_fndecl_523_fns grow_gnttab_list fndecl 1 523 NULL
++names_count_tomoyo_condition_552_fns names_count tomoyo_condition 0 552 NULL
++kzalloc_node_fndecl_563_fns kzalloc_node fndecl 1 563 NULL
++idma64_prep_slave_sg_fndecl_565_fns idma64_prep_slave_sg fndecl 3 565 NULL
++btrfs_item_size_nr_fndecl_572_fns btrfs_item_size_nr fndecl 0 572 NULL
++cfi_read_pri_fndecl_573_fns cfi_read_pri fndecl 3 573 NULL
++paging64_init_context_common_fndecl_577_fns paging64_init_context_common fndecl 3 577 NULL
++drm_property_create_bitmask_fndecl_591_fns drm_property_create_bitmask fndecl 6 591 NULL
++getxattr_fndecl_605_fns getxattr fndecl 4 605 NULL
++ftrace_size_ramoops_context_610_fns ftrace_size ramoops_context 0 610 NULL
++ixgbe_alloc_q_vector_fndecl_612_fns ixgbe_alloc_q_vector fndecl 4-6 612 NULL
++smk_user_access_fndecl_619_fns smk_user_access fndecl 3 619 NULL
++nvme_trans_log_supp_pages_fndecl_625_fns nvme_trans_log_supp_pages fndecl 3 625 NULL
++xenbus_file_read_fndecl_632_fns xenbus_file_read fndecl 3 632 NULL
++b43_debugfs_read_fndecl_634_fns b43_debugfs_read fndecl 3 634 NULL
++ocrdma_get_pbl_info_fndecl_644_fns ocrdma_get_pbl_info fndecl 3 644 NULL
++header_length_irda_usb_cb_657_fns header_length irda_usb_cb 0 657 NULL
++nchannels_fs_dev_659_fns nchannels fs_dev 0 659 NULL
++evdev_do_ioctl_fndecl_664_fns evdev_do_ioctl fndecl 2 664 NULL
++ttm_page_pool_free_fndecl_693_fns ttm_page_pool_free fndecl 2 693 NULL
++size_pstore_private_696_fns size pstore_private 0 696 NULL nohasharray
++read_file_spec_scan_ctl_fndecl_696_fns read_file_spec_scan_ctl fndecl 3 696 &size_pstore_private_696_fns
++dut_mode_read_fndecl_698_fns dut_mode_read fndecl 3 698 NULL
++request_key_with_auxdata_fndecl_720_fns request_key_with_auxdata fndecl 4 720 NULL
++xfs_buf_get_map_fndecl_729_fns xfs_buf_get_map fndecl 3 729 NULL
++iwl_trans_alloc_fndecl_767_fns iwl_trans_alloc fndecl 1 767 NULL
++request_key_auth_read_fndecl_830_fns request_key_auth_read fndecl 3 830 NULL
++pipeline_post_proc_swi_read_fndecl_831_fns pipeline_post_proc_swi_read fndecl 3 831 NULL
++_picolcd_flash_write_fndecl_853_fns _picolcd_flash_write fndecl 4 853 NULL
++irnet_ctrl_write_fndecl_856_fns irnet_ctrl_write fndecl 3 856 NULL
++dvb_register_media_device_fndecl_878_fns dvb_register_media_device fndecl 4 878 NULL
++field_count_audit_rule_data_886_fns field_count audit_rule_data 0 886 NULL
++ieee80211_if_read_dot11MeshHWMPpreqMinInterval_fndecl_899_fns ieee80211_if_read_dot11MeshHWMPpreqMinInterval fndecl 3 899 NULL
++tcpprobe_sprint_fndecl_909_fns tcpprobe_sprint fndecl 0 909 NULL
++max_reply_bytes_mpt3_ioctl_command_918_fns max_reply_bytes mpt3_ioctl_command 0 918 NULL
++icmp_len_batadv_socket_packet_944_fns icmp_len batadv_socket_packet 0 944 NULL
++pcpu_embed_first_chunk_fndecl_947_fns pcpu_embed_first_chunk fndecl 1-2-3 947 NULL nohasharray
++mei_amthif_read_fndecl_947_fns mei_amthif_read fndecl 4 947 &pcpu_embed_first_chunk_fndecl_947_fns
++sel_read_bool_fndecl_959_fns sel_read_bool fndecl 3 959 NULL
++avc_tuner_tuneqpsk_fndecl_978_fns avc_tuner_tuneqpsk fndecl 0 978 NULL
++em28xx_alloc_urbs_fndecl_983_fns em28xx_alloc_urbs fndecl 4 983 NULL
++btmrvl_pscmd_read_fndecl_999_fns btmrvl_pscmd_read fndecl 3 999 NULL
++ath6kl_add_bss_if_needed_fndecl_1006_fns ath6kl_add_bss_if_needed fndecl 6 1006 NULL
++s_last_cno_nilfs_super_block_1016_fns s_last_cno nilfs_super_block 0 1016 NULL
++offset_kmem_cache_1021_fns offset kmem_cache 0 1021 NULL
++subn_get_opa_sma_fndecl_1039_fns subn_get_opa_sma fndecl 3 1039 NULL
++invalid_tid_idx_hfi1_filedata_1040_fns invalid_tid_idx hfi1_filedata 0 1040 NULL
++vnic_dev_get_res_count_fndecl_1044_fns vnic_dev_get_res_count fndecl 0 1044 NULL
++rocker_dma_test_offset_fndecl_1055_fns rocker_dma_test_offset fndecl 3 1055 NULL
++b_cnt_mon_reader_bin_1106_fns b_cnt mon_reader_bin 0 1106 NULL
++cmd_sg_entries_vardecl_ib_srp_c_1108_fns cmd_sg_entries vardecl_ib_srp.c 0 1108 NULL
++create_attr_set_fndecl_1118_fns create_attr_set fndecl 1 1118 NULL
++mdc800_device_read_fndecl_1123_fns mdc800_device_read fndecl 3 1123 NULL
++ion_handle_test_kernel_fndecl_1127_fns ion_handle_test_kernel fndecl 3-4 1127 NULL
++do_kexec_load_fndecl_1129_fns do_kexec_load fndecl 2 1129 NULL
++usblp_new_writeurb_fndecl_1149_fns usblp_new_writeurb fndecl 2 1149 NULL
++xstateregs_set_fndecl_1159_fns xstateregs_set fndecl 4 1159 NULL
++nfs4_acl_bytes_fndecl_1168_fns nfs4_acl_bytes fndecl 0 1168 NULL
++vme_get_size_fndecl_1191_fns vme_get_size fndecl 0 1191 NULL
++tx_frag_key_not_found_read_fndecl_1192_fns tx_frag_key_not_found_read fndecl 3 1192 NULL
++adf_create_ring_fndecl_1199_fns adf_create_ring fndecl 5 1199 NULL
++scsi_log_dump_sense_fndecl_1206_fns scsi_log_dump_sense fndecl 5 1206 NULL
++pcpu_mem_zalloc_fndecl_1207_fns pcpu_mem_zalloc fndecl 1 1207 NULL
++gtp_hashtable_new_fndecl_1236_fns gtp_hashtable_new fndecl 2 1236 NULL
++remote_settings_file_write_fndecl_1240_fns remote_settings_file_write fndecl 3 1240 NULL
++cifs_local_to_utf16_bytes_fndecl_1250_fns cifs_local_to_utf16_bytes fndecl 0 1250 NULL
++viafb_dvp0_proc_write_fndecl_1276_fns viafb_dvp0_proc_write fndecl 3 1276 NULL
++sst_fill_and_send_cmd_fndecl_1280_fns sst_fill_and_send_cmd fndecl 7 1280 NULL
++agp_alloc_page_array_fndecl_1289_fns agp_alloc_page_array fndecl 1 1289 NULL
++snapshot_read_fndecl_1370_fns snapshot_read fndecl 3 1370 NULL
++cfs_expr_list_values_fndecl_1371_fns cfs_expr_list_values fndecl 0 1371 NULL
++reiserfs_get_block_fndecl_1379_fns reiserfs_get_block fndecl 2 1379 NULL
++iwl_dbgfs_calib_disabled_read_fndecl_1386_fns iwl_dbgfs_calib_disabled_read fndecl 3 1386 NULL
++iwl_dbgfs_rx_phyinfo_read_fndecl_1394_fns iwl_dbgfs_rx_phyinfo_read fndecl 3 1394 NULL
++sctp_setsockopt_connectx_old_fndecl_1396_fns sctp_setsockopt_connectx_old fndecl 3 1396 NULL
++sync_file_alloc_fndecl_1398_fns sync_file_alloc fndecl 1 1398 NULL
++wl1271_rx_filter_get_fields_size_fndecl_1405_fns wl1271_rx_filter_get_fields_size fndecl 0 1405 NULL
++call_netdevice_notifiers_fndecl_1411_fns call_netdevice_notifiers fndecl 0 1411 NULL
++num_rx_bds_bcmgenet_priv_1412_fns num_rx_bds bcmgenet_priv 0 1412 NULL
++qlcnic_83xx_sysfs_flash_write_handler_fndecl_1419_fns qlcnic_83xx_sysfs_flash_write_handler fndecl 6 1419 NULL
++reg_umr_fndecl_1421_fns reg_umr fndecl 5 1421 NULL
++pt_cap_get_fndecl_1430_fns pt_cap_get fndecl 0 1430 NULL
++idma64_alloc_desc_fndecl_1433_fns idma64_alloc_desc fndecl 1 1433 NULL
++nr_cpusets_fndecl_1442_fns nr_cpusets fndecl 0 1442 NULL
++memcg_update_list_lru_node_fndecl_1454_fns memcg_update_list_lru_node fndecl 3 1454 NULL
++sys_ppoll_fndecl_1459_fns sys_ppoll fndecl 2 1459 NULL
++iio_debugfs_write_reg_fndecl_1477_fns iio_debugfs_write_reg fndecl 3 1477 NULL
++print_frame_fndecl_1506_fns print_frame fndecl 0 1506 NULL
++qlcnic_sriov_init_fndecl_1529_fns qlcnic_sriov_init fndecl 2 1529 NULL
++__aa_kvmalloc_fndecl_1547_fns __aa_kvmalloc fndecl 1 1547 NULL
++libcfs_kvzalloc_fndecl_1568_fns libcfs_kvzalloc fndecl 1 1568 NULL
++page_readlink_fndecl_1569_fns page_readlink fndecl 3 1569 NULL
++kmem_zalloc_large_fndecl_1572_fns kmem_zalloc_large fndecl 1 1572 NULL
++error_error_frame_non_ctrl_read_fndecl_1589_fns error_error_frame_non_ctrl_read fndecl 3 1589 NULL
++skl_get_module_param_size_fndecl_1615_fns skl_get_module_param_size fndecl 0 1615 NULL
++copied_rpc_pipe_msg_1658_fns copied rpc_pipe_msg 0 1658 NULL
++vzalloc_node_fndecl_1683_fns vzalloc_node fndecl 1 1683 NULL
++linear_conf_fndecl_1710_fns linear_conf fndecl 2 1710 NULL
++aead_edesc_alloc_fndecl_1730_fns aead_edesc_alloc fndecl 2 1730 NULL
++devm_iio_device_alloc_fndecl_1732_fns devm_iio_device_alloc fndecl 2 1732 NULL
++skl_set_module_params_fndecl_1736_fns skl_set_module_params fndecl 3 1736 NULL
++compat_filldir_fndecl_1746_fns compat_filldir fndecl 3 1746 NULL
++copy_module_from_user_fndecl_1751_fns copy_module_from_user fndecl 2 1751 NULL
++it_context_mask_fw_ohci_1753_fns it_context_mask fw_ohci 0 1753 NULL
++ima_show_measurements_count_fndecl_1763_fns ima_show_measurements_count fndecl 3 1763 NULL
++reiserfs_add_entry_fndecl_1797_fns reiserfs_add_entry fndecl 4 1797 NULL
++libcfs_kkuc_group_add_fndecl_1809_fns libcfs_kkuc_group_add fndecl 5 1809 NULL
++rt2x00debug_write_eeprom_fndecl_1824_fns rt2x00debug_write_eeprom fndecl 3 1824 NULL
++num_vectors_e1000_adapter_1827_fns num_vectors e1000_adapter 0 1827 NULL
++__add_prelim_ref_fndecl_1828_fns __add_prelim_ref fndecl 2 1828 NULL
++ntfs_ucstonls_fndecl_1834_fns ntfs_ucstonls fndecl 3-5 1834 NULL
++kvm_mmu_gva_to_gpa_write_fndecl_1840_fns kvm_mmu_gva_to_gpa_write fndecl 0 1840 NULL
++vm_map_ram_fndecl_1845_fns vm_map_ram fndecl 2 1845 NULL
++device_slot_1847_fns device slot 0 1847 NULL
++isr_tx_procs_read_fndecl_1855_fns isr_tx_procs_read fndecl 3 1855 NULL
++drm_mode_create_tv_properties_fndecl_1857_fns drm_mode_create_tv_properties fndecl 2 1857 NULL
++read_file_wow_fndecl_1861_fns read_file_wow fndecl 3 1861 NULL
++da9150_write_qif_fndecl_1872_fns da9150_write_qif fndecl 3 1872 NULL
++bset_tree_bytes_fndecl_1876_fns bset_tree_bytes fndecl 0 1876 NULL
++mwl8k_cmd_set_beacon_fndecl_1877_fns mwl8k_cmd_set_beacon fndecl 4 1877 NULL
++num_vmdq_vsis_i40e_pf_1882_fns num_vmdq_vsis i40e_pf 0 1882 NULL
++_iwl_dbgfs_fw_dbg_collect_write_fndecl_1890_fns _iwl_dbgfs_fw_dbg_collect_write fndecl 3 1890 NULL
++read_file_ani_fndecl_1898_fns read_file_ani fndecl 3 1898 NULL
++mpi_alloc_limb_space_fndecl_1925_fns mpi_alloc_limb_space fndecl 1 1925 NULL
++usblp_write_fndecl_1945_fns usblp_write fndecl 3 1945 NULL
++sd_init_fndecl_1946_fns sd_init fndecl 0 1946 NULL
++gss_pipe_downcall_fndecl_1949_fns gss_pipe_downcall fndecl 3 1949 NULL
++mcryptd_alloc_instance_fndecl_1958_fns mcryptd_alloc_instance fndecl 2-3 1958 NULL
++__kmalloc_fndecl_1964_fns __kmalloc fndecl 1 1964 NULL
++tty_buffer_request_room_fndecl_1967_fns tty_buffer_request_room fndecl 2-0 1967 NULL
++response_length_mlx5_ib_create_rwq_ind_tbl_resp_1977_fns response_length mlx5_ib_create_rwq_ind_tbl_resp 0 1977 NULL
++mwifiex_memrw_read_fndecl_1997_fns mwifiex_memrw_read fndecl 3 1997 NULL
++alauda_read_block_fndecl_2008_fns alauda_read_block fndecl 4 2008 NULL
++diva_get_trace_filter_fndecl_2021_fns diva_get_trace_filter fndecl 0 2021 NULL
++ec_i2c_count_message_fndecl_2022_fns ec_i2c_count_message fndecl 2-0 2022 NULL nohasharray
++complicated_alloc_urb_fndecl_2022_fns complicated_alloc_urb fndecl 3 2022 &ec_i2c_count_message_fndecl_2022_fns
++kmalloc_order_trace_fndecl_2063_fns kmalloc_order_trace fndecl 1 2063 NULL
++usbat_flash_read_data_fndecl_2065_fns usbat_flash_read_data fndecl 4 2065 NULL
++dvb_generic_ioctl_fndecl_2081_fns dvb_generic_ioctl fndecl 2 2081 NULL
++mei_io_cb_alloc_buf_fndecl_2088_fns mei_io_cb_alloc_buf fndecl 2 2088 NULL
++min_odd_fndecl_2105_fns min_odd fndecl 1-2-0 2105 NULL
++qsfp1_debugfs_read_fndecl_2107_fns qsfp1_debugfs_read fndecl 3 2107 NULL
++oom_adj_read_fndecl_2116_fns oom_adj_read fndecl 3 2116 NULL
++gen_unique_name_fndecl_2127_fns gen_unique_name fndecl 0 2127 NULL
++_iwl_dbgfs_sta_drain_write_fndecl_2142_fns _iwl_dbgfs_sta_drain_write fndecl 3 2142 NULL
++synic_set_msr_fndecl_2149_fns synic_set_msr fndecl 3 2149 NULL
++__kfifo_dma_out_prepare_fndecl_2165_fns __kfifo_dma_out_prepare fndecl 4 2165 NULL
++lpfc_idiag_extacc_avail_get_fndecl_2170_fns lpfc_idiag_extacc_avail_get fndecl 3-0 2170 NULL
++qsfp_1_read_fndecl_2184_fns qsfp_1_read fndecl 3 2184 NULL
++ldlm_lock_create_fndecl_2195_fns ldlm_lock_create fndecl 7 2195 NULL
++s_blocks_per_group_ext4_sb_info_2201_fns s_blocks_per_group ext4_sb_info 0 2201 NULL
++SYSC_prctl_fndecl_2255_fns SYSC_prctl fndecl 4 2255 NULL
++compat_rw_copy_check_uvector_fndecl_2274_fns compat_rw_copy_check_uvector fndecl 0-3 2274 NULL nohasharray
++rxpipe_descr_host_int_trig_rx_data_read_fndecl_2274_fns rxpipe_descr_host_int_trig_rx_data_read fndecl 3 2274 &compat_rw_copy_check_uvector_fndecl_2274_fns
++read_pointer_st_buffer_2314_fns read_pointer st_buffer 0 2314 NULL
++il_dbgfs_stations_read_fndecl_2319_fns il_dbgfs_stations_read fndecl 3 2319 NULL
++mmc_alloc_sg_fndecl_2323_fns mmc_alloc_sg fndecl 1 2323 NULL
++size_debugfs_blob_wrapper_2338_fns size debugfs_blob_wrapper 0 2338 NULL
++rx_rx_beacon_early_term_read_fndecl_2340_fns rx_rx_beacon_early_term_read fndecl 3 2340 NULL
++cipso_v4_map_cat_enum_hton_fndecl_2359_fns cipso_v4_map_cat_enum_hton fndecl 0 2359 NULL
++fat_ioctl_filldir_fndecl_2360_fns fat_ioctl_filldir fndecl 3 2360 NULL
++__jfs_getxattr_fndecl_2412_fns __jfs_getxattr fndecl 0 2412 NULL
++rspq_size_qset_params_2417_fns rspq_size qset_params 0 2417 NULL
++smtcfb_write_fndecl_2433_fns smtcfb_write fndecl 3 2433 NULL
++tomoyo_read_control_fndecl_2465_fns tomoyo_read_control fndecl 3 2465 NULL
++regmap_register_patch_fndecl_2466_fns regmap_register_patch fndecl 3 2466 NULL
++rtllib_alloc_txb_fndecl_2468_fns rtllib_alloc_txb fndecl 1 2468 NULL
++ocfs2_xattr_get_nolock_fndecl_2493_fns ocfs2_xattr_get_nolock fndecl 0 2493 NULL
++evdev_ioctl_handler_fndecl_2522_fns evdev_ioctl_handler fndecl 2 2522 NULL
++mthca_alloc_init_fndecl_2537_fns mthca_alloc_init fndecl 2 2537 NULL
++lprocfs_wr_import_fndecl_2547_fns lprocfs_wr_import fndecl 3 2547 NULL
++__kmem_cache_alias_fndecl_2551_fns __kmem_cache_alias fndecl 3 2551 NULL
++dma_maxpq_fndecl_2555_fns dma_maxpq fndecl 0 2555 NULL
++__tun_chr_ioctl_fndecl_2575_fns __tun_chr_ioctl fndecl 4 2575 NULL
++crc_size_vardecl_pm_check_c_2624_fns crc_size vardecl_pm-check.c 0 2624 NULL
++len_whc_std_2626_fns len whc_std 0 2626 NULL
++alloc_large_system_hash_fndecl_2660_fns alloc_large_system_hash fndecl 2 2660 NULL nohasharray
++ath10k_debug_fw_reset_stats_read_fndecl_2660_fns ath10k_debug_fw_reset_stats_read fndecl 3 2660 &alloc_large_system_hash_fndecl_2660_fns
++evdev_ioctl_fndecl_2672_fns evdev_ioctl fndecl 2 2672 NULL
++scif_user_recv_fndecl_2675_fns scif_user_recv fndecl 3 2675 NULL
++queue_reply_fndecl_2691_fns queue_reply fndecl 3 2691 NULL
++__set_enter_print_fmt_fndecl_2700_fns __set_enter_print_fmt fndecl 0 2700 NULL
++zoran_write_fndecl_2711_fns zoran_write fndecl 3 2711 NULL
++handle_received_packet_fndecl_2730_fns handle_received_packet fndecl 3 2730 NULL
++aic_common_of_init_fndecl_2752_fns aic_common_of_init fndecl 4 2752 NULL
++cache_write_procfs_fndecl_2760_fns cache_write_procfs fndecl 3 2760 NULL
++qib_user_sdma_alloc_header_fndecl_2761_fns qib_user_sdma_alloc_header fndecl 2 2761 NULL
++ceph_find_or_create_string_fndecl_2777_fns ceph_find_or_create_string fndecl 2 2777 NULL
++max_qid_nvmet_subsys_2781_fns max_qid nvmet_subsys 0 2781 NULL
++_sp2d_min_pg_fndecl_2819_fns _sp2d_min_pg fndecl 0 2819 NULL
++btrfs_get_16_fndecl_2836_fns btrfs_get_16 fndecl 0 2836 NULL
++zd_usb_read_fw_fndecl_2866_fns zd_usb_read_fw fndecl 4 2866 NULL
++prl_count_ip_tunnel_2900_fns prl_count ip_tunnel 0 2900 NULL
++mem_rw_fndecl_2902_fns mem_rw fndecl 3 2902 NULL
++origin_write_extent_fndecl_2983_fns origin_write_extent fndecl 2 2983 NULL
++do_sync_mmap_readahead_fndecl_3008_fns do_sync_mmap_readahead fndecl 4 3008 NULL
++mem_write_fndecl_3019_fns mem_write fndecl 3 3019 NULL
++bpw_len_pch_spi_data_3026_fns bpw_len pch_spi_data 0 3026 NULL
++fat_compat_ioctl_filldir_fndecl_3037_fns fat_compat_ioctl_filldir fndecl 3 3037 NULL
++add_res_tree_fndecl_3044_fns add_res_tree fndecl 7 3044 NULL
++compat_process_vm_rw_fndecl_3069_fns compat_process_vm_rw fndecl 5 3069 NULL
++npages_mthca_db_table_3090_fns npages mthca_db_table 0 3090 NULL nohasharray
++ad7280_write_fndecl_3090_fns ad7280_write fndecl 0 3090 &npages_mthca_db_table_3090_fns
++fb_prepare_logo_fndecl_3092_fns fb_prepare_logo fndecl 0 3092 NULL
++loopstart_soundfont_sample_info_3093_fns loopstart soundfont_sample_info 0 3093 NULL
++rx_pkt_map_sz_tg3_3106_fns rx_pkt_map_sz tg3 0 3106 NULL
++mt76_init_sband_fndecl_3112_fns mt76_init_sband fndecl 6 3112 NULL nohasharray
++iwl_dbgfs_rxon_flags_read_fndecl_3112_fns iwl_dbgfs_rxon_flags_read fndecl 3 3112 &mt76_init_sband_fndecl_3112_fns
++compat_filldir64_fndecl_3119_fns compat_filldir64 fndecl 3 3119 NULL
++sys_sendto_fndecl_3162_fns sys_sendto fndecl 6 3162 NULL
++fill_elf_header_fndecl_3182_fns fill_elf_header fndecl 2 3182 NULL
++wl1271_format_buffer_fndecl_3185_fns wl1271_format_buffer fndecl 2 3185 NULL
++uvc_alloc_entity_fndecl_3191_fns uvc_alloc_entity fndecl 3-4 3191 NULL
++nvme_trans_supported_vpd_pages_fndecl_3196_fns nvme_trans_supported_vpd_pages fndecl 4 3196 NULL
++p9_tag_alloc_fndecl_3198_fns p9_tag_alloc fndecl 3 3198 NULL
++cfs_cpt_table_create_fndecl_3207_fns cfs_cpt_table_create fndecl 1 3207 NULL
++sisusb_send_packet_fndecl_3208_fns sisusb_send_packet fndecl 2 3208 NULL
++key_icverrors_read_fndecl_3212_fns key_icverrors_read fndecl 3 3212 NULL
++iwl_dbgfs_pm_params_read_fndecl_3217_fns iwl_dbgfs_pm_params_read fndecl 3 3217 NULL
++nportcntrs_hfi1_devdata_3218_fns nportcntrs hfi1_devdata 0 3218 NULL
++command_setexposure_fndecl_3231_fns command_setexposure fndecl 0 3231 NULL
++expect_class_max_nf_conntrack_helper_3242_fns expect_class_max nf_conntrack_helper 0 3242 NULL
++rx_buf_size_bnxt_3254_fns rx_buf_size bnxt 0 3254 NULL
++vfio_msi_enable_fndecl_3257_fns vfio_msi_enable fndecl 2 3257 NULL
++sbc_check_prot_fndecl_3258_fns sbc_check_prot fndecl 4 3258 NULL
++rx_rx_phy_hdr_read_fndecl_3269_fns rx_rx_phy_hdr_read fndecl 3 3269 NULL
++rsxx_cram_read_fndecl_3278_fns rsxx_cram_read fndecl 3 3278 NULL
++htable_bits_fndecl_3286_fns htable_bits fndecl 0 3286 NULL
++alg_setsockopt_fndecl_3306_fns alg_setsockopt fndecl 5 3306 NULL
++snd_rme9652_playback_copy_fndecl_3321_fns snd_rme9652_playback_copy fndecl 5 3321 NULL
++hidraw_report_event_fndecl_3332_fns hidraw_report_event fndecl 3 3332 NULL
++add_desc_fndecl_3339_fns add_desc fndecl 3 3339 NULL
++memcg_update_list_lru_fndecl_3349_fns memcg_update_list_lru fndecl 3 3349 NULL
++fast_user_write_fndecl_3357_fns fast_user_write fndecl 5 3357 NULL
++frame_size_stk_camera_3367_fns frame_size stk_camera 0 3367 NULL
++amd_create_gatt_pages_fndecl_3370_fns amd_create_gatt_pages fndecl 1 3370 NULL
++nvdimm_set_config_data_fndecl_3384_fns nvdimm_set_config_data fndecl 4 3384 NULL
++drbd_bm_resize_fndecl_3385_fns drbd_bm_resize fndecl 2 3385 NULL
++num_paths_rdma_route_3407_fns num_paths rdma_route 0 3407 NULL
++venus_create_fndecl_3416_fns venus_create fndecl 4 3416 NULL
++udf_getblk_fndecl_3436_fns udf_getblk fndecl 2 3436 NULL
++command_setcolourbalance_fndecl_3441_fns command_setcolourbalance fndecl 0 3441 NULL
++cifs_read_page_from_socket_fndecl_3452_fns cifs_read_page_from_socket fndecl 0 3452 NULL
++qib_qsfp_write_fndecl_3477_fns qib_qsfp_write fndecl 2-4-0 3477 NULL
++rx_buf_size__mgslpc_info_3490_fns rx_buf_size _mgslpc_info 0 3490 NULL
++kfifo_copy_to_user_fndecl_3509_fns kfifo_copy_to_user fndecl 3-4 3509 NULL
++read_file_tgt_int_stats_fndecl_3530_fns read_file_tgt_int_stats fndecl 3 3530 NULL
++fifo_size_qcom_smd_channel_3531_fns fifo_size qcom_smd_channel 0 3531 NULL
++cipso_v4_gentag_rng_fndecl_3532_fns cipso_v4_gentag_rng fndecl 0 3532 NULL
++snd_hdsp_playback_copy_fndecl_3543_fns snd_hdsp_playback_copy fndecl 5 3543 NULL
++dvb_dmxdev_buffer_read_fndecl_3545_fns dvb_dmxdev_buffer_read fndecl 0-4 3545 NULL
++security_context_to_sid_force_fndecl_3559_fns security_context_to_sid_force fndecl 2 3559 NULL
++_snd_pcm_new_fndecl_3575_fns _snd_pcm_new fndecl 4-5 3575 NULL
++pcpu_page_first_chunk_fndecl_3579_fns pcpu_page_first_chunk fndecl 1 3579 NULL
++asq_buf_size_i40e_adminq_info_3582_fns asq_buf_size i40e_adminq_info 0 3582 NULL
++bcm2835_dma_prep_dma_cyclic_fndecl_3588_fns bcm2835_dma_prep_dma_cyclic fndecl 4-3 3588 NULL
++use_debug_keys_read_fndecl_3600_fns use_debug_keys_read fndecl 3 3600 NULL
++net_rx_queue_update_kobjects_fndecl_3617_fns net_rx_queue_update_kobjects fndecl 0 3617 NULL
++do_msg_fill_fndecl_3624_fns do_msg_fill fndecl 3 3624 NULL
++add_res_range_fndecl_3629_fns add_res_range fndecl 4 3629 NULL
++cfg80211_inform_bss_frame_data_fndecl_3632_fns cfg80211_inform_bss_frame_data fndecl 4 3632 NULL
++s_desc_size_ext4_sb_info_3652_fns s_desc_size ext4_sb_info 0 3652 NULL
++pcpu_chunk_struct_size_vardecl_percpu_c_3673_fns pcpu_chunk_struct_size vardecl_percpu.c 0 3673 NULL nohasharray
++get_zeroed_page_fndecl_3673_fns get_zeroed_page fndecl 0 3673 &pcpu_chunk_struct_size_vardecl_percpu_c_3673_fns
++read_file_bool_bmps_fndecl_3699_fns read_file_bool_bmps fndecl 3 3699 NULL
++srp_max_rsp_size_srpt_port_attrib_3700_fns srp_max_rsp_size srpt_port_attrib 0 3700 NULL
++allocate_cmdlines_buffer_fndecl_3704_fns allocate_cmdlines_buffer fndecl 1 3704 NULL
++ip_getsockopt_fndecl_3711_fns ip_getsockopt fndecl 0 3711 NULL
++diva_get_driver_dbg_mask_fndecl_3716_fns diva_get_driver_dbg_mask fndecl 0 3716 NULL
++dvb_create_media_entity_fndecl_3720_fns dvb_create_media_entity fndecl 3 3720 NULL
++__v4l2_ctrl_modify_range_fndecl_3726_fns __v4l2_ctrl_modify_range fndecl 3 3726 NULL
++SYSC_rt_sigpending_fndecl_3728_fns SYSC_rt_sigpending fndecl 2 3728 NULL
++split_leaf_fndecl_3729_fns split_leaf fndecl 0 3729 NULL
++video_ioctl2_fndecl_3735_fns video_ioctl2 fndecl 2 3735 NULL
++insert_ptr_fndecl_3737_fns insert_ptr fndecl 6 3737 NULL
++intel_th_msc_read_fndecl_3740_fns intel_th_msc_read fndecl 3 3740 NULL
++entries_p54_cal_database_3741_fns entries p54_cal_database 0 3741 NULL
++snapshot_read_next_fndecl_3745_fns snapshot_read_next fndecl 0 3745 NULL
++error_null_frame_tx_start_read_fndecl_3750_fns error_null_frame_tx_start_read fndecl 3 3750 NULL
++tblsize_snd_sg_buf_3776_fns tblsize snd_sg_buf 0 3776 NULL
++next_fn_fndecl_3785_fns next_fn fndecl 0-3 3785 NULL
++buflen_audit_krule_3796_fns buflen audit_krule 0 3796 NULL
++ch_list_len_scan_attr_3809_fns ch_list_len scan_attr 0 3809 NULL
++force_bredr_smp_write_fndecl_3821_fns force_bredr_smp_write fndecl 3 3821 NULL
++mei_nfc_send_fndecl_3830_fns mei_nfc_send fndecl 3 3830 NULL
++read_file_xmit_fndecl_3836_fns read_file_xmit fndecl 3 3836 NULL
++qib_verbs_send_fndecl_3860_fns qib_verbs_send fndecl 3-5 3860 NULL
++lbs_threshold_read_fndecl_3877_fns lbs_threshold_read fndecl 5 3877 NULL
++console_size_ramoops_context_3884_fns console_size ramoops_context 0 3884 NULL
++s_num_blocks_omfs_sb_info_3888_fns s_num_blocks omfs_sb_info 0 3888 NULL nohasharray
++dbgfs_sram_len_il_priv_3888_fns dbgfs_sram_len il_priv 0 3888 &s_num_blocks_omfs_sb_info_3888_fns
++btrfs_inode_ref_name_len_fndecl_3891_fns btrfs_inode_ref_name_len fndecl 0 3891 NULL
++rx_defrag_tkip_called_read_fndecl_3892_fns rx_defrag_tkip_called_read fndecl 3 3892 NULL
++arch_gnttab_init_fndecl_3893_fns arch_gnttab_init fndecl 1 3893 NULL
++event_calibration_read_fndecl_3912_fns event_calibration_read fndecl 3 3912 NULL
++proc_fault_inject_write_fndecl_3921_fns proc_fault_inject_write fndecl 3 3921 NULL
++acpi_data_prop_read_fndecl_3925_fns acpi_data_prop_read fndecl 0 3925 NULL
++virtio_gpu_get_capsets_fndecl_3928_fns virtio_gpu_get_capsets fndecl 2 3928 NULL
++ath6kl_send_go_probe_resp_fndecl_3946_fns ath6kl_send_go_probe_resp fndecl 3 3946 NULL
++_efx_mcdi_rpc_async_fndecl_3948_fns _efx_mcdi_rpc_async fndecl 4-5 3948 NULL
++max_ti_iu_len_srp_rdma_ch_3984_fns max_ti_iu_len srp_rdma_ch 0 3984 NULL
++iwl_dbgfs_uapsd_misbehaving_read_fndecl_3994_fns iwl_dbgfs_uapsd_misbehaving_read fndecl 3 3994 NULL
++mei_dbgfs_read_active_fndecl_4007_fns mei_dbgfs_read_active fndecl 3 4007 NULL
++netdev_set_num_tc_fndecl_4021_fns netdev_set_num_tc fndecl 2 4021 NULL
++ipc_rcu_alloc_fndecl_4043_fns ipc_rcu_alloc fndecl 1 4043 NULL
++cx18_v4l2_read_fndecl_4063_fns cx18_v4l2_read fndecl 3 4063 NULL
++input_ff_create_fndecl_4075_fns input_ff_create fndecl 2 4075 NULL
++ring_overflow_per_user_data_4076_fns ring_overflow per_user_data 0 4076 NULL
++read_ftrace_buffer_info_4082_fns read ftrace_buffer_info 0 4082 NULL
++kvm_vcpu_read_guest_page_fndecl_4083_fns kvm_vcpu_read_guest_page fndecl 5-2 4083 NULL
++hfi1_seq_read_fndecl_4107_fns hfi1_seq_read fndecl 3 4107 NULL
++__rvt_alloc_mr_fndecl_4129_fns __rvt_alloc_mr fndecl 1 4129 NULL
++struct_size_rmi_register_descriptor_4163_fns struct_size rmi_register_descriptor 0 4163 NULL
++tool_spadfn_read_fndecl_4176_fns tool_spadfn_read fndecl 3 4176 NULL
++max_rx_urb_irda_usb_cb_4182_fns max_rx_urb irda_usb_cb 0 4182 NULL
++saa7146_vmalloc_build_pgtable_fndecl_4183_fns saa7146_vmalloc_build_pgtable fndecl 2 4183 NULL
++stm_char_write_fndecl_4195_fns stm_char_write fndecl 3 4195 NULL nohasharray
++irda_setsockopt_fndecl_4195_fns irda_setsockopt fndecl 5 4195 &stm_char_write_fndecl_4195_fns
++vfs_getxattr_fndecl_4203_fns vfs_getxattr fndecl 0 4203 NULL
++auxv_size_prctl_mm_map_4208_fns auxv_size prctl_mm_map 0 4208 NULL
++nci_hci_set_param_fndecl_4215_fns nci_hci_set_param fndecl 5 4215 NULL
++ath10k_write_htt_max_amsdu_ampdu_fndecl_4223_fns ath10k_write_htt_max_amsdu_ampdu fndecl 3 4223 NULL
++dlm_lock_fndecl_4225_fns dlm_lock fndecl 6 4225 NULL nohasharray
++nilfs_segbuf_map_fndecl_4225_fns nilfs_segbuf_map fndecl 2 4225 &dlm_lock_fndecl_4225_fns
++num_lut_dmm_4228_fns num_lut dmm 0 4228 NULL
++len_bpf_prog_4232_fns len bpf_prog 0 4232 NULL
++cfg80211_mlme_register_mgmt_fndecl_4255_fns cfg80211_mlme_register_mgmt fndecl 5 4255 NULL
++ntids_tid_info_4263_fns ntids tid_info 0 4263 NULL
++qlcnic_sysfs_read_pci_config_fndecl_4270_fns qlcnic_sysfs_read_pci_config fndecl 6 4270 NULL nohasharray
++xgbe_init_ring_fndecl_4270_fns xgbe_init_ring fndecl 3 4270 &qlcnic_sysfs_read_pci_config_fndecl_4270_fns
++mrp_request_join_fndecl_4281_fns mrp_request_join fndecl 4 4281 NULL
++mangle_name_fndecl_4288_fns mangle_name fndecl 0 4288 NULL
++cgroup_task_count_fndecl_4297_fns cgroup_task_count fndecl 0 4297 NULL
++key_size_pkcs1pad_ctx_4303_fns key_size pkcs1pad_ctx 0 4303 NULL
++raid56_alloc_missing_rbio_fndecl_4316_fns raid56_alloc_missing_rbio fndecl 4 4316 NULL
++ps_upsd_max_apturn_read_fndecl_4317_fns ps_upsd_max_apturn_read fndecl 3 4317 NULL
++ax25_send_frame_fndecl_4335_fns ax25_send_frame fndecl 2 4335 NULL
++iwl_dbgfs_rx_queue_read_fndecl_4340_fns iwl_dbgfs_rx_queue_read fndecl 3 4340 NULL
++ath10k_mem_value_write_fndecl_4399_fns ath10k_mem_value_write fndecl 3 4399 NULL
++pxad_prep_dma_cyclic_fndecl_4411_fns pxad_prep_dma_cyclic fndecl 4-3 4411 NULL
++nfc_llcp_build_tlv_fndecl_4419_fns nfc_llcp_build_tlv fndecl 3 4419 NULL
++batadv_tvlv_container_register_fndecl_4435_fns batadv_tvlv_container_register fndecl 5 4435 NULL
++jfs_fsync_fndecl_4436_fns jfs_fsync fndecl 2-3 4436 NULL
++compress_raw_buf_fndecl_4453_fns compress_raw_buf fndecl 0 4453 NULL
++n_comedi_insn_4458_fns n comedi_insn 0 4458 NULL
++bm_status_read_fndecl_4460_fns bm_status_read fndecl 3 4460 NULL
++rx_ring_size_altera_tse_private_4470_fns rx_ring_size altera_tse_private 0 4470 NULL
++sddr09_read22_fndecl_4476_fns sddr09_read22 fndecl 3-4-6 4476 NULL
++ocfs2_control_message_fndecl_4479_fns ocfs2_control_message fndecl 3 4479 NULL
++__spi_split_transfer_maxsize_fndecl_4482_fns __spi_split_transfer_maxsize fndecl 4 4482 NULL
++debugfs_run_read_fndecl_4532_fns debugfs_run_read fndecl 3 4532 NULL
++map_private_extent_buffer_fndecl_4542_fns map_private_extent_buffer fndecl 0 4542 NULL
++ath10k_read_pktlog_filter_fndecl_4544_fns ath10k_read_pktlog_filter fndecl 3 4544 NULL
++nr_chans_solo_dev_4552_fns nr_chans solo_dev 0 4552 NULL
++acpi_read_slow_fndecl_4554_fns acpi_read_slow fndecl 3-2 4554 NULL
++LoadBitmap_fndecl_4569_fns LoadBitmap fndecl 2 4569 NULL
++ptr_ring_resize_multiple_fndecl_4573_fns ptr_ring_resize_multiple fndecl 2-3 4573 NULL
++wilc_spi_tx_fndecl_4583_fns wilc_spi_tx fndecl 3 4583 NULL
++aqm_read_fndecl_4611_fns aqm_read fndecl 3 4611 NULL
++mbox_test_message_write_fndecl_4627_fns mbox_test_message_write fndecl 3 4627 NULL
++bcache_major_vardecl_super_c_4677_fns bcache_major vardecl_super.c 0 4677 NULL
++send_section_cnt_netvsc_device_4698_fns send_section_cnt netvsc_device 0 4698 NULL
++btrfs_header_nritems_fndecl_4699_fns btrfs_header_nritems fndecl 0 4699 NULL
++iwl_parse_nvm_mcc_info_fndecl_4702_fns iwl_parse_nvm_mcc_info fndecl 3 4702 NULL nohasharray
++single_open_fndecl_4702_fns single_open fndecl 0 4702 &iwl_parse_nvm_mcc_info_fndecl_4702_fns
++gfs2_glock_nq_m_fndecl_4712_fns gfs2_glock_nq_m fndecl 1 4712 NULL
++snd_cs4281_BA1_read_fndecl_4720_fns snd_cs4281_BA1_read fndecl 5 4720 NULL
++tx_tx_burst_programmed_read_fndecl_4723_fns tx_tx_burst_programmed_read fndecl 3 4723 NULL
++acpi_rs_set_resource_source_fndecl_4776_fns acpi_rs_set_resource_source fndecl 0-2 4776 NULL
++max_tfr_mmc_test_area_4780_fns max_tfr mmc_test_area 0 4780 NULL
++__kfifo_from_user_fndecl_4796_fns __kfifo_from_user fndecl 3 4796 NULL
++axi_dmac_alloc_desc_fndecl_4833_fns axi_dmac_alloc_desc fndecl 1 4833 NULL
++read_buf_fndecl_4838_fns read_buf fndecl 2 4838 NULL
++btrfs_get_32_fndecl_4847_fns btrfs_get_32 fndecl 0 4847 NULL
++attach_hdlc_protocol_fndecl_4865_fns attach_hdlc_protocol fndecl 3 4865 NULL
++s_desc_per_block_ext4_sb_info_4867_fns s_desc_per_block ext4_sb_info 0 4867 NULL nohasharray
++gfn_to_hva_memslot_prot_fndecl_4867_fns gfn_to_hva_memslot_prot fndecl 2 4867 &s_desc_per_block_ext4_sb_info_4867_fns
++mlx5_ib_alloc_mr_fndecl_4870_fns mlx5_ib_alloc_mr fndecl 3 4870 NULL
++SYSC_fgetxattr_fndecl_4904_fns SYSC_fgetxattr fndecl 4 4904 NULL
++diva_um_idi_read_fndecl_4912_fns diva_um_idi_read fndecl 0 4912 NULL
++tree_mod_log_eb_move_fndecl_4920_fns tree_mod_log_eb_move fndecl 5 4920 NULL
++read_tape_fndecl_4950_fns read_tape fndecl 2 4950 NULL
++aat2870_reg_write_file_fndecl_4965_fns aat2870_reg_write_file fndecl 3 4965 NULL
++fuse_conn_limit_read_fndecl_4967_fns fuse_conn_limit_read fndecl 3 4967 NULL
++team_options_register_fndecl_4968_fns team_options_register fndecl 3 4968 NULL
++reiserfs_dir_fsync_fndecl_4971_fns reiserfs_dir_fsync fndecl 2-3 4971 NULL
++iwl_mvm_power_mac_dbgfs_read_fndecl_4976_fns iwl_mvm_power_mac_dbgfs_read fndecl 0 4976 NULL
++scif_send_fndecl_4988_fns scif_send fndecl 3 4988 NULL
++tx_tx_retry_per_rate_read_fndecl_5009_fns tx_tx_retry_per_rate_read fndecl 3 5009 NULL
++bulk_in_size_usb_idmouse_5017_fns bulk_in_size usb_idmouse 0 5017 NULL
++ldebugfs_fid_write_common_fndecl_5049_fns ldebugfs_fid_write_common fndecl 2 5049 NULL
++jffs2_fsync_fndecl_5052_fns jffs2_fsync fndecl 2-3 5052 NULL
++offset_SVGAGuestPtr_5056_fns offset SVGAGuestPtr 0 5056 NULL
++reg_create_fndecl_5061_fns reg_create fndecl 6 5061 NULL
++kvm_vcpu_gfn_to_pfn_atomic_fndecl_5062_fns kvm_vcpu_gfn_to_pfn_atomic fndecl 2 5062 NULL
++tomoyo_commit_ok_fndecl_5076_fns tomoyo_commit_ok fndecl 2 5076 NULL
++read_flush_pipefs_fndecl_5080_fns read_flush_pipefs fndecl 3 5080 NULL
++ceph_alloc_page_vector_fndecl_5125_fns ceph_alloc_page_vector fndecl 1 5125 NULL
++iwl_dbgfs_rx_handlers_read_fndecl_5127_fns iwl_dbgfs_rx_handlers_read fndecl 3 5127 NULL
++fnic_stats_debugfs_read_fndecl_5139_fns fnic_stats_debugfs_read fndecl 3 5139 NULL
++__nvme_submit_user_cmd_fndecl_5142_fns __nvme_submit_user_cmd fndecl 6 5142 NULL nohasharray
++echo_client_prep_commit_fndecl_5142_fns echo_client_prep_commit fndecl 8 5142 &__nvme_submit_user_cmd_fndecl_5142_fns
++lps_per_blk_nvm_dev_5145_fns lps_per_blk nvm_dev 0 5145 NULL
++kmemleak_scan_area_fndecl_5155_fns kmemleak_scan_area fndecl 2 5155 NULL
++o2hb_debug_create_fndecl_5163_fns o2hb_debug_create fndecl 4 5163 NULL
++wep_packets_read_fndecl_5164_fns wep_packets_read fndecl 3 5164 NULL
++sq905_read_data_fndecl_5229_fns sq905_read_data fndecl 0 5229 NULL
++cnt_nfp_net_tx_ring_5239_fns cnt nfp_net_tx_ring 0 5239 NULL
++nr_extents__ntfs_inode_5242_fns nr_extents _ntfs_inode 0 5242 NULL
++sys_modify_ldt_fndecl_5275_fns sys_modify_ldt fndecl 3 5275 NULL
++ieee80211_if_read_element_ttl_fndecl_5286_fns ieee80211_if_read_element_ttl fndecl 3 5286 NULL
++drm_ht_create_fndecl_5302_fns drm_ht_create fndecl 2 5302 NULL
++tx_nr_rings_bnxt_5306_fns tx_nr_rings bnxt 0 5306 NULL
++sctp_setsockopt_events_fndecl_5309_fns sctp_setsockopt_events fndecl 3 5309 NULL
++thermal_tx_stop_read_fndecl_5310_fns thermal_tx_stop_read fndecl 3 5310 NULL
++devm_mdiobus_alloc_size_fndecl_5317_fns devm_mdiobus_alloc_size fndecl 2 5317 NULL
++___alloc_bootmem_node_fndecl_5329_fns ___alloc_bootmem_node fndecl 2 5329 NULL
++comedi_isadma_alloc_fndecl_5342_fns comedi_isadma_alloc fndecl 2 5342 NULL
++snapshot_write_next_fndecl_5354_fns snapshot_write_next fndecl 0 5354 NULL
++read_user_buf_avail_tomoyo_io_buffer_5361_fns read_user_buf_avail tomoyo_io_buffer 0 5361 NULL
++mangle_packet_fndecl_5371_fns mangle_packet fndecl 7-9 5371 NULL
++regset_tls_set_fndecl_5384_fns regset_tls_set fndecl 4 5384 NULL
++iscsi_create_flashnode_sess_fndecl_5394_fns iscsi_create_flashnode_sess fndecl 4 5394 NULL
++port_mad_size_fndecl_5434_fns port_mad_size fndecl 0 5434 NULL
++wilc_add_wep_key_bss_sta_fndecl_5436_fns wilc_add_wep_key_bss_sta fndecl 3 5436 NULL
++wiidebug_eeprom_read_fndecl_5523_fns wiidebug_eeprom_read fndecl 3 5523 NULL
++tool_dbfn_read_fndecl_5532_fns tool_dbfn_read fndecl 3 5532 NULL nohasharray
++debug_output_fndecl_5532_fns debug_output fndecl 3 5532 &tool_dbfn_read_fndecl_5532_fns
++slabinfo_write_fndecl_5563_fns slabinfo_write fndecl 3 5563 NULL
++iowarrior_write_fndecl_5567_fns iowarrior_write fndecl 3 5567 NULL
++tool_peer_mw_trans_read_fndecl_5573_fns tool_peer_mw_trans_read fndecl 3 5573 NULL
++from_buffer_fndecl_5586_fns from_buffer fndecl 3 5586 NULL
++horus3a_i2c_debug_fndecl_5589_fns horus3a_i2c_debug fndecl 5 5589 NULL
++num_scanouts_virtio_gpu_device_5598_fns num_scanouts virtio_gpu_device 0 5598 NULL
++size_sched_attr_5599_fns size sched_attr 0 5599 NULL nohasharray
++memory_map_bottom_up_fndecl_5599_fns memory_map_bottom_up fndecl 2 5599 &size_sched_attr_5599_fns
++wbcir_tx_fndecl_5632_fns wbcir_tx fndecl 3 5632 NULL
++dev_counters_read_fndecl_5635_fns dev_counters_read fndecl 3 5635 NULL
++tx_ring_size_altera_tse_private_5654_fns tx_ring_size altera_tse_private 0 5654 NULL nohasharray
++iwl_dbgfs_reply_tx_error_read_fndecl_5654_fns iwl_dbgfs_reply_tx_error_read fndecl 3 5654 &tx_ring_size_altera_tse_private_5654_fns
++ucma_query_fndecl_5679_fns ucma_query fndecl 4 5679 NULL
++il_dbgfs_rxon_filter_flags_read_fndecl_5698_fns il_dbgfs_rxon_filter_flags_read fndecl 3 5698 NULL
++batadv_tt_save_orig_buffer_fndecl_5707_fns batadv_tt_save_orig_buffer fndecl 4 5707 NULL
++debug_read_fndecl_5737_fns debug_read fndecl 3 5737 NULL
++max_order_mlx4_buddy_5738_fns max_order mlx4_buddy 0 5738 NULL
++event_tx_stuck_read_fndecl_5754_fns event_tx_stuck_read fndecl 3 5754 NULL
++console_size_ramoops_platform_data_5786_fns console_size ramoops_platform_data 0 5786 NULL
++prefetch_len_ath10k_htt_5811_fns prefetch_len ath10k_htt 0 5811 NULL
++hid_hw_raw_request_fndecl_5827_fns hid_hw_raw_request fndecl 0 5827 NULL
++interpret_user_input_fndecl_5842_fns interpret_user_input fndecl 2 5842 NULL
++get_n_events_by_type_fndecl_5850_fns get_n_events_by_type fndecl 0 5850 NULL
++iproc_asiu_setup_fndecl_5902_fns iproc_asiu_setup fndecl 4 5902 NULL
++layout_in_gaps_fndecl_5933_fns layout_in_gaps fndecl 2 5933 NULL
++gfn_to_pfn_atomic_fndecl_5942_fns gfn_to_pfn_atomic fndecl 2 5942 NULL
++sysfs_create_dir_ns_fndecl_5962_fns sysfs_create_dir_ns fndecl 0 5962 NULL
++orangefs_prepare_cdm_array_fndecl_5968_fns orangefs_prepare_cdm_array fndecl 0 5968 NULL
++create_gpadl_header_fndecl_5995_fns create_gpadl_header fndecl 2 5995 NULL
++revalidate_fndecl_6000_fns revalidate fndecl 2 6000 NULL nohasharray
++acpi_install_table_fndecl_6000_fns acpi_install_table fndecl 1 6000 &revalidate_fndecl_6000_fns
++drm_fb_helper_init_fndecl_6007_fns drm_fb_helper_init fndecl 3-4 6007 NULL nohasharray
++map_words_netvsc_device_6007_fns map_words netvsc_device 0 6007 &drm_fb_helper_init_fndecl_6007_fns
++orig_sg_segs_osst_buffer_6013_fns orig_sg_segs osst_buffer 0 6013 NULL
++brcmf_usbdev_qinit_fndecl_6017_fns brcmf_usbdev_qinit fndecl 2 6017 NULL
++icv_trunc_len_ah_data_6025_fns icv_trunc_len ah_data 0 6025 NULL
++ceph_create_snap_context_fndecl_6041_fns ceph_create_snap_context fndecl 1 6041 NULL
++scif_rb_space_fndecl_6052_fns scif_rb_space fndecl 0 6052 NULL
++sta_last_seq_ctrl_read_fndecl_6065_fns sta_last_seq_ctrl_read fndecl 3 6065 NULL
++read_extent_buffer_to_user_fndecl_6118_fns read_extent_buffer_to_user fndecl 3-4 6118 NULL
++pwc_get_fps_Kiara_fndecl_6127_fns pwc_get_fps_Kiara fndecl 0 6127 NULL
++pwr_enable_ps_read_fndecl_6149_fns pwr_enable_ps_read fndecl 3 6149 NULL
++gfn_to_pfn_memslot_fndecl_6158_fns gfn_to_pfn_memslot fndecl 2 6158 NULL
++rcl_nrefcalls_referring_call_list_6169_fns rcl_nrefcalls referring_call_list 0 6169 NULL nohasharray
++qgroup_account_snapshot_fndecl_6169_fns qgroup_account_snapshot fndecl 5 6169 &rcl_nrefcalls_referring_call_list_6169_fns
++sensor_write_regs_fndecl_6181_fns sensor_write_regs fndecl 0 6181 NULL
++venus_rename_fndecl_6200_fns venus_rename fndecl 4-5 6200 NULL
++exofs_read_lookup_dev_table_fndecl_6230_fns exofs_read_lookup_dev_table fndecl 3 6230 NULL
++setup_sgl_fndecl_6242_fns setup_sgl fndecl 4-5 6242 NULL
++send_mbox_fndecl_6260_fns send_mbox fndecl 4 6260 NULL
++brcmf_usb_attach_fndecl_6261_fns brcmf_usb_attach fndecl 2-3 6261 NULL
++sb_nextnum_nilfs_segment_buffer_6275_fns sb_nextnum nilfs_segment_buffer 0 6275 NULL
++command_setsensorfps_fndecl_6277_fns command_setsensorfps fndecl 0 6277 NULL
++nrealwriters_stress_lock_torture_cxt_6279_fns nrealwriters_stress lock_torture_cxt 0 6279 NULL
++_iwl_dbgfs_set_nic_temperature_write_fndecl_6303_fns _iwl_dbgfs_set_nic_temperature_write fndecl 3 6303 NULL
++count_leafs_fndecl_6305_fns count_leafs fndecl 0 6305 NULL
++iin_wMaxPacketSize_usbtmc_device_data_6306_fns iin_wMaxPacketSize usbtmc_device_data 0 6306 NULL
++sn9c2028_command_fndecl_6307_fns sn9c2028_command fndecl 0 6307 NULL
++em28xx_audio_ep_packet_size_fndecl_6311_fns em28xx_audio_ep_packet_size fndecl 0 6311 NULL
++shadow_fetch_fndecl_6315_fns shadow_fetch fndecl 3 6315 NULL
++len_ethtool_gstrings_6325_fns len ethtool_gstrings 0 6325 NULL
++cipso_v4_gentag_rbm_fndecl_6335_fns cipso_v4_gentag_rbm fndecl 0 6335 NULL
++ray_cs_essid_proc_write_fndecl_6336_fns ray_cs_essid_proc_write fndecl 3 6336 NULL
++virtio_cread32_fndecl_6338_fns virtio_cread32 fndecl 0 6338 NULL
++orinoco_set_key_fndecl_6341_fns orinoco_set_key fndecl 7 6341 NULL
++init_per_cpu_fndecl_6347_fns init_per_cpu fndecl 1 6347 NULL
++sisusb_send_bulk_msg_fndecl_6363_fns sisusb_send_bulk_msg fndecl 3 6363 NULL
++dev_pm_opp_get_opp_count_fndecl_6372_fns dev_pm_opp_get_opp_count fndecl 0 6372 NULL
++dccp_feat_register_sp_fndecl_6377_fns dccp_feat_register_sp fndecl 5 6377 NULL
++partition_sched_domains_fndecl_6386_fns partition_sched_domains fndecl 1 6386 NULL
++lpfc_debugfs_dif_err_write_fndecl_6403_fns lpfc_debugfs_dif_err_write fndecl 3 6403 NULL
++nvme_iod_alloc_size_fndecl_6444_fns nvme_iod_alloc_size fndecl 3-0 6444 NULL
++i40iw_qp_roundup_fndecl_6447_fns i40iw_qp_roundup fndecl 1 6447 NULL
++probe_kernel_write_fndecl_6490_fns probe_kernel_write fndecl 3 6490 NULL
++bytes_cifs_readdata_6533_fns bytes cifs_readdata 0 6533 NULL
++max_vfs_vardecl_igb_main_c_6547_fns max_vfs vardecl_igb_main.c 0 6547 NULL
++neigh_hash_alloc_fndecl_6568_fns neigh_hash_alloc fndecl 1 6568 NULL nohasharray
++sddr09_read21_fndecl_6568_fns sddr09_read21 fndecl 3-4-6 6568 &neigh_hash_alloc_fndecl_6568_fns
++acpi_ut_create_package_object_fndecl_6569_fns acpi_ut_create_package_object fndecl 1 6569 NULL
++command_setcolourparams_fndecl_6571_fns command_setcolourparams fndecl 0 6571 NULL nohasharray
++ath6kl_wmi_connect_cmd_fndecl_6571_fns ath6kl_wmi_connect_cmd fndecl 10 6571 &command_setcolourparams_fndecl_6571_fns
++ieee80211_if_read_dot11MeshHWMPactivePathToRootTimeout_fndecl_6593_fns ieee80211_if_read_dot11MeshHWMPactivePathToRootTimeout fndecl 3 6593 NULL
++osst_execute_fndecl_6612_fns osst_execute fndecl 7 6612 NULL
++num_large_buffers_ql3_adapter_6615_fns num_large_buffers ql3_adapter 0 6615 NULL
++SYSC_migrate_pages_fndecl_6634_fns SYSC_migrate_pages fndecl 2 6634 NULL
++packet_setsockopt_fndecl_6637_fns packet_setsockopt fndecl 5 6637 NULL
++set_number_fndecl_6651_fns set_number fndecl 2 6651 NULL
++nilfs_segment_list_add_fndecl_6665_fns nilfs_segment_list_add fndecl 2 6665 NULL
++pccard_store_cis_fndecl_6675_fns pccard_store_cis fndecl 6 6675 NULL
++nroots_rs_control_6706_fns nroots rs_control 0 6706 NULL nohasharray
++gsm_control_message_fndecl_6706_fns gsm_control_message fndecl 4 6706 &nroots_rs_control_6706_fns
++do_ipv6_setsockopt_fndecl_6708_fns do_ipv6_setsockopt fndecl 5 6708 NULL
++qdisc_class_hash_alloc_fndecl_6725_fns qdisc_class_hash_alloc fndecl 1 6725 NULL nohasharray
++size_mvpp2_txq_pcpu_6725_fns size mvpp2_txq_pcpu 0 6725 &qdisc_class_hash_alloc_fndecl_6725_fns
++pagesize_sddr09_card_info_6735_fns pagesize sddr09_card_info 0 6735 NULL
++hostif_mib_set_request_fndecl_6736_fns hostif_mib_set_request fndecl 3 6736 NULL
++gnttab_alloc_grant_references_fndecl_6739_fns gnttab_alloc_grant_references fndecl 1 6739 NULL
++alloc_trace_uprobe_fndecl_6740_fns alloc_trace_uprobe fndecl 3 6740 NULL
++num_vectors_qed_int_param_6741_fns num_vectors qed_int_param 0 6741 NULL
++_read_and_match_data_map_fndecl_6747_fns _read_and_match_data_map fndecl 2 6747 NULL
++rfcomm_sock_setsockopt_fndecl_6749_fns rfcomm_sock_setsockopt fndecl 5 6749 NULL
++um_idi_write_fndecl_6758_fns um_idi_write fndecl 3 6758 NULL
++gfs2_alloc_sort_buffer_fndecl_6768_fns gfs2_alloc_sort_buffer fndecl 1 6768 NULL
++alloc_ring_fndecl_6773_fns alloc_ring fndecl 2-4 6773 NULL
++max_vals_input_dev_6777_fns max_vals input_dev 0 6777 NULL
++mmc_send_bus_test_fndecl_6782_fns mmc_send_bus_test fndecl 4 6782 NULL
++csio_mem_read_fndecl_6812_fns csio_mem_read fndecl 3 6812 NULL
++debugfs_write_file_bool_fndecl_6814_fns debugfs_write_file_bool fndecl 3 6814 NULL
++pwr_power_save_off_read_fndecl_6816_fns pwr_power_save_off_read fndecl 3 6816 NULL
++xlbd_reserve_minors_fndecl_6830_fns xlbd_reserve_minors fndecl 1-2 6830 NULL
++lcd_proc_write_fndecl_6844_fns lcd_proc_write fndecl 3 6844 NULL
++__ceph_getxattr_fndecl_6849_fns __ceph_getxattr fndecl 0 6849 NULL
++hpfs_file_fsync_fndecl_6851_fns hpfs_file_fsync fndecl 2-3 6851 NULL
++ci_role_write_fndecl_6855_fns ci_role_write fndecl 3 6855 NULL
++size_vb2_fileio_buf_6875_fns size vb2_fileio_buf 0 6875 NULL
++__kfifo_in_r_fndecl_6892_fns __kfifo_in_r fndecl 4-3 6892 NULL
++adis16136_show_serial_fndecl_6897_fns adis16136_show_serial fndecl 3 6897 NULL
++pwr_sleep_time_count_read_fndecl_6914_fns pwr_sleep_time_count_read fndecl 3 6914 NULL
++nvram_pagesize_tg3_6938_fns nvram_pagesize tg3 0 6938 NULL
++tlv_put_u64_fndecl_6968_fns tlv_put_u64 fndecl 0 6968 NULL
++mwifiex_verext_write_fndecl_6972_fns mwifiex_verext_write fndecl 3 6972 NULL
++pvr2_v4l2_read_fndecl_6981_fns pvr2_v4l2_read fndecl 3 6981 NULL
++bits_from_user_fndecl_6996_fns bits_from_user fndecl 2-3 6996 NULL
++gnttab_max_grant_frames_fndecl_7002_fns gnttab_max_grant_frames fndecl 0 7002 NULL
++num_rss_qede_dev_7011_fns num_rss qede_dev 0 7011 NULL
++fpregs_get_fndecl_7041_fns fpregs_get fndecl 4 7041 NULL
++kvm_read_guest_page_fndecl_7049_fns kvm_read_guest_page fndecl 5-2 7049 NULL
++SYSC_pselect6_fndecl_7055_fns SYSC_pselect6 fndecl 1 7055 NULL
++txd_cnt_nfp_net_7058_fns txd_cnt nfp_net 0 7058 NULL
++cryptd_alloc_instance_fndecl_7059_fns cryptd_alloc_instance fndecl 2-3 7059 NULL
++rx_pending_sky2_port_7090_fns rx_pending sky2_port 0 7090 NULL
++get_vm_area_fndecl_7091_fns get_vm_area fndecl 1 7091 NULL
++mpi_alloc_fndecl_7101_fns mpi_alloc fndecl 1 7101 NULL
++paging32_gpte_to_gfn_lvl_fndecl_7104_fns paging32_gpte_to_gfn_lvl fndecl 0-2-1 7104 NULL
++wil_tid_ampdu_rx_alloc_fndecl_7119_fns wil_tid_ampdu_rx_alloc fndecl 2 7119 NULL
++ftrace_size_ramoops_platform_data_7124_fns ftrace_size ramoops_platform_data 0 7124 NULL
++report_size_hid_global_7127_fns report_size hid_global 0 7127 NULL nohasharray
++dfs_file_read_fndecl_7127_fns dfs_file_read fndecl 3 7127 &report_size_hid_global_7127_fns
++acpi_rs_set_resource_length_fndecl_7131_fns acpi_rs_set_resource_length fndecl 1 7131 NULL
++nstids_tid_info_7139_fns nstids tid_info 0 7139 NULL
++selinux_inode_setsecurity_fndecl_7159_fns selinux_inode_setsecurity fndecl 4 7159 NULL
++mfd_add_devices_fndecl_7183_fns mfd_add_devices fndecl 4 7183 NULL
++ide_init_port_fndecl_7207_fns ide_init_port fndecl 2 7207 NULL
++_iwl_dbgfs_bt_force_ant_write_fndecl_7214_fns _iwl_dbgfs_bt_force_ant_write fndecl 3 7214 NULL
++__copy_to_user_swizzled_fndecl_7295_fns __copy_to_user_swizzled fndecl 3-4 7295 NULL
++drm_malloc_ab_fndecl_7340_fns drm_malloc_ab fndecl 1-2 7340 NULL
++pvr2_i2c_read_fndecl_7344_fns pvr2_i2c_read fndecl 4-6 7344 NULL
++hfsplus_min_io_size_fndecl_7368_fns hfsplus_min_io_size fndecl 0 7368 NULL
++packetsize__rbu_data_7390_fns packetsize _rbu_data 0 7390 NULL
++calipso_genopt_fndecl_7401_fns calipso_genopt fndecl 0 7401 NULL
++st_write_fndecl_7417_fns st_write fndecl 3 7417 NULL
++alloc_idx_lebs_fndecl_7419_fns alloc_idx_lebs fndecl 2 7419 NULL
++__kfifo_peek_n_fndecl_7422_fns __kfifo_peek_n fndecl 0 7422 NULL
++xfs_file_fsync_fndecl_7433_fns xfs_file_fsync fndecl 2-3 7433 NULL
++iio_device_add_event_fndecl_7439_fns iio_device_add_event fndecl 0 7439 NULL
++rate_ctrl_alg_read_fndecl_7449_fns rate_ctrl_alg_read fndecl 3 7449 NULL
++stat_st_vardecl_drv_c_7451_fns stat_st vardecl_drv.c 0 7451 NULL
++cmdline_store_fndecl_7465_fns cmdline_store fndecl 4 7465 NULL nohasharray
++num_present_cpu_lpfc_sli4_hba_7465_fns num_present_cpu lpfc_sli4_hba 0 7465 &cmdline_store_fndecl_7465_fns
++minors_gigaset_driver_7468_fns minors gigaset_driver 0 7468 NULL
++ieee80211_if_read_tsf_fndecl_7479_fns ieee80211_if_read_tsf fndecl 3 7479 NULL
++req_capsule_get_size_fndecl_7488_fns req_capsule_get_size fndecl 0 7488 NULL
++calculate_inocache_hashsize_fndecl_7506_fns calculate_inocache_hashsize fndecl 1-0 7506 NULL
++alloc_disk_node_fndecl_7513_fns alloc_disk_node fndecl 1 7513 NULL
++netlink_change_ngroups_fndecl_7514_fns netlink_change_ngroups fndecl 2 7514 NULL
++src_len_akcipher_request_7526_fns src_len akcipher_request 0 7526 NULL
++size_hpi_response_header_7541_fns size hpi_response_header 0 7541 NULL
++hd_nirqs_hpet_data_7558_fns hd_nirqs hpet_data 0 7558 NULL
++acpi_copy_property_array_u8_fndecl_7565_fns acpi_copy_property_array_u8 fndecl 0 7565 NULL
++lpfc_debugfs_read_fndecl_7589_fns lpfc_debugfs_read fndecl 3 7589 NULL
++xpt_remotelen_svc_xprt_7655_fns xpt_remotelen svc_xprt 0 7655 NULL
++maxwritelen_proc_data_7659_fns maxwritelen proc_data 0 7659 NULL
++mlxsw_reg_trans_bulk_wait_fndecl_7664_fns mlxsw_reg_trans_bulk_wait fndecl 0 7664 NULL
++nfp_net_shadow_rx_rings_prepare_fndecl_7679_fns nfp_net_shadow_rx_rings_prepare fndecl 3 7679 NULL
++UniStrnlen_fndecl_7682_fns UniStrnlen fndecl 0 7682 NULL
++cfg80211_sme_get_conn_ies_fndecl_7687_fns cfg80211_sme_get_conn_ies fndecl 3 7687 NULL
++record_length_cper_record_header_7697_fns record_length cper_record_header 0 7697 NULL
++mxt_upload_cfg_mem_fndecl_7702_fns mxt_upload_cfg_mem fndecl 4 7702 NULL
++befs_nls2utf_fndecl_7704_fns befs_nls2utf fndecl 3 7704 NULL
++tx_tx_start_templates_read_fndecl_7711_fns tx_tx_start_templates_read fndecl 3 7711 NULL
++access_remote_vm_fndecl_7734_fns access_remote_vm fndecl 0 7734 NULL nohasharray
++iwl_dbgfs_txfifo_flush_write_fndecl_7734_fns iwl_dbgfs_txfifo_flush_write fndecl 3 7734 &access_remote_vm_fndecl_7734_fns
++iscsit_find_cmd_from_itt_or_dump_fndecl_7737_fns iscsit_find_cmd_from_itt_or_dump fndecl 3 7737 NULL nohasharray
++driver_state_read_fndecl_7737_fns driver_state_read fndecl 3 7737 &iscsit_find_cmd_from_itt_or_dump_fndecl_7737_fns
++ocfs2_get_suballoc_slot_bit_fndecl_7773_fns ocfs2_get_suballoc_slot_bit fndecl 2 7773 NULL
++split_mem_range_fndecl_7776_fns split_mem_range fndecl 3-4 7776 NULL
++alloc_ep_fndecl_7782_fns alloc_ep fndecl 1 7782 NULL
++pg_read_fndecl_7791_fns pg_read fndecl 3 7791 NULL
++id_avail_ipack_device_7822_fns id_avail ipack_device 0 7822 NULL
++n_stats_ethtool_stats_7823_fns n_stats ethtool_stats 0 7823 NULL
++nabs_joydev_7827_fns nabs joydev 0 7827 NULL
++minstrel_stats_read_fndecl_7833_fns minstrel_stats_read fndecl 3 7833 NULL
++block_aligned_filename_size_ecryptfs_parse_tag_70_packet_silly_stack_7865_fns block_aligned_filename_size ecryptfs_parse_tag_70_packet_silly_stack 0 7865 NULL
++used_snd_ctl_elem_list_7883_fns used snd_ctl_elem_list 0 7883 NULL
++freecom_readdata_fndecl_7884_fns freecom_readdata fndecl 3 7884 NULL
++ath6kl_wmi_send_mgmt_cmd_fndecl_7888_fns ath6kl_wmi_send_mgmt_cmd fndecl 7 7888 NULL
++ieee80211_if_read_dot11MeshHWMPperrMinInterval_fndecl_7889_fns ieee80211_if_read_dot11MeshHWMPperrMinInterval fndecl 3 7889 NULL
++i2400m_unknown_barker_fndecl_7903_fns i2400m_unknown_barker fndecl 3 7903 NULL
++uvesafb_setpalette_fndecl_7922_fns uvesafb_setpalette fndecl 2 7922 NULL
++sd_start_fndecl_7964_fns sd_start fndecl 0 7964 NULL
++squashfs_read_table_fndecl_7970_fns squashfs_read_table fndecl 3 7970 NULL
++_sp2d_alloc_fndecl_7971_fns _sp2d_alloc fndecl 1-2-3 7971 NULL
++svcxdr_dupstr_fndecl_8016_fns svcxdr_dupstr fndecl 3 8016 NULL
++pd_handles_sz_MPT3SAS_ADAPTER_8057_fns pd_handles_sz MPT3SAS_ADAPTER 0 8057 NULL
++ceph_read_dir_fndecl_8062_fns ceph_read_dir fndecl 3 8062 NULL
++copy_counters_to_user_fndecl_8080_fns copy_counters_to_user fndecl 5 8080 NULL
++dvb_dvr_read_fndecl_8098_fns dvb_dvr_read fndecl 3 8098 NULL
++sddr55_read_data_fndecl_8099_fns sddr55_read_data fndecl 4 8099 NULL nohasharray
++error_num_frame_cts_nul_flid_read_fndecl_8099_fns error_num_frame_cts_nul_flid_read fndecl 3 8099 &sddr55_read_data_fndecl_8099_fns
++simple_transaction_read_fndecl_8103_fns simple_transaction_read fndecl 3 8103 NULL
++acpi_ut_get_resource_header_length_fndecl_8110_fns acpi_ut_get_resource_header_length fndecl 0 8110 NULL
++__copy_user_nocache_fndecl_8122_fns __copy_user_nocache fndecl 0 8122 NULL
++write_mem_fndecl_8137_fns write_mem fndecl 3 8137 NULL
++entry_length_fndecl_8150_fns entry_length fndecl 0 8150 NULL
++ubifs_scanned_corruption_fndecl_8170_fns ubifs_scanned_corruption fndecl 3 8170 NULL
++jumpshot_write_data_fndecl_8172_fns jumpshot_write_data fndecl 4 8172 NULL
++nsftids_tid_info_8187_fns nsftids tid_info 0 8187 NULL
++SYSC_llistxattr_fndecl_8238_fns SYSC_llistxattr fndecl 3 8238 NULL
++dump_data_bytes_fndecl_8240_fns dump_data_bytes fndecl 3 8240 NULL
++stk_read_fndecl_8245_fns stk_read fndecl 3 8245 NULL
++sys_sched_setaffinity_fndecl_8253_fns sys_sched_setaffinity fndecl 2 8253 NULL
++num_alloc_vsi_i40e_pf_8259_fns num_alloc_vsi i40e_pf 0 8259 NULL
++length_spi_engine_program_8261_fns length spi_engine_program 0 8261 NULL
++proc_scsi_devinfo_write_fndecl_8275_fns proc_scsi_devinfo_write fndecl 3 8275 NULL
++wil_read_file_recovery_fndecl_8315_fns wil_read_file_recovery fndecl 3 8315 NULL
++kobject_add_internal_fndecl_8342_fns kobject_add_internal fndecl 0 8342 NULL
++venus_link_fndecl_8374_fns venus_link fndecl 5 8374 NULL
++riva_get_cmap_len_fndecl_8393_fns riva_get_cmap_len fndecl 0 8393 NULL nohasharray
++m_bch_control_8393_fns m bch_control 0 8393 &riva_get_cmap_len_fndecl_8393_fns
++wusb_ccm_mac_fndecl_8404_fns wusb_ccm_mac fndecl 7 8404 NULL
++del_ptr_fndecl_8406_fns del_ptr fndecl 4 8406 NULL
++length_ipw_tx_packet_8408_fns length ipw_tx_packet 0 8408 NULL
++lbs_lowrssi_read_fndecl_8417_fns lbs_lowrssi_read fndecl 3 8417 NULL
++batadv_iv_ogm_drop_bcast_own_sum_entry_fndecl_8430_fns batadv_iv_ogm_drop_bcast_own_sum_entry fndecl 2 8430 NULL
++cifs_lookup_cache_proc_write_fndecl_8447_fns cifs_lookup_cache_proc_write fndecl 3 8447 NULL
++snd_seq_device_new_fndecl_8474_fns snd_seq_device_new fndecl 4 8474 NULL
++get_count_order_fndecl_8491_fns get_count_order fndecl 0 8491 NULL
++data_write_fndecl_8494_fns data_write fndecl 3 8494 NULL
++isr_rx_procs_read_fndecl_8495_fns isr_rx_procs_read fndecl 3 8495 NULL
++usblp_cache_device_id_string_fndecl_8509_fns usblp_cache_device_id_string fndecl 0 8509 NULL
++strnlen_user_fndecl_8532_fns strnlen_user fndecl 0 8532 NULL
++fuse_dir_fsync_fndecl_8543_fns fuse_dir_fsync fndecl 2-3 8543 NULL
++iwl_dbgfs_disable_ht40_write_fndecl_8599_fns iwl_dbgfs_disable_ht40_write fndecl 3 8599 NULL
++drm_mode_crtc_set_gamma_size_fndecl_8602_fns drm_mode_crtc_set_gamma_size fndecl 2 8602 NULL
++kmem_alloc_fndecl_8611_fns kmem_alloc fndecl 1 8611 NULL
++xattr_permission_fndecl_8624_fns xattr_permission fndecl 0 8624 NULL
++new_dir_fndecl_8636_fns new_dir fndecl 3 8636 NULL
++copy_from_user_toio_fndecl_8653_fns copy_from_user_toio fndecl 3 8653 NULL
++read_mem_fndecl_8661_fns read_mem fndecl 3 8661 NULL
++SYSC_sethostname_fndecl_8663_fns SYSC_sethostname fndecl 2 8663 NULL
++b_out_mon_reader_bin_8691_fns b_out mon_reader_bin 0 8691 NULL
++data_width_stedma40_half_channel_info_8694_fns data_width stedma40_half_channel_info 0 8694 NULL
++ebcnt_vardecl_readtest_c_8699_fns ebcnt vardecl_readtest.c 0 8699 NULL
++ilo_read_fndecl_8704_fns ilo_read fndecl 3 8704 NULL
++out_ptr_mdc800_data_8709_fns out_ptr mdc800_data 0 8709 NULL
++ieee80211_if_read_estab_plinks_fndecl_8710_fns ieee80211_if_read_estab_plinks fndecl 3 8710 NULL
++key_len_host_if_wep_attr_8712_fns key_len host_if_wep_attr 0 8712 NULL
++qsfp_read_fndecl_8729_fns qsfp_read fndecl 2-4-0 8729 NULL
++ip_set_elem_len_fndecl_8730_fns ip_set_elem_len fndecl 0 8730 NULL
++alloc_state_change_fndecl_8735_fns alloc_state_change fndecl 1-2 8735 NULL
++tool_link_read_fndecl_8740_fns tool_link_read fndecl 3 8740 NULL
++osc_iocontrol_fndecl_8742_fns osc_iocontrol fndecl 3 8742 NULL
++max_epid_fjes_hw_8751_fns max_epid fjes_hw 0 8751 NULL
++format_devstat_counter_fndecl_8757_fns format_devstat_counter fndecl 3 8757 NULL
++read_file_beacon_fndecl_8768_fns read_file_beacon fndecl 3 8768 NULL
++ieee80211_if_read_dropped_frames_congestion_fndecl_8776_fns ieee80211_if_read_dropped_frames_congestion fndecl 3 8776 NULL
++gfs2_adjust_quota_fndecl_8777_fns gfs2_adjust_quota fndecl 2 8777 NULL
++cfg80211_roamed_fndecl_8811_fns cfg80211_roamed fndecl 5-7 8811 NULL
++nilfs_cpfile_get_checkpoint_fndecl_8812_fns nilfs_cpfile_get_checkpoint fndecl 2 8812 NULL
++sys_set_mempolicy_fndecl_8819_fns sys_set_mempolicy fndecl 3 8819 NULL
++response_length_mlx5_ib_alloc_ucontext_resp_8839_fns response_length mlx5_ib_alloc_ucontext_resp 0 8839 NULL
++generic_readlink_fndecl_8861_fns generic_readlink fndecl 3 8861 NULL
++dm_set_target_max_io_len_fndecl_8872_fns dm_set_target_max_io_len fndecl 2 8872 NULL
++batps_powernow_k8_data_8899_fns batps powernow_k8_data 0 8899 NULL
++pages_squashfs_cache_8903_fns pages squashfs_cache 0 8903 NULL
++bits_per_pixel_fb_var_screeninfo_8906_fns bits_per_pixel fb_var_screeninfo 0 8906 NULL
++rt2x00debug_read_queue_dump_fndecl_8923_fns rt2x00debug_read_queue_dump fndecl 3 8923 NULL
++begin_cmd_fndecl_8941_fns begin_cmd fndecl 0 8941 NULL
++mon_mgmt_tx_fndecl_8949_fns mon_mgmt_tx fndecl 3 8949 NULL nohasharray
++i40e_pci_sriov_enable_fndecl_8949_fns i40e_pci_sriov_enable fndecl 2 8949 &mon_mgmt_tx_fndecl_8949_fns
++stats_read_ul_fndecl_8956_fns stats_read_ul fndecl 3 8956 NULL nohasharray
++videobuf_mmap_setup_fndecl_8956_fns videobuf_mmap_setup fndecl 3 8956 &stats_read_ul_fndecl_8956_fns
++n_bch_control_8979_fns n bch_control 0 8979 NULL
++vmalloc_user_fndecl_8999_fns vmalloc_user fndecl 1 8999 NULL
++vb2_dvb_register_frontend_fndecl_9015_fns vb2_dvb_register_frontend fndecl 0 9015 NULL
++add_dts_thermal_zone_fndecl_9019_fns add_dts_thermal_zone fndecl 4 9019 NULL
++t4_alloc_mem_fndecl_9029_fns t4_alloc_mem fndecl 1 9029 NULL
++id_port_9030_fns id port 0 9030 NULL
++error_rx_cmplt_db_overflow_cnt_read_fndecl_9063_fns error_rx_cmplt_db_overflow_cnt_read fndecl 3 9063 NULL
++logical_maximum_hid_field_9067_fns logical_maximum hid_field 0 9067 NULL
++dispatch_ioctl_fndecl_9078_fns dispatch_ioctl fndecl 2 9078 NULL
++count_afs_call_9081_fns count afs_call 0 9081 NULL nohasharray
++sel_read_initcon_fndecl_9081_fns sel_read_initcon fndecl 3 9081 &count_afs_call_9081_fns
++iwl_dbgfs_tof_range_abort_read_fndecl_9085_fns iwl_dbgfs_tof_range_abort_read fndecl 3 9085 NULL
++xfs_iext_add_indirect_multi_fndecl_9091_fns xfs_iext_add_indirect_multi fndecl 3-4 9091 NULL
++pvr2_stream_set_buffer_count_fndecl_9116_fns pvr2_stream_set_buffer_count fndecl 2 9116 NULL
++learn_buffer_len_vardecl_gracl_learn_c_9167_fns learn_buffer_len vardecl_gracl_learn.c 0 9167 NULL
++wiimote_cmd_read_fndecl_9197_fns wiimote_cmd_read fndecl 4 9197 NULL
++ide_driver_proc_write_fndecl_9214_fns ide_driver_proc_write fndecl 3 9214 NULL
++qcom_rpm_smd_write_fndecl_9229_fns qcom_rpm_smd_write fndecl 6 9229 NULL
++read_file_bt_ant_diversity_fndecl_9236_fns read_file_bt_ant_diversity fndecl 3 9236 NULL
++call_netdevice_notifiers_info_fndecl_9239_fns call_netdevice_notifiers_info fndecl 0 9239 NULL
++n_sbufs_stk_camera_9256_fns n_sbufs stk_camera 0 9256 NULL
++acpi_ns_build_normalized_path_fndecl_9269_fns acpi_ns_build_normalized_path fndecl 0 9269 NULL
++lbs_failcount_read_fndecl_9284_fns lbs_failcount_read fndecl 3 9284 NULL
++buffer_bytes_st_buffer_9290_fns buffer_bytes st_buffer 0 9290 NULL
++sctp_setsockopt_context_fndecl_9312_fns sctp_setsockopt_context fndecl 3 9312 NULL
++sys_mincore_fndecl_9332_fns sys_mincore fndecl 1-2 9332 NULL
++compat_sys_get_mempolicy_fndecl_9366_fns compat_sys_get_mempolicy fndecl 3 9366 NULL
++depth_read_fndecl_9371_fns depth_read fndecl 3 9371 NULL
++data_start_dm_ioctl_9412_fns data_start dm_ioctl 0 9412 NULL
++rocker_dma_ring_create_fndecl_9421_fns rocker_dma_ring_create fndecl 3 9421 NULL
++evdev_get_mask_fndecl_9457_fns evdev_get_mask fndecl 4 9457 NULL
++mtdchar_readoob_fndecl_9459_fns mtdchar_readoob fndecl 4 9459 NULL
++kvm_mmu_page_fault_fndecl_9470_fns kvm_mmu_page_fault fndecl 2 9470 NULL
++lbs_debugfs_read_fndecl_9490_fns lbs_debugfs_read fndecl 3 9490 NULL
++maxdev_vardecl_slcan_c_9507_fns maxdev vardecl_slcan.c 0 9507 NULL
++fillonedir_fndecl_9511_fns fillonedir fndecl 3 9511 NULL
++smk_read_doi_fndecl_9550_fns smk_read_doi fndecl 3 9550 NULL
++fault_disconnect_read_fndecl_9566_fns fault_disconnect_read fndecl 3 9566 NULL
++ath10k_write_fw_dbglog_fndecl_9568_fns ath10k_write_fw_dbglog fndecl 3 9568 NULL
++pwr_sleep_time_avg_read_fndecl_9572_fns pwr_sleep_time_avg_read fndecl 3 9572 NULL nohasharray
++mvneta_frag_alloc_fndecl_9572_fns mvneta_frag_alloc fndecl 1 9572 &pwr_sleep_time_avg_read_fndecl_9572_fns
++sctp_setsockopt_auth_chunk_fndecl_9576_fns sctp_setsockopt_auth_chunk fndecl 3 9576 NULL
++of_gpio_named_count_fndecl_9578_fns of_gpio_named_count fndecl 0 9578 NULL
++get_kobj_path_length_fndecl_9596_fns get_kobj_path_length fndecl 0 9596 NULL
++frag_size_mvneta_port_9606_fns frag_size mvneta_port 0 9606 NULL
++skd_max_pass_thru_vardecl_skd_main_c_9608_fns skd_max_pass_thru vardecl_skd_main.c 0 9608 NULL
++acpi_copy_property_array_u16_fndecl_9618_fns acpi_copy_property_array_u16 fndecl 0 9618 NULL
++copy_to_iter_fndecl_9638_fns copy_to_iter fndecl 0 9638 NULL
++usnic_debugfs_buildinfo_read_fndecl_9667_fns usnic_debugfs_buildinfo_read fndecl 3 9667 NULL
++sctp_setsockopt_rtoinfo_fndecl_9678_fns sctp_setsockopt_rtoinfo fndecl 3 9678 NULL
++read_packet_length_lego_usb_tower_9686_fns read_packet_length lego_usb_tower 0 9686 NULL
++pkt_len_virtio_vsock_pkt_info_9698_fns pkt_len virtio_vsock_pkt_info 0 9698 NULL
++tty_insert_flip_string_flags_fndecl_9706_fns tty_insert_flip_string_flags fndecl 4 9706 NULL
++tx_ringsz_alx_priv_9722_fns tx_ringsz alx_priv 0 9722 NULL
++vicam_control_msg_fndecl_9727_fns vicam_control_msg fndecl 0 9727 NULL
++samsung_clk_sleep_init_fndecl_9743_fns samsung_clk_sleep_init fndecl 3 9743 NULL
++qsfp_2_read_fndecl_9744_fns qsfp_2_read fndecl 3 9744 NULL
++blkdev_fsync_fndecl_9745_fns blkdev_fsync fndecl 2-3 9745 NULL
++bnx2x_mcast_handle_current_cmd_fndecl_9747_fns bnx2x_mcast_handle_current_cmd fndecl 0 9747 NULL
++__alloc_bootmem_fndecl_9753_fns __alloc_bootmem fndecl 1 9753 NULL
++buffer_length_floppy_raw_cmd_9763_fns buffer_length floppy_raw_cmd 0 9763 NULL
++dvb_ringbuffer_write_fndecl_9775_fns dvb_ringbuffer_write fndecl 0 9775 NULL
++mlxsw_pci_queue_group_init_fndecl_9779_fns mlxsw_pci_queue_group_init fndecl 4 9779 NULL
++tx_frag_tkip_called_read_fndecl_9796_fns tx_frag_tkip_called_read fndecl 3 9796 NULL
++get_max_inline_xattr_value_size_fndecl_9801_fns get_max_inline_xattr_value_size fndecl 0 9801 NULL
++usbvision_read_fndecl_9808_fns usbvision_read fndecl 3 9808 NULL
++NumPhysDiskPaths__CONFIG_PAGE_RAID_PHYS_DISK_1_9818_fns NumPhysDiskPaths _CONFIG_PAGE_RAID_PHYS_DISK_1 0 9818 NULL
++iwl_dbgfs_ucode_tx_stats_read_fndecl_9832_fns iwl_dbgfs_ucode_tx_stats_read fndecl 3 9832 NULL
++snd_compr_get_avail_fndecl_9843_fns snd_compr_get_avail fndecl 0 9843 NULL
++nr_of_buckets_v4l2_ctrl_handler_9859_fns nr_of_buckets v4l2_ctrl_handler 0 9859 NULL
++copy_from_user_nmi_fndecl_9899_fns copy_from_user_nmi fndecl 3 9899 NULL
++tx_ring_size_sky2_port_9902_fns tx_ring_size sky2_port 0 9902 NULL
++alloc_event_waiters_fndecl_9914_fns alloc_event_waiters fndecl 1 9914 NULL
++asic_flags_read_fndecl_9918_fns asic_flags_read fndecl 3 9918 NULL
++vbe_modes_cnt_uvesafb_par_9928_fns vbe_modes_cnt uvesafb_par 0 9928 NULL
++len_load_info_9931_fns len load_info 0 9931 NULL
++rxdata_desc_size_vmxnet3_adapter_9937_fns rxdata_desc_size vmxnet3_adapter 0 9937 NULL
++wb_pgbase_nfs_page_9940_fns wb_pgbase nfs_page 0 9940 NULL nohasharray
++object_name_len_ncp_objectname_ioctl_9940_fns object_name_len ncp_objectname_ioctl 0 9940 &wb_pgbase_nfs_page_9940_fns
++forced_ps_read_fndecl_9942_fns forced_ps_read fndecl 3 9942 NULL
++shmem_pwrite_slow_fndecl_9966_fns shmem_pwrite_slow fndecl 2-3 9966 NULL
++rs_pretty_print_rate_fndecl_9980_fns rs_pretty_print_rate fndecl 0 9980 NULL
++send_buf_size_netvsc_device_10051_fns send_buf_size netvsc_device 0 10051 NULL
++command_file_write_fndecl_10053_fns command_file_write fndecl 3 10053 NULL nohasharray
++usbat_write_blocks_fndecl_10053_fns usbat_write_blocks fndecl 3-4 10053 &command_file_write_fndecl_10053_fns
++uvc_simplify_fraction_fndecl_10068_fns uvc_simplify_fraction fndecl 3 10068 NULL
++iwl_dbgfs_set_nic_temperature_read_fndecl_10071_fns iwl_dbgfs_set_nic_temperature_read fndecl 3 10071 NULL
++outlen_write_fndecl_10093_fns outlen_write fndecl 3 10093 NULL
++msix_num_bnad_10096_fns msix_num bnad 0 10096 NULL
++em28xx_init_usb_xfer_fndecl_10106_fns em28xx_init_usb_xfer fndecl 4 10106 NULL
++_regmap_raw_multi_reg_write_fndecl_10107_fns _regmap_raw_multi_reg_write fndecl 3 10107 NULL
++trace_parser_get_init_fndecl_10112_fns trace_parser_get_init fndecl 2 10112 NULL
++tfms_count_crypt_config_10114_fns tfms_count crypt_config 0 10114 NULL
++sg_segs_osst_buffer_10144_fns sg_segs osst_buffer 0 10144 NULL nohasharray
++key_ifindex_read_fndecl_10144_fns key_ifindex_read fndecl 3 10144 &sg_segs_osst_buffer_10144_fns
++nvme_rdma_alloc_qe_fndecl_10151_fns nvme_rdma_alloc_qe fndecl 3 10151 NULL
++ldebugfs_fid_space_seq_write_fndecl_10152_fns ldebugfs_fid_space_seq_write fndecl 3 10152 NULL
++_sp2d_max_pg_fndecl_10157_fns _sp2d_max_pg fndecl 0 10157 NULL
++usnic_vnic_res_spec_update_fndecl_10169_fns usnic_vnic_res_spec_update fndecl 3 10169 NULL
++transport_alloc_session_tags_fndecl_10186_fns transport_alloc_session_tags fndecl 2-3 10186 NULL
++opera1_xilinx_rw_fndecl_10190_fns opera1_xilinx_rw fndecl 5 10190 NULL
++wil_addba_rx_request_fndecl_10219_fns wil_addba_rx_request fndecl 4 10219 NULL
++rds_message_map_pages_fndecl_10220_fns rds_message_map_pages fndecl 2 10220 NULL
++alg_setkey_fndecl_10222_fns alg_setkey fndecl 3 10222 NULL
++storage_size_phm_runtime_table_header_10230_fns storage_size phm_runtime_table_header 0 10230 NULL
++qlcnic_set_sds_ring_count_fndecl_10232_fns qlcnic_set_sds_ring_count fndecl 2 10232 NULL
++dio_get_pages_alloc_fndecl_10238_fns dio_get_pages_alloc fndecl 2 10238 NULL
++vmw_resource_buf_alloc_fndecl_10284_fns vmw_resource_buf_alloc fndecl 0 10284 NULL
++frame_list_sz_dwc2_hsotg_10293_fns frame_list_sz dwc2_hsotg 0 10293 NULL
++validate_user_key_fndecl_10303_fns validate_user_key fndecl 5 10303 NULL
++tlen_sdma_txreq_10305_fns tlen sdma_txreq 0 10305 NULL
++sysfs_add_file_mode_ns_fndecl_10309_fns sysfs_add_file_mode_ns fndecl 0 10309 NULL
++scsi_vpd_inquiry_fndecl_10315_fns scsi_vpd_inquiry fndecl 0 10315 NULL
++num_mnt_opts_security_mnt_opts_10327_fns num_mnt_opts security_mnt_opts 0 10327 NULL
++dev_mem_write_fndecl_10335_fns dev_mem_write fndecl 3 10335 NULL
++boot_max_nr_grant_frames_vardecl_grant_table_c_10337_fns boot_max_nr_grant_frames vardecl_grant-table.c 0 10337 NULL
++cids_per_blk_cnic_local_10342_fns cids_per_blk cnic_local 0 10342 NULL
++__pci_request_selected_regions_fndecl_10361_fns __pci_request_selected_regions fndecl 0 10361 NULL
++rx_filter_data_filter_read_fndecl_10369_fns rx_filter_data_filter_read fndecl 3 10369 NULL
++snd_midi_channel_init_set_fndecl_10399_fns snd_midi_channel_init_set fndecl 1 10399 NULL
++u_memcpya_fndecl_10408_fns u_memcpya fndecl 2-3 10408 NULL
++jfs_xattr_set_fndecl_10409_fns jfs_xattr_set fndecl 6 10409 NULL
++alloc_switch_ctx_fndecl_10438_fns alloc_switch_ctx fndecl 2 10438 NULL
++mlxsw_sp_fdb_call_notifiers_fndecl_10442_fns mlxsw_sp_fdb_call_notifiers fndecl 4 10442 NULL
++NumberOfPhyBlock_ms_lib_ctrl_10443_fns NumberOfPhyBlock ms_lib_ctrl 0 10443 NULL
++elfcorehdr_read_fndecl_10460_fns elfcorehdr_read fndecl 2 10460 NULL
++usblp_ioctl_fndecl_10472_fns usblp_ioctl fndecl 2 10472 NULL
++nfsd4_get_drc_mem_fndecl_10473_fns nfsd4_get_drc_mem fndecl 0 10473 NULL
++avc_tuner_dsd_dvb_c_fndecl_10490_fns avc_tuner_dsd_dvb_c fndecl 0 10490 NULL
++msb_cache_read_fndecl_10494_fns msb_cache_read fndecl 2 10494 NULL
++sd_alloc_ctl_entry_fndecl_10527_fns sd_alloc_ctl_entry fndecl 1 10527 NULL nohasharray
++posix_acl_from_xattr_fndecl_10527_fns posix_acl_from_xattr fndecl 3 10527 &sd_alloc_ctl_entry_fndecl_10527_fns
++cros_ec_prepare_tx_fndecl_10539_fns cros_ec_prepare_tx fndecl 0 10539 NULL
++touchscreen_set_params_fndecl_10540_fns touchscreen_set_params fndecl 3 10540 NULL
++nfp_net_netdev_alloc_fndecl_10548_fns nfp_net_netdev_alloc fndecl 3-2 10548 NULL nohasharray
++read_cis_cache_fndecl_10548_fns read_cis_cache fndecl 4 10548 &nfp_net_netdev_alloc_fndecl_10548_fns
++wm_adsp_read_algs_fndecl_10552_fns wm_adsp_read_algs fndecl 4 10552 NULL
++lpfc_present_cpu_vardecl_10567_fns lpfc_present_cpu vardecl 0 10567 NULL
++fuse_fsync_fndecl_10582_fns fuse_fsync fndecl 2-3 10582 NULL
++static_key_count_fndecl_10584_fns static_key_count fndecl 0 10584 NULL
++wcn36xx_smd_send_and_wait_fndecl_10595_fns wcn36xx_smd_send_and_wait fndecl 2 10595 NULL
++num_amd_northbridge_info_10604_fns num amd_northbridge_info 0 10604 NULL
++__probe_kernel_write_fndecl_10625_fns __probe_kernel_write fndecl 3 10625 NULL nohasharray
++lch_count_omap_dma_dev_attr_10625_fns lch_count omap_dma_dev_attr 0 10625 &__probe_kernel_write_fndecl_10625_fns
++tlv_put_fndecl_10659_fns tlv_put fndecl 0 10659 NULL
++ipv6_setsockopt_fndecl_10684_fns ipv6_setsockopt fndecl 5 10684 NULL
++write_file_bool_bmps_fndecl_10685_fns write_file_bool_bmps fndecl 3 10685 NULL
++lov_ost_pool_extend_fndecl_10697_fns lov_ost_pool_extend fndecl 2 10697 NULL
++__btrfs_getxattr_fndecl_10728_fns __btrfs_getxattr fndecl 0 10728 NULL
++write_file_queue_fndecl_10737_fns write_file_queue fndecl 3 10737 NULL
++setexposure_fndecl_10781_fns setexposure fndecl 0 10781 NULL
++dwc3_testmode_write_fndecl_10791_fns dwc3_testmode_write fndecl 3 10791 NULL
++rtgt_cnt_snic_disc_10811_fns rtgt_cnt snic_disc 0 10811 NULL
++rndis_add_response_fndecl_10854_fns rndis_add_response fndecl 2 10854 NULL
++disk_expand_part_tbl_fndecl_10866_fns disk_expand_part_tbl fndecl 2 10866 NULL
++__vmalloc_fndecl_10880_fns __vmalloc fndecl 1 10880 NULL
++sgl_map_user_pages_fndecl_10881_fns sgl_map_user_pages fndecl 2 10881 NULL
++ieee80211_if_read_dot11MeshAwakeWindowDuration_fndecl_10932_fns ieee80211_if_read_dot11MeshAwakeWindowDuration fndecl 3 10932 NULL
++compat_raw_setsockopt_fndecl_10937_fns compat_raw_setsockopt fndecl 5 10937 NULL
++brd_alloc_fndecl_10964_fns brd_alloc fndecl 1 10964 NULL
++encrypted_key_size_ecryptfs_session_key_10978_fns encrypted_key_size ecryptfs_session_key 0 10978 NULL
++register_virtio_driver_fndecl_11025_fns register_virtio_driver fndecl 0 11025 NULL
++drm_dp_sideband_msg_build_fndecl_11028_fns drm_dp_sideband_msg_build fndecl 3 11028 NULL
++snd_ac97_pcm_assign_fndecl_11033_fns snd_ac97_pcm_assign fndecl 2 11033 NULL
++audio_outs_vx_core_11035_fns audio_outs vx_core 0 11035 NULL
++isr_pci_pm_read_fndecl_11052_fns isr_pci_pm_read fndecl 3 11052 NULL
++drm_dp_dpcd_write_fndecl_11066_fns drm_dp_dpcd_write fndecl 0 11066 NULL
++pipeline_sec_frag_swi_read_fndecl_11077_fns pipeline_sec_frag_swi_read fndecl 3 11077 NULL
++snd_pcm_new_internal_fndecl_11091_fns snd_pcm_new_internal fndecl 4-5 11091 NULL
++__vmalloc_node_flags_fndecl_11139_fns __vmalloc_node_flags fndecl 1 11139 NULL
++resource_from_user_fndecl_11158_fns resource_from_user fndecl 3 11158 NULL
++nvme_fill_device_id_eui64_fndecl_11160_fns nvme_fill_device_id_eui64 fndecl 4 11160 NULL
++max_supported_extcon_dev_11172_fns max_supported extcon_dev 0 11172 NULL
++sys_get_mempolicy_fndecl_11192_fns sys_get_mempolicy fndecl 3 11192 NULL
++mangle_sdp_packet_fndecl_11198_fns mangle_sdp_packet fndecl 10 11198 NULL
++trace_insert_enum_map_fndecl_11206_fns trace_insert_enum_map fndecl 3 11206 NULL
++submit_create_fndecl_11207_fns submit_create fndecl 3-4 11207 NULL
++lstcon_session_info_fndecl_11210_fns lstcon_session_info fndecl 6 11210 NULL
++tx_tx_template_prepared_read_fndecl_11211_fns tx_tx_template_prepared_read fndecl 3 11211 NULL
++bcd2000_dump_buffer_fndecl_11234_fns bcd2000_dump_buffer fndecl 3 11234 NULL
++enable_write_fndecl_11243_fns enable_write fndecl 3 11243 NULL
++tx_tx_template_programmed_read_fndecl_11246_fns tx_tx_template_programmed_read fndecl 3 11246 NULL
++alloc_sched_domains_fndecl_11327_fns alloc_sched_domains fndecl 1 11327 NULL
++hci_sock_setsockopt_fndecl_11346_fns hci_sock_setsockopt fndecl 5 11346 NULL
++buffer_length_usbdevfs_urb_11350_fns buffer_length usbdevfs_urb 0 11350 NULL
++nilfs_cpfile_delete_checkpoints_fndecl_11352_fns nilfs_cpfile_delete_checkpoints fndecl 2-3 11352 NULL nohasharray
++fdb_insert_fndecl_11352_fns fdb_insert fndecl 4 11352 &nilfs_cpfile_delete_checkpoints_fndecl_11352_fns
++fd_execute_rw_fndecl_11359_fns fd_execute_rw fndecl 3 11359 NULL
++ieee80211_if_read_ht_opmode_fndecl_11367_fns ieee80211_if_read_ht_opmode fndecl 3 11367 NULL
++sctp_getsockopt_assoc_stats_fndecl_11393_fns sctp_getsockopt_assoc_stats fndecl 2 11393 NULL
++txs_vardecl_ambassador_c_11398_fns txs vardecl_ambassador.c 0 11398 NULL
++iso_packets_buffer_init_fndecl_11414_fns iso_packets_buffer_init fndecl 3 11414 NULL
++lpfc_idiag_extacc_drivr_get_fndecl_11416_fns lpfc_idiag_extacc_drivr_get fndecl 3-0 11416 NULL
++isdn_ppp_write_fndecl_11430_fns isdn_ppp_write fndecl 4 11430 NULL
++acpi_node_prop_read_fndecl_11442_fns acpi_node_prop_read fndecl 0 11442 NULL
++iwl_dbgfs_log_event_write_fndecl_11443_fns iwl_dbgfs_log_event_write fndecl 3 11443 NULL
++ccp_init_dm_workarea_fndecl_11450_fns ccp_init_dm_workarea fndecl 3 11450 NULL
++wmi_evt_tx_mgmt_fndecl_11458_fns wmi_evt_tx_mgmt fndecl 4 11458 NULL
++proc_scsi_write_fndecl_11461_fns proc_scsi_write fndecl 3 11461 NULL
++xt_alloc_entry_offsets_fndecl_11488_fns xt_alloc_entry_offsets fndecl 1 11488 NULL
++count_e1000_ring_11491_fns count e1000_ring 0 11491 NULL
++context_struct_to_string_fndecl_11502_fns context_struct_to_string fndecl 0 11502 NULL
++response_length_ib_uverbs_ex_create_rwq_ind_table_resp_11540_fns response_length ib_uverbs_ex_create_rwq_ind_table_resp 0 11540 NULL
++max_transfer_size_s2255_pipeinfo_11546_fns max_transfer_size s2255_pipeinfo 0 11546 NULL
++drm_plane_init_fndecl_11560_fns drm_plane_init fndecl 6 11560 NULL
++balance_level_fndecl_11568_fns balance_level fndecl 0 11568 NULL
++brcmf_fil_iovar_data_get_fndecl_11579_fns brcmf_fil_iovar_data_get fndecl 4 11579 NULL
++update_memcg_params_fndecl_11583_fns update_memcg_params fndecl 2 11583 NULL
++pwc_get_fps_fndecl_11588_fns pwc_get_fps fndecl 0 11588 NULL
++rpc_pipe_generic_upcall_fndecl_11597_fns rpc_pipe_generic_upcall fndecl 4 11597 NULL
++read_file_btcoex_fndecl_11604_fns read_file_btcoex fndecl 3 11604 NULL
++vmw_execbuf_process_fndecl_11642_fns vmw_execbuf_process fndecl 5 11642 NULL
++device_property_read_u32_array_fndecl_11662_fns device_property_read_u32_array fndecl 0 11662 NULL
++sel_write_member_fndecl_11667_fns sel_write_member fndecl 3 11667 NULL
++vp_request_msix_vectors_fndecl_11682_fns vp_request_msix_vectors fndecl 2 11682 NULL
++data_len_b43legacy_dfs_file_11690_fns data_len b43legacy_dfs_file 0 11690 NULL
++fill_note_info_fndecl_11692_fns fill_note_info fndecl 2 11692 NULL
++mlx5_query_port_qetcr_reg_fndecl_11697_fns mlx5_query_port_qetcr_reg fndecl 3 11697 NULL
++kernel_tree_alloc_fndecl_11698_fns kernel_tree_alloc fndecl 1 11698 NULL nohasharray
++__i2c_read_fndecl_11698_fns __i2c_read fndecl 0 11698 &kernel_tree_alloc_fndecl_11698_fns
++iwl_dbgfs_rxon_filter_flags_read_fndecl_11699_fns iwl_dbgfs_rxon_filter_flags_read fndecl 3 11699 NULL
++ipv6_renew_options_fndecl_11728_fns ipv6_renew_options fndecl 5 11728 NULL
++cifs_linux_ext_proc_write_fndecl_11755_fns cifs_linux_ext_proc_write fndecl 3 11755 NULL
++p9_client_prepare_req_fndecl_11803_fns p9_client_prepare_req fndecl 3 11803 NULL
++__kmalloc_node_fndecl_11804_fns __kmalloc_node fndecl 1 11804 NULL
++size_mvpp2_tx_queue_11816_fns size mvpp2_tx_queue 0 11816 NULL
++atk_debugfs_ggrp_read_fndecl_11841_fns atk_debugfs_ggrp_read fndecl 3 11841 NULL
++num_crtc_mga_device_11851_fns num_crtc mga_device 0 11851 NULL
++sg_tablesize_srp_target_port_11858_fns sg_tablesize srp_target_port 0 11858 NULL
++btmrvl_pscmd_write_fndecl_11859_fns btmrvl_pscmd_write fndecl 3 11859 NULL
++frame_rate_sd_11862_fns frame_rate sd 0 11862 NULL
++wr_host_buf_pos_xilly_channel_11866_fns wr_host_buf_pos xilly_channel 0 11866 NULL
++leaf_dealloc_fndecl_11885_fns leaf_dealloc fndecl 3 11885 NULL nohasharray
++alloc_empty_pages_fndecl_11885_fns alloc_empty_pages fndecl 2 11885 &leaf_dealloc_fndecl_11885_fns
++iwl_dbgfs_missed_beacon_write_fndecl_11905_fns iwl_dbgfs_missed_beacon_write fndecl 3 11905 NULL
++mwifiex_histogram_read_fndecl_11910_fns mwifiex_histogram_read fndecl 3 11910 NULL
++snd_device_new_fndecl_11911_fns snd_device_new fndecl 0 11911 NULL
++lbs_lowsnr_read_fndecl_11920_fns lbs_lowsnr_read fndecl 3 11920 NULL
++kvm_read_guest_virt_system_fndecl_11922_fns kvm_read_guest_virt_system fndecl 4-2 11922 NULL
++arm_coherent_iommu_alloc_attrs_fndecl_11939_fns arm_coherent_iommu_alloc_attrs fndecl 2 11939 NULL
++spi_write_fndecl_11948_fns spi_write fndecl 0 11948 NULL
++osc_cached_mb_seq_write_fndecl_11961_fns osc_cached_mb_seq_write fndecl 3 11961 NULL
++red_left_pad_kmem_cache_11964_fns red_left_pad kmem_cache 0 11964 NULL
++sctp_make_abort_user_fndecl_11973_fns sctp_make_abort_user fndecl 3 11973 NULL nohasharray
++spmi_controller_alloc_fndecl_11973_fns spmi_controller_alloc fndecl 2 11973 &sctp_make_abort_user_fndecl_11973_fns
++ssp_create_msg_fndecl_11986_fns ssp_create_msg fndecl 2 11986 NULL
++tx_frag_cache_hit_read_fndecl_11988_fns tx_frag_cache_hit_read fndecl 3 11988 NULL
++ndevcntrs_hfi1_devdata_11997_fns ndevcntrs hfi1_devdata 0 11997 NULL
++sisusb_write_mem_bulk_fndecl_12029_fns sisusb_write_mem_bulk fndecl 4 12029 NULL
++alloc_group_attrs_fndecl_12032_fns alloc_group_attrs fndecl 3 12032 NULL nohasharray
++wusb_prf_256_fndecl_12032_fns wusb_prf_256 fndecl 7 12032 &alloc_group_attrs_fndecl_12032_fns
++drm_property_create_enum_fndecl_12034_fns drm_property_create_enum fndecl 5 12034 NULL
++comedi_alloc_subdevices_fndecl_12036_fns comedi_alloc_subdevices fndecl 2 12036 NULL
++evdev_handle_get_val_fndecl_12073_fns evdev_handle_get_val fndecl 5-6 12073 NULL
++nvme_trans_copy_from_user_fndecl_12088_fns nvme_trans_copy_from_user fndecl 3 12088 NULL
++iwl_dbgfs_temperature_read_fndecl_12091_fns iwl_dbgfs_temperature_read fndecl 3 12091 NULL
++security_context_to_sid_core_fndecl_12115_fns security_context_to_sid_core fndecl 2 12115 NULL
++mempool_resize_fndecl_12140_fns mempool_resize fndecl 2 12140 NULL
++nfs42_proc_copy_fndecl_12169_fns nfs42_proc_copy fndecl 2-5 12169 NULL
++max_fingers_silead_ts_data_12170_fns max_fingers silead_ts_data 0 12170 NULL
++__fuse_get_req_fndecl_12176_fns __fuse_get_req fndecl 2 12176 NULL
++bulk_in_size_sur40_state_12178_fns bulk_in_size sur40_state 0 12178 NULL
++lprocfs_write_helper_fndecl_12184_fns lprocfs_write_helper fndecl 2 12184 NULL
++alloc_and_copy_ftrace_hash_fndecl_12203_fns alloc_and_copy_ftrace_hash fndecl 1 12203 NULL
++l2cap_sock_setsockopt_old_fndecl_12209_fns l2cap_sock_setsockopt_old fndecl 4 12209 NULL
++hci_sock_sendmsg_fndecl_12231_fns hci_sock_sendmsg fndecl 3 12231 NULL
++read_file_tx99_power_fndecl_12238_fns read_file_tx99_power fndecl 3 12238 NULL
++unique_len_drm_master_12259_fns unique_len drm_master 0 12259 NULL
++zs_size_classes_vardecl_zsmalloc_c_12260_fns zs_size_classes vardecl_zsmalloc.c 0 12260 NULL
++mempool_create_fndecl_12270_fns mempool_create fndecl 1 12270 NULL
++handle_fcp_fndecl_12283_fns handle_fcp fndecl 9 12283 NULL
++capacity_sddr09_card_info_12286_fns capacity sddr09_card_info 0 12286 NULL
++nb_blocks_NFTLrecord_12306_fns nb_blocks NFTLrecord 0 12306 NULL
++tracing_clock_write_fndecl_12330_fns tracing_clock_write fndecl 3 12330 NULL
++srpt_alloc_rw_ctxs_fndecl_12333_fns srpt_alloc_rw_ctxs fndecl 3 12333 NULL
++bank_size_stub_chip_12338_fns bank_size stub_chip 0 12338 NULL
++igb_pci_sriov_configure_fndecl_12359_fns igb_pci_sriov_configure fndecl 2 12359 NULL
++i_entries_gfs2_inode_12374_fns i_entries gfs2_inode 0 12374 NULL
++mic_rx_pkts_read_fndecl_12375_fns mic_rx_pkts_read fndecl 3 12375 NULL
++pci_enable_device_flags_fndecl_12378_fns pci_enable_device_flags fndecl 0 12378 NULL
++ath10k_read_quiet_period_fndecl_12397_fns ath10k_read_quiet_period fndecl 3 12397 NULL
++powercap_register_zone_fndecl_12399_fns powercap_register_zone fndecl 6 12399 NULL
++edt_ft5x06_debugfs_raw_data_read_fndecl_12401_fns edt_ft5x06_debugfs_raw_data_read fndecl 3 12401 NULL
++snd_rawmidi_write_fndecl_12411_fns snd_rawmidi_write fndecl 3 12411 NULL
++cx231xx_init_vbi_isoc_fndecl_12422_fns cx231xx_init_vbi_isoc fndecl 3-4-2 12422 NULL
++init_rs_non_canonical_fndecl_12424_fns init_rs_non_canonical fndecl 1-5 12424 NULL
++add_pid_filter_fndecl_12429_fns add_pid_filter fndecl 0 12429 NULL
++lpfc_idiag_mbxacc_read_fndecl_12430_fns lpfc_idiag_mbxacc_read fndecl 3 12430 NULL
++sctp_setsockopt_maxburst_fndecl_12442_fns sctp_setsockopt_maxburst fndecl 3 12442 NULL
++acpi_gsb_i2c_write_bytes_fndecl_12449_fns acpi_gsb_i2c_write_bytes fndecl 4 12449 NULL
++tx_frag_bad_mblk_num_read_fndecl_12467_fns tx_frag_bad_mblk_num_read fndecl 3 12467 NULL
++rx_defrag_need_defrag_read_fndecl_12486_fns rx_defrag_need_defrag_read fndecl 3 12486 NULL
++acpi_tb_install_standard_table_fndecl_12495_fns acpi_tb_install_standard_table fndecl 1 12495 NULL
++mmc_test_alloc_mem_fndecl_12501_fns mmc_test_alloc_mem fndecl 2-3 12501 NULL
++stream_next_buffer_fndecl_12502_fns stream_next_buffer fndecl 0 12502 NULL
++stats_dot11FCSErrorCount_read_fndecl_12521_fns stats_dot11FCSErrorCount_read fndecl 3 12521 NULL
++snd_midi_channel_alloc_set_fndecl_12522_fns snd_midi_channel_alloc_set fndecl 1 12522 NULL
++learn_buffer_user_len_vardecl_gracl_learn_c_12538_fns learn_buffer_user_len vardecl_gracl_learn.c 0 12538 NULL
++mlxsw_cmd_mbox_query_aq_cap_max_num_cqs_get_fndecl_12540_fns mlxsw_cmd_mbox_query_aq_cap_max_num_cqs_get fndecl 0 12540 NULL
++rxd_cnt_nfp_net_12541_fns rxd_cnt nfp_net 0 12541 NULL
++cdrom_read_cdda_old_fndecl_12547_fns cdrom_read_cdda_old fndecl 4 12547 NULL
++irq_count_rmi_driver_data_12580_fns irq_count rmi_driver_data 0 12580 NULL
++fs_path_add_from_extent_buffer_fndecl_12581_fns fs_path_add_from_extent_buffer fndecl 4-0 12581 NULL
++evm_write_key_fndecl_12624_fns evm_write_key fndecl 3 12624 NULL
++tw686x_fps_idx_fndecl_12646_fns tw686x_fps_idx fndecl 2 12646 NULL
++kcalloc_fndecl_12649_fns kcalloc fndecl 1-2 12649 NULL
++num_aces_cifs_acl_12670_fns num_aces cifs_acl 0 12670 NULL
++transport_init_session_tags_fndecl_12691_fns transport_init_session_tags fndecl 1-2 12691 NULL
++t2_num_pages_qed_cxt_mngr_12696_fns t2_num_pages qed_cxt_mngr 0 12696 NULL
++fld_debugfs_hash_seq_write_fndecl_12713_fns fld_debugfs_hash_seq_write fndecl 3 12713 NULL
++sys_listxattr_fndecl_12714_fns sys_listxattr fndecl 3 12714 NULL
++rdma_rw_init_mr_wrs_fndecl_12719_fns rdma_rw_init_mr_wrs fndecl 5 12719 NULL
++read_profile_fndecl_12736_fns read_profile fndecl 3 12736 NULL
++sky2_pci_read16_fndecl_12740_fns sky2_pci_read16 fndecl 0 12740 NULL
++num_unit_element_struct_12767_fns num unit_element_struct 0 12767 NULL
++driver_add_groups_fndecl_12778_fns driver_add_groups fndecl 0 12778 NULL
++ieee80211_if_read_dot11MeshHWMProotInterval_fndecl_12786_fns ieee80211_if_read_dot11MeshHWMProotInterval fndecl 3 12786 NULL
++testmode_write_fndecl_12814_fns testmode_write fndecl 3 12814 NULL
++hint_events_per_packet_input_dev_12818_fns hint_events_per_packet input_dev 0 12818 NULL
++ksocknal_alloc_tx_fndecl_12825_fns ksocknal_alloc_tx fndecl 2 12825 NULL
++of_n_addr_cells_fndecl_12852_fns of_n_addr_cells fndecl 0 12852 NULL
++key_mic_failures_read_fndecl_12858_fns key_mic_failures_read fndecl 3 12858 NULL
++omap_gem_new_dmabuf_fndecl_12877_fns omap_gem_new_dmabuf fndecl 2 12877 NULL
++max_response_pages_fndecl_12895_fns max_response_pages fndecl 0 12895 NULL
++dbgfs_sram_len_iwl_mvm_12900_fns dbgfs_sram_len iwl_mvm 0 12900 NULL
++gsm_stuff_frame_fndecl_12918_fns gsm_stuff_frame fndecl 0 12918 NULL
++nilfs_sufile_delete_segment_usage_block_fndecl_12921_fns nilfs_sufile_delete_segment_usage_block fndecl 2 12921 NULL
++i2400m_tx_stats_read_fndecl_12924_fns i2400m_tx_stats_read fndecl 3 12924 NULL
++obufsize_sisusb_usb_data_12932_fns obufsize sisusb_usb_data 0 12932 NULL
++run_delalloc_range_fndecl_12946_fns run_delalloc_range fndecl 3-4 12946 NULL nohasharray
++aio_read_events_fndecl_12946_fns aio_read_events fndecl 3 12946 &run_delalloc_range_fndecl_12946_fns nohasharray
++mptctl_getiocinfo_fndecl_12946_fns mptctl_getiocinfo fndecl 2 12946 &aio_read_events_fndecl_12946_fns
++sel_read_policycap_fndecl_12947_fns sel_read_policycap fndecl 3 12947 NULL
++b43legacy_debugfs_write_fndecl_12959_fns b43legacy_debugfs_write fndecl 3 12959 NULL
++kfifo_unused_fndecl_13015_fns kfifo_unused fndecl 0 13015 NULL
++rpcrdma_alloc_regbuf_fndecl_13018_fns rpcrdma_alloc_regbuf fndecl 2 13018 NULL
++snd_nm256_capture_copy_fndecl_13021_fns snd_nm256_capture_copy fndecl 5 13021 NULL
++iwl_dbgfs_nic_temp_read_fndecl_13029_fns iwl_dbgfs_nic_temp_read fndecl 3 13029 NULL
++blk_queue_resize_tags_fndecl_13037_fns blk_queue_resize_tags fndecl 2 13037 NULL
++p9_fcall_alloc_fndecl_13055_fns p9_fcall_alloc fndecl 1 13055 NULL
++calib_calib_count_read_fndecl_13060_fns calib_calib_count_read fndecl 3 13060 NULL
++drm_fbdev_cma_init_with_funcs_fndecl_13066_fns drm_fbdev_cma_init_with_funcs fndecl 3-4-2 13066 NULL
++vread_fndecl_13086_fns vread fndecl 0-3 13086 NULL
++thermal_zone_device_register_fndecl_13093_fns thermal_zone_device_register fndecl 2 13093 NULL nohasharray
++vrambase_sisusb_usb_data_13093_fns vrambase sisusb_usb_data 0 13093 &thermal_zone_device_register_fndecl_13093_fns
++sctp_tsnmap_skip_fndecl_13103_fns sctp_tsnmap_skip fndecl 2 13103 NULL
++line6_alloc_sysex_buffer_fndecl_13138_fns line6_alloc_sysex_buffer fndecl 4 13138 NULL
++inline_xattr_size_fndecl_13166_fns inline_xattr_size fndecl 0 13166 NULL
++iproc_pll_clk_setup_fndecl_13179_fns iproc_pll_clk_setup fndecl 6 13179 NULL
++bsg_setup_queue_fndecl_13194_fns bsg_setup_queue fndecl 5 13194 NULL
++snd_pcm_oss_read_fndecl_13198_fns snd_pcm_oss_read fndecl 3 13198 NULL
++bm_entry_write_fndecl_13217_fns bm_entry_write fndecl 3 13217 NULL
++snapshot_write_fndecl_13228_fns snapshot_write fndecl 3 13228 NULL
++filldir64_fndecl_13232_fns filldir64 fndecl 3 13232 NULL
++batadv_handle_tt_response_fndecl_13249_fns batadv_handle_tt_response fndecl 4 13249 NULL
++compress_file_range_fndecl_13295_fns compress_file_range fndecl 3-4 13295 NULL
++dlmfs_file_read_fndecl_13298_fns dlmfs_file_read fndecl 3 13298 NULL
++tx_frag_cache_miss_read_fndecl_13305_fns tx_frag_cache_miss_read fndecl 3 13305 NULL
++req_len_snic_req_info_13319_fns req_len snic_req_info 0 13319 NULL
++svc_print_xprts_fndecl_13330_fns svc_print_xprts fndecl 0 13330 NULL
++brcmf_usb_dl_cmd_fndecl_13344_fns brcmf_usb_dl_cmd fndecl 4 13344 NULL
++x25_asy_change_mtu_fndecl_13347_fns x25_asy_change_mtu fndecl 2 13347 NULL
++sctp_setsockopt_adaptation_layer_fndecl_13348_fns sctp_setsockopt_adaptation_layer fndecl 3 13348 NULL nohasharray
++pwr_ps_enter_read_fndecl_13348_fns pwr_ps_enter_read fndecl 3 13348 &sctp_setsockopt_adaptation_layer_fndecl_13348_fns
++hecubafb_write_fndecl_13357_fns hecubafb_write fndecl 3 13357 NULL
++hhf_zalloc_fndecl_13363_fns hhf_zalloc fndecl 1 13363 NULL
++sd_size_stat_data_13368_fns sd_size stat_data 0 13368 NULL
++error_error_frame_during_protection_read_fndecl_13376_fns error_error_frame_during_protection_read fndecl 3 13376 NULL
++T5_msg_size_mxt_data_13382_fns T5_msg_size mxt_data 0 13382 NULL
++shrink_slab_fndecl_13407_fns shrink_slab fndecl 5-4 13407 NULL
++nrealreaders_stress_lock_torture_cxt_13422_fns nrealreaders_stress lock_torture_cxt 0 13422 NULL
++tb_path_alloc_fndecl_13427_fns tb_path_alloc fndecl 2 13427 NULL
++kvm_read_guest_phys_system_fndecl_13445_fns kvm_read_guest_phys_system fndecl 2-4 13445 NULL
++mmp_clk_init_fndecl_13447_fns mmp_clk_init fndecl 3 13447 NULL
++fill_read_buf_fndecl_13455_fns fill_read_buf fndecl 2 13455 NULL
++snd_ctl_new_fndecl_13472_fns snd_ctl_new fndecl 2 13472 NULL
++__videobuf_alloc_vb_fndecl_13477_fns __videobuf_alloc_vb fndecl 1 13477 NULL
++devfn_slot_13478_fns devfn slot 0 13478 NULL
++iwl_mvm_notify_rx_queue_fndecl_13499_fns iwl_mvm_notify_rx_queue fndecl 4 13499 NULL
++btmrvl_hscmd_write_fndecl_13506_fns btmrvl_hscmd_write fndecl 3 13506 NULL
++max_out_size_ims_pcu_13527_fns max_out_size ims_pcu 0 13527 NULL
++alloc_fdmem_fndecl_13528_fns alloc_fdmem fndecl 1 13528 NULL
++ppp_print_buffer_fndecl_13530_fns ppp_print_buffer fndecl 3 13530 NULL
++tool_mw_read_fndecl_13537_fns tool_mw_read fndecl 3 13537 NULL
++p_filesz_elf64_phdr_13545_fns p_filesz elf64_phdr 0 13545 NULL
++pset_prop_count_elems_of_size_fndecl_13547_fns pset_prop_count_elems_of_size fndecl 3-0 13547 NULL
++len_prism2_download_data_area_13551_fns len prism2_download_data_area 0 13551 NULL
++buf_len_vp702x_device_state_13562_fns buf_len vp702x_device_state 0 13562 NULL
++edt_ft5x06_ts_readwrite_fndecl_13570_fns edt_ft5x06_ts_readwrite fndecl 0 13570 NULL
++avc_tuner_dsd_dvb_t_fndecl_13571_fns avc_tuner_dsd_dvb_t fndecl 0 13571 NULL
++irq_alloc_generic_chip_fndecl_13577_fns irq_alloc_generic_chip fndecl 2 13577 NULL
++pwr_fix_tsf_ps_read_fndecl_13584_fns pwr_fix_tsf_ps_read fndecl 3 13584 NULL
++flowinfo_read_fndecl_13608_fns flowinfo_read fndecl 3 13608 NULL
++cipso_v4_map_cat_rbm_hton_fndecl_13611_fns cipso_v4_map_cat_rbm_hton fndecl 0 13611 NULL
++__alloc_pred_stack_fndecl_13612_fns __alloc_pred_stack fndecl 2 13612 NULL
++usb_reset_device_fndecl_13622_fns usb_reset_device fndecl 0 13622 NULL
++ws_col_winsize_13628_fns ws_col winsize 0 13628 NULL
++max_dpcd_transaction_bytes_drm_dp_mst_topology_mgr_13637_fns max_dpcd_transaction_bytes drm_dp_mst_topology_mgr 0 13637 NULL
++sysfs_add_file_fndecl_13647_fns sysfs_add_file fndecl 0 13647 NULL
++lowpan_ctx_pfx_write_fndecl_13658_fns lowpan_ctx_pfx_write fndecl 3 13658 NULL
++vhost_copy_from_user_fndecl_13681_fns vhost_copy_from_user fndecl 4 13681 NULL
++__fwnode_property_read_string_array_fndecl_13689_fns __fwnode_property_read_string_array fndecl 0 13689 NULL
++resize_platform_label_table_fndecl_13711_fns resize_platform_label_table fndecl 2 13711 NULL
++shdma_prep_dma_cyclic_fndecl_13739_fns shdma_prep_dma_cyclic fndecl 4-3 13739 NULL
++pof_write_buffer_fndecl_13741_fns pof_write_buffer fndecl 0-2 13741 NULL
++regmap_ibt_write_fndecl_13743_fns regmap_ibt_write fndecl 3 13743 NULL nohasharray
++cipso_v4_genopt_fndecl_13743_fns cipso_v4_genopt fndecl 0 13743 &regmap_ibt_write_fndecl_13743_fns
++qlcnic_alloc_sds_rings_fndecl_13752_fns qlcnic_alloc_sds_rings fndecl 2 13752 NULL
++iwl_trans_read_mem32_fndecl_13786_fns iwl_trans_read_mem32 fndecl 0 13786 NULL
++ept_get_level1_sp_gpa_fndecl_13788_fns ept_get_level1_sp_gpa fndecl 0 13788 NULL
++num_fcoe_msix_i40e_pf_13802_fns num_fcoe_msix i40e_pf 0 13802 NULL
++ath6kl_create_qos_write_fndecl_13804_fns ath6kl_create_qos_write fndecl 3 13804 NULL
++seq_read_fndecl_13824_fns seq_read fndecl 3 13824 NULL
++ib_dma_map_sg_fndecl_13830_fns ib_dma_map_sg fndecl 0 13830 NULL
++ieee80211_if_read_smps_fndecl_13835_fns ieee80211_if_read_smps fndecl 3 13835 NULL
++init_memory_mapping_fndecl_13840_fns init_memory_mapping fndecl 1-2 13840 NULL
++sddr09_read_data_fndecl_13860_fns sddr09_read_data fndecl 3 13860 NULL
++rlen_cm4000_dev_13899_fns rlen cm4000_dev 0 13899 NULL
++wm_coeff_parse_int_fndecl_13918_fns wm_coeff_parse_int fndecl 0 13918 NULL
++trips_thermal_zone_device_13921_fns trips thermal_zone_device 0 13921 NULL
++garmin_read_process_fndecl_13926_fns garmin_read_process fndecl 3 13926 NULL
++hcd_buffer_alloc_fndecl_13940_fns hcd_buffer_alloc fndecl 2 13940 NULL
++img_IMEM_size_fw_hdr_13961_fns img_IMEM_size fw_hdr 0 13961 NULL
++nes_dump_mem_fndecl_13971_fns nes_dump_mem fndecl 3 13971 NULL
++ib_copy_to_udata_fndecl_13974_fns ib_copy_to_udata fndecl 3 13974 NULL
++e_phnum_elf32_hdr_13980_fns e_phnum elf32_hdr 0 13980 NULL
++syslog_partial_vardecl_printk_c_13985_fns syslog_partial vardecl_printk.c 0 13985 NULL
++libipw_alloc_txb_fndecl_13992_fns libipw_alloc_txb fndecl 1 13992 NULL
++i2400mu_notification_grok_fndecl_13997_fns i2400mu_notification_grok fndecl 3 13997 NULL
++batadv_socket_add_packet_fndecl_14011_fns batadv_socket_add_packet fndecl 3 14011 NULL
++sensor_framerate_go7007_14025_fns sensor_framerate go7007 0 14025 NULL
++descriptors_per_page__drm_via_sg_info_14046_fns descriptors_per_page _drm_via_sg_info 0 14046 NULL
++C_SYSC_mbind_fndecl_14055_fns C_SYSC_mbind fndecl 5 14055 NULL
++read_flush_procfs_fndecl_14057_fns read_flush_procfs fndecl 3 14057 NULL
++regmap_ibt_gather_write_fndecl_14087_fns regmap_ibt_gather_write fndecl 5 14087 NULL
++_mv88e6xxx_port_vlan_add_fndecl_14091_fns _mv88e6xxx_port_vlan_add fndecl 3 14091 NULL
++snd_compr_calc_avail_fndecl_14094_fns snd_compr_calc_avail fndecl 0 14094 NULL
++btmrvl_hscfgcmd_write_fndecl_14100_fns btmrvl_hscfgcmd_write fndecl 3 14100 NULL
++wil_write_file_wmi_fndecl_14109_fns wil_write_file_wmi fndecl 3 14109 NULL
++ieee80211_if_read_rc_rateidx_mask_5ghz_fndecl_14140_fns ieee80211_if_read_rc_rateidx_mask_5ghz fndecl 3 14140 NULL
++write_kmem_fndecl_14154_fns write_kmem fndecl 3 14154 NULL nohasharray
++svcxdr_tmpalloc_fndecl_14154_fns svcxdr_tmpalloc fndecl 2 14154 &write_kmem_fndecl_14154_fns
++uvc_fraction_to_interval_fndecl_14194_fns uvc_fraction_to_interval fndecl 0-2-1 14194 NULL
++comedi_alloc_devpriv_fndecl_14235_fns comedi_alloc_devpriv fndecl 2 14235 NULL
++usb_submit_urb_fndecl_14237_fns usb_submit_urb fndecl 0 14237 NULL
++write_buf_fndecl_14247_fns write_buf fndecl 0 14247 NULL
++copy_from_buf_fndecl_14271_fns copy_from_buf fndecl 2-4 14271 NULL
++afs_cell_create_fndecl_14273_fns afs_cell_create fndecl 2 14273 NULL
++snd_pcm_oss_write2_fndecl_14295_fns snd_pcm_oss_write2 fndecl 3 14295 NULL
++scif_p2p_setsg_fndecl_14314_fns scif_p2p_setsg fndecl 3 14314 NULL
++iwl_dbgfs_csr_write_fndecl_14320_fns iwl_dbgfs_csr_write fndecl 3 14320 NULL
++size_wpa_suite_t_14321_fns size wpa_suite_t 0 14321 NULL
++pcbit_stat_fndecl_14327_fns pcbit_stat fndecl 2 14327 NULL
++pxad_alloc_desc_fndecl_14330_fns pxad_alloc_desc fndecl 2 14330 NULL
++carl9170_cmd_callback_fndecl_14341_fns carl9170_cmd_callback fndecl 2 14341 NULL
++ath6kl_regread_read_fndecl_14351_fns ath6kl_regread_read fndecl 3 14351 NULL
++size_set_mib_buffer_14366_fns size set_mib_buffer 0 14366 NULL
++nvme_trans_mode_page_create_fndecl_14375_fns nvme_trans_mode_page_create fndecl 7-4 14375 NULL
++lirc_rx51_write_fndecl_14379_fns lirc_rx51_write fndecl 3 14379 NULL
++rcname_read_fndecl_14380_fns rcname_read fndecl 3 14380 NULL
++fdb_create_fndecl_14403_fns fdb_create fndecl 4 14403 NULL
++ssize_usbat_info_14405_fns ssize usbat_info 0 14405 NULL
++vmcb_iopm_nested_state_14411_fns vmcb_iopm nested_state 0 14411 NULL
++max_ep_fsl_udc_14417_fns max_ep fsl_udc 0 14417 NULL
++key_flags_read_fndecl_14424_fns key_flags_read fndecl 3 14424 NULL
++snd_es1938_capture_copy_fndecl_14425_fns snd_es1938_capture_copy fndecl 5 14425 NULL
++flush_fndecl_14454_fns flush fndecl 2 14454 NULL
++_regmap_multi_reg_write_fndecl_14460_fns _regmap_multi_reg_write fndecl 3 14460 NULL
++cfs_hash_create_fndecl_14468_fns cfs_hash_create fndecl 4-2 14468 NULL
++gsm_control_send_fndecl_14499_fns gsm_control_send fndecl 4 14499 NULL
++selinux_inode_post_setxattr_fndecl_14502_fns selinux_inode_post_setxattr fndecl 4 14502 NULL
++bnad_q_num_adjust_fndecl_14512_fns bnad_q_num_adjust fndecl 2 14512 NULL
++memcg_update_all_list_lrus_fndecl_14532_fns memcg_update_all_list_lrus fndecl 1 14532 NULL
++density_scsi_tape_14545_fns density scsi_tape 0 14545 NULL
++__alloc_memory_core_early_fndecl_14550_fns __alloc_memory_core_early fndecl 2 14550 NULL
++keyctl_update_key_fndecl_14558_fns keyctl_update_key fndecl 3 14558 NULL
++befs_utf2nls_fndecl_14607_fns befs_utf2nls fndecl 3 14607 NULL
++vmw_execbuf_cmdbuf_fndecl_14639_fns vmw_execbuf_cmdbuf fndecl 4 14639 NULL
++interval_solo_enc_dev_14661_fns interval solo_enc_dev 0 14661 NULL
++tty_copy_to_user_fndecl_14668_fns tty_copy_to_user fndecl 3-4 14668 NULL nohasharray
++mlx5_query_ports_check_fndecl_14668_fns mlx5_query_ports_check fndecl 3 14668 &tty_copy_to_user_fndecl_14668_fns
++image_size_ls_ucode_img_desc_14672_fns image_size ls_ucode_img_desc 0 14672 NULL
++lpfc_idiag_cmd_get_fndecl_14683_fns lpfc_idiag_cmd_get fndecl 2 14683 NULL
++ibmasm_new_command_fndecl_14689_fns ibmasm_new_command fndecl 2 14689 NULL
++rx_filter_mc_filter_read_fndecl_14691_fns rx_filter_mc_filter_read fndecl 3 14691 NULL
++num_sizes_vmw_surface_14695_fns num_sizes vmw_surface 0 14695 NULL
++count_ctxt_eager_bufs_14698_fns count ctxt_eager_bufs 0 14698 NULL
++__alloc_bootmem_low_node_fndecl_14701_fns __alloc_bootmem_low_node fndecl 2 14701 NULL nohasharray
++sel_write_context_fndecl_14701_fns sel_write_context fndecl 3 14701 &__alloc_bootmem_low_node_fndecl_14701_fns
++change_tx_queue_len_fndecl_14718_fns change_tx_queue_len fndecl 2 14718 NULL
++cxgbi_device_portmap_create_fndecl_14720_fns cxgbi_device_portmap_create fndecl 3 14720 NULL
++event_rx_pool_read_fndecl_14803_fns event_rx_pool_read fndecl 3 14803 NULL
++sg_read_fndecl_14804_fns sg_read fndecl 3 14804 NULL
++parport_read_fndecl_14828_fns parport_read fndecl 0 14828 NULL
++mlx5_core_sriov_configure_fndecl_14829_fns mlx5_core_sriov_configure fndecl 2 14829 NULL
++pwr_missing_bcns_read_fndecl_14835_fns pwr_missing_bcns_read fndecl 3 14835 NULL
++map_len_ssfdcr_record_14843_fns map_len ssfdcr_record 0 14843 NULL
++threads_mask_netns_ipvs_14873_fns threads_mask netns_ipvs 0 14873 NULL
++inocache_hashsize_jffs2_sb_info_14875_fns inocache_hashsize jffs2_sb_info 0 14875 NULL
++submit_queues_vardecl_null_blk_c_14881_fns submit_queues vardecl_null_blk.c 0 14881 NULL
++ebcnt_vardecl_pagetest_c_14897_fns ebcnt vardecl_pagetest.c 0 14897 NULL
++firmware_store_fndecl_14907_fns firmware_store fndecl 4 14907 NULL
++tower_read_fndecl_14926_fns tower_read fndecl 3 14926 NULL
++pagemap_read_fndecl_14938_fns pagemap_read fndecl 3 14938 NULL
++ib_alloc_device_fndecl_14944_fns ib_alloc_device fndecl 1 14944 NULL
++dump_smb_fndecl_14947_fns dump_smb fndecl 2 14947 NULL
++ulong_write_file_fndecl_14950_fns ulong_write_file fndecl 3 14950 NULL
++iwl_dbgfs_rf_reset_read_fndecl_14979_fns iwl_dbgfs_rf_reset_read fndecl 3 14979 NULL
++alloc_ep_req_fndecl_14986_fns alloc_ep_req fndecl 3-2 14986 NULL
++uhid_char_write_fndecl_14997_fns uhid_char_write fndecl 3 14997 NULL
++read_vmcore_fndecl_14998_fns read_vmcore fndecl 3 14998 NULL
++vfio_pci_set_msi_trigger_fndecl_15000_fns vfio_pci_set_msi_trigger fndecl 4-3 15000 NULL
++length_sge_ieee1212_15003_fns length sge_ieee1212 0 15003 NULL
++__vhost_add_used_n_fndecl_15017_fns __vhost_add_used_n fndecl 3 15017 NULL
++rts51x_read_mem_fndecl_15042_fns rts51x_read_mem fndecl 4 15042 NULL
++num_user_pages_fndecl_15045_fns num_user_pages fndecl 0 15045 NULL
++max_io_len_dm_target_15053_fns max_io_len dm_target 0 15053 NULL
++usbat_read_blocks_fndecl_15109_fns usbat_read_blocks fndecl 3-4 15109 NULL
++SYSC_bpf_fndecl_15113_fns SYSC_bpf fndecl 3 15113 NULL
++ebcnt_vardecl_stresstest_c_15125_fns ebcnt vardecl_stresstest.c 0 15125 NULL
++_nfs42_proc_llseek_fndecl_15127_fns _nfs42_proc_llseek fndecl 3 15127 NULL
++ath6kl_roam_table_read_fndecl_15141_fns ath6kl_roam_table_read fndecl 3 15141 NULL
++copy_oldmem_page_fndecl_15143_fns copy_oldmem_page fndecl 3 15143 NULL
++chaoskey_read_fndecl_15155_fns chaoskey_read fndecl 3 15155 NULL
++walk_hugetlb_range_fndecl_15190_fns walk_hugetlb_range fndecl 0 15190 NULL
++nlm_end_grace_read_fndecl_15209_fns nlm_end_grace_read fndecl 3 15209 NULL
++genwqe_ffdc_buff_size_fndecl_15236_fns genwqe_ffdc_buff_size fndecl 0 15236 NULL
++num_tx_queues_net_device_15263_fns num_tx_queues net_device 0 15263 NULL
++cx24120_writeregs_fndecl_15295_fns cx24120_writeregs fndecl 4 15295 NULL
++pwr_wake_on_host_read_fndecl_15298_fns pwr_wake_on_host_read fndecl 3 15298 NULL
++snic_hex_dump_fndecl_15315_fns snic_hex_dump fndecl 3 15315 NULL
++snd_pcm_plug_client_channels_buf_fndecl_15318_fns snd_pcm_plug_client_channels_buf fndecl 3-0 15318 NULL
++ath10k_dbg_sta_write_addba_resp_fndecl_15326_fns ath10k_dbg_sta_write_addba_resp fndecl 3 15326 NULL
++cifs_readdata_alloc_fndecl_15339_fns cifs_readdata_alloc fndecl 1 15339 NULL
++iser_alloc_fmr_pool_fndecl_15341_fns iser_alloc_fmr_pool fndecl 3 15341 NULL
++seq_len_key_params_15366_fns seq_len key_params 0 15366 NULL
++udf_bread_fndecl_15411_fns udf_bread fndecl 2 15411 NULL
++pnp_alloc_fndecl_15414_fns pnp_alloc fndecl 1 15414 NULL
++setup_buffering_fndecl_15419_fns setup_buffering fndecl 3 15419 NULL
++queues_read_fndecl_15422_fns queues_read fndecl 3 15422 NULL
++pwc_set_video_mode_fndecl_15427_fns pwc_set_video_mode fndecl 5 15427 NULL
++callout_len_request_key_auth_15448_fns callout_len request_key_auth 0 15448 NULL nohasharray
++smk_write_net6addr_fndecl_15448_fns smk_write_net6addr fndecl 3 15448 &callout_len_request_key_auth_15448_fns
++codec_list_read_file_fndecl_15453_fns codec_list_read_file fndecl 3 15453 NULL
++wdm_create_fndecl_15456_fns wdm_create fndecl 3 15456 NULL
++nf_nat_sdp_port_fndecl_15490_fns nf_nat_sdp_port fndecl 7 15490 NULL
++ath10k_fw_crash_dump_read_fndecl_15496_fns ath10k_fw_crash_dump_read fndecl 3 15496 NULL
++sys_rt_sigpending_fndecl_15506_fns sys_rt_sigpending fndecl 2 15506 NULL
++hi_priority_depth_MPT3SAS_ADAPTER_15543_fns hi_priority_depth MPT3SAS_ADAPTER 0 15543 NULL
++genwqe_user_vmap_fndecl_15544_fns genwqe_user_vmap fndecl 4 15544 NULL nohasharray
++key_conf_hw_key_idx_read_fndecl_15544_fns key_conf_hw_key_idx_read fndecl 3 15544 &genwqe_user_vmap_fndecl_15544_fns
++il_dbgfs_channels_read_fndecl_15550_fns il_dbgfs_channels_read fndecl 3 15550 NULL
++num_sge_ib_send_wr_15565_fns num_sge ib_send_wr 0 15565 NULL
++_mv88e6xxx_port_fdb_dump_one_fndecl_15575_fns _mv88e6xxx_port_fdb_dump_one fndecl 3 15575 NULL
++raid_set_alloc_fndecl_15581_fns raid_set_alloc fndecl 3 15581 NULL
++SYSC_listxattr_fndecl_15587_fns SYSC_listxattr fndecl 3 15587 NULL
++mlx5e_create_rqt_fndecl_15591_fns mlx5e_create_rqt fndecl 2 15591 NULL
++gs_buf_alloc_fndecl_15608_fns gs_buf_alloc fndecl 2 15608 NULL
++udf_compute_nr_groups_fndecl_15617_fns udf_compute_nr_groups fndecl 0 15617 NULL
++num_edbs_asd_seq_data_15621_fns num_edbs asd_seq_data 0 15621 NULL
++count_preds_fndecl_15627_fns count_preds fndecl 0 15627 NULL
++i915_error_state_buf_init_fndecl_15630_fns i915_error_state_buf_init fndecl 3 15630 NULL
++netlbl_domhsh_init_fndecl_15635_fns netlbl_domhsh_init fndecl 1 15635 NULL
++num_active_peers_ath10k_15643_fns num_active_peers ath10k 0 15643 NULL
++btrfs_test_extent_io_fndecl_15701_fns btrfs_test_extent_io fndecl 1 15701 NULL
++_iwl_dbgfs_tof_responder_params_write_fndecl_15710_fns _iwl_dbgfs_tof_responder_params_write fndecl 3 15710 NULL
++btrfs_chunk_sub_stripes_fndecl_15711_fns btrfs_chunk_sub_stripes fndecl 0 15711 NULL
++ib_umem_page_count_fndecl_15714_fns ib_umem_page_count fndecl 0 15714 NULL
++new_tape_buffer_fndecl_15721_fns new_tape_buffer fndecl 3 15721 NULL
++datafab_write_data_fndecl_15723_fns datafab_write_data fndecl 4 15723 NULL
++btrfs_create_qgroup_fndecl_15772_fns btrfs_create_qgroup fndecl 3 15772 NULL
++kgdb_hex2mem_fndecl_15776_fns kgdb_hex2mem fndecl 3 15776 NULL
++simple_attr_read_fndecl_15793_fns simple_attr_read fndecl 3 15793 NULL
++datablob_hmac_verify_fndecl_15809_fns datablob_hmac_verify fndecl 4 15809 NULL
++cache_read_fndecl_15813_fns cache_read fndecl 3 15813 NULL
++user_regset_copyout_fndecl_15823_fns user_regset_copyout fndecl 7 15823 NULL
++msg_print_ext_body_fndecl_15847_fns msg_print_ext_body fndecl 0 15847 NULL
++max_num_peers_ath10k_15853_fns max_num_peers ath10k 0 15853 NULL
++kvm_read_guest_virt_helper_fndecl_15863_fns kvm_read_guest_virt_helper fndecl 3-1 15863 NULL
++SYSC_kexec_load_fndecl_15874_fns SYSC_kexec_load fndecl 2 15874 NULL
++sel_read_mls_fndecl_15882_fns sel_read_mls fndecl 3 15882 NULL
++unix_mkname_fndecl_15883_fns unix_mkname fndecl 2-0 15883 NULL
++dump_align_fndecl_15890_fns dump_align fndecl 2 15890 NULL
++sn9c2028_read1_fndecl_15891_fns sn9c2028_read1 fndecl 0 15891 NULL
++num_fitmsg_context_skd_device_15897_fns num_fitmsg_context skd_device 0 15897 NULL
++cpia_usb_transferCmd_fndecl_15901_fns cpia_usb_transferCmd fndecl 0 15901 NULL
++dir_info_len_ceph_file_info_15905_fns dir_info_len ceph_file_info 0 15905 NULL
++command_setyuvtresh_fndecl_15933_fns command_setyuvtresh fndecl 0 15933 NULL
++v4l2_m2m_dqbuf_fndecl_15936_fns v4l2_m2m_dqbuf fndecl 0 15936 NULL
++rstatus_usblp_15945_fns rstatus usblp 0 15945 NULL
++hw_scan_ies_bufsize_ieee80211_local_15949_fns hw_scan_ies_bufsize ieee80211_local 0 15949 NULL
++dai_list_read_file_fndecl_15966_fns dai_list_read_file fndecl 3 15966 NULL
++mlxsw_sp_port_ets_set_fndecl_15981_fns mlxsw_sp_port_ets_set fndecl 0 15981 NULL
++nilfs_cpfile_get_blkoff_fndecl_15997_fns nilfs_cpfile_get_blkoff fndecl 2-0 15997 NULL
++gk20a_instobj_new_fndecl_16015_fns gk20a_instobj_new fndecl 2 16015 NULL
++num_stripes_map_lookup_16016_fns num_stripes map_lookup 0 16016 NULL
++snd_pcm_plugin_build_fndecl_16050_fns snd_pcm_plugin_build fndecl 5 16050 NULL
++pgsize_vardecl_pagetest_c_16065_fns pgsize vardecl_pagetest.c 0 16065 NULL
++ht_print_chan_fndecl_16071_fns ht_print_chan fndecl 0 16071 NULL
++snd_rawmidi_kernel_write_fndecl_16129_fns snd_rawmidi_kernel_write fndecl 3 16129 NULL
++fanout_set_data_ebpf_fndecl_16141_fns fanout_set_data_ebpf fndecl 3 16141 NULL
++reiserfs_commit_write_fndecl_16171_fns reiserfs_commit_write fndecl 4 16171 NULL
++ib_uverbs_alloc_pd_fndecl_16189_fns ib_uverbs_alloc_pd fndecl 4-5 16189 NULL
++osdname_len_osd_dev_info_16203_fns osdname_len osd_dev_info 0 16203 NULL
++sys_fgetxattr_fndecl_16221_fns sys_fgetxattr fndecl 4 16221 NULL
++num_tbps___thermal_zone_16249_fns num_tbps __thermal_zone 0 16249 NULL
++orangefs_debug_read_fndecl_16251_fns orangefs_debug_read fndecl 3 16251 NULL
++mon_stat_read_fndecl_16261_fns mon_stat_read fndecl 3 16261 NULL
++dvbdev_get_free_adapter_num_fndecl_16292_fns dvbdev_get_free_adapter_num fndecl 0 16292 NULL
++crypto_alloc_instance2_fndecl_16302_fns crypto_alloc_instance2 fndecl 3 16302 NULL
++jent_zalloc_fndecl_16331_fns jent_zalloc fndecl 1 16331 NULL
++l2tp_session_create_fndecl_16341_fns l2tp_session_create fndecl 1 16341 NULL
++page_offset_mlx5_srq_attr_16345_fns page_offset mlx5_srq_attr 0 16345 NULL
++help_fndecl_16375_fns help fndecl 5 16375 NULL nohasharray
++ath9k_debugfs_read_buf_fndecl_16375_fns ath9k_debugfs_read_buf fndecl 3 16375 &help_fndecl_16375_fns
++samsung_clk_init_fndecl_16382_fns samsung_clk_init fndecl 3 16382 NULL
++zd_mac_preinit_hw_fndecl_16386_fns zd_mac_preinit_hw fndecl 0 16386 NULL
++dsize_ip_set_16391_fns dsize ip_set 0 16391 NULL
++ip_options_get_alloc_fndecl_16395_fns ip_options_get_alloc fndecl 1 16395 NULL
++rt2x00debug_read_queue_stats_fndecl_16396_fns rt2x00debug_read_queue_stats fndecl 3 16396 NULL
++SYSC_setgroups_fndecl_16397_fns SYSC_setgroups fndecl 1 16397 NULL
++garp_request_join_fndecl_16444_fns garp_request_join fndecl 4 16444 NULL
++mtk_alloc_clk_data_fndecl_16481_fns mtk_alloc_clk_data fndecl 1 16481 NULL
++ttm_page_alloc_init_fndecl_16498_fns ttm_page_alloc_init fndecl 2 16498 NULL
++cfs_cpt_num_estimate_fndecl_16512_fns cfs_cpt_num_estimate fndecl 0 16512 NULL
++ath10k_read_htt_stats_mask_fndecl_16534_fns ath10k_read_htt_stats_mask fndecl 3 16534 NULL
++smk_read_mapped_fndecl_16537_fns smk_read_mapped fndecl 3 16537 NULL
++groups_alloc_fndecl_16557_fns groups_alloc fndecl 1 16557 NULL nohasharray
++create_dir_fndecl_16557_fns create_dir fndecl 0 16557 &groups_alloc_fndecl_16557_fns
++__mei_cl_send_fndecl_16571_fns __mei_cl_send fndecl 3 16571 NULL
++target_alloc_session_fndecl_16588_fns target_alloc_session fndecl 2-3 16588 NULL
++amdgpu_ttm_gtt_read_fndecl_16621_fns amdgpu_ttm_gtt_read fndecl 3 16621 NULL
++ceph_fsync_fndecl_16625_fns ceph_fsync fndecl 2-3 16625 NULL
++fault_inject_write_fndecl_16637_fns fault_inject_write fndecl 3 16637 NULL
++cons_read_buffer_16688_fns cons read_buffer 0 16688 NULL
++nvmet_get_log_page_len_fndecl_16692_fns nvmet_get_log_page_len fndecl 0 16692 NULL
++efx_ef10_pci_sriov_enable_fndecl_16694_fns efx_ef10_pci_sriov_enable fndecl 2 16694 NULL
++trace_insert_enum_map_file_fndecl_16702_fns trace_insert_enum_map_file fndecl 3 16702 NULL
++i2c1_debugfs_read_fndecl_16712_fns i2c1_debugfs_read fndecl 3 16712 NULL
++ll_sa_entry_alloc_fndecl_16721_fns ll_sa_entry_alloc fndecl 5 16721 NULL
++kimage_alloc_init_fndecl_16737_fns kimage_alloc_init fndecl 3 16737 NULL nohasharray
++rx_rate_rx_frames_per_rates_read_fndecl_16737_fns rx_rate_rx_frames_per_rates_read fndecl 3 16737 &kimage_alloc_init_fndecl_16737_fns
++devlink_alloc_fndecl_16742_fns devlink_alloc fndecl 2 16742 NULL nohasharray
++fault_disconnect_write_fndecl_16742_fns fault_disconnect_write fndecl 3 16742 &devlink_alloc_fndecl_16742_fns
++key_len_iw_encode_ext_16773_fns key_len iw_encode_ext 0 16773 NULL
++max_iu_len_srp_target_port_16784_fns max_iu_len srp_target_port 0 16784 NULL
++diva_xdi_read_fndecl_16814_fns diva_xdi_read fndecl 0 16814 NULL
++max_gen_ptrs_vardecl_net_namespace_c_16838_fns max_gen_ptrs vardecl_net_namespace.c 0 16838 NULL
++ieee80211_if_read_dot11MeshHWMPactivePathTimeout_fndecl_16859_fns ieee80211_if_read_dot11MeshHWMPactivePathTimeout fndecl 3 16859 NULL
++drm_property_create_blob_fndecl_16869_fns drm_property_create_blob fndecl 2 16869 NULL
++len_snd_fw_async_midi_port_16875_fns len snd_fw_async_midi_port 0 16875 NULL
++_ore_add_stripe_unit_fndecl_16884_fns _ore_add_stripe_unit fndecl 3-6 16884 NULL
++sl_change_mtu_fndecl_16887_fns sl_change_mtu fndecl 2 16887 NULL
++audmux_read_file_fndecl_16891_fns audmux_read_file fndecl 3 16891 NULL
++ncbflooders_vardecl_rcutorture_c_16899_fns ncbflooders vardecl_rcutorture.c 0 16899 NULL
++n_ai_urbs_usbduxsigma_private_16912_fns n_ai_urbs usbduxsigma_private 0 16912 NULL
++sys_mbind_fndecl_16933_fns sys_mbind fndecl 5 16933 NULL
++vidioc_dqbuf_fndecl_16948_fns vidioc_dqbuf fndecl 0 16948 NULL
++admin_mtu_ipoib_dev_priv_16960_fns admin_mtu ipoib_dev_priv 0 16960 NULL
++vcs_read_fndecl_16962_fns vcs_read fndecl 3 16962 NULL
++num_tx_queues_ixgbe_adapter_16981_fns num_tx_queues ixgbe_adapter 0 16981 NULL
++tt3650_ci_msg_locked_fndecl_16990_fns tt3650_ci_msg_locked fndecl 4 16990 NULL
++offset_ipw_tx_packet_17004_fns offset ipw_tx_packet 0 17004 NULL
++__iommu_dma_alloc_pages_fndecl_17015_fns __iommu_dma_alloc_pages fndecl 1 17015 NULL
++reiserfs_sync_file_fndecl_17045_fns reiserfs_sync_file fndecl 2-3 17045 NULL
++qla4xxx_post_ping_evt_work_fndecl_17049_fns qla4xxx_post_ping_evt_work fndecl 4 17049 NULL
++spi_write_then_read_fndecl_17050_fns spi_write_then_read fndecl 5-3 17050 NULL
++command_setcompressiontarget_fndecl_17055_fns command_setcompressiontarget fndecl 0 17055 NULL
++venus_lookup_fndecl_17066_fns venus_lookup fndecl 4 17066 NULL
++packet_len_sdma_txreq_17082_fns packet_len sdma_txreq 0 17082 NULL
++tx_tx_stop_read_fndecl_17096_fns tx_tx_stop_read fndecl 3 17096 NULL
++cx18_queue_get_mdl_fndecl_17103_fns cx18_queue_get_mdl fndecl 3 17103 NULL
++dlm_user_request_fndecl_17104_fns dlm_user_request fndecl 6 17104 NULL
++minors_gendisk_17113_fns minors gendisk 0 17113 NULL
++in___kfifo_17131_fns in __kfifo 0 17131 NULL
++lnet_ipif_enumerate_fndecl_17135_fns lnet_ipif_enumerate fndecl 0 17135 NULL
++acpi_hw_validate_register_fndecl_17141_fns acpi_hw_validate_register fndecl 2 17141 NULL
++blockSize_ms_lib_ctrl_17144_fns blockSize ms_lib_ctrl 0 17144 NULL
++len_read_buffer_17166_fns len read_buffer 0 17166 NULL
++acpi_ex_allocate_name_string_fndecl_17174_fns acpi_ex_allocate_name_string fndecl 1-2 17174 NULL
++pci_raw_set_power_state_fndecl_17186_fns pci_raw_set_power_state fndecl 0 17186 NULL
++ath10k_write_peer_stats_fndecl_17195_fns ath10k_write_peer_stats fndecl 3 17195 NULL
++iwl_dbgfs_bt_cmd_read_fndecl_17225_fns iwl_dbgfs_bt_cmd_read fndecl 3 17225 NULL
++vxge_device_register_fndecl_17243_fns vxge_device_register fndecl 4 17243 NULL
++diva_os_copy_from_user_fndecl_17251_fns diva_os_copy_from_user fndecl 4 17251 NULL
++htc_proc_trailer_fndecl_17252_fns htc_proc_trailer fndecl 3 17252 NULL
++subpgsize_vardecl_subpagetest_c_17265_fns subpgsize vardecl_subpagetest.c 0 17265 NULL
++dfs_global_file_read_fndecl_17272_fns dfs_global_file_read fndecl 3 17272 NULL
++bnx2_nvram_write_fndecl_17277_fns bnx2_nvram_write fndecl 2-4 17277 NULL
++seq_buf_alloc_fndecl_17287_fns seq_buf_alloc fndecl 1 17287 NULL
++rtl8821ae_c2h_packet_handler_fndecl_17297_fns rtl8821ae_c2h_packet_handler fndecl 3 17297 NULL
++cfs_trace_dump_debug_buffer_usrstr_fndecl_17318_fns cfs_trace_dump_debug_buffer_usrstr fndecl 2 17318 NULL
++dvb_dmxdev_read_sec_fndecl_17351_fns dvb_dmxdev_read_sec fndecl 4 17351 NULL
++audio_buf_size_f_uac1_opts_17353_fns audio_buf_size f_uac1_opts 0 17353 NULL
++pebs_buffer_size_x86_pmu_17362_fns pebs_buffer_size x86_pmu 0 17362 NULL
++nilfs_sufile_mark_dirty_fndecl_17370_fns nilfs_sufile_mark_dirty fndecl 2 17370 NULL
++scatt_size_eata_info_17383_fns scatt_size eata_info 0 17383 NULL
++f_hidg_write_fndecl_17391_fns f_hidg_write fndecl 3 17391 NULL
++posix_acl_fix_xattr_userns_fndecl_17415_fns posix_acl_fix_xattr_userns fndecl 4 17415 NULL
++ufx_setup_modes_fndecl_17419_fns ufx_setup_modes fndecl 4 17419 NULL
++keys_jset_17429_fns keys jset 0 17429 NULL
++btrfs_cmp_data_prepare_fndecl_17436_fns btrfs_cmp_data_prepare fndecl 5 17436 NULL
++gsmld_receive_buf_fndecl_17440_fns gsmld_receive_buf fndecl 4 17440 NULL
++__alloc_bootmem_node_nopanic_fndecl_17459_fns __alloc_bootmem_node_nopanic fndecl 2 17459 NULL
++cipso_v4_map_lvl_hton_fndecl_17481_fns cipso_v4_map_lvl_hton fndecl 0 17481 NULL
++sddr09_write_inplace_fndecl_17484_fns sddr09_write_inplace fndecl 6 17484 NULL
++brcmf_fil_iovar_data_set_fndecl_17512_fns brcmf_fil_iovar_data_set fndecl 4 17512 NULL
++dvb_dmxdev_init_fndecl_17523_fns dvb_dmxdev_init fndecl 0 17523 NULL
++mei_read_fndecl_17528_fns mei_read fndecl 3 17528 NULL
++offset_icmp_bxm_17531_fns offset icmp_bxm 0 17531 NULL
++rndis_set_oid_fndecl_17536_fns rndis_set_oid fndecl 4 17536 NULL
++fb_alloc_cmap_fndecl_17545_fns fb_alloc_cmap fndecl 2 17545 NULL
++cdm_element_count_vardecl_17565_fns cdm_element_count vardecl 0 17565 NULL
++stack_size_ahd_softc_17574_fns stack_size ahd_softc 0 17574 NULL
++sita_init_fndecl_17588_fns sita_init fndecl 2-1 17588 NULL
++_iwl_dbgfs_indirection_tbl_write_fndecl_17597_fns _iwl_dbgfs_indirection_tbl_write fndecl 3 17597 NULL
++drbg_init_hash_kernel_fndecl_17617_fns drbg_init_hash_kernel fndecl 0 17617 NULL
++dvb_dmx_init_fndecl_17652_fns dvb_dmx_init fndecl 0 17652 NULL
++perf_callchain_entry__sizeof_fndecl_17653_fns perf_callchain_entry__sizeof fndecl 0 17653 NULL
++btrfs_dedupe_file_range_fndecl_17658_fns btrfs_dedupe_file_range fndecl 3 17658 NULL
++submit_queues_vardecl_scsi_debug_c_17671_fns submit_queues vardecl_scsi_debug.c 0 17671 NULL
++wl1251_cmd_template_set_fndecl_17679_fns wl1251_cmd_template_set fndecl 4 17679 NULL
++iwl_dbgfs_tof_range_request_read_fndecl_17682_fns iwl_dbgfs_tof_range_request_read fndecl 3 17682 NULL
++snd_efw_command_get_phys_meters_fndecl_17725_fns snd_efw_command_get_phys_meters fndecl 3 17725 NULL
++nilfs_cpfile_delete_checkpoint_fndecl_17728_fns nilfs_cpfile_delete_checkpoint fndecl 2 17728 NULL
++mqueue_read_file_fndecl_17735_fns mqueue_read_file fndecl 3 17735 NULL
++of_gpio_count_fndecl_17773_fns of_gpio_count fndecl 0 17773 NULL
++fbcon_prepare_logo_fndecl_17781_fns fbcon_prepare_logo fndecl 5 17781 NULL
++posix_acl_fix_xattr_to_user_fndecl_17816_fns posix_acl_fix_xattr_to_user fndecl 2 17816 NULL
++snd_hda_override_conn_list_fndecl_17817_fns snd_hda_override_conn_list fndecl 3 17817 NULL nohasharray
++xenbus_file_write_fndecl_17817_fns xenbus_file_write fndecl 3 17817 &snd_hda_override_conn_list_fndecl_17817_fns
++tx_tx_start_null_frame_read_fndecl_17818_fns tx_tx_start_null_frame_read fndecl 3 17818 NULL
++qlcnic_sriov_alloc_bc_msg_fndecl_17846_fns qlcnic_sriov_alloc_bc_msg fndecl 2 17846 NULL
++preferred_minor_md_rdev_17857_fns preferred_minor md_rdev 0 17857 NULL
++mei_dbgfs_read_devstate_fndecl_17859_fns mei_dbgfs_read_devstate fndecl 3 17859 NULL
++host_int_get_assoc_res_info_fndecl_17869_fns host_int_get_assoc_res_info fndecl 3 17869 NULL
++fuse_get_req_for_background_fndecl_17874_fns fuse_get_req_for_background fndecl 2 17874 NULL
++debugfs_attr_read_fndecl_17883_fns debugfs_attr_read fndecl 3 17883 NULL
++netdev_queue_add_kobject_fndecl_17908_fns netdev_queue_add_kobject fndecl 0 17908 NULL
++arch_gnttab_valloc_fndecl_17911_fns arch_gnttab_valloc fndecl 2 17911 NULL
++__kfifo_dma_in_finish_r_fndecl_17938_fns __kfifo_dma_in_finish_r fndecl 2-3 17938 NULL
++__vxge_hw_mempool_create_fndecl_17944_fns __vxge_hw_mempool_create fndecl 2 17944 NULL
++cache_do_downcall_fndecl_17949_fns cache_do_downcall fndecl 3 17949 NULL
++videobuf_dma_init_kernel_fndecl_17952_fns videobuf_dma_init_kernel fndecl 3 17952 NULL
++n_special_skd_device_17960_fns n_special skd_device 0 17960 NULL
++qsfp_cks_fndecl_17970_fns qsfp_cks fndecl 2-0 17970 NULL
++nilfs_set_last_segment_fndecl_17983_fns nilfs_set_last_segment fndecl 4 17983 NULL
++count_mlxsw_pci_queue_17987_fns count mlxsw_pci_queue 0 17987 NULL
++channels_tiadc_device_17992_fns channels tiadc_device 0 17992 NULL
++cipso_v4_gentag_enum_fndecl_17997_fns cipso_v4_gentag_enum fndecl 0 17997 NULL
++order_per_bit_cma_18000_fns order_per_bit cma 0 18000 NULL
++size_firmware_buf_18003_fns size firmware_buf 0 18003 NULL
++request_key_async_fndecl_18013_fns request_key_async fndecl 4 18013 NULL
++raid56_parity_recover_fndecl_18019_fns raid56_parity_recover fndecl 4 18019 NULL
++condc_tomoyo_condition_18025_fns condc tomoyo_condition 0 18025 NULL
++ceph_kvmalloc_fndecl_18026_fns ceph_kvmalloc fndecl 1 18026 NULL
++fip_dl_len_fip_header_18032_fns fip_dl_len fip_header 0 18032 NULL
++copy_items_fndecl_18039_fns copy_items fndecl 7 18039 NULL
++ld_usb_write_fndecl_18045_fns ld_usb_write fndecl 3 18045 NULL
++sll_halen_sockaddr_ll_18063_fns sll_halen sockaddr_ll 0 18063 NULL
++beacon_interval_read_fndecl_18080_fns beacon_interval_read fndecl 3 18080 NULL
++add_wpa_key_fndecl_18083_fns add_wpa_key fndecl 3 18083 NULL
++inode2sd_fndecl_18094_fns inode2sd fndecl 3 18094 NULL
++n_pages_tracing_map_array_18100_fns n_pages tracing_map_array 0 18100 NULL
++thermal_irq_thr_high_read_fndecl_18102_fns thermal_irq_thr_high_read fndecl 3 18102 NULL
++readcount_usblp_18112_fns readcount usblp 0 18112 NULL nohasharray
++do_async_mmap_readahead_fndecl_18112_fns do_async_mmap_readahead fndecl 5 18112 &readcount_usblp_18112_fns
++ring_prod_per_user_data_18125_fns ring_prod per_user_data 0 18125 NULL
++pipeline_enc_rx_stat_fifo_int_read_fndecl_18128_fns pipeline_enc_rx_stat_fifo_int_read fndecl 3 18128 NULL
++acpi_rs_get_resource_source_fndecl_18168_fns acpi_rs_get_resource_source fndecl 0 18168 NULL
++qlcnic_enable_msix_fndecl_18171_fns qlcnic_enable_msix fndecl 2 18171 NULL
++ibmpex_query_sensor_count_fndecl_18214_fns ibmpex_query_sensor_count fndecl 0 18214 NULL
++check_clk_sync_fndecl_18222_fns check_clk_sync fndecl 2 18222 NULL
++xen_xlate_map_ballooned_pages_fndecl_18227_fns xen_xlate_map_ballooned_pages fndecl 3 18227 NULL
++rx_buf_size_bnx2_18228_fns rx_buf_size bnx2 0 18228 NULL
++ps_pspoll_max_apturn_read_fndecl_18232_fns ps_pspoll_max_apturn_read fndecl 3 18232 NULL
++btrfs_lookup_csums_range_fndecl_18235_fns btrfs_lookup_csums_range fndecl 2-3 18235 NULL
++posix_acl_xattr_count_fndecl_18262_fns posix_acl_xattr_count fndecl 1-0 18262 NULL
++video_proc_write_fndecl_18263_fns video_proc_write fndecl 3 18263 NULL
++rds_rdma_pages_fndecl_18268_fns rds_rdma_pages fndecl 0 18268 NULL
++add_pfn_range_mapped_fndecl_18307_fns add_pfn_range_mapped fndecl 1 18307 NULL
++i2c_read_fndecl_18308_fns i2c_read fndecl 0-6 18308 NULL
++ieee80211_if_read_fndecl_18322_fns ieee80211_if_read fndecl 3 18322 NULL
++iwl_dbgfs_channels_read_fndecl_18323_fns iwl_dbgfs_channels_read fndecl 3 18323 NULL nohasharray
++rpipes_wahc_18323_fns rpipes wahc 0 18323 &iwl_dbgfs_channels_read_fndecl_18323_fns
++tx_tx_done_data_read_fndecl_18332_fns tx_tx_done_data_read fndecl 3 18332 NULL
++blk_alloc_flush_queue_fndecl_18340_fns blk_alloc_flush_queue fndecl 3 18340 NULL
++calc_pages_for_fndecl_18341_fns calc_pages_for fndecl 0-2-1 18341 NULL
++sg_split_fndecl_18342_fns sg_split fndecl 4 18342 NULL
++mon_bin_read_fndecl_18346_fns mon_bin_read fndecl 3 18346 NULL
++nsm_get_handle_fndecl_18347_fns nsm_get_handle fndecl 5 18347 NULL
++snd_cs4281_BA0_read_fndecl_18348_fns snd_cs4281_BA0_read fndecl 5 18348 NULL
++proc_sessionid_read_fndecl_18412_fns proc_sessionid_read fndecl 3 18412 NULL
++raw_seticmpfilter_fndecl_18427_fns raw_seticmpfilter fndecl 3 18427 NULL
++dlmfs_file_write_fndecl_18431_fns dlmfs_file_write fndecl 3 18431 NULL
++error_bar_retry_read_fndecl_18460_fns error_bar_retry_read fndecl 3 18460 NULL
++cpg_div6_register_fndecl_18462_fns cpg_div6_register fndecl 2 18462 NULL
++mddev_find_fndecl_18492_fns mddev_find fndecl 1 18492 NULL
++xfs_efd_init_fndecl_18500_fns xfs_efd_init fndecl 3 18500 NULL
++wil_pmc_read_fndecl_18503_fns wil_pmc_read fndecl 3 18503 NULL
++kernfs_fop_write_fndecl_18508_fns kernfs_fop_write fndecl 3 18508 NULL
++tty_write_fndecl_18533_fns tty_write fndecl 3 18533 NULL
++tomoyo_update_domain_fndecl_18537_fns tomoyo_update_domain fndecl 2 18537 NULL
++pci_enable_msix_exact_fndecl_18553_fns pci_enable_msix_exact fndecl 0 18553 NULL nohasharray
++kvm_hv_set_msr_pw_fndecl_18553_fns kvm_hv_set_msr_pw fndecl 3 18553 &pci_enable_msix_exact_fndecl_18553_fns
++cifs_security_flags_proc_write_fndecl_18559_fns cifs_security_flags_proc_write fndecl 3 18559 NULL
++__max_nr_grant_frames_fndecl_18578_fns __max_nr_grant_frames fndecl 0 18578 NULL
++spidev_message_fndecl_18589_fns spidev_message fndecl 3 18589 NULL
++le_readq_fndecl_18598_fns le_readq fndecl 0 18598 NULL
++_wil_cfg80211_merge_extra_ies_fndecl_18611_fns _wil_cfg80211_merge_extra_ies fndecl 2-4 18611 NULL
++fir16_create_fndecl_18645_fns fir16_create fndecl 3 18645 NULL
++SYSC_init_module_fndecl_18665_fns SYSC_init_module fndecl 2 18665 NULL
++ies_len_scan_attr_18673_fns ies_len scan_attr 0 18673 NULL
++used_chaoskey_18682_fns used chaoskey 0 18682 NULL
++vid_switchdev_obj_port_fdb_18697_fns vid switchdev_obj_port_fdb 0 18697 NULL
++ascot2e_i2c_debug_fndecl_18708_fns ascot2e_i2c_debug fndecl 5 18708 NULL
++iwl_dbgfs_status_read_fndecl_18720_fns iwl_dbgfs_status_read fndecl 3 18720 NULL
++__az6007_write_fndecl_18721_fns __az6007_write fndecl 6 18721 NULL
++acpi_pcc_get_sqty_fndecl_18731_fns acpi_pcc_get_sqty fndecl 0 18731 NULL
++pipe_set_size_fndecl_18759_fns pipe_set_size fndecl 2 18759 NULL
++ppp_cp_parse_cr_fndecl_18765_fns ppp_cp_parse_cr fndecl 4 18765 NULL
++dwc2_hcd_urb_alloc_fndecl_18802_fns dwc2_hcd_urb_alloc fndecl 2 18802 NULL
++rd_length_gfs2_rgrpd_18804_fns rd_length gfs2_rgrpd 0 18804 NULL
++ath6kl_debug_roam_tbl_event_fndecl_18811_fns ath6kl_debug_roam_tbl_event fndecl 3 18811 NULL
++gfn_to_hva_memslot_fndecl_18818_fns gfn_to_hva_memslot fndecl 2 18818 NULL
++dvb_ringbuffer_write_user_fndecl_18821_fns dvb_ringbuffer_write_user fndecl 3 18821 NULL
++DriverQueueDepth_DAC960_Controller_18839_fns DriverQueueDepth DAC960_Controller 0 18839 NULL
++private_data_len_ib_cm_req_param_18848_fns private_data_len ib_cm_req_param 0 18848 NULL
++length_acpi_resource_18863_fns length acpi_resource 0 18863 NULL
++uinput_ioctl_fndecl_18893_fns uinput_ioctl fndecl 2 18893 NULL
++sbc_get_write_same_sectors_fndecl_18902_fns sbc_get_write_same_sectors fndecl 0 18902 NULL
++pwr_elp_enter_read_fndecl_18911_fns pwr_elp_enter_read fndecl 3 18911 NULL
++ps_pspoll_utilization_read_fndecl_18914_fns ps_pspoll_utilization_read fndecl 3 18914 NULL
++kvm_pin_pages_fndecl_18922_fns kvm_pin_pages fndecl 2 18922 NULL
++cciss_allocate_sg_chain_blocks_fndecl_18923_fns cciss_allocate_sg_chain_blocks fndecl 3 18923 NULL
++spidev_get_ioc_message_fndecl_18931_fns spidev_get_ioc_message fndecl 1 18931 NULL
++i2c_hack_cx25840_fndecl_18948_fns i2c_hack_cx25840 fndecl 4-6 18948 NULL nohasharray
++uhci_debug_read_fndecl_18948_fns uhci_debug_read fndecl 3 18948 &i2c_hack_cx25840_fndecl_18948_fns
++mlx4_en_create_tx_ring_fndecl_18977_fns mlx4_en_create_tx_ring fndecl 3 18977 NULL
++edac_device_alloc_ctl_info_fndecl_18982_fns edac_device_alloc_ctl_info fndecl 1 18982 NULL
++p9_get_mapped_pages_fndecl_18988_fns p9_get_mapped_pages fndecl 4 18988 NULL nohasharray
++ebcnt_vardecl_subpagetest_c_18988_fns ebcnt vardecl_subpagetest.c 0 18988 &p9_get_mapped_pages_fndecl_18988_fns
++lbs_highsnr_read_fndecl_19000_fns lbs_highsnr_read fndecl 3 19000 NULL
++tipc_subseq_alloc_fndecl_19030_fns tipc_subseq_alloc fndecl 1 19030 NULL
++ll_statahead_one_fndecl_19033_fns ll_statahead_one fndecl 3 19033 NULL
++mei_cl_read_start_fndecl_19077_fns mei_cl_read_start fndecl 2 19077 NULL
++btrfs_qgroup_inherit_fndecl_19103_fns btrfs_qgroup_inherit fndecl 4 19103 NULL
++sctp_setsockopt_connectx_fndecl_19114_fns sctp_setsockopt_connectx fndecl 3 19114 NULL
++alloc_msg_fndecl_19115_fns alloc_msg fndecl 1 19115 NULL
++rx_keycache_size_p54_common_19128_fns rx_keycache_size p54_common 0 19128 NULL
++start_vivitar_cam_fndecl_19144_fns start_vivitar_cam fndecl 0 19144 NULL
++ipmi_addr_length_fndecl_19149_fns ipmi_addr_length fndecl 0 19149 NULL
++alloc_indirect_fndecl_19156_fns alloc_indirect fndecl 2 19156 NULL
++len_ntb_queue_entry_19166_fns len ntb_queue_entry 0 19166 NULL nohasharray
++ms_nvme_ns_19166_fns ms nvme_ns 0 19166 &len_ntb_queue_entry_19166_fns
++max_pages_per_mr_srp_device_19171_fns max_pages_per_mr srp_device 0 19171 NULL
++lprocfs_alloc_stats_fndecl_19181_fns lprocfs_alloc_stats fndecl 1 19181 NULL
++dfs_global_file_write_fndecl_19187_fns dfs_global_file_write fndecl 3 19187 NULL
++ext4_xattr_get_fndecl_19214_fns ext4_xattr_get fndecl 0 19214 NULL
++SYSC_fsetxattr_fndecl_19220_fns SYSC_fsetxattr fndecl 4 19220 NULL
++cmds_vardecl_ambassador_c_19230_fns cmds vardecl_ambassador.c 0 19230 NULL
++get_arg_fndecl_19245_fns get_arg fndecl 3 19245 NULL
++sb_segnum_nilfs_segment_buffer_19276_fns sb_segnum nilfs_segment_buffer 0 19276 NULL
++subbuf_read_actor_fndecl_19295_fns subbuf_read_actor fndecl 3 19295 NULL
++security_kernel_post_read_file_fndecl_19301_fns security_kernel_post_read_file fndecl 3 19301 NULL
++sys_sched_getattr_fndecl_19313_fns sys_sched_getattr fndecl 3 19313 NULL
++__vxge_hw_blockpool_malloc_fndecl_19337_fns __vxge_hw_blockpool_malloc fndecl 2 19337 NULL
++data_sge_offset_mpt3_ioctl_command_19355_fns data_sge_offset mpt3_ioctl_command 0 19355 NULL
++sctp_setsockopt_autoclose_fndecl_19356_fns sctp_setsockopt_autoclose fndecl 3 19356 NULL nohasharray
++qlcnic_83xx_sysfs_flash_read_handler_fndecl_19356_fns qlcnic_83xx_sysfs_flash_read_handler fndecl 6 19356 &sctp_setsockopt_autoclose_fndecl_19356_fns
++nvme_trans_bdev_char_page_fndecl_19382_fns nvme_trans_bdev_char_page fndecl 3 19382 NULL
++ControllerQueueDepth_DAC960_Controller_19386_fns ControllerQueueDepth DAC960_Controller 0 19386 NULL
++rx_filter_max_arp_queue_dep_read_fndecl_19400_fns rx_filter_max_arp_queue_dep_read fndecl 3 19400 NULL
++setup_req_fndecl_19403_fns setup_req fndecl 3 19403 NULL
++_iwl_dbgfs_cont_recording_write_fndecl_19421_fns _iwl_dbgfs_cont_recording_write fndecl 3 19421 NULL
++sn9c2028_long_command_fndecl_19445_fns sn9c2028_long_command fndecl 0 19445 NULL
++compat_sys_move_pages_fndecl_19446_fns compat_sys_move_pages fndecl 2 19446 NULL
++sys_setdomainname_fndecl_19462_fns sys_setdomainname fndecl 2 19462 NULL
++reg_read_fndecl_19498_fns reg_read fndecl 0 19498 NULL
++access_process_vm_fndecl_19503_fns access_process_vm fndecl 0 19503 NULL nohasharray
++cxacru_cm_get_array_fndecl_19503_fns cxacru_cm_get_array fndecl 4 19503 &access_process_vm_fndecl_19503_fns
++ecryptfs_write_tag_70_packet_fndecl_19510_fns ecryptfs_write_tag_70_packet fndecl 6 19510 NULL
++do_pages_stat_fndecl_19526_fns do_pages_stat fndecl 2 19526 NULL
++netdev_register_kobject_fndecl_19535_fns netdev_register_kobject fndecl 0 19535 NULL nohasharray
++d40_sg_2_dmalen_fndecl_19535_fns d40_sg_2_dmalen fndecl 3-4-0 19535 &netdev_register_kobject_fndecl_19535_fns
++rtw_android_get_rssi_fndecl_19542_fns rtw_android_get_rssi fndecl 0 19542 NULL
++response_length_mlx5_ib_query_device_resp_19546_fns response_length mlx5_ib_query_device_resp 0 19546 NULL
++at76_set_card_command_fndecl_19556_fns at76_set_card_command fndecl 4 19556 NULL
++buf_size_pxa3xx_nand_info_19573_fns buf_size pxa3xx_nand_info 0 19573 NULL
++snd_seq_expand_var_event_fndecl_19602_fns snd_seq_expand_var_event fndecl 0 19602 NULL
++vmbus_establish_gpadl_fndecl_19612_fns vmbus_establish_gpadl fndecl 3 19612 NULL
++__gfn_to_pfn_memslot_fndecl_19617_fns __gfn_to_pfn_memslot fndecl 2 19617 NULL
++sys_llistxattr_fndecl_19623_fns sys_llistxattr fndecl 3 19623 NULL
++get_rq_pas_size_fndecl_19651_fns get_rq_pas_size fndecl 0 19651 NULL
++thermal_false_irq_read_fndecl_19654_fns thermal_false_irq_read fndecl 3 19654 NULL
++btrfs_file_extent_inline_item_len_fndecl_19660_fns btrfs_file_extent_inline_item_len fndecl 0 19660 NULL
++fsl_edma_prep_slave_sg_fndecl_19672_fns fsl_edma_prep_slave_sg fndecl 3 19672 NULL
++bch_alloc_fndecl_19682_fns bch_alloc fndecl 1 19682 NULL
++ath10k_dbg_sta_write_delba_fndecl_19689_fns ath10k_dbg_sta_write_delba fndecl 3 19689 NULL
++st_fixed_buffer_size_vardecl_st_c_19699_fns st_fixed_buffer_size vardecl_st.c 0 19699 NULL
++xfs_buf_get_maps_fndecl_19702_fns xfs_buf_get_maps fndecl 2 19702 NULL
++acpi_read_fast_fndecl_19709_fns acpi_read_fast fndecl 3-2 19709 NULL
++msc_win_to_user_fndecl_19728_fns msc_win_to_user fndecl 3 19728 NULL
++mps_trc_write_fndecl_19736_fns mps_trc_write fndecl 3 19736 NULL
++max_active_conns_bnx2i_hba_19740_fns max_active_conns bnx2i_hba 0 19740 NULL
++bytesperline_v4l2_pix_format_19741_fns bytesperline v4l2_pix_format 0 19741 NULL
++mpt_raid_phys_disk_get_num_paths_fndecl_19752_fns mpt_raid_phys_disk_get_num_paths fndecl 0 19752 NULL
++pvscsi_get_max_targets_fndecl_19802_fns pvscsi_get_max_targets fndecl 0 19802 NULL
++size_vring_19817_fns size vring 0 19817 NULL
++ip_send_unicast_reply_fndecl_19820_fns ip_send_unicast_reply fndecl 7 19820 NULL
++__nfs4_get_acl_uncached_fndecl_19830_fns __nfs4_get_acl_uncached fndecl 3 19830 NULL
++rpos_cm4000_dev_19844_fns rpos cm4000_dev 0 19844 NULL
++ath6kl_force_roam_write_fndecl_19881_fns ath6kl_force_roam_write fndecl 3 19881 NULL
++goldfish_audio_write_fndecl_19887_fns goldfish_audio_write fndecl 3 19887 NULL
++count_strings_fndecl_19912_fns count_strings fndecl 0 19912 NULL
++get_connectors_for_crtc_fndecl_19920_fns get_connectors_for_crtc fndecl 0 19920 NULL
++brcmu_dbg_hex_dump_fndecl_19925_fns brcmu_dbg_hex_dump fndecl 2 19925 NULL
++__usbnet_read_cmd_fndecl_19928_fns __usbnet_read_cmd fndecl 7 19928 NULL
++dvb_ringbuffer_pkt_read_user_fndecl_19932_fns dvb_ringbuffer_pkt_read_user fndecl 3-2-5 19932 NULL
++ima_eventdigest_init_common_fndecl_19937_fns ima_eventdigest_init_common fndecl 2 19937 NULL
++max_buckets_crush_map_19942_fns max_buckets crush_map 0 19942 NULL
++check_crc_fndecl_19956_fns check_crc fndecl 2 19956 NULL
++snd_rawmidi_kernel_read_fndecl_19963_fns snd_rawmidi_kernel_read fndecl 3 19963 NULL
++iwl_dbgfs_ctdp_budget_read_fndecl_19964_fns iwl_dbgfs_ctdp_budget_read fndecl 3 19964 NULL
++vga_arb_read_fndecl_19973_fns vga_arb_read fndecl 3 19973 NULL
++paravirt_read_msr_fndecl_19974_fns paravirt_read_msr fndecl 0 19974 NULL
++le_max_key_size_read_fndecl_19975_fns le_max_key_size_read fndecl 3 19975 NULL
++f2fs_insert_range_fndecl_19990_fns f2fs_insert_range fndecl 2-3 19990 NULL
++hid_register_field_fndecl_19993_fns hid_register_field fndecl 2-3 19993 NULL
++of_get_nand_ecc_step_size_fndecl_20001_fns of_get_nand_ecc_step_size fndecl 0 20001 NULL
++tx_nr_rings_per_tc_bnxt_20008_fns tx_nr_rings_per_tc bnxt 0 20008 NULL
++ocrdma_alloc_lkey_fndecl_20045_fns ocrdma_alloc_lkey fndecl 5 20045 NULL
++prctl_set_auxv_fndecl_20068_fns prctl_set_auxv fndecl 3 20068 NULL
++fb_deferred_io_fsync_fndecl_20083_fns fb_deferred_io_fsync fndecl 2-3 20083 NULL
++compat_rawv6_setsockopt_fndecl_20084_fns compat_rawv6_setsockopt fndecl 5 20084 NULL
++ath10k_read_chip_id_fndecl_20090_fns ath10k_read_chip_id fndecl 3 20090 NULL
++do_mincore_fndecl_20105_fns do_mincore fndecl 0-1-2 20105 NULL
++snd_mixart_BA1_read_fndecl_20169_fns snd_mixart_BA1_read fndecl 5 20169 NULL
++__kmalloc_track_caller_fndecl_20188_fns __kmalloc_track_caller fndecl 1 20188 NULL
++num_counters_vardecl_oprofile_perf_c_20189_fns num_counters vardecl_oprofile_perf.c 0 20189 NULL
++qp_attach_mbox_size_fndecl_20191_fns qp_attach_mbox_size fndecl 0 20191 NULL
++max_frame_size__mgslpc_info_20204_fns max_frame_size _mgslpc_info 0 20204 NULL
++sbq_len_rx_ring_20205_fns sbq_len rx_ring 0 20205 NULL
++i40e_dbg_netdev_ops_write_fndecl_20206_fns i40e_dbg_netdev_ops_write fndecl 3 20206 NULL
++kfifo_copy_from_user_fndecl_20208_fns kfifo_copy_from_user fndecl 0-4-3 20208 NULL
++sound_write_fndecl_20221_fns sound_write fndecl 3 20221 NULL
++use_sg_osst_buffer_20225_fns use_sg osst_buffer 0 20225 NULL
++iwl_dbgfs_tx_queue_read_fndecl_20232_fns iwl_dbgfs_tx_queue_read fndecl 3 20232 NULL
++ll_rw_extents_stats_seq_write_fndecl_20234_fns ll_rw_extents_stats_seq_write fndecl 3 20234 NULL
++rx_agg_bmap_size_bnxt_rx_ring_info_20244_fns rx_agg_bmap_size bnxt_rx_ring_info 0 20244 NULL
++arm_setup_iommu_dma_ops_fndecl_20272_fns arm_setup_iommu_dma_ops fndecl 3 20272 NULL
++kone_receive_fndecl_20289_fns kone_receive fndecl 4 20289 NULL
++register_queue_kobjects_fndecl_20291_fns register_queue_kobjects fndecl 0 20291 NULL
++round_pipe_size_fndecl_20302_fns round_pipe_size fndecl 0 20302 NULL
++cx18_read_pos_fndecl_20312_fns cx18_read_pos fndecl 3 20312 NULL
++wilc_spi_rx_fndecl_20314_fns wilc_spi_rx fndecl 3 20314 NULL
++short_retry_limit_read_fndecl_20316_fns short_retry_limit_read fndecl 3 20316 NULL
++ati_create_gatt_pages_fndecl_20321_fns ati_create_gatt_pages fndecl 1 20321 NULL
++i_ecryptfs_parse_tag_70_packet_silly_stack_20325_fns i ecryptfs_parse_tag_70_packet_silly_stack 0 20325 NULL
++cxgbi_alloc_big_mem_fndecl_20336_fns cxgbi_alloc_big_mem fndecl 1 20336 NULL
++ll_rw_offset_stats_seq_write_fndecl_20371_fns ll_rw_offset_stats_seq_write fndecl 3 20371 NULL
++drm_fb_helper_sys_read_fndecl_20376_fns drm_fb_helper_sys_read fndecl 3 20376 NULL
++periodic_size_fotg210_hcd_20395_fns periodic_size fotg210_hcd 0 20395 NULL
++pwr_rcvd_bcns_cnt_read_fndecl_20405_fns pwr_rcvd_bcns_cnt_read fndecl 3 20405 NULL
++diversity_total_num_of_toggles_read_fndecl_20407_fns diversity_total_num_of_toggles_read fndecl 3 20407 NULL
++ncp__vol2io_fndecl_20439_fns ncp__vol2io fndecl 5 20439 NULL
++error_elp_while_rx_exch_read_fndecl_20460_fns error_elp_while_rx_exch_read fndecl 3 20460 NULL
++key_tx_spec_read_fndecl_20461_fns key_tx_spec_read fndecl 3 20461 NULL
++gsm_control_rls_fndecl_20490_fns gsm_control_rls fndecl 3 20490 NULL
++pageshift_sddr09_card_info_20494_fns pageshift sddr09_card_info 0 20494 NULL
++nrbchan_mISDNdevice_20497_fns nrbchan mISDNdevice 0 20497 NULL
++sysfs_create_group_fndecl_20504_fns sysfs_create_group fndecl 0 20504 NULL
++read_from_oldmem_fndecl_20506_fns read_from_oldmem fndecl 2 20506 NULL
++data_len_icmp_bxm_20511_fns data_len icmp_bxm 0 20511 NULL
++x86_emulate_instruction_fndecl_20526_fns x86_emulate_instruction fndecl 2 20526 NULL
++mlx5_core_req_pages_handler_fndecl_20540_fns mlx5_core_req_pages_handler fndecl 3 20540 NULL
++input_estimate_events_per_packet_fndecl_20548_fns input_estimate_events_per_packet fndecl 0 20548 NULL
++wacom_calc_hid_res_fndecl_20558_fns wacom_calc_hid_res fndecl 1 20558 NULL
++isdn_readbchan_fndecl_20570_fns isdn_readbchan fndecl 5-0 20570 NULL
++nullb_indexes_vardecl_null_blk_c_20571_fns nullb_indexes vardecl_null_blk.c 0 20571 NULL
++nfp_net_shadow_tx_rings_prepare_fndecl_20574_fns nfp_net_shadow_tx_rings_prepare fndecl 2 20574 NULL
++pci_add_cap_save_buffer_fndecl_20593_fns pci_add_cap_save_buffer fndecl 3 20593 NULL
++nilfs_cpfile_set_snapshot_fndecl_20616_fns nilfs_cpfile_set_snapshot fndecl 2 20616 NULL
++snd_pcm_lib_readv_transfer_fndecl_20635_fns snd_pcm_lib_readv_transfer fndecl 5 20635 NULL
++cursor_size_fbcon_ops_20640_fns cursor_size fbcon_ops 0 20640 NULL
++bcm2835_dma_create_cb_chain_fndecl_20648_fns bcm2835_dma_create_cb_chain fndecl 6 20648 NULL
++security_context_to_sid_default_fndecl_20663_fns security_context_to_sid_default fndecl 2 20663 NULL
++kvm_handle_bad_page_fndecl_20668_fns kvm_handle_bad_page fndecl 2 20668 NULL
++btrfs_dir_name_len_fndecl_20686_fns btrfs_dir_name_len fndecl 0 20686 NULL
++nsio_rw_bytes_fndecl_20690_fns nsio_rw_bytes fndecl 4 20690 NULL
++evtchn_read_fndecl_20706_fns evtchn_read fndecl 3 20706 NULL
++len_asymmetric_key_id_20717_fns len asymmetric_key_id 0 20717 NULL
++alloc_smp_resp_fndecl_20733_fns alloc_smp_resp fndecl 1 20733 NULL
++stv0680_set_video_mode_fndecl_20735_fns stv0680_set_video_mode fndecl 0 20735 NULL
++msgbuflen_blogic_adapter_20746_fns msgbuflen blogic_adapter 0 20746 NULL
++rb_alloc_fndecl_20749_fns rb_alloc fndecl 1 20749 NULL
++ttusb2_msg_fndecl_20751_fns ttusb2_msg fndecl 4 20751 NULL
++read_file_antenna_diversity_fndecl_20758_fns read_file_antenna_diversity fndecl 3 20758 NULL
++simple_write_to_buffer_fndecl_20769_fns simple_write_to_buffer fndecl 2-5 20769 NULL
++compat_sys_migrate_pages_fndecl_20806_fns compat_sys_migrate_pages fndecl 2 20806 NULL
++filldir_fndecl_20820_fns filldir fndecl 3 20820 NULL
++fill_write_buffer_fndecl_20821_fns fill_write_buffer fndecl 3 20821 NULL
++aux_size_dm_bufio_client_20827_fns aux_size dm_bufio_client 0 20827 NULL
++mempool_create_node_fndecl_20836_fns mempool_create_node fndecl 1 20836 NULL
++alloc_context_fndecl_20841_fns alloc_context fndecl 1 20841 NULL
++shmem_pread_slow_fndecl_20845_fns shmem_pread_slow fndecl 2-3 20845 NULL nohasharray
++udp_sendpage_fndecl_20845_fns udp_sendpage fndecl 3 20845 &shmem_pread_slow_fndecl_20845_fns
++acpi_copy_property_array_u64_fndecl_20846_fns acpi_copy_property_array_u64 fndecl 0 20846 NULL
++uinput_ioctl_handler_fndecl_20862_fns uinput_ioctl_handler fndecl 2 20862 NULL
++codec_reg_write_file_fndecl_20887_fns codec_reg_write_file fndecl 3 20887 NULL
++aggr_size_tx_agg_len_read_fndecl_20910_fns aggr_size_tx_agg_len_read fndecl 3 20910 NULL
++btrfs_next_leaf_fndecl_20915_fns btrfs_next_leaf fndecl 0 20915 NULL
++key_key_read_fndecl_20922_fns key_key_read fndecl 3 20922 NULL
++_iwl_dbgfs_d3_sram_write_fndecl_20960_fns _iwl_dbgfs_d3_sram_write fndecl 3 20960 NULL
++dbDiscardAG_fndecl_20969_fns dbDiscardAG fndecl 3 20969 NULL
++count_cma_20973_fns count cma 0 20973 NULL nohasharray
++compat_sys_setsockopt_fndecl_20973_fns compat_sys_setsockopt fndecl 5 20973 &count_cma_20973_fns
++spidev_compat_ioc_message_fndecl_20986_fns spidev_compat_ioc_message fndecl 2 20986 NULL
++get_fd_set_fndecl_21001_fns get_fd_set fndecl 1 21001 NULL
++nouveau_debugfs_pstate_set_fndecl_21004_fns nouveau_debugfs_pstate_set fndecl 3 21004 NULL
++br_fdb_insert_fndecl_21006_fns br_fdb_insert fndecl 4 21006 NULL
++sst_hsw_module_set_param_fndecl_21007_fns sst_hsw_module_set_param fndecl 5 21007 NULL
++nvram_write_fndecl_21029_fns nvram_write fndecl 3 21029 NULL
++efivarfs_file_read_fndecl_21030_fns efivarfs_file_read fndecl 3 21030 NULL
++comedi_buf_read_n_available_fndecl_21032_fns comedi_buf_read_n_available fndecl 0 21032 NULL
++pipeline_pre_proc_swi_read_fndecl_21033_fns pipeline_pre_proc_swi_read fndecl 3 21033 NULL
++garp_attr_create_fndecl_21048_fns garp_attr_create fndecl 3 21048 NULL
++memcpy_to_pmem_fndecl_21058_fns memcpy_to_pmem fndecl 3 21058 NULL
++chaoskey_rng_read_fndecl_21064_fns chaoskey_rng_read fndecl 3 21064 NULL
++vcs_write_fndecl_21077_fns vcs_write fndecl 3 21077 NULL
++rb_alloc_aux_fndecl_21108_fns rb_alloc_aux fndecl 4 21108 NULL
++hdrlen_ipv6_opt_hdr_21121_fns hdrlen ipv6_opt_hdr 0 21121 NULL
++size_ndis_80211_key_21124_fns size ndis_80211_key 0 21124 NULL
++metadata_dst_alloc_fndecl_21136_fns metadata_dst_alloc fndecl 1 21136 NULL
++hsu_dma_prep_slave_sg_fndecl_21155_fns hsu_dma_prep_slave_sg fndecl 3 21155 NULL
++mei_write_fndecl_21174_fns mei_write fndecl 3 21174 NULL nohasharray
++xfs_check_block_fndecl_21174_fns xfs_check_block fndecl 4 21174 &mei_write_fndecl_21174_fns
++snd_hdsp_capture_copy_fndecl_21176_fns snd_hdsp_capture_copy fndecl 5 21176 NULL
++n_ir_fw_ohci_21205_fns n_ir fw_ohci 0 21205 NULL
++mtip_hw_read_registers_fndecl_21206_fns mtip_hw_read_registers fndecl 3 21206 NULL
++crypto_ecdh_shared_secret_fndecl_21212_fns crypto_ecdh_shared_secret fndecl 2 21212 NULL
++nilfs_cpfile_change_cpmode_fndecl_21246_fns nilfs_cpfile_change_cpmode fndecl 2 21246 NULL
++sctp_getsockopt_events_fndecl_21252_fns sctp_getsockopt_events fndecl 2 21252 NULL
++edac_mc_alloc_fndecl_21256_fns edac_mc_alloc fndecl 4 21256 NULL
++object_name_len_compat_ncp_objectname_ioctl_21274_fns object_name_len compat_ncp_objectname_ioctl 0 21274 NULL
++fm10k_alloc_q_vector_fndecl_21285_fns fm10k_alloc_q_vector fndecl 4-6 21285 NULL
++tx_tx_starts_read_fndecl_21298_fns tx_tx_starts_read fndecl 3 21298 NULL
++aligned_kmalloc_fndecl_21311_fns aligned_kmalloc fndecl 1 21311 NULL
++_iwl_dbgfs_tx_flush_write_fndecl_21320_fns _iwl_dbgfs_tx_flush_write fndecl 3 21320 NULL
++sq_len_queue_set_21321_fns sq_len queue_set 0 21321 NULL
++temp_count_applesmc_registers_21387_fns temp_count applesmc_registers 0 21387 NULL
++ci_ll_write_fndecl_21391_fns ci_ll_write fndecl 4 21391 NULL
++digest_size_dm_verity_21399_fns digest_size dm_verity 0 21399 NULL
++v4l2_fh_open_fndecl_21406_fns v4l2_fh_open fndecl 0 21406 NULL
++length_r3964_block_header_21407_fns length r3964_block_header 0 21407 NULL
++mesh_id_len_ieee80211_if_mesh_21412_fns mesh_id_len ieee80211_if_mesh 0 21412 NULL
++fwnode_property_read_u32_array_fndecl_21467_fns fwnode_property_read_u32_array fndecl 0 21467 NULL
++intel_sdvo_set_value_fndecl_21524_fns intel_sdvo_set_value fndecl 4 21524 NULL
++kvm_clear_guest_page_fndecl_21527_fns kvm_clear_guest_page fndecl 4-2 21527 NULL
++alloc_btrfs_bio_fndecl_21533_fns alloc_btrfs_bio fndecl 2-1 21533 NULL nohasharray
++picolcd_fb_write_fndecl_21533_fns picolcd_fb_write fndecl 3 21533 &alloc_btrfs_bio_fndecl_21533_fns
++viafb_iga2_odev_proc_write_fndecl_21544_fns viafb_iga2_odev_proc_write fndecl 3 21544 NULL
++__erst_read_to_erange_fndecl_21558_fns __erst_read_to_erange fndecl 0 21558 NULL
++le_min_key_size_write_fndecl_21573_fns le_min_key_size_write fndecl 3 21573 NULL
++il_dbgfs_sensitivity_read_fndecl_21585_fns il_dbgfs_sensitivity_read fndecl 3 21585 NULL
++xfs_buf_map_from_irec_fndecl_21587_fns xfs_buf_map_from_irec fndecl 5 21587 NULL
++isdn_v110_open_fndecl_21601_fns isdn_v110_open fndecl 3 21601 NULL
++rxpipe_rx_prep_beacon_drop_read_fndecl_21616_fns rxpipe_rx_prep_beacon_drop_read fndecl 3 21616 NULL
++num_fdsb_msix_i40e_pf_21645_fns num_fdsb_msix i40e_pf 0 21645 NULL
++affs_file_fsync_fndecl_21669_fns affs_file_fsync fndecl 2-3 21669 NULL
++bio_alloc_bioset_fndecl_21671_fns bio_alloc_bioset fndecl 2 21671 NULL nohasharray
++lwtunnel_state_alloc_fndecl_21671_fns lwtunnel_state_alloc fndecl 1 21671 &bio_alloc_bioset_fndecl_21671_fns
++b43legacy_debugfs_read_fndecl_21690_fns b43legacy_debugfs_read fndecl 3 21690 NULL
++bsg_job_size_request_queue_21696_fns bsg_job_size request_queue 0 21696 NULL
++batadv_tvlv_container_list_size_fndecl_21711_fns batadv_tvlv_container_list_size fndecl 0 21711 NULL
++squashfs_read_fragment_index_table_fndecl_21721_fns squashfs_read_fragment_index_table fndecl 4 21721 NULL
++ath6kl_fwlog_mask_read_fndecl_21777_fns ath6kl_fwlog_mask_read fndecl 3 21777 NULL
++iwl_dbgfs_log_event_read_fndecl_21800_fns iwl_dbgfs_log_event_read fndecl 3 21800 NULL
++__set_print_fmt_fndecl_21801_fns __set_print_fmt fndecl 0 21801 NULL
++__svc_create_fndecl_21804_fns __svc_create fndecl 3 21804 NULL
++nfs4_copy_file_range_fndecl_21835_fns nfs4_copy_file_range fndecl 2-5 21835 NULL
++check_load_and_stores_fndecl_21836_fns check_load_and_stores fndecl 2 21836 NULL
++enable_read_fndecl_21846_fns enable_read fndecl 3 21846 NULL
++btrfs_file_extent_inline_len_fndecl_21847_fns btrfs_file_extent_inline_len fndecl 0 21847 NULL
++_ore_get_io_state_fndecl_21861_fns _ore_get_io_state fndecl 3-4-5 21861 NULL
++mlx4_init_icm_table_fndecl_21876_fns mlx4_init_icm_table fndecl 4-5 21876 NULL
++picolcd_debug_reset_write_fndecl_21888_fns picolcd_debug_reset_write fndecl 3 21888 NULL
++bio_integrity_alloc_fndecl_21889_fns bio_integrity_alloc fndecl 3 21889 NULL
++ceph_osdc_new_request_fndecl_21921_fns ceph_osdc_new_request fndecl 7 21921 NULL
++wilc_network_info_received_fndecl_21936_fns wilc_network_info_received fndecl 3 21936 NULL
++u32_array_read_fndecl_21944_fns u32_array_read fndecl 3 21944 NULL nohasharray
++mei_dbgfs_read_meclients_fndecl_21944_fns mei_dbgfs_read_meclients fndecl 3 21944 &u32_array_read_fndecl_21944_fns
++do_update_counters_fndecl_21952_fns do_update_counters fndecl 4 21952 NULL
++mlx4_buddy_init_fndecl_21975_fns mlx4_buddy_init fndecl 2 21975 NULL
++ieee80211_if_read_dot11MeshHWMPRannInterval_fndecl_21978_fns ieee80211_if_read_dot11MeshHWMPRannInterval fndecl 3 21978 NULL
++_scif_send_fndecl_21987_fns _scif_send fndecl 3-0 21987 NULL
++vpdma_alloc_desc_buf_fndecl_22005_fns vpdma_alloc_desc_buf fndecl 2 22005 NULL
++rtl8723be_c2h_packet_handler_fndecl_22040_fns rtl8723be_c2h_packet_handler fndecl 3 22040 NULL
++roccat_connect_fndecl_22044_fns roccat_connect fndecl 3 22044 NULL
++sel_read_enforce_fndecl_22047_fns sel_read_enforce fndecl 3 22047 NULL
++irnet_ctrl_read_fndecl_22076_fns irnet_ctrl_read fndecl 4 22076 NULL
++sfq_alloc_fndecl_22078_fns sfq_alloc fndecl 1 22078 NULL
++cmm_write_fndecl_22083_fns cmm_write fndecl 3 22083 NULL
++mgt_response_to_str_fndecl_22094_fns mgt_response_to_str fndecl 0 22094 NULL
++len_setup_data_node_22096_fns len setup_data_node 0 22096 NULL nohasharray
++ath10k_read_peer_stats_fndecl_22096_fns ath10k_read_peer_stats fndecl 3 22096 &len_setup_data_node_22096_fns
++xferlen_uioc_22131_fns xferlen uioc 0 22131 NULL
++xfs_trans_get_buf_map_fndecl_22140_fns xfs_trans_get_buf_map fndecl 4 22140 NULL
++nes_read_indexed_fndecl_22161_fns nes_read_indexed fndecl 0 22161 NULL
++buf_len_bu_info_22182_fns buf_len bu_info 0 22182 NULL nohasharray
++bnx2x_mcast_handle_pending_cmds_e1_fndecl_22182_fns bnx2x_mcast_handle_pending_cmds_e1 fndecl 0 22182 &buf_len_bu_info_22182_fns
++acpi_aml_read_fndecl_22207_fns acpi_aml_read fndecl 3 22207 NULL
++xfrm_dst_alloc_copy_fndecl_22217_fns xfrm_dst_alloc_copy fndecl 3 22217 NULL
++get_max_acpi_id_fndecl_22220_fns get_max_acpi_id fndecl 0 22220 NULL
++lpfc_idiag_mbxacc_write_fndecl_22221_fns lpfc_idiag_mbxacc_write fndecl 3 22221 NULL
++thermal_adc_source_unexpected_read_fndecl_22235_fns thermal_adc_source_unexpected_read fndecl 3 22235 NULL
++depth_write_fndecl_22238_fns depth_write fndecl 3 22238 NULL
++dac960_user_command_proc_write_fndecl_22252_fns dac960_user_command_proc_write fndecl 3 22252 NULL
++qp_alloc_ppn_set_fndecl_22255_fns qp_alloc_ppn_set fndecl 2-4 22255 NULL
++nr_free_buffer_pages_fndecl_22263_fns nr_free_buffer_pages fndecl 0 22263 NULL
++il3945_ucode_rx_stats_read_fndecl_22267_fns il3945_ucode_rx_stats_read fndecl 3 22267 NULL
++sn9c2028_read4_fndecl_22290_fns sn9c2028_read4 fndecl 0 22290 NULL
++gspca_dev_probe_fndecl_22297_fns gspca_dev_probe fndecl 4 22297 NULL
++slot_bytes_fndecl_22306_fns slot_bytes fndecl 0 22306 NULL
++smk_write_logging_fndecl_22313_fns smk_write_logging fndecl 3 22313 NULL
++iwl_dbgfs_tof_range_response_read_fndecl_22327_fns iwl_dbgfs_tof_range_response_read fndecl 3 22327 NULL
++f2fs_getxattr_fndecl_22337_fns f2fs_getxattr fndecl 0 22337 NULL
++tlv_put_string_fndecl_22356_fns tlv_put_string fndecl 0 22356 NULL
++_proc_do_string_fndecl_22363_fns _proc_do_string fndecl 2 22363 NULL
++ffs_ep0_read_fndecl_22371_fns ffs_ep0_read fndecl 3 22371 NULL
++ecc_size_persistent_ram_ecc_info_22390_fns ecc_size persistent_ram_ecc_info 0 22390 NULL
++nr_blocks_jffs2_sb_info_22399_fns nr_blocks jffs2_sb_info 0 22399 NULL
++size_dsp_segment_desc_22400_fns size dsp_segment_desc 0 22400 NULL
++nfc_llcp_send_ui_frame_fndecl_22429_fns nfc_llcp_send_ui_frame fndecl 5 22429 NULL
++start_async_cow_22445_fns start async_cow 0 22445 NULL
++do_send_fragment_fndecl_22447_fns do_send_fragment fndecl 3 22447 NULL
++fsl_edma_alloc_desc_fndecl_22466_fns fsl_edma_alloc_desc fndecl 2 22466 NULL
++xfs_readdir_fndecl_22492_fns xfs_readdir fndecl 3 22492 NULL
++ovl_cache_entry_new_fndecl_22495_fns ovl_cache_entry_new fndecl 3 22495 NULL
++ecc_alloc_digits_space_fndecl_22496_fns ecc_alloc_digits_space fndecl 1 22496 NULL
++iwl_dbgfs_clear_ucode_statistics_write_fndecl_22503_fns iwl_dbgfs_clear_ucode_statistics_write fndecl 3 22503 NULL
++len_bna_mem_info_22518_fns len bna_mem_info 0 22518 NULL nohasharray
++device_add_attrs_fndecl_22518_fns device_add_attrs fndecl 0 22518 &len_bna_mem_info_22518_fns
++rocker_dma_ring_bufs_alloc_fndecl_22520_fns rocker_dma_ring_bufs_alloc fndecl 4 22520 NULL
++tx_frag_in_process_called_read_fndecl_22553_fns tx_frag_in_process_called_read fndecl 3 22553 NULL
++skd_next_devno_vardecl_skd_main_c_22569_fns skd_next_devno vardecl_skd_main.c 0 22569 NULL
++fw_stats_raw_read_fndecl_22602_fns fw_stats_raw_read fndecl 3 22602 NULL
++brcmf_fil_cmd_data_get_fndecl_22605_fns brcmf_fil_cmd_data_get fndecl 4 22605 NULL
++btrfs_submit_compressed_write_fndecl_22608_fns btrfs_submit_compressed_write fndecl 5 22608 NULL
++bond_verify_device_path_fndecl_22619_fns bond_verify_device_path fndecl 3 22619 NULL nohasharray
++wil_write_pmccfg_fndecl_22619_fns wil_write_pmccfg fndecl 3 22619 &bond_verify_device_path_fndecl_22619_fns
++SYSC_io_getevents_fndecl_22627_fns SYSC_io_getevents fndecl 3 22627 NULL
++rdma_alloc_hw_stats_struct_fndecl_22643_fns rdma_alloc_hw_stats_struct fndecl 2 22643 NULL
++sctp_setsockopt_initmsg_fndecl_22644_fns sctp_setsockopt_initmsg fndecl 3 22644 NULL
++md_probe_fndecl_22668_fns md_probe fndecl 1 22668 NULL
++init_rs_internal_fndecl_22671_fns init_rs_internal fndecl 6-1 22671 NULL
++cfs_trace_copyout_string_fndecl_22683_fns cfs_trace_copyout_string fndecl 2 22683 NULL
++tx_queue_len_read_fndecl_22692_fns tx_queue_len_read fndecl 3 22692 NULL
++scif_rb_write_fndecl_22718_fns scif_rb_write fndecl 0 22718 NULL
++sta_num_ps_buf_frames_read_fndecl_22723_fns sta_num_ps_buf_frames_read fndecl 3 22723 NULL
++fpregs_set_fndecl_22730_fns fpregs_set fndecl 4 22730 NULL
++xprt_alloc_fndecl_22736_fns xprt_alloc fndecl 2 22736 NULL
++SYSC_syslog_fndecl_22742_fns SYSC_syslog fndecl 3 22742 NULL
++slave_num_ad7280_state_22755_fns slave_num ad7280_state 0 22755 NULL
++alloc_perm_bits_fndecl_22767_fns alloc_perm_bits fndecl 2 22767 NULL
++tomoyo_round2_fndecl_22781_fns tomoyo_round2 fndecl 0 22781 NULL
++agp_create_memory_fndecl_22816_fns agp_create_memory fndecl 1 22816 NULL
++pwr_sleep_cycle_avg_read_fndecl_22826_fns pwr_sleep_cycle_avg_read fndecl 3 22826 NULL
++virtio_transport_alloc_pkt_fndecl_22828_fns virtio_transport_alloc_pkt fndecl 2 22828 NULL
++nfs_pgarray_set_fndecl_22830_fns nfs_pgarray_set fndecl 2 22830 NULL
++gigaset_initdriver_fndecl_22839_fns gigaset_initdriver fndecl 2 22839 NULL
++test_eb_bitmaps_fndecl_22861_fns test_eb_bitmaps fndecl 1 22861 NULL
++sst_fill_and_send_cmd_unlocked_fndecl_22862_fns sst_fill_and_send_cmd_unlocked fndecl 7 22862 NULL
++xs_sendpages_fndecl_22864_fns xs_sendpages fndecl 3 22864 NULL
++max_part_vardecl_brd_c_22873_fns max_part vardecl_brd.c 0 22873 NULL
++length_usbtest_param_32_22886_fns length usbtest_param_32 0 22886 NULL
++__btrfs_cow_block_fndecl_22902_fns __btrfs_cow_block fndecl 0 22902 NULL
++vmalloc_32_fndecl_22908_fns vmalloc_32 fndecl 1 22908 NULL
++lmd_exclude_count_lustre_mount_data_22915_fns lmd_exclude_count lustre_mount_data 0 22915 NULL
++cifs_xattr_set_fndecl_22930_fns cifs_xattr_set fndecl 6 22930 NULL
++cp210x_read_reg_block_fndecl_22947_fns cp210x_read_reg_block fndecl 4 22947 NULL
++i2cdev_read_fndecl_22949_fns i2cdev_read fndecl 3 22949 NULL
++lov_ost_pool_init_fndecl_22956_fns lov_ost_pool_init fndecl 2 22956 NULL
++ipc_alloc_fndecl_22971_fns ipc_alloc fndecl 1 22971 NULL
++kernfs_file_direct_read_fndecl_22981_fns kernfs_file_direct_read fndecl 3 22981 NULL
++acpi_battery_write_alarm_fndecl_22987_fns acpi_battery_write_alarm fndecl 3 22987 NULL
++dvb_register_adapter_fndecl_23000_fns dvb_register_adapter fndecl 0 23000 NULL
++memblock_alloc_range_fndecl_23015_fns memblock_alloc_range fndecl 1 23015 NULL
++ioctl_private_iw_point_fndecl_23018_fns ioctl_private_iw_point fndecl 7 23018 NULL
++nested_get_page_fndecl_23031_fns nested_get_page fndecl 2 23031 NULL
++sta_aid_read_fndecl_23048_fns sta_aid_read fndecl 3 23048 NULL
++gnttab_free_count_vardecl_grant_table_c_23049_fns gnttab_free_count vardecl_grant-table.c 0 23049 NULL
++fcoe_ctlr_device_add_fndecl_23058_fns fcoe_ctlr_device_add fndecl 3 23058 NULL
++usb_dmac_desc_alloc_fndecl_23059_fns usb_dmac_desc_alloc fndecl 2 23059 NULL
++to_clkrc_fndecl_23074_fns to_clkrc fndecl 0-2-3 23074 NULL
++scif_rb_count_fndecl_23076_fns scif_rb_count fndecl 0 23076 NULL
++vicam_set_camera_power_fndecl_23091_fns vicam_set_camera_power fndecl 0 23091 NULL
++rproc_state_write_fndecl_23143_fns rproc_state_write fndecl 3 23143 NULL
++bits_key_vector_23153_fns bits key_vector 0 23153 NULL
++rx_defrag_called_read_fndecl_23162_fns rx_defrag_called_read fndecl 3 23162 NULL
++memblock_alloc_base_fndecl_23169_fns memblock_alloc_base fndecl 1 23169 NULL
++uhid_char_read_fndecl_23187_fns uhid_char_read fndecl 3 23187 NULL
++tx_tx_retry_data_read_fndecl_23189_fns tx_tx_retry_data_read fndecl 3 23189 NULL
++ir_context_mask_fw_ohci_23196_fns ir_context_mask fw_ohci 0 23196 NULL
++ib_uverbs_reg_mr_fndecl_23214_fns ib_uverbs_reg_mr fndecl 4-5 23214 NULL
++size_of_ntlmssp_blob_fndecl_23224_fns size_of_ntlmssp_blob fndecl 0 23224 NULL
++ivtv_v4l2_read_fndecl_23231_fns ivtv_v4l2_read fndecl 3 23231 NULL
++num_rxd_rx_ring_config_23240_fns num_rxd rx_ring_config 0 23240 NULL
++rx_rx_defrag_read_fndecl_23241_fns rx_rx_defrag_read fndecl 3 23241 NULL
++__alloc_bootmem_node_fndecl_23259_fns __alloc_bootmem_node fndecl 2 23259 NULL
++avc_data_length_firedtv_23266_fns avc_data_length firedtv 0 23266 NULL
++write_flush_pipefs_fndecl_23286_fns write_flush_pipefs fndecl 3 23286 NULL
++transfersize_scsi_cmnd_23314_fns transfersize scsi_cmnd 0 23314 NULL
++tail_userio_device_23332_fns tail userio_device 0 23332 NULL
++ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime_fndecl_23334_fns ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime fndecl 3 23334 NULL
++v9fs_fid_xattr_get_fndecl_23361_fns v9fs_fid_xattr_get fndecl 0 23361 NULL
++packet_buffer_init_fndecl_23380_fns packet_buffer_init fndecl 2 23380 NULL
++btmrvl_hscmd_read_fndecl_23389_fns btmrvl_hscmd_read fndecl 3 23389 NULL
++ikconfig_read_current_fndecl_23401_fns ikconfig_read_current fndecl 3 23401 NULL
++map_block_for_writepage_fndecl_23405_fns map_block_for_writepage fndecl 3 23405 NULL
++numerator_v4l2_fract_23413_fns numerator v4l2_fract 0 23413 NULL
++configfs_read_file_fndecl_23424_fns configfs_read_file fndecl 3 23424 NULL
++log_size_mlx5_srq_attr_23431_fns log_size mlx5_srq_attr 0 23431 NULL
++nilfs_attach_snapshot_fndecl_23434_fns nilfs_attach_snapshot fndecl 2 23434 NULL
++btrfs_dir_data_len_fndecl_23457_fns btrfs_dir_data_len fndecl 0 23457 NULL
++size_mwifiex_opt_sleep_confirm_23460_fns size mwifiex_opt_sleep_confirm 0 23460 NULL
++dma_map_sg_attrs_fndecl_23465_fns dma_map_sg_attrs fndecl 0 23465 NULL
++iwl_dbgfs_d0i3_refs_read_fndecl_23482_fns iwl_dbgfs_d0i3_refs_read fndecl 3 23482 NULL
++gfn_to_hva_prot_fndecl_23484_fns gfn_to_hva_prot fndecl 2 23484 NULL
++cyy_init_card_fndecl_23488_fns cyy_init_card fndecl 0 23488 NULL
++tx_frag_called_read_fndecl_23495_fns tx_frag_called_read fndecl 3 23495 NULL
++sr_size_send_context_23500_fns sr_size send_context 0 23500 NULL
++rxe_mem_alloc_fndecl_23510_fns rxe_mem_alloc fndecl 3 23510 NULL nohasharray
++internal_create_group_fndecl_23510_fns internal_create_group fndecl 0 23510 &rxe_mem_alloc_fndecl_23510_fns
++usb_ep_align_maybe_fndecl_23516_fns usb_ep_align_maybe fndecl 0-3 23516 NULL
++dev_irnet_read_fndecl_23518_fns dev_irnet_read fndecl 3 23518 NULL
++max_pkt_size_cx231xx_bulk_ctl_23542_fns max_pkt_size cx231xx_bulk_ctl 0 23542 NULL
++cosa_write_fndecl_23549_fns cosa_write fndecl 3 23549 NULL
++syslog_print_fndecl_23584_fns syslog_print fndecl 2 23584 NULL
++tail_len_beacon_attr_23587_fns tail_len beacon_attr 0 23587 NULL
++max_cmd_size_ath6kl_bmi_23591_fns max_cmd_size ath6kl_bmi 0 23591 NULL
++dn_setsockopt_fndecl_23593_fns dn_setsockopt fndecl 5 23593 NULL
++read_file_war_stats_fndecl_23607_fns read_file_war_stats fndecl 3 23607 NULL
++nr_grant_frames_vardecl_grant_table_c_23609_fns nr_grant_frames vardecl_grant-table.c 0 23609 NULL
++nr_tags_blk_mq_tags_23638_fns nr_tags blk_mq_tags 0 23638 NULL
++mlx5_core_access_reg_fndecl_23674_fns mlx5_core_access_reg fndecl 3-5 23674 NULL
++acpi_ev_create_gpe_block_fndecl_23722_fns acpi_ev_create_gpe_block fndecl 4 23722 NULL
++lbs_rdmac_read_fndecl_23729_fns lbs_rdmac_read fndecl 3 23729 NULL
++iwl_dbgfs_protection_mode_write_fndecl_23781_fns iwl_dbgfs_protection_mode_write fndecl 3 23781 NULL
++rx_rx_defrag_end_read_fndecl_23786_fns rx_rx_defrag_end_read fndecl 3 23786 NULL
++read_buffer_length_lego_usb_tower_23787_fns read_buffer_length lego_usb_tower 0 23787 NULL
++nvme_trans_modesel_data_fndecl_23803_fns nvme_trans_modesel_data fndecl 4 23803 NULL
++_find_next_bit_be_fndecl_23804_fns _find_next_bit_be fndecl 0 23804 NULL
++compat_sock_setsockopt_fndecl_23812_fns compat_sock_setsockopt fndecl 5 23812 NULL
++padzero_fndecl_23844_fns padzero fndecl 1 23844 NULL nohasharray
++sel_read_policyvers_fndecl_23844_fns sel_read_policyvers fndecl 3 23844 &padzero_fndecl_23844_fns
++efx_ef10_sriov_configure_fndecl_23850_fns efx_ef10_sriov_configure fndecl 2 23850 NULL
++write_file_tpc_fndecl_23877_fns write_file_tpc fndecl 3 23877 NULL
++load_msg_fndecl_23884_fns load_msg fndecl 2 23884 NULL
++snd_korg1212_copy_to_fndecl_23887_fns snd_korg1212_copy_to fndecl 6 23887 NULL
++tracing_trace_options_write_fndecl_23946_fns tracing_trace_options_write fndecl 3 23946 NULL
++init_q_fndecl_23959_fns init_q fndecl 4 23959 NULL
++memstick_alloc_host_fndecl_23965_fns memstick_alloc_host fndecl 1 23965 NULL
++xfs_buf_item_get_format_fndecl_23982_fns xfs_buf_item_get_format fndecl 2 23982 NULL
++pci_request_selected_regions_fndecl_23994_fns pci_request_selected_regions fndecl 0 23994 NULL
++extract_crng_user_fndecl_23995_fns extract_crng_user fndecl 2 23995 NULL
++iscsi_session_setup_fndecl_24023_fns iscsi_session_setup fndecl 5-3 24023 NULL
++vpdma_create_desc_list_fndecl_24044_fns vpdma_create_desc_list fndecl 2 24044 NULL
++buf_size_conf_writedata_24046_fns buf_size conf_writedata 0 24046 NULL
++bNumEndpoints_usb_interface_descriptor_24052_fns bNumEndpoints usb_interface_descriptor 0 24052 NULL
++shdma_init_fndecl_24059_fns shdma_init fndecl 3 24059 NULL
++ws_row_winsize_24064_fns ws_row winsize 0 24064 NULL
++ebx_v86_regs_24072_fns ebx v86_regs 0 24072 NULL
++raydium_i2c_send_fndecl_24090_fns raydium_i2c_send fndecl 4 24090 NULL
++cfs_trace_allocate_string_buffer_fndecl_24094_fns cfs_trace_allocate_string_buffer fndecl 2 24094 NULL
++cnt_nfp_net_rx_ring_24099_fns cnt nfp_net_rx_ring 0 24099 NULL
++size_sge_rspq_24120_fns size sge_rspq 0 24120 NULL
++scif_user_send_fndecl_24137_fns scif_user_send fndecl 3 24137 NULL
++tegra_clk_init_fndecl_24143_fns tegra_clk_init fndecl 3-2 24143 NULL
++len_event_data_24144_fns len event_data 0 24144 NULL
++o2net_send_message_vec_fndecl_24188_fns o2net_send_message_vec fndecl 4 24188 NULL nohasharray
++iwl_dbgfs_fh_reg_read_fndecl_24188_fns iwl_dbgfs_fh_reg_read fndecl 3 24188 &o2net_send_message_vec_fndecl_24188_fns
++stride_usbatm_channel_24224_fns stride usbatm_channel 0 24224 NULL
++carl9170_cmd_buf_fndecl_24229_fns carl9170_cmd_buf fndecl 3 24229 NULL
++num_tx_queues_fm10k_intfc_24236_fns num_tx_queues fm10k_intfc 0 24236 NULL
++__nodes_weight_fndecl_24239_fns __nodes_weight fndecl 0 24239 NULL
++iio_storage_bytes_for_timestamp_fndecl_24260_fns iio_storage_bytes_for_timestamp fndecl 0 24260 NULL
++pte_prefetch_gfn_to_pfn_fndecl_24310_fns pte_prefetch_gfn_to_pfn fndecl 2 24310 NULL nohasharray
++ocfs2_info_scan_inode_alloc_fndecl_24310_fns ocfs2_info_scan_inode_alloc fndecl 3 24310 &pte_prefetch_gfn_to_pfn_fndecl_24310_fns
++zlib_deflate_workspacesize_fndecl_24330_fns zlib_deflate_workspacesize fndecl 0 24330 NULL
++iwl_dbgfs_wowlan_sram_read_fndecl_24335_fns iwl_dbgfs_wowlan_sram_read fndecl 3 24335 NULL
++ls_recover_size_lm_lockstruct_24365_fns ls_recover_size lm_lockstruct 0 24365 NULL
++sco_sock_setsockopt_fndecl_24379_fns sco_sock_setsockopt fndecl 5 24379 NULL
++error_elp_while_nvic_pending_read_fndecl_24394_fns error_elp_while_nvic_pending_read fndecl 3 24394 NULL
++completed_vringh_24407_fns completed vringh 0 24407 NULL
++srpt_cm_rej_recv_fndecl_24427_fns srpt_cm_rej_recv fndecl 4 24427 NULL
++ni_gpct_device_construct_fndecl_24433_fns ni_gpct_device_construct fndecl 5 24433 NULL
++size_tty_buffer_24438_fns size tty_buffer 0 24438 NULL
++fuse_request_alloc_nofs_fndecl_24442_fns fuse_request_alloc_nofs fndecl 1 24442 NULL
++ptlrpc_lprocfs_nrs_seq_write_fndecl_24446_fns ptlrpc_lprocfs_nrs_seq_write fndecl 3 24446 NULL
++unlink_queued_fndecl_24470_fns unlink_queued fndecl 3 24470 NULL
++dtim_interval_read_fndecl_24477_fns dtim_interval_read fndecl 3 24477 NULL
++rtl_get_hwinfo_fndecl_24480_fns rtl_get_hwinfo fndecl 3 24480 NULL
++dvb_video_write_fndecl_24545_fns dvb_video_write fndecl 3 24545 NULL
++log_len_vardecl_verifier_c_24556_fns log_len vardecl_verifier.c 0 24556 NULL nohasharray
++aqm_write_fndecl_24556_fns aqm_write fndecl 3 24556 &log_len_vardecl_verifier_c_24556_fns
++ibc_queue_depth_kib_conn_24567_fns ibc_queue_depth kib_conn 0 24567 NULL
++tomoyo_scan_bprm_fndecl_24585_fns tomoyo_scan_bprm fndecl 2-4 24585 NULL nohasharray
++pipeline_hs_tx_stat_fifo_int_read_fndecl_24585_fns pipeline_hs_tx_stat_fifo_int_read fndecl 3 24585 &tomoyo_scan_bprm_fndecl_24585_fns
++ebcnt_vardecl_oobtest_c_24588_fns ebcnt vardecl_oobtest.c 0 24588 NULL
++root_level_kvm_mmu_24604_fns root_level kvm_mmu 0 24604 NULL
++unix_bind_fndecl_24615_fns unix_bind fndecl 3 24615 NULL
++fs_path_add_fndecl_24627_fns fs_path_add fndecl 3 24627 NULL
++xsd_read_fndecl_24630_fns xsd_read fndecl 3 24630 NULL
++txq_depth_bnad_24636_fns txq_depth bnad 0 24636 NULL
++intr_cnt_vxgedev_24656_fns intr_cnt vxgedev 0 24656 NULL
++uinput_str_to_user_fndecl_24668_fns uinput_str_to_user fndecl 3 24668 NULL
++tool_link_write_fndecl_24679_fns tool_link_write fndecl 3 24679 NULL
++inet_insert_ifa_fndecl_24688_fns inet_insert_ifa fndecl 0 24688 NULL
++transport_generic_map_mem_to_cmd_fndecl_24700_fns transport_generic_map_mem_to_cmd fndecl 3 24700 NULL
++queue_depth_blk_mq_tag_set_24719_fns queue_depth blk_mq_tag_set 0 24719 NULL
++wilc_set_join_req_fndecl_24725_fns wilc_set_join_req fndecl 4-6 24725 NULL
++HiSax_readstatus_fndecl_24731_fns HiSax_readstatus fndecl 2 24731 NULL
++smk_read_direct_fndecl_24744_fns smk_read_direct fndecl 3 24744 NULL
++n_ao_urbs_usbduxsigma_private_24760_fns n_ao_urbs usbduxsigma_private 0 24760 NULL
++_sdma_txadd_daddr_fndecl_24789_fns _sdma_txadd_daddr fndecl 5 24789 NULL
++gnttab_expand_fndecl_24794_fns gnttab_expand fndecl 1 24794 NULL
++write_file_tx99_fndecl_24803_fns write_file_tx99 fndecl 3 24803 NULL
++num_q_vectors_i40e_vsi_24807_fns num_q_vectors i40e_vsi 0 24807 NULL
++fq_codel_zalloc_fndecl_24833_fns fq_codel_zalloc fndecl 1 24833 NULL
++acpi_ut_create_string_object_fndecl_24851_fns acpi_ut_create_string_object fndecl 1 24851 NULL
++__videobuf_copy_to_user_fndecl_24876_fns __videobuf_copy_to_user fndecl 4 24876 NULL
++memweight_fndecl_24905_fns memweight fndecl 0 24905 NULL
++unxz_fndecl_24936_fns unxz fndecl 2 24936 NULL
++vmalloc_fndecl_24955_fns vmalloc fndecl 1 24955 NULL
++nilfs_cpfile_clear_snapshot_fndecl_24964_fns nilfs_cpfile_clear_snapshot fndecl 2 24964 NULL
++outmsg_len_hvutil_transport_24966_fns outmsg_len hvutil_transport 0 24966 NULL
++zero_the_pointer_fndecl_25003_fns zero_the_pointer fndecl 0 25003 NULL
++default_density_st_modedef_25006_fns default_density st_modedef 0 25006 NULL
++bnx2fc_process_unsol_compl_fndecl_25035_fns bnx2fc_process_unsol_compl fndecl 2 25035 NULL
++acpi_gpio_count_fndecl_25052_fns acpi_gpio_count fndecl 0 25052 NULL
++buffer_size_snd_compr_runtime_25072_fns buffer_size snd_compr_runtime 0 25072 NULL nohasharray
++vme_user_write_fndecl_25072_fns vme_user_write fndecl 3 25072 &buffer_size_snd_compr_runtime_25072_fns
++mlxsw_reg_trans_wait_fndecl_25101_fns mlxsw_reg_trans_wait fndecl 0 25101 NULL
++num_pbls_ocrdma_hw_mr_25102_fns num_pbls ocrdma_hw_mr 0 25102 NULL
++compat_sys_select_fndecl_25104_fns compat_sys_select fndecl 1 25104 NULL
++fsm_init_fndecl_25109_fns fsm_init fndecl 2 25109 NULL
++i40e_allocate_virt_mem_d_fndecl_25132_fns i40e_allocate_virt_mem_d fndecl 3 25132 NULL
++create_table_fndecl_25158_fns create_table fndecl 2 25158 NULL
++cipso_v4_map_cat_rng_hton_fndecl_25176_fns cipso_v4_map_cat_rng_hton fndecl 0 25176 NULL
++il_dbgfs_disable_ht40_write_fndecl_25194_fns il_dbgfs_disable_ht40_write fndecl 3 25194 NULL
++ux500_regulator_debug_init_fndecl_25207_fns ux500_regulator_debug_init fndecl 3 25207 NULL
++npeers_cm_dev_25216_fns npeers cm_dev 0 25216 NULL
++jumpshot_read_data_fndecl_25228_fns jumpshot_read_data fndecl 4 25228 NULL
++of_property_read_string_helper_fndecl_25257_fns of_property_read_string_helper fndecl 0 25257 NULL
++stk_allocate_buffers_fndecl_25264_fns stk_allocate_buffers fndecl 2 25264 NULL
++register_count_acpi_gpe_block_info_25272_fns register_count acpi_gpe_block_info 0 25272 NULL
++qsfp_dump_fndecl_25308_fns qsfp_dump fndecl 0 25308 NULL
++sysfs_create_groups_fndecl_25339_fns sysfs_create_groups fndecl 0 25339 NULL
++total_ps_buffered_read_fndecl_25342_fns total_ps_buffered_read fndecl 3 25342 NULL
++__mptctl_ioctl_fndecl_25360_fns __mptctl_ioctl fndecl 2 25360 NULL
++bio_copy_kern_fndecl_25382_fns bio_copy_kern fndecl 3 25382 NULL
++req_buf_size_f_uac1_opts_25386_fns req_buf_size f_uac1_opts 0 25386 NULL
++memblock_virt_alloc_try_nid_fndecl_25409_fns memblock_virt_alloc_try_nid fndecl 1 25409 NULL nohasharray
++memsize_t4_cq_25409_fns memsize t4_cq 0 25409 &memblock_virt_alloc_try_nid_fndecl_25409_fns
++snd_pcm_lib_read_transfer_fndecl_25411_fns snd_pcm_lib_read_transfer fndecl 5 25411 NULL
++ptlrpcd_per_cpt_max_vardecl_ptlrpcd_c_25416_fns ptlrpcd_per_cpt_max vardecl_ptlrpcd.c 0 25416 NULL
++power_read_fndecl_25424_fns power_read fndecl 3 25424 NULL
++lpfc_idiag_drbacc_read_fndecl_25439_fns lpfc_idiag_drbacc_read fndecl 3 25439 NULL
++alloc_vm_area_fndecl_25446_fns alloc_vm_area fndecl 1 25446 NULL
++smk_read_ptrace_fndecl_25461_fns smk_read_ptrace fndecl 3 25461 NULL
++viafb_vt1636_proc_write_fndecl_25473_fns viafb_vt1636_proc_write fndecl 3 25473 NULL
++max_buckets_out_mpt_lan_priv_25498_fns max_buckets_out mpt_lan_priv 0 25498 NULL
++count_seq_file_25501_fns count seq_file 0 25501 NULL
++blk_init_tags_fndecl_25511_fns blk_init_tags fndecl 1 25511 NULL
++SYSC_kexec_file_load_fndecl_25513_fns SYSC_kexec_file_load fndecl 3 25513 NULL
++read_file_spectral_period_fndecl_25514_fns read_file_spectral_period fndecl 3 25514 NULL
++ntb_spad_count_fndecl_25572_fns ntb_spad_count fndecl 0 25572 NULL
++cifs_mapchar_fndecl_25586_fns cifs_mapchar fndecl 0 25586 NULL
++isr_tx_exch_complete_read_fndecl_25588_fns isr_tx_exch_complete_read fndecl 3 25588 NULL
++isr_hw_pm_mode_changes_read_fndecl_25597_fns isr_hw_pm_mode_changes_read fndecl 3 25597 NULL nohasharray
++dma_tx_requested_read_fndecl_25597_fns dma_tx_requested_read fndecl 3 25597 &isr_hw_pm_mode_changes_read_fndecl_25597_fns
++max_cmd_sg_entries_ctlr_info_25601_fns max_cmd_sg_entries ctlr_info 0 25601 NULL
++size_hpi_message_header_25619_fns size hpi_message_header 0 25619 NULL
++ceph_osdc_alloc_request_fndecl_25622_fns ceph_osdc_alloc_request fndecl 3 25622 NULL
++profile_replace_fndecl_25647_fns profile_replace fndecl 3 25647 NULL
++nvmet_rdma_alloc_sgl_fndecl_25655_fns nvmet_rdma_alloc_sgl fndecl 3 25655 NULL
++min_bytes_needed_fndecl_25664_fns min_bytes_needed fndecl 0 25664 NULL
++nvme_trans_log_info_exceptions_fndecl_25670_fns nvme_trans_log_info_exceptions fndecl 3 25670 NULL
++bnxt_change_mtu_fndecl_25675_fns bnxt_change_mtu fndecl 2 25675 NULL nohasharray
++pipeline_enc_tx_stat_fifo_int_read_fndecl_25675_fns pipeline_enc_tx_stat_fifo_int_read fndecl 3 25675 &bnxt_change_mtu_fndecl_25675_fns
++persistent_ram_ecc_string_fndecl_25699_fns persistent_ram_ecc_string fndecl 0 25699 NULL
++ntfs_file_fsync_fndecl_25706_fns ntfs_file_fsync fndecl 2-3 25706 NULL
++max_cid_space_cnic_local_25708_fns max_cid_space cnic_local 0 25708 NULL
++vfd_write_fndecl_25710_fns vfd_write fndecl 3 25710 NULL
++nr_scanned_scan_control_25733_fns nr_scanned scan_control 0 25733 NULL
++get_pas_size_fndecl_25739_fns get_pas_size fndecl 0 25739 NULL
++pvr2_i2c_write_fndecl_25754_fns pvr2_i2c_write fndecl 4 25754 NULL
++regmap_range_read_file_fndecl_25764_fns regmap_range_read_file fndecl 3 25764 NULL
++rx_rx_cmplt_read_fndecl_25778_fns rx_rx_cmplt_read fndecl 3 25778 NULL
++btrfs_inode_extref_name_len_fndecl_25779_fns btrfs_inode_extref_name_len fndecl 0 25779 NULL
++hpet_readl_fndecl_25794_fns hpet_readl fndecl 0 25794 NULL
++pg_base_nfs_pgio_mirror_25798_fns pg_base nfs_pgio_mirror 0 25798 NULL
++keys_proc_write_fndecl_25819_fns keys_proc_write fndecl 3 25819 NULL
++__kfifo_in_fndecl_25822_fns __kfifo_in fndecl 3 25822 NULL
++ext4_kvmalloc_fndecl_25823_fns ext4_kvmalloc fndecl 1 25823 NULL
++alloc_tx_struct_fndecl_25886_fns alloc_tx_struct fndecl 1 25886 NULL
++walk_page_range_fndecl_25894_fns walk_page_range fndecl 0 25894 NULL
++ath6kl_regdump_read_fndecl_25898_fns ath6kl_regdump_read fndecl 3 25898 NULL
++nfp_net_tx_ring_alloc_fndecl_25907_fns nfp_net_tx_ring_alloc fndecl 2 25907 NULL
++kvm_vcpu_gfn_to_hva_prot_fndecl_25911_fns kvm_vcpu_gfn_to_hva_prot fndecl 2 25911 NULL
++mtd_concat_create_fndecl_25923_fns mtd_concat_create fndecl 2 25923 NULL nohasharray
++d40_pool_lli_alloc_fndecl_25923_fns d40_pool_lli_alloc fndecl 3 25923 &mtd_concat_create_fndecl_25923_fns
++get_kcore_size_fndecl_25930_fns get_kcore_size fndecl 0 25930 NULL
++debugfs_read_file_bool_fndecl_25937_fns debugfs_read_file_bool fndecl 3 25937 NULL
++kvm_hv_set_msr_common_fndecl_25940_fns kvm_hv_set_msr_common fndecl 3 25940 NULL
++__media_entity_enum_init_fndecl_25953_fns __media_entity_enum_init fndecl 2 25953 NULL nohasharray
++lro_xid_fc_lport_25953_fns lro_xid fc_lport 0 25953 &__media_entity_enum_init_fndecl_25953_fns
++_iwl_dbgfs_sram_write_fndecl_25972_fns _iwl_dbgfs_sram_write fndecl 3 25972 NULL
++tx_max_out_mpt_lan_priv_25974_fns tx_max_out mpt_lan_priv 0 25974 NULL
++ieee80211_if_read_dot11MeshGateAnnouncementProtocol_fndecl_25989_fns ieee80211_if_read_dot11MeshGateAnnouncementProtocol fndecl 3 25989 NULL
++tas571x_reg_read_multiword_fndecl_26030_fns tas571x_reg_read_multiword fndecl 4 26030 NULL
++hex_dump_to_buffer_fndecl_26039_fns hex_dump_to_buffer fndecl 0-2-4-3 26039 NULL
++ocfs2_debug_read_fndecl_26040_fns ocfs2_debug_read fndecl 3 26040 NULL
++picolcd_debug_eeprom_read_fndecl_26054_fns picolcd_debug_eeprom_read fndecl 3 26054 NULL
++_pcol_init_fndecl_26056_fns _pcol_init fndecl 2 26056 NULL
++dataflash_read_user_otp_fndecl_26075_fns dataflash_read_user_otp fndecl 2-3 26075 NULL nohasharray
++ep0_write_fndecl_26075_fns ep0_write fndecl 3 26075 &dataflash_read_user_otp_fndecl_26075_fns
++alloc_bitmap_fndecl_26079_fns alloc_bitmap fndecl 1 26079 NULL
++idmap_pipe_downcall_fndecl_26092_fns idmap_pipe_downcall fndecl 3 26092 NULL
++qp_host_alloc_queue_fndecl_26101_fns qp_host_alloc_queue fndecl 1 26101 NULL
++snd_fw_async_midi_port_init_fndecl_26127_fns snd_fw_async_midi_port_init fndecl 4 26127 NULL
++ipwireless_ppp_mru_fndecl_26146_fns ipwireless_ppp_mru fndecl 0 26146 NULL
++zram_major_vardecl_zram_drv_c_26180_fns zram_major vardecl_zram_drv.c 0 26180 NULL
++iscsi_create_endpoint_fndecl_26186_fns iscsi_create_endpoint fndecl 1 26186 NULL
++SYSC_setdomainname_fndecl_26207_fns SYSC_setdomainname fndecl 2 26207 NULL
++data_len_kernel_ipmi_msg_26209_fns data_len kernel_ipmi_msg 0 26209 NULL
++i40iw_allocate_virt_mem_fndecl_26210_fns i40iw_allocate_virt_mem fndecl 3 26210 NULL
++clone_range_fndecl_26212_fns clone_range fndecl 6-5 26212 NULL
++blk_queue_init_tags_fndecl_26227_fns blk_queue_init_tags fndecl 2 26227 NULL
++command_setflickerctrl_fndecl_26233_fns command_setflickerctrl fndecl 0 26233 NULL
++iwl_dbgfs_sram_write_fndecl_26260_fns iwl_dbgfs_sram_write fndecl 3 26260 NULL
++il_dbgfs_rx_stats_read_fndecl_26264_fns il_dbgfs_rx_stats_read fndecl 3 26264 NULL
++jumbo_size_qset_params_26273_fns jumbo_size qset_params 0 26273 NULL
++n_hdlc_tty_write_fndecl_26279_fns n_hdlc_tty_write fndecl 4 26279 NULL
++tx_data_length_hso_serial_26287_fns tx_data_length hso_serial 0 26287 NULL
++wacom_led_putimage_fndecl_26291_fns wacom_led_putimage fndecl 4 26291 NULL
++alloc_ring_fndecl_26338_fns alloc_ring fndecl 2-4 26338 NULL
++ept_prefetch_gpte_fndecl_26343_fns ept_prefetch_gpte fndecl 4 26343 NULL
++ioread16_fndecl_26365_fns ioread16 fndecl 0 26365 NULL
++mrp_attr_create_fndecl_26390_fns mrp_attr_create fndecl 3 26390 NULL
++__krealloc_fndecl_26394_fns __krealloc fndecl 2 26394 NULL nohasharray
++lcd_write_fndecl_26394_fns lcd_write fndecl 3 26394 &__krealloc_fndecl_26394_fns
++get_user_cpu_mask_fndecl_26398_fns get_user_cpu_mask fndecl 2 26398 NULL
++omap_hwmod_count_resources_fndecl_26400_fns omap_hwmod_count_resources fndecl 0 26400 NULL
++netlbl_catmap_walk_fndecl_26405_fns netlbl_catmap_walk fndecl 0 26405 NULL
++krealloc_fndecl_26415_fns krealloc fndecl 2 26415 NULL
++acpi_os_allocate_fndecl_26431_fns acpi_os_allocate fndecl 1 26431 NULL
++start_cif_cam_fndecl_26442_fns start_cif_cam fndecl 0 26442 NULL
++usbat_bulk_read_fndecl_26469_fns usbat_bulk_read fndecl 4 26469 NULL
++queue_cnt_fndecl_26484_fns queue_cnt fndecl 0 26484 NULL
++videobuf_read_stream_fndecl_26495_fns videobuf_read_stream fndecl 3 26495 NULL
++setkey_fndecl_26520_fns setkey fndecl 3 26520 NULL nohasharray
++num_tc_mlx5e_params_26520_fns num_tc mlx5e_params 0 26520 &setkey_fndecl_26520_fns
++vmap_fndecl_26530_fns vmap fndecl 2 26530 NULL
++npages_kvm_memory_slot_26541_fns npages kvm_memory_slot 0 26541 NULL
++sctp_setsockopt_default_sndinfo_fndecl_26544_fns sctp_setsockopt_default_sndinfo fndecl 3 26544 NULL
++ath10k_debug_fw_checksums_read_fndecl_26549_fns ath10k_debug_fw_checksums_read fndecl 3 26549 NULL
++cld_pipe_downcall_fndecl_26561_fns cld_pipe_downcall fndecl 3 26561 NULL
++ieee80211_if_read_uapsd_max_sp_len_fndecl_26568_fns ieee80211_if_read_uapsd_max_sp_len fndecl 3 26568 NULL
++nfs4_write_cached_acl_fndecl_26573_fns nfs4_write_cached_acl fndecl 4 26573 NULL
++read_file_node_aggr_fndecl_26579_fns read_file_node_aggr fndecl 3 26579 NULL
++nvme_trans_completion_fndecl_26597_fns nvme_trans_completion fndecl 0 26597 NULL
++cache_write_fndecl_26630_fns cache_write fndecl 3 26630 NULL
++read_file_antenna_fndecl_26645_fns read_file_antenna fndecl 3 26645 NULL
++iio_device_add_event_sysfs_fndecl_26664_fns iio_device_add_event_sysfs fndecl 0 26664 NULL
++wil_read_back_fndecl_26724_fns wil_read_back fndecl 3 26724 NULL
++debugfs_attr_write_fndecl_26732_fns debugfs_attr_write fndecl 3 26732 NULL
++cache_downcall_fndecl_26737_fns cache_downcall fndecl 3 26737 NULL
++len_osd_sg_entry_26755_fns len osd_sg_entry 0 26755 NULL
++num_phys_expander_device_26765_fns num_phys expander_device 0 26765 NULL
++fw_iso_buffer_alloc_fndecl_26779_fns fw_iso_buffer_alloc fndecl 2 26779 NULL
++audit_unpack_string_fndecl_26791_fns audit_unpack_string fndecl 3 26791 NULL
++iio_storage_bytes_for_si_fndecl_26798_fns iio_storage_bytes_for_si fndecl 0 26798 NULL
++fb_sys_read_fndecl_26817_fns fb_sys_read fndecl 3 26817 NULL
++qlcnic_max_rings_fndecl_26823_fns qlcnic_max_rings fndecl 0 26823 NULL
++ath6kl_mgmt_powersave_ap_fndecl_26828_fns ath6kl_mgmt_powersave_ap fndecl 6 26828 NULL
++edid_size_ufx_data_26833_fns edid_size ufx_data 0 26833 NULL
++hsi_register_board_info_fndecl_26863_fns hsi_register_board_info fndecl 2 26863 NULL
++kvm_read_nested_guest_page_fndecl_26890_fns kvm_read_nested_guest_page fndecl 5 26890 NULL
++read_file_phy_err_fndecl_26901_fns read_file_phy_err fndecl 3 26901 NULL
++reexecute_instruction_fndecl_26906_fns reexecute_instruction fndecl 2 26906 NULL
++edma_prep_slave_sg_fndecl_26917_fns edma_prep_slave_sg fndecl 3 26917 NULL
++cache_ctr_fndecl_26919_fns cache_ctr fndecl 2 26919 NULL
++jfs_xattr_set_os2_fndecl_26923_fns jfs_xattr_set_os2 fndecl 6 26923 NULL
++round_event_name_len_fndecl_26935_fns round_event_name_len fndecl 0 26935 NULL
++axi_dmac_prep_dma_cyclic_fndecl_26953_fns axi_dmac_prep_dma_cyclic fndecl 4-3 26953 NULL
++kvm_vcpu_gfn_to_hva_fndecl_26957_fns kvm_vcpu_gfn_to_hva fndecl 2 26957 NULL
++iso_sched_alloc_fndecl_26962_fns iso_sched_alloc fndecl 1 26962 NULL nohasharray
++wep_key_not_found_read_fndecl_26962_fns wep_key_not_found_read fndecl 3 26962 &iso_sched_alloc_fndecl_26962_fns
++len_hidraw_report_26966_fns len hidraw_report 0 26966 NULL
++fid_len_xfs_fid_27000_fns fid_len xfs_fid 0 27000 NULL
++netxen_alloc_sds_rings_fndecl_27002_fns netxen_alloc_sds_rings fndecl 2 27002 NULL
++ath6kl_cfg80211_connect_event_fndecl_27024_fns ath6kl_cfg80211_connect_event fndecl 7 27024 NULL
++data_read_fndecl_27045_fns data_read fndecl 3 27045 NULL
++ieee80211_if_read_tdls_wider_bw_fndecl_27066_fns ieee80211_if_read_tdls_wider_bw fndecl 3 27066 NULL
++bm_init_fndecl_27082_fns bm_init fndecl 2 27082 NULL
++smk_write_mapped_fndecl_27100_fns smk_write_mapped fndecl 3 27100 NULL
++ieee80211_if_read_ap_power_level_fndecl_27109_fns ieee80211_if_read_ap_power_level fndecl 3 27109 NULL
++acpi_table_parse_entries_array_fndecl_27120_fns acpi_table_parse_entries_array fndecl 0 27120 NULL
++cnt_set_multicast_27125_fns cnt set_multicast 0 27125 NULL
++do_proc_readlink_fndecl_27139_fns do_proc_readlink fndecl 3 27139 NULL
++compat_sys_pselect6_fndecl_27146_fns compat_sys_pselect6 fndecl 1 27146 NULL
++sys_bpf_fndecl_27150_fns sys_bpf fndecl 3 27150 NULL
++nilfs_attach_checkpoint_fndecl_27152_fns nilfs_attach_checkpoint fndecl 2 27152 NULL
++cfs_hash_rehash_bits_fndecl_27208_fns cfs_hash_rehash_bits fndecl 0 27208 NULL
++em_canid_change_fndecl_27221_fns em_canid_change fndecl 3 27221 NULL
++datafab_read_data_fndecl_27257_fns datafab_read_data fndecl 4 27257 NULL
++mx_sb_len_sg_io_hdr_27261_fns mx_sb_len sg_io_hdr 0 27261 NULL
++sys_kexec_load_fndecl_27293_fns sys_kexec_load fndecl 2 27293 NULL
++cifs_strict_fsync_fndecl_27308_fns cifs_strict_fsync fndecl 2-3 27308 NULL
++nrelocs_radeon_cs_parser_27313_fns nrelocs radeon_cs_parser 0 27313 NULL
++btrfs_token_file_extent_ram_bytes_fndecl_27316_fns btrfs_token_file_extent_ram_bytes fndecl 0 27316 NULL
++dma_declare_coherent_memory_fndecl_27319_fns dma_declare_coherent_memory fndecl 4 27319 NULL
++read_default_ldt_fndecl_27341_fns read_default_ldt fndecl 2 27341 NULL
++snd_seq_oss_readq_new_fndecl_27352_fns snd_seq_oss_readq_new fndecl 2 27352 NULL
++n_mcgrps_genl_family_27362_fns n_mcgrps genl_family 0 27362 NULL
++ext_tree_layoutupdate_size_fndecl_27368_fns ext_tree_layoutupdate_size fndecl 0-2 27368 NULL
++msg_namelen_msghdr_27389_fns msg_namelen msghdr 0 27389 NULL
++evdev_ioctl_compat_fndecl_27400_fns evdev_ioctl_compat fndecl 2 27400 NULL
++max_packages_vardecl_uncore_c_27449_fns max_packages vardecl_uncore.c 0 27449 NULL
++tool_peer_mw_read_fndecl_27484_fns tool_peer_mw_read fndecl 3 27484 NULL
++iwl_dbgfs_protection_mode_read_fndecl_27492_fns iwl_dbgfs_protection_mode_read fndecl 3 27492 NULL
++ieee80211_if_read_dot11MeshForwarding_fndecl_27495_fns ieee80211_if_read_dot11MeshForwarding fndecl 3 27495 NULL
++rq_size_srpt_rdma_ch_27500_fns rq_size srpt_rdma_ch 0 27500 NULL nohasharray
++ath10k_read_nf_cal_period_fndecl_27500_fns ath10k_read_nf_cal_period fndecl 3 27500 &rq_size_srpt_rdma_ch_27500_fns
++lpfc_idiag_queacc_read_fndecl_27501_fns lpfc_idiag_queacc_read fndecl 3 27501 NULL
++rx_buf_size_bnx2x_fastpath_27506_fns rx_buf_size bnx2x_fastpath 0 27506 NULL
++dvb_demux_read_fndecl_27534_fns dvb_demux_read fndecl 3 27534 NULL
++sddr09_write_data_fndecl_27565_fns sddr09_write_data fndecl 3 27565 NULL
++pci_add_ext_cap_save_buffer_fndecl_27587_fns pci_add_ext_cap_save_buffer fndecl 3 27587 NULL
++dvb_usercopy_fndecl_27591_fns dvb_usercopy fndecl 2 27591 NULL
++md_alloc_fndecl_27600_fns md_alloc fndecl 1 27600 NULL
++iscsi_create_flashnode_conn_fndecl_27605_fns iscsi_create_flashnode_conn fndecl 4 27605 NULL
++snoop_urb_data_fndecl_27635_fns snoop_urb_data fndecl 2 27635 NULL
++sta_agg_status_read_fndecl_27641_fns sta_agg_status_read fndecl 3 27641 NULL
++error_res_proc_context_27648_fns error res_proc_context 0 27648 NULL
++nvkm_event_init_fndecl_27654_fns nvkm_event_init fndecl 2-3 27654 NULL
++masq_device_event_fndecl_27665_fns masq_device_event fndecl 0 27665 NULL
++mr_write_fndecl_27670_fns mr_write fndecl 0 27670 NULL
++tlbflush_write_file_fndecl_27685_fns tlbflush_write_file fndecl 3 27685 NULL
++_iwl_dbgfs_prph_reg_write_fndecl_27686_fns _iwl_dbgfs_prph_reg_write fndecl 3 27686 NULL
++vhci_put_user_fndecl_27695_fns vhci_put_user fndecl 4 27695 NULL
++hvc_alloc_fndecl_27696_fns hvc_alloc fndecl 4 27696 NULL
++pcpu_extend_area_map_fndecl_27710_fns pcpu_extend_area_map fndecl 2 27710 NULL
++fsblog_xfs_da_geometry_27717_fns fsblog xfs_da_geometry 0 27717 NULL
++pwr_rcvd_awake_bcns_cnt_read_fndecl_27723_fns pwr_rcvd_awake_bcns_cnt_read fndecl 3 27723 NULL
++xstate_size__fpx_sw_bytes_27731_fns xstate_size _fpx_sw_bytes 0 27731 NULL
++si_blocks_ocfs2_slot_info_27753_fns si_blocks ocfs2_slot_info 0 27753 NULL
++sel_read_class_fndecl_27758_fns sel_read_class fndecl 3 27758 NULL
++dwc3_link_state_write_fndecl_27762_fns dwc3_link_state_write fndecl 3 27762 NULL
++rtw_android_get_link_speed_fndecl_27772_fns rtw_android_get_link_speed fndecl 0 27772 NULL
++raid_disks_pool_info_27784_fns raid_disks pool_info 0 27784 NULL
++nr_ports_solos_card_27804_fns nr_ports solos_card 0 27804 NULL
++iwl_dbgfs_calib_disabled_write_fndecl_27824_fns iwl_dbgfs_calib_disabled_write fndecl 3 27824 NULL
++roundup_brcmf_sdio_27833_fns roundup brcmf_sdio 0 27833 NULL
++ieee80211_if_read_num_buffered_multicast_fndecl_27839_fns ieee80211_if_read_num_buffered_multicast fndecl 3 27839 NULL
++ieee80211_if_read_dot11MeshMaxRetries_fndecl_27847_fns ieee80211_if_read_dot11MeshMaxRetries fndecl 3 27847 NULL
++traceSMB_proc_write_fndecl_27848_fns traceSMB_proc_write fndecl 3 27848 NULL
++key_rx_spec_read_fndecl_27859_fns key_rx_spec_read fndecl 3 27859 NULL
++listxattr_fndecl_27890_fns listxattr fndecl 3 27890 NULL
++lbq_len_rx_ring_27913_fns lbq_len rx_ring 0 27913 NULL
++il_dbgfs_nvm_read_fndecl_27923_fns il_dbgfs_nvm_read fndecl 3 27923 NULL
++usbat_hp8200e_rw_block_test_fndecl_27957_fns usbat_hp8200e_rw_block_test fndecl 5-13 27957 NULL
++pcbit_writecmd_fndecl_27967_fns pcbit_writecmd fndecl 2 27967 NULL
++parser_init_byte_stream_fndecl_27973_fns parser_init_byte_stream fndecl 2 27973 NULL
++mptctl_ioctl_fndecl_27984_fns mptctl_ioctl fndecl 2 27984 NULL
++__nf_ct_ext_add_length_fndecl_27999_fns __nf_ct_ext_add_length fndecl 3 27999 NULL
++scif_recv_fndecl_28006_fns scif_recv fndecl 3 28006 NULL
++xfs_iext_inline_to_direct_fndecl_28019_fns xfs_iext_inline_to_direct fndecl 2 28019 NULL
++write_file_dump_fndecl_28020_fns write_file_dump fndecl 3 28020 NULL nohasharray
++populate_dir_fndecl_28020_fns populate_dir fndecl 0 28020 &write_file_dump_fndecl_28020_fns
++evtchn_alloc_ring_fndecl_28034_fns evtchn_alloc_ring fndecl 1 28034 NULL
++cfs_array_alloc_fndecl_28042_fns cfs_array_alloc fndecl 2 28042 NULL
++ieee80211_if_read_num_mcast_sta_fndecl_28048_fns ieee80211_if_read_num_mcast_sta fndecl 3 28048 NULL
++s_imap_blocks_minix_sb_info_28062_fns s_imap_blocks minix_sb_info 0 28062 NULL
++_mv88e6xxx_port_fdb_load_fndecl_28093_fns _mv88e6xxx_port_fdb_load fndecl 4 28093 NULL
++fnic_trace_ctrl_read_fndecl_28098_fns fnic_trace_ctrl_read fndecl 3 28098 NULL
++stream_next_buffer_check_queue_fndecl_28114_fns stream_next_buffer_check_queue fndecl 0 28114 NULL
++cfg80211_disconnected_fndecl_28155_fns cfg80211_disconnected fndecl 4 28155 NULL
++read_file_tpc_fndecl_28162_fns read_file_tpc fndecl 3 28162 NULL
++__dn_setsockopt_fndecl_28183_fns __dn_setsockopt fndecl 5 28183 NULL
++ttm_dma_pool_alloc_new_pages_fndecl_28194_fns ttm_dma_pool_alloc_new_pages fndecl 3 28194 NULL
++snd_rme96_playback_copy_fndecl_28196_fns snd_rme96_playback_copy fndecl 5 28196 NULL
++bfad_debugfs_read_fndecl_28204_fns bfad_debugfs_read fndecl 3 28204 NULL
++xattr_getsecurity_fndecl_28209_fns xattr_getsecurity fndecl 0 28209 NULL
++wil_seq_hexdump_fndecl_28225_fns wil_seq_hexdump fndecl 3 28225 NULL
++pwr_disable_ps_read_fndecl_28267_fns pwr_disable_ps_read fndecl 3 28267 NULL
++pbdma_nr_gk104_fifo_28278_fns pbdma_nr gk104_fifo 0 28278 NULL
++mmc_ext_csd_read_fndecl_28294_fns mmc_ext_csd_read fndecl 3 28294 NULL
++create_trace_uprobe_fndecl_28307_fns create_trace_uprobe fndecl 1 28307 NULL
++xhci_segment_alloc_fndecl_28310_fns xhci_segment_alloc fndecl 3 28310 NULL
++comedi_read_fndecl_28316_fns comedi_read fndecl 3 28316 NULL
++set_video_mode_Kiara_fndecl_28325_fns set_video_mode_Kiara fndecl 4 28325 NULL
++_iwl_dbgfs_disable_power_off_write_fndecl_28328_fns _iwl_dbgfs_disable_power_off_write fndecl 3 28328 NULL
++mwifiex_debug_mask_read_fndecl_28341_fns mwifiex_debug_mask_read fndecl 3 28341 NULL
++fnic_trace_ctrl_write_fndecl_28350_fns fnic_trace_ctrl_write fndecl 3 28350 NULL
++j_blocksize_journal_s_28358_fns j_blocksize journal_s 0 28358 NULL
++dma_lch_count_vardecl_dma_c_28369_fns dma_lch_count vardecl_dma.c 0 28369 NULL
++init_tid_tabs_fndecl_28375_fns init_tid_tabs fndecl 4-3-2 28375 NULL nohasharray
++usbat_multiple_write_fndecl_28375_fns usbat_multiple_write fndecl 4 28375 &init_tid_tabs_fndecl_28375_fns
++bio_integrity_trim_fndecl_28376_fns bio_integrity_trim fndecl 2-3 28376 NULL
++simple_attr_write_fndecl_28383_fns simple_attr_write fndecl 3 28383 NULL
++__bpf_fill_ja_fndecl_28393_fns __bpf_fill_ja fndecl 2 28393 NULL
++lpfc_idiag_mbxacc_get_setup_fndecl_28401_fns lpfc_idiag_mbxacc_get_setup fndecl 0 28401 NULL
++il4965_stats_flag_fndecl_28402_fns il4965_stats_flag fndecl 0 28402 NULL
++sd_major_fndecl_28413_fns sd_major fndecl 1-0 28413 NULL
++__inet_insert_ifa_fndecl_28418_fns __inet_insert_ifa fndecl 0 28418 NULL nohasharray
++xfs_inumbers_fmt_fndecl_28418_fns xfs_inumbers_fmt fndecl 3 28418 &__inet_insert_ifa_fndecl_28418_fns
++hpi_init_messageV1_fndecl_28435_fns hpi_init_messageV1 fndecl 2 28435 NULL
++stripe_size_bcache_device_28454_fns stripe_size bcache_device 0 28454 NULL
++data_out_size_mpt3_ioctl_command_28472_fns data_out_size mpt3_ioctl_command 0 28472 NULL
++spidev_ioctl_fndecl_28477_fns spidev_ioctl fndecl 2 28477 NULL
++csa_nrclists_cb_sequenceargs_28491_fns csa_nrclists cb_sequenceargs 0 28491 NULL
++get_leb_cnt_fndecl_28495_fns get_leb_cnt fndecl 0-2 28495 NULL
++num_vmdq_msix_i40e_pf_28501_fns num_vmdq_msix i40e_pf 0 28501 NULL
++rds_pages_in_vec_fndecl_28521_fns rds_pages_in_vec fndecl 0 28521 NULL
++get_virtual_node_size_fndecl_28543_fns get_virtual_node_size fndecl 0 28543 NULL
++mlx5_cmd_fc_bulk_alloc_fndecl_28547_fns mlx5_cmd_fc_bulk_alloc fndecl 3 28547 NULL
++mwifiex_send_delba_fndecl_28557_fns mwifiex_send_delba fndecl 2 28557 NULL
++wil_write_back_fndecl_28568_fns wil_write_back fndecl 3 28568 NULL
++nvme_npages_fndecl_28569_fns nvme_npages fndecl 0-1 28569 NULL
++ufx_i2c_wait_busy_fndecl_28574_fns ufx_i2c_wait_busy fndecl 0 28574 NULL
++_iwl_dbgfs_ss_force_write_fndecl_28587_fns _iwl_dbgfs_ss_force_write fndecl 3 28587 NULL
++i915_gem_gtt_pread_fndecl_28595_fns i915_gem_gtt_pread fndecl 3-4 28595 NULL
++tmc_read_fndecl_28597_fns tmc_read fndecl 3 28597 NULL
++bm_status_write_fndecl_28599_fns bm_status_write fndecl 3 28599 NULL nohasharray
++menu_count_uvc_xu_control_mapping_28599_fns menu_count uvc_xu_control_mapping 0 28599 &bm_status_write_fndecl_28599_fns
++hfi1_rcvarr_split_vardecl_init_c_28624_fns hfi1_rcvarr_split vardecl_init.c 0 28624 NULL nohasharray
++mgmt_get_if_info_fndecl_28624_fns mgmt_get_if_info fndecl 0 28624 &hfi1_rcvarr_split_vardecl_init_c_28624_fns
++_get_block_create_0_fndecl_28632_fns _get_block_create_0 fndecl 2 28632 NULL
++alloc_size_chunk_28657_fns alloc_size chunk 0 28657 NULL
++offset_cache_reader_28697_fns offset cache_reader 0 28697 NULL
++lpfc_idiag_ctlacc_write_fndecl_28715_fns lpfc_idiag_ctlacc_write fndecl 3 28715 NULL
++oprofilefs_ulong_to_user_fndecl_28717_fns oprofilefs_ulong_to_user fndecl 3 28717 NULL
++note_last_dentry_fndecl_28724_fns note_last_dentry fndecl 3 28724 NULL nohasharray
++d40_prep_memcpy_fndecl_28724_fns d40_prep_memcpy fndecl 4 28724 &note_last_dentry_fndecl_28724_fns
++skb_cow_data_fndecl_28734_fns skb_cow_data fndecl 0 28734 NULL
++size_mspro_sys_attr_28742_fns size mspro_sys_attr 0 28742 NULL
++batadv_iv_ogm_orig_del_if_fndecl_28743_fns batadv_iv_ogm_orig_del_if fndecl 2 28743 NULL
++batadv_iv_ogm_orig_add_if_fndecl_28753_fns batadv_iv_ogm_orig_add_if fndecl 2 28753 NULL
++fw_device_op_ioctl_fndecl_28760_fns fw_device_op_ioctl fndecl 2 28760 NULL
++snic_print_desc_fndecl_28784_fns snic_print_desc fndecl 3 28784 NULL
++C_SYSC_migrate_pages_fndecl_28785_fns C_SYSC_migrate_pages fndecl 2 28785 NULL
++fill_swm_input_fndecl_28799_fns fill_swm_input fndecl 0 28799 NULL
++brcmf_fil_bsscfg_data_set_fndecl_28806_fns brcmf_fil_bsscfg_data_set fndecl 4 28806 NULL
++sisusb_send_bridge_packet_fndecl_28818_fns sisusb_send_bridge_packet fndecl 2 28818 NULL
++split_fndecl_28856_fns split fndecl 2 28856 NULL
++snd_ctl_elem_user_tlv_fndecl_28860_fns snd_ctl_elem_user_tlv fndecl 3 28860 NULL
++br_fdb_update_fndecl_28873_fns br_fdb_update fndecl 4 28873 NULL
++TupleOffset_tuple_t_28876_fns TupleOffset tuple_t 0 28876 NULL
++flags_read_fndecl_28903_fns flags_read fndecl 3 28903 NULL
++ieee80211_get_num_supported_channels_fndecl_28907_fns ieee80211_get_num_supported_channels fndecl 0 28907 NULL
++iwl_dbgfs_qos_read_fndecl_28922_fns iwl_dbgfs_qos_read fndecl 3 28922 NULL
++ecdh_make_pub_key_fndecl_28927_fns ecdh_make_pub_key fndecl 2 28927 NULL
++wil_write_led_blink_time_fndecl_28933_fns wil_write_led_blink_time fndecl 3 28933 NULL
++usbat_write_block_fndecl_28938_fns usbat_write_block fndecl 4-6 28938 NULL
++ath6kl_power_params_write_fndecl_28953_fns ath6kl_power_params_write fndecl 3 28953 NULL
++iwl_dbgfs_ss_force_read_fndecl_28968_fns iwl_dbgfs_ss_force_read fndecl 3 28968 NULL
++sel_write_create_fndecl_29002_fns sel_write_create fndecl 3 29002 NULL
++__kfifo_out_peek_fndecl_29010_fns __kfifo_out_peek fndecl 0-3 29010 NULL nohasharray
++construct_key_fndecl_29010_fns construct_key fndecl 3 29010 &__kfifo_out_peek_fndecl_29010_fns
++seq_copy_in_user_fndecl_29019_fns seq_copy_in_user fndecl 3 29019 NULL
++max_physical_pkg_id_vardecl_smpboot_c_29028_fns max_physical_pkg_id vardecl_smpboot.c 0 29028 NULL
++drm_vblank_init_fndecl_29041_fns drm_vblank_init fndecl 2 29041 NULL
++of_get_available_child_count_fndecl_29042_fns of_get_available_child_count fndecl 0 29042 NULL
++devm_mfd_add_devices_fndecl_29043_fns devm_mfd_add_devices fndecl 4 29043 NULL
++qib_get_base_info_fndecl_29050_fns qib_get_base_info fndecl 3 29050 NULL
++str_to_user_fndecl_29056_fns str_to_user fndecl 2 29056 NULL
++___alloc_bootmem_fndecl_29057_fns ___alloc_bootmem fndecl 1 29057 NULL
++adis16480_show_firmware_revision_fndecl_29066_fns adis16480_show_firmware_revision fndecl 3 29066 NULL
++i40e_dbg_command_write_fndecl_29070_fns i40e_dbg_command_write fndecl 3 29070 NULL
++dev_irnet_write_fndecl_29077_fns dev_irnet_write fndecl 3 29077 NULL
++ablkcipher_edesc_alloc_fndecl_29119_fns ablkcipher_edesc_alloc fndecl 2 29119 NULL
++pci_set_power_state_fndecl_29124_fns pci_set_power_state fndecl 0 29124 NULL nohasharray
++sca3000_read_first_n_hw_rb_fndecl_29124_fns sca3000_read_first_n_hw_rb fndecl 2 29124 &pci_set_power_state_fndecl_29124_fns
++tool_peer_mw_write_fndecl_29137_fns tool_peer_mw_write fndecl 3 29137 NULL
++max_dump_cnt_ramoops_context_29141_fns max_dump_cnt ramoops_context 0 29141 NULL
++kmem_zalloc_fndecl_29157_fns kmem_zalloc fndecl 1 29157 NULL
++current_rx_bytes_printer_dev_29165_fns current_rx_bytes printer_dev 0 29165 NULL
++dwc2_hsotg_send_reply_fndecl_29174_fns dwc2_hsotg_send_reply fndecl 4 29174 NULL
++vp_try_to_find_vqs_fndecl_29181_fns vp_try_to_find_vqs fndecl 2 29181 NULL
++ieee80211_if_read_user_power_level_fndecl_29185_fns ieee80211_if_read_user_power_level fndecl 3 29185 NULL
++brcmf_config_wowl_pattern_fndecl_29198_fns brcmf_config_wowl_pattern fndecl 4 29198 NULL
++notifier_call_chain_fndecl_29207_fns notifier_call_chain fndecl 0 29207 NULL
++dvb_dmxdev_buffer_write_fndecl_29234_fns dvb_dmxdev_buffer_write fndecl 0 29234 NULL
++il4965_ucode_tx_stats_read_fndecl_29235_fns il4965_ucode_tx_stats_read fndecl 3 29235 NULL
++ptc_proc_write_fndecl_29247_fns ptc_proc_write fndecl 3 29247 NULL
++rtw_malloc2d_fndecl_29269_fns rtw_malloc2d fndecl 3-2-1 29269 NULL
++ib_uverbs_open_xrcd_fndecl_29276_fns ib_uverbs_open_xrcd fndecl 4-5 29276 NULL
++vmbus_open_fndecl_29289_fns vmbus_open fndecl 3-2 29289 NULL
++_iwl_dbgfs_tof_range_req_ext_write_fndecl_29290_fns _iwl_dbgfs_tof_range_req_ext_write fndecl 3 29290 NULL
++btmrvl_sdio_host_to_card_fndecl_29291_fns btmrvl_sdio_host_to_card fndecl 3 29291 NULL
++msg_size_adf_etr_ring_data_29295_fns msg_size adf_etr_ring_data 0 29295 NULL
++xfs_handle_to_dentry_fndecl_29300_fns xfs_handle_to_dentry fndecl 3 29300 NULL
++rawv6_seticmpfilter_fndecl_29306_fns rawv6_seticmpfilter fndecl 5 29306 NULL
++fnic_reset_stats_write_fndecl_29314_fns fnic_reset_stats_write fndecl 3 29314 NULL
++total_size_orangefs_bufmap_29333_fns total_size orangefs_bufmap 0 29333 NULL nohasharray
++num_sge_ib_recv_wr_29333_fns num_sge ib_recv_wr 0 29333 &total_size_orangefs_bufmap_29333_fns
++fuse_get_req_fndecl_29358_fns fuse_get_req fndecl 2 29358 NULL nohasharray
++aat2870_reg_read_file_fndecl_29358_fns aat2870_reg_read_file fndecl 3 29358 &fuse_get_req_fndecl_29358_fns
++tx_ring_size_pxa168_eth_private_29372_fns tx_ring_size pxa168_eth_private 0 29372 NULL
++ib_uverbs_unmarshall_recv_fndecl_29384_fns ib_uverbs_unmarshall_recv fndecl 5 29384 NULL
++__alloc_bootmem_low_nopanic_fndecl_29400_fns __alloc_bootmem_low_nopanic fndecl 1 29400 NULL nohasharray
++octeon_alloc_recv_info_fndecl_29400_fns octeon_alloc_recv_info fndecl 1 29400 &__alloc_bootmem_low_nopanic_fndecl_29400_fns
++rts51x_read_status_fndecl_29477_fns rts51x_read_status fndecl 4 29477 NULL
++sctp_setsockopt_maxseg_fndecl_29478_fns sctp_setsockopt_maxseg fndecl 3 29478 NULL
++nf_nat_sdp_media_fndecl_29508_fns nf_nat_sdp_media fndecl 9 29508 NULL
++ecryptfs_copy_filename_fndecl_29519_fns ecryptfs_copy_filename fndecl 4 29519 NULL
++unix_stream_connect_fndecl_29527_fns unix_stream_connect fndecl 3 29527 NULL
++nvbios_rd16_fndecl_29576_fns nvbios_rd16 fndecl 0 29576 NULL
++xstateregs_get_fndecl_29585_fns xstateregs_get fndecl 4 29585 NULL
++rxe_pool_init_index_fndecl_29612_fns rxe_pool_init_index fndecl 2-3 29612 NULL
++nicvf_init_snd_queue_fndecl_29640_fns nicvf_init_snd_queue fndecl 3 29640 NULL
++acpi_rs_set_resource_header_fndecl_29642_fns acpi_rs_set_resource_header fndecl 2 29642 NULL
++er_extcount_xfs_ext_irec_29646_fns er_extcount xfs_ext_irec 0 29646 NULL
++control_read_fndecl_29649_fns control_read fndecl 6 29649 NULL
++count_vfio_pci_hot_reset_info_29655_fns count vfio_pci_hot_reset_info 0 29655 NULL
++split_node_fndecl_29659_fns split_node fndecl 0 29659 NULL nohasharray
++ls_num_lprocfs_stats_29659_fns ls_num lprocfs_stats 0 29659 &split_node_fndecl_29659_fns
++i40e_pci_sriov_configure_fndecl_29688_fns i40e_pci_sriov_configure fndecl 2 29688 NULL
++rds_message_alloc_fndecl_29702_fns rds_message_alloc fndecl 1 29702 NULL
++get_vm_area_caller_fndecl_29708_fns get_vm_area_caller fndecl 1 29708 NULL
++maxframe_vardecl_n_hdlc_c_29719_fns maxframe vardecl_n_hdlc.c 0 29719 NULL
++pipeline_defrag_to_rx_xfer_swi_read_fndecl_29788_fns pipeline_defrag_to_rx_xfer_swi_read fndecl 3 29788 NULL
++supply_map_read_file_fndecl_29795_fns supply_map_read_file fndecl 3 29795 NULL
++ima_show_htable_violations_fndecl_29800_fns ima_show_htable_violations fndecl 3 29800 NULL
++otp_read_fndecl_29809_fns otp_read fndecl 2-4-5 29809 NULL nohasharray
++vbe_state_size_uvesafb_par_29809_fns vbe_state_size uvesafb_par 0 29809 &otp_read_fndecl_29809_fns
++si_lasti_bfs_sb_info_29842_fns si_lasti bfs_sb_info 0 29842 NULL
++len_ethtool_dump_29843_fns len ethtool_dump 0 29843 NULL
++fq_alloc_node_fndecl_29850_fns fq_alloc_node fndecl 1 29850 NULL
++nfs_idmap_lookup_id_fndecl_29879_fns nfs_idmap_lookup_id fndecl 2 29879 NULL
++parport_write_fndecl_29886_fns parport_write fndecl 0 29886 NULL
++length_ndis_80211_pmkid_29893_fns length ndis_80211_pmkid 0 29893 NULL
++PageLength__CONFIG_PAGE_HEADER_29916_fns PageLength _CONFIG_PAGE_HEADER 0 29916 NULL
++error_error_frame_ctrl_read_fndecl_29919_fns error_error_frame_ctrl_read fndecl 3 29919 NULL
++sctp_getsockopt_maxseg_fndecl_29922_fns sctp_getsockopt_maxseg fndecl 2 29922 NULL
++sys_syslog_fndecl_29929_fns sys_syslog fndecl 3 29929 NULL
++msi_setup_entry_fndecl_29969_fns msi_setup_entry fndecl 2 29969 NULL
++iwl_dbgfs_tof_enable_read_fndecl_30005_fns iwl_dbgfs_tof_enable_read fndecl 3 30005 NULL
++msc_nfinalizers_lnet_msg_container_30006_fns msc_nfinalizers lnet_msg_container 0 30006 NULL
++__qlcnic_pci_sriov_enable_fndecl_30010_fns __qlcnic_pci_sriov_enable fndecl 2 30010 NULL
++snd_rme9652_capture_copy_fndecl_30012_fns snd_rme9652_capture_copy fndecl 5 30012 NULL
++read_file_spectral_count_fndecl_30019_fns read_file_spectral_count fndecl 3 30019 NULL
++mlx5e_setup_tc_fndecl_30023_fns mlx5e_setup_tc fndecl 2 30023 NULL
++read_emulate_fndecl_30037_fns read_emulate fndecl 2-4 30037 NULL
++ath6kl_listen_int_read_fndecl_30048_fns ath6kl_listen_int_read fndecl 3 30048 NULL
++sta_ht_capa_read_fndecl_30061_fns sta_ht_capa_read fndecl 3 30061 NULL
++do_compat_pselect_fndecl_30093_fns do_compat_pselect fndecl 1 30093 NULL
++ecryptfs_decode_and_decrypt_filename_fndecl_30104_fns ecryptfs_decode_and_decrypt_filename fndecl 5 30104 NULL
++if_real_bytes_xfs_ifork_30126_fns if_real_bytes xfs_ifork 0 30126 NULL
++ath10k_write_btcoex_fndecl_30144_fns ath10k_write_btcoex fndecl 3 30144 NULL
++num_tx_queues_ixgbevf_adapter_30155_fns num_tx_queues ixgbevf_adapter 0 30155 NULL
++send_section_size_netvsc_device_30166_fns send_section_size netvsc_device 0 30166 NULL
++rx_ring_size_pxa168_eth_private_30172_fns rx_ring_size pxa168_eth_private 0 30172 NULL
++event_phy_transmit_error_read_fndecl_30196_fns event_phy_transmit_error_read fndecl 3 30196 NULL
++buf_len_uvesafb_task_30200_fns buf_len uvesafb_task 0 30200 NULL
++hrp_nthrs_ptlrpc_hr_partition_30214_fns hrp_nthrs ptlrpc_hr_partition 0 30214 NULL
++minor_rbd_device_30216_fns minor rbd_device 0 30216 NULL
++__add_keyed_refs_fndecl_30230_fns __add_keyed_refs fndecl 3 30230 NULL
++tda10048_writeregbulk_fndecl_30265_fns tda10048_writeregbulk fndecl 4 30265 NULL
++count_argc_fndecl_30296_fns count_argc fndecl 0 30296 NULL
++alloc_alien_cache_fndecl_30308_fns alloc_alien_cache fndecl 2 30308 NULL
++tracing_buffers_read_fndecl_30311_fns tracing_buffers_read fndecl 3 30311 NULL
++kvm_write_guest_cached_fndecl_30321_fns kvm_write_guest_cached fndecl 4 30321 NULL
++avc_stream_set_format_fndecl_30322_fns avc_stream_set_format fndecl 5 30322 NULL
++tc90522_master_xfer_fndecl_30332_fns tc90522_master_xfer fndecl 3 30332 NULL
++nr_ops_rdma_rw_ctx_30338_fns nr_ops rdma_rw_ctx 0 30338 NULL
++len_snd_seq_ev_ext_30374_fns len snd_seq_ev_ext 0 30374 NULL
++il_dbgfs_rx_queue_read_fndecl_30406_fns il_dbgfs_rx_queue_read fndecl 3 30406 NULL
++nvec_used_msi_desc_30409_fns nvec_used msi_desc 0 30409 NULL
++get_pages_vram_fndecl_30416_fns get_pages_vram fndecl 2 30416 NULL
++decode_opaque_fixed_fndecl_30421_fns decode_opaque_fixed fndecl 3 30421 NULL
++of_irq_count_fndecl_30438_fns of_irq_count fndecl 0 30438 NULL
++comedi_alloc_spriv_fndecl_30449_fns comedi_alloc_spriv fndecl 2 30449 NULL
++rd_build_prot_space_fndecl_30490_fns rd_build_prot_space fndecl 2-3 30490 NULL
++vhost_add_used_n_fndecl_30491_fns vhost_add_used_n fndecl 3 30491 NULL
++kvm_read_guest_atomic_fndecl_30494_fns kvm_read_guest_atomic fndecl 4-2 30494 NULL
++ttm_dma_page_pool_free_fndecl_30527_fns ttm_dma_page_pool_free fndecl 2 30527 NULL
++wMaxCommand_wdm_device_30565_fns wMaxCommand wdm_device 0 30565 NULL
++wil_read_led_blink_time_fndecl_30567_fns wil_read_led_blink_time fndecl 3 30567 NULL
++snd_pcm_oss_write1_fndecl_30571_fns snd_pcm_oss_write1 fndecl 3 30571 NULL
++wiidebug_drm_write_fndecl_30572_fns wiidebug_drm_write fndecl 3 30572 NULL
++mbox_test_message_read_fndecl_30588_fns mbox_test_message_read fndecl 3 30588 NULL
++get_scq_fndecl_30594_fns get_scq fndecl 2 30594 NULL
++tifm_alloc_adapter_fndecl_30596_fns tifm_alloc_adapter fndecl 1 30596 NULL
++kobject_add_fndecl_30644_fns kobject_add fndecl 0 30644 NULL
++ci_port_test_write_fndecl_30657_fns ci_port_test_write fndecl 3 30657 NULL
++xfrm_hash_alloc_fndecl_30694_fns xfrm_hash_alloc fndecl 1 30694 NULL
++rx_filter_accum_arp_pend_requests_read_fndecl_30696_fns rx_filter_accum_arp_pend_requests_read fndecl 3 30696 NULL
++bm_entry_read_fndecl_30707_fns bm_entry_read fndecl 3 30707 NULL
++sched_autogroup_write_fndecl_30715_fns sched_autogroup_write fndecl 3 30715 NULL
++__alloc_preds_fndecl_30727_fns __alloc_preds fndecl 2 30727 NULL
++mlx5_wq_cyc_get_size_fndecl_30741_fns mlx5_wq_cyc_get_size fndecl 0 30741 NULL
++iwl_dbgfs_fw_dbg_conf_read_fndecl_30753_fns iwl_dbgfs_fw_dbg_conf_read fndecl 3 30753 NULL
++command_setvloffset_fndecl_30761_fns command_setvloffset fndecl 0 30761 NULL
++lp_write_fndecl_30772_fns lp_write fndecl 3 30772 NULL
++ocrdma_alloc_mr_fndecl_30774_fns ocrdma_alloc_mr fndecl 3 30774 NULL
++inj_readme_read_fndecl_30779_fns inj_readme_read fndecl 3 30779 NULL
++fw_node_create_fndecl_30788_fns fw_node_create fndecl 2 30788 NULL
++kobj_map_fndecl_30797_fns kobj_map fndecl 3-2 30797 NULL nohasharray
++ogm_buff_len_batadv_priv_bat_v_30797_fns ogm_buff_len batadv_priv_bat_v 0 30797 &kobj_map_fndecl_30797_fns
++iwl_dbgfs_bf_params_read_fndecl_30805_fns iwl_dbgfs_bf_params_read fndecl 3 30805 NULL
++il_dbgfs_missed_beacon_write_fndecl_30809_fns il_dbgfs_missed_beacon_write fndecl 3 30809 NULL
++shadow_root_level_kvm_mmu_30842_fns shadow_root_level kvm_mmu 0 30842 NULL
++saa7164_buffer_alloc_user_fndecl_30856_fns saa7164_buffer_alloc_user fndecl 2 30856 NULL
++lov_ost_pool_add_fndecl_30857_fns lov_ost_pool_add fndecl 3 30857 NULL
++snd_emu10k1_fx8010_read_fndecl_30870_fns snd_emu10k1_fx8010_read fndecl 5 30870 NULL
++do_sync_fndecl_30871_fns do_sync fndecl 1 30871 NULL
++ceph_copy_user_to_page_vector_fndecl_30896_fns ceph_copy_user_to_page_vector fndecl 3-4 30896 NULL
++__erst_read_from_storage_fndecl_30921_fns __erst_read_from_storage fndecl 0 30921 NULL
++cpci_hp_register_bus_fndecl_30935_fns cpci_hp_register_bus fndecl 2 30935 NULL
++dns_query_fndecl_30943_fns dns_query fndecl 3 30943 NULL
++parse_uac2_sample_rate_range_fndecl_30949_fns parse_uac2_sample_rate_range fndecl 0 30949 NULL
++SYSC_ppoll_fndecl_30954_fns SYSC_ppoll fndecl 2 30954 NULL
++lowpan_control_write_fndecl_30960_fns lowpan_control_write fndecl 3 30960 NULL
++__list_lru_count_one_fndecl_30962_fns __list_lru_count_one fndecl 0 30962 NULL
++ieee80211_if_read_aid_fndecl_30970_fns ieee80211_if_read_aid fndecl 3 30970 NULL
++tx_tx_prepared_descs_read_fndecl_30998_fns tx_tx_prepared_descs_read fndecl 3 30998 NULL
++btrfs_search_slot_fndecl_31011_fns btrfs_search_slot fndecl 0 31011 NULL
++max_order_mthca_buddy_31017_fns max_order mthca_buddy 0 31017 NULL
++internal_depth_MPT3SAS_ADAPTER_31035_fns internal_depth MPT3SAS_ADAPTER 0 31035 NULL
++hisi_clk_init_fndecl_31037_fns hisi_clk_init fndecl 2 31037 NULL
++krb5_nfold_fndecl_31038_fns krb5_nfold fndecl 1-3 31038 NULL
++iwl_dbgfs_stations_read_fndecl_31054_fns iwl_dbgfs_stations_read fndecl 3 31054 NULL nohasharray
++samsung_clk_alloc_reg_dump_fndecl_31054_fns samsung_clk_alloc_reg_dump fndecl 2 31054 &iwl_dbgfs_stations_read_fndecl_31054_fns
++le_max_key_size_write_fndecl_31068_fns le_max_key_size_write fndecl 3 31068 NULL
++get_pipes_num_fndecl_31084_fns get_pipes_num fndecl 0 31084 NULL
++nvme_trans_fmt_get_parm_header_fndecl_31087_fns nvme_trans_fmt_get_parm_header fndecl 2 31087 NULL
++name_len_inotify_event_info_31116_fns name_len inotify_event_info 0 31116 NULL
++reiserfs_write_end_fndecl_31117_fns reiserfs_write_end fndecl 5-3 31117 NULL
++dbgfs_sram_len_iwl_priv_31119_fns dbgfs_sram_len iwl_priv 0 31119 NULL
++nr_chips_dsa_platform_data_31127_fns nr_chips dsa_platform_data 0 31127 NULL
++read_fndecl_31142_fns read fndecl 3 31142 NULL
++size_stp_policy_id_31167_fns size stp_policy_id 0 31167 NULL
++bm_realloc_pages_fndecl_31172_fns bm_realloc_pages fndecl 2 31172 NULL
++ffs_ep0_write_fndecl_31181_fns ffs_ep0_write fndecl 3 31181 NULL
++op_size_ost_pool_31182_fns op_size ost_pool 0 31182 NULL
++nf_nat_sip_expect_fndecl_31193_fns nf_nat_sip_expect fndecl 8 31193 NULL
++agp_generic_alloc_user_fndecl_31213_fns agp_generic_alloc_user fndecl 1 31213 NULL nohasharray
++get_registers_fndecl_31213_fns get_registers fndecl 4 31213 &agp_generic_alloc_user_fndecl_31213_fns
++iwch_alloc_mr_fndecl_31220_fns iwch_alloc_mr fndecl 3 31220 NULL
++kmalloc_array_fndecl_31223_fns kmalloc_array fndecl 1-2 31223 NULL
++SYSC_move_pages_fndecl_31249_fns SYSC_move_pages fndecl 2 31249 NULL
++ath10k_tpc_stats_read_fndecl_31267_fns ath10k_tpc_stats_read fndecl 3 31267 NULL
++aat2870_dump_reg_fndecl_31280_fns aat2870_dump_reg fndecl 0 31280 NULL
++igb_enable_sriov_fndecl_31288_fns igb_enable_sriov fndecl 2 31288 NULL
++asymmetric_key_generate_id_fndecl_31299_fns asymmetric_key_generate_id fndecl 4-2 31299 NULL
++get_elem_size_fndecl_31341_fns get_elem_size fndecl 2-0 31341 NULL
++__virtio_clear_bit_fndecl_31359_fns __virtio_clear_bit fndecl 2 31359 NULL
++wilc_scan_fndecl_31368_fns wilc_scan fndecl 5-7 31368 NULL
++dev_get_valid_name_fndecl_31369_fns dev_get_valid_name fndecl 0 31369 NULL
++brcmf_msgbuf_init_pktids_fndecl_31395_fns brcmf_msgbuf_init_pktids fndecl 1 31395 NULL
++asd_store_update_bios_fndecl_31398_fns asd_store_update_bios fndecl 4 31398 NULL
++persistent_ram_vmap_fndecl_31402_fns persistent_ram_vmap fndecl 1-2 31402 NULL
++proc_pid_attr_read_fndecl_31406_fns proc_pid_attr_read fndecl 3 31406 NULL
++zone_count_msb_data_31413_fns zone_count msb_data 0 31413 NULL
++rx_out_of_mem_read_fndecl_31422_fns rx_out_of_mem_read fndecl 3 31422 NULL
++__check_eq_u32_array_fndecl_31439_fns __check_eq_u32_array fndecl 4-6 31439 NULL
++lkdtm_debugfs_entry_fndecl_31452_fns lkdtm_debugfs_entry fndecl 3 31452 NULL
++max_sz_mmc_test_area_31453_fns max_sz mmc_test_area 0 31453 NULL
++nr_voices_seq_oss_synthinfo_31487_fns nr_voices seq_oss_synthinfo 0 31487 NULL
++regmap_multi_reg_write_bypassed_fndecl_31492_fns regmap_multi_reg_write_bypassed fndecl 3 31492 NULL
++start_genius_videocam_live_fndecl_31552_fns start_genius_videocam_live fndecl 0 31552 NULL
++ieee80211_if_read_state_fndecl_31558_fns ieee80211_if_read_state fndecl 3 31558 NULL
++bio_alloc_map_data_fndecl_31573_fns bio_alloc_map_data fndecl 1 31573 NULL
++vmcb_nested_state_31575_fns vmcb nested_state 0 31575 NULL
++ib_uverbs_resize_cq_fndecl_31583_fns ib_uverbs_resize_cq fndecl 4-5 31583 NULL
++compute_real_fndecl_31605_fns compute_real fndecl 1-0 31605 NULL
++wil_read_file_ioblob_fndecl_31621_fns wil_read_file_ioblob fndecl 3 31621 NULL
++ping_v4_sendmsg_fndecl_31624_fns ping_v4_sendmsg fndecl 3 31624 NULL
++pmcraid_alloc_sglist_fndecl_31643_fns pmcraid_alloc_sglist fndecl 1 31643 NULL
++cntrnameslen_hfi1_devdata_31650_fns cntrnameslen hfi1_devdata 0 31650 NULL
++nonpaging_page_fault_fndecl_31655_fns nonpaging_page_fault fndecl 2 31655 NULL
++snd_midi_event_new_fndecl_31670_fns snd_midi_event_new fndecl 1 31670 NULL nohasharray
++bm_register_write_fndecl_31670_fns bm_register_write fndecl 3 31670 &snd_midi_event_new_fndecl_31670_fns
++read_file_misc_fndecl_31695_fns read_file_misc fndecl 3 31695 NULL
++iwl_dbgfs_prph_reg_read_fndecl_31707_fns iwl_dbgfs_prph_reg_read fndecl 3 31707 NULL
++transport_len_sockaddr_rxrpc_31772_fns transport_len sockaddr_rxrpc 0 31772 NULL
++i40e_init_msix_fndecl_31776_fns i40e_init_msix fndecl 0 31776 NULL
++fore200e_chunk_alloc_fndecl_31782_fns fore200e_chunk_alloc fndecl 3-4 31782 NULL
++dev_config_fndecl_31785_fns dev_config fndecl 3 31785 NULL
++afs_cell_lookup_fndecl_31793_fns afs_cell_lookup fndecl 2 31793 NULL
++target_submit_cmd_map_sgls_fndecl_31806_fns target_submit_cmd_map_sgls fndecl 11 31806 NULL
++snd_malloc_sgbuf_pages_fndecl_31815_fns snd_malloc_sgbuf_pages fndecl 2 31815 NULL
++needed_size_conf_writedata_31827_fns needed_size conf_writedata 0 31827 NULL
++mpls_rt_alloc_fndecl_31835_fns mpls_rt_alloc fndecl 1-2 31835 NULL
++cache_slow_downcall_fndecl_31849_fns cache_slow_downcall fndecl 2 31849 NULL
++isr_dma0_done_read_fndecl_31853_fns isr_dma0_done_read fndecl 3 31853 NULL
++profile_remove_fndecl_31871_fns profile_remove fndecl 3 31871 NULL
++tower_write_fndecl_31895_fns tower_write fndecl 3 31895 NULL
++max_packet_size_snd_line6_pcm_31899_fns max_packet_size snd_line6_pcm 0 31899 NULL
++it821x_firmware_command_fndecl_31911_fns it821x_firmware_command fndecl 3 31911 NULL
++scsi_dma_map_fndecl_31915_fns scsi_dma_map fndecl 0 31915 NULL
++mtu_gsm_mux_31917_fns mtu gsm_mux 0 31917 NULL
++cfs_cpt_number_fndecl_31929_fns cfs_cpt_number fndecl 0 31929 NULL
++mlx5_vzalloc_fndecl_31940_fns mlx5_vzalloc fndecl 1 31940 NULL
++init_header_fndecl_31980_fns init_header fndecl 0 31980 NULL
++arcfb_write_fndecl_31981_fns arcfb_write fndecl 3 31981 NULL
++record_size_ramoops_context_31989_fns record_size ramoops_context 0 31989 NULL nohasharray
++lbs_bcnmiss_read_fndecl_31989_fns lbs_bcnmiss_read fndecl 3 31989 &record_size_ramoops_context_31989_fns
++rproc_trace_read_fndecl_31997_fns rproc_trace_read fndecl 3 31997 NULL
++blocksize_sddr09_card_info_32003_fns blocksize sddr09_card_info 0 32003 NULL
++rt2x00debug_write_bbp_fndecl_32007_fns rt2x00debug_write_bbp fndecl 3 32007 NULL
++play_iframe_fndecl_32008_fns play_iframe fndecl 3 32008 NULL
++ad7879_spi_multi_read_fndecl_32009_fns ad7879_spi_multi_read fndecl 3 32009 NULL
++recent_mt_proc_write_fndecl_32029_fns recent_mt_proc_write fndecl 3 32029 NULL
++skl_tplg_tlv_control_get_fndecl_32038_fns skl_tplg_tlv_control_get fndecl 3 32038 NULL
++kvm_mmu_page_set_gfn_fndecl_32050_fns kvm_mmu_page_set_gfn fndecl 2 32050 NULL
++g_num_of_iommus_vardecl_intel_iommu_c_32059_fns g_num_of_iommus vardecl_intel-iommu.c 0 32059 NULL
++__jfs_xattr_set_fndecl_32062_fns __jfs_xattr_set fndecl 4 32062 NULL
++assoc_sta_del_all_sta_32069_fns assoc_sta del_all_sta 0 32069 NULL
++rproc_recovery_write_fndecl_32074_fns rproc_recovery_write fndecl 3 32074 NULL
++pci_scan_slot_fndecl_32102_fns pci_scan_slot fndecl 2 32102 NULL
++lpfc_debugfs_max_slow_ring_trc_vardecl_lpfc_debugfs_c_32130_fns lpfc_debugfs_max_slow_ring_trc vardecl_lpfc_debugfs.c 0 32130 NULL
++ipwireless_send_packet_fndecl_32155_fns ipwireless_send_packet fndecl 4 32155 NULL
++pwm_buf_sz_usbduxsigma_private_32156_fns pwm_buf_sz usbduxsigma_private 0 32156 NULL
++vmalloc_usercopy_fndecl_32186_fns vmalloc_usercopy fndecl 1 32186 NULL
++ioat_alloc_ring_fndecl_32201_fns ioat_alloc_ring fndecl 2 32201 NULL
++nr_spis_v2m_data_32203_fns nr_spis v2m_data 0 32203 NULL
++k_offset_in_core_key_32212_fns k_offset in_core_key 0 32212 NULL
++seq_hex_dump_fndecl_32213_fns seq_hex_dump fndecl 7-4-5 32213 NULL
++xdi_copy_from_user_fndecl_32216_fns xdi_copy_from_user fndecl 4 32216 NULL
++generic_bin_search_fndecl_32235_fns generic_bin_search fndecl 0 32235 NULL
++roccat_common2_sysfs_read_fndecl_32252_fns roccat_common2_sysfs_read fndecl 6 32252 NULL
++report_count_hid_global_32260_fns report_count hid_global 0 32260 NULL
++sony_register_touchpad_fndecl_32262_fns sony_register_touchpad fndecl 2 32262 NULL
++venus_mkdir_fndecl_32276_fns venus_mkdir fndecl 4 32276 NULL
++qib_qsfp_dump_fndecl_32277_fns qib_qsfp_dump fndecl 0 32277 NULL
++find_num_cache_leaves_fndecl_32280_fns find_num_cache_leaves fndecl 0 32280 NULL
++vol_cdev_read_fndecl_32283_fns vol_cdev_read fndecl 3 32283 NULL
++get_pipes_fndecl_32291_fns get_pipes fndecl 0 32291 NULL
++num_gpes_vardecl_sysfs_c_32294_fns num_gpes vardecl_sysfs.c 0 32294 NULL
++il_dbgfs_clear_ucode_stats_write_fndecl_32299_fns il_dbgfs_clear_ucode_stats_write fndecl 3 32299 NULL
++alloc_urbs_fndecl_32307_fns alloc_urbs fndecl 0 32307 NULL
++snd_info_text_entry_write_fndecl_32315_fns snd_info_text_entry_write fndecl 3 32315 NULL
++_nfs42_proc_copy_fndecl_32323_fns _nfs42_proc_copy fndecl 2-7 32323 NULL
++fd_ioctl_fndecl_32343_fns fd_ioctl fndecl 3 32343 NULL
++fib_info_hash_alloc_fndecl_32352_fns fib_info_hash_alloc fndecl 1 32352 NULL
++snd_gus_dram_peek_fndecl_32373_fns snd_gus_dram_peek fndecl 4 32373 NULL
++snd_emu10k1_synth_copy_from_user_fndecl_32374_fns snd_emu10k1_synth_copy_from_user fndecl 5-3 32374 NULL
++transport_get_sectors_16_fndecl_32385_fns transport_get_sectors_16 fndecl 0 32385 NULL
++create_queues_fndecl_32403_fns create_queues fndecl 2-3 32403 NULL
++pt_buffer_setup_aux_fndecl_32418_fns pt_buffer_setup_aux fndecl 3 32418 NULL
++dvb_create_tsout_entity_fndecl_32460_fns dvb_create_tsout_entity fndecl 3 32460 NULL
++isr_irqs_read_fndecl_32462_fns isr_irqs_read fndecl 3 32462 NULL
++sigmadsp_write_i2c_fndecl_32482_fns sigmadsp_write_i2c fndecl 4 32482 NULL
++iwl_dbgfs_frame_stats_read_fndecl_32488_fns iwl_dbgfs_frame_stats_read fndecl 3 32488 NULL
++alloc_group_attrs_fndecl_32505_fns alloc_group_attrs fndecl 2 32505 NULL nohasharray
++altera_swap_ir_fndecl_32505_fns altera_swap_ir fndecl 2 32505 &alloc_group_attrs_fndecl_32505_fns
++transport_get_sectors_12_fndecl_32508_fns transport_get_sectors_12 fndecl 0 32508 NULL
++ctrl_out_fndecl_32539_fns ctrl_out fndecl 3-5 32539 NULL
++ev_next_dev_data_32542_fns ev_next dev_data 0 32542 NULL
++yurex_write_fndecl_32554_fns yurex_write fndecl 3 32554 NULL
++sys_prctl_fndecl_32557_fns sys_prctl fndecl 4 32557 NULL
++joydev_compat_ioctl_fndecl_32558_fns joydev_compat_ioctl fndecl 2 32558 NULL
++bcd2000_midi_handle_input_fndecl_32572_fns bcd2000_midi_handle_input fndecl 3 32572 NULL
++tx_tx_exch_expiry_read_fndecl_32574_fns tx_tx_exch_expiry_read fndecl 3 32574 NULL
++msg_print_ext_header_fndecl_32580_fns msg_print_ext_header fndecl 0 32580 NULL
++mlx5_modify_nic_vport_vlans_fndecl_32595_fns mlx5_modify_nic_vport_vlans fndecl 3 32595 NULL
++paging32_prefetch_gpte_fndecl_32604_fns paging32_prefetch_gpte fndecl 4 32604 NULL
++metronomefb_write_fndecl_32612_fns metronomefb_write fndecl 3 32612 NULL
++wa_nep_queue_fndecl_32649_fns wa_nep_queue fndecl 2 32649 NULL
++dvb_ringbuffer_pkt_next_fndecl_32657_fns dvb_ringbuffer_pkt_next fndecl 0-2 32657 NULL
++get_queue_depth_fndecl_32658_fns get_queue_depth fndecl 0 32658 NULL
++nrof_flowrings_brcmf_msgbuf_32666_fns nrof_flowrings brcmf_msgbuf 0 32666 NULL
++compressed_bio_size_fndecl_32676_fns compressed_bio_size fndecl 0-2 32676 NULL
++ab3100_get_set_reg_fndecl_32681_fns ab3100_get_set_reg fndecl 3 32681 NULL
++write_file_ani_fndecl_32709_fns write_file_ani fndecl 3 32709 NULL
++sysfs_merge_group_fndecl_32710_fns sysfs_merge_group fndecl 0 32710 NULL
++layout_commit_fndecl_32717_fns layout_commit fndecl 3 32717 NULL
++driver_stats_read_fndecl_32739_fns driver_stats_read fndecl 3 32739 NULL
++goto_low_power_fndecl_32741_fns goto_low_power fndecl 0 32741 NULL
++read_file_tgt_stats_fndecl_32748_fns read_file_tgt_stats fndecl 3 32748 NULL
++adjust_priv_size_fndecl_32756_fns adjust_priv_size fndecl 0-1 32756 NULL
++cp2112_hid_get_fndecl_32758_fns cp2112_hid_get fndecl 4 32758 NULL
++i2400m_rx_edata_fndecl_32764_fns i2400m_rx_edata fndecl 5 32764 NULL
++portcntrs_2_read_fndecl_32793_fns portcntrs_2_read fndecl 3 32793 NULL
++wilc_setup_multicast_filter_fndecl_32803_fns wilc_setup_multicast_filter fndecl 3 32803 NULL
++nvme_trans_log_temperature_fndecl_32822_fns nvme_trans_log_temperature fndecl 3 32822 NULL
++gather_array_fndecl_32850_fns gather_array fndecl 3 32850 NULL
++size_mem_cgroup_threshold_ary_32855_fns size mem_cgroup_threshold_ary 0 32855 NULL
++uvc_debugfs_stats_read_fndecl_32856_fns uvc_debugfs_stats_read fndecl 3 32856 NULL
++dz_divisor_dn_zone_32877_fns dz_divisor dn_zone 0 32877 NULL nohasharray
++dvb_ringbuffer_read_user_fndecl_32877_fns dvb_ringbuffer_read_user fndecl 3-0 32877 &dz_divisor_dn_zone_32877_fns
++btrfs_cow_block_fndecl_32885_fns btrfs_cow_block fndecl 0 32885 NULL nohasharray
++wilc_spi_write_fndecl_32885_fns wilc_spi_write fndecl 4 32885 &btrfs_cow_block_fndecl_32885_fns
++snd_gus_dram_read_fndecl_32893_fns snd_gus_dram_read fndecl 4 32893 NULL
++ipv6_getsockopt_sticky_fndecl_32916_fns ipv6_getsockopt_sticky fndecl 5 32916 NULL
++sta_flags_read_fndecl_32917_fns sta_flags_read fndecl 3 32917 NULL
++__add_action_fndecl_32937_fns __add_action fndecl 4 32937 NULL
++ttm_alloc_new_pages_fndecl_32971_fns ttm_alloc_new_pages fndecl 5 32971 NULL
++mtdchar_write_fndecl_33004_fns mtdchar_write fndecl 3 33004 NULL
++ion_ioctl_fndecl_33013_fns ion_ioctl fndecl 2 33013 NULL
++mlxsw_sp_port_ets_maxrate_set_fndecl_33018_fns mlxsw_sp_port_ets_maxrate_set fndecl 0 33018 NULL
++snd_rawmidi_read_fndecl_33026_fns snd_rawmidi_read fndecl 3 33026 NULL
++pipeline_pre_to_defrag_swi_read_fndecl_33042_fns pipeline_pre_to_defrag_swi_read fndecl 3 33042 NULL
++ath10k_read_simulate_fw_crash_fndecl_33056_fns ath10k_read_simulate_fw_crash fndecl 3 33056 NULL
++dev_read_fndecl_33058_fns dev_read fndecl 3 33058 NULL
++iov_iter_copy_from_user_atomic_fndecl_33059_fns iov_iter_copy_from_user_atomic fndecl 4 33059 NULL
++iio_device_add_info_mask_type_fndecl_33062_fns iio_device_add_info_mask_type fndecl 0 33062 NULL
++wil_read_pmccfg_fndecl_33071_fns wil_read_pmccfg fndecl 3 33071 NULL
++ocfs2_control_read_fndecl_33094_fns ocfs2_control_read fndecl 3 33094 NULL
++write_gssp_fndecl_33095_fns write_gssp fndecl 3 33095 NULL
++fl_create_fndecl_33120_fns fl_create fndecl 5 33120 NULL
++__iommu_alloc_buffer_fndecl_33122_fns __iommu_alloc_buffer fndecl 2 33122 NULL
++gnttab_map_fndecl_33124_fns gnttab_map fndecl 2 33124 NULL nohasharray
++drm_atomic_helper_legacy_gamma_set_fndecl_33124_fns drm_atomic_helper_legacy_gamma_set fndecl 5 33124 &gnttab_map_fndecl_33124_fns
++hvutil_transport_send_fndecl_33131_fns hvutil_transport_send fndecl 3 33131 NULL nohasharray
++ib_uverbs_alloc_mw_fndecl_33131_fns ib_uverbs_alloc_mw fndecl 4-5 33131 &hvutil_transport_send_fndecl_33131_fns
++store_msg_fndecl_33138_fns store_msg fndecl 3 33138 NULL
++__get_vm_area_caller_fndecl_33139_fns __get_vm_area_caller fndecl 1 33139 NULL
++putused_user_fndecl_33152_fns putused_user fndecl 3 33152 NULL
++walk_pgd_range_fndecl_33169_fns walk_pgd_range fndecl 0 33169 NULL
++cx231xx_init_isoc_fndecl_33174_fns cx231xx_init_isoc fndecl 3 33174 NULL
++data_avail_vardecl_core_c_33198_fns data_avail vardecl_core.c 0 33198 NULL
++num_lan_msix_i40e_pf_33223_fns num_lan_msix i40e_pf 0 33223 NULL
++ip_options_get_fndecl_33225_fns ip_options_get fndecl 4 33225 NULL
++vid_switchdev_notifier_fdb_info_33231_fns vid switchdev_notifier_fdb_info 0 33231 NULL
++alloc_apertures_fndecl_33250_fns alloc_apertures fndecl 1 33250 NULL
++rs_sta_dbgfs_stats_table_read_fndecl_33262_fns rs_sta_dbgfs_stats_table_read fndecl 3 33262 NULL
++mem_size_ramoops_platform_data_33263_fns mem_size ramoops_platform_data 0 33263 NULL
++cipso_v4_gentag_loc_fndecl_33292_fns cipso_v4_gentag_loc fndecl 0 33292 NULL
++ecryptfs_encrypt_and_encode_filename_fndecl_33297_fns ecryptfs_encrypt_and_encode_filename fndecl 5 33297 NULL
++tracing_set_trace_write_fndecl_33307_fns tracing_set_trace_write fndecl 3 33307 NULL
++ima_show_htable_value_fndecl_33315_fns ima_show_htable_value fndecl 2 33315 NULL
++_iwl_dbgfs_bf_params_write_fndecl_33318_fns _iwl_dbgfs_bf_params_write fndecl 3 33318 NULL
++acpi_gsb_i2c_read_bytes_fndecl_33322_fns acpi_gsb_i2c_read_bytes fndecl 4 33322 NULL
++dump_packet_fndecl_33346_fns dump_packet fndecl 2 33346 NULL
++stk_prepare_sio_buffers_fndecl_33347_fns stk_prepare_sio_buffers fndecl 2 33347 NULL
++rx_hw_stuck_read_fndecl_33352_fns rx_hw_stuck_read fndecl 3 33352 NULL
++udl_prime_create_fndecl_33364_fns udl_prime_create fndecl 2 33364 NULL nohasharray
++scanlength_usbvision_frame_33364_fns scanlength usbvision_frame 0 33364 &udl_prime_create_fndecl_33364_fns
++mlx5_core_sriov_enable_fndecl_33369_fns mlx5_core_sriov_enable fndecl 2 33369 NULL
++sys_io_getevents_fndecl_33381_fns sys_io_getevents fndecl 3 33381 NULL
++length_mac_configuration_hdr_33392_fns length mac_configuration_hdr 0 33392 NULL
++sys_poll_fndecl_33397_fns sys_poll fndecl 2 33397 NULL
++drbg_blocklen_fndecl_33412_fns drbg_blocklen fndecl 0 33412 NULL
++dma_fifo_alloc_fndecl_33415_fns dma_fifo_alloc fndecl 2-3-5 33415 NULL
++tt3650_ci_msg_fndecl_33424_fns tt3650_ci_msg fndecl 4 33424 NULL
++oprofilefs_ulong_from_user_fndecl_33456_fns oprofilefs_ulong_from_user fndecl 3 33456 NULL
++alloc_flex_gd_fndecl_33464_fns alloc_flex_gd fndecl 1 33464 NULL
++ftdi_elan_write_fndecl_33486_fns ftdi_elan_write fndecl 3 33486 NULL
++pstore_file_read_fndecl_33499_fns pstore_file_read fndecl 3 33499 NULL nohasharray
++num_rx_descs_iser_conn_33499_fns num_rx_descs iser_conn 0 33499 &pstore_file_read_fndecl_33499_fns
++__asymmetric_key_hex_to_key_id_fndecl_33513_fns __asymmetric_key_hex_to_key_id fndecl 3 33513 NULL nohasharray
++error_rx_excessive_frame_len_read_fndecl_33513_fns error_rx_excessive_frame_len_read fndecl 3 33513 &__asymmetric_key_hex_to_key_id_fndecl_33513_fns
++usblp_read_fndecl_33517_fns usblp_read fndecl 3 33517 NULL
++write_file_regval_fndecl_33522_fns write_file_regval fndecl 3 33522 NULL
++iwl_dbgfs_tx_pwr_lmt_read_fndecl_33527_fns iwl_dbgfs_tx_pwr_lmt_read fndecl 3 33527 NULL
++evdev_set_mask_fndecl_33528_fns evdev_set_mask fndecl 4 33528 NULL
++__mxt_write_reg_fndecl_33533_fns __mxt_write_reg fndecl 3 33533 NULL
++si476x_radio_read_agc_blob_fndecl_33538_fns si476x_radio_read_agc_blob fndecl 3 33538 NULL
++uinput_abs_setup_fndecl_33551_fns uinput_abs_setup fndecl 3 33551 NULL
++kvm_vcpu_read_guest_fndecl_33552_fns kvm_vcpu_read_guest fndecl 4-2 33552 NULL
++snd_rawmidi_kernel_write1_fndecl_33564_fns snd_rawmidi_kernel_write1 fndecl 4 33564 NULL
++batadv_tt_update_changes_fndecl_33580_fns batadv_tt_update_changes fndecl 3 33580 NULL
++hci_mgmt_cmd_fndecl_33591_fns hci_mgmt_cmd fndecl 4 33591 NULL
++strcspn_fndecl_33602_fns strcspn fndecl 0 33602 NULL
++__kfifo_out_fndecl_33612_fns __kfifo_out fndecl 3-0 33612 NULL
++hfi1_read_portcntrs_fndecl_33617_fns hfi1_read_portcntrs fndecl 0 33617 NULL
++scif_setup_qp_accept_fndecl_33630_fns scif_setup_qp_accept fndecl 4 33630 NULL nohasharray
++nf_getsockopt_fndecl_33630_fns nf_getsockopt fndecl 0 33630 &scif_setup_qp_accept_fndecl_33630_fns
++memblock_size_vxge_hw_mempool_33647_fns memblock_size vxge_hw_mempool 0 33647 NULL
++rxe_mem_init_fast_fndecl_33682_fns rxe_mem_init_fast fndecl 3 33682 NULL
++diva_get_driver_info_fndecl_33684_fns diva_get_driver_info fndecl 0 33684 NULL
++vlsi_alloc_ring_fndecl_33720_fns vlsi_alloc_ring fndecl 3-4 33720 NULL
++stub_chips_nr_vardecl_i2c_stub_c_33739_fns stub_chips_nr vardecl_i2c-stub.c 0 33739 NULL
++xfs_buf_read_map_fndecl_33742_fns xfs_buf_read_map fndecl 3 33742 NULL
++cx2341x_ctrl_new_std_fndecl_33782_fns cx2341x_ctrl_new_std fndecl 4 33782 NULL
++pcmcia_replace_cis_fndecl_33785_fns pcmcia_replace_cis fndecl 3 33785 NULL nohasharray
++do_jit_fndecl_33785_fns do_jit fndecl 0 33785 &pcmcia_replace_cis_fndecl_33785_fns
++sca3000_read_data_fndecl_33787_fns sca3000_read_data fndecl 4 33787 NULL
++gicv2m_init_one_fndecl_33791_fns gicv2m_init_one fndecl 3 33791 NULL
++edt_ft5x06_register_read_fndecl_33803_fns edt_ft5x06_register_read fndecl 0 33803 NULL
++dn_ide_drive_s_33823_fns dn ide_drive_s 0 33823 NULL
++add_partition_fndecl_33847_fns add_partition fndecl 2 33847 NULL
++rx_buf_total_size__mgslpc_info_33856_fns rx_buf_total_size _mgslpc_info 0 33856 NULL
++orangefs_fsync_fndecl_33879_fns orangefs_fsync fndecl 2-3 33879 NULL
++len_gsm_control_33882_fns len gsm_control 0 33882 NULL
++pktgen_if_write_fndecl_33887_fns pktgen_if_write fndecl 3 33887 NULL nohasharray
++reiserfs_xattr_get_fndecl_33887_fns reiserfs_xattr_get fndecl 0 33887 &pktgen_if_write_fndecl_33887_fns
++il_dbgfs_tx_queue_read_fndecl_33895_fns il_dbgfs_tx_queue_read fndecl 3 33895 NULL
++xfs_bmbt_maxrecs_fndecl_33906_fns xfs_bmbt_maxrecs fndecl 2 33906 NULL
++lpfc_idiag_queinfo_read_fndecl_33917_fns lpfc_idiag_queinfo_read fndecl 3 33917 NULL
++vfio_pci_igd_rw_fndecl_33918_fns vfio_pci_igd_rw fndecl 3 33918 NULL
++genl_allocate_reserve_groups_fndecl_33930_fns genl_allocate_reserve_groups fndecl 1 33930 NULL
++iwl_dbgfs_plcp_delta_write_fndecl_33937_fns iwl_dbgfs_plcp_delta_write fndecl 3 33937 NULL
++get_info_fndecl_33938_fns get_info fndecl 3 33938 NULL
++mei_dbgfs_write_allow_fa_fndecl_33943_fns mei_dbgfs_write_allow_fa fndecl 3 33943 NULL
++pm8001_store_update_fw_fndecl_33975_fns pm8001_store_update_fw fndecl 4 33975 NULL
++max_indirect_segments_blkfront_info_33976_fns max_indirect_segments blkfront_info 0 33976 NULL
++cwarn_cm4000_dev_33978_fns cwarn cm4000_dev 0 33978 NULL
++usbat_bulk_write_fndecl_33983_fns usbat_bulk_write fndecl 4 33983 NULL
++spi_data_write_fndecl_33987_fns spi_data_write fndecl 3 33987 NULL
++ethtool_copy_validate_indir_fndecl_33994_fns ethtool_copy_validate_indir fndecl 4 33994 NULL
++count_xfs_attr_sf_hdr_33996_fns count xfs_attr_sf_hdr 0 33996 NULL
++of_n_size_cells_fndecl_34009_fns of_n_size_cells fndecl 0 34009 NULL
++periodic_size_ehci_hcd_34013_fns periodic_size ehci_hcd 0 34013 NULL
++wqe_shift_mlx5_srq_attr_34020_fns wqe_shift mlx5_srq_attr 0 34020 NULL nohasharray
++uwb_rc_neh_grok_event_fndecl_34020_fns uwb_rc_neh_grok_event fndecl 3 34020 &wqe_shift_mlx5_srq_attr_34020_fns
++__kvm_write_guest_page_fndecl_34021_fns __kvm_write_guest_page fndecl 5-2 34021 NULL
++wil_addba_tx_request_fndecl_34039_fns wil_addba_tx_request fndecl 3 34039 NULL
++conf_read_fndecl_34041_fns conf_read fndecl 3 34041 NULL
++lov_get_stripecnt_fndecl_34066_fns lov_get_stripecnt fndecl 0-3 34066 NULL
++gsm_control_modem_fndecl_34068_fns gsm_control_modem fndecl 3 34068 NULL
++__get_vm_area_node_fndecl_34074_fns __get_vm_area_node fndecl 1 34074 NULL
++__memblock_alloc_base_fndecl_34092_fns __memblock_alloc_base fndecl 1 34092 NULL
++vme_user_read_fndecl_34105_fns vme_user_read fndecl 3 34105 NULL
++vb2_dvb_register_adapter_fndecl_34122_fns vb2_dvb_register_adapter fndecl 0 34122 NULL
++do_command_fndecl_34128_fns do_command fndecl 0 34128 NULL
++switchdev_port_fdb_add_fndecl_34145_fns switchdev_port_fdb_add fndecl 5 34145 NULL
++arm_iommu_alloc_attrs_fndecl_34147_fns arm_iommu_alloc_attrs fndecl 2 34147 NULL
++substream_count_snd_pcm_str_34149_fns substream_count snd_pcm_str 0 34149 NULL
++iwl_dbgfs_plcp_delta_read_fndecl_34172_fns iwl_dbgfs_plcp_delta_read fndecl 3 34172 NULL
++si476x_radio_read_rds_blckcnt_blob_fndecl_34192_fns si476x_radio_read_rds_blckcnt_blob fndecl 3 34192 NULL
++usbip_dump_buffer_fndecl_34210_fns usbip_dump_buffer fndecl 2 34210 NULL
++xen_evtchn_max_channels_fndecl_34213_fns xen_evtchn_max_channels fndecl 0 34213 NULL
++__vxge_hw_channel_allocate_fndecl_34229_fns __vxge_hw_channel_allocate fndecl 3 34229 NULL
++max_devs_supported_ipr_ioa_cfg_34240_fns max_devs_supported ipr_ioa_cfg 0 34240 NULL
++tx_tx_done_int_template_read_fndecl_34244_fns tx_tx_done_int_template_read fndecl 3 34244 NULL
++vb2_core_dqbuf_fndecl_34262_fns vb2_core_dqbuf fndecl 0 34262 NULL
++vb2_core_queue_init_fndecl_34278_fns vb2_core_queue_init fndecl 0 34278 NULL
++ea_get_fndecl_34289_fns ea_get fndecl 3 34289 NULL
++quirk_strict_duplicate_filter_read_fndecl_34330_fns quirk_strict_duplicate_filter_read fndecl 3 34330 NULL
++write_file_frameerrors_fndecl_34370_fns write_file_frameerrors fndecl 3 34370 NULL
++sel_read_handle_status_fndecl_34392_fns sel_read_handle_status fndecl 3 34392 NULL
++rawv6_setsockopt_fndecl_34422_fns rawv6_setsockopt fndecl 5 34422 NULL
++ath9k_dump_legacy_btcoex_fndecl_34449_fns ath9k_dump_legacy_btcoex fndecl 0 34449 NULL
++offsets_size_binder_transaction_data_34461_fns offsets_size binder_transaction_data 0 34461 NULL
++fd_copyin_fndecl_34468_fns fd_copyin fndecl 3 34468 NULL
++num_rx_queues_net_device_34480_fns num_rx_queues net_device 0 34480 NULL
++acpi_ex_get_serial_access_length_fndecl_34496_fns acpi_ex_get_serial_access_length fndecl 0-2 34496 NULL
++il4965_ucode_general_stats_read_fndecl_34502_fns il4965_ucode_general_stats_read fndecl 3 34502 NULL
++count_res_proc_context_34514_fns count res_proc_context 0 34514 NULL
++t_bch_control_34516_fns t bch_control 0 34516 NULL
++ogm_buff_len_batadv_hard_iface_bat_iv_34532_fns ogm_buff_len batadv_hard_iface_bat_iv 0 34532 NULL
++speakup_file_write_fndecl_34533_fns speakup_file_write fndecl 3 34533 NULL
++dvb_aplay_fndecl_34555_fns dvb_aplay fndecl 3 34555 NULL
++btmrvl_hscfgcmd_read_fndecl_34556_fns btmrvl_hscfgcmd_read fndecl 3 34556 NULL
++target_alloc_sgl_fndecl_34566_fns target_alloc_sgl fndecl 3 34566 NULL
++rx_ring_num_config_param_34571_fns rx_ring_num config_param 0 34571 NULL
++sb16_copy_from_user_fndecl_34575_fns sb16_copy_from_user fndecl 10-7-6 34575 NULL
++ip_hdrlen_fndecl_34618_fns ip_hdrlen fndecl 0 34618 NULL
++pm_qos_power_read_fndecl_34624_fns pm_qos_power_read fndecl 3 34624 NULL
++hsc_write_fndecl_34640_fns hsc_write fndecl 3 34640 NULL
++type_tw686x_dev_34645_fns type tw686x_dev 0 34645 NULL
++ramdisk_store_fndecl_34654_fns ramdisk_store fndecl 4 34654 NULL
++uwb_est_used_vardecl_est_c_34662_fns uwb_est_used vardecl_est.c 0 34662 NULL
++acpi_copy_property_array_string_fndecl_34680_fns acpi_copy_property_array_string fndecl 0 34680 NULL
++snd_pcm_hw_param_value_min_fndecl_34686_fns snd_pcm_hw_param_value_min fndecl 0 34686 NULL
++slip_maxdev_vardecl_slip_c_34688_fns slip_maxdev vardecl_slip.c 0 34688 NULL
++radeon_ring_init_fndecl_34693_fns radeon_ring_init fndecl 3 34693 NULL
++simple_read_from_buffer_fndecl_34694_fns simple_read_from_buffer fndecl 2-5-0 34694 NULL
++ceph_get_direct_page_vector_fndecl_34695_fns ceph_get_direct_page_vector fndecl 2 34695 NULL
++sel_read_policy_fndecl_34712_fns sel_read_policy fndecl 3 34712 NULL
++len_pagemapread_34714_fns len pagemapread 0 34714 NULL
++kvm_write_guest_virt_system_fndecl_34715_fns kvm_write_guest_virt_system fndecl 4-2 34715 NULL
++blockshift_sddr09_card_info_34748_fns blockshift sddr09_card_info 0 34748 NULL
++num_q_vectors_ixgbe_adapter_34808_fns num_q_vectors ixgbe_adapter 0 34808 NULL
++unix_dgram_connect_fndecl_34836_fns unix_dgram_connect fndecl 3 34836 NULL
++setsockopt_fndecl_34840_fns setsockopt fndecl 5 34840 NULL
++fw_iso_buffer_init_fndecl_34853_fns fw_iso_buffer_init fndecl 3 34853 NULL
++flags_write_fndecl_34858_fns flags_write fndecl 3 34858 NULL
++gk20a_instobj_ctor_iommu_fndecl_34861_fns gk20a_instobj_ctor_iommu fndecl 2 34861 NULL
++pset_prop_read_string_array_fndecl_34862_fns pset_prop_read_string_array fndecl 0 34862 NULL
++s_map_size_adfs_sb_info_34863_fns s_map_size adfs_sb_info 0 34863 NULL
++sddr09_writeX_fndecl_34870_fns sddr09_writeX fndecl 7 34870 NULL
++port_fops_write_fndecl_34928_fns port_fops_write fndecl 3 34928 NULL
++evm_read_key_fndecl_34945_fns evm_read_key fndecl 3 34945 NULL
++bio_kmalloc_fndecl_34947_fns bio_kmalloc fndecl 2 34947 NULL
++reiserfs_get_block_create_0_fndecl_34954_fns reiserfs_get_block_create_0 fndecl 2 34954 NULL
++fs_path_add_path_fndecl_34955_fns fs_path_add_path fndecl 0 34955 NULL
++dns_resolver_read_fndecl_34961_fns dns_resolver_read fndecl 3 34961 NULL
++n_it_fw_ohci_34963_fns n_it fw_ohci 0 34963 NULL
++simple_alloc_urb_fndecl_34966_fns simple_alloc_urb fndecl 3 34966 NULL
++bus_add_device_fndecl_34970_fns bus_add_device fndecl 0 34970 NULL
++rfkill_fop_read_fndecl_34980_fns rfkill_fop_read fndecl 3 34980 NULL
++kfd_gtt_sa_init_fndecl_34996_fns kfd_gtt_sa_init fndecl 3-2 34996 NULL
++error_elp_while_tx_read_fndecl_35002_fns error_elp_while_tx_read fndecl 3 35002 NULL
++ocfs2_control_write_fndecl_35010_fns ocfs2_control_write fndecl 3 35010 NULL
++kzalloc_fndecl_35015_fns kzalloc fndecl 1 35015 NULL
++wep_iv_read_fndecl_35019_fns wep_iv_read fndecl 3 35019 NULL
++lpfc_idiag_pcicfg_write_fndecl_35022_fns lpfc_idiag_pcicfg_write fndecl 3 35022 NULL
++ring_size_radeon_ring_35063_fns ring_size radeon_ring 0 35063 NULL
++adis16480_show_firmware_date_fndecl_35065_fns adis16480_show_firmware_date fndecl 3 35065 NULL
++set_video_mode_Timon_fndecl_35074_fns set_video_mode_Timon fndecl 4 35074 NULL
++number_scales_vardecl_powernow_k7_c_35080_fns number_scales vardecl_powernow-k7.c 0 35080 NULL
++sys_kexec_file_load_fndecl_35083_fns sys_kexec_file_load fndecl 3 35083 NULL nohasharray
++dlm_alloc_pagevec_fndecl_35083_fns dlm_alloc_pagevec fndecl 1 35083 &sys_kexec_file_load_fndecl_35083_fns
++reclaim_pages_fndecl_35086_fns reclaim_pages fndecl 3 35086 NULL
++sizeof_long_fndecl_35095_fns sizeof_long fndecl 0 35095 NULL
++vlan_id_net_bridge_fdb_entry_35107_fns vlan_id net_bridge_fdb_entry 0 35107 NULL
++path_setxattr_fndecl_35127_fns path_setxattr fndecl 4 35127 NULL
++__get_free_pages_fndecl_35139_fns __get_free_pages fndecl 0 35139 NULL
++br_fdb_add_fndecl_35145_fns br_fdb_add fndecl 5 35145 NULL
++read_file_credit_dist_stats_fndecl_35148_fns read_file_credit_dist_stats fndecl 3 35148 NULL
++readlink_copy_fndecl_35149_fns readlink_copy fndecl 2 35149 NULL nohasharray
++num_usb3_ports_xhci_hcd_35149_fns num_usb3_ports xhci_hcd 0 35149 &readlink_copy_fndecl_35149_fns
++br_fdb_fillbuf_fndecl_35152_fns br_fdb_fillbuf fndecl 0 35152 NULL
++__alloc_dev_table_fndecl_35156_fns __alloc_dev_table fndecl 2 35156 NULL
++snd_pcm_oss_read2_fndecl_35168_fns snd_pcm_oss_read2 fndecl 3 35168 NULL
++iwl_dbgfs_power_save_status_read_fndecl_35179_fns iwl_dbgfs_power_save_status_read fndecl 3 35179 NULL
++ah_alloc_tmp_fndecl_35193_fns ah_alloc_tmp fndecl 2-3 35193 NULL
++do_dccp_setsockopt_fndecl_35194_fns do_dccp_setsockopt fndecl 5 35194 NULL nohasharray
++intel_sdvo_write_cmd_fndecl_35194_fns intel_sdvo_write_cmd fndecl 4 35194 &do_dccp_setsockopt_fndecl_35194_fns
++copy_gadget_strings_fndecl_35202_fns copy_gadget_strings fndecl 2-3 35202 NULL
++nfs42_proc_llseek_fndecl_35267_fns nfs42_proc_llseek fndecl 2 35267 NULL
++p54_parse_default_country_fndecl_35309_fns p54_parse_default_country fndecl 3 35309 NULL
++vmci_transport_dgram_enqueue_fndecl_35310_fns vmci_transport_dgram_enqueue fndecl 4 35310 NULL nohasharray
++walk_pud_range_fndecl_35310_fns walk_pud_range fndecl 0 35310 &vmci_transport_dgram_enqueue_fndecl_35310_fns
++btrfs_ordered_sum_size_fndecl_35326_fns btrfs_ordered_sum_size fndecl 0-2 35326 NULL
++efw_transaction_fndecl_35359_fns efw_transaction fndecl 5-7 35359 NULL
++response_length_ib_uverbs_ex_create_wq_resp_35363_fns response_length ib_uverbs_ex_create_wq_resp 0 35363 NULL
++hx8357_spi_write_array_fndecl_35364_fns hx8357_spi_write_array fndecl 3 35364 NULL
++apei_exec_run_fndecl_35376_fns apei_exec_run fndecl 0 35376 NULL
++drm_dp_mst_topology_mgr_init_fndecl_35377_fns drm_dp_mst_topology_mgr_init fndecl 5-4 35377 NULL
++ath9k_hw_read_array_fndecl_35386_fns ath9k_hw_read_array fndecl 3 35386 NULL
++use_sg_st_buffer_35407_fns use_sg st_buffer 0 35407 NULL
++rxpipe_beacon_buffer_thres_host_int_trig_rx_data_read_fndecl_35409_fns rxpipe_beacon_buffer_thres_host_int_trig_rx_data_read fndecl 3 35409 NULL
++major_gendisk_35443_fns major gendisk 0 35443 NULL
++ieee80211_if_read_uapsd_queues_fndecl_35453_fns ieee80211_if_read_uapsd_queues fndecl 3 35453 NULL
++sel_write_relabel_fndecl_35464_fns sel_write_relabel fndecl 3 35464 NULL
++beiscsi_mccq_compl_wait_fndecl_35475_fns beiscsi_mccq_compl_wait fndecl 0 35475 NULL
++qxl_alloc_client_monitors_config_fndecl_35491_fns qxl_alloc_client_monitors_config fndecl 2 35491 NULL nohasharray
++ptlrpcd_partner_group_size_vardecl_ptlrpcd_c_35491_fns ptlrpcd_partner_group_size vardecl_ptlrpcd.c 0 35491 &qxl_alloc_client_monitors_config_fndecl_35491_fns
++sched_feat_write_fndecl_35505_fns sched_feat_write fndecl 3 35505 NULL
++spi_res_alloc_fndecl_35507_fns spi_res_alloc fndecl 3 35507 NULL
++cnt_usnic_vnic_res_desc_35511_fns cnt usnic_vnic_res_desc 0 35511 NULL
++__kfifo_dma_out_prepare_r_fndecl_35512_fns __kfifo_dma_out_prepare_r fndecl 4-5 35512 NULL
++dlci_change_mtu_fndecl_35513_fns dlci_change_mtu fndecl 2 35513 NULL
++ht40allow_map_read_fndecl_35514_fns ht40allow_map_read fndecl 3 35514 NULL
++do_raw_setsockopt_fndecl_35516_fns do_raw_setsockopt fndecl 5-0 35516 NULL
++ssp_send_instruction_fndecl_35549_fns ssp_send_instruction fndecl 5 35549 NULL
++rx_streaming_interval_read_fndecl_35560_fns rx_streaming_interval_read fndecl 3 35560 NULL
++copy_ctl_value_to_user_fndecl_35608_fns copy_ctl_value_to_user fndecl 5 35608 NULL
++flexcop_device_kmalloc_fndecl_35610_fns flexcop_device_kmalloc fndecl 1 35610 NULL
++maxcontacts_mt_device_35613_fns maxcontacts mt_device 0 35613 NULL
++write_rio_fndecl_35622_fns write_rio fndecl 3 35622 NULL
++cciss_add_gendisk_fndecl_35636_fns cciss_add_gendisk fndecl 0 35636 NULL
++broadsheet_spiflash_rewrite_sector_fndecl_35651_fns broadsheet_spiflash_rewrite_sector fndecl 2 35651 NULL
++printer_read_fndecl_35664_fns printer_read fndecl 3 35664 NULL
++ufx_ops_write_fndecl_35667_fns ufx_ops_write fndecl 3 35667 NULL
++wil_pmc_alloc_fndecl_35702_fns wil_pmc_alloc fndecl 2 35702 NULL
++bnx2x_change_mtu_fndecl_35710_fns bnx2x_change_mtu fndecl 2 35710 NULL
++len_igb_tx_buffer_35715_fns len igb_tx_buffer 0 35715 NULL
++mxms_structlen_fndecl_35720_fns mxms_structlen fndecl 0 35720 NULL
++size_irq_routing_options_35727_fns size irq_routing_options 0 35727 NULL
++iscsi_pool_init_fndecl_35730_fns iscsi_pool_init fndecl 2-4 35730 NULL nohasharray
++kobject_set_name_vargs_fndecl_35730_fns kobject_set_name_vargs fndecl 0 35730 &iscsi_pool_init_fndecl_35730_fns
++alauda_write_data_fndecl_35748_fns alauda_write_data fndecl 3 35748 NULL
++ath9k_dump_btcoex_fndecl_35766_fns ath9k_dump_btcoex fndecl 0 35766 NULL
++used_tty_buffer_35815_fns used tty_buffer 0 35815 NULL
++paging32_get_level1_sp_gpa_fndecl_35837_fns paging32_get_level1_sp_gpa fndecl 0 35837 NULL
++size_mvneta_tx_queue_35842_fns size mvneta_tx_queue 0 35842 NULL
++start_vga_cam_fndecl_35860_fns start_vga_cam fndecl 0 35860 NULL
++btrfs_set_stack_chunk_num_stripes_fndecl_35911_fns btrfs_set_stack_chunk_num_stripes fndecl 2 35911 NULL
++cifs_utf16_bytes_fndecl_35914_fns cifs_utf16_bytes fndecl 0 35914 NULL
++packet_count_efx_loopback_state_35918_fns packet_count efx_loopback_state 0 35918 NULL
++sigma_fw_load_control_fndecl_35922_fns sigma_fw_load_control fndecl 3 35922 NULL
++ath10k_read_btcoex_fndecl_35925_fns ath10k_read_btcoex fndecl 3 35925 NULL
++snd_pcm_new_stream_fndecl_35934_fns snd_pcm_new_stream fndecl 3 35934 NULL
++wMaxPacketSize_wdm_device_35940_fns wMaxPacketSize wdm_device 0 35940 NULL
++___alloc_bootmem_nopanic_fndecl_35945_fns ___alloc_bootmem_nopanic fndecl 1 35945 NULL nohasharray
++wil_write_file_txmgmt_fndecl_35945_fns wil_write_file_txmgmt fndecl 3 35945 &___alloc_bootmem_nopanic_fndecl_35945_fns
++snoop_urb_fndecl_35965_fns snoop_urb fndecl 8 35965 NULL
++buf_size_si470x_device_35966_fns buf_size si470x_device 0 35966 NULL
++ccid_getsockopt_builtin_ccids_fndecl_35985_fns ccid_getsockopt_builtin_ccids fndecl 2 35985 NULL
++mcast_list_len_bnx2x_mcast_ramrod_params_36001_fns mcast_list_len bnx2x_mcast_ramrod_params 0 36001 NULL
++v4l2_event_subscribe_fndecl_36004_fns v4l2_event_subscribe fndecl 3 36004 NULL
++igb_alloc_q_vector_fndecl_36009_fns igb_alloc_q_vector fndecl 4-6 36009 NULL nohasharray
++bdev_logical_block_size_fndecl_36009_fns bdev_logical_block_size fndecl 0 36009 &igb_alloc_q_vector_fndecl_36009_fns nohasharray
++max_rx_kingsun_cb_36009_fns max_rx kingsun_cb 0 36009 &bdev_logical_block_size_fndecl_36009_fns
++num_of_memcpy_chans_stedma40_platform_data_36011_fns num_of_memcpy_chans stedma40_platform_data 0 36011 NULL
++n_sg_vscsibk_pend_36028_fns n_sg vscsibk_pend 0 36028 NULL
++count_sgentry64_36033_fns count sgentry64 0 36033 NULL
++thread_notes_elf_note_info_36040_fns thread_notes elf_note_info 0 36040 NULL
++lpfc_idiag_queacc_read_qe_fndecl_36072_fns lpfc_idiag_queacc_read_qe fndecl 0-2 36072 NULL
++nfs4_xattr_get_nfs4_acl_fndecl_36079_fns nfs4_xattr_get_nfs4_acl fndecl 6 36079 NULL
++wdm_write_fndecl_36084_fns wdm_write fndecl 3 36084 NULL
++avc_recv_fndecl_36099_fns avc_recv fndecl 3 36099 NULL
++xfs_trans_read_buf_map_fndecl_36121_fns xfs_trans_read_buf_map fndecl 5 36121 NULL
++__i2400m_bm_ack_verify_fndecl_36139_fns __i2400m_bm_ack_verify fndecl 0-4 36139 NULL
++gsm_control_reply_fndecl_36166_fns gsm_control_reply fndecl 4 36166 NULL
++qd2offset_fndecl_36177_fns qd2offset fndecl 0 36177 NULL
++sock_setbindtodevice_fndecl_36202_fns sock_setbindtodevice fndecl 3 36202 NULL
++qsfp1_debugfs_write_fndecl_36216_fns qsfp1_debugfs_write fndecl 3 36216 NULL
++page_size_spi_eeprom_36227_fns page_size spi_eeprom 0 36227 NULL
++vhost_kvzalloc_fndecl_36242_fns vhost_kvzalloc fndecl 1 36242 NULL
++histogram_alloc_size_dm_stat_36247_fns histogram_alloc_size dm_stat 0 36247 NULL
++isr_cmd_cmplt_read_fndecl_36268_fns isr_cmd_cmplt_read fndecl 3 36268 NULL
++pwc_get_fps_Timon_fndecl_36269_fns pwc_get_fps_Timon fndecl 0 36269 NULL
++iwl_pcie_txq_alloc_fndecl_36278_fns iwl_pcie_txq_alloc fndecl 3 36278 NULL
++collection_size_hid_device_36289_fns collection_size hid_device 0 36289 NULL
++ssl_next_nilfs_snapshot_list_36302_fns ssl_next nilfs_snapshot_list 0 36302 NULL
++paging64_prefetch_gpte_fndecl_36303_fns paging64_prefetch_gpte fndecl 4 36303 NULL
++tegra_fb_alloc_fndecl_36306_fns tegra_fb_alloc fndecl 4 36306 NULL
++mwifiex_info_read_fndecl_36308_fns mwifiex_info_read fndecl 3 36308 NULL
++move_buffer_data_fndecl_36318_fns move_buffer_data fndecl 2 36318 NULL
++apei_exec_run_optional_fndecl_36319_fns apei_exec_run_optional fndecl 0 36319 NULL
++ima_write_template_field_data_fndecl_36336_fns ima_write_template_field_data fndecl 2 36336 NULL nohasharray
++create_trace_kprobe_fndecl_36336_fns create_trace_kprobe fndecl 1 36336 &ima_write_template_field_data_fndecl_36336_fns
++pset_prop_read_u32_array_fndecl_36338_fns pset_prop_read_u32_array fndecl 0 36338 NULL
++iowarrior_read_fndecl_36344_fns iowarrior_read fndecl 3 36344 NULL
++num_crtc_cirrus_device_36358_fns num_crtc cirrus_device 0 36358 NULL
++snd_pcm_lib_write_transfer_fndecl_36369_fns snd_pcm_lib_write_transfer fndecl 5 36369 NULL
++kvm_vcpu_read_guest_atomic_fndecl_36372_fns kvm_vcpu_read_guest_atomic fndecl 4-2 36372 NULL
++addr_len_ipmi_req_36374_fns addr_len ipmi_req 0 36374 NULL
++batadv_tt_update_orig_fndecl_36402_fns batadv_tt_update_orig fndecl 6-4 36402 NULL
++pipeline_dec_packet_out_read_fndecl_36407_fns pipeline_dec_packet_out_read fndecl 3 36407 NULL
++rproc_state_read_fndecl_36410_fns rproc_state_read fndecl 3 36410 NULL
++isr_host_acknowledges_read_fndecl_36459_fns isr_host_acknowledges_read fndecl 3 36459 NULL
++avail_snd_compr_avail_36463_fns avail snd_compr_avail 0 36463 NULL
++strn_len_fndecl_36473_fns strn_len fndecl 0 36473 NULL
++p9_client_prepare_req_fndecl_36492_fns p9_client_prepare_req fndecl 3 36492 NULL
++sg_max_nents_hwif_s_36501_fns sg_max_nents hwif_s 0 36501 NULL
++__i2c_write_fndecl_36516_fns __i2c_write fndecl 0 36516 NULL
++do_sys_poll_fndecl_36574_fns do_sys_poll fndecl 2 36574 NULL
++audio_write_fndecl_36582_fns audio_write fndecl 4 36582 NULL nohasharray
++wusb_prf_fndecl_36582_fns wusb_prf fndecl 7 36582 &audio_write_fndecl_36582_fns
++mwifiex_getlog_read_fndecl_36590_fns mwifiex_getlog_read fndecl 3 36590 NULL
++scan_cnt_ad7280_state_36592_fns scan_cnt ad7280_state 0 36592 NULL
++alloc_fw_event_work_fndecl_36593_fns alloc_fw_event_work fndecl 1 36593 NULL
++__br_fdb_add_fndecl_36596_fns __br_fdb_add fndecl 6 36596 NULL
++write_file_spec_scan_ctl_fndecl_36603_fns write_file_spec_scan_ctl fndecl 3 36603 NULL
++f2fs_kvzalloc_fndecl_36641_fns f2fs_kvzalloc fndecl 1 36641 NULL
++lpfc_idiag_ctlacc_read_reg_fndecl_36642_fns lpfc_idiag_ctlacc_read_reg fndecl 0-3 36642 NULL
++nls_nullsize_fndecl_36644_fns nls_nullsize fndecl 0 36644 NULL
++setup_data_read_fndecl_36653_fns setup_data_read fndecl 3 36653 NULL nohasharray
++pvr2_encoder_write_words_fndecl_36653_fns pvr2_encoder_write_words fndecl 4 36653 &setup_data_read_fndecl_36653_fns
++__kfifo_dma_in_prepare_r_fndecl_36659_fns __kfifo_dma_in_prepare_r fndecl 4-5 36659 NULL
++__tty_alloc_driver_fndecl_36660_fns __tty_alloc_driver fndecl 1 36660 NULL
++qp_alloc_host_work_fndecl_36661_fns qp_alloc_host_work fndecl 5-3 36661 NULL
++max_queue_pairs_virtnet_info_36669_fns max_queue_pairs virtnet_info 0 36669 NULL
++expected_pages_page_collect_36693_fns expected_pages page_collect 0 36693 NULL
++bnx2x_mcast_set_rdata_hdr_e1_fndecl_36725_fns bnx2x_mcast_set_rdata_hdr_e1 fndecl 3 36725 NULL
++alloc_rd_atomic_resources_fndecl_36726_fns alloc_rd_atomic_resources fndecl 2 36726 NULL
++batadv_tt_tvlv_ogm_handler_v1_fndecl_36742_fns batadv_tt_tvlv_ogm_handler_v1 fndecl 5 36742 NULL
++channel_hwif_s_36751_fns channel hwif_s 0 36751 NULL
++num_nodes_crush_bucket_tree_36776_fns num_nodes crush_bucket_tree 0 36776 NULL
++efi_runtime_map_setup_fndecl_36796_fns efi_runtime_map_setup fndecl 2 36796 NULL
++mlx4_num_eq_uar_fndecl_36830_fns mlx4_num_eq_uar fndecl 0 36830 NULL
++qlcnic_83xx_sysfs_flash_write_fndecl_36872_fns qlcnic_83xx_sysfs_flash_write fndecl 4 36872 NULL
++netlbl_unlabel_init_fndecl_36873_fns netlbl_unlabel_init fndecl 1 36873 NULL
++tool_spadfn_write_fndecl_36915_fns tool_spadfn_write fndecl 3 36915 NULL
++dup_variable_bug_fndecl_36926_fns dup_variable_bug fndecl 3 36926 NULL
++debug_level_proc_write_fndecl_36943_fns debug_level_proc_write fndecl 3 36943 NULL
++loopend_soundfont_sample_info_36981_fns loopend soundfont_sample_info 0 36981 NULL
++SYSC_gethostname_fndecl_37078_fns SYSC_gethostname fndecl 2 37078 NULL
++relay_alloc_page_array_fndecl_37100_fns relay_alloc_page_array fndecl 1 37100 NULL
++fuse_request_alloc_fndecl_37120_fns fuse_request_alloc fndecl 1 37120 NULL
++acpi_data_prop_read_single_fndecl_37152_fns acpi_data_prop_read_single fndecl 0 37152 NULL
++mlx5_query_port_pvlc_fndecl_37159_fns mlx5_query_port_pvlc fndecl 3 37159 NULL
++mdiobus_alloc_size_fndecl_37168_fns mdiobus_alloc_size fndecl 1 37168 NULL
++gpe_count_acpi_gpe_block_info_37173_fns gpe_count acpi_gpe_block_info 0 37173 NULL
++fdb_add_entry_fndecl_37182_fns fdb_add_entry fndecl 6 37182 NULL
++ssd1307fb_write_fndecl_37192_fns ssd1307fb_write fndecl 3 37192 NULL
++hwflags_read_fndecl_37197_fns hwflags_read fndecl 3 37197 NULL
++hur_len_fndecl_37216_fns hur_len fndecl 0 37216 NULL
++tw686x_real_fps_fndecl_37230_fns tw686x_real_fps fndecl 0-2 37230 NULL
++test_unaligned_bulk_fndecl_37246_fns test_unaligned_bulk fndecl 3 37246 NULL
++iwl_dump_fh_fndecl_37248_fns iwl_dump_fh fndecl 0 37248 NULL
++isdn_writebuf_stub_fndecl_37260_fns isdn_writebuf_stub fndecl 4 37260 NULL
++copy_entries_to_user_fndecl_37276_fns copy_entries_to_user fndecl 1 37276 NULL
++cyz_load_fw_fndecl_37290_fns cyz_load_fw fndecl 0 37290 NULL
++num_bna_mem_info_37294_fns num bna_mem_info 0 37294 NULL
++aer_inject_write_fndecl_37308_fns aer_inject_write fndecl 3 37308 NULL
++ath6kl_delete_qos_write_fndecl_37312_fns ath6kl_delete_qos_write fndecl 3 37312 NULL
++kstrtobool_from_user_fndecl_37318_fns kstrtobool_from_user fndecl 2 37318 NULL
++line6_midibuf_init_fndecl_37338_fns line6_midibuf_init fndecl 2 37338 NULL
++mdio_mii_ioctl_fndecl_37342_fns mdio_mii_ioctl fndecl 0 37342 NULL
++hso_serial_common_create_fndecl_37343_fns hso_serial_common_create fndecl 4 37343 NULL
++dlen_pg_read_hdr_37352_fns dlen pg_read_hdr 0 37352 NULL
++ieee80211_alloc_txb_fndecl_37358_fns ieee80211_alloc_txb fndecl 1 37358 NULL
++alauda_read_data_fndecl_37367_fns alauda_read_data fndecl 3 37367 NULL
++bt_alloc_fndecl_37370_fns bt_alloc fndecl 2 37370 NULL
++orig_bi_size_usb_idmouse_37372_fns orig_bi_size usb_idmouse 0 37372 NULL
++tx_tx_exch_pending_read_fndecl_37385_fns tx_tx_exch_pending_read fndecl 3 37385 NULL
++hsc_msg_len_set_fndecl_37398_fns hsc_msg_len_set fndecl 2 37398 NULL
++ath6kl_wmi_implicit_create_pstream_fndecl_37407_fns ath6kl_wmi_implicit_create_pstream fndecl 2 37407 NULL
++ipv6_renew_options_kern_fndecl_37436_fns ipv6_renew_options_kern fndecl 5 37436 NULL
++mwifiex_debug_read_fndecl_37441_fns mwifiex_debug_read fndecl 3 37441 NULL
++cfi_read_query_fndecl_37465_fns cfi_read_query fndecl 0 37465 NULL nohasharray
++devnum_mtd_blktrans_dev_37465_fns devnum mtd_blktrans_dev 0 37465 &cfi_read_query_fndecl_37465_fns
++omap_dma_reserve_channels_vardecl_dma_c_37479_fns omap_dma_reserve_channels vardecl_dma.c 0 37479 NULL
++copy_user_segment_list_fndecl_37517_fns copy_user_segment_list fndecl 2 37517 NULL
++fuse_fsync_common_fndecl_37543_fns fuse_fsync_common fndecl 2-3 37543 NULL
++num_rand_bytes_ecryptfs_write_tag_70_packet_silly_stack_37548_fns num_rand_bytes ecryptfs_write_tag_70_packet_silly_stack 0 37548 NULL
++n_ai_urbs_usbdux_private_37595_fns n_ai_urbs usbdux_private 0 37595 NULL
++tx_tx_start_data_read_fndecl_37616_fns tx_tx_start_data_read fndecl 3 37616 NULL
++usb_stor_bulk_srb_fndecl_37641_fns usb_stor_bulk_srb fndecl 2 37641 NULL
++copy_ctr_args_fndecl_37642_fns copy_ctr_args fndecl 2 37642 NULL
++bufsize_vardecl_pagetest_c_37645_fns bufsize vardecl_pagetest.c 0 37645 NULL
++nvme_trans_ext_inq_page_fndecl_37691_fns nvme_trans_ext_inq_page fndecl 3 37691 NULL
++xenvif_write_io_ring_fndecl_37713_fns xenvif_write_io_ring fndecl 3 37713 NULL
++run_start_commands_fndecl_37723_fns run_start_commands fndecl 0 37723 NULL
++mon_bin_get_event_fndecl_37740_fns mon_bin_get_event fndecl 4-6 37740 NULL
++pwr_rcvd_beacons_read_fndecl_37751_fns pwr_rcvd_beacons_read fndecl 3 37751 NULL
++ath6kl_dbg_dump_fndecl_37760_fns ath6kl_dbg_dump fndecl 5 37760 NULL
++cache_read_procfs_fndecl_37761_fns cache_read_procfs fndecl 3 37761 NULL
++kvm_kvzalloc_fndecl_37773_fns kvm_kvzalloc fndecl 1 37773 NULL
++ifc_len_ifconf_37839_fns ifc_len ifconf 0 37839 NULL
++__kfifo_skip_r_fndecl_37849_fns __kfifo_skip_r fndecl 2 37849 NULL
++ioread16be_fndecl_37854_fns ioread16be fndecl 0 37854 NULL
++usbat_read_block_fndecl_37858_fns usbat_read_block fndecl 3-4 37858 NULL
++tx_tx_exch_read_fndecl_37865_fns tx_tx_exch_read fndecl 3 37865 NULL
++num_node_state_fndecl_37870_fns num_node_state fndecl 0 37870 NULL
++hx8357_spi_write_then_read_fndecl_37879_fns hx8357_spi_write_then_read fndecl 3 37879 NULL
++dm_bufio_client_create_fndecl_37889_fns dm_bufio_client_create fndecl 4 37889 NULL
++pvr2_i2c_basic_op_fndecl_37917_fns pvr2_i2c_basic_op fndecl 4-6 37917 NULL
++spk_ye_vardecl_37920_fns spk_ye vardecl 0 37920 NULL
++mlx5_set_port_qetcr_reg_fndecl_37932_fns mlx5_set_port_qetcr_reg fndecl 3 37932 NULL
++num_escbs_asd_seq_data_37938_fns num_escbs asd_seq_data 0 37938 NULL
++kvm_fetch_guest_virt_fndecl_37942_fns kvm_fetch_guest_virt fndecl 2-4 37942 NULL
++seq_write_fndecl_37946_fns seq_write fndecl 3 37946 NULL
++mbox_write_fndecl_37967_fns mbox_write fndecl 3 37967 NULL
++vortex_core_init_fndecl_37980_fns vortex_core_init fndecl 0 37980 NULL
++key_search_fndecl_37982_fns key_search fndecl 0 37982 NULL
++get_cur_path_fndecl_38038_fns get_cur_path fndecl 0 38038 NULL
++xfs_extent_free_create_done_fndecl_38040_fns xfs_extent_free_create_done fndecl 3 38040 NULL
++DataUnits_partition_t_38043_fns DataUnits partition_t 0 38043 NULL
++aac_convert_sgraw2_fndecl_38045_fns aac_convert_sgraw2 fndecl 2-4 38045 NULL
++get_vmcore_size_fndecl_38046_fns get_vmcore_size fndecl 0-2-1 38046 NULL
++iscsi_create_session_fndecl_38060_fns iscsi_create_session fndecl 3 38060 NULL
++ps_upsd_utilization_read_fndecl_38086_fns ps_upsd_utilization_read fndecl 3 38086 NULL nohasharray
++portcntrs_debugfs_read_fndecl_38086_fns portcntrs_debugfs_read fndecl 3 38086 &ps_upsd_utilization_read_fndecl_38086_fns
++host_mapping_level_fndecl_38115_fns host_mapping_level fndecl 0-2 38115 NULL
++sel_write_access_fndecl_38123_fns sel_write_access fndecl 3 38123 NULL
++sctp_setsockopt_associnfo_fndecl_38135_fns sctp_setsockopt_associnfo fndecl 3 38135 NULL
++rtw_os_xmit_resource_alloc23a_fndecl_38142_fns rtw_os_xmit_resource_alloc23a fndecl 3 38142 NULL
++iwl_dbgfs_bcast_filters_macs_read_fndecl_38156_fns iwl_dbgfs_bcast_filters_macs_read fndecl 3 38156 NULL
++st_read_fndecl_38176_fns st_read fndecl 3 38176 NULL
++nf_ct_ext_create_fndecl_38195_fns nf_ct_ext_create fndecl 3 38195 NULL
++drm_property_create_fndecl_38196_fns drm_property_create fndecl 4 38196 NULL
++nilfs_cpfile_checkpoints_in_block_fndecl_38197_fns nilfs_cpfile_checkpoints_in_block fndecl 0-2-3 38197 NULL
++goto_high_power_fndecl_38198_fns goto_high_power fndecl 0 38198 NULL
++rx_offset_tg3_38201_fns rx_offset tg3 0 38201 NULL
++ath10k_dbg_sta_write_addba_fndecl_38227_fns ath10k_dbg_sta_write_addba fndecl 3 38227 NULL
++dvb_audio_write_fndecl_38232_fns dvb_audio_write fndecl 3 38232 NULL
++i2400m_bm_cmd_fndecl_38243_fns i2400m_bm_cmd fndecl 0-5 38243 NULL
++ext2_xattr_get_fndecl_38252_fns ext2_xattr_get fndecl 0 38252 NULL
++mwifiex_11n_delba_fndecl_38254_fns mwifiex_11n_delba fndecl 2 38254 NULL
++i2c2_debugfs_read_fndecl_38270_fns i2c2_debugfs_read fndecl 3 38270 NULL
++header_length_fw_iso_packet_38284_fns header_length fw_iso_packet 0 38284 NULL
++cacheless_memcpy_fndecl_38293_fns cacheless_memcpy fndecl 3 38293 NULL
++smk_write_ptrace_fndecl_38294_fns smk_write_ptrace fndecl 3 38294 NULL
++alloc_smp_req_fndecl_38298_fns alloc_smp_req fndecl 1 38298 NULL
++num_kcontrols_snd_soc_dapm_widget_38302_fns num_kcontrols snd_soc_dapm_widget 0 38302 NULL nohasharray
++ipw_get_event_log_len_fndecl_38302_fns ipw_get_event_log_len fndecl 0 38302 &num_kcontrols_snd_soc_dapm_widget_38302_fns
++ath10k_dbg_sta_read_aggr_mode_fndecl_38310_fns ath10k_dbg_sta_read_aggr_mode fndecl 3 38310 NULL
++ob_max_size_mvumi_hba_38327_fns ob_max_size mvumi_hba 0 38327 NULL
++get_first_ref_fndecl_38342_fns get_first_ref fndecl 0 38342 NULL
++len_ethtool_regs_38354_fns len ethtool_regs 0 38354 NULL
++ieee80211_if_read_dot11MeshHWMPRootMode_fndecl_38370_fns ieee80211_if_read_dot11MeshHWMPRootMode fndecl 3 38370 NULL
++wsm_handle_exception_fndecl_38377_fns wsm_handle_exception fndecl 3 38377 NULL
++dvb_register_frontend_fndecl_38382_fns dvb_register_frontend fndecl 0 38382 NULL
++chrdev_setup_rx_fndecl_38384_fns chrdev_setup_rx fndecl 2 38384 NULL
++mwifiex_rdeeprom_read_fndecl_38390_fns mwifiex_rdeeprom_read fndecl 3 38390 NULL
++size_vfio_info_cap_38398_fns size vfio_info_cap 0 38398 NULL
++ath6kl_sdio_alloc_prep_scat_req_fndecl_38401_fns ath6kl_sdio_alloc_prep_scat_req fndecl 2 38401 NULL
++dwc3_mode_write_fndecl_38414_fns dwc3_mode_write fndecl 3 38414 NULL
++read_page_fndecl_38423_fns read_page fndecl 2 38423 NULL
++dvb_ringbuffer_avail_fndecl_38474_fns dvb_ringbuffer_avail fndecl 0 38474 NULL
++__fuse_request_alloc_fndecl_38479_fns __fuse_request_alloc fndecl 1 38479 NULL
++dma_rx_errors_read_fndecl_38494_fns dma_rx_errors_read fndecl 3 38494 NULL
++smsdvb_stats_read_fndecl_38529_fns smsdvb_stats_read fndecl 3 38529 NULL
++o2net_debug_read_fndecl_38554_fns o2net_debug_read fndecl 3 38554 NULL
++hysdn_conf_write_fndecl_38562_fns hysdn_conf_write fndecl 3 38562 NULL
++memblock_alloc_base_nid_fndecl_38568_fns memblock_alloc_base_nid fndecl 1 38568 NULL
++retry_count_read_fndecl_38578_fns retry_count_read fndecl 3 38578 NULL
++gdm_usb_hci_send_fndecl_38585_fns gdm_usb_hci_send fndecl 3 38585 NULL
++print_prefix_fndecl_38595_fns print_prefix fndecl 0 38595 NULL
++proc_pid_readlink_fndecl_38601_fns proc_pid_readlink fndecl 3 38601 NULL
++perf_num_counters_fndecl_38605_fns perf_num_counters fndecl 0 38605 NULL
++ieee80211_if_read_dot11MeshRetryTimeout_fndecl_38619_fns ieee80211_if_read_dot11MeshRetryTimeout fndecl 3 38619 NULL
++vmci_qp_broker_alloc_fndecl_38635_fns vmci_qp_broker_alloc fndecl 6-5 38635 NULL
++str_read_fndecl_38656_fns str_read fndecl 4 38656 NULL
++cm4040_read_fndecl_38663_fns cm4040_read fndecl 3 38663 NULL
++v9fs_alloc_rdir_buf_fndecl_38679_fns v9fs_alloc_rdir_buf fndecl 2 38679 NULL
++sg_read_oxfer_fndecl_38687_fns sg_read_oxfer fndecl 3 38687 NULL
++iio_buffer_add_channel_sysfs_fndecl_38693_fns iio_buffer_add_channel_sysfs fndecl 0 38693 NULL
++sctp_setsockopt_pr_supported_fndecl_38705_fns sctp_setsockopt_pr_supported fndecl 3 38705 NULL
++get_user_pages_fast_fndecl_38708_fns get_user_pages_fast fndecl 0 38708 NULL
++if_write_fndecl_38719_fns if_write fndecl 3 38719 NULL
++acpi_table_parse_entries_fndecl_38730_fns acpi_table_parse_entries fndecl 0 38730 NULL
++last_error_boot_data_38741_fns last_error boot_data 0 38741 NULL
++ssd1307fb_alloc_array_fndecl_38751_fns ssd1307fb_alloc_array fndecl 1 38751 NULL
++buffer_from_user_fndecl_38753_fns buffer_from_user fndecl 3 38753 NULL
++nr_pages_max_splice_pipe_desc_38758_fns nr_pages_max splice_pipe_desc 0 38758 NULL
++egr_start_sge_38761_fns egr_start sge 0 38761 NULL
++az6007_read_fndecl_38771_fns az6007_read fndecl 6 38771 NULL
++pointer_size_read_fndecl_38788_fns pointer_size_read fndecl 3 38788 NULL
++get_indirect_ea_fndecl_38798_fns get_indirect_ea fndecl 4 38798 NULL
++read_file_tgt_tx_stats_fndecl_38804_fns read_file_tgt_tx_stats fndecl 3 38804 NULL
++user_read_fndecl_38842_fns user_read fndecl 3 38842 NULL
++memblock_alloc_fndecl_38847_fns memblock_alloc fndecl 1 38847 NULL
++logfs_fsync_fndecl_38849_fns logfs_fsync fndecl 2-3 38849 NULL
++nrealwriters_vardecl_rcuperf_c_38873_fns nrealwriters vardecl_rcuperf.c 0 38873 NULL
++pgctrl_write_fndecl_38918_fns pgctrl_write fndecl 3 38918 NULL
++device_create_sys_dev_entry_fndecl_38921_fns device_create_sys_dev_entry fndecl 0 38921 NULL
++qlcnic_diag_free_res_fndecl_38922_fns qlcnic_diag_free_res fndecl 2 38922 NULL
++drm_fb_helper_sys_write_fndecl_38945_fns drm_fb_helper_sys_write fndecl 3 38945 NULL
++cdrom_read_cdda_fndecl_38973_fns cdrom_read_cdda fndecl 4 38973 NULL
++hsc_read_fndecl_38991_fns hsc_read fndecl 3 38991 NULL
++pwr_rcvd_awake_beacons_read_fndecl_39002_fns pwr_rcvd_awake_beacons_read fndecl 3 39002 NULL
++usbat_flash_write_data_fndecl_39018_fns usbat_flash_write_data fndecl 4 39018 NULL
++alloc_send_rmpp_list_fndecl_39029_fns alloc_send_rmpp_list fndecl 2 39029 NULL
++ath6kl_set_ap_probe_resp_ies_fndecl_39032_fns ath6kl_set_ap_probe_resp_ies fndecl 3 39032 NULL
++error_burst_mismatch_read_fndecl_39035_fns error_burst_mismatch_read fndecl 3 39035 NULL
++iwl_dbgfs_missed_beacon_read_fndecl_39051_fns iwl_dbgfs_missed_beacon_read fndecl 3 39051 NULL
++ncp_fsync_fndecl_39057_fns ncp_fsync fndecl 2-3 39057 NULL
++xillybus_write_fndecl_39102_fns xillybus_write fndecl 3 39102 NULL
++audio_ins_vx_core_39112_fns audio_ins vx_core 0 39112 NULL
++acpi_data_get_property_array_fndecl_39128_fns acpi_data_get_property_array fndecl 0 39128 NULL
++simple_transaction_get_fndecl_39130_fns simple_transaction_get fndecl 3 39130 NULL
++of_phandle_iterator_args_fndecl_39151_fns of_phandle_iterator_args fndecl 0 39151 NULL
++raid56_parity_alloc_scrub_rbio_fndecl_39153_fns raid56_parity_alloc_scrub_rbio fndecl 4 39153 NULL
++cfg80211_roamed_bss_fndecl_39173_fns cfg80211_roamed_bss fndecl 6-4 39173 NULL
++cyttsp4_probe_fndecl_39178_fns cyttsp4_probe fndecl 4 39178 NULL
++l2cap_sock_setsockopt_fndecl_39180_fns l2cap_sock_setsockopt fndecl 5 39180 NULL
++mthca_buddy_init_fndecl_39181_fns mthca_buddy_init fndecl 2 39181 NULL
++sg_kmalloc_fndecl_39251_fns sg_kmalloc fndecl 1 39251 NULL
++soc_codec_reg_show_fndecl_39277_fns soc_codec_reg_show fndecl 3-0 39277 NULL
++size_tomoyo_condition_39281_fns size tomoyo_condition 0 39281 NULL
++lpfc_idiag_pcicfg_read_fndecl_39309_fns lpfc_idiag_pcicfg_read fndecl 3 39309 NULL
++SYSC_flistxattr_fndecl_39312_fns SYSC_flistxattr fndecl 3 39312 NULL
++SYSC_sched_setaffinity_fndecl_39317_fns SYSC_sched_setaffinity fndecl 2 39317 NULL
++len_buflist_39320_fns len buflist 0 39320 NULL
++get_cable_info_fndecl_39326_fns get_cable_info fndecl 3-4 39326 NULL
++isdn_ppp_read_fndecl_39335_fns isdn_ppp_read fndecl 4 39335 NULL
++iwl_dbgfs_echo_test_write_fndecl_39337_fns iwl_dbgfs_echo_test_write fndecl 3 39337 NULL
++fscrypt_fname_alloc_buffer_fndecl_39339_fns fscrypt_fname_alloc_buffer fndecl 2 39339 NULL nohasharray
++musb_softconnect_write_fndecl_39339_fns musb_softconnect_write fndecl 3 39339 &fscrypt_fname_alloc_buffer_fndecl_39339_fns
++setbrightness_fndecl_39342_fns setbrightness fndecl 0 39342 NULL
++tpm_read_fndecl_39355_fns tpm_read fndecl 3 39355 NULL
++max_skl_algo_data_39368_fns max skl_algo_data 0 39368 NULL
++roccat_common2_receive_fndecl_39378_fns roccat_common2_receive fndecl 4 39378 NULL
++sl_alloc_bufs_fndecl_39391_fns sl_alloc_bufs fndecl 2 39391 NULL
++mwifiex_reset_write_fndecl_39394_fns mwifiex_reset_write fndecl 3 39394 NULL
++iscsi_create_conn_fndecl_39402_fns iscsi_create_conn fndecl 2 39402 NULL
++_iwl_dbgfs_send_echo_cmd_write_fndecl_39412_fns _iwl_dbgfs_send_echo_cmd_write fndecl 3 39412 NULL
++show_device_status_fndecl_39440_fns show_device_status fndecl 0 39440 NULL
++virtio_cread16_fndecl_39444_fns virtio_cread16 fndecl 0 39444 NULL
++tp_la_write_fndecl_39445_fns tp_la_write fndecl 3 39445 NULL nohasharray
++max_size_vardecl_custom_method_c_39445_fns max_size vardecl_custom_method.c 0 39445 &tp_la_write_fndecl_39445_fns
++proc_write_fndecl_39464_fns proc_write fndecl 3 39464 NULL
++iwl_statistics_flag_fndecl_39478_fns iwl_statistics_flag fndecl 0 39478 NULL
++mwifiex_timeshare_coex_write_fndecl_39516_fns mwifiex_timeshare_coex_write fndecl 3 39516 NULL nohasharray
++lbs_dev_info_fndecl_39516_fns lbs_dev_info fndecl 3 39516 &mwifiex_timeshare_coex_write_fndecl_39516_fns
++error_tx_resume_failure_read_fndecl_39521_fns error_tx_resume_failure_read fndecl 3 39521 NULL
++len_batadv_tvlv_hdr_39527_fns len batadv_tvlv_hdr 0 39527 NULL
++rsc_mgr_init_fndecl_39528_fns rsc_mgr_init fndecl 3 39528 NULL
++wusb_prf_64_fndecl_39530_fns wusb_prf_64 fndecl 7 39530 NULL
++reply_len_bsg_job_39533_fns reply_len bsg_job 0 39533 NULL
++srpt_alloc_ioctx_fndecl_39537_fns srpt_alloc_ioctx fndecl 2 39537 NULL
++jbd2_journal_init_revoke_fndecl_39555_fns jbd2_journal_init_revoke fndecl 2 39555 NULL
++buf_size_fm_rds_39590_fns buf_size fm_rds 0 39590 NULL
++count_snd_ctl_elem_info_39594_fns count snd_ctl_elem_info 0 39594 NULL
++of_clk_get_parent_count_fndecl_39609_fns of_clk_get_parent_count fndecl 0 39609 NULL
++simple_xattr_set_fndecl_39639_fns simple_xattr_set fndecl 4 39639 NULL
++xfs_trans_get_efd_fndecl_39647_fns xfs_trans_get_efd fndecl 3 39647 NULL
++nfs_filemap_write_and_wait_range_fndecl_39652_fns nfs_filemap_write_and_wait_range fndecl 2-3 39652 NULL
++vendor_diag_read_fndecl_39671_fns vendor_diag_read fndecl 3 39671 NULL
++dev_mem_read_fndecl_39681_fns dev_mem_read fndecl 3 39681 NULL nohasharray
++num_q_vectors_fm10k_intfc_39681_fns num_q_vectors fm10k_intfc 0 39681 &dev_mem_read_fndecl_39681_fns
++blk_check_plugged_fndecl_39715_fns blk_check_plugged fndecl 3 39715 NULL
++tm6000_read_write_usb_fndecl_39749_fns tm6000_read_write_usb fndecl 7 39749 NULL
++fw_logger_read_fndecl_39761_fns fw_logger_read fndecl 3 39761 NULL
++phy_get_sset_count_fndecl_39774_fns phy_get_sset_count fndecl 0 39774 NULL
++write_flush_fndecl_39776_fns write_flush fndecl 3 39776 NULL
++dvb_play_fndecl_39789_fns dvb_play fndecl 3 39789 NULL
++tpm_write_fndecl_39805_fns tpm_write fndecl 3 39805 NULL
++videobuf_dma_init_user_fndecl_39812_fns videobuf_dma_init_user fndecl 3-4 39812 NULL
++nft_trans_alloc_fndecl_39815_fns nft_trans_alloc fndecl 3 39815 NULL
++btrfs_search_slot_for_read_fndecl_39816_fns btrfs_search_slot_for_read fndecl 0 39816 NULL
++init_rx_ring_fndecl_39832_fns init_rx_ring fndecl 4 39832 NULL nohasharray
++dpcm_show_state_fndecl_39832_fns dpcm_show_state fndecl 0 39832 &init_rx_ring_fndecl_39832_fns
++carl9170_debugfs_write_fndecl_39866_fns carl9170_debugfs_write fndecl 3 39866 NULL
++do_shrink_slab_fndecl_39881_fns do_shrink_slab fndecl 4-3 39881 NULL
++debug_fcp_fndecl_39887_fns debug_fcp fndecl 2 39887 NULL
++len_cache_request_39888_fns len cache_request 0 39888 NULL
++frame_vector_create_fndecl_39918_fns frame_vector_create fndecl 1 39918 NULL nohasharray
++mgmt_get_all_if_id_fndecl_39918_fns mgmt_get_all_if_id fndecl 0 39918 &frame_vector_create_fndecl_39918_fns
++inode2sd_v1_fndecl_39954_fns inode2sd_v1 fndecl 3 39954 NULL
++readbuf_size_tomoyo_io_buffer_39976_fns readbuf_size tomoyo_io_buffer 0 39976 NULL
++agp_3_5_isochronous_node_enable_fndecl_39978_fns agp_3_5_isochronous_node_enable fndecl 3 39978 NULL
++compat_do_msg_fill_fndecl_39987_fns compat_do_msg_fill fndecl 3 39987 NULL
++size_fm10k_l2_accel_39996_fns size fm10k_l2_accel 0 39996 NULL
++isr_decrypt_done_read_fndecl_40001_fns isr_decrypt_done_read fndecl 3 40001 NULL
++cifs_dump_mem_fndecl_40013_fns cifs_dump_mem fndecl 3 40013 NULL
++emulator_write_phys_fndecl_40035_fns emulator_write_phys fndecl 2-4 40035 NULL
++iwl_dbgfs_disable_power_off_read_fndecl_40062_fns iwl_dbgfs_disable_power_off_read fndecl 3 40062 NULL
++rx_queue_add_kobject_fndecl_40068_fns rx_queue_add_kobject fndecl 0 40068 NULL
++x25_asy_maxdev_vardecl_x25_asy_c_40074_fns x25_asy_maxdev vardecl_x25_asy.c 0 40074 NULL
++num_parents_clk_core_40091_fns num_parents clk_core 0 40091 NULL
++rx_buf_use_size_bnx2_40094_fns rx_buf_use_size bnx2 0 40094 NULL
++sctp_setsockopt_default_send_param_fndecl_40121_fns sctp_setsockopt_default_send_param fndecl 3 40121 NULL
++smk_write_doi_fndecl_40134_fns smk_write_doi fndecl 3 40134 NULL
++port_fops_read_fndecl_40137_fns port_fops_read fndecl 3 40137 NULL
++isr_wakeups_read_fndecl_40148_fns isr_wakeups_read fndecl 3 40148 NULL
++command_setlights_fndecl_40187_fns command_setlights fndecl 0 40187 NULL
++ath6kl_bgscan_int_write_fndecl_40201_fns ath6kl_bgscan_int_write fndecl 3 40201 NULL
++kbuf_alloc_2_sgl_fndecl_40216_fns kbuf_alloc_2_sgl fndecl 1 40216 NULL
++ipw_queue_tx_init_fndecl_40218_fns ipw_queue_tx_init fndecl 3 40218 NULL
++il4965_rs_sta_dbgfs_stats_table_read_fndecl_40229_fns il4965_rs_sta_dbgfs_stats_table_read fndecl 3 40229 NULL
++do_jffs2_getxattr_fndecl_40233_fns do_jffs2_getxattr fndecl 0 40233 NULL
++skl_get_module_params_fndecl_40234_fns skl_get_module_params fndecl 3 40234 NULL
++iwl_dbgfs_ucode_general_stats_read_fndecl_40252_fns iwl_dbgfs_ucode_general_stats_read fndecl 3 40252 NULL
++digest_size_public_key_signature_40282_fns digest_size public_key_signature 0 40282 NULL
++rx_filter_beacon_filter_read_fndecl_40300_fns rx_filter_beacon_filter_read fndecl 3 40300 NULL
++num_engines_dmm_40301_fns num_engines dmm 0 40301 NULL
++ieee80211_if_read_rssi_threshold_fndecl_40319_fns ieee80211_if_read_rssi_threshold fndecl 3 40319 NULL
++uio_read_fndecl_40327_fns uio_read fndecl 3 40327 NULL
++nvif_notify_init_fndecl_40342_fns nvif_notify_init fndecl 7-6 40342 NULL
++srpt_alloc_ioctx_ring_fndecl_40353_fns srpt_alloc_ioctx_ring fndecl 2-3-4 40353 NULL
++tool_link_event_write_fndecl_40366_fns tool_link_event_write fndecl 3 40366 NULL
++SYSC_mincore_fndecl_40372_fns SYSC_mincore fndecl 2-1 40372 NULL
++__vmalloc_node_fndecl_40382_fns __vmalloc_node fndecl 1 40382 NULL
++qsfp_read_fndecl_40391_fns qsfp_read fndecl 0-3-5 40391 NULL
++joydev_ioctl_common_fndecl_40412_fns joydev_ioctl_common fndecl 2 40412 NULL
++applesmc_create_nodes_fndecl_40419_fns applesmc_create_nodes fndecl 2 40419 NULL
++rx_streaming_always_read_fndecl_40426_fns rx_streaming_always_read fndecl 3 40426 NULL
++tnode_alloc_fndecl_40428_fns tnode_alloc fndecl 1 40428 NULL
++iscsi_alloc_session_fndecl_40445_fns iscsi_alloc_session fndecl 3 40445 NULL
++qd2index_fndecl_40449_fns qd2index fndecl 0 40449 NULL
++submit_create_fndecl_40462_fns submit_create fndecl 3 40462 NULL
++__copy_from_user_inatomic_nocache_fndecl_40466_fns __copy_from_user_inatomic_nocache fndecl 3 40466 NULL
++xfs_rmap_update_create_intent_fndecl_40493_fns xfs_rmap_update_create_intent fndecl 2 40493 NULL
++num_substreams_snd_m3_40528_fns num_substreams snd_m3 0 40528 NULL
++nf_sockopt_fndecl_40555_fns nf_sockopt fndecl 0 40555 NULL
++alloc_ebda_hpc_fndecl_40557_fns alloc_ebda_hpc fndecl 1-2 40557 NULL
++security_context_to_sid_fndecl_40560_fns security_context_to_sid fndecl 2 40560 NULL
++isdn_read_fndecl_40566_fns isdn_read fndecl 3 40566 NULL
++xlog_recovery_process_trans_fndecl_40575_fns xlog_recovery_process_trans fndecl 4 40575 NULL
++ioread8_fndecl_40594_fns ioread8 fndecl 0 40594 NULL
++android_set_cntry_fndecl_40615_fns android_set_cntry fndecl 0 40615 NULL
++read_file_slot_fndecl_40620_fns read_file_slot fndecl 3 40620 NULL
++__kfifo_dma_in_prepare_fndecl_40626_fns __kfifo_dma_in_prepare fndecl 4 40626 NULL
++pcpu_get_vm_areas_fndecl_40630_fns pcpu_get_vm_areas fndecl 3 40630 NULL
++altera_swap_dr_fndecl_40633_fns altera_swap_dr fndecl 2 40633 NULL
++sock_setsockopt_fndecl_40635_fns sock_setsockopt fndecl 5 40635 NULL nohasharray
++cfg_fcp_io_channel_lpfc_hba_40635_fns cfg_fcp_io_channel lpfc_hba 0 40635 &sock_setsockopt_fndecl_40635_fns
++ocrdma_dbgfs_ops_write_fndecl_40664_fns ocrdma_dbgfs_ops_write fndecl 3 40664 NULL
++rx_filter_ibss_filter_read_fndecl_40676_fns rx_filter_ibss_filter_read fndecl 3 40676 NULL
++odev_update_fndecl_40682_fns odev_update fndecl 2 40682 NULL
++ahd_probe_stack_size_fndecl_40683_fns ahd_probe_stack_size fndecl 0 40683 NULL
++tx_frag_need_fragmentation_read_fndecl_40698_fns tx_frag_need_fragmentation_read fndecl 3 40698 NULL
++aa_simple_write_to_buffer_fndecl_40704_fns aa_simple_write_to_buffer fndecl 4 40704 NULL
++write_pool_fndecl_40741_fns write_pool fndecl 3 40741 NULL
++sys_gethostname_fndecl_40753_fns sys_gethostname fndecl 2 40753 NULL
++btrfs_chunk_num_stripes_fndecl_40772_fns btrfs_chunk_num_stripes fndecl 0 40772 NULL
++snd_hdac_get_connections_fndecl_40773_fns snd_hdac_get_connections fndecl 0 40773 NULL
++key_conf_keylen_read_fndecl_40781_fns key_conf_keylen_read fndecl 3 40781 NULL
++scsi_log_print_sense_fndecl_40783_fns scsi_log_print_sense fndecl 5 40783 NULL
++sys_fsetxattr_fndecl_40795_fns sys_fsetxattr fndecl 4 40795 NULL
++ath10k_wmi_alloc_chunk_fndecl_40804_fns ath10k_wmi_alloc_chunk fndecl 3-4-0 40804 NULL
++fuse_conn_waiting_read_fndecl_40817_fns fuse_conn_waiting_read fndecl 3 40817 NULL
++length_sst_dsp_header_40829_fns length sst_dsp_header 0 40829 NULL
++v9fs_file_fsync_dotl_fndecl_40845_fns v9fs_file_fsync_dotl fndecl 2-3 40845 NULL
++nfs_file_fsync_fndecl_40851_fns nfs_file_fsync fndecl 2-3 40851 NULL
++ecc_step_ds_nand_chip_40865_fns ecc_step_ds nand_chip 0 40865 NULL
++slow_user_access_fndecl_40877_fns slow_user_access fndecl 5 40877 NULL
++gtt_sa_num_of_chunks_kfd_dev_40890_fns gtt_sa_num_of_chunks kfd_dev 0 40890 NULL
++sctp_setsockopt_bindx_fndecl_40925_fns sctp_setsockopt_bindx fndecl 3 40925 NULL
++sg_nents_for_len_fndecl_40942_fns sg_nents_for_len fndecl 0 40942 NULL
++az6007_write_fndecl_40948_fns az6007_write fndecl 6 40948 NULL
++size_v4l2_ext_control_40952_fns size v4l2_ext_control 0 40952 NULL
++ns_segnum_the_nilfs_40959_fns ns_segnum the_nilfs 0 40959 NULL
++isr_low_rssi_read_fndecl_40966_fns isr_low_rssi_read fndecl 3 40966 NULL
++regmap_reg_ranges_read_file_fndecl_40973_fns regmap_reg_ranges_read_file fndecl 3 40973 NULL
++blk_mq_init_tags_fndecl_40986_fns blk_mq_init_tags fndecl 1 40986 NULL
++start_fb_cmap_41001_fns start fb_cmap 0 41001 NULL nohasharray
++gfn_to_page_fndecl_41001_fns gfn_to_page fndecl 2 41001 &start_fb_cmap_41001_fns
++nfsctl_transaction_write_fndecl_41011_fns nfsctl_transaction_write fndecl 3 41011 NULL
++rfkill_fop_write_fndecl_41019_fns rfkill_fop_write fndecl 3 41019 NULL
++lprocfs_write_u64_helper_fndecl_41059_fns lprocfs_write_u64_helper fndecl 2 41059 NULL
++userio_char_read_fndecl_41065_fns userio_char_read fndecl 3 41065 NULL
++qp_table_size_rvt_qp_ibdev_41075_fns qp_table_size rvt_qp_ibdev 0 41075 NULL
++gfn_to_pfn_fndecl_41077_fns gfn_to_pfn fndecl 2 41077 NULL
++pci_vc_do_save_buffer_fndecl_41087_fns pci_vc_do_save_buffer fndecl 0 41087 NULL
++iq_autocal_len_p54_common_41089_fns iq_autocal_len p54_common 0 41089 NULL
++sigma_fw_load_data_fndecl_41096_fns sigma_fw_load_data fndecl 3 41096 NULL
++input_leds_get_count_fndecl_41102_fns input_leds_get_count fndecl 0 41102 NULL
++ip_options_get_from_user_fndecl_41133_fns ip_options_get_from_user fndecl 4 41133 NULL
++data_len_b43_dfs_file_41135_fns data_len b43_dfs_file 0 41135 NULL
++nilfs_sufile_get_blkoff_fndecl_41139_fns nilfs_sufile_get_blkoff fndecl 0-2 41139 NULL
++usb_reset_and_verify_device_fndecl_41142_fns usb_reset_and_verify_device fndecl 0 41142 NULL
++calib_fail_count_read_fndecl_41171_fns calib_fail_count_read fndecl 3 41171 NULL
++suspend_dtim_interval_read_fndecl_41176_fns suspend_dtim_interval_read fndecl 3 41176 NULL
++traceprobe_probes_write_fndecl_41178_fns traceprobe_probes_write fndecl 3 41178 NULL
++nr_pages_page_collect_41197_fns nr_pages page_collect 0 41197 NULL
++sq905_command_fndecl_41201_fns sq905_command fndecl 0 41201 NULL
++nr_acpi_bits_vardecl_xen_acpi_processor_c_41210_fns nr_acpi_bits vardecl_xen-acpi-processor.c 0 41210 NULL
++fanout_set_data_fndecl_41219_fns fanout_set_data fndecl 3 41219 NULL
++prctl_set_mm_fndecl_41225_fns prctl_set_mm fndecl 3 41225 NULL
++out_count_mdc800_data_41228_fns out_count mdc800_data 0 41228 NULL
++ies_len_connect_attr_41234_fns ies_len connect_attr 0 41234 NULL
++opera1_usb_i2c_msgxfer_fndecl_41242_fns opera1_usb_i2c_msgxfer fndecl 4 41242 NULL
++sel_write_validatetrans_fndecl_41243_fns sel_write_validatetrans fndecl 3 41243 NULL
++iwl_dbgfs_ucode_tracing_write_fndecl_41247_fns iwl_dbgfs_ucode_tracing_write fndecl 3 41247 NULL
++__apei_exec_run_fndecl_41248_fns __apei_exec_run fndecl 0 41248 NULL
++num_threads_acpi_db_method_info_41261_fns num_threads acpi_db_method_info 0 41261 NULL
++vb2_queue_init_fndecl_41292_fns vb2_queue_init fndecl 0 41292 NULL
++kfd_set_pasid_limit_fndecl_41300_fns kfd_set_pasid_limit fndecl 1 41300 NULL
++img_SRAM_size_fw_hdr_41311_fns img_SRAM_size fw_hdr 0 41311 NULL nohasharray
++d40_size_2_dmalen_fndecl_41311_fns d40_size_2_dmalen fndecl 0-3-2-1 41311 &img_SRAM_size_fw_hdr_41311_fns
++cma_declare_contiguous_fndecl_41316_fns cma_declare_contiguous fndecl 2-5 41316 NULL
++fanotify_write_fndecl_41340_fns fanotify_write fndecl 3 41340 NULL
++regmap_read_debugfs_fndecl_41345_fns regmap_read_debugfs fndecl 5 41345 NULL
++tlbflush_read_file_fndecl_41350_fns tlbflush_read_file fndecl 3 41350 NULL
++efx_tsoh_get_buffer_fndecl_41355_fns efx_tsoh_get_buffer fndecl 3 41355 NULL
++usb_stor_probe1_fndecl_41357_fns usb_stor_probe1 fndecl 0 41357 NULL
++rx_rx_out_of_mpdu_nodes_read_fndecl_41359_fns rx_rx_out_of_mpdu_nodes_read fndecl 3 41359 NULL
++_iwl_dbgfs_d0i3_refs_write_fndecl_41361_fns _iwl_dbgfs_d0i3_refs_write fndecl 3 41361 NULL
++snic_dump_desc_fndecl_41372_fns snic_dump_desc fndecl 3 41372 NULL
++max_frame_size_mgsl_struct_41374_fns max_frame_size mgsl_struct 0 41374 NULL
++TupleDataMax_tuple_t_41376_fns TupleDataMax tuple_t 0 41376 NULL
++l_tree_depth_ocfs2_extent_list_41398_fns l_tree_depth ocfs2_extent_list 0 41398 NULL
++nr_free_zone_pages_fndecl_41403_fns nr_free_zone_pages fndecl 0 41403 NULL
++virtio_cread8_fndecl_41431_fns virtio_cread8 fndecl 0 41431 NULL
++dapm_bias_read_file_fndecl_41432_fns dapm_bias_read_file fndecl 3 41432 NULL
++__feat_register_sp_fndecl_41435_fns __feat_register_sp fndecl 6 41435 NULL
++rt2x00debug_write_csr_fndecl_41442_fns rt2x00debug_write_csr fndecl 3 41442 NULL
++sensor_write_reg_fndecl_41455_fns sensor_write_reg fndecl 0 41455 NULL
++squashfs_read_inode_lookup_table_fndecl_41456_fns squashfs_read_inode_lookup_table fndecl 4 41456 NULL
++bio_map_kern_fndecl_41468_fns bio_map_kern fndecl 3 41468 NULL
++redirected_tty_write_fndecl_41474_fns redirected_tty_write fndecl 3 41474 NULL
++get_var_len_fndecl_41483_fns get_var_len fndecl 0 41483 NULL
++_iwl_dbgfs_quota_min_write_fndecl_41492_fns _iwl_dbgfs_quota_min_write fndecl 3 41492 NULL
++compat_core_sys_select_fndecl_41494_fns compat_core_sys_select fndecl 1 41494 NULL
++unpack_array_fndecl_41525_fns unpack_array fndecl 0 41525 NULL
++pci_vpd_find_tag_fndecl_41534_fns pci_vpd_find_tag fndecl 0 41534 NULL
++alloc_cpu_rmap_fndecl_41536_fns alloc_cpu_rmap fndecl 1 41536 NULL
++max_nr_ports_virtio_console_config_41559_fns max_nr_ports virtio_console_config 0 41559 NULL
++fpa_set_fndecl_41560_fns fpa_set fndecl 3-4 41560 NULL
++dma_rx_requested_read_fndecl_41561_fns dma_rx_requested_read fndecl 3 41561 NULL
++stv0680_handle_error_fndecl_41563_fns stv0680_handle_error fndecl 0-2 41563 NULL
++__alloc_bootmem_nopanic_fndecl_41574_fns __alloc_bootmem_nopanic fndecl 1 41574 NULL
++__read_vmcore_fndecl_41577_fns __read_vmcore fndecl 2 41577 NULL
++iio_device_add_channel_sysfs_fndecl_41581_fns iio_device_add_channel_sysfs fndecl 0 41581 NULL
++pwr_sleep_percent_read_fndecl_41600_fns pwr_sleep_percent_read fndecl 3 41600 NULL
++xpc_kzalloc_cacheline_aligned_fndecl_41610_fns xpc_kzalloc_cacheline_aligned fndecl 1 41610 NULL
++device_add_groups_fndecl_41628_fns device_add_groups fndecl 0 41628 NULL
++drm_calloc_large_fndecl_41630_fns drm_calloc_large fndecl 1-2 41630 NULL
++tx_ring_size_jme_adapter_41640_fns tx_ring_size jme_adapter 0 41640 NULL
++clear_user_fndecl_41645_fns clear_user fndecl 2 41645 NULL
++dpcm_state_read_file_fndecl_41666_fns dpcm_state_read_file fndecl 3 41666 NULL
++error_null_frame_cts_start_read_fndecl_41668_fns error_null_frame_cts_start_read fndecl 3 41668 NULL
++nvme_trans_standard_inquiry_page_fndecl_41701_fns nvme_trans_standard_inquiry_page fndecl 4 41701 NULL
++tree_mod_log_eb_copy_fndecl_41708_fns tree_mod_log_eb_copy fndecl 6 41708 NULL
++gfs2_dir_mvino_fndecl_41733_fns gfs2_dir_mvino fndecl 4 41733 NULL
++v4l2_ctrl_handler_init_class_fndecl_41742_fns v4l2_ctrl_handler_init_class fndecl 2 41742 NULL
++insert_dent_fndecl_41753_fns insert_dent fndecl 7 41753 NULL
++vop_virtio_copy_to_user_fndecl_41756_fns vop_virtio_copy_to_user fndecl 4-3 41756 NULL
++ovs_nla_add_action_fndecl_41757_fns ovs_nla_add_action fndecl 4-0 41757 NULL
++__alloc_bootmem_node_high_fndecl_41767_fns __alloc_bootmem_node_high fndecl 2 41767 NULL
++batadv_socket_write_fndecl_41768_fns batadv_socket_write fndecl 3 41768 NULL
++pcibios_enable_device_fndecl_41776_fns pcibios_enable_device fndecl 0 41776 NULL
++outlen_mlx5_cmd_debug_41806_fns outlen mlx5_cmd_debug 0 41806 NULL
++ath9k_dump_mci_btcoex_fndecl_41809_fns ath9k_dump_mci_btcoex fndecl 0 41809 NULL
++scsi_add_host_with_dma_fndecl_41814_fns scsi_add_host_with_dma fndecl 0 41814 NULL
++i2c_bus_write_fndecl_41846_fns i2c_bus_write fndecl 0 41846 NULL
++nf_setsockopt_fndecl_41852_fns nf_setsockopt fndecl 0 41852 NULL
++from_seq_file_41897_fns from seq_file 0 41897 NULL
++b_read_mon_reader_bin_41923_fns b_read mon_reader_bin 0 41923 NULL nohasharray
++print_endpoint_stat_fndecl_41923_fns print_endpoint_stat fndecl 0-4 41923 &b_read_mon_reader_bin_41923_fns
++whci_n_caps_fndecl_41932_fns whci_n_caps fndecl 0 41932 NULL
++rx_rx_done_read_fndecl_41938_fns rx_rx_done_read fndecl 3 41938 NULL
++compat_packet_setsockopt_fndecl_41954_fns compat_packet_setsockopt fndecl 5 41954 NULL
++intel_atomic_legacy_gamma_set_fndecl_41955_fns intel_atomic_legacy_gamma_set fndecl 5 41955 NULL
++xfs_hex_dump_fndecl_41963_fns xfs_hex_dump fndecl 2 41963 NULL
++kmalloc_parameter_fndecl_41964_fns kmalloc_parameter fndecl 1 41964 NULL
++max_req_queues_qla_hw_data_41977_fns max_req_queues qla_hw_data 0 41977 NULL
++__send_control_msg_fndecl_41986_fns __send_control_msg fndecl 0 41986 NULL
++snd_pcm_oss_read1_fndecl_41992_fns snd_pcm_oss_read1 fndecl 3 41992 NULL
++snd_opl4_mem_proc_read_fndecl_41997_fns snd_opl4_mem_proc_read fndecl 5 41997 NULL
++selinux_secctx_to_secid_fndecl_42003_fns selinux_secctx_to_secid fndecl 2 42003 NULL
++set_flicker_fndecl_42011_fns set_flicker fndecl 0 42011 NULL
++__ieee80211_start_rx_ba_session_fndecl_42023_fns __ieee80211_start_rx_ba_session fndecl 7 42023 NULL
++copy_nodes_to_user_fndecl_42028_fns copy_nodes_to_user fndecl 2 42028 NULL
++mwifiex_11n_create_rx_reorder_tbl_fndecl_42029_fns mwifiex_11n_create_rx_reorder_tbl fndecl 4 42029 NULL
++spidev_compat_ioctl_fndecl_42033_fns spidev_compat_ioctl fndecl 2 42033 NULL
++regmap_multi_reg_write_fndecl_42049_fns regmap_multi_reg_write fndecl 3 42049 NULL
++sel_write_load_fndecl_42053_fns sel_write_load fndecl 3 42053 NULL
++namelen_xenpf_symdata_42085_fns namelen xenpf_symdata 0 42085 NULL
++read_page_owner_fndecl_42094_fns read_page_owner fndecl 3 42094 NULL
++do_syslog_fndecl_42100_fns do_syslog fndecl 3 42100 NULL
++tid_used_hfi1_filedata_42109_fns tid_used hfi1_filedata 0 42109 NULL
++jbd2_journal_init_dev_fndecl_42115_fns jbd2_journal_init_dev fndecl 5 42115 NULL
++snd_compr_write_fndecl_42144_fns snd_compr_write fndecl 3 42144 NULL
++__team_options_register_fndecl_42198_fns __team_options_register fndecl 3 42198 NULL
++construct_key_and_link_fndecl_42210_fns construct_key_and_link fndecl 3 42210 NULL
++num_q_vectors_igb_adapter_42232_fns num_q_vectors igb_adapter 0 42232 NULL
++len_wmi_tlv_42244_fns len wmi_tlv 0 42244 NULL
++nchunks_radeon_cs_parser_42251_fns nchunks radeon_cs_parser 0 42251 NULL
++iwl_dbgfs_bcast_filters_read_fndecl_42258_fns iwl_dbgfs_bcast_filters_read fndecl 3 42258 NULL
++read_kcore_fndecl_42259_fns read_kcore fndecl 3 42259 NULL
++snd_pcm_plug_write_transfer_fndecl_42268_fns snd_pcm_plug_write_transfer fndecl 3 42268 NULL
++write_file_spectral_period_fndecl_42275_fns write_file_spectral_period fndecl 3 42275 NULL
++f2fs_kmalloc_fndecl_42279_fns f2fs_kmalloc fndecl 1 42279 NULL nohasharray
++num_loaded_gcov_node_42279_fns num_loaded gcov_node 0 42279 &f2fs_kmalloc_fndecl_42279_fns
++append_to_buffer_fndecl_42285_fns append_to_buffer fndecl 3 42285 NULL
++efx_mcdi_rpc_async_fndecl_42298_fns efx_mcdi_rpc_async fndecl 4-5 42298 NULL
++rproc_alloc_fndecl_42314_fns rproc_alloc fndecl 5 42314 NULL
++kvm_write_guest_page_fndecl_42320_fns kvm_write_guest_page fndecl 5-2 42320 NULL
++soc_tplg_dapm_widget_dbytes_create_fndecl_42336_fns soc_tplg_dapm_widget_dbytes_create fndecl 2 42336 NULL
++hid_report_len_fndecl_42374_fns hid_report_len fndecl 0 42374 NULL
++salt_size_dm_verity_42377_fns salt_size dm_verity 0 42377 NULL
++mlx5_wq_ll_get_size_fndecl_42379_fns mlx5_wq_ll_get_size fndecl 0 42379 NULL
++num_cache_leaves_vardecl_intel_cacheinfo_c_42390_fns num_cache_leaves vardecl_intel_cacheinfo.c 0 42390 NULL
++no_of_vpath_vxgedev_42396_fns no_of_vpath vxgedev 0 42396 NULL
++maximum_v4l2_ctrl_42407_fns maximum v4l2_ctrl 0 42407 NULL
++hidraw_ioctl_fndecl_42425_fns hidraw_ioctl fndecl 2 42425 NULL
++bin_search_fndecl_42434_fns bin_search fndecl 0 42434 NULL
++write_file_spectral_fft_period_fndecl_42435_fns write_file_spectral_fft_period fndecl 3 42435 NULL
++rx_ring_size_jme_adapter_42440_fns rx_ring_size jme_adapter 0 42440 NULL
++rtl92ee_c2h_packet_handler_fndecl_42467_fns rtl92ee_c2h_packet_handler fndecl 3 42467 NULL
++max_allowed_qxl_monitors_config_42481_fns max_allowed qxl_monitors_config 0 42481 NULL
++hid_sensor_client_cnt_sensor_hub_data_42488_fns hid_sensor_client_cnt sensor_hub_data 0 42488 NULL
++bpf_check_classic_fndecl_42501_fns bpf_check_classic fndecl 2 42501 NULL
++__mic_dma_alloc_fndecl_42540_fns __mic_dma_alloc fndecl 2 42540 NULL
++qla8044_write_optrom_data_fndecl_42561_fns qla8044_write_optrom_data fndecl 4 42561 NULL
++ts_write_fndecl_42563_fns ts_write fndecl 3 42563 NULL
++usbtmc_write_fndecl_42567_fns usbtmc_write fndecl 3 42567 NULL
++ilo_write_fndecl_42601_fns ilo_write fndecl 3 42601 NULL nohasharray
++ndev_init_isr_fndecl_42601_fns ndev_init_isr fndecl 3 42601 &ilo_write_fndecl_42601_fns
++qlcnic_82xx_calculate_msix_vector_fndecl_42609_fns qlcnic_82xx_calculate_msix_vector fndecl 0 42609 NULL
++vendor_diag_write_fndecl_42612_fns vendor_diag_write fndecl 3 42612 NULL
++hashsize_Qdisc_class_hash_42616_fns hashsize Qdisc_class_hash 0 42616 NULL
++user_regset_copyin_fndecl_42619_fns user_regset_copyin fndecl 7 42619 NULL
++wlc_phy_loadsampletable_nphy_fndecl_42620_fns wlc_phy_loadsampletable_nphy fndecl 3 42620 NULL
++rx_hdr_overflow_read_fndecl_42628_fns rx_hdr_overflow_read fndecl 3 42628 NULL
++pidlist_allocate_fndecl_42631_fns pidlist_allocate fndecl 1 42631 NULL
++__kfifo_dma_out_finish_r_fndecl_42656_fns __kfifo_dma_out_finish_r fndecl 2 42656 NULL
++keyctl_get_security_fndecl_42673_fns keyctl_get_security fndecl 3 42673 NULL
++num_rx_bds_bcm_sysport_priv_42683_fns num_rx_bds bcm_sysport_priv 0 42683 NULL
++read_file_spectral_short_repeat_fndecl_42684_fns read_file_spectral_short_repeat fndecl 3 42684 NULL
++oom_adj_write_fndecl_42687_fns oom_adj_write fndecl 3 42687 NULL
++data_size_dm_ioctl_42701_fns data_size dm_ioctl 0 42701 NULL
++brcmf_fil_bsscfg_data_get_fndecl_42728_fns brcmf_fil_bsscfg_data_get fndecl 4 42728 NULL
++handle_abnormal_pfn_fndecl_42730_fns handle_abnormal_pfn fndecl 3 42730 NULL
++p54_parse_rssical_fndecl_42750_fns p54_parse_rssical fndecl 3 42750 NULL
++read_file_frameerrors_fndecl_42770_fns read_file_frameerrors fndecl 3 42770 NULL
++sync_maxlen_ipvs_sync_daemon_cfg_42773_fns sync_maxlen ipvs_sync_daemon_cfg 0 42773 NULL
++ssid_len_ath6kl_vif_42784_fns ssid_len ath6kl_vif 0 42784 NULL
++sl_realloc_bufs_fndecl_42821_fns sl_realloc_bufs fndecl 2 42821 NULL
++lbs_highrssi_read_fndecl_42826_fns lbs_highrssi_read fndecl 3 42826 NULL
++pcifront_bus_write_fndecl_42836_fns pcifront_bus_write fndecl 5 42836 NULL
++dlfb_ops_write_fndecl_42885_fns dlfb_ops_write fndecl 3 42885 NULL
++snic_req_init_fndecl_42890_fns snic_req_init fndecl 2 42890 NULL
++number_of_tds_fndecl_42895_fns number_of_tds fndecl 0 42895 NULL
++init_bch_fndecl_42897_fns init_bch fndecl 1-2 42897 NULL
++length_drm_property_blob_42912_fns length drm_property_blob 0 42912 NULL
++do_command_extended_fndecl_42913_fns do_command_extended fndecl 0 42913 NULL
++carl9170_handle_command_response_fndecl_42930_fns carl9170_handle_command_response fndecl 3 42930 NULL
++bnx2x_vf_mcast_fndecl_42933_fns bnx2x_vf_mcast fndecl 4 42933 NULL
++wm_coeff_tlv_get_fndecl_42961_fns wm_coeff_tlv_get fndecl 3 42961 NULL
++pof_reclen_boot_data_42966_fns pof_reclen boot_data 0 42966 NULL
++ea_len_fndecl_42998_fns ea_len fndecl 0 42998 NULL
++obd_ioctl_popdata_fndecl_43014_fns obd_ioctl_popdata fndecl 3 43014 NULL
++key_replays_read_fndecl_43017_fns key_replays_read fndecl 3 43017 NULL
++quirk_simultaneous_discovery_write_fndecl_43076_fns quirk_simultaneous_discovery_write fndecl 3 43076 NULL
++rx_fcs_err_read_fndecl_43119_fns rx_fcs_err_read fndecl 3 43119 NULL
++ndev_init_isr_fndecl_43138_fns ndev_init_isr fndecl 3 43138 NULL
++kvm_vcpu_gfn_to_pfn_fndecl_43158_fns kvm_vcpu_gfn_to_pfn fndecl 2 43158 NULL
++getdqbuf_fndecl_43183_fns getdqbuf fndecl 1 43183 NULL
++aoechr_write_fndecl_43184_fns aoechr_write fndecl 3 43184 NULL
++if_spi_host_to_card_fndecl_43193_fns if_spi_host_to_card fndecl 4 43193 NULL
++nilfs_cpfile_block_get_snapshot_list_fndecl_43198_fns nilfs_cpfile_block_get_snapshot_list fndecl 2 43198 NULL
++root_id___prelim_ref_43204_fns root_id __prelim_ref 0 43204 NULL
++try_async_pf_fndecl_43217_fns try_async_pf fndecl 3 43217 NULL
++nvif_object_mthd_fndecl_43235_fns nvif_object_mthd fndecl 4 43235 NULL
++send_write_fndecl_43242_fns send_write fndecl 2-0 43242 NULL
++agp_create_user_memory_fndecl_43256_fns agp_create_user_memory fndecl 1 43256 NULL
++persistent_ram_new_fndecl_43278_fns persistent_ram_new fndecl 1-2 43278 NULL
++of_property_read_string_array_fndecl_43294_fns of_property_read_string_array fndecl 0 43294 NULL
++qib_refresh_qsfp_cache_fndecl_43328_fns qib_refresh_qsfp_cache fndecl 0 43328 NULL
++debugfs_read_fndecl_43348_fns debugfs_read fndecl 3 43348 NULL
++__kmalloc_node_track_caller_fndecl_43349_fns __kmalloc_node_track_caller fndecl 1 43349 NULL
++get_subdir_fndecl_43366_fns get_subdir fndecl 3 43366 NULL
++compat_SyS_rt_sigpending_fndecl_43367_fns compat_SyS_rt_sigpending fndecl 2 43367 NULL
++xfrm_user_policy_fndecl_43390_fns xfrm_user_policy fndecl 4 43390 NULL
++init_range_memory_mapping_fndecl_43414_fns init_range_memory_mapping fndecl 1-2 43414 NULL
++pof_write_open_fndecl_43418_fns pof_write_open fndecl 0 43418 NULL
++lpfc_sli4_queue_alloc_fndecl_43429_fns lpfc_sli4_queue_alloc fndecl 3 43429 NULL
++memblock_alloc_nid_fndecl_43439_fns memblock_alloc_nid fndecl 1 43439 NULL
++fsg_common_set_num_buffers_fndecl_43440_fns fsg_common_set_num_buffers fndecl 2 43440 NULL
++dut_mode_write_fndecl_43445_fns dut_mode_write fndecl 3 43445 NULL
++eeprom_len_adm8211_priv_43457_fns eeprom_len adm8211_priv 0 43457 NULL
++printer_req_alloc_fndecl_43468_fns printer_req_alloc fndecl 2 43468 NULL
++ieee80211_set_probe_resp_fndecl_43519_fns ieee80211_set_probe_resp fndecl 3 43519 NULL
++ptp_read_fndecl_43520_fns ptp_read fndecl 4 43520 NULL
++_iwl_dbgfs_rx_phyinfo_write_fndecl_43525_fns _iwl_dbgfs_rx_phyinfo_write fndecl 3 43525 NULL
++xfs_dir2_leaf_getdents_fndecl_43533_fns xfs_dir2_leaf_getdents fndecl 3 43533 NULL
++ib_create_send_mad_fndecl_43569_fns ib_create_send_mad fndecl 5 43569 NULL
++ath10k_read_fw_dbglog_fndecl_43592_fns ath10k_read_fw_dbglog fndecl 3 43592 NULL
++ssize_datafab_info_43610_fns ssize datafab_info 0 43610 NULL
++chipshift_cfi_private_43621_fns chipshift cfi_private 0 43621 NULL
++__vb2_get_done_vb_fndecl_43624_fns __vb2_get_done_vb fndecl 0 43624 NULL
++edac_pci_alloc_ctl_info_fndecl_43663_fns edac_pci_alloc_ctl_info fndecl 1 43663 NULL nohasharray
++usbnet_read_cmd_nopm_fndecl_43663_fns usbnet_read_cmd_nopm fndecl 7 43663 &edac_pci_alloc_ctl_info_fndecl_43663_fns
++idmouse_read_fndecl_43677_fns idmouse_read fndecl 3 43677 NULL
++ingr_sz_sge_43689_fns ingr_sz sge 0 43689 NULL
++rxpipe_missed_beacon_host_int_trig_rx_data_read_fndecl_43710_fns rxpipe_missed_beacon_host_int_trig_rx_data_read fndecl 3 43710 NULL
++in_size_xz_buf_43724_fns in_size xz_buf 0 43724 NULL
++gfn_to_hva_many_fndecl_43742_fns gfn_to_hva_many fndecl 2 43742 NULL
++acpi_rs_strcpy_fndecl_43746_fns acpi_rs_strcpy fndecl 0 43746 NULL
++stat_end_vardecl_drv_c_43748_fns stat_end vardecl_drv.c 0 43748 NULL
++tipc_connect_fndecl_43766_fns tipc_connect fndecl 3 43766 NULL
++hwdep_read_fndecl_43779_fns hwdep_read fndecl 3 43779 NULL
++generic_file_fsync_fndecl_43780_fns generic_file_fsync fndecl 2-3 43780 NULL
++len_nft_set_ext_tmpl_43815_fns len nft_set_ext_tmpl 0 43815 NULL
++omap_dma_prep_slave_sg_fndecl_43825_fns omap_dma_prep_slave_sg fndecl 3 43825 NULL
++unlink1_fndecl_43840_fns unlink1 fndecl 3 43840 NULL
++br_fdb_external_learn_add_fndecl_43850_fns br_fdb_external_learn_add fndecl 4 43850 NULL
++iwl_dbgfs_fw_rx_stats_read_fndecl_43853_fns iwl_dbgfs_fw_rx_stats_read fndecl 3 43853 NULL
++scsi_host_alloc_fndecl_43858_fns scsi_host_alloc fndecl 2 43858 NULL
++Xdsdt_acpi_table_fadt_43871_fns Xdsdt acpi_table_fadt 0 43871 NULL
++sisusb_copy_memory_fndecl_43909_fns sisusb_copy_memory fndecl 4 43909 NULL
++iwl_dbgfs_sensitivity_read_fndecl_43935_fns iwl_dbgfs_sensitivity_read fndecl 3 43935 NULL
++iwl_mvm_coex_dump_mbox_fndecl_43938_fns iwl_mvm_coex_dump_mbox fndecl 0-3 43938 NULL
++sddr09_readX_fndecl_43951_fns sddr09_readX fndecl 7 43951 NULL
++brcmf_fil_cmd_data_set_fndecl_43952_fns brcmf_fil_cmd_data_set fndecl 4 43952 NULL
++hfsplus_file_fsync_fndecl_43969_fns hfsplus_file_fsync fndecl 2-3 43969 NULL
++smk_write_revoke_subj_fndecl_43990_fns smk_write_revoke_subj fndecl 3 43990 NULL
++vme_master_read_fndecl_44006_fns vme_master_read fndecl 0 44006 NULL
++nr_chnls_nvm_dev_44026_fns nr_chnls nvm_dev 0 44026 NULL nohasharray
++_iwl_dbgfs_stop_ctdp_write_fndecl_44026_fns _iwl_dbgfs_stop_ctdp_write fndecl 3 44026 &nr_chnls_nvm_dev_44026_fns
++response_length_ib_uverbs_ex_create_qp_resp_44030_fns response_length ib_uverbs_ex_create_qp_resp 0 44030 NULL
++wilc_gnrl_async_info_received_fndecl_44034_fns wilc_gnrl_async_info_received fndecl 3 44034 NULL
++fragmentation_threshold_read_fndecl_44037_fns fragmentation_threshold_read fndecl 3 44037 NULL
++nfp_net_set_ring_size_fndecl_44050_fns nfp_net_set_ring_size fndecl 3-2 44050 NULL
++nr_rings_xen_blkif_44058_fns nr_rings xen_blkif 0 44058 NULL
++prog_page_fndecl_44060_fns prog_page fndecl 2 44060 NULL
++mb_cache_create_fndecl_44082_fns mb_cache_create fndecl 1 44082 NULL nohasharray
++debug_pmt_fndecl_44082_fns debug_pmt fndecl 2 44082 &mb_cache_create_fndecl_44082_fns
++read_file_regval_fndecl_44093_fns read_file_regval fndecl 3 44093 NULL
++num_counter_active_fndecl_44110_fns num_counter_active fndecl 0 44110 NULL
++mls_compute_context_len_fndecl_44135_fns mls_compute_context_len fndecl 0 44135 NULL nohasharray
++udp_sendmsg_fndecl_44135_fns udp_sendmsg fndecl 3 44135 &mls_compute_context_len_fndecl_44135_fns
++error_tx_abort_failure_read_fndecl_44184_fns error_tx_abort_failure_read fndecl 3 44184 NULL
++evdev_compute_buffer_size_fndecl_44212_fns evdev_compute_buffer_size fndecl 0 44212 NULL
++SYSC_lsetxattr_fndecl_44222_fns SYSC_lsetxattr fndecl 4 44222 NULL
++clear_refs_write_fndecl_44227_fns clear_refs_write fndecl 3 44227 NULL
++it_context_support_fw_ohci_44232_fns it_context_support fw_ohci 0 44232 NULL
++rx_filter_arp_filter_read_fndecl_44233_fns rx_filter_arp_filter_read fndecl 3 44233 NULL
++au0828_init_isoc_fndecl_44238_fns au0828_init_isoc fndecl 3 44238 NULL
++spk_xs_vardecl_44242_fns spk_xs vardecl 0 44242 NULL
++features_virtio_device_44247_fns features virtio_device 0 44247 NULL
++lprocfs_write_frac_u64_helper_fndecl_44250_fns lprocfs_write_frac_u64_helper fndecl 2 44250 NULL
++roundup_ring_size_fndecl_44254_fns roundup_ring_size fndecl 0 44254 NULL
++gfn_to_pfn_memslot_atomic_fndecl_44264_fns gfn_to_pfn_memslot_atomic fndecl 2 44264 NULL
++il4965_ucode_rx_stats_read_fndecl_44271_fns il4965_ucode_rx_stats_read fndecl 3 44271 NULL
++efi_get_runtime_map_size_fndecl_44276_fns efi_get_runtime_map_size fndecl 0 44276 NULL
++mlxsw_core_reg_access_fndecl_44306_fns mlxsw_core_reg_access fndecl 0 44306 NULL
++snd_pcm_lib_writev_transfer_fndecl_44344_fns snd_pcm_lib_writev_transfer fndecl 5 44344 NULL
++btrfs_item_size_fndecl_44350_fns btrfs_item_size fndecl 0 44350 NULL
++pwm_buf_sz_usbdux_private_44375_fns pwm_buf_sz usbdux_private 0 44375 NULL
++wmi_evt_connect_fndecl_44385_fns wmi_evt_connect fndecl 4 44385 NULL
++hidpp_prefix_name_fndecl_44393_fns hidpp_prefix_name fndecl 2 44393 NULL
++num_rx_rings_nfp_net_44395_fns num_rx_rings nfp_net 0 44395 NULL
++drbd_create_device_fndecl_44410_fns drbd_create_device fndecl 2 44410 NULL
++ept_gpte_to_gfn_lvl_fndecl_44420_fns ept_gpte_to_gfn_lvl fndecl 0-2-1 44420 NULL
++seq_open_private_fndecl_44422_fns seq_open_private fndecl 3 44422 NULL
++__get_vm_area_fndecl_44428_fns __get_vm_area fndecl 1 44428 NULL
++ieee80211_if_read_rc_rateidx_mask_2ghz_fndecl_44433_fns ieee80211_if_read_rc_rateidx_mask_2ghz fndecl 3 44433 NULL
++fan_proc_write_fndecl_44434_fns fan_proc_write fndecl 3 44434 NULL
++fd_do_rw_fndecl_44435_fns fd_do_rw fndecl 5 44435 NULL
++nchunks_amdgpu_cs_parser_44436_fns nchunks amdgpu_cs_parser 0 44436 NULL
++get_pages_array_fndecl_44453_fns get_pages_array fndecl 1 44453 NULL
++configfs_write_file_fndecl_44454_fns configfs_write_file fndecl 3 44454 NULL
++__get_inode_info_fndecl_44463_fns __get_inode_info fndecl 0 44463 NULL
++seq_count_iscsi_cmd_44476_fns seq_count iscsi_cmd 0 44476 NULL
++resize_stripes_fndecl_44481_fns resize_stripes fndecl 2 44481 NULL
++mei_dbgfs_read_state_fndecl_44492_fns mei_dbgfs_read_state fndecl 3 44492 NULL
++len_de4x5_ioctl_44508_fns len de4x5_ioctl 0 44508 NULL
++sddr09_read20_fndecl_44519_fns sddr09_read20 fndecl 4-3-6 44519 NULL
++filter_read_fndecl_44527_fns filter_read fndecl 3 44527 NULL
++smk_read_syslog_fndecl_44544_fns smk_read_syslog fndecl 3 44544 NULL
++numps_powernow_k8_data_44546_fns numps powernow_k8_data 0 44546 NULL
++ion_handle_test_dma_fndecl_44581_fns ion_handle_test_dma fndecl 4-5 44581 NULL
++maxcontacts_pm_44593_fns maxcontacts pm 0 44593 NULL
++len_poll_list_44603_fns len poll_list 0 44603 NULL
++il_dbgfs_sram_read_fndecl_44619_fns il_dbgfs_sram_read fndecl 3 44619 NULL
++log_page_size_mlx5_srq_attr_44642_fns log_page_size mlx5_srq_attr 0 44642 NULL
++bank_mask_stub_chip_44647_fns bank_mask stub_chip 0 44647 NULL
++udf_sb_alloc_partition_maps_fndecl_44666_fns udf_sb_alloc_partition_maps fndecl 2 44666 NULL nohasharray
++num_desc_pages__drm_via_sg_info_44666_fns num_desc_pages _drm_via_sg_info 0 44666 &udf_sb_alloc_partition_maps_fndecl_44666_fns
++xfpregs_set_fndecl_44680_fns xfpregs_set fndecl 4 44680 NULL
++one_qsfp_read_fndecl_44705_fns one_qsfp_read fndecl 3-5 44705 NULL
++asic_flags_write_fndecl_44717_fns asic_flags_write fndecl 3 44717 NULL
++altera_irscan_fndecl_44719_fns altera_irscan fndecl 2 44719 NULL
++register_netdevice_fndecl_44725_fns register_netdevice fndecl 0 44725 NULL
++kmalloc_order_fndecl_44727_fns kmalloc_order fndecl 1 44727 NULL
++amdgpu_job_alloc_fndecl_44730_fns amdgpu_job_alloc fndecl 2 44730 NULL
++erst_clearer_fndecl_44743_fns erst_clearer fndecl 2 44743 NULL
++brd_probe_fndecl_44758_fns brd_probe fndecl 1 44758 NULL
++fd_locked_ioctl_fndecl_44809_fns fd_locked_ioctl fndecl 3 44809 NULL
++ndev_debugfs_read_fndecl_44812_fns ndev_debugfs_read fndecl 3 44812 NULL
++count_atl1c_tpd_ring_44824_fns count atl1c_tpd_ring 0 44824 NULL
++squashfs_read_id_index_table_fndecl_44826_fns squashfs_read_id_index_table fndecl 4 44826 NULL
++snprint_stack_trace_fndecl_44832_fns snprint_stack_trace fndecl 0 44832 NULL
++dequeue_event_fndecl_44835_fns dequeue_event fndecl 3 44835 NULL
++xt_compat_match_offset_fndecl_44840_fns xt_compat_match_offset fndecl 0 44840 NULL nohasharray
++acpi_parse_entries_array_fndecl_44840_fns acpi_parse_entries_array fndecl 0 44840 &xt_compat_match_offset_fndecl_44840_fns
++exofs_readpages_fndecl_44841_fns exofs_readpages fndecl 4 44841 NULL
++pmcraid_build_passthrough_ioadls_fndecl_44865_fns pmcraid_build_passthrough_ioadls fndecl 2 44865 NULL
++intel_setup_irq_remapping_fndecl_44868_fns intel_setup_irq_remapping fndecl 0 44868 NULL
++num_resources_platform_device_44886_fns num_resources platform_device 0 44886 NULL
++SYSC_select_fndecl_44891_fns SYSC_select fndecl 1 44891 NULL
++do_pselect_fndecl_44926_fns do_pselect fndecl 1 44926 NULL
++device_add_attrs_fndecl_44964_fns device_add_attrs fndecl 0 44964 NULL
++qib_diag_write_fndecl_44966_fns qib_diag_write fndecl 3 44966 NULL nohasharray
++kobject_add_varg_fndecl_44966_fns kobject_add_varg fndecl 0 44966 &qib_diag_write_fndecl_44966_fns
++prism54_wpa_bss_ie_get_fndecl_45006_fns prism54_wpa_bss_ie_get fndecl 0 45006 NULL
++mlx5e_redirect_rqt_fndecl_45007_fns mlx5e_redirect_rqt fndecl 3 45007 NULL
++video_usercopy_fndecl_45012_fns video_usercopy fndecl 2 45012 NULL
++sock_kmalloc_fndecl_45038_fns sock_kmalloc fndecl 2 45038 NULL
++write_file_dfs_fndecl_45047_fns write_file_dfs fndecl 3 45047 NULL
++alloc_upcall_fndecl_45049_fns alloc_upcall fndecl 2 45049 NULL nohasharray
++ib_uverbs_rereg_mr_fndecl_45049_fns ib_uverbs_rereg_mr fndecl 4-5 45049 &alloc_upcall_fndecl_45049_fns
++nd_cmd_out_size_fndecl_45105_fns nd_cmd_out_size fndecl 0 45105 NULL nohasharray
++head_timestamp_event_queue_45105_fns head timestamp_event_queue 0 45105 &nd_cmd_out_size_fndecl_45105_fns
++dma_map_mr_pas_fndecl_45126_fns dma_map_mr_pas fndecl 3 45126 NULL
++copyout_from_xsaves_fndecl_45153_fns copyout_from_xsaves fndecl 2 45153 NULL
++pwc_get_fps_Nala_fndecl_45162_fns pwc_get_fps_Nala fndecl 0 45162 NULL
++cmd_sg_cnt_srp_target_port_45169_fns cmd_sg_cnt srp_target_port 0 45169 NULL
++n_ao_urbs_usbdux_private_45171_fns n_ao_urbs usbdux_private 0 45171 NULL
++opticon_write_fndecl_45172_fns opticon_write fndecl 4 45172 NULL
++acl_alloc_num_fndecl_45177_fns acl_alloc_num fndecl 1-2 45177 NULL
++pwr_tx_with_ps_read_fndecl_45216_fns pwr_tx_with_ps_read fndecl 3 45216 NULL
++hsu_dma_alloc_desc_fndecl_45228_fns hsu_dma_alloc_desc fndecl 1 45228 NULL
++ext4_update_inline_data_fndecl_45259_fns ext4_update_inline_data fndecl 3 45259 NULL
++alloc_buf_fndecl_45267_fns alloc_buf fndecl 3 45267 NULL
++uart_input_count_oxygen_45274_fns uart_input_count oxygen 0 45274 NULL
++iio_debugfs_read_reg_fndecl_45311_fns iio_debugfs_read_reg fndecl 3 45311 NULL
++tstats_write_fndecl_45315_fns tstats_write fndecl 3 45315 NULL
++of_property_count_elems_of_size_fndecl_45337_fns of_property_count_elems_of_size fndecl 3 45337 NULL
++excessive_retries_read_fndecl_45338_fns excessive_retries_read fndecl 3 45338 NULL
++ablkcipher_giv_edesc_alloc_fndecl_45340_fns ablkcipher_giv_edesc_alloc fndecl 2 45340 NULL
++msix_count_i40iw_device_45370_fns msix_count i40iw_device 0 45370 NULL
++ebcnt_vardecl_speedtest_c_45398_fns ebcnt vardecl_speedtest.c 0 45398 NULL
++brcmf_init_nvram_parser_fndecl_45415_fns brcmf_init_nvram_parser fndecl 3 45415 NULL
++pos_c4iw_debugfs_data_45424_fns pos c4iw_debugfs_data 0 45424 NULL
++nfsd_hashsize_fndecl_45441_fns nfsd_hashsize fndecl 0 45441 NULL
++rvt_alloc_device_fndecl_45442_fns rvt_alloc_device fndecl 2 45442 NULL
++pmem_do_bvec_fndecl_45443_fns pmem_do_bvec fndecl 3 45443 NULL
++nonpaging_map_fndecl_45460_fns nonpaging_map fndecl 4 45460 NULL
++ssize_jumpshot_info_45467_fns ssize jumpshot_info 0 45467 NULL
++index_nullb_45470_fns index nullb 0 45470 NULL
++memblock_virt_alloc_try_nid_nopanic_fndecl_45487_fns memblock_virt_alloc_try_nid_nopanic fndecl 1 45487 NULL
++acl_alloc_stack_init_fndecl_45509_fns acl_alloc_stack_init fndecl 1 45509 NULL
++ptr_ring_init_fndecl_45512_fns ptr_ring_init fndecl 2 45512 NULL
++count_scpi_dvfs_info_45519_fns count scpi_dvfs_info 0 45519 NULL
++wl1273_fm_fops_write_fndecl_45534_fns wl1273_fm_fops_write fndecl 3 45534 NULL
++arch_setup_dma_ops_fndecl_45543_fns arch_setup_dma_ops fndecl 3 45543 NULL
++ieee80211_if_read_dot11MeshConfirmTimeout_fndecl_45549_fns ieee80211_if_read_dot11MeshConfirmTimeout fndecl 3 45549 NULL
++srp_create_fr_pool_fndecl_45572_fns srp_create_fr_pool fndecl 3 45572 NULL
++arch_hibernation_header_save_fndecl_45583_fns arch_hibernation_header_save fndecl 0 45583 NULL
++f2fs_sync_file_fndecl_45585_fns f2fs_sync_file fndecl 2-3 45585 NULL
++wpan_phy_new_fndecl_45593_fns wpan_phy_new fndecl 2 45593 NULL
++slave_init_fndecl_45597_fns slave_init fndecl 0 45597 NULL
++smk_read_ambient_fndecl_45623_fns smk_read_ambient fndecl 3 45623 NULL
++ib_uverbs_modify_srq_fndecl_45645_fns ib_uverbs_modify_srq fndecl 4-5 45645 NULL
++bnxt_alloc_vf_resources_fndecl_45660_fns bnxt_alloc_vf_resources fndecl 2 45660 NULL
++xfer_from_user_fndecl_45672_fns xfer_from_user fndecl 3 45672 NULL
++videobuf_dqbuf_fndecl_45673_fns videobuf_dqbuf fndecl 0 45673 NULL
++sys_add_key_fndecl_45691_fns sys_add_key fndecl 4 45691 NULL nohasharray
++nvme_trans_copy_to_user_fndecl_45691_fns nvme_trans_copy_to_user fndecl 3 45691 &sys_add_key_fndecl_45691_fns
++__netdev_adjacent_dev_insert_fndecl_45697_fns __netdev_adjacent_dev_insert fndecl 0 45697 NULL
++write_file_spectral_short_repeat_fndecl_45700_fns write_file_spectral_short_repeat fndecl 3 45700 NULL
++st5481_setup_isocpipes_fndecl_45711_fns st5481_setup_isocpipes fndecl 6 45711 NULL nohasharray
++pof_handle_data_fndecl_45711_fns pof_handle_data fndecl 0 45711 &st5481_setup_isocpipes_fndecl_45711_fns
++__add_inline_refs_fndecl_45744_fns __add_inline_refs fndecl 3 45744 NULL
++wil_write_file_recovery_fndecl_45753_fns wil_write_file_recovery fndecl 3 45753 NULL
++count_n_hdlc_buf_45767_fns count n_hdlc_buf 0 45767 NULL
++flows_cnt_fq_codel_sched_data_45775_fns flows_cnt fq_codel_sched_data 0 45775 NULL
++get_inode_info_fndecl_45784_fns get_inode_info fndecl 0 45784 NULL
++smk_write_net4addr_fndecl_45821_fns smk_write_net4addr fndecl 3 45821 NULL
++__a2mp_build_fndecl_45864_fns __a2mp_build fndecl 3 45864 NULL
++hsc_msg_alloc_fndecl_45869_fns hsc_msg_alloc fndecl 1 45869 NULL
++mwifiex_alloc_sdio_mpa_buffers_fndecl_45874_fns mwifiex_alloc_sdio_mpa_buffers fndecl 2-3 45874 NULL
++pti_char_write_fndecl_45875_fns pti_char_write fndecl 3 45875 NULL
++alloc_wr_fndecl_45881_fns alloc_wr fndecl 1-2 45881 NULL
++smbase_kvm_vcpu_arch_45895_fns smbase kvm_vcpu_arch 0 45895 NULL
++ath6kl_lrssi_roam_read_fndecl_45901_fns ath6kl_lrssi_roam_read fndecl 3 45901 NULL
++dfs_num_of_radar_detections_read_fndecl_45903_fns dfs_num_of_radar_detections_read fndecl 3 45903 NULL
++alloc_sglist_fndecl_45919_fns alloc_sglist fndecl 1-3-2 45919 NULL
++lpfc_idiag_queacc_write_fndecl_45920_fns lpfc_idiag_queacc_write fndecl 3 45920 NULL
++read_file_ackto_fndecl_45950_fns read_file_ackto fndecl 3 45950 NULL
++sigma_fw_load_samplerates_fndecl_45951_fns sigma_fw_load_samplerates fndecl 3 45951 NULL
++__probe_kernel_read_fndecl_45996_fns __probe_kernel_read fndecl 3 45996 NULL
++sctp_v4_err_fndecl_45997_fns sctp_v4_err fndecl 2 45997 NULL
++get_derived_key_fndecl_46015_fns get_derived_key fndecl 4 46015 NULL
++p9_client_prepare_req_fndecl_46048_fns p9_client_prepare_req fndecl 3 46048 NULL
++__vmalloc_fndecl_46051_fns __vmalloc fndecl 1 46051 NULL
++calipso_map_cat_hton_fndecl_46052_fns calipso_map_cat_hton fndecl 0 46052 NULL nohasharray
++event_oom_late_read_fndecl_46052_fns event_oom_late_read fndecl 3 46052 &calipso_map_cat_hton_fndecl_46052_fns
++sys_lsetxattr_fndecl_46058_fns sys_lsetxattr fndecl 4 46058 NULL
++iwl_dbgfs_mac_params_read_fndecl_46081_fns iwl_dbgfs_mac_params_read fndecl 3 46081 NULL
++alloc_dca_provider_fndecl_46085_fns alloc_dca_provider fndecl 2 46085 NULL
++wilc_add_wep_key_bss_ap_fndecl_46087_fns wilc_add_wep_key_bss_ap fndecl 3 46087 NULL
++hidraw_read_fndecl_46097_fns hidraw_read fndecl 3 46097 NULL
++rui_nextents_xfs_rui_log_format_46113_fns rui_nextents xfs_rui_log_format 0 46113 NULL
++ioperm_get_fndecl_46118_fns ioperm_get fndecl 4-3 46118 NULL
++mic_calc_failure_read_fndecl_46119_fns mic_calc_failure_read fndecl 3 46119 NULL
++prism2_info_scanresults_fndecl_46146_fns prism2_info_scanresults fndecl 3 46146 NULL
++memblock_alloc_range_nid_fndecl_46147_fns memblock_alloc_range_nid fndecl 1 46147 NULL
++ieee80211_if_read_fwded_unicast_fndecl_46159_fns ieee80211_if_read_fwded_unicast fndecl 3 46159 NULL
++max_segs_mmc_test_area_46176_fns max_segs mmc_test_area 0 46176 NULL
++long_retry_limit_read_fndecl_46181_fns long_retry_limit_read fndecl 3 46181 NULL
++venus_remove_fndecl_46230_fns venus_remove fndecl 4 46230 NULL
++response_length_mlx4_uverbs_ex_query_device_resp_46245_fns response_length mlx4_uverbs_ex_query_device_resp 0 46245 NULL
++ieee80211_if_read_dot11MeshHWMPmaxPREQretries_fndecl_46246_fns ieee80211_if_read_dot11MeshHWMPmaxPREQretries fndecl 3 46246 NULL
++gspca_dev_probe2_fndecl_46250_fns gspca_dev_probe2 fndecl 4 46250 NULL
++ffs_prepare_buffer_fndecl_46311_fns ffs_prepare_buffer fndecl 2 46311 NULL
++max_vnic_func_qlcnic_hardware_context_46334_fns max_vnic_func qlcnic_hardware_context 0 46334 NULL
++__qsfp_debugfs_write_fndecl_46356_fns __qsfp_debugfs_write fndecl 3 46356 NULL
++shadow_image_fndecl_46361_fns shadow_image fndecl 3 46361 NULL
++ring_cons_per_user_data_46365_fns ring_cons per_user_data 0 46365 NULL
++fs_path_ensure_buf_fndecl_46374_fns fs_path_ensure_buf fndecl 2 46374 NULL
++acpi_ds_build_internal_buffer_obj_fndecl_46379_fns acpi_ds_build_internal_buffer_obj fndecl 3 46379 NULL
++max_loop_vardecl_loop_c_46402_fns max_loop vardecl_loop.c 0 46402 NULL
++len_minstrel_debugfs_info_46425_fns len minstrel_debugfs_info 0 46425 NULL
++rds_pin_pages_fndecl_46432_fns rds_pin_pages fndecl 0 46432 NULL
++C_SYSC_get_mempolicy_fndecl_46447_fns C_SYSC_get_mempolicy fndecl 3 46447 NULL
++_iwl_dbgfs_bcast_filters_write_fndecl_46448_fns _iwl_dbgfs_bcast_filters_write fndecl 3 46448 NULL
++sglen_usbtest_param_32_46451_fns sglen usbtest_param_32 0 46451 NULL
++nfsd_nrpools_fndecl_46460_fns nfsd_nrpools fndecl 0 46460 NULL
++ib_copy_from_udata_fndecl_46461_fns ib_copy_from_udata fndecl 3 46461 NULL
++size_drm_local_map_46462_fns size drm_local_map 0 46462 NULL
++kmalloc_large_node_fndecl_46469_fns kmalloc_large_node fndecl 1 46469 NULL
++mpi_get_nbits_fndecl_46476_fns mpi_get_nbits fndecl 0 46476 NULL
++hr_num_pages_o2hb_region_46481_fns hr_num_pages o2hb_region 0 46481 NULL
++afs_fsync_fndecl_46498_fns afs_fsync fndecl 2-3 46498 NULL
++tunables_write_fndecl_46520_fns tunables_write fndecl 3 46520 NULL
++mlx5_core_query_ib_ppcnt_fndecl_46522_fns mlx5_core_query_ib_ppcnt fndecl 4 46522 NULL
++memdup_user_fndecl_46549_fns memdup_user fndecl 2 46549 NULL
++jffs2_alloc_full_dirent_fndecl_46592_fns jffs2_alloc_full_dirent fndecl 1 46592 NULL nohasharray
++sg_build_sgat_fndecl_46592_fns sg_build_sgat fndecl 3 46592 &jffs2_alloc_full_dirent_fndecl_46592_fns
++cma_init_reserved_mem_fndecl_46602_fns cma_init_reserved_mem fndecl 3-2 46602 NULL
++init_state_fndecl_46614_fns init_state fndecl 2 46614 NULL
++jmb38x_ms_count_slots_fndecl_46615_fns jmb38x_ms_count_slots fndecl 0 46615 NULL
++emulator_set_smbase_fndecl_46616_fns emulator_set_smbase fndecl 2 46616 NULL
++alloc_size_nf_ct_ext_type_46634_fns alloc_size nf_ct_ext_type 0 46634 NULL
++rx_rx_tkip_replays_read_fndecl_46642_fns rx_rx_tkip_replays_read fndecl 3 46642 NULL
++roaming_rssi_level_read_fndecl_46643_fns roaming_rssi_level_read fndecl 3 46643 NULL
++got_bytes_cifs_readdata_46678_fns got_bytes cifs_readdata 0 46678 NULL
++display_crc_ctl_write_fndecl_46690_fns display_crc_ctl_write fndecl 3 46690 NULL
++printer_write_fndecl_46695_fns printer_write fndecl 3 46695 NULL
++irq_alloc_domain_generic_chips_fndecl_46715_fns irq_alloc_domain_generic_chips fndecl 3-2 46715 NULL
++__kfifo_from_user_r_fndecl_46762_fns __kfifo_from_user_r fndecl 3-5 46762 NULL
++bytes_remaining_parser_context_46791_fns bytes_remaining parser_context 0 46791 NULL
++dccp_setsockopt_fndecl_46812_fns dccp_setsockopt fndecl 5 46812 NULL
++kvm_mmu_get_page_fndecl_46824_fns kvm_mmu_get_page fndecl 2 46824 NULL
++hexdump_fndecl_46840_fns hexdump fndecl 3 46840 NULL
++n_channels_wmi_scan_chan_list_arg_46842_fns n_channels wmi_scan_chan_list_arg 0 46842 NULL
++driver_names_read_fndecl_46844_fns driver_names_read fndecl 3 46844 NULL
++il_dbgfs_missed_beacon_read_fndecl_46887_fns il_dbgfs_missed_beacon_read fndecl 3 46887 NULL
++ksi_nthreads_max_ksock_sched_info_46891_fns ksi_nthreads_max ksock_sched_info 0 46891 NULL
++il_dbgfs_rxon_flags_read_fndecl_46909_fns il_dbgfs_rxon_flags_read fndecl 3 46909 NULL nohasharray
++dapm_widget_power_read_file_fndecl_46909_fns dapm_widget_power_read_file fndecl 3 46909 &il_dbgfs_rxon_flags_read_fndecl_46909_fns
++ath10k_read_dfs_stats_fndecl_46910_fns ath10k_read_dfs_stats fndecl 3 46910 NULL
++s_desc_per_block_ext2_sb_info_46964_fns s_desc_per_block ext2_sb_info 0 46964 NULL
++vcs_size_fndecl_46977_fns vcs_size fndecl 0 46977 NULL
++numbers_count_tomoyo_condition_46984_fns numbers_count tomoyo_condition 0 46984 NULL
++gru_alloc_gts_fndecl_46987_fns gru_alloc_gts fndecl 2-3 46987 NULL
++sys_sched_getaffinity_fndecl_46994_fns sys_sched_getaffinity fndecl 2 46994 NULL
++dma_init_coherent_memory_fndecl_47020_fns dma_init_coherent_memory fndecl 3 47020 NULL
++length_acpi_buffer_47024_fns length acpi_buffer 0 47024 NULL
++ath6kl_listen_int_write_fndecl_47025_fns ath6kl_listen_int_write fndecl 3 47025 NULL
++ip_set_max_ip_set_net_47054_fns ip_set_max ip_set_net 0 47054 NULL
++nfs_idmap_request_key_fndecl_47055_fns nfs_idmap_request_key fndecl 2 47055 NULL
++buf_size_usbatm_channel_47081_fns buf_size usbatm_channel 0 47081 NULL
++ld_usb_read_fndecl_47087_fns ld_usb_read fndecl 3 47087 NULL
++pcpu_need_to_extend_fndecl_47094_fns pcpu_need_to_extend fndecl 0 47094 NULL
++__scsi_print_sense_fndecl_47105_fns __scsi_print_sense fndecl 4 47105 NULL
++num_outstanding_cmds_req_que_47114_fns num_outstanding_cmds req_que 0 47114 NULL
++tx_tx_start_fw_gen_read_fndecl_47115_fns tx_tx_start_fw_gen_read fndecl 3 47115 NULL
++iwl_dbgfs_rx_handlers_write_fndecl_47116_fns iwl_dbgfs_rx_handlers_write fndecl 3 47116 NULL
++param_data_size_skl_ipc_init_instance_msg_47145_fns param_data_size skl_ipc_init_instance_msg 0 47145 NULL
++msr_init_context_fndecl_47188_fns msr_init_context fndecl 2 47188 NULL
++block_count_msb_data_47194_fns block_count msb_data 0 47194 NULL
++vmalloc_node_fndecl_47199_fns vmalloc_node fndecl 1 47199 NULL
++mbm_socket_max_vardecl_47204_fns mbm_socket_max vardecl 0 47204 NULL
++agp_allocate_memory_fndecl_47258_fns agp_allocate_memory fndecl 2 47258 NULL
++__ofdpa_mem_alloc_fndecl_47299_fns __ofdpa_mem_alloc fndecl 3 47299 NULL
++fwnode_property_read_string_array_fndecl_47300_fns fwnode_property_read_string_array fndecl 0 47300 NULL
++command_write_fndecl_47306_fns command_write fndecl 3 47306 NULL
++qed_cxt_ilt_shadow_size_fndecl_47308_fns qed_cxt_ilt_shadow_size fndecl 0 47308 NULL
++thermal_irq_thr_low_read_fndecl_47339_fns thermal_irq_thr_low_read fndecl 3 47339 NULL
++nd_label_active_count_fndecl_47348_fns nd_label_active_count fndecl 0 47348 NULL
++dump_midi_fndecl_47356_fns dump_midi fndecl 3 47356 NULL
++ath6kl_wmi_send_action_cmd_fndecl_47359_fns ath6kl_wmi_send_action_cmd fndecl 7 47359 NULL
++SYSC_sched_getattr_fndecl_47361_fns SYSC_sched_getattr fndecl 3 47361 NULL
++rx_position_r3964_info_47365_fns rx_position r3964_info 0 47365 NULL
++il_dbgfs_status_read_fndecl_47367_fns il_dbgfs_status_read fndecl 3 47367 NULL
++capabilities_read_fndecl_47434_fns capabilities_read fndecl 3 47434 NULL
++usnic_vnic_get_resources_fndecl_47437_fns usnic_vnic_get_resources fndecl 3 47437 NULL
++dw_spi_show_regs_fndecl_47461_fns dw_spi_show_regs fndecl 3 47461 NULL
++snd_rme96_capture_copy_fndecl_47463_fns snd_rme96_capture_copy fndecl 5 47463 NULL
++memblock_alloc_try_nid_fndecl_47470_fns memblock_alloc_try_nid fndecl 1 47470 NULL
++lpfc_idiag_baracc_read_fndecl_47473_fns lpfc_idiag_baracc_read fndecl 3 47473 NULL
++fifo_len_tx_fifo_config_47480_fns fifo_len tx_fifo_config 0 47480 NULL
++__ffs_epfile_read_data_fndecl_47488_fns __ffs_epfile_read_data fndecl 3 47488 NULL nohasharray
++report_length_f_hidg_47488_fns report_length f_hidg 0 47488 &__ffs_epfile_read_data_fndecl_47488_fns
++setcontrast_fndecl_47513_fns setcontrast fndecl 0 47513 NULL
++ib_uverbs_create_qp_fndecl_47521_fns ib_uverbs_create_qp fndecl 4-5 47521 NULL
++pq_sources_dmatest_params_47534_fns pq_sources dmatest_params 0 47534 NULL
++skl_tplg_tlv_control_set_fndecl_47545_fns skl_tplg_tlv_control_set fndecl 3 47545 NULL
++wep_decrypt_fail_read_fndecl_47572_fns wep_decrypt_fail_read fndecl 3 47572 NULL
++tool_peer_mw_trans_write_fndecl_47595_fns tool_peer_mw_trans_write fndecl 3 47595 NULL
++num_codecs_snd_soc_dai_link_47607_fns num_codecs snd_soc_dai_link 0 47607 NULL
++nvme_fill_device_id_scsi_string_fndecl_47624_fns nvme_fill_device_id_scsi_string fndecl 4 47624 NULL
++__iio_add_event_config_attrs_fndecl_47635_fns __iio_add_event_config_attrs fndecl 0 47635 NULL
++framebuffer_alloc_fndecl_47642_fns framebuffer_alloc fndecl 1 47642 NULL nohasharray
++nilfs_cpfile_get_offset_fndecl_47642_fns nilfs_cpfile_get_offset fndecl 0-2 47642 &framebuffer_alloc_fndecl_47642_fns
++atomic_write_len_kernfs_open_file_47658_fns atomic_write_len kernfs_open_file 0 47658 NULL
++setup_window_fndecl_47673_fns setup_window fndecl 4-5-7 47673 NULL
++ksize_fndecl_47675_fns ksize fndecl 0 47675 NULL
++height_v4l2_pix_format_47682_fns height v4l2_pix_format 0 47682 NULL
++ath10k_debug_cal_data_read_fndecl_47685_fns ath10k_debug_cal_data_read fndecl 3 47685 NULL
++cno_nilfs_super_data_47691_fns cno nilfs_super_data 0 47691 NULL
++paging64_gpte_to_gfn_lvl_fndecl_47694_fns paging64_gpte_to_gfn_lvl fndecl 0-2-1 47694 NULL
++efi_capsule_write_fndecl_47697_fns efi_capsule_write fndecl 3 47697 NULL
++report_size_roccat_device_47705_fns report_size roccat_device 0 47705 NULL
++max_size_ttm_pool_opts_47726_fns max_size ttm_pool_opts 0 47726 NULL
++batadv_send_tt_request_fndecl_47727_fns batadv_send_tt_request fndecl 5 47727 NULL
++acpi_tb_install_fixed_table_fndecl_47749_fns acpi_tb_install_fixed_table fndecl 1 47749 NULL
++width_ssd1307fb_par_47753_fns width ssd1307fb_par 0 47753 NULL
++snic_reset_stats_read_fndecl_47774_fns snic_reset_stats_read fndecl 3 47774 NULL
++fd_copyout_fndecl_47784_fns fd_copyout fndecl 3 47784 NULL
++netdev_queue_update_kobjects_fndecl_47798_fns netdev_queue_update_kobjects fndecl 0 47798 NULL
++paging64_get_level1_sp_gpa_fndecl_47809_fns paging64_get_level1_sp_gpa fndecl 0 47809 NULL
++size_ncp_ioctl_request_47816_fns size ncp_ioctl_request 0 47816 NULL
++rx_defrag_in_process_called_read_fndecl_47833_fns rx_defrag_in_process_called_read fndecl 3 47833 NULL
++f2fs_fallocate_fndecl_47842_fns f2fs_fallocate fndecl 3-4 47842 NULL
++nilfs_cpfile_find_checkpoint_block_fndecl_47868_fns nilfs_cpfile_find_checkpoint_block fndecl 2-3 47868 NULL
++gs_alloc_req_fndecl_47888_fns gs_alloc_req fndecl 2 47888 NULL
++write_pmsg_fndecl_47911_fns write_pmsg fndecl 3 47911 NULL
++compat_fillonedir_fndecl_47921_fns compat_fillonedir fndecl 3 47921 NULL
++iwl_mvm_sync_rx_queues_internal_fndecl_47927_fns iwl_mvm_sync_rx_queues_internal fndecl 3 47927 NULL
++de_rahead_gfs2_dirent_47954_fns de_rahead gfs2_dirent 0 47954 NULL
++le_ih_k_offset_fndecl_47992_fns le_ih_k_offset fndecl 0 47992 NULL
++init_pci_cap_msi_perm_fndecl_48010_fns init_pci_cap_msi_perm fndecl 2 48010 NULL nohasharray
++setgain_fndecl_48010_fns setgain fndecl 0 48010 &init_pci_cap_msi_perm_fndecl_48010_fns
++size_netlbl_unlhsh_tbl_48011_fns size netlbl_unlhsh_tbl 0 48011 NULL
++selinux_transaction_write_fndecl_48013_fns selinux_transaction_write fndecl 3 48013 NULL
++mdiobus_read_nested_fndecl_48017_fns mdiobus_read_nested fndecl 0 48017 NULL
++drm_malloc_gfp_fndecl_48018_fns drm_malloc_gfp fndecl 1-2 48018 NULL
++lpfc_idiag_baracc_write_fndecl_48021_fns lpfc_idiag_baracc_write fndecl 3 48021 NULL
++_find_next_bit_le_fndecl_48027_fns _find_next_bit_le fndecl 0 48027 NULL
++aim_write_fndecl_48032_fns aim_write fndecl 3 48032 NULL
++blocksize_sddr55_card_info_48082_fns blocksize sddr55_card_info 0 48082 NULL
++nfc_llcp_send_i_frame_fndecl_48105_fns nfc_llcp_send_i_frame fndecl 3 48105 NULL
++namelen_xensyms_48117_fns namelen xensyms 0 48117 NULL
++vma_kernel_pagesize_fndecl_48131_fns vma_kernel_pagesize fndecl 0 48131 NULL
++tx_tx_retry_template_read_fndecl_48132_fns tx_tx_retry_template_read fndecl 3 48132 NULL
++rsa_edesc_alloc_fndecl_48134_fns rsa_edesc_alloc fndecl 2 48134 NULL
++mem_read_fndecl_48140_fns mem_read fndecl 3 48140 NULL
++hpi_cobranet_hmi_write_fndecl_48158_fns hpi_cobranet_hmi_write fndecl 3 48158 NULL
++r3964_write_fndecl_48173_fns r3964_write fndecl 4 48173 NULL
++mr_read_fndecl_48180_fns mr_read fndecl 0 48180 NULL
++data_transfer_length_pmcraid_ioarcb_48193_fns data_transfer_length pmcraid_ioarcb 0 48193 NULL
++proc_ns_readlink_fndecl_48211_fns proc_ns_readlink fndecl 3 48211 NULL
++__lgwrite_fndecl_48214_fns __lgwrite fndecl 4 48214 NULL
++b_map_count_xfs_buf_48228_fns b_map_count xfs_buf 0 48228 NULL
++ieee80211_if_read_dot11MeshHWMPconfirmationInterval_fndecl_48233_fns ieee80211_if_read_dot11MeshHWMPconfirmationInterval fndecl 3 48233 NULL
++i2400m_rx_stats_read_fndecl_48249_fns i2400m_rx_stats_read fndecl 3 48249 NULL
++ib_uverbs_create_xsrq_fndecl_48257_fns ib_uverbs_create_xsrq fndecl 4-5 48257 NULL
++compat_sys_set_mempolicy_fndecl_48285_fns compat_sys_set_mempolicy fndecl 3 48285 NULL
++_iwl_dbgfs_lqm_send_cmd_write_fndecl_48326_fns _iwl_dbgfs_lqm_send_cmd_write fndecl 3 48326 NULL
++ion_test_ioctl_fndecl_48340_fns ion_test_ioctl fndecl 2 48340 NULL
++ivtv_read_fndecl_48343_fns ivtv_read fndecl 3 48343 NULL
++flash_read_fndecl_48352_fns flash_read fndecl 3 48352 NULL
++kiblnd_create_tx_pool_fndecl_48357_fns kiblnd_create_tx_pool fndecl 2 48357 NULL
++bfad_debugfs_read_regrd_fndecl_48373_fns bfad_debugfs_read_regrd fndecl 3 48373 NULL
++mlxsw_cmd_mbox_query_aq_cap_max_num_rdqs_get_fndecl_48399_fns mlxsw_cmd_mbox_query_aq_cap_max_num_rdqs_get fndecl 0 48399 NULL
++max_kioc_mraid_mmadp_48422_fns max_kioc mraid_mmadp 0 48422 NULL
++read_file_blob_fndecl_48429_fns read_file_blob fndecl 3 48429 NULL
++natids_tid_info_48439_fns natids tid_info 0 48439 NULL
++bzImage64_load_fndecl_48447_fns bzImage64_load fndecl 7 48447 NULL
++alloc_ftrace_hash_fndecl_48452_fns alloc_ftrace_hash fndecl 1 48452 NULL
++read_file_eeprom_fndecl_48455_fns read_file_eeprom fndecl 3 48455 NULL
++pwr_ap_sleep_active_conf_read_fndecl_48457_fns pwr_ap_sleep_active_conf_read fndecl 3 48457 NULL
++copy_to_user_fromio_fndecl_48459_fns copy_to_user_fromio fndecl 3 48459 NULL
++carl9170_read_mreg_fndecl_48468_fns carl9170_read_mreg fndecl 2 48468 NULL
++enclosure_register_fndecl_48471_fns enclosure_register fndecl 3 48471 NULL
++__origin_write_fndecl_48487_fns __origin_write fndecl 2 48487 NULL
++sisusb_clear_vram_fndecl_48489_fns sisusb_clear_vram fndecl 2-3 48489 NULL
++ieee80211_if_read_flags_fndecl_48493_fns ieee80211_if_read_flags fndecl 3 48493 NULL
++rss_key_write_fndecl_48498_fns rss_key_write fndecl 3 48498 NULL
++sys_pselect6_fndecl_48506_fns sys_pselect6 fndecl 1 48506 NULL
++read_file_skb_rx_fndecl_48513_fns read_file_skb_rx fndecl 3 48513 NULL
++copy_in_user_fndecl_48525_fns copy_in_user fndecl 3 48525 NULL
++fscrypt_fname_encrypted_size_fndecl_48527_fns fscrypt_fname_encrypted_size fndecl 0-2 48527 NULL
++max_sense_bytes_mpt3_ioctl_command_48528_fns max_sense_bytes mpt3_ioctl_command 0 48528 NULL
++nilfs_sufile_update_fndecl_48533_fns nilfs_sufile_update fndecl 2 48533 NULL
++cmm_read_fndecl_48547_fns cmm_read fndecl 3 48547 NULL
++dm_stats_create_fndecl_48550_fns dm_stats_create fndecl 6-4-2-3 48550 NULL
++inode_permission_fndecl_48552_fns inode_permission fndecl 0 48552 NULL
++acpi_dev_get_resources_fndecl_48557_fns acpi_dev_get_resources fndecl 0 48557 NULL
++init_tag_map_fndecl_48568_fns init_tag_map fndecl 3 48568 NULL
++start_spy_cam_fndecl_48570_fns start_spy_cam fndecl 0 48570 NULL
++wil_read_file_ssid_fndecl_48574_fns wil_read_file_ssid fndecl 3 48574 NULL nohasharray
++il_dbgfs_force_reset_read_fndecl_48574_fns il_dbgfs_force_reset_read fndecl 3 48574 &wil_read_file_ssid_fndecl_48574_fns
++dynamic_fw_traces_read_fndecl_48579_fns dynamic_fw_traces_read fndecl 3 48579 NULL
++driver_register_fndecl_48593_fns driver_register fndecl 0 48593 NULL
++aggr_size_tx_agg_rate_read_fndecl_48607_fns aggr_size_tx_agg_rate_read fndecl 3 48607 NULL
++read_file_spectral_fft_period_fndecl_48618_fns read_file_spectral_fft_period fndecl 3 48618 NULL
++num_streamids_arm_smmu_master_cfg_48625_fns num_streamids arm_smmu_master_cfg 0 48625 NULL
++get_bridge_ifindices_fndecl_48632_fns get_bridge_ifindices fndecl 0 48632 NULL
++nsymbols_dsp_symbol_desc_48638_fns nsymbols dsp_symbol_desc 0 48638 NULL
++savemem_fndecl_48642_fns savemem fndecl 3 48642 NULL
++ipv6_flowlabel_opt_fndecl_48644_fns ipv6_flowlabel_opt fndecl 3 48644 NULL nohasharray
++slhc_init_fndecl_48644_fns slhc_init fndecl 1-2 48644 &ipv6_flowlabel_opt_fndecl_48644_fns
++libcfs_kvzalloc_cpt_fndecl_48651_fns libcfs_kvzalloc_cpt fndecl 3 48651 NULL
++length_fw_cdev_send_request_48658_fns length fw_cdev_send_request 0 48658 NULL
++nn_rs_control_48667_fns nn rs_control 0 48667 NULL
++make_cpu_key_fndecl_48699_fns make_cpu_key fndecl 3 48699 NULL
++mbox_test_signal_write_fndecl_48729_fns mbox_test_signal_write fndecl 3 48729 NULL
++vmw_view_add_fndecl_48730_fns vmw_view_add fndecl 7 48730 NULL
++garmin_write_bulk_fndecl_48732_fns garmin_write_bulk fndecl 3 48732 NULL
++i40evf_allocate_virt_mem_d_fndecl_48753_fns i40evf_allocate_virt_mem_d fndecl 3 48753 NULL
++string_escape_mem_fndecl_48758_fns string_escape_mem fndecl 0 48758 NULL
++read_file_debug_fndecl_48771_fns read_file_debug fndecl 3 48771 NULL
++profile_load_fndecl_48776_fns profile_load fndecl 3 48776 NULL
++acpi_ds_build_internal_package_obj_fndecl_48780_fns acpi_ds_build_internal_package_obj fndecl 3 48780 NULL
++len_spi_transfer_48802_fns len spi_transfer 0 48802 NULL
++iscsi_decode_text_input_fndecl_48807_fns iscsi_decode_text_input fndecl 4 48807 NULL
++r100_mm_rreg_fndecl_48823_fns r100_mm_rreg fndecl 0 48823 NULL
++omap_device_count_resources_fndecl_48829_fns omap_device_count_resources fndecl 0 48829 NULL
++__generic_file_fsync_fndecl_48835_fns __generic_file_fsync fndecl 2-3 48835 NULL
++tx_tx_start_int_templates_read_fndecl_48839_fns tx_tx_start_int_templates_read fndecl 3 48839 NULL
++ieee80211_if_read_dot11MeshTTL_fndecl_48848_fns ieee80211_if_read_dot11MeshTTL fndecl 3 48848 NULL
++vmalloc_to_sg_fndecl_48865_fns vmalloc_to_sg fndecl 2 48865 NULL
++mpls_count_nexthops_fndecl_48869_fns mpls_count_nexthops fndecl 0 48869 NULL
++__copy_from_user_swizzled_fndecl_48882_fns __copy_from_user_swizzled fndecl 2-4 48882 NULL
++bylength_atto_vda_ae_hdr_48890_fns bylength atto_vda_ae_hdr 0 48890 NULL
++regmap_cache_only_write_file_fndecl_48899_fns regmap_cache_only_write_file fndecl 3 48899 NULL
++radeon_ttm_gtt_read_fndecl_48900_fns radeon_ttm_gtt_read fndecl 3 48900 NULL
++_scif_nodeqp_send_fndecl_48929_fns _scif_nodeqp_send fndecl 0 48929 NULL
++xt_alloc_table_info_fndecl_48956_fns xt_alloc_table_info fndecl 1 48956 NULL
++user_dlm_lock_fndecl_48959_fns user_dlm_lock fndecl 6 48959 NULL
++xfs_mru_cache_create_fndecl_48964_fns xfs_mru_cache_create fndecl 3 48964 NULL
++key_algorithm_read_fndecl_48969_fns key_algorithm_read fndecl 3 48969 NULL
++vtpm_proxy_fops_write_fndecl_48972_fns vtpm_proxy_fops_write fndecl 3 48972 NULL
++dma40_prep_dma_cyclic_fndecl_48976_fns dma40_prep_dma_cyclic fndecl 4-3 48976 NULL
++mwifiex_hscfg_read_fndecl_48979_fns mwifiex_hscfg_read fndecl 3 48979 NULL
++sel_read_handle_unknown_fndecl_48990_fns sel_read_handle_unknown fndecl 3 48990 NULL
++ip_set_alloc_fndecl_49010_fns ip_set_alloc fndecl 1 49010 NULL
++rx_reset_counter_read_fndecl_49026_fns rx_reset_counter_read fndecl 3 49026 NULL
++usb_dmac_prep_slave_sg_fndecl_49027_fns usb_dmac_prep_slave_sg fndecl 3 49027 NULL
++devno_skd_device_49051_fns devno skd_device 0 49051 NULL
++iwl_dbgfs_ucode_rx_stats_read_fndecl_49076_fns iwl_dbgfs_ucode_rx_stats_read fndecl 3 49076 NULL
++dev_priv_size_drm_buf_49086_fns dev_priv_size drm_buf 0 49086 NULL
++cm4040_write_fndecl_49100_fns cm4040_write fndecl 3 49100 NULL nohasharray
++usb_stor_acquire_resources_fndecl_49100_fns usb_stor_acquire_resources fndecl 0 49100 &cm4040_write_fndecl_49100_fns
++alloc_rbio_fndecl_49128_fns alloc_rbio fndecl 3 49128 NULL
++ufx_reg_clear_and_set_bits_fndecl_49150_fns ufx_reg_clear_and_set_bits fndecl 0 49150 NULL
++ipr_alloc_ucode_buffer_fndecl_49172_fns ipr_alloc_ucode_buffer fndecl 1 49172 NULL
++allocate_probes_fndecl_49183_fns allocate_probes fndecl 1 49183 NULL
++fsl_edma_prep_dma_cyclic_fndecl_49197_fns fsl_edma_prep_dma_cyclic fndecl 4-3 49197 NULL nohasharray
++of_get_child_count_fndecl_49197_fns of_get_child_count fndecl 0 49197 &fsl_edma_prep_dma_cyclic_fndecl_49197_fns
++ocrdma_dbgfs_ops_read_fndecl_49211_fns ocrdma_dbgfs_ops_read fndecl 3 49211 NULL
++usbnet_read_cmd_fndecl_49216_fns usbnet_read_cmd fndecl 7 49216 NULL
++rx_xfr_hint_trig_read_fndecl_49224_fns rx_xfr_hint_trig_read fndecl 3 49224 NULL
++rs_sta_dbgfs_scale_table_read_fndecl_49237_fns rs_sta_dbgfs_scale_table_read fndecl 3 49237 NULL
++dwDefaultFrameInterval_uvc_frame_49276_fns dwDefaultFrameInterval uvc_frame 0 49276 NULL
++ib_get_mad_data_offset_fndecl_49283_fns ib_get_mad_data_offset fndecl 0 49283 NULL
++alloc_dev_fndecl_49294_fns alloc_dev fndecl 1 49294 NULL
++SAL_nasids_size_xpc_rsvd_page_49304_fns SAL_nasids_size xpc_rsvd_page 0 49304 NULL
++get_chars_fndecl_49318_fns get_chars fndecl 3 49318 NULL nohasharray
++xstate_copyout_fndecl_49318_fns xstate_copyout fndecl 1-2-7 49318 &get_chars_fndecl_49318_fns
++event_rx_mem_empty_read_fndecl_49336_fns event_rx_mem_empty_read fndecl 3 49336 NULL
++cifs_stats_proc_write_fndecl_49338_fns cifs_stats_proc_write fndecl 3 49338 NULL
++fence_array_create_fndecl_49340_fns fence_array_create fndecl 1 49340 NULL
++__iterate_backrefs_fndecl_49345_fns __iterate_backrefs fndecl 2 49345 NULL
++num_msix_entries_qib_chip_specific_49373_fns num_msix_entries qib_chip_specific 0 49373 NULL
++num_simgs_icp_qat_suof_img_tbl_49375_fns num_simgs icp_qat_suof_img_tbl 0 49375 NULL
++tty_prepare_flip_string_fndecl_49408_fns tty_prepare_flip_string fndecl 3 49408 NULL
++lstcon_group_list_fndecl_49413_fns lstcon_group_list fndecl 2 49413 NULL
++size_efx_farch_filter_table_49415_fns size efx_farch_filter_table 0 49415 NULL
++main_segments_f2fs_sm_info_49433_fns main_segments f2fs_sm_info 0 49433 NULL
++mthca_array_init_fndecl_49440_fns mthca_array_init fndecl 2 49440 NULL
++fw_device_op_read_fndecl_49445_fns fw_device_op_read fndecl 3 49445 NULL
++broadsheetfb_write_fndecl_49467_fns broadsheetfb_write fndecl 3 49467 NULL
++xen_hvm_config_fndecl_49473_fns xen_hvm_config fndecl 2 49473 NULL
++ivtvfb_write_fndecl_49476_fns ivtvfb_write fndecl 3 49476 NULL
++datablob_hmac_append_fndecl_49525_fns datablob_hmac_append fndecl 3 49525 NULL
++pt_write_fndecl_49612_fns pt_write fndecl 3 49612 NULL
++ocfs2_sync_file_fndecl_49614_fns ocfs2_sync_file fndecl 2-3 49614 NULL
++dwc2_max_desc_num_fndecl_49623_fns dwc2_max_desc_num fndecl 0 49623 NULL
++end_async_cow_49625_fns end async_cow 0 49625 NULL
++ath10k_write_simulate_fw_crash_fndecl_49628_fns ath10k_write_simulate_fw_crash fndecl 3 49628 NULL
++iocbq_lookup_len_lpfc_sli_49647_fns iocbq_lookup_len lpfc_sli 0 49647 NULL
++size_unit_element_struct_49673_fns size unit_element_struct 0 49673 NULL
++__seq_open_private_fndecl_49688_fns __seq_open_private fndecl 3 49688 NULL
++batadv_iv_ogm_drop_bcast_own_entry_fndecl_49690_fns batadv_iv_ogm_drop_bcast_own_entry fndecl 2 49690 NULL
++report_size_iowarrior_49692_fns report_size iowarrior 0 49692 NULL
++security_inode_listxattr_fndecl_49699_fns security_inode_listxattr fndecl 0 49699 NULL
++pg_write_fndecl_49709_fns pg_write fndecl 3 49709 NULL
++ieee80211_if_read_rc_rateidx_vht_mcs_mask_5ghz_fndecl_49710_fns ieee80211_if_read_rc_rateidx_vht_mcs_mask_5ghz fndecl 3 49710 NULL
++brd_init_one_fndecl_49718_fns brd_init_one fndecl 1 49718 NULL
++kernfs_fop_read_fndecl_49745_fns kernfs_fop_read fndecl 3 49745 NULL
++mlx5_alloc_priv_descs_fndecl_49758_fns mlx5_alloc_priv_descs fndecl 3-4 49758 NULL
++dwFrameInterval_uvc_streaming_control_49771_fns dwFrameInterval uvc_streaming_control 0 49771 NULL
++rtw_add_beacon_fndecl_49778_fns rtw_add_beacon fndecl 5-3 49778 NULL
++nilfs_mdt_init_fndecl_49794_fns nilfs_mdt_init fndecl 3 49794 NULL
++write_file_wow_fndecl_49799_fns write_file_wow fndecl 3 49799 NULL
++response_length_ib_uverbs_ex_query_device_resp_49831_fns response_length ib_uverbs_ex_query_device_resp 0 49831 NULL
++read_file_queue_fndecl_49836_fns read_file_queue fndecl 3 49836 NULL
++waiters_read_fndecl_49877_fns waiters_read fndecl 3 49877 NULL
++isdn_add_channels_fndecl_49882_fns isdn_add_channels fndecl 3 49882 NULL
++head_len_beacon_attr_49884_fns head_len beacon_attr 0 49884 NULL
++path_listxattr_fndecl_49894_fns path_listxattr fndecl 3 49894 NULL
++snd_vx_create_fndecl_49895_fns snd_vx_create fndecl 4 49895 NULL
++max_sds_rings_netxen_adapter_49896_fns max_sds_rings netxen_adapter 0 49896 NULL
++skd_max_queue_depth_vardecl_skd_main_c_49938_fns skd_max_queue_depth vardecl_skd_main.c 0 49938 NULL
++tomoyo_update_policy_fndecl_49945_fns tomoyo_update_policy fndecl 2 49945 NULL
++__ethtool_get_sset_count_fndecl_49964_fns __ethtool_get_sset_count fndecl 0 49964 NULL
++mbox_size_wl1271_49981_fns mbox_size wl1271 0 49981 NULL
++buffer_target_count_pvr2_stream_49996_fns buffer_target_count pvr2_stream 0 49996 NULL
++ff_effects_max_uinput_device_49998_fns ff_effects_max uinput_device 0 49998 NULL
++ixgbe_dbg_reg_ops_read_fndecl_49999_fns ixgbe_dbg_reg_ops_read fndecl 3 49999 NULL
++ima_write_policy_fndecl_50039_fns ima_write_policy fndecl 3 50039 NULL
++esp_alloc_tmp_fndecl_50045_fns esp_alloc_tmp fndecl 2-3 50045 NULL
++get_priv_descr_and_size_fndecl_50103_fns get_priv_descr_and_size fndecl 0 50103 NULL
++pipeline_rx_complete_stat_fifo_int_read_fndecl_50124_fns pipeline_rx_complete_stat_fifo_int_read fndecl 3 50124 NULL
++usb_set_interface_fndecl_50126_fns usb_set_interface fndecl 0 50126 NULL
++max_burst_whc_qset_50130_fns max_burst whc_qset 0 50130 NULL
++pid_nr_ns_fndecl_50141_fns pid_nr_ns fndecl 0 50141 NULL
++nfc_hci_set_param_fndecl_50154_fns nfc_hci_set_param fndecl 5 50154 NULL nohasharray
++size_ubifs_data_node_50154_fns size ubifs_data_node 0 50154 &nfc_hci_set_param_fndecl_50154_fns
++videobuf_dma_init_user_locked_fndecl_50165_fns videobuf_dma_init_user_locked fndecl 3-4 50165 NULL
++pci_enable_resources_fndecl_50171_fns pci_enable_resources fndecl 0 50171 NULL
++nested_cr3_nested_state_50183_fns nested_cr3 nested_state 0 50183 NULL
++gfs2_create_inode_fndecl_50184_fns gfs2_create_inode fndecl 7 50184 NULL
++echo_client_kbrw_fndecl_50193_fns echo_client_kbrw fndecl 6 50193 NULL
++s_zmap_blocks_minix_sb_info_50206_fns s_zmap_blocks minix_sb_info 0 50206 NULL
++mwifiex_verext_read_fndecl_50224_fns mwifiex_verext_read fndecl 3 50224 NULL
++pwr_cont_miss_bcns_spread_read_fndecl_50241_fns pwr_cont_miss_bcns_spread_read fndecl 3 50241 NULL
++posix_acl_to_xattr_fndecl_50262_fns posix_acl_to_xattr fndecl 0 50262 NULL
++buf_struct_size_vb2_queue_50266_fns buf_struct_size vb2_queue 0 50266 NULL
++rx_filter_protection_filter_read_fndecl_50273_fns rx_filter_protection_filter_read fndecl 3 50273 NULL
++_iwl_dbgfs_pm_params_write_fndecl_50318_fns _iwl_dbgfs_pm_params_write fndecl 3 50318 NULL
++__vmalloc_node_fndecl_50335_fns __vmalloc_node fndecl 1-2 50335 NULL
++__copy_from_user_nocache_fndecl_50340_fns __copy_from_user_nocache fndecl 3 50340 NULL
++next_minor_vardecl_md_c_50357_fns next_minor vardecl_md.c 0 50357 NULL
++regmap_name_read_file_fndecl_50368_fns regmap_name_read_file fndecl 3 50368 NULL
++fnic_trace_debugfs_read_fndecl_50375_fns fnic_trace_debugfs_read fndecl 3 50375 NULL
++user_power_read_fndecl_50405_fns user_power_read fndecl 3 50405 NULL
++size_uvc_clock_50418_fns size uvc_clock 0 50418 NULL
++ecc_alloc_point_fndecl_50432_fns ecc_alloc_point fndecl 1 50432 NULL
++sbp_count_se_tpg_luns_fndecl_50444_fns sbp_count_se_tpg_luns fndecl 0 50444 NULL
++il_dbgfs_sram_write_fndecl_50445_fns il_dbgfs_sram_write fndecl 3 50445 NULL
++nfsd_drc_mem_used_vardecl_50456_fns nfsd_drc_mem_used vardecl 0 50456 NULL
++__ath6kl_wmi_send_mgmt_cmd_fndecl_50472_fns __ath6kl_wmi_send_mgmt_cmd fndecl 7 50472 NULL
++buf_size_dmatest_params_50477_fns buf_size dmatest_params 0 50477 NULL
++lpfc_idiag_extacc_write_fndecl_50501_fns lpfc_idiag_extacc_write fndecl 3 50501 NULL
++OSDSetBlock_fndecl_50521_fns OSDSetBlock fndecl 2-4 50521 NULL
++get_nodes_fndecl_50551_fns get_nodes fndecl 3 50551 NULL
++do_write_kmem_fndecl_50584_fns do_write_kmem fndecl 0-1-3 50584 NULL
++pwrite_dvb_ringbuffer_50594_fns pwrite dvb_ringbuffer 0 50594 NULL
++__kfifo_to_user_r_fndecl_50624_fns __kfifo_to_user_r fndecl 3-5 50624 NULL nohasharray
++buffer_depth_etb_drvdata_50624_fns buffer_depth etb_drvdata 0 50624 &__kfifo_to_user_r_fndecl_50624_fns
++keymap_size_dell_dmi_results_50640_fns keymap_size dell_dmi_results 0 50640 NULL
++tomoyo_truncate_fndecl_50642_fns tomoyo_truncate fndecl 0 50642 NULL
++xor_sources_dmatest_params_50653_fns xor_sources dmatest_params 0 50653 NULL
++qsfp2_debugfs_write_fndecl_50656_fns qsfp2_debugfs_write fndecl 3 50656 NULL
++proc_coredump_filter_read_fndecl_50658_fns proc_coredump_filter_read fndecl 3 50658 NULL
++da9150_i2c_write_device_fndecl_50670_fns da9150_i2c_write_device fndecl 3 50670 NULL
++alloc_ring_fndecl_50684_fns alloc_ring fndecl 2-4 50684 NULL
++get_device_info_fndecl_50718_fns get_device_info fndecl 0 50718 NULL
++dm_create_fndecl_50754_fns dm_create fndecl 1 50754 NULL
++ip_vs_sync_buff_create_fndecl_50787_fns ip_vs_sync_buff_create fndecl 2 50787 NULL
++xhci_alloc_segments_for_ring_fndecl_50793_fns xhci_alloc_segments_for_ring fndecl 7 50793 NULL
++ib_uverbs_get_context_fndecl_50799_fns ib_uverbs_get_context fndecl 4-5 50799 NULL
++persistent_ram_buffer_map_fndecl_50803_fns persistent_ram_buffer_map fndecl 1-2 50803 NULL
++malloc_size__BIG_IOCTL_Command_struct_50805_fns malloc_size _BIG_IOCTL_Command_struct 0 50805 NULL
++ocfs2_pages_per_cluster_fndecl_50813_fns ocfs2_pages_per_cluster fndecl 0 50813 NULL
++sys_migrate_pages_fndecl_50818_fns sys_migrate_pages fndecl 2 50818 NULL
++get_priv_size_fndecl_50823_fns get_priv_size fndecl 0-1 50823 NULL
++security_inode_listsecurity_fndecl_50839_fns security_inode_listsecurity fndecl 0 50839 NULL
++decrypted_key_size_ecryptfs_session_key_50847_fns decrypted_key_size ecryptfs_session_key 0 50847 NULL
++pwr_ap_sleep_user_conf_read_fndecl_50848_fns pwr_ap_sleep_user_conf_read fndecl 3 50848 NULL
++force_bredr_smp_read_fndecl_50855_fns force_bredr_smp_read fndecl 3 50855 NULL
++alloc_disk_fndecl_50861_fns alloc_disk fndecl 1 50861 NULL
++ie_len_ieee80211_if_ibss_50890_fns ie_len ieee80211_if_ibss 0 50890 NULL nohasharray
++pkt_add_fndecl_50890_fns pkt_add fndecl 3 50890 &ie_len_ieee80211_if_ibss_50890_fns
++req_len_proxy_dev_50912_fns req_len proxy_dev 0 50912 NULL
++oom_score_adj_read_fndecl_50914_fns oom_score_adj_read fndecl 3 50914 NULL
++init_sc_pools_and_sizes_fndecl_50922_fns init_sc_pools_and_sizes fndecl 0 50922 NULL
++first_minor_gendisk_50925_fns first_minor gendisk 0 50925 NULL
++read_file_modal_eeprom_fndecl_50934_fns read_file_modal_eeprom fndecl 3 50934 NULL
++dw210x_op_rw_fndecl_50936_fns dw210x_op_rw fndecl 6 50936 NULL
++gen_pool_add_virt_fndecl_50938_fns gen_pool_add_virt fndecl 4 50938 NULL
++wil_rx_init_fndecl_50939_fns wil_rx_init fndecl 2 50939 NULL
++reg_list_size_bytes_amdgpu_rlc_50951_fns reg_list_size_bytes amdgpu_rlc 0 50951 NULL
++brcmf_p2p_escan_fndecl_50953_fns brcmf_p2p_escan fndecl 2 50953 NULL
++nsegments_dsp_module_desc_50965_fns nsegments dsp_module_desc 0 50965 NULL
++memdup_user_nul_fndecl_50968_fns memdup_user_nul fndecl 2 50968 NULL
++sdma_get_descq_cnt_fndecl_50975_fns sdma_get_descq_cnt fndecl 0 50975 NULL
++setkey_unaligned_fndecl_50977_fns setkey_unaligned fndecl 3 50977 NULL
++n_hdlc_tty_receive_fndecl_50980_fns n_hdlc_tty_receive fndecl 4 50980 NULL
++usif_ioctl_fndecl_50986_fns usif_ioctl fndecl 3 50986 NULL
++mic_desc_size_fndecl_51003_fns mic_desc_size fndecl 0 51003 NULL
++ib_uverbs_create_srq_fndecl_51025_fns ib_uverbs_create_srq fndecl 4-5 51025 NULL
++int_proc_write_fndecl_51045_fns int_proc_write fndecl 3 51045 NULL
++mlxsw_sp_port_prio_tc_set_fndecl_51047_fns mlxsw_sp_port_prio_tc_set fndecl 0 51047 NULL
++cl_req_alloc_fndecl_51056_fns cl_req_alloc fndecl 4 51056 NULL
++datablob_format_fndecl_51072_fns datablob_format fndecl 2 51072 NULL nohasharray
++ieee80211_if_read_fwded_mcast_fndecl_51072_fns ieee80211_if_read_fwded_mcast fndecl 3 51072 &datablob_format_fndecl_51072_fns
++pp_write_fndecl_51089_fns pp_write fndecl 3 51089 NULL
++copy_chunked_from_user_fndecl_51106_fns copy_chunked_from_user fndecl 3 51106 NULL
++memblock_virt_alloc_internal_fndecl_51107_fns memblock_virt_alloc_internal fndecl 1 51107 NULL
++queue_count_nvme_rdma_ctrl_51126_fns queue_count nvme_rdma_ctrl 0 51126 NULL
++igb_pci_enable_sriov_fndecl_51131_fns igb_pci_enable_sriov fndecl 2 51131 NULL
++wqe_cnt_mlx4_ib_wq_51135_fns wqe_cnt mlx4_ib_wq 0 51135 NULL
++nfs_idmap_get_key_fndecl_51155_fns nfs_idmap_get_key fndecl 2 51155 NULL
++num_backlights_lm3533_platform_data_51165_fns num_backlights lm3533_platform_data 0 51165 NULL
++kvm_read_guest_cached_fndecl_51169_fns kvm_read_guest_cached fndecl 4 51169 NULL
++__dev_alloc_name_fndecl_51173_fns __dev_alloc_name fndecl 0 51173 NULL
++v4l_stk_read_fndecl_51179_fns v4l_stk_read fndecl 3 51179 NULL
++snd_rme32_capture_copy_fndecl_51190_fns snd_rme32_capture_copy fndecl 5 51190 NULL
++prism2_info_hostscanresults_fndecl_51194_fns prism2_info_hostscanresults fndecl 3 51194 NULL
++drm_dp_dpcd_access_fndecl_51196_fns drm_dp_dpcd_access fndecl 0 51196 NULL
++btrfs_extent_same_fndecl_51200_fns btrfs_extent_same fndecl 3 51200 NULL
++kvm_clear_guest_fndecl_51207_fns kvm_clear_guest fndecl 3-2 51207 NULL
++goodix_i2c_write_fndecl_51209_fns goodix_i2c_write fndecl 4 51209 NULL
++mei_dbgfs_read_activation_fndecl_51224_fns mei_dbgfs_read_activation fndecl 3 51224 NULL
++rt2x00debug_write_rf_fndecl_51232_fns rt2x00debug_write_rf fndecl 3 51232 NULL
++get_ucode_user_fndecl_51241_fns get_ucode_user fndecl 3 51241 NULL
++imxdma_prep_dma_cyclic_fndecl_51257_fns imxdma_prep_dma_cyclic fndecl 4-3 51257 NULL
++ceph_decode_16_fndecl_51276_fns ceph_decode_16 fndecl 0 51276 NULL
++ramoops_read_kmsg_hdr_fndecl_51300_fns ramoops_read_kmsg_hdr fndecl 0 51300 NULL
++mthca_alloc_icm_table_fndecl_51311_fns mthca_alloc_icm_table fndecl 3-4 51311 NULL nohasharray
++ieee80211_if_read_auto_open_plinks_fndecl_51311_fns ieee80211_if_read_auto_open_plinks fndecl 3 51311 &mthca_alloc_icm_table_fndecl_51311_fns
++_ipw_read_reg32_fndecl_51318_fns _ipw_read_reg32 fndecl 0 51318 NULL
++drv_sds_rings_qlcnic_adapter_51319_fns drv_sds_rings qlcnic_adapter 0 51319 NULL
++dvb_register_device_fndecl_51331_fns dvb_register_device fndecl 6-0 51331 NULL
++C_SYSC_pselect6_fndecl_51339_fns C_SYSC_pselect6 fndecl 1 51339 NULL
++xfs_bmbt_to_bmdr_fndecl_51344_fns xfs_bmbt_to_bmdr fndecl 3 51344 NULL nohasharray
++xfs_bmdr_to_bmbt_fndecl_51344_fns xfs_bmdr_to_bmbt fndecl 5 51344 &xfs_bmbt_to_bmdr_fndecl_51344_fns
++dev_change_flags_fndecl_51349_fns dev_change_flags fndecl 0 51349 NULL
++isr_rx_headers_read_fndecl_51366_fns isr_rx_headers_read fndecl 3 51366 NULL
++uvc_try_frame_interval_fndecl_51372_fns uvc_try_frame_interval fndecl 0-2 51372 NULL
++ucma_query_path_fndecl_51378_fns ucma_query_path fndecl 3 51378 NULL
++num_queues_virtio_scsi_51387_fns num_queues virtio_scsi 0 51387 NULL nohasharray
++__ptr_ring_init_queue_alloc_fndecl_51387_fns __ptr_ring_init_queue_alloc fndecl 1 51387 &num_queues_virtio_scsi_51387_fns
++kmemleak_alloc_recursive_fndecl_51410_fns kmemleak_alloc_recursive fndecl 2 51410 NULL
++num_rx_queues_ixgbevf_adapter_51428_fns num_rx_queues ixgbevf_adapter 0 51428 NULL
++send_extent_data_fndecl_51438_fns send_extent_data fndecl 2 51438 NULL
++max_cmds_ipr_ioa_cfg_51439_fns max_cmds ipr_ioa_cfg 0 51439 NULL
++compat_sys_rt_sigpending_fndecl_51480_fns compat_sys_rt_sigpending fndecl 2 51480 NULL nohasharray
++vb2_dma_sg_alloc_fndecl_51480_fns vb2_dma_sg_alloc fndecl 3 51480 &compat_sys_rt_sigpending_fndecl_51480_fns
++num_vectors_mic_irq_info_51485_fns num_vectors mic_irq_info 0 51485 NULL
++end_soundfont_sample_info_51497_fns end soundfont_sample_info 0 51497 NULL
++fw_handle_comment_fndecl_51503_fns fw_handle_comment fndecl 3 51503 NULL
++_rtw_malloc_fndecl_51515_fns _rtw_malloc fndecl 1 51515 NULL
++nfp_net_rx_ring_alloc_fndecl_51524_fns nfp_net_rx_ring_alloc fndecl 3 51524 NULL
++fifo_alloc_fndecl_51546_fns fifo_alloc fndecl 1 51546 NULL
++persistent_ram_old_size_fndecl_51582_fns persistent_ram_old_size fndecl 0 51582 NULL
++aggr_recv_addba_req_evt_fndecl_51590_fns aggr_recv_addba_req_evt fndecl 4 51590 NULL
++il_dbgfs_chain_noise_read_fndecl_51599_fns il_dbgfs_chain_noise_read fndecl 3 51599 NULL
++wilc_add_beacon_fndecl_51601_fns wilc_add_beacon fndecl 6-4 51601 NULL
++vfp_get_fndecl_51605_fns vfp_get fndecl 3-4 51605 NULL
++etb_get_buffer_depth_fndecl_51607_fns etb_get_buffer_depth fndecl 0 51607 NULL
++cifs_send_async_read_fndecl_51630_fns cifs_send_async_read fndecl 2 51630 NULL
++sysfs_do_create_link_fndecl_51632_fns sysfs_do_create_link fndecl 0 51632 NULL
++wil_vring_init_bcast_fndecl_51633_fns wil_vring_init_bcast fndecl 3 51633 NULL nohasharray
++_iwl_dbgfs_fw_dbg_conf_write_fndecl_51633_fns _iwl_dbgfs_fw_dbg_conf_write fndecl 3 51633 &wil_vring_init_bcast_fndecl_51633_fns
++_xfs_buf_alloc_fndecl_51641_fns _xfs_buf_alloc fndecl 3 51641 NULL
++nsm_create_handle_fndecl_51647_fns nsm_create_handle fndecl 4 51647 NULL
++ath10k_mem_value_read_fndecl_51648_fns ath10k_mem_value_read fndecl 3 51648 NULL
++inet_set_ifa_fndecl_51661_fns inet_set_ifa fndecl 0 51661 NULL
++snd_pcm_oss_write_fndecl_51663_fns snd_pcm_oss_write fndecl 3 51663 NULL
++wcn36xx_smd_rsp_process_fndecl_51666_fns wcn36xx_smd_rsp_process fndecl 3 51666 NULL nohasharray
++xfs_buf_readahead_map_fndecl_51666_fns xfs_buf_readahead_map fndecl 3 51666 &wcn36xx_smd_rsp_process_fndecl_51666_fns
++resource_list_create_entry_fndecl_51673_fns resource_list_create_entry fndecl 2 51673 NULL
++ep0_read_fndecl_51676_fns ep0_read fndecl 3 51676 NULL
++proc_self_readlink_fndecl_51677_fns proc_self_readlink fndecl 3 51677 NULL
++request_key_auth_new_fndecl_51679_fns request_key_auth_new fndecl 3 51679 NULL
++num_req_context_skd_device_51707_fns num_req_context skd_device 0 51707 NULL
++iscsit_dump_data_payload_fndecl_51720_fns iscsit_dump_data_payload fndecl 2 51720 NULL
++ib_uverbs_modify_qp_fndecl_51721_fns ib_uverbs_modify_qp fndecl 4-5 51721 NULL nohasharray
++nlimbs_gcry_mpi_51721_fns nlimbs gcry_mpi 0 51721 &ib_uverbs_modify_qp_fndecl_51721_fns
++acpi_copy_property_array_u32_fndecl_51744_fns acpi_copy_property_array_u32 fndecl 0 51744 NULL
++sd_size_stat_data_v1_51758_fns sd_size stat_data_v1 0 51758 NULL
++btusb_qca_send_vendor_req_fndecl_51785_fns btusb_qca_send_vendor_req fndecl 4 51785 NULL
++iwl_dbgfs_thermal_throttling_read_fndecl_51816_fns iwl_dbgfs_thermal_throttling_read fndecl 3 51816 NULL
++bcache_device_init_fndecl_51822_fns bcache_device_init fndecl 3 51822 NULL
++do_pci_enable_device_fndecl_51841_fns do_pci_enable_device fndecl 0 51841 NULL
++ipv6_renew_option_fndecl_51854_fns ipv6_renew_option fndecl 3 51854 NULL
++nr_dma_pages_drm_savage_private_51862_fns nr_dma_pages drm_savage_private 0 51862 NULL
++direct_entry_fndecl_51879_fns direct_entry fndecl 3 51879 NULL
++sys_select_fndecl_51896_fns sys_select fndecl 1 51896 NULL
++interfaces_fndecl_51928_fns interfaces fndecl 2 51928 NULL
++traverse_fndecl_51938_fns traverse fndecl 2 51938 NULL
++nci_core_conn_create_fndecl_51946_fns nci_core_conn_create fndecl 4 51946 NULL
++__blk_queue_init_tags_fndecl_51956_fns __blk_queue_init_tags fndecl 2 51956 NULL
++ofdpa_group_l2_fan_out_fndecl_51958_fns ofdpa_group_l2_fan_out fndecl 4 51958 NULL
++max_data_size_mpt3_ioctl_header_51964_fns max_data_size mpt3_ioctl_header 0 51964 NULL
++dbgfs_state_fndecl_51965_fns dbgfs_state fndecl 3 51965 NULL
++ieee80211_if_read_dtim_count_fndecl_51968_fns ieee80211_if_read_dtim_count fndecl 3 51968 NULL
++pmcraid_copy_sglist_fndecl_51980_fns pmcraid_copy_sglist fndecl 3 51980 NULL
++mlx5_query_port_ptys_fndecl_52003_fns mlx5_query_port_ptys fndecl 3 52003 NULL
++kvm_write_guest_fndecl_52005_fns kvm_write_guest fndecl 4-2 52005 NULL
++videobuf_waiton_fndecl_52008_fns videobuf_waiton fndecl 0 52008 NULL
++seq_commit_fndecl_52023_fns seq_commit fndecl 2 52023 NULL
++kvm_arch_setup_async_pf_fndecl_52034_fns kvm_arch_setup_async_pf fndecl 3 52034 NULL
++ttm_dma_page_alloc_init_fndecl_52037_fns ttm_dma_page_alloc_init fndecl 2 52037 NULL
++btrfs_next_old_leaf_fndecl_52050_fns btrfs_next_old_leaf fndecl 0 52050 NULL
++wil_read_file_led_cfg_fndecl_52057_fns wil_read_file_led_cfg fndecl 3 52057 NULL
++_iwl_dbgfs_scan_ant_rxchain_write_fndecl_52060_fns _iwl_dbgfs_scan_ant_rxchain_write fndecl 3 52060 NULL
++event_rx_mismatch_read_fndecl_52069_fns event_rx_mismatch_read fndecl 3 52069 NULL
++iscsi_create_iface_fndecl_52093_fns iscsi_create_iface fndecl 5 52093 NULL
++dev_names_read_fndecl_52094_fns dev_names_read fndecl 3 52094 NULL
++assoc_rem_len_amp_ctrl_52099_fns assoc_rem_len amp_ctrl 0 52099 NULL
++drv_tx_rings_qlcnic_adapter_52102_fns drv_tx_rings qlcnic_adapter 0 52102 NULL
++cache_random_seq_create_fndecl_52109_fns cache_random_seq_create fndecl 2 52109 NULL
++fjes_hw_get_max_epid_fndecl_52129_fns fjes_hw_get_max_epid fndecl 0 52129 NULL
++snd_nm256_playback_copy_fndecl_52148_fns snd_nm256_playback_copy fndecl 5 52148 NULL
++il4965_rs_sta_dbgfs_scale_table_read_fndecl_52151_fns il4965_rs_sta_dbgfs_scale_table_read fndecl 3 52151 NULL
++indirect_sg_entries_vardecl_ib_srp_c_52165_fns indirect_sg_entries vardecl_ib_srp.c 0 52165 NULL
++rd_allocate_sgl_table_fndecl_52188_fns rd_allocate_sgl_table fndecl 3 52188 NULL
++regmap_calc_reg_len_fndecl_52195_fns regmap_calc_reg_len fndecl 0 52195 NULL
++qp_broker_alloc_fndecl_52197_fns qp_broker_alloc fndecl 6-5 52197 NULL
++audit_init_entry_fndecl_52199_fns audit_init_entry fndecl 1 52199 NULL
++write_enabled_file_bool_fndecl_52213_fns write_enabled_file_bool fndecl 3 52213 NULL
++size_elf_note_info_52250_fns size elf_note_info 0 52250 NULL
++num_alt_cx231xx_audio_52283_fns num_alt cx231xx_audio 0 52283 NULL
++rts51x_get_max_lun_fndecl_52294_fns rts51x_get_max_lun fndecl 0 52294 NULL
++alloc_page_ext_fndecl_52310_fns alloc_page_ext fndecl 1 52310 NULL
++cmd_len_c2h_evt_hdr_52322_fns cmd_len c2h_evt_hdr 0 52322 NULL
++rx_filter_dup_filter_read_fndecl_52325_fns rx_filter_dup_filter_read fndecl 3 52325 NULL
++iwl_dbgfs_d3_sram_read_fndecl_52326_fns iwl_dbgfs_d3_sram_read fndecl 3 52326 NULL
++luns_per_chnl_nvm_dev_52339_fns luns_per_chnl nvm_dev 0 52339 NULL
++__do_replace_fndecl_52344_fns __do_replace fndecl 5 52344 NULL
++xpc_connect_fndecl_52346_fns xpc_connect fndecl 5 52346 NULL
++_iwl_dbgfs_fw_restart_write_fndecl_52357_fns _iwl_dbgfs_fw_restart_write fndecl 3 52357 NULL
++rtl_read_byte_fndecl_52358_fns rtl_read_byte fndecl 0 52358 NULL
++nested_svm_map_fndecl_52359_fns nested_svm_map fndecl 2 52359 NULL
++num_phys_mptsas_portinfo_52375_fns num_phys mptsas_portinfo 0 52375 NULL
++nrealreaders_vardecl_rcutorture_c_52376_fns nrealreaders vardecl_rcutorture.c 0 52376 NULL
++error_tbc_exch_mismatch_read_fndecl_52388_fns error_tbc_exch_mismatch_read fndecl 3 52388 NULL
++ieee80211_if_read_power_mode_fndecl_52394_fns ieee80211_if_read_power_mode fndecl 3 52394 NULL
++command_fndecl_52411_fns command fndecl 0 52411 NULL
++scsi_mode_select_fndecl_52417_fns scsi_mode_select fndecl 6 52417 NULL nohasharray
++drm_fbdev_cma_init_fndecl_52417_fns drm_fbdev_cma_init fndecl 3-4-2 52417 &scsi_mode_select_fndecl_52417_fns
++sddr09_read_control_fndecl_52418_fns sddr09_read_control fndecl 3-5 52418 NULL
++security_inode_getsecurity_fndecl_52473_fns security_inode_getsecurity fndecl 0 52473 NULL
++tx_tx_data_programmed_read_fndecl_52500_fns tx_tx_data_programmed_read fndecl 3 52500 NULL
++ControllerNumber_DAC960_Controller_52503_fns ControllerNumber DAC960_Controller 0 52503 NULL
++svc_setsockopt_fndecl_52511_fns svc_setsockopt fndecl 5 52511 NULL
++selinux_inode_notifysecctx_fndecl_52531_fns selinux_inode_notifysecctx fndecl 3 52531 NULL
++data_size_binder_transaction_data_52567_fns data_size binder_transaction_data 0 52567 NULL
++il4965_rs_sta_dbgfs_scale_table_write_fndecl_52576_fns il4965_rs_sta_dbgfs_scale_table_write fndecl 3 52576 NULL
++auok190xfb_write_fndecl_52634_fns auok190xfb_write fndecl 3 52634 NULL
++setxattr_fndecl_52637_fns setxattr fndecl 4 52637 NULL
++page_count_drm_device_dma_52645_fns page_count drm_device_dma 0 52645 NULL
++num_txq_per_tx_bnad_52646_fns num_txq_per_tx bnad 0 52646 NULL
++ieee80211_chsw_switch_vifs_fndecl_52661_fns ieee80211_chsw_switch_vifs fndecl 2 52661 NULL
++ec_i2c_xfer_fndecl_52662_fns ec_i2c_xfer fndecl 3 52662 NULL
++command_file_read_fndecl_52669_fns command_file_read fndecl 3 52669 NULL
++vmap_batch_fndecl_52675_fns vmap_batch fndecl 2-3 52675 NULL
++parse_command_fndecl_52676_fns parse_command fndecl 2 52676 NULL
++SYSC_setxattr_fndecl_52677_fns SYSC_setxattr fndecl 4 52677 NULL
++drm_mode_create_rotation_property_fndecl_52681_fns drm_mode_create_rotation_property fndecl 2 52681 NULL
++_iwl_dbgfs_bcast_filters_macs_write_fndecl_52702_fns _iwl_dbgfs_bcast_filters_macs_write fndecl 3 52702 NULL
++regmap_map_read_file_fndecl_52774_fns regmap_map_read_file fndecl 3 52774 NULL
++SYSC_get_mempolicy_fndecl_52787_fns SYSC_get_mempolicy fndecl 3 52787 NULL
++avc_ca_pmt_fndecl_52789_fns avc_ca_pmt fndecl 3 52789 NULL
++ieee80211_if_read_rc_rateidx_mcs_mask_2ghz_fndecl_52792_fns ieee80211_if_read_rc_rateidx_mcs_mask_2ghz fndecl 3 52792 NULL
++app_size_ls_ucode_img_desc_52793_fns app_size ls_ucode_img_desc 0 52793 NULL
++wiphy_new_nm_fndecl_52833_fns wiphy_new_nm fndecl 2 52833 NULL
++ocfs2_control_cfu_fndecl_52837_fns ocfs2_control_cfu fndecl 2 52837 NULL
++xfs_cross_rename_fndecl_52839_fns xfs_cross_rename fndecl 10 52839 NULL
++ext2_fsync_fndecl_52850_fns ext2_fsync fndecl 2-3 52850 NULL
++dccp_setsockopt_cscov_fndecl_52885_fns dccp_setsockopt_cscov fndecl 2-0 52885 NULL
++nvram_len_nvram_parser_52887_fns nvram_len nvram_parser 0 52887 NULL
++rx_decrypt_key_not_found_read_fndecl_52911_fns rx_decrypt_key_not_found_read fndecl 3 52911 NULL
++il4965_rs_sta_dbgfs_rate_scale_data_read_fndecl_52915_fns il4965_rs_sta_dbgfs_rate_scale_data_read fndecl 3 52915 NULL
++smk_read_logging_fndecl_52927_fns smk_read_logging fndecl 3 52927 NULL
++o2hb_debug_read_fndecl_52936_fns o2hb_debug_read fndecl 3 52936 NULL
++minor_drbd_genlmsghdr_52949_fns minor drbd_genlmsghdr 0 52949 NULL
++__arm_iommu_alloc_attrs_fndecl_52955_fns __arm_iommu_alloc_attrs fndecl 2 52955 NULL
++sys_setxattr_fndecl_52971_fns sys_setxattr fndecl 4 52971 NULL
++tty_insert_flip_string_fixed_flag_fndecl_53031_fns tty_insert_flip_string_fixed_flag fndecl 4 53031 NULL
++sys_getxattr_fndecl_53049_fns sys_getxattr fndecl 4 53049 NULL
++acpi_os_allocate_zeroed_fndecl_53053_fns acpi_os_allocate_zeroed fndecl 1 53053 NULL
++pxad_prep_memcpy_fndecl_53065_fns pxad_prep_memcpy fndecl 4 53065 NULL
++kvm_vcpu_write_guest_page_fndecl_53070_fns kvm_vcpu_write_guest_page fndecl 5-2 53070 NULL
++omap_hwmod_mux_init_fndecl_53072_fns omap_hwmod_mux_init fndecl 2 53072 NULL
++fru_alloc_fndecl_53073_fns fru_alloc fndecl 1 53073 NULL
++ntfs_dir_fsync_fndecl_53093_fns ntfs_dir_fsync fndecl 2-3 53093 NULL
++wilc_spi_read_fndecl_53099_fns wilc_spi_read fndecl 4 53099 NULL
++brcmf_fw_nvram_strip_fndecl_53102_fns brcmf_fw_nvram_strip fndecl 2 53102 NULL
++rx_nr_rings_bnxt_53108_fns rx_nr_rings bnxt 0 53108 NULL
++xz_dec_test_write_fndecl_53124_fns xz_dec_test_write fndecl 3 53124 NULL
++fault_inject_read_fndecl_53133_fns fault_inject_read fndecl 3 53133 NULL
++vmalloc_32_user_fndecl_53148_fns vmalloc_32_user fndecl 1 53148 NULL
++private_data_len_ib_cm_sidr_req_param_53150_fns private_data_len ib_cm_sidr_req_param 0 53150 NULL
++lpfc_debugfs_max_disc_trc_vardecl_lpfc_debugfs_c_53169_fns lpfc_debugfs_max_disc_trc vardecl_lpfc_debugfs.c 0 53169 NULL
++num_tx_rings_nfp_net_53170_fns num_tx_rings nfp_net 0 53170 NULL
++SYSC_mbind_fndecl_53221_fns SYSC_mbind fndecl 5 53221 NULL
++debugfs_reg_len_regmap_53235_fns debugfs_reg_len regmap 0 53235 NULL
++kvm_read_guest_page_mmu_fndecl_53240_fns kvm_read_guest_page_mmu fndecl 6 53240 NULL
++vga_arb_write_fndecl_53251_fns vga_arb_write fndecl 3 53251 NULL
++simple_xattr_alloc_fndecl_53253_fns simple_xattr_alloc fndecl 2 53253 NULL
++nr_descriptors_hidma_dev_53264_fns nr_descriptors hidma_dev 0 53264 NULL
++maxreqs_nfsd4_channel_attrs_53285_fns maxreqs nfsd4_channel_attrs 0 53285 NULL
++b1_alloc_card_fndecl_53288_fns b1_alloc_card fndecl 1 53288 NULL
++vmalloc_exec_fndecl_53303_fns vmalloc_exec fndecl 1 53303 NULL
++snd_korg1212_copy_from_fndecl_53338_fns snd_korg1212_copy_from fndecl 6 53338 NULL
++SYSC_sched_getaffinity_fndecl_53347_fns SYSC_sched_getaffinity fndecl 2 53347 NULL
++ramoops_init_przs_fndecl_53364_fns ramoops_init_przs fndecl 4 53364 NULL
++SYSC_getxattr_fndecl_53377_fns SYSC_getxattr fndecl 4 53377 NULL
++viafb_iga1_odev_proc_write_fndecl_53378_fns viafb_iga1_odev_proc_write fndecl 3 53378 NULL
++rproc_recovery_read_fndecl_53382_fns rproc_recovery_read fndecl 3 53382 NULL
++command_setformat_fndecl_53392_fns command_setformat fndecl 0 53392 NULL
++wil_agg_size_fndecl_53398_fns wil_agg_size fndecl 0-2 53398 NULL
++num_entries_s2io_nic_53404_fns num_entries s2io_nic 0 53404 NULL
++set_rcvarray_entry_fndecl_53410_fns set_rcvarray_entry fndecl 6 53410 NULL
++cfs_hash_buckets_realloc_fndecl_53415_fns cfs_hash_buckets_realloc fndecl 4 53415 NULL
++rxHeader3_edgeport_serial_53418_fns rxHeader3 edgeport_serial 0 53418 NULL
++codec_reg_read_file_fndecl_53419_fns codec_reg_read_file fndecl 3 53419 NULL
++compat_sys_mbind_fndecl_53427_fns compat_sys_mbind fndecl 5 53427 NULL
++ad7879_spi_xfer_fndecl_53444_fns ad7879_spi_xfer fndecl 3 53444 NULL
++nouveau_cli_create_fndecl_53462_fns nouveau_cli_create fndecl 3 53462 NULL
++lpfc_debugfs_dif_err_read_fndecl_53468_fns lpfc_debugfs_dif_err_read fndecl 3 53468 NULL
++jbd2_journal_init_revoke_table_fndecl_53475_fns jbd2_journal_init_revoke_table fndecl 1 53475 NULL
++ath6kl_regwrite_write_fndecl_53484_fns ath6kl_regwrite_write fndecl 3 53484 NULL
++lc_create_fndecl_53503_fns lc_create fndecl 4 53503 NULL
++mthca_buf_alloc_fndecl_53510_fns mthca_buf_alloc fndecl 2 53510 NULL
++tx_tx_cmplt_read_fndecl_53533_fns tx_tx_cmplt_read fndecl 3 53533 NULL
++uwb_rc_cmd_done_fndecl_53543_fns uwb_rc_cmd_done fndecl 4 53543 NULL
++num_req_vfs_i40e_pf_53554_fns num_req_vfs i40e_pf 0 53554 NULL
++sctp_tsnmap_mark_fndecl_53578_fns sctp_tsnmap_mark fndecl 2 53578 NULL
++rx_defrag_init_called_read_fndecl_53580_fns rx_defrag_init_called_read fndecl 3 53580 NULL
++mlx5_get_gid_table_len_fndecl_53590_fns mlx5_get_gid_table_len fndecl 0-1 53590 NULL
++kernel_setsockopt_fndecl_53594_fns kernel_setsockopt fndecl 5 53594 NULL
++cow_file_range_async_fndecl_53595_fns cow_file_range_async fndecl 4-3 53595 NULL
++put_cmsg_compat_fndecl_53618_fns put_cmsg_compat fndecl 4 53618 NULL
++header_len_tso_state_53620_fns header_len tso_state 0 53620 NULL
++num_channels_mlx5e_params_53632_fns num_channels mlx5e_params 0 53632 NULL
++device_add_class_symlinks_fndecl_53634_fns device_add_class_symlinks fndecl 0 53634 NULL
++write_file_antenna_fndecl_53645_fns write_file_antenna fndecl 3 53645 NULL
++generic_ocp_read_fndecl_53653_fns generic_ocp_read fndecl 3 53653 NULL
++acl_alloc_fndecl_53656_fns acl_alloc fndecl 1 53656 NULL
++il3945_ucode_tx_stats_read_fndecl_53667_fns il3945_ucode_tx_stats_read fndecl 3 53667 NULL
++__videobuf_alloc_fndecl_53676_fns __videobuf_alloc fndecl 1 53676 NULL
++list_lru_count_one_fndecl_53682_fns list_lru_count_one fndecl 0 53682 NULL
++lov_mds_md_max_stripe_count_fndecl_53691_fns lov_mds_md_max_stripe_count fndecl 0-1 53691 NULL
++carl9170_rx_untie_cmds_fndecl_53694_fns carl9170_rx_untie_cmds fndecl 3 53694 NULL
++gpio_power_read_fndecl_53704_fns gpio_power_read fndecl 3 53704 NULL
++sys_init_module_fndecl_53724_fns sys_init_module fndecl 2 53724 NULL
++mtip_hw_read_device_status_fndecl_53729_fns mtip_hw_read_device_status fndecl 3 53729 NULL
++snd_pcm_plug_read_transfer_fndecl_53731_fns snd_pcm_plug_read_transfer fndecl 0-3 53731 NULL
++xhci_alloc_stream_info_fndecl_53732_fns xhci_alloc_stream_info fndecl 3 53732 NULL
++write_emulate_fndecl_53746_fns write_emulate fndecl 2-4 53746 NULL
++dies_onenand_chip_53762_fns dies onenand_chip 0 53762 NULL
++vxge_config_vpaths_fndecl_53775_fns vxge_config_vpaths fndecl 0 53775 NULL
++locations_count_nfsd4_fs_locations_53786_fns locations_count nfsd4_fs_locations 0 53786 NULL
++ring_size_netvsc_device_info_53811_fns ring_size netvsc_device_info 0 53811 NULL
++lpfc_idiag_extacc_alloc_get_fndecl_53819_fns lpfc_idiag_extacc_alloc_get fndecl 0-3 53819 NULL
++logical_minimum_hid_field_53820_fns logical_minimum hid_field 0 53820 NULL
++elfcorebuf_sz_orig_vardecl_vmcore_c_53821_fns elfcorebuf_sz_orig vardecl_vmcore.c 0 53821 NULL
++cam_get_response16_fndecl_53836_fns cam_get_response16 fndecl 0 53836 NULL
++num_sensors_ibmpex_bmc_data_53838_fns num_sensors ibmpex_bmc_data 0 53838 NULL
++xillybus_read_fndecl_53845_fns xillybus_read fndecl 3 53845 NULL
++buffer_blocks_st_buffer_53878_fns buffer_blocks st_buffer 0 53878 NULL
++nilfs_sufile_set_segment_usage_fndecl_53885_fns nilfs_sufile_set_segment_usage fndecl 2 53885 NULL
++path_getxattr_fndecl_53886_fns path_getxattr fndecl 4 53886 NULL
++snd_rawmidi_kernel_read1_fndecl_53911_fns snd_rawmidi_kernel_read1 fndecl 4 53911 NULL nohasharray
++oobavail_jffs2_sb_info_53911_fns oobavail jffs2_sb_info 0 53911 &snd_rawmidi_kernel_read1_fndecl_53911_fns
++cxgbi_device_register_fndecl_53913_fns cxgbi_device_register fndecl 2-1 53913 NULL
++hiddev_ioctl_fndecl_53955_fns hiddev_ioctl fndecl 2 53955 NULL
++proc_fault_inject_read_fndecl_53969_fns proc_fault_inject_read fndecl 3 53969 NULL
++cm_write_fndecl_53993_fns cm_write fndecl 3 53993 NULL
++sierra_write_fndecl_54049_fns sierra_write fndecl 4 54049 NULL
++_iwl_dbgfs_uapsd_misbehaving_write_fndecl_54054_fns _iwl_dbgfs_uapsd_misbehaving_write fndecl 3 54054 NULL
++tunables_read_fndecl_54066_fns tunables_read fndecl 3 54066 NULL
++afs_alloc_flat_call_fndecl_54076_fns afs_alloc_flat_call fndecl 2-3 54076 NULL
++sctp_tsnmap_init_fndecl_54093_fns sctp_tsnmap_init fndecl 3 54093 NULL
++bytes_read_usbvision_frame_54101_fns bytes_read usbvision_frame 0 54101 NULL
++i2c_bus_read_fndecl_54111_fns i2c_bus_read fndecl 0 54111 NULL
++br_min_mtu_fndecl_54113_fns br_min_mtu fndecl 0 54113 NULL
++carl9170_exec_cmd_fndecl_54141_fns carl9170_exec_cmd fndecl 3 54141 NULL
++f2fs_do_collapse_fndecl_54143_fns f2fs_do_collapse fndecl 3 54143 NULL
++tracing_map_array_alloc_fndecl_54155_fns tracing_map_array_alloc fndecl 1 54155 NULL
++__hwahc_op_set_ptk_fndecl_54157_fns __hwahc_op_set_ptk fndecl 5 54157 NULL
++b43_nphy_load_samples_fndecl_54162_fns b43_nphy_load_samples fndecl 3 54162 NULL
++cpu_type_read_fndecl_54191_fns cpu_type_read fndecl 3 54191 NULL
++_iwl_dbgfs_fw_nmi_write_fndecl_54192_fns _iwl_dbgfs_fw_nmi_write fndecl 3 54192 NULL
++ieee80211_if_read_fwded_frames_fndecl_54203_fns ieee80211_if_read_fwded_frames fndecl 3 54203 NULL
++p_filesz_elf32_phdr_54204_fns p_filesz elf32_phdr 0 54204 NULL
++nframes_bcm_msg_head_54207_fns nframes bcm_msg_head 0 54207 NULL
++numeraseregions_mtd_info_54223_fns numeraseregions mtd_info 0 54223 NULL
++__kfifo_to_user_fndecl_54232_fns __kfifo_to_user fndecl 3 54232 NULL
++pcnet32_realloc_rx_ring_fndecl_54245_fns pcnet32_realloc_rx_ring fndecl 3 54245 NULL
++fl_size_qset_params_54254_fns fl_size qset_params 0 54254 NULL
++__erst_read_fndecl_54256_fns __erst_read fndecl 0 54256 NULL
++put_cmsg_fndecl_54270_fns put_cmsg fndecl 4 54270 NULL
++fat_file_fsync_fndecl_54291_fns fat_file_fsync fndecl 2-3 54291 NULL
++pvr2_issue_simple_cmd_fndecl_54313_fns pvr2_issue_simple_cmd fndecl 2 54313 NULL
++capi_write_fndecl_54323_fns capi_write fndecl 3 54323 NULL nohasharray
++tx_tx_done_template_read_fndecl_54323_fns tx_tx_done_template_read fndecl 3 54323 &capi_write_fndecl_54323_fns
++ide_settings_proc_write_fndecl_54325_fns ide_settings_proc_write fndecl 3 54325 NULL
++nla_alloc_flow_actions_fndecl_54328_fns nla_alloc_flow_actions fndecl 1 54328 NULL
++ieee80211_if_read_bssid_fndecl_54346_fns ieee80211_if_read_bssid fndecl 3 54346 NULL
++gntdev_alloc_map_fndecl_54362_fns gntdev_alloc_map fndecl 2 54362 NULL
++size_ramoops_context_54365_fns size ramoops_context 0 54365 NULL
++usb_cdc_wdm_register_fndecl_54371_fns usb_cdc_wdm_register fndecl 3 54371 NULL
++scif_setup_qp_connect_fndecl_54372_fns scif_setup_qp_connect fndecl 3 54372 NULL
++nbufs_mlx4_buf_54391_fns nbufs mlx4_buf 0 54391 NULL
++ring_size_netvsc_device_54397_fns ring_size netvsc_device 0 54397 NULL
++security_key_getsecurity_fndecl_54401_fns security_key_getsecurity fndecl 0 54401 NULL
++rx_rx_cmplt_task_read_fndecl_54409_fns rx_rx_cmplt_task_read fndecl 3 54409 NULL
++qat_hal_get_ins_num_fndecl_54416_fns qat_hal_get_ins_num fndecl 0 54416 NULL
++nrof_flowrings_brcmf_bus_msgbuf_54417_fns nrof_flowrings brcmf_bus_msgbuf 0 54417 NULL
++set_fd_set_fndecl_54434_fns set_fd_set fndecl 1 54434 NULL
++gfn_to_page_many_atomic_fndecl_54449_fns gfn_to_page_many_atomic fndecl 2 54449 NULL
++kimage_file_prepare_segments_fndecl_54451_fns kimage_file_prepare_segments fndecl 5 54451 NULL
++virtio_transport_stream_enqueue_fndecl_54452_fns virtio_transport_stream_enqueue fndecl 3 54452 NULL
++regmap_cache_bypass_write_file_fndecl_54455_fns regmap_cache_bypass_write_file fndecl 3 54455 NULL
++nvkm_notify_init_fndecl_54464_fns nvkm_notify_init fndecl 7 54464 NULL nohasharray
++isr_rx_rdys_read_fndecl_54464_fns isr_rx_rdys_read fndecl 3 54464 &nvkm_notify_init_fndecl_54464_fns
++sys_setsockopt_fndecl_54507_fns sys_setsockopt fndecl 5 54507 NULL
++bio_segments_fndecl_54531_fns bio_segments fndecl 0 54531 NULL
++b43_debugfs_write_fndecl_54533_fns b43_debugfs_write fndecl 3 54533 NULL
++__i2c_debugfs_read_fndecl_54556_fns __i2c_debugfs_read fndecl 3 54556 NULL
++ieee80211_if_read_txpower_fndecl_54564_fns ieee80211_if_read_txpower fndecl 3 54564 NULL
++cp_nr_rings_bnxt_54565_fns cp_nr_rings bnxt 0 54565 NULL
++acpi_system_write_wakeup_device_fndecl_54582_fns acpi_system_write_wakeup_device fndecl 3 54582 NULL
++mipi_dsi_dcs_write_fndecl_54605_fns mipi_dsi_dcs_write fndecl 4 54605 NULL
++nfs4_get_acl_uncached_fndecl_54608_fns nfs4_get_acl_uncached fndecl 3 54608 NULL
++msg_print_text_fndecl_54618_fns msg_print_text fndecl 0 54618 NULL
++ieee80211_if_write_fndecl_54621_fns ieee80211_if_write fndecl 3 54621 NULL
++len_ncp_privatedata_ioctl_54632_fns len ncp_privatedata_ioctl 0 54632 NULL
++si476x_radio_read_rsq_primary_blob_fndecl_54647_fns si476x_radio_read_rsq_primary_blob fndecl 3 54647 NULL
++get_vddc_lookup_table_fndecl_54661_fns get_vddc_lookup_table fndecl 4 54661 NULL
++auxdev_write_fndecl_54681_fns auxdev_write fndecl 3 54681 NULL
++i2c_transfer_fndecl_54685_fns i2c_transfer fndecl 0 54685 NULL
++rx_rx_hdr_overflow_read_fndecl_54697_fns rx_rx_hdr_overflow_read fndecl 3 54697 NULL
++coda_psdev_read_fndecl_54726_fns coda_psdev_read fndecl 3 54726 NULL
++proc_setgroups_write_fndecl_54732_fns proc_setgroups_write fndecl 3 54732 NULL
++hwdep_read_locked_fndecl_54734_fns hwdep_read_locked fndecl 3 54734 NULL
++mei_cldev_send_fndecl_54754_fns mei_cldev_send fndecl 3 54754 NULL
++pwr_connection_out_of_sync_read_fndecl_54758_fns pwr_connection_out_of_sync_read fndecl 3 54758 NULL
++cqm_max_rmid_vardecl_cqm_c_54798_fns cqm_max_rmid vardecl_cqm.c 0 54798 NULL
++spk_msg_set_fndecl_54801_fns spk_msg_set fndecl 3 54801 NULL
++buf_size__BIG_IOCTL_Command_struct_54806_fns buf_size _BIG_IOCTL_Command_struct 0 54806 NULL
++pci_request_regions_fndecl_54816_fns pci_request_regions fndecl 0 54816 NULL
++i2c1_debugfs_write_fndecl_54837_fns i2c1_debugfs_write fndecl 3 54837 NULL
++ixgbe_pci_sriov_configure_fndecl_54843_fns ixgbe_pci_sriov_configure fndecl 2 54843 NULL
++compat_sys_kexec_load_fndecl_54857_fns compat_sys_kexec_load fndecl 2 54857 NULL
++spi_register_board_info_fndecl_54864_fns spi_register_board_info fndecl 2 54864 NULL
++usb_dmac_desc_get_fndecl_54869_fns usb_dmac_desc_get fndecl 2 54869 NULL
++compress_sliced_buf_fndecl_54891_fns compress_sliced_buf fndecl 0 54891 NULL
++num_uars_mlx5_uuar_info_54898_fns num_uars mlx5_uuar_info 0 54898 NULL
++buffer_size_qcaspi_54902_fns buffer_size qcaspi 0 54902 NULL
++rds_page_copy_user_fndecl_54904_fns rds_page_copy_user fndecl 4 54904 NULL
++pcan_dump_mem_fndecl_54915_fns pcan_dump_mem fndecl 3 54915 NULL
++sd_start_ov361x_fndecl_54922_fns sd_start_ov361x fndecl 0 54922 NULL
++iwl_dbgfs_disable_ht40_read_fndecl_54946_fns iwl_dbgfs_disable_ht40_read fndecl 3 54946 NULL
++len_cn_msg_54981_fns len cn_msg 0 54981 NULL
++fence_wait_any_timeout_fndecl_54982_fns fence_wait_any_timeout fndecl 2 54982 NULL
++alloc_netdev_mqs_fndecl_54989_fns alloc_netdev_mqs fndecl 5-6-1 54989 NULL
++udf_alloc_i_data_fndecl_55001_fns udf_alloc_i_data fndecl 2 55001 NULL
++pvr2_hdw_cpufw_get_fndecl_55011_fns pvr2_hdw_cpufw_get fndecl 0-2-4 55011 NULL
++command_setcompressionparams_fndecl_55026_fns command_setcompressionparams fndecl 0 55026 NULL
++length_i2400m_tlv_hdr_55043_fns length i2400m_tlv_hdr 0 55043 NULL
++hpi_alloc_control_cache_fndecl_55044_fns hpi_alloc_control_cache fndecl 1 55044 NULL
++sddr55_get_capacity_fndecl_55072_fns sddr55_get_capacity fndecl 0 55072 NULL
++read_kmem_fndecl_55103_fns read_kmem fndecl 3 55103 NULL
++length_dw_radeon_cs_chunk_55128_fns length_dw radeon_cs_chunk 0 55128 NULL
++btrfs_search_old_slot_fndecl_55133_fns btrfs_search_old_slot fndecl 0 55133 NULL
++iwl_dbgfs_drv_rx_stats_read_fndecl_55157_fns iwl_dbgfs_drv_rx_stats_read fndecl 3 55157 NULL
++buffer_to_user_fndecl_55164_fns buffer_to_user fndecl 3 55164 NULL
++virtqueue_get_vring_size_fndecl_55188_fns virtqueue_get_vring_size fndecl 0 55188 NULL
++efx_mcdi_rpc_async_quiet_fndecl_55191_fns efx_mcdi_rpc_async_quiet fndecl 4-5 55191 NULL
++rxpipe_tx_xfr_host_int_trig_rx_data_read_fndecl_55233_fns rxpipe_tx_xfr_host_int_trig_rx_data_read fndecl 3 55233 NULL
++pstore_mkfile_fndecl_55235_fns pstore_mkfile fndecl 7 55235 NULL
++async_setkey_fndecl_55250_fns async_setkey fndecl 3 55250 NULL
++req_ring_size_srp_target_port_55251_fns req_ring_size srp_target_port 0 55251 NULL
++drm_dp_dual_mode_write_fndecl_55258_fns drm_dp_dual_mode_write fndecl 4 55258 NULL nohasharray
++size_pci_cap_saved_data_55258_fns size pci_cap_saved_data 0 55258 &drm_dp_dual_mode_write_fndecl_55258_fns
++iwl_dbgfs_bt_traffic_read_fndecl_55261_fns iwl_dbgfs_bt_traffic_read fndecl 3 55261 NULL
++bpf_convert_filter_fndecl_55264_fns bpf_convert_filter fndecl 2 55264 NULL
++dev_alloc_name_ns_fndecl_55266_fns dev_alloc_name_ns fndecl 0 55266 NULL
++num_radar_types_dfs_pattern_detector_55279_fns num_radar_types dfs_pattern_detector 0 55279 NULL
++vb2_dqbuf_fndecl_55284_fns vb2_dqbuf fndecl 0 55284 NULL
++readlen_proc_data_55289_fns readlen proc_data 0 55289 NULL
++sq905c_command_fndecl_55293_fns sq905c_command fndecl 0 55293 NULL
++C_SYSC_kexec_load_fndecl_55294_fns C_SYSC_kexec_load fndecl 2 55294 NULL
++memcg_update_all_caches_fndecl_55303_fns memcg_update_all_caches fndecl 1 55303 NULL
++proc_scsi_host_write_fndecl_55336_fns proc_scsi_host_write fndecl 3 55336 NULL
++pipeline_pipeline_fifo_full_read_fndecl_55356_fns pipeline_pipeline_fifo_full_read fndecl 3 55356 NULL
++islpci_mgt_transmit_fndecl_55366_fns islpci_mgt_transmit fndecl 5 55366 NULL
++ixgbe_dbg_netdev_ops_write_fndecl_55374_fns ixgbe_dbg_netdev_ops_write fndecl 3 55374 NULL
++find_phys_blocks_fndecl_55388_fns find_phys_blocks fndecl 0 55388 NULL
++periodic_size_oxu_hcd_55401_fns periodic_size oxu_hcd 0 55401 NULL
++shmem_pread_fast_fndecl_55408_fns shmem_pread_fast fndecl 3 55408 NULL
++len_wm_coeff_parsed_coeff_55454_fns len wm_coeff_parsed_coeff 0 55454 NULL
++start_genius_cam_fndecl_55469_fns start_genius_cam fndecl 0 55469 NULL
++bl_pipe_downcall_fndecl_55499_fns bl_pipe_downcall fndecl 3 55499 NULL
++setup_nodes_for_search_fndecl_55515_fns setup_nodes_for_search fndecl 0 55515 NULL
++isoc_enable_fndecl_55546_fns isoc_enable fndecl 0 55546 NULL
++filter_write_fndecl_55560_fns filter_write fndecl 3 55560 NULL
++exofs_file_fsync_fndecl_55588_fns exofs_file_fsync fndecl 2-3 55588 NULL
++vmw_setup_otable_base_fndecl_55639_fns vmw_setup_otable_base fndecl 4 55639 NULL
++sg_nents_fndecl_55654_fns sg_nents fndecl 0 55654 NULL
++ath6kl_roam_mode_write_fndecl_55659_fns ath6kl_roam_mode_write fndecl 3 55659 NULL
++queue_logical_block_size_fndecl_55661_fns queue_logical_block_size fndecl 0 55661 NULL
++lpfc_idiag_ctlacc_read_fndecl_55684_fns lpfc_idiag_ctlacc_read fndecl 3 55684 NULL
++sel_read_avc_cache_threshold_fndecl_55685_fns sel_read_avc_cache_threshold fndecl 3 55685 NULL
++rs_sta_dbgfs_drv_tx_stats_read_fndecl_55689_fns rs_sta_dbgfs_drv_tx_stats_read fndecl 3 55689 NULL
++stv06xx_write_bridge_fndecl_55690_fns stv06xx_write_bridge fndecl 0 55690 NULL
++read_file_tgt_rx_stats_fndecl_55691_fns read_file_tgt_rx_stats fndecl 3 55691 NULL
++kvm_vcpu_gfn_to_page_fndecl_55725_fns kvm_vcpu_gfn_to_page fndecl 2 55725 NULL
++mpi_from_key_fndecl_55729_fns mpi_from_key fndecl 0 55729 NULL
++cnt_mon_text_ptr_55741_fns cnt mon_text_ptr 0 55741 NULL
++__az6007_read_fndecl_55752_fns __az6007_read fndecl 6 55752 NULL
++vga_switcheroo_debugfs_write_fndecl_55763_fns vga_switcheroo_debugfs_write fndecl 3 55763 NULL
++cmd_read_size_wiimote_state_55772_fns cmd_read_size wiimote_state 0 55772 NULL
++ppp_write_fndecl_55777_fns ppp_write fndecl 3 55777 NULL
++rx_rx_xfr_read_fndecl_55779_fns rx_rx_xfr_read fndecl 3 55779 NULL
++init_send_hfcd_fndecl_55817_fns init_send_hfcd fndecl 1 55817 NULL
++rd_host_buf_pos_xilly_channel_55837_fns rd_host_buf_pos xilly_channel 0 55837 NULL
++__jffs2_ref_totlen_fndecl_55842_fns __jffs2_ref_totlen fndecl 0 55842 NULL
++raydium_i2c_write_object_fndecl_55850_fns raydium_i2c_write_object fndecl 3 55850 NULL
++rdma_rw_init_map_wrs_fndecl_55859_fns rdma_rw_init_map_wrs fndecl 4 55859 NULL
++cw1200_queue_init_fndecl_55860_fns cw1200_queue_init fndecl 4 55860 NULL
++do_raw_getsockopt_fndecl_55863_fns do_raw_getsockopt fndecl 0 55863 NULL
++nports_cyclades_card_55865_fns nports cyclades_card 0 55865 NULL
++cnic_alloc_dma_fndecl_55874_fns cnic_alloc_dma fndecl 3 55874 NULL
++ad7280_chain_setup_fndecl_55912_fns ad7280_chain_setup fndecl 0 55912 NULL
++isr_fiqs_read_fndecl_55916_fns isr_fiqs_read fndecl 3 55916 NULL
++_iwl_dbgfs_tof_enable_write_fndecl_55919_fns _iwl_dbgfs_tof_enable_write fndecl 3 55919 NULL
++response_length_mlx5_ib_create_wq_resp_55932_fns response_length mlx5_ib_create_wq_resp 0 55932 NULL
++pktlen_pkt_attrib_55936_fns pktlen pkt_attrib 0 55936 NULL
++batadv_tvlv_realloc_packet_buff_fndecl_55955_fns batadv_tvlv_realloc_packet_buff fndecl 3-4 55955 NULL
++reg_w_ixbuf_fndecl_55971_fns reg_w_ixbuf fndecl 4 55971 NULL
++ieee80211_if_read_num_sta_ps_fndecl_55985_fns ieee80211_if_read_num_sta_ps fndecl 3 55985 NULL
++platform_list_read_file_fndecl_55997_fns platform_list_read_file fndecl 3 55997 NULL
++usbtest_alloc_urb_fndecl_56013_fns usbtest_alloc_urb fndecl 3-5 56013 NULL
++ath10k_read_ani_enable_fndecl_56020_fns ath10k_read_ani_enable fndecl 3 56020 NULL
++bootmode_store_fndecl_56025_fns bootmode_store fndecl 4 56025 NULL
++__iio_device_attr_init_fndecl_56028_fns __iio_device_attr_init fndecl 0 56028 NULL
++device_add_fndecl_56029_fns device_add fndecl 0 56029 NULL
++SYSC_keyctl_fndecl_56035_fns SYSC_keyctl fndecl 4 56035 NULL
++chainsize_ctlr_info_56067_fns chainsize ctlr_info 0 56067 NULL
++iov_iter_single_seg_count_fndecl_56069_fns iov_iter_single_seg_count fndecl 0 56069 NULL
++acpi_data_get_property_fndecl_56093_fns acpi_data_get_property fndecl 0 56093 NULL
++proc_thread_self_readlink_fndecl_56102_fns proc_thread_self_readlink fndecl 3 56102 NULL
++maximum_input_absinfo_56108_fns maximum input_absinfo 0 56108 NULL
++block_size_ecryptfs_write_tag_70_packet_silly_stack_56117_fns block_size ecryptfs_write_tag_70_packet_silly_stack 0 56117 NULL
++ssl_prev_nilfs_snapshot_list_56120_fns ssl_prev nilfs_snapshot_list 0 56120 NULL
++usbvision_v4l2_read_fndecl_56129_fns usbvision_v4l2_read fndecl 3 56129 NULL
++av7110_vbi_write_fndecl_56131_fns av7110_vbi_write fndecl 3 56131 NULL
++_iwl_dbgfs_low_latency_write_fndecl_56153_fns _iwl_dbgfs_low_latency_write fndecl 3 56153 NULL
++iwl_calib_set_fndecl_56179_fns iwl_calib_set fndecl 3 56179 NULL nohasharray
++ivtv_read_pos_fndecl_56179_fns ivtv_read_pos fndecl 3 56179 &iwl_calib_set_fndecl_56179_fns
++size_netlbl_domhsh_tbl_56186_fns size netlbl_domhsh_tbl 0 56186 NULL
++dma_rx_size_sxgbe_priv_data_56205_fns dma_rx_size sxgbe_priv_data 0 56205 NULL
++rvt_alloc_mr_fndecl_56236_fns rvt_alloc_mr fndecl 3 56236 NULL
++qlcnic_set_tx_ring_count_fndecl_56242_fns qlcnic_set_tx_ring_count fndecl 2 56242 NULL
++dt_gpio_count_fndecl_56245_fns dt_gpio_count fndecl 0 56245 NULL
++mwifiex_regrdwr_read_fndecl_56251_fns mwifiex_regrdwr_read fndecl 3 56251 NULL
++qp_alloc_res_fndecl_56275_fns qp_alloc_res fndecl 5 56275 NULL
++x_max_wacom_features_56285_fns x_max wacom_features 0 56285 NULL
++SYSC_lgetxattr_fndecl_56330_fns SYSC_lgetxattr fndecl 4 56330 NULL
++ebt_compat_match_offset_fndecl_56334_fns ebt_compat_match_offset fndecl 2 56334 NULL
++pipeline_dec_packet_in_fifo_full_read_fndecl_56335_fns pipeline_dec_packet_in_fifo_full_read fndecl 3 56335 NULL
++blocked_fl_read_fndecl_56341_fns blocked_fl_read fndecl 3 56341 NULL
++mapping_level_fndecl_56350_fns mapping_level fndecl 0-2 56350 NULL
++stats_dot11RTSSuccessCount_read_fndecl_56378_fns stats_dot11RTSSuccessCount_read fndecl 3 56378 NULL
++sel_read_checkreqprot_fndecl_56383_fns sel_read_checkreqprot fndecl 3 56383 NULL
++nd_cmd_in_size_fndecl_56386_fns nd_cmd_in_size fndecl 0 56386 NULL
++max_eps_mv_u3d_56428_fns max_eps mv_u3d 0 56428 NULL
++stat_len_sge_56432_fns stat_len sge 0 56432 NULL
++fb_sys_write_fndecl_56441_fns fb_sys_write fndecl 3 56441 NULL
++alloc_gid_table_fndecl_56444_fns alloc_gid_table fndecl 1 56444 NULL
++_pci_add_cap_save_buffer_fndecl_56466_fns _pci_add_cap_save_buffer fndecl 4 56466 NULL
++dataflash_read_fact_otp_fndecl_56487_fns dataflash_read_fact_otp fndecl 2-3 56487 NULL
++pp_read_fndecl_56489_fns pp_read fndecl 3 56489 NULL
++batadv_socket_receive_packet_fndecl_56509_fns batadv_socket_receive_packet fndecl 2 56509 NULL
++portcntrnameslen_hfi1_devdata_56510_fns portcntrnameslen hfi1_devdata 0 56510 NULL
++__vb2_wait_for_done_vb_fndecl_56525_fns __vb2_wait_for_done_vb fndecl 0 56525 NULL
++cachefiles_cook_key_fndecl_56553_fns cachefiles_cook_key fndecl 2 56553 NULL
++_mv88e6xxx_port_vlan_del_fndecl_56566_fns _mv88e6xxx_port_vlan_del fndecl 3 56566 NULL
++rss_table_size_i40e_pf_56586_fns rss_table_size i40e_pf 0 56586 NULL
++rproc_name_read_fndecl_56630_fns rproc_name_read fndecl 3 56630 NULL
++count_v4l2_requestbuffers_56650_fns count v4l2_requestbuffers 0 56650 NULL
++cifs_writedata_alloc_fndecl_56675_fns cifs_writedata_alloc fndecl 1 56675 NULL nohasharray
++ath6kl_usb_submit_ctrl_in_fndecl_56675_fns ath6kl_usb_submit_ctrl_in fndecl 6 56675 &cifs_writedata_alloc_fndecl_56675_fns
++vp702x_usb_inout_cmd_fndecl_56679_fns vp702x_usb_inout_cmd fndecl 4-6 56679 NULL
++new_tape_buffer_fndecl_56689_fns new_tape_buffer fndecl 2 56689 NULL
++usb_err_gspca_dev_56706_fns usb_err gspca_dev 0 56706 NULL nohasharray
++il_dbgfs_tx_stats_read_fndecl_56706_fns il_dbgfs_tx_stats_read fndecl 3 56706 &usb_err_gspca_dev_56706_fns
++mlx5_modify_nic_vport_mac_list_fndecl_56715_fns mlx5_modify_nic_vport_mac_list fndecl 4 56715 NULL
++zlib_inflate_workspacesize_fndecl_56716_fns zlib_inflate_workspacesize fndecl 0 56716 NULL
++cfg_fof_lpfc_hba_56760_fns cfg_fof lpfc_hba 0 56760 NULL
++mem_size_mxt_data_56785_fns mem_size mxt_data 0 56785 NULL
++ib_uverbs_create_cq_fndecl_56793_fns ib_uverbs_create_cq fndecl 4-5 56793 NULL
++ntb_transport_tx_enqueue_fndecl_56794_fns ntb_transport_tx_enqueue fndecl 4 56794 NULL
++page_base_xdr_buf_56823_fns page_base xdr_buf 0 56823 NULL
++capacity_alauda_media_info_56845_fns capacity alauda_media_info 0 56845 NULL
++tomoyo_read_self_fndecl_56848_fns tomoyo_read_self fndecl 3 56848 NULL
++dup_array_fndecl_56860_fns dup_array fndecl 3 56860 NULL
++count_subheaders_fndecl_56868_fns count_subheaders fndecl 0 56868 NULL
++cifs_fsync_fndecl_56917_fns cifs_fsync fndecl 2-3 56917 NULL
++comedi_buf_write_n_allocated_fndecl_56919_fns comedi_buf_write_n_allocated fndecl 0 56919 NULL
++usb_gstrings_attach_fndecl_56924_fns usb_gstrings_attach fndecl 3 56924 NULL nohasharray
++il_dbgfs_qos_read_fndecl_56924_fns il_dbgfs_qos_read fndecl 3 56924 &usb_gstrings_attach_fndecl_56924_fns
++nrealreaders_vardecl_rcuperf_c_56929_fns nrealreaders vardecl_rcuperf.c 0 56929 NULL
++csize_jffs2_tmp_dnode_info_56933_fns csize jffs2_tmp_dnode_info 0 56933 NULL
++drm_property_replace_global_blob_fndecl_56945_fns drm_property_replace_global_blob fndecl 3 56945 NULL
++iwl_dbgfs_quota_min_read_fndecl_56948_fns iwl_dbgfs_quota_min_read fndecl 3 56948 NULL
++n_mem_slots_qxl_device_56964_fns n_mem_slots qxl_device 0 56964 NULL
++maxresp_cached_nfsd4_channel_attrs_56966_fns maxresp_cached nfsd4_channel_attrs 0 56966 NULL
++irq_blk_threshold_read_fndecl_56977_fns irq_blk_threshold_read fndecl 3 56977 NULL
++arp_hdr_len_fndecl_56980_fns arp_hdr_len fndecl 0 56980 NULL
++pvr2_stream_buffer_count_fndecl_56996_fns pvr2_stream_buffer_count fndecl 2 56996 NULL
++write_file_spectral_count_fndecl_57000_fns write_file_spectral_count fndecl 3 57000 NULL
++i2c_hack_wm8775_fndecl_57014_fns i2c_hack_wm8775 fndecl 4-6 57014 NULL
++sys_keyctl_fndecl_57023_fns sys_keyctl fndecl 4 57023 NULL nohasharray
++xs_send_kvec_fndecl_57023_fns xs_send_kvec fndecl 3 57023 &sys_keyctl_fndecl_57023_fns
++__qcom_scm_hdcp_req_fndecl_57026_fns __qcom_scm_hdcp_req fndecl 3 57026 NULL
++read_file_node_recv_fndecl_57042_fns read_file_node_recv fndecl 3 57042 NULL
++iwl_dbgfs_tof_responder_params_read_fndecl_57049_fns iwl_dbgfs_tof_responder_params_read fndecl 3 57049 NULL
++vifs_state_read_fndecl_57073_fns vifs_state_read fndecl 3 57073 NULL
++size_nvif_notify_57130_fns size nvif_notify 0 57130 NULL
++joydev_ioctl_fndecl_57132_fns joydev_ioctl fndecl 2 57132 NULL
++msg_controllen_msghdr_57136_fns msg_controllen msghdr 0 57136 NULL
++qcom_scm_call_fndecl_57160_fns qcom_scm_call fndecl 5-7 57160 NULL
++pd_points_ath5k_pdgain_info_57180_fns pd_points ath5k_pdgain_info 0 57180 NULL
++irq_pkt_threshold_read_fndecl_57183_fns irq_pkt_threshold_read fndecl 3 57183 NULL
++cfs_trace_copyin_string_fndecl_57191_fns cfs_trace_copyin_string fndecl 4 57191 NULL
++ieee80211_if_read_dropped_frames_no_route_fndecl_57204_fns ieee80211_if_read_dropped_frames_no_route fndecl 3 57204 NULL
++mon_buff_area_free_fndecl_57212_fns mon_buff_area_free fndecl 2 57212 NULL
++le_min_key_size_read_fndecl_57214_fns le_min_key_size_read fndecl 3 57214 NULL
++ovs_vport_alloc_fndecl_57296_fns ovs_vport_alloc fndecl 1 57296 NULL
++create_entry_fndecl_57300_fns create_entry fndecl 2 57300 NULL
++tcp_off_tso_state_57305_fns tcp_off tso_state 0 57305 NULL
++ip_setsockopt_fndecl_57308_fns ip_setsockopt fndecl 0-5 57308 NULL
++aggr_size_rx_size_read_fndecl_57317_fns aggr_size_rx_size_read fndecl 3 57317 NULL
++interrupt_in_endpoint_size_ld_usb_57321_fns interrupt_in_endpoint_size ld_usb 0 57321 NULL
++fb_read_fndecl_57329_fns fb_read fndecl 3 57329 NULL
++page_bytes_remain_capsule_info_57335_fns page_bytes_remain capsule_info 0 57335 NULL
++musb_test_mode_write_fndecl_57341_fns musb_test_mode_write fndecl 3 57341 NULL
++setup_glists_fndecl_57343_fns setup_glists fndecl 3 57343 NULL
++ath10k_read_htt_max_amsdu_ampdu_fndecl_57346_fns ath10k_read_htt_max_amsdu_ampdu fndecl 3 57346 NULL
++ixgbe_pci_sriov_enable_fndecl_57353_fns ixgbe_pci_sriov_enable fndecl 2 57353 NULL
++nfs_create_request_fndecl_57363_fns nfs_create_request fndecl 4 57363 NULL
++div64_u64_rem_fndecl_57393_fns div64_u64_rem fndecl 0 57393 NULL
++uhid_event_from_user_fndecl_57394_fns uhid_event_from_user fndecl 2 57394 NULL
++pwr_tx_without_ps_read_fndecl_57396_fns pwr_tx_without_ps_read fndecl 3 57396 NULL
++kfd_ioctl_fndecl_57397_fns kfd_ioctl fndecl 2 57397 NULL
++nfs4_alloc_pages_fndecl_57401_fns nfs4_alloc_pages fndecl 1 57401 NULL
++_iwl_dbgfs_bt_tx_prio_write_fndecl_57418_fns _iwl_dbgfs_bt_tx_prio_write fndecl 3 57418 NULL
++key_size_ecryptfs_crypt_stat_57436_fns key_size ecryptfs_crypt_stat 0 57436 NULL
++send_control_msg_fndecl_57441_fns send_control_msg fndecl 6 57441 NULL
++convert_tail_for_hole_fndecl_57444_fns convert_tail_for_hole fndecl 3 57444 NULL
++diva_os_copy_to_user_fndecl_57455_fns diva_os_copy_to_user fndecl 4 57455 NULL
++wm_coeff_tlv_put_fndecl_57463_fns wm_coeff_tlv_put fndecl 3 57463 NULL
++r8712_usbctrl_vendorreq_fndecl_57466_fns r8712_usbctrl_vendorreq fndecl 6 57466 NULL
++item_udata_fndecl_57481_fns item_udata fndecl 0 57481 NULL
++ath10k_fw_stats_read_fndecl_57506_fns ath10k_fw_stats_read fndecl 3 57506 NULL
++command_resume_fndecl_57510_fns command_resume fndecl 0 57510 NULL
++nvbios_extend_fndecl_57525_fns nvbios_extend fndecl 2 57525 NULL
++y_max_wacom_features_57545_fns y_max wacom_features 0 57545 NULL
++dn_fib_count_nhs_fndecl_57602_fns dn_fib_count_nhs fndecl 0 57602 NULL
++_add_to_r4w_fndecl_57611_fns _add_to_r4w fndecl 4 57611 NULL
++isr_dma1_done_read_fndecl_57612_fns isr_dma1_done_read fndecl 3 57612 NULL
++f2fs_collapse_range_fndecl_57627_fns f2fs_collapse_range fndecl 3-2 57627 NULL nohasharray
++nvme_rdma_alloc_ring_fndecl_57627_fns nvme_rdma_alloc_ring fndecl 3-2 57627 &f2fs_collapse_range_fndecl_57627_fns
++c4iw_id_table_alloc_fndecl_57648_fns c4iw_id_table_alloc fndecl 3 57648 NULL
++nfsctl_transaction_read_fndecl_57705_fns nfsctl_transaction_read fndecl 3 57705 NULL
++read_file_recv_fndecl_57723_fns read_file_recv fndecl 3 57723 NULL
++hi6220_register_clkdiv_fndecl_57729_fns hi6220_register_clkdiv fndecl 7 57729 NULL
++compat_sys_io_getevents_fndecl_57736_fns compat_sys_io_getevents fndecl 3 57736 NULL
++batadv_socket_read_fndecl_57746_fns batadv_socket_read fndecl 3 57746 NULL
++raydium_i2c_send_message_fndecl_57747_fns raydium_i2c_send_message fndecl 4 57747 NULL
++acpi_ex_convert_to_ascii_fndecl_57750_fns acpi_ex_convert_to_ascii fndecl 0 57750 NULL
++cache_write_pipefs_fndecl_57757_fns cache_write_pipefs fndecl 3 57757 NULL
++tidcnt_hfi1_tid_info_57758_fns tidcnt hfi1_tid_info 0 57758 NULL
++send_set_info_fndecl_57779_fns send_set_info fndecl 7 57779 NULL
++fp_array_size_bnx2x_57781_fns fp_array_size bnx2x 0 57781 NULL
++lpfc_idiag_extacc_read_fndecl_57790_fns lpfc_idiag_extacc_read fndecl 3 57790 NULL
++spk_xe_vardecl_57804_fns spk_xe vardecl 0 57804 NULL
++tx_frag_init_called_read_fndecl_57834_fns tx_frag_init_called_read fndecl 3 57834 NULL
++xdi_copy_to_user_fndecl_57879_fns xdi_copy_to_user fndecl 4 57879 NULL
++exynos_srom_alloc_reg_dump_fndecl_57914_fns exynos_srom_alloc_reg_dump fndecl 2 57914 NULL
++ntb_transport_rx_enqueue_fndecl_57929_fns ntb_transport_rx_enqueue fndecl 4 57929 NULL
++event_heart_beat_read_fndecl_57938_fns event_heart_beat_read fndecl 3 57938 NULL
++nand_ecc_test_run_fndecl_57941_fns nand_ecc_test_run fndecl 1 57941 NULL
++ilf_size_xfs_inode_log_format_57942_fns ilf_size xfs_inode_log_format 0 57942 NULL
++vmci_handle_arr_create_fndecl_57944_fns vmci_handle_arr_create fndecl 1 57944 NULL
++pegasus_control_msg_fndecl_57954_fns pegasus_control_msg fndecl 3 57954 NULL
++logical_block_count_msb_data_57955_fns logical_block_count msb_data 0 57955 NULL
++mei_cl_alloc_cb_fndecl_57971_fns mei_cl_alloc_cb fndecl 2 57971 NULL
++input_count_cgs_acpi_method_info_57981_fns input_count cgs_acpi_method_info 0 57981 NULL
++status_orangefs_downcall_s_57998_fns status orangefs_downcall_s 0 57998 NULL
++scsi_register_fndecl_58069_fns scsi_register fndecl 2 58069 NULL
++pt_read_fndecl_58083_fns pt_read fndecl 3 58083 NULL nohasharray
++netxen_setup_msi_interrupts_fndecl_58083_fns netxen_setup_msi_interrupts fndecl 2 58083 &pt_read_fndecl_58083_fns
++nentries_xpc_registration_58085_fns nentries xpc_registration 0 58085 NULL
++ll_max_cached_mb_seq_write_fndecl_58097_fns ll_max_cached_mb_seq_write fndecl 3 58097 NULL
++walk_pmd_range_fndecl_58100_fns walk_pmd_range fndecl 0 58100 NULL
++sys_setgroups_fndecl_58127_fns sys_setgroups fndecl 1 58127 NULL nohasharray
++sm501_create_subdev_fndecl_58127_fns sm501_create_subdev fndecl 3-4 58127 &sys_setgroups_fndecl_58127_fns
++bufsize_vardecl_subpagetest_c_58128_fns bufsize vardecl_subpagetest.c 0 58128 NULL
++do_ip_vs_set_ctl_fndecl_58130_fns do_ip_vs_set_ctl fndecl 4 58130 NULL
++ll_rw_extents_stats_pp_seq_write_fndecl_58136_fns ll_rw_extents_stats_pp_seq_write fndecl 3 58136 NULL
++nvif_object_init_fndecl_58137_fns nvif_object_init fndecl 5 58137 NULL
++qsfp2_debugfs_read_fndecl_58142_fns qsfp2_debugfs_read fndecl 3 58142 NULL
++altera_drscan_fndecl_58153_fns altera_drscan fndecl 2 58153 NULL
++total_num_uuars_mlx5_ib_alloc_ucontext_req_v2_58191_fns total_num_uuars mlx5_ib_alloc_ucontext_req_v2 0 58191 NULL
++npages_ttm_page_pool_58200_fns npages ttm_page_pool 0 58200 NULL nohasharray
++nvmet_rdma_alloc_cmds_fndecl_58200_fns nvmet_rdma_alloc_cmds fndecl 2 58200 &npages_ttm_page_pool_58200_fns
++lpfc_idiag_drbacc_write_fndecl_58203_fns lpfc_idiag_drbacc_write fndecl 3 58203 NULL
++ubifs_jnl_write_data_fndecl_58229_fns ubifs_jnl_write_data fndecl 5 58229 NULL
++spi_replace_transfers_fndecl_58231_fns spi_replace_transfers fndecl 6-4 58231 NULL
++ath6kl_regwrite_read_fndecl_58232_fns ath6kl_regwrite_read fndecl 3 58232 NULL
++ath6kl_usb_bmi_read_fndecl_58234_fns ath6kl_usb_bmi_read fndecl 3 58234 NULL
++i915_displayport_test_active_write_fndecl_58241_fns i915_displayport_test_active_write fndecl 3 58241 NULL
++num_rx_queues_fm10k_intfc_58243_fns num_rx_queues fm10k_intfc 0 58243 NULL
++gpiod_count_fndecl_58262_fns gpiod_count fndecl 0 58262 NULL
++mvneta_check_mtu_valid_fndecl_58264_fns mvneta_check_mtu_valid fndecl 0-2 58264 NULL
++il3945_sta_dbgfs_stats_table_read_fndecl_58289_fns il3945_sta_dbgfs_stats_table_read fndecl 3 58289 NULL
++actions_len_sw_flow_actions_58353_fns actions_len sw_flow_actions 0 58353 NULL
++viafb_dvp1_proc_write_fndecl_58355_fns viafb_dvp1_proc_write fndecl 3 58355 NULL
++__ffs_ep0_read_events_fndecl_58359_fns __ffs_ep0_read_events fndecl 3 58359 NULL
++ingr_start_sge_58376_fns ingr_start sge 0 58376 NULL
++esas2r_log_hexdump_fndecl_58381_fns esas2r_log_hexdump fndecl 3 58381 NULL
++ip_vs_sync_buff_create_v0_fndecl_58401_fns ip_vs_sync_buff_create_v0 fndecl 2 58401 NULL
++sta_vht_capa_read_fndecl_58402_fns sta_vht_capa_read fndecl 3 58402 NULL
++orangefs_debug_write_fndecl_58409_fns orangefs_debug_write fndecl 3 58409 NULL
++amdtp_stream_init_fndecl_58410_fns amdtp_stream_init fndecl 7 58410 NULL
++vzalloc_fndecl_58414_fns vzalloc fndecl 1 58414 NULL
++channels__isdn_driver_58419_fns channels _isdn_driver 0 58419 NULL
++gfn_to_pfn_prot_fndecl_58421_fns gfn_to_pfn_prot fndecl 2 58421 NULL
++walk_pte_range_fndecl_58425_fns walk_pte_range fndecl 0 58425 NULL
++len_ethtool_test_58446_fns len ethtool_test 0 58446 NULL
++newpart_fndecl_58478_fns newpart fndecl 4-6 58478 NULL
++nbchan_capidrv_contr_58481_fns nbchan capidrv_contr 0 58481 NULL
++C_SYSC_set_mempolicy_fndecl_58489_fns C_SYSC_set_mempolicy fndecl 3 58489 NULL
++unlink_simple_fndecl_58497_fns unlink_simple fndecl 3 58497 NULL
++alloc_arraycache_fndecl_58498_fns alloc_arraycache fndecl 2 58498 NULL
++ec_i2c_count_response_fndecl_58509_fns ec_i2c_count_response fndecl 0 58509 NULL
++pmsg_size_ramoops_platform_data_58514_fns pmsg_size ramoops_platform_data 0 58514 NULL
++core_sys_select_fndecl_58517_fns core_sys_select fndecl 1 58517 NULL nohasharray
++brcmf_vndr_ie_fndecl_58517_fns brcmf_vndr_ie fndecl 0-4 58517 &core_sys_select_fndecl_58517_fns
++read_block_for_search_fndecl_58525_fns read_block_for_search fndecl 0 58525 NULL
++drbg_statelen_fndecl_58540_fns drbg_statelen fndecl 0 58540 NULL
++usb_hcd_alloc_bandwidth_fndecl_58550_fns usb_hcd_alloc_bandwidth fndecl 0 58550 NULL
++read_ldt_fndecl_58561_fns read_ldt fndecl 2 58561 NULL
++gsmld_output_fndecl_58570_fns gsmld_output fndecl 3 58570 NULL
++ext4_kvzalloc_fndecl_58598_fns ext4_kvzalloc fndecl 1 58598 NULL
++sctp_ssnmap_new_fndecl_58603_fns sctp_ssnmap_new fndecl 2-1 58603 NULL
++cache_read_pipefs_fndecl_58604_fns cache_read_pipefs fndecl 3 58604 NULL
++thermal_tx_resume_read_fndecl_58616_fns thermal_tx_resume_read fndecl 3 58616 NULL
++mousedev_read_fndecl_58624_fns mousedev_read fndecl 3 58624 NULL
++ath10k_wmi_alloc_host_mem_fndecl_58627_fns ath10k_wmi_alloc_host_mem fndecl 4-3 58627 NULL nohasharray
++wusb_key_dump_fndecl_58627_fns wusb_key_dump fndecl 2 58627 &ath10k_wmi_alloc_host_mem_fndecl_58627_fns
++msc_single_to_user_fndecl_58646_fns msc_single_to_user fndecl 3-4 58646 NULL
++cfg80211_connect_bss_fndecl_58657_fns cfg80211_connect_bss fndecl 7-5 58657 NULL
++mxms_headerlen_fndecl_58666_fns mxms_headerlen fndecl 0 58666 NULL
++rx_rx_rts_timeout_read_fndecl_58667_fns rx_rx_rts_timeout_read fndecl 3 58667 NULL
++switchdev_port_fdb_del_fndecl_58668_fns switchdev_port_fdb_del fndecl 5 58668 NULL
++rs_sta_dbgfs_rate_scale_data_read_fndecl_58670_fns rs_sta_dbgfs_rate_scale_data_read fndecl 3 58670 NULL
++acpi_ut_initialize_buffer_fndecl_58676_fns acpi_ut_initialize_buffer fndecl 2 58676 NULL
++svc_pool_map_alloc_arrays_fndecl_58718_fns svc_pool_map_alloc_arrays fndecl 2 58718 NULL
++portcntrs_1_read_fndecl_58758_fns portcntrs_1_read fndecl 3 58758 NULL
++snd_ctl_enum_info_fndecl_58778_fns snd_ctl_enum_info fndecl 2 58778 NULL
++vsnprintf_fndecl_58792_fns vsnprintf fndecl 0 58792 NULL
++tx_internal_desc_overflow_read_fndecl_58839_fns tx_internal_desc_overflow_read fndecl 3 58839 NULL
++kvm_debugfs_num_entries_vardecl_kvm_main_c_58842_fns kvm_debugfs_num_entries vardecl_kvm_main.c 0 58842 NULL
++nr_scratch_dwc3_58852_fns nr_scratch dwc3 0 58852 NULL
++ucs2_utf8size_fndecl_58859_fns ucs2_utf8size fndecl 0 58859 NULL
++ieee80211_if_read_dot11MeshHoldingTimeout_fndecl_58863_fns ieee80211_if_read_dot11MeshHoldingTimeout fndecl 3 58863 NULL
++pd_groupsize_ptlrpcd_58864_fns pd_groupsize ptlrpcd 0 58864 NULL
++usb_stor_bulk_transfer_sg_fndecl_58896_fns usb_stor_bulk_transfer_sg fndecl 5 58896 NULL
++v9fs_file_fsync_fndecl_58898_fns v9fs_file_fsync fndecl 2-3 58898 NULL
++vhci_read_fndecl_58901_fns vhci_read fndecl 3 58901 NULL
++comedi_write_fndecl_58917_fns comedi_write fndecl 3 58917 NULL
++fore200e_pca_dma_chunk_alloc_fndecl_58927_fns fore200e_pca_dma_chunk_alloc fndecl 4-3 58927 NULL
++cfs_percpt_alloc_fndecl_58941_fns cfs_percpt_alloc fndecl 2 58941 NULL
++drm_simple_display_pipe_init_fndecl_58972_fns drm_simple_display_pipe_init fndecl 5 58972 NULL
++ib_umad_write_fndecl_58986_fns ib_umad_write fndecl 3 58986 NULL
++mpi_read_raw_from_sgl_fndecl_58990_fns mpi_read_raw_from_sgl fndecl 2 58990 NULL
++nfs4_proc_get_acl_fndecl_58998_fns nfs4_proc_get_acl fndecl 3 58998 NULL
++iwl_dbgfs_ucode_tracing_read_fndecl_59004_fns iwl_dbgfs_ucode_tracing_read fndecl 3 59004 NULL
++__kvm_read_guest_atomic_fndecl_59011_fns __kvm_read_guest_atomic fndecl 5-2 59011 NULL
++nclips_saa7146_overlay_59032_fns nclips saa7146_overlay 0 59032 NULL
++iwl_mvm_fw_dbg_collect_fndecl_59043_fns iwl_mvm_fw_dbg_collect fndecl 4 59043 NULL
++posix_acl_alloc_fndecl_59052_fns posix_acl_alloc fndecl 1 59052 NULL nohasharray
++nr_strip_zones_r0conf_59052_fns nr_strip_zones r0conf 0 59052 &posix_acl_alloc_fndecl_59052_fns
++axi_dmac_prep_slave_sg_fndecl_59073_fns axi_dmac_prep_slave_sg fndecl 3 59073 NULL
++buffer_mousedev_client_59098_fns buffer mousedev_client 0 59098 NULL
++wm_latency_write_fndecl_59118_fns wm_latency_write fndecl 3 59118 NULL
++mmc_alloc_host_fndecl_59122_fns mmc_alloc_host fndecl 1 59122 NULL
++tas571x_reg_write_multiword_fndecl_59156_fns tas571x_reg_write_multiword fndecl 4 59156 NULL
++vb2_dvb_register_bus_fndecl_59175_fns vb2_dvb_register_bus fndecl 0 59175 NULL
++get_unaligned_le24_fndecl_59191_fns get_unaligned_le24 fndecl 0 59191 NULL
++walk_page_test_fndecl_59232_fns walk_page_test fndecl 0 59232 NULL
++bits_to_user_fndecl_59238_fns bits_to_user fndecl 2-3 59238 NULL
++cxd2841er_i2c_debug_fndecl_59241_fns cxd2841er_i2c_debug fndecl 6 59241 NULL nohasharray
++carl9170_debugfs_read_fndecl_59241_fns carl9170_debugfs_read fndecl 3 59241 &cxd2841er_i2c_debug_fndecl_59241_fns
++mvumi_alloc_mem_resource_fndecl_59285_fns mvumi_alloc_mem_resource fndecl 3 59285 NULL
++alloc_sched_domains_fndecl_59295_fns alloc_sched_domains fndecl 1 59295 NULL
++posix_acl_fix_xattr_from_user_fndecl_59298_fns posix_acl_fix_xattr_from_user fndecl 2 59298 NULL
++read_file_spectral_bins_fndecl_59334_fns read_file_spectral_bins fndecl 3 59334 NULL
++pinconf_dbg_config_write_fndecl_59336_fns pinconf_dbg_config_write fndecl 3 59336 NULL
++lov_packmd_fndecl_59345_fns lov_packmd fndecl 0 59345 NULL
++tree_mod_log_insert_move_fndecl_59356_fns tree_mod_log_insert_move fndecl 5 59356 NULL
++base_tsn_sctp_tsnmap_59358_fns base_tsn sctp_tsnmap 0 59358 NULL
++buf_len_i40e_arq_event_info_59370_fns buf_len i40e_arq_event_info 0 59370 NULL
++default_drvbuffer_scsi_tape_59374_fns default_drvbuffer scsi_tape 0 59374 NULL
++free_list_size_eni_dev_59386_fns free_list_size eni_dev 0 59386 NULL
++iwl_dbgfs_chain_noise_read_fndecl_59392_fns iwl_dbgfs_chain_noise_read fndecl 3 59392 NULL
++size_freelQ_59398_fns size freelQ 0 59398 NULL
++smk_write_direct_fndecl_59400_fns smk_write_direct fndecl 3 59400 NULL
++num_vfs_ixgbe_adapter_59414_fns num_vfs ixgbe_adapter 0 59414 NULL
++desc_elems_timb_dma_chan_59416_fns desc_elems timb_dma_chan 0 59416 NULL
++nilfs_cpfile_block_get_checkpoint_fndecl_59441_fns nilfs_cpfile_block_get_checkpoint fndecl 2 59441 NULL
++rng_get_data_fndecl_59453_fns rng_get_data fndecl 0 59453 NULL
++platform_gpio_count_fndecl_59459_fns platform_gpio_count fndecl 0 59459 NULL
++ttm_page_pool_get_pages_fndecl_59468_fns ttm_page_pool_get_pages fndecl 5-0 59468 NULL
++rx_ringsz_alx_priv_59496_fns rx_ringsz alx_priv 0 59496 NULL
++il_dbgfs_clear_traffic_stats_write_fndecl_59497_fns il_dbgfs_clear_traffic_stats_write fndecl 3 59497 NULL
++pci_frontend_enable_msix_fndecl_59501_fns pci_frontend_enable_msix fndecl 3 59501 NULL
++qlcnic_get_vnic_func_count_fndecl_59521_fns qlcnic_get_vnic_func_count fndecl 0 59521 NULL
++kmsg_read_fndecl_59553_fns kmsg_read fndecl 3 59553 NULL
++num_stripes_btrfs_chunk_59557_fns num_stripes btrfs_chunk 0 59557 NULL
++nlm_end_grace_write_fndecl_59558_fns nlm_end_grace_write fndecl 3 59558 NULL
++vringh_complete_multi_user_fndecl_59569_fns vringh_complete_multi_user fndecl 3 59569 NULL
++key_count_applesmc_registers_59587_fns key_count applesmc_registers 0 59587 NULL
++serverworks_create_gatt_pages_fndecl_59621_fns serverworks_create_gatt_pages fndecl 1 59621 NULL
++il3945_ucode_general_stats_read_fndecl_59660_fns il3945_ucode_general_stats_read fndecl 3 59660 NULL
++rtw_buf_update_fndecl_59689_fns rtw_buf_update fndecl 4 59689 NULL
++capacity_sddr55_card_info_59695_fns capacity sddr55_card_info 0 59695 NULL
++__walk_page_range_fndecl_59729_fns __walk_page_range fndecl 0 59729 NULL
++__netlink_change_ngroups_fndecl_59743_fns __netlink_change_ngroups fndecl 2 59743 NULL
++fq_resize_fndecl_59744_fns fq_resize fndecl 2 59744 NULL
++add_conn_list_fndecl_59750_fns add_conn_list fndecl 3 59750 NULL
++vxge_os_dma_malloc_fndecl_59771_fns vxge_os_dma_malloc fndecl 2 59771 NULL
++tx_tx_cfe1_read_fndecl_59777_fns tx_tx_cfe1_read fndecl 3 59777 NULL
++mlx4_buf_alloc_fndecl_59788_fns mlx4_buf_alloc fndecl 2 59788 NULL
++num_leds_lm3533_platform_data_59793_fns num_leds lm3533_platform_data 0 59793 NULL
++nf_nat_ftp_fndecl_59818_fns nf_nat_ftp fndecl 6 59818 NULL
++xen_setup_msi_irqs_fndecl_59830_fns xen_setup_msi_irqs fndecl 2 59830 NULL
++dig_outs_auto_pin_cfg_59832_fns dig_outs auto_pin_cfg 0 59832 NULL
++mpi_read_raw_data_fndecl_59835_fns mpi_read_raw_data fndecl 2 59835 NULL
++dvb_net_init_fndecl_59840_fns dvb_net_init fndecl 0 59840 NULL
++sst_fill_byte_control_fndecl_59850_fns sst_fill_byte_control fndecl 6 59850 NULL
++acpi_rs_decode_bitmask_fndecl_59851_fns acpi_rs_decode_bitmask fndecl 0 59851 NULL
++length_pm8001_ioctl_payload_59866_fns length pm8001_ioctl_payload 0 59866 NULL
++qlcnic_83xx_sysfs_flash_bulk_write_fndecl_59875_fns qlcnic_83xx_sysfs_flash_bulk_write fndecl 4 59875 NULL
++__hwahc_dev_set_key_fndecl_59883_fns __hwahc_dev_set_key fndecl 5 59883 NULL
++vfs_allocated_count_igb_adapter_59900_fns vfs_allocated_count igb_adapter 0 59900 NULL
++lov_iocontrol_fndecl_59919_fns lov_iocontrol fndecl 3 59919 NULL
++ixgbe_dbg_reg_ops_write_fndecl_59964_fns ixgbe_dbg_reg_ops_write fndecl 3 59964 NULL
++size_wid_59965_fns size wid 0 59965 NULL
++configfs_read_bin_file_fndecl_59987_fns configfs_read_bin_file fndecl 3 59987 NULL
++wlcore_alloc_hw_fndecl_59990_fns wlcore_alloc_hw fndecl 1-3 59990 NULL
++real_stripes_btrfs_raid_bio_59993_fns real_stripes btrfs_raid_bio 0 59993 NULL
++f2fs_do_sync_file_fndecl_59994_fns f2fs_do_sync_file fndecl 2-3 59994 NULL
++fb_write_fndecl_59999_fns fb_write fndecl 3 59999 NULL
++SYSC_poll_fndecl_60006_fns SYSC_poll fndecl 2 60006 NULL
++__sctp_setsockopt_connectx_fndecl_60022_fns __sctp_setsockopt_connectx fndecl 3 60022 NULL
++qla4xxx_post_aen_work_fndecl_60026_fns qla4xxx_post_aen_work fndecl 3 60026 NULL
++coda_fsync_fndecl_60029_fns coda_fsync fndecl 2-3 60029 NULL
++cx231xx_init_bulk_fndecl_60067_fns cx231xx_init_bulk fndecl 3 60067 NULL
++level_ubifs_znode_60069_fns level ubifs_znode 0 60069 NULL
++constraint_flags_read_file_fndecl_60073_fns constraint_flags_read_file fndecl 3 60073 NULL
++debugfs_create_u32_array_fndecl_60082_fns debugfs_create_u32_array fndecl 5 60082 NULL
++udpv6_sendmsg_fndecl_60103_fns udpv6_sendmsg fndecl 3 60103 NULL
++iwl_dump_nic_event_log_fndecl_60130_fns iwl_dump_nic_event_log fndecl 0 60130 NULL
++vfp_set_fndecl_60145_fns vfp_set fndecl 3-4 60145 NULL
++orangefs_dirent_outcount_orangefs_readdir_response_s_60150_fns orangefs_dirent_outcount orangefs_readdir_response_s 0 60150 NULL
++pipeline_dec_packet_in_read_fndecl_60151_fns pipeline_dec_packet_in_read fndecl 3 60151 NULL
++stream_start_fndecl_60166_fns stream_start fndecl 0 60166 NULL
++__kfifo_out_r_fndecl_60172_fns __kfifo_out_r fndecl 4 60172 NULL
++ec_device_read_fndecl_60177_fns ec_device_read fndecl 3 60177 NULL
++snd_compr_write_data_fndecl_60179_fns snd_compr_write_data fndecl 3 60179 NULL
++il3945_stats_flag_fndecl_60189_fns il3945_stats_flag fndecl 0 60189 NULL
++pci_enable_device_fndecl_60193_fns pci_enable_device fndecl 0 60193 NULL
++request_key_async_with_auxdata_fndecl_60211_fns request_key_async_with_auxdata fndecl 4 60211 NULL
++bo_count_vc4_exec_info_60236_fns bo_count vc4_exec_info 0 60236 NULL
++ah_rf_banks_size_ath5k_hw_60250_fns ah_rf_banks_size ath5k_hw 0 60250 NULL
++_iwl_dbgfs_tof_range_request_write_fndecl_60255_fns _iwl_dbgfs_tof_range_request_write fndecl 3 60255 NULL
++erst_dbg_write_fndecl_60264_fns erst_dbg_write fndecl 3 60264 NULL
++alloc_data_packet_fndecl_60281_fns alloc_data_packet fndecl 1 60281 NULL
++read_file_tx99_fndecl_60294_fns read_file_tx99 fndecl 3 60294 NULL
++wl1271_rx_filter_alloc_field_fndecl_60306_fns wl1271_rx_filter_alloc_field fndecl 5 60306 NULL
++kvm_vcpu_write_guest_fndecl_60323_fns kvm_vcpu_write_guest fndecl 4-2 60323 NULL
++buf_size__IOCTL_Command_struct_60338_fns buf_size _IOCTL_Command_struct 0 60338 NULL
++hest_ghes_dev_register_fndecl_60349_fns hest_ghes_dev_register fndecl 1 60349 NULL
++string_escape_str_fndecl_60365_fns string_escape_str fndecl 0 60365 NULL
++num_counters_vardecl_sysfs_c_60371_fns num_counters vardecl_sysfs.c 0 60371 NULL
++hfi1_read_cntrs_fndecl_60378_fns hfi1_read_cntrs fndecl 0 60378 NULL
++shmem_pwrite_fast_fndecl_60393_fns shmem_pwrite_fast fndecl 3 60393 NULL
++quirk_strict_duplicate_filter_write_fndecl_60446_fns quirk_strict_duplicate_filter_write fndecl 3 60446 NULL
++sd_quota_slots_gfs2_sbd_60466_fns sd_quota_slots gfs2_sbd 0 60466 NULL
++ath10k_dbg_dump_fndecl_60482_fns ath10k_dbg_dump fndecl 6 60482 NULL
++tiadc_channel_init_fndecl_60514_fns tiadc_channel_init fndecl 2 60514 NULL
++ll_iocontrol_register_fndecl_60517_fns ll_iocontrol_register fndecl 2 60517 NULL
++iommu_dma_alloc_fndecl_60521_fns iommu_dma_alloc fndecl 2 60521 NULL
++pcf2127_i2c_gather_write_fndecl_60523_fns pcf2127_i2c_gather_write fndecl 5 60523 NULL
++tty_buffer_alloc_fndecl_60526_fns tty_buffer_alloc fndecl 2 60526 NULL
++register_netdev_fndecl_60559_fns register_netdev fndecl 0 60559 NULL
++nilfs_palloc_delete_block_fndecl_60568_fns nilfs_palloc_delete_block fndecl 2 60568 NULL
++sys_lgetxattr_fndecl_60616_fns sys_lgetxattr fndecl 4 60616 NULL
++copy_macs_fndecl_60621_fns copy_macs fndecl 4 60621 NULL
++i40e_alloc_vfs_fndecl_60628_fns i40e_alloc_vfs fndecl 2 60628 NULL nohasharray
++htable_bits_htable_60628_fns htable_bits htable 0 60628 &i40e_alloc_vfs_fndecl_60628_fns
++stats_dot11ACKFailureCount_read_fndecl_60645_fns stats_dot11ACKFailureCount_read fndecl 3 60645 NULL
++venus_rmdir_fndecl_60655_fns venus_rmdir fndecl 4 60655 NULL
++cx18_copy_mdl_to_user_fndecl_60670_fns cx18_copy_mdl_to_user fndecl 4 60670 NULL
++h_mspro_block_setup_cmd_fndecl_60673_fns h_mspro_block_setup_cmd fndecl 3 60673 NULL
++tx_tx_cfe2_read_fndecl_60677_fns tx_tx_cfe2_read fndecl 3 60677 NULL
++sysfs_do_create_link_sd_fndecl_60690_fns sysfs_do_create_link_sd fndecl 0 60690 NULL
++sel_write_user_fndecl_60695_fns sel_write_user fndecl 3 60695 NULL
++ubifs_fsync_fndecl_60696_fns ubifs_fsync fndecl 2-3 60696 NULL
++snd_mixart_BA0_read_fndecl_60702_fns snd_mixart_BA0_read fndecl 5 60702 NULL
++snd_card_new_fndecl_60707_fns snd_card_new fndecl 5 60707 NULL
++kvm_mmu_page_get_gfn_fndecl_60709_fns kvm_mmu_page_get_gfn fndecl 0-2 60709 NULL
++usbdev_read_fndecl_60713_fns usbdev_read fndecl 3 60713 NULL
++pwr_missing_bcns_cnt_read_fndecl_60714_fns pwr_missing_bcns_cnt_read fndecl 3 60714 NULL
++command_setapcor_fndecl_60740_fns command_setapcor fndecl 0 60740 NULL
++helene_i2c_debug_fndecl_60741_fns helene_i2c_debug fndecl 5 60741 NULL
++cfs_trace_daemon_command_usrstr_fndecl_60744_fns cfs_trace_daemon_command_usrstr fndecl 2 60744 NULL
++device_write_fndecl_60791_fns device_write fndecl 3 60791 NULL
++sta_agg_status_write_fndecl_60799_fns sta_agg_status_write fndecl 3 60799 NULL
++sctp_pack_cookie_fndecl_60821_fns sctp_pack_cookie fndecl 6 60821 NULL
++ieee80211_if_read_peer_fndecl_60834_fns ieee80211_if_read_peer fndecl 3 60834 NULL
++prism2_pda_proc_read_fndecl_60845_fns prism2_pda_proc_read fndecl 3 60845 NULL
++spi_alloc_master_fndecl_60852_fns spi_alloc_master fndecl 2 60852 NULL
++input_mt_init_slots_fndecl_60876_fns input_mt_init_slots fndecl 2 60876 NULL
++reiserfs_bmap_fndecl_60877_fns reiserfs_bmap fndecl 2 60877 NULL
++snd_pcm_oss_sync1_fndecl_60897_fns snd_pcm_oss_sync1 fndecl 2 60897 NULL nohasharray
++sn9c2028_short_command_fndecl_60897_fns sn9c2028_short_command fndecl 0 60897 &snd_pcm_oss_sync1_fndecl_60897_fns
++mlxsw_cmd_mbox_query_aq_cap_max_num_sdqs_get_fndecl_60914_fns mlxsw_cmd_mbox_query_aq_cap_max_num_sdqs_get fndecl 0 60914 NULL
++__exchange_data_block_fndecl_60951_fns __exchange_data_block fndecl 5 60951 NULL
++posix_acl_xattr_set_fndecl_60952_fns posix_acl_xattr_set fndecl 6 60952 NULL
++ath10k_reg_value_read_fndecl_60958_fns ath10k_reg_value_read fndecl 3 60958 NULL
++isdn_write_fndecl_60980_fns isdn_write fndecl 3 60980 NULL
++devm_create_dax_dev_fndecl_60990_fns devm_create_dax_dev fndecl 3 60990 NULL
++dbgfs_frame_fndecl_61006_fns dbgfs_frame fndecl 3 61006 NULL
++cfs_cpt_weight_fndecl_61020_fns cfs_cpt_weight fndecl 0 61020 NULL
++etnaviv_gpu_cmdbuf_new_fndecl_61036_fns etnaviv_gpu_cmdbuf_new fndecl 3 61036 NULL
++nf_nat_ftp_fmt_cmd_fndecl_61045_fns nf_nat_ftp_fmt_cmd fndecl 0 61045 NULL
++copy_to_fndecl_61058_fns copy_to fndecl 3 61058 NULL
++kobject_init_and_add_fndecl_61088_fns kobject_init_and_add fndecl 0 61088 NULL nohasharray
++reply_len_fc_bsg_job_61088_fns reply_len fc_bsg_job 0 61088 &kobject_init_and_add_fndecl_61088_fns
++atr_len_retry_cm4000_dev_61135_fns atr_len_retry cm4000_dev 0 61135 NULL
++get_free_entries_fndecl_61149_fns get_free_entries fndecl 1 61149 NULL nohasharray
++fnic_reset_stats_read_fndecl_61149_fns fnic_reset_stats_read fndecl 3 61149 &get_free_entries_fndecl_61149_fns
++sierra_setup_urb_fndecl_61150_fns sierra_setup_urb fndecl 5 61150 NULL
++__vmalloc_node_range_fndecl_61157_fns __vmalloc_node_range fndecl 1-2 61157 NULL nohasharray
++max_rsp_queues_qla_hw_data_61157_fns max_rsp_queues qla_hw_data 0 61157 &__vmalloc_node_range_fndecl_61157_fns
++host1x_job_alloc_fndecl_61171_fns host1x_job_alloc fndecl 4-3-2 61171 NULL
++dma_tx_errors_read_fndecl_61183_fns dma_tx_errors_read fndecl 3 61183 NULL
++spk_ys_vardecl_61196_fns spk_ys vardecl 0 61196 NULL
++add_qgroup_rb_fndecl_61197_fns add_qgroup_rb fndecl 2 61197 NULL
++radar_debug_mode_read_fndecl_61223_fns radar_debug_mode_read fndecl 3 61223 NULL
++hidraw_get_report_fndecl_61242_fns hidraw_get_report fndecl 3 61242 NULL
++i2c2_debugfs_write_fndecl_61249_fns i2c2_debugfs_write fndecl 3 61249 NULL nohasharray
++rcar_dmac_prep_dma_cyclic_fndecl_61249_fns rcar_dmac_prep_dma_cyclic fndecl 4-3 61249 &i2c2_debugfs_write_fndecl_61249_fns
++CombinedStatusBufferLength_DAC960_Controller_61253_fns CombinedStatusBufferLength DAC960_Controller 0 61253 NULL
++ufx_i2c_configure_fndecl_61311_fns ufx_i2c_configure fndecl 0 61311 NULL
++dvb_ca_en50221_init_fndecl_61317_fns dvb_ca_en50221_init fndecl 4 61317 NULL
++rw_copy_check_uvector_fndecl_61351_fns rw_copy_check_uvector fndecl 3 61351 NULL nohasharray
++v4l2_ctrl_new_std_fndecl_61351_fns v4l2_ctrl_new_std fndecl 5 61351 &rw_copy_check_uvector_fndecl_61351_fns
++size_sge_fl_61353_fns size sge_fl 0 61353 NULL
++lkdtm_debugfs_read_fndecl_61355_fns lkdtm_debugfs_read fndecl 3 61355 NULL
++snd_cs46xx_io_read_fndecl_61365_fns snd_cs46xx_io_read fndecl 5 61365 NULL
++osc_checksum_type_seq_write_fndecl_61386_fns osc_checksum_type_seq_write fndecl 3 61386 NULL
++__pci_register_driver_fndecl_61400_fns __pci_register_driver fndecl 0 61400 NULL
++alloc_ts_config_fndecl_61404_fns alloc_ts_config fndecl 1 61404 NULL
++rx_ring_size_rx_queue_61409_fns rx_ring_size rx_queue 0 61409 NULL
++amdgpu_fence_driver_init_ring_fndecl_61431_fns amdgpu_fence_driver_init_ring fndecl 2 61431 NULL
++quirk_simultaneous_discovery_read_fndecl_61433_fns quirk_simultaneous_discovery_read fndecl 3 61433 NULL
++raw_setsockopt_fndecl_61435_fns raw_setsockopt fndecl 5 61435 NULL
++lbs_rdbbp_read_fndecl_61438_fns lbs_rdbbp_read fndecl 3 61438 NULL
++ath6kl_keepalive_read_fndecl_61468_fns ath6kl_keepalive_read fndecl 3 61468 NULL
++nmatches_tcf_ematch_tree_hdr_61486_fns nmatches tcf_ematch_tree_hdr 0 61486 NULL
++dispatch_proc_write_fndecl_61491_fns dispatch_proc_write fndecl 3 61491 NULL
++rs_init_fndecl_61492_fns rs_init fndecl 6-1 61492 NULL
++ccp_init_data_fndecl_61495_fns ccp_init_data fndecl 5 61495 NULL nohasharray
++writing_st_buffer_61495_fns writing st_buffer 0 61495 &ccp_init_data_fndecl_61495_fns
++count_sgentry_61508_fns count sgentry 0 61508 NULL
++maxcontacts_wtp_data_61511_fns maxcontacts wtp_data 0 61511 NULL
++nfs_fscache_get_super_cookie_fndecl_61520_fns nfs_fscache_get_super_cookie fndecl 3 61520 NULL
++map_size_tracing_map_61522_fns map_size tracing_map 0 61522 NULL
++rts_threshold_read_fndecl_61555_fns rts_threshold_read fndecl 3 61555 NULL
++aoedev_flush_fndecl_61565_fns aoedev_flush fndecl 2 61565 NULL
++mtip_hw_read_flags_fndecl_61567_fns mtip_hw_read_flags fndecl 3 61567 NULL
++ieee80211_if_read_rc_rateidx_mcs_mask_5ghz_fndecl_61588_fns ieee80211_if_read_rc_rateidx_mcs_mask_5ghz fndecl 3 61588 NULL
++btrfs_chunk_item_size_fndecl_61613_fns btrfs_chunk_item_size fndecl 0-1 61613 NULL
++write_file_debug_fndecl_61615_fns write_file_debug fndecl 3 61615 NULL
++___alloc_bootmem_node_nopanic_fndecl_61630_fns ___alloc_bootmem_node_nopanic fndecl 2 61630 NULL
++nr_slots_b43_dmaring_61631_fns nr_slots b43_dmaring 0 61631 NULL
++ieee80211_if_read_dropped_frames_ttl_fndecl_61639_fns ieee80211_if_read_dropped_frames_ttl fndecl 3 61639 NULL
++iwl_dbgfs_sram_read_fndecl_61642_fns iwl_dbgfs_sram_read fndecl 3 61642 NULL nohasharray
++security_getprocattr_fndecl_61642_fns security_getprocattr fndecl 0 61642 &iwl_dbgfs_sram_read_fndecl_61642_fns
++spidev_write_fndecl_61645_fns spidev_write fndecl 3 61645 NULL
++f2fs_kvmalloc_fndecl_61650_fns f2fs_kvmalloc fndecl 1 61650 NULL
++sdio_align_size_fndecl_61658_fns sdio_align_size fndecl 0 61658 NULL
++comm_write_fndecl_61674_fns comm_write fndecl 3 61674 NULL
++paclen_ax25_cb_61712_fns paclen ax25_cb 0 61712 NULL
++btrfs_prev_leaf_fndecl_61728_fns btrfs_prev_leaf fndecl 0 61728 NULL
++pci_msix_vec_count_fndecl_61742_fns pci_msix_vec_count fndecl 0 61742 NULL
++SYSC_add_key_fndecl_61756_fns SYSC_add_key fndecl 4 61756 NULL
++len_s_skfp_ioctl_61764_fns len s_skfp_ioctl 0 61764 NULL
++__qsfp_debugfs_read_fndecl_61803_fns __qsfp_debugfs_read fndecl 3 61803 NULL
++ttm_get_pages_fndecl_61821_fns ttm_get_pages fndecl 2 61821 NULL
++tracing_resize_saved_cmdlines_fndecl_61823_fns tracing_resize_saved_cmdlines fndecl 1 61823 NULL
++SYSC_set_mempolicy_fndecl_61827_fns SYSC_set_mempolicy fndecl 3 61827 NULL
++num_virt_counters_op_x86_model_spec_61835_fns num_virt_counters op_x86_model_spec 0 61835 NULL
++size_rocker_dma_ring_info_61839_fns size rocker_dma_ring_info 0 61839 NULL
++handle_eviocgbit_fndecl_61874_fns handle_eviocgbit fndecl 3 61874 NULL
++wil_vring_init_tx_fndecl_61876_fns wil_vring_init_tx fndecl 3 61876 NULL
++virtinput_cfg_select_fndecl_61880_fns virtinput_cfg_select fndecl 0 61880 NULL
++param_data_size_skl_ipc_large_config_msg_61881_fns param_data_size skl_ipc_large_config_msg 0 61881 NULL
++vp_find_vqs_fndecl_61892_fns vp_find_vqs fndecl 2 61892 NULL
++srp_alloc_iu_fndecl_61904_fns srp_alloc_iu fndecl 2 61904 NULL
++mlx5_set_ports_check_fndecl_61910_fns mlx5_set_ports_check fndecl 3 61910 NULL
++rxsize_channel_data_61912_fns rxsize channel_data 0 61912 NULL
++device_create_file_fndecl_61934_fns device_create_file fndecl 0 61934 NULL
++__subn_get_opa_cable_info_fndecl_61961_fns __subn_get_opa_cable_info fndecl 2 61961 NULL
++indirect_size_srp_target_port_61962_fns indirect_size srp_target_port 0 61962 NULL
++qla4xxx_alloc_work_fndecl_61982_fns qla4xxx_alloc_work fndecl 2 61982 NULL
++qib_verbs_send_dma_fndecl_61985_fns qib_verbs_send_dma fndecl 6-3 61985 NULL
++sub_stripes_map_lookup_61986_fns sub_stripes map_lookup 0 61986 NULL
++copydesc_user_fndecl_61988_fns copydesc_user fndecl 3 61988 NULL
++sisusb_write_fndecl_62001_fns sisusb_write fndecl 3 62001 NULL
++iwl_dbgfs_tof_range_req_ext_read_fndecl_62021_fns iwl_dbgfs_tof_range_req_ext_read fndecl 3 62021 NULL
++drm_dp_dpcd_read_fndecl_62030_fns drm_dp_dpcd_read fndecl 0 62030 NULL
++init_rs_fndecl_62042_fns init_rs fndecl 1-5 62042 NULL
++block_aligned_filename_size_ecryptfs_write_tag_70_packet_silly_stack_62050_fns block_aligned_filename_size ecryptfs_write_tag_70_packet_silly_stack 0 62050 NULL
++cfg80211_inform_bss_data_fndecl_62065_fns cfg80211_inform_bss_data fndecl 9 62065 NULL
++do_tty_write_fndecl_62067_fns do_tty_write fndecl 5 62067 NULL
++storvsc_connect_to_vsp_fndecl_62078_fns storvsc_connect_to_vsp fndecl 2 62078 NULL
++ofdpa_group_l2_flood_fndecl_62112_fns ofdpa_group_l2_flood fndecl 5 62112 NULL
++__i2c_debugfs_write_fndecl_62113_fns __i2c_debugfs_write fndecl 3 62113 NULL nohasharray
++tx_queue_status_read_fndecl_62113_fns tx_queue_status_read fndecl 3 62113 &__i2c_debugfs_write_fndecl_62113_fns
++bo_offset_vmw_surface_offset_62116_fns bo_offset vmw_surface_offset 0 62116 NULL
++sched_read_attr_fndecl_62123_fns sched_read_attr fndecl 3 62123 NULL
++ofdpa_port_vlan_to_vid_fndecl_62138_fns ofdpa_port_vlan_to_vid fndecl 0 62138 NULL
++free_space_bitmap_size_fndecl_62144_fns free_space_bitmap_size fndecl 0 62144 NULL
++ptrace_writedata_fndecl_62158_fns ptrace_writedata fndecl 4 62158 NULL
++dm_kvzalloc_fndecl_62194_fns dm_kvzalloc fndecl 1 62194 NULL
++wm_adsp_create_control_fndecl_62201_fns wm_adsp_create_control fndecl 4 62201 NULL
++param_count_acpi_evaluate_info_62202_fns param_count acpi_evaluate_info 0 62202 NULL
++sense_len_request_62229_fns sense_len request 0 62229 NULL
++soc_tplg_dapm_widget_dmixer_create_fndecl_62241_fns soc_tplg_dapm_widget_dmixer_create fndecl 2 62241 NULL
++mlxsw_reg_write_fndecl_62290_fns mlxsw_reg_write fndecl 0 62290 NULL
++__kvm_read_guest_page_fndecl_62291_fns __kvm_read_guest_page fndecl 5-2 62291 NULL
++alloc_ctrl_packet_fndecl_62312_fns alloc_ctrl_packet fndecl 1 62312 NULL
++erst_writer_fndecl_62318_fns erst_writer fndecl 7 62318 NULL
++reiserfs_update_sd_size_fndecl_62345_fns reiserfs_update_sd_size fndecl 3 62345 NULL nohasharray
++lov_emerg_alloc_fndecl_62345_fns lov_emerg_alloc fndecl 1 62345 &reiserfs_update_sd_size_fndecl_62345_fns
++switchdev_obj_size_fndecl_62346_fns switchdev_obj_size fndecl 0 62346 NULL
++write_file_spectral_bins_fndecl_62347_fns write_file_spectral_bins fndecl 3 62347 NULL
++C_SYSC_select_fndecl_62350_fns C_SYSC_select fndecl 1 62350 NULL
++mpi_resize_fndecl_62353_fns mpi_resize fndecl 2 62353 NULL
++raid56_parity_write_fndecl_62355_fns raid56_parity_write fndecl 4 62355 NULL
++reglen_bfad_s_62360_fns reglen bfad_s 0 62360 NULL
++fm10k_iov_alloc_data_fndecl_62361_fns fm10k_iov_alloc_data fndecl 2 62361 NULL
++ts_read_fndecl_62364_fns ts_read fndecl 3 62364 NULL
++sysfs_create_link_fndecl_62366_fns sysfs_create_link fndecl 0 62366 NULL
++num_subauth_cifs_sid_62374_fns num_subauth cifs_sid 0 62374 NULL
++fib_count_nexthops_fndecl_62377_fns fib_count_nexthops fndecl 0 62377 NULL
++clusterip_proc_write_fndecl_62378_fns clusterip_proc_write fndecl 3 62378 NULL
++xfer_to_user_fndecl_62394_fns xfer_to_user fndecl 3 62394 NULL
++tnode_new_fndecl_62406_fns tnode_new fndecl 3 62406 NULL
++WIL_GET_BITS_fndecl_62424_fns WIL_GET_BITS fndecl 0-3-2-1 62424 NULL
++sctp_setsockopt_fndecl_62439_fns sctp_setsockopt fndecl 5 62439 NULL
++rx_dropped_read_fndecl_62444_fns rx_dropped_read fndecl 3 62444 NULL
++__videobuf_copy_stream_fndecl_62450_fns __videobuf_copy_stream fndecl 4 62450 NULL
++k3_dma_prep_slave_sg_fndecl_62456_fns k3_dma_prep_slave_sg fndecl 3 62456 NULL
++page_size_mspro_block_data_62479_fns page_size mspro_block_data 0 62479 NULL
++symsize_persistent_ram_ecc_info_62489_fns symsize persistent_ram_ecc_info 0 62489 NULL
++evtchn_write_fndecl_62493_fns evtchn_write fndecl 3 62493 NULL
++args_count_arm_smmu_phandle_args_62496_fns args_count arm_smmu_phandle_args 0 62496 NULL
++de_type_gfs2_dirent_62502_fns de_type gfs2_dirent 0 62502 NULL
++kvm_host_page_size_fndecl_62535_fns kvm_host_page_size fndecl 0-2 62535 NULL
++svc_pool_map_get_fndecl_62569_fns svc_pool_map_get fndecl 0 62569 NULL
++numscales_vardecl_longhaul_c_62570_fns numscales vardecl_longhaul.c 0 62570 NULL
++xenfb_write_fndecl_62599_fns xenfb_write fndecl 3 62599 NULL
++__alloc_bootmem_low_fndecl_62604_fns __alloc_bootmem_low fndecl 1 62604 NULL nohasharray
++msi_capability_init_fndecl_62604_fns msi_capability_init fndecl 2 62604 &__alloc_bootmem_low_fndecl_62604_fns
++usb_string_fndecl_62624_fns usb_string fndecl 0 62624 NULL
++get_vm_area_size_fndecl_62631_fns get_vm_area_size fndecl 0 62631 NULL
++fs_path_prepare_for_add_fndecl_62638_fns fs_path_prepare_for_add fndecl 2-0 62638 NULL
++usb_alloc_urb_fndecl_62655_fns usb_alloc_urb fndecl 1 62655 NULL
++nvme_trans_device_id_page_fndecl_62681_fns nvme_trans_device_id_page fndecl 4 62681 NULL
++mvneta_change_mtu_fndecl_62689_fns mvneta_change_mtu fndecl 2 62689 NULL
++tx_tx_data_prepared_read_fndecl_62714_fns tx_tx_data_prepared_read fndecl 3 62714 NULL
++isr_rx_mem_overflow_read_fndecl_62722_fns isr_rx_mem_overflow_read fndecl 3 62722 NULL
++wep_default_key_count_read_fndecl_62728_fns wep_default_key_count_read fndecl 3 62728 NULL
++match_size_ebt_entry_match_62738_fns match_size ebt_entry_match 0 62738 NULL nohasharray
++hpi_init_message_responseV1_fndecl_62738_fns hpi_init_message_responseV1 fndecl 4-2 62738 &match_size_ebt_entry_match_62738_fns
++payload_size_hv_message_header_62742_fns payload_size hv_message_header 0 62742 NULL
++tomoyo_read_fndecl_62786_fns tomoyo_read fndecl 3 62786 NULL
++len_cx24120_cmd_62796_fns len cx24120_cmd 0 62796 NULL nohasharray
++sysfs_create_file_ns_fndecl_62796_fns sysfs_create_file_ns fndecl 0 62796 &len_cx24120_cmd_62796_fns
++pof_recoffset_boot_data_62824_fns pof_recoffset boot_data 0 62824 NULL
++wq_len_tx_ring_62826_fns wq_len tx_ring 0 62826 NULL
++cfs_cpt_table_alloc_fndecl_62852_fns cfs_cpt_table_alloc fndecl 1 62852 NULL
++func_num_vardecl_g_ffs_c_62856_fns func_num vardecl_g_ffs.c 0 62856 NULL
++il_dbgfs_power_save_status_read_fndecl_62862_fns il_dbgfs_power_save_status_read fndecl 3 62862 NULL
++read_file_dfs_fndecl_62874_fns read_file_dfs fndecl 3 62874 NULL
++ath6kl_set_assoc_req_ies_fndecl_62882_fns ath6kl_set_assoc_req_ies fndecl 3 62882 NULL
++send_cmd_fndecl_62899_fns send_cmd fndecl 0 62899 NULL
++elf_core_extra_phdrs_fndecl_62917_fns elf_core_extra_phdrs fndecl 0 62917 NULL
++uio_write_fndecl_62929_fns uio_write fndecl 3 62929 NULL
++queue_size_srp_target_port_62930_fns queue_size srp_target_port 0 62930 NULL
++iso_callback_fndecl_62939_fns iso_callback fndecl 3 62939 NULL
++ovl_split_lowerdirs_fndecl_62941_fns ovl_split_lowerdirs fndecl 0 62941 NULL
++batadv_tt_tvlv_unicast_handler_v1_fndecl_62964_fns batadv_tt_tvlv_unicast_handler_v1 fndecl 5 62964 NULL
++max_size_mlx5_rl_table_62968_fns max_size mlx5_rl_table 0 62968 NULL
++tool_mw_write_fndecl_62998_fns tool_mw_write fndecl 3 62998 NULL
++print_hex_dump_fndecl_63006_fns print_hex_dump fndecl 7-4-5 63006 NULL
++cache_size_raw_regmap_63010_fns cache_size_raw regmap 0 63010 NULL
++gpr_get_fndecl_63026_fns gpr_get fndecl 3-4 63026 NULL
++arch_memcpy_to_pmem_fndecl_63041_fns arch_memcpy_to_pmem fndecl 3 63041 NULL
++len_ixgbe_tx_buffer_63047_fns len ixgbe_tx_buffer 0 63047 NULL
++read_flush_fndecl_63064_fns read_flush fndecl 3 63064 NULL
++elements_array_data_63130_fns elements array_data 0 63130 NULL
++reiserfs_get_blocks_direct_io_fndecl_63157_fns reiserfs_get_blocks_direct_io fndecl 2 63157 NULL
++nports_ahci_host_priv_63166_fns nports ahci_host_priv 0 63166 NULL
++stats_dot11RTSFailureCount_read_fndecl_63167_fns stats_dot11RTSFailureCount_read fndecl 3 63167 NULL
++__clkdev_alloc_fndecl_63173_fns __clkdev_alloc fndecl 1 63173 NULL
++xt_copy_counters_from_user_fndecl_63174_fns xt_copy_counters_from_user fndecl 2 63174 NULL
++mlxsw_cmd_mbox_query_fw_fw_pages_get_fndecl_63177_fns mlxsw_cmd_mbox_query_fw_fw_pages_get fndecl 0 63177 NULL nohasharray
++ulist_add_fndecl_63177_fns ulist_add fndecl 2-3 63177 &mlxsw_cmd_mbox_query_fw_fw_pages_get_fndecl_63177_fns
++scsi_command_size_fndecl_63179_fns scsi_command_size fndecl 0 63179 NULL nohasharray
++kvm_read_guest_virt_fndecl_63179_fns kvm_read_guest_virt fndecl 4-2 63179 &scsi_command_size_fndecl_63179_fns
++cache_request_fndecl_63187_fns cache_request fndecl 0 63187 NULL
++ieee80211_if_read_rc_rateidx_vht_mcs_mask_2ghz_fndecl_63191_fns ieee80211_if_read_rc_rateidx_vht_mcs_mask_2ghz fndecl 3 63191 NULL
++squashfs_xz_uncompress_fndecl_63193_fns squashfs_xz_uncompress fndecl 6-5 63193 NULL
++write_flush_procfs_fndecl_63224_fns write_flush_procfs fndecl 3 63224 NULL
++tx_frag_failed_read_fndecl_63239_fns tx_frag_failed_read fndecl 3 63239 NULL
++acpi_ut_get_resource_length_fndecl_63256_fns acpi_ut_get_resource_length fndecl 0 63256 NULL
++nvme_init_iod_fndecl_63258_fns nvme_init_iod fndecl 2 63258 NULL
++read_events_fndecl_63261_fns read_events fndecl 3 63261 NULL
++dvb_ca_en50221_io_write_fndecl_63262_fns dvb_ca_en50221_io_write fndecl 3 63262 NULL
++__cyz_load_fw_fndecl_63264_fns __cyz_load_fw fndecl 0 63264 NULL
++rpc_malloc_fndecl_63270_fns rpc_malloc fndecl 2 63270 NULL
++video_buffer_size_osd_info_63299_fns video_buffer_size osd_info 0 63299 NULL
++lpfc_idiag_drbacc_read_reg_fndecl_63301_fns lpfc_idiag_drbacc_read_reg fndecl 0-3 63301 NULL
++proc_read_fndecl_63309_fns proc_read fndecl 3 63309 NULL
++alloc_thread_groups_fndecl_63354_fns alloc_thread_groups fndecl 2 63354 NULL
++start_ms350_cam_fndecl_63372_fns start_ms350_cam fndecl 0 63372 NULL
++kmalloc_large_node_hook_fndecl_63376_fns kmalloc_large_node_hook fndecl 2 63376 NULL
++max_lun_rts51x_chip_63381_fns max_lun rts51x_chip 0 63381 NULL
++__alloc_alien_cache_fndecl_63429_fns __alloc_alien_cache fndecl 2 63429 NULL
++snd_rme32_playback_copy_fndecl_63431_fns snd_rme32_playback_copy fndecl 5 63431 NULL
++bo_count_drm_vc4_get_hang_state_63455_fns bo_count drm_vc4_get_hang_state 0 63455 NULL
++sctp_setsockopt_active_key_fndecl_63480_fns sctp_setsockopt_active_key fndecl 3 63480 NULL
++length_dw_amdgpu_cs_chunk_63482_fns length_dw amdgpu_cs_chunk 0 63482 NULL nohasharray
++gigaset_initcs_fndecl_63482_fns gigaset_initcs fndecl 2 63482 &length_dw_amdgpu_cs_chunk_63482_fns
++width_v4l2_pix_format_63491_fns width v4l2_pix_format 0 63491 NULL
++_gr_table_len_vardecl_x2apic_uv_x_c_63497_fns _gr_table_len vardecl_x2apic_uv_x.c 0 63497 NULL
++num_usb2_ports_xhci_hcd_63514_fns num_usb2_ports xhci_hcd 0 63514 NULL
++rx_defrag_need_decrypt_read_fndecl_63518_fns rx_defrag_need_decrypt_read fndecl 3 63518 NULL
++sel_read_perm_fndecl_63533_fns sel_read_perm fndecl 3 63533 NULL
++__tty_buffer_request_room_fndecl_63543_fns __tty_buffer_request_room fndecl 2-0 63543 NULL
++snd_pcm_hw_param_value_max_fndecl_63547_fns snd_pcm_hw_param_value_max fndecl 0 63547 NULL
++tlv_data_size_user_element_63549_fns tlv_data_size user_element 0 63549 NULL
++ath10k_htc_process_trailer_fndecl_63552_fns ath10k_htc_process_trailer fndecl 3 63552 NULL
++gfn_to_hva_fndecl_63570_fns gfn_to_hva fndecl 2 63570 NULL
++sctp_setsockopt_del_key_fndecl_63571_fns sctp_setsockopt_del_key fndecl 3 63571 NULL nohasharray
++ulong_read_file_fndecl_63571_fns ulong_read_file fndecl 3 63571 &sctp_setsockopt_del_key_fndecl_63571_fns
++xfs_rui_init_fndecl_63573_fns xfs_rui_init fndecl 2 63573 NULL
++cit_get_packet_size_fndecl_63585_fns cit_get_packet_size fndecl 0 63585 NULL
++il_dbgfs_disable_ht40_read_fndecl_63617_fns il_dbgfs_disable_ht40_read fndecl 3 63617 NULL
++snic_queue_wq_desc_fndecl_63639_fns snic_queue_wq_desc fndecl 3 63639 NULL
++mlxsw_pci_fw_area_init_fndecl_63657_fns mlxsw_pci_fw_area_init fndecl 3 63657 NULL
++msnd_fifo_read_fndecl_63669_fns msnd_fifo_read fndecl 0 63669 NULL
++alloc_gen8_temp_bitmaps_fndecl_63688_fns alloc_gen8_temp_bitmaps fndecl 3 63688 NULL nohasharray
++height_ssd1307fb_par_63688_fns height ssd1307fb_par 0 63688 &alloc_gen8_temp_bitmaps_fndecl_63688_fns
++fanout_set_data_cbpf_fndecl_63689_fns fanout_set_data_cbpf fndecl 3 63689 NULL
++qsfp_debugfs_dump_fndecl_63692_fns qsfp_debugfs_dump fndecl 3 63692 NULL
++__iio_add_chan_devattr_fndecl_63697_fns __iio_add_chan_devattr fndecl 0 63697 NULL
++gsm_data_alloc_fndecl_63702_fns gsm_data_alloc fndecl 3 63702 NULL
++key_conf_keyidx_read_fndecl_63704_fns key_conf_keyidx_read fndecl 3 63704 NULL
++spi_split_transfers_maxsize_fndecl_63709_fns spi_split_transfers_maxsize fndecl 3 63709 NULL
++print_section_fndecl_63738_fns print_section fndecl 3 63738 NULL
++len_ath10k_hif_sg_item_63747_fns len ath10k_hif_sg_item 0 63747 NULL
++smtc_map_smem_fndecl_63754_fns smtc_map_smem fndecl 3 63754 NULL
++spidev_sync_read_fndecl_63757_fns spidev_sync_read fndecl 0 63757 NULL
++pool_allocate_fndecl_63759_fns pool_allocate fndecl 3 63759 NULL
++msix_count_skd_device_63760_fns msix_count skd_device 0 63760 NULL
++insn_size_kprobe_insn_cache_63777_fns insn_size kprobe_insn_cache 0 63777 NULL
++__hwahc_op_set_gtk_fndecl_63781_fns __hwahc_op_set_gtk fndecl 4 63781 NULL
++alloc_trace_kprobe_fndecl_63786_fns alloc_trace_kprobe fndecl 6 63786 NULL
++_scif_recv_fndecl_63792_fns _scif_recv fndecl 0-3 63792 NULL
++rs_sta_dbgfs_scale_table_write_fndecl_63794_fns rs_sta_dbgfs_scale_table_write fndecl 3 63794 NULL
++ioaccel_maxsg_ctlr_info_63798_fns ioaccel_maxsg ctlr_info 0 63798 NULL
++acpi_ut_create_buffer_object_fndecl_63805_fns acpi_ut_create_buffer_object fndecl 1 63805 NULL
++iwl_mvm_scan_size_fndecl_63834_fns iwl_mvm_scan_size fndecl 0 63834 NULL
++error_elp_while_tx_exch_read_fndecl_63835_fns error_elp_while_tx_exch_read fndecl 3 63835 NULL
++ext4_sync_file_fndecl_63847_fns ext4_sync_file fndecl 2-3 63847 NULL
++addrlen_at25_data_63857_fns addrlen at25_data 0 63857 NULL
++dw_dma_cyclic_prep_fndecl_63890_fns dw_dma_cyclic_prep fndecl 4-3 63890 NULL
++len_sock_fprog_kern_63914_fns len sock_fprog_kern 0 63914 NULL
++read_file_base_eeprom_fndecl_63915_fns read_file_base_eeprom fndecl 3 63915 NULL
++component_match_realloc_fndecl_63932_fns component_match_realloc fndecl 3 63932 NULL
++get_znodes_to_commit_fndecl_63946_fns get_znodes_to_commit fndecl 0 63946 NULL nohasharray
++hdr_dwords_qib_verbs_txreq_63946_fns hdr_dwords qib_verbs_txreq 0 63946 &get_znodes_to_commit_fndecl_63946_fns
++vhost_copy_to_user_fndecl_63952_fns vhost_copy_to_user fndecl 4 63952 NULL
++oprofilefs_str_to_user_fndecl_63957_fns oprofilefs_str_to_user fndecl 3 63957 NULL
++pvr2_send_request_fndecl_63959_fns pvr2_send_request fndecl 3-5 63959 NULL
++write_file_beacon_fndecl_63962_fns write_file_beacon fndecl 3 63962 NULL
++len_wm_coeff_ctl_63967_fns len wm_coeff_ctl 0 63967 NULL
++pla_ocp_read_fndecl_63976_fns pla_ocp_read fndecl 3 63976 NULL
++pos_pagemapread_63988_fns pos pagemapread 0 63988 NULL
++snd_midi_event_decode_fndecl_64015_fns snd_midi_event_decode fndecl 0 64015 NULL
++dpm_sysfs_add_fndecl_64023_fns dpm_sysfs_add fndecl 0 64023 NULL
++fw_device_op_compat_ioctl_fndecl_64039_fns fw_device_op_compat_ioctl fndecl 2 64039 NULL
++drm_ioctl_fndecl_64046_fns drm_ioctl fndecl 2 64046 NULL
++elfcorehdr_read_notes_fndecl_64049_fns elfcorehdr_read_notes fndecl 2 64049 NULL
++entries_per_page_tracing_map_array_64081_fns entries_per_page tracing_map_array 0 64081 NULL
++iwl_dbgfs_ucode_bt_stats_read_fndecl_64087_fns iwl_dbgfs_ucode_bt_stats_read fndecl 3 64087 NULL
++si476x_radio_read_rsq_blob_fndecl_64088_fns si476x_radio_read_rsq_blob fndecl 3 64088 NULL
++set_arg_fndecl_64091_fns set_arg fndecl 3 64091 NULL
++cxgbi_hbas_add_fndecl_64102_fns cxgbi_hbas_add fndecl 3 64102 NULL
++rx_mini_pending_ethtool_ringparam_64104_fns rx_mini_pending ethtool_ringparam 0 64104 NULL
++nvme_trans_unit_serial_page_fndecl_64108_fns nvme_trans_unit_serial_page fndecl 4 64108 NULL
++btmrvl_fwdump_write_fndecl_64113_fns btmrvl_fwdump_write fndecl 3 64113 NULL
++of_property_count_strings_fndecl_64124_fns of_property_count_strings fndecl 0 64124 NULL
++xpc_kmalloc_cacheline_aligned_fndecl_64156_fns xpc_kmalloc_cacheline_aligned fndecl 1 64156 NULL
++sctp_getsockopt_maxburst_fndecl_64174_fns sctp_getsockopt_maxburst fndecl 2 64174 NULL
++max_fcoe_conn_cnic_dev_64181_fns max_fcoe_conn cnic_dev 0 64181 NULL
++out___kfifo_64192_fns out __kfifo 0 64192 NULL
++sys_sethostname_fndecl_64193_fns sys_sethostname fndecl 2 64193 NULL
++st_set_options_fndecl_64214_fns st_set_options fndecl 2 64214 NULL
++f2fs_move_file_range_fndecl_64227_fns f2fs_move_file_range fndecl 2-5 64227 NULL
++compat_udpv6_setsockopt_fndecl_64246_fns compat_udpv6_setsockopt fndecl 5 64246 NULL
++pwr_ap_sleep_counter_read_fndecl_64248_fns pwr_ap_sleep_counter_read fndecl 3 64248 NULL
++nfs_idmap_get_desc_fndecl_64253_fns nfs_idmap_get_desc fndecl 2-4 64253 NULL nohasharray
++rtw_os_xmit_resource_alloc_fndecl_64253_fns rtw_os_xmit_resource_alloc fndecl 3 64253 &nfs_idmap_get_desc_fndecl_64253_fns
++mwifiex_timeshare_coex_read_fndecl_64272_fns mwifiex_timeshare_coex_read fndecl 3 64272 NULL
++denominator_v4l2_fract_64280_fns denominator v4l2_fract 0 64280 NULL
++request_firmware_fndecl_64298_fns request_firmware fndecl 0 64298 NULL
++snd_emux_create_port_fndecl_64310_fns snd_emux_create_port fndecl 3 64310 NULL
++smk_read_unconfined_fndecl_64317_fns smk_read_unconfined fndecl 3 64317 NULL
++cciss_add_disk_fndecl_64338_fns cciss_add_disk fndecl 3 64338 NULL
++_iwl_dbgfs_tof_range_abort_write_fndecl_64357_fns _iwl_dbgfs_tof_range_abort_write fndecl 3 64357 NULL
++oom_score_adj_write_fndecl_64369_fns oom_score_adj_write fndecl 3 64369 NULL
++skb_array_resize_multiple_fndecl_64376_fns skb_array_resize_multiple fndecl 2-3 64376 NULL
++hpi_init_responseV1_fndecl_64379_fns hpi_init_responseV1 fndecl 2 64379 NULL
++diversity_num_of_packets_per_ant_read_fndecl_64400_fns diversity_num_of_packets_per_ant_read fndecl 3 64400 NULL
++sys_move_pages_fndecl_64401_fns sys_move_pages fndecl 2 64401 NULL
++head_len_icmp_bxm_64424_fns head_len icmp_bxm 0 64424 NULL
++new_node_page_fndecl_64464_fns new_node_page fndecl 2 64464 NULL
++request_key_and_link_fndecl_64470_fns request_key_and_link fndecl 4 64470 NULL
++switchdev_deferred_enqueue_fndecl_64474_fns switchdev_deferred_enqueue fndecl 3 64474 NULL
++set_aoe_iflist_fndecl_64482_fns set_aoe_iflist fndecl 2 64482 NULL
++ax25_setsockopt_fndecl_64487_fns ax25_setsockopt fndecl 5 64487 NULL
++partition_create_desc_fndecl_64535_fns partition_create_desc fndecl 3 64535 NULL
++ath10k_p2p_noa_ie_len_compute_fndecl_64548_fns ath10k_p2p_noa_ie_len_compute fndecl 0 64548 NULL
++num_channels_sh_tmu_device_64556_fns num_channels sh_tmu_device 0 64556 NULL
++hiddev_compat_ioctl_fndecl_64564_fns hiddev_compat_ioctl fndecl 2 64564 NULL
++rq_enc_pages_num_rpc_rqst_64573_fns rq_enc_pages_num rpc_rqst 0 64573 NULL
++erst_read_fndecl_64575_fns erst_read fndecl 0 64575 NULL
++vtpm_proxy_tpm_op_send_fndecl_64582_fns vtpm_proxy_tpm_op_send fndecl 3 64582 NULL
++alloc_context_fndecl_64592_fns alloc_context fndecl 1 64592 NULL
++of_count_phandle_with_args_fndecl_64600_fns of_count_phandle_with_args fndecl 0 64600 NULL
++gpr_set_fndecl_64611_fns gpr_set fndecl 3-4 64611 NULL
++kmp_init_fndecl_64654_fns kmp_init fndecl 2 64654 NULL
++num_allowed_vlans_qlcnic_sriov_64661_fns num_allowed_vlans qlcnic_sriov 0 64661 NULL
++cnic_init_id_tbl_fndecl_64665_fns cnic_init_id_tbl fndecl 2 64665 NULL
++isr_commands_read_fndecl_64677_fns isr_commands_read fndecl 3 64677 NULL nohasharray
++cciss_update_drive_info_fndecl_64677_fns cciss_update_drive_info fndecl 2 64677 &isr_commands_read_fndecl_64677_fns
++sys_flistxattr_fndecl_64684_fns sys_flistxattr fndecl 3 64684 NULL
++get_base_info_fndecl_64688_fns get_base_info fndecl 3 64688 NULL
++lbs_rdrf_read_fndecl_64708_fns lbs_rdrf_read fndecl 3 64708 NULL
++rx_defrag_decrypt_failed_read_fndecl_64720_fns rx_defrag_decrypt_failed_read fndecl 3 64720 NULL
++layout_leb_in_gaps_fndecl_64749_fns layout_leb_in_gaps fndecl 0 64749 NULL
++pcpu_build_alloc_info_fndecl_64752_fns pcpu_build_alloc_info fndecl 2-1-3 64752 NULL nohasharray
++vop_virtio_copy_from_user_fndecl_64752_fns vop_virtio_copy_from_user fndecl 3 64752 &pcpu_build_alloc_info_fndecl_64752_fns
++iio_device_alloc_fndecl_64755_fns iio_device_alloc fndecl 1 64755 NULL
++smtcfb_read_fndecl_64764_fns smtcfb_read fndecl 3 64764 NULL
++mac80211_format_buffer_fndecl_64801_fns mac80211_format_buffer fndecl 2 64801 NULL
++pmsg_size_ramoops_context_64804_fns pmsg_size ramoops_context 0 64804 NULL
++fpa_get_fndecl_64809_fns fpa_get fndecl 3-4 64809 NULL
++il_dbgfs_fh_reg_read_fndecl_64818_fns il_dbgfs_fh_reg_read fndecl 3 64818 NULL
++iwl_dbgfs_scan_ant_rxchain_read_fndecl_64820_fns iwl_dbgfs_scan_ant_rxchain_read fndecl 3 64820 NULL
++atr_csum_cm4000_dev_64828_fns atr_csum cm4000_dev 0 64828 NULL
++lprocfs_write_frac_helper_fndecl_64841_fns lprocfs_write_frac_helper fndecl 2 64841 NULL
++edma_prep_dma_cyclic_fndecl_64842_fns edma_prep_dma_cyclic fndecl 4-3 64842 NULL
++iov_iter_truncate_fndecl_64844_fns iov_iter_truncate fndecl 2 64844 NULL
++tool_dbfn_write_fndecl_64852_fns tool_dbfn_write fndecl 3 64852 NULL
++rh_inc_fndecl_64864_fns rh_inc fndecl 2 64864 NULL
++sc_only_mode_read_fndecl_64871_fns sc_only_mode_read fndecl 3 64871 NULL
++vfs_listxattr_fndecl_64885_fns vfs_listxattr fndecl 0 64885 NULL
++reserve_sfa_size_fndecl_64893_fns reserve_sfa_size fndecl 2 64893 NULL
++provide_user_output_fndecl_64898_fns provide_user_output fndecl 3 64898 NULL
++f_audio_buffer_alloc_fndecl_64901_fns f_audio_buffer_alloc fndecl 1 64901 NULL
++maxctl_brcmf_bus_64907_fns maxctl brcmf_bus 0 64907 NULL nohasharray
++ath10k_read_wmi_services_fndecl_64907_fns ath10k_read_wmi_services fndecl 3 64907 &maxctl_brcmf_bus_64907_fns
++dma_attach_fndecl_64917_fns dma_attach fndecl 5-6 64917 NULL
++roccat_read_fndecl_64918_fns roccat_read fndecl 3 64918 NULL
++qstat_read_fndecl_64946_fns qstat_read fndecl 3 64946 NULL
++dvb_ca_write_fndecl_64960_fns dvb_ca_write fndecl 3 64960 NULL
++print_pkt_fndecl_64981_fns print_pkt fndecl 2 64981 NULL
++tx_frag_mpdu_alloc_failed_read_fndecl_64988_fns tx_frag_mpdu_alloc_failed_read fndecl 3 64988 NULL
++__mlxsw_item_get32_fndecl_64999_fns __mlxsw_item_get32 fndecl 0 64999 NULL
++netif_get_num_default_rss_queues_fndecl_65008_fns netif_get_num_default_rss_queues fndecl 0 65008 NULL
++dfs_file_write_fndecl_65023_fns dfs_file_write fndecl 3 65023 NULL
++bus_add_driver_fndecl_65060_fns bus_add_driver fndecl 0 65060 NULL
++flag_node_footer_65063_fns flag node_footer 0 65063 NULL
++capi_ttyminors_vardecl_capi_c_65086_fns capi_ttyminors vardecl_capi.c 0 65086 NULL
++num_tx_bds_bcmgenet_priv_65087_fns num_tx_bds bcmgenet_priv 0 65087 NULL
++rtw_android_get_macaddr_fndecl_65095_fns rtw_android_get_macaddr fndecl 0 65095 NULL
++iwl_dbgfs_bt_notif_read_fndecl_65105_fns iwl_dbgfs_bt_notif_read fndecl 3 65105 NULL
++ntb_mw_count_fndecl_65108_fns ntb_mw_count fndecl 0 65108 NULL
++nilfs_cpfile_is_snapshot_fndecl_65110_fns nilfs_cpfile_is_snapshot fndecl 2 65110 NULL
++hsi_alloc_controller_fndecl_65113_fns hsi_alloc_controller fndecl 1 65113 NULL
++amdgpu_bo_list_set_fndecl_65117_fns amdgpu_bo_list_set fndecl 5 65117 NULL
++do_ip_setsockopt_fndecl_65135_fns do_ip_setsockopt fndecl 5 65135 NULL
++kimage_file_alloc_init_fndecl_65136_fns kimage_file_alloc_init fndecl 5 65136 NULL
++ixgbe_dbg_netdev_ops_read_fndecl_65148_fns ixgbe_dbg_netdev_ops_read fndecl 3 65148 NULL
++_iwl_dbgfs_max_amsdu_len_write_fndecl_65173_fns _iwl_dbgfs_max_amsdu_len_write fndecl 3 65173 NULL
++get_fdb_entries_fndecl_65199_fns get_fdb_entries fndecl 3 65199 NULL
++nilfs_palloc_entry_blkoff_fndecl_65206_fns nilfs_palloc_entry_blkoff fndecl 0 65206 NULL
++read_gssp_fndecl_65224_fns read_gssp fndecl 3 65224 NULL
++ssid_len_connect_attr_65228_fns ssid_len connect_attr 0 65228 NULL
++etb_read_fndecl_65249_fns etb_read fndecl 3 65249 NULL
++cx24116_writeregN_fndecl_65252_fns cx24116_writeregN fndecl 4 65252 NULL
++portnames_read_fndecl_65269_fns portnames_read fndecl 3 65269 NULL
++update_stat_data_fndecl_65289_fns update_stat_data fndecl 3 65289 NULL
++hpfs_translate_name_fndecl_65290_fns hpfs_translate_name fndecl 3 65290 NULL
++rt2x00debug_write_rfcsr_fndecl_65298_fns rt2x00debug_write_rfcsr fndecl 3 65298 NULL nohasharray
++usb_stor_probe2_fndecl_65298_fns usb_stor_probe2 fndecl 0 65298 &rt2x00debug_write_rfcsr_fndecl_65298_fns
++rockchip_clk_init_fndecl_65312_fns rockchip_clk_init fndecl 3 65312 NULL
++brcmf_flowring_attach_fndecl_65325_fns brcmf_flowring_attach fndecl 2 65325 NULL
++ath6kl_endpoint_stats_read_fndecl_65345_fns ath6kl_endpoint_stats_read fndecl 3 65345 NULL
++wm_coeff_read_control_fndecl_65358_fns wm_coeff_read_control fndecl 3 65358 NULL
++fbucket_size_qlcnic_filter_hash_65369_fns fbucket_size qlcnic_filter_hash 0 65369 NULL
++batadv_tvlv_container_ogm_append_fndecl_65383_fns batadv_tvlv_container_ogm_append fndecl 4 65383 NULL
++num_rx_queues_ixgbe_adapter_65402_fns num_rx_queues ixgbe_adapter 0 65402 NULL
++rng_dev_read_fndecl_65406_fns rng_dev_read fndecl 3 65406 NULL
++lstcon_batch_list_fndecl_65416_fns lstcon_batch_list fndecl 2 65416 NULL
++fq_trees_log_fq_sched_data_65425_fns fq_trees_log fq_sched_data 0 65425 NULL
++tcp_hdrlen_fndecl_65433_fns tcp_hdrlen fndecl 0 65433 NULL
++data_in_size_mpt3_ioctl_command_65434_fns data_in_size mpt3_ioctl_command 0 65434 NULL
++a2mp_send_fndecl_65436_fns a2mp_send fndecl 4 65436 NULL
++spi_cmd_complete_fndecl_65442_fns spi_cmd_complete fndecl 5 65442 NULL
++rx_rx_pre_complt_read_fndecl_65446_fns rx_rx_pre_complt_read fndecl 3 65446 NULL
++squashfs_cache_init_fndecl_65451_fns squashfs_cache_init fndecl 3-2 65451 NULL
++raw_notifier_call_chain_fndecl_65500_fns raw_notifier_call_chain fndecl 0 65500 NULL
++connector_write_fndecl_65534_fns connector_write fndecl 3 65534 NULL nohasharray
++bcm2835_dma_prep_dma_memcpy_fndecl_65534_fns bcm2835_dma_prep_dma_memcpy fndecl 4 65534 &connector_write_fndecl_65534_fns
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/e_fptrs.data b/scripts/gcc-plugins/size_overflow_plugin/e_fptrs.data
+new file mode 100644
+index 0000000..0d8d5c4
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/e_fptrs.data
+@@ -0,0 +1,70 @@
++writebootimg_HYSDN_CARD_125_fptrs writebootimg HYSDN_CARD 0 125 NULL
++notifier_call_notifier_block_360_fptrs notifier_call notifier_block 0 360 NULL
++pte_hole_mm_walk_1233_fptrs pte_hole mm_walk 0 1233 NULL
++get_tdp_level_kvm_x86_ops_1250_fptrs get_tdp_level kvm_x86_ops 0 1250 NULL
++read_kernfs_ops_1325_fptrs read kernfs_ops 0 1325 NULL
++bus_bm_cmd_send_i2400m_2189_fptrs bus_bm_cmd_send i2400m 0 2189 NULL
++read_saa7146_use_ops_2236_fptrs read saa7146_use_ops 0 2236 NULL
++mdio_write_mdio_if_info_3033_fptrs mdio_write mdio_if_info 0 3033 NULL
++parse_header_ops_3963_fptrs parse header_ops 0 3963 NULL
++epp_write_data_parport_operations_4176_fptrs epp_write_data parport_operations 0 4176 NULL
++hugetlb_entry_mm_walk_5211_fptrs hugetlb_entry mm_walk 0 5211 NULL
++get_cr3_kvm_mmu_5347_fptrs get_cr3 kvm_mmu 0 5347 NULL
++add_endpoint_hc_driver_6482_fptrs add_endpoint hc_driver 0 6482 NULL
++f_read_cntrs_qib_devdata_6502_fptrs f_read_cntrs qib_devdata 0 6502 NULL
++drop_endpoint_hc_driver_6692_fptrs drop_endpoint hc_driver 0 6692 NULL
++add_frontend_dmx_demux_7322_fptrs add_frontend dmx_demux 0 7322 NULL
++find_vqs_virtio_config_ops_11797_fptrs find_vqs virtio_config_ops 0 11797 NULL
++pcibios_enable_irq_vardecl_11854_fptrs pcibios_enable_irq vardecl 0 11854 NULL
++read8_sync_rtl_io_12571_fptrs read8_sync rtl_io 0 12571 NULL
++transfer_drm_dp_aux_14204_fptrs transfer drm_dp_aux 0 14204 NULL
++dump_fh_il_ops_14548_fptrs dump_fh il_ops 0 14548 NULL
++dump_eeprom_eeprom_ops_15062_fptrs dump_eeprom eeprom_ops 0 15062 NULL
++mdio_read_mdio_if_info_15272_fptrs mdio_read mdio_if_info 0 15272 NULL
++get_pdptr_kvm_mmu_17247_fptrs get_pdptr kvm_mmu 0 17247 NULL
++read_hwrng_17766_fptrs read hwrng 0 17766 NULL
++count_objects_shrinker_18894_fptrs count_objects shrinker 0 18894 NULL
++proc_read_atmdev_ops_19414_fptrs proc_read atmdev_ops 0 19414 NULL
++dev_init_pre_alt_sd_19924_fptrs dev_init_pre_alt sd 0 19924 NULL
++translate_gpa_kvm_mmu_20350_fptrs translate_gpa kvm_mmu 0 20350 NULL
++waitpofready_HYSDN_CARD_20682_fptrs waitpofready HYSDN_CARD 0 20682 NULL
++data_read_hwrng_21861_fptrs data_read hwrng 0 21861 NULL
++pirq_enable_irq_fndecl_22603_fptrs pirq_enable_irq fndecl 0 22603 NULL
++bytes_number_item_operations_23452_fptrs bytes_number item_operations 0 23452 NULL
++transfer_snd_pcm_plugin_25081_fptrs transfer snd_pcm_plugin 0 25081 NULL
++ecp_write_data_parport_operations_26253_fptrs ecp_write_data parport_operations 0 26253 NULL
++read_b43_debugfs_fops_29607_fptrs read b43_debugfs_fops 0 29607 NULL
++verify_planes_array_vb2_buf_ops_30329_fptrs verify_planes_array vb2_buf_ops 0 30329 NULL
++pmd_entry_mm_walk_30448_fptrs pmd_entry mm_walk 0 30448 NULL
++ecp_read_data_parport_operations_31283_fptrs ecp_read_data parport_operations 0 31283 NULL
++bus_bm_wait_for_ack_i2400m_31925_fptrs bus_bm_wait_for_ack i2400m 0 31925 NULL
++write_tty_ldisc_ops_32094_fptrs write tty_ldisc_ops 0 32094 NULL
++read32_tpm_tis_phy_ops_33980_fptrs read32 tpm_tis_phy_ops 0 33980 NULL
++client_channels_snd_pcm_plugin_36324_fptrs client_channels snd_pcm_plugin 0 36324 NULL
++gva_to_gpa_kvm_mmu_37200_fptrs gva_to_gpa kvm_mmu 0 37200 NULL
++uni2char_nls_table_41293_fptrs uni2char nls_table 0 41293 NULL
++read_b43legacy_debugfs_fops_42452_fptrs read b43legacy_debugfs_fops 0 42452 NULL
++ndo_init_net_device_ops_42812_fptrs ndo_init net_device_ops 0 42812 NULL
++epp_read_data_parport_operations_44383_fptrs epp_read_data parport_operations 0 44383 NULL
++preproc_res_proc_context_45654_fptrs preproc res_proc_context 0 45654 NULL
++show_sysfs_ops_47546_fptrs show sysfs_ops 0 47546 NULL
++parport_ieee1284_epp_read_addr_fndecl_48478_fptrs parport_ieee1284_epp_read_addr fndecl 0 48478 NULL nohasharray
++parport_ieee1284_ecp_read_data_fndecl_48478_fptrs parport_ieee1284_ecp_read_data fndecl 0 48478 &parport_ieee1284_epp_read_addr_fndecl_48478_fptrs nohasharray
++parport_ieee1284_epp_read_data_fndecl_48478_fptrs parport_ieee1284_epp_read_data fndecl 0 48478 &parport_ieee1284_ecp_read_data_fndecl_48478_fptrs
++listxattr_inode_operations_50507_fptrs listxattr inode_operations 0 50507 NULL
++pte_entry_mm_walk_51234_fptrs pte_entry mm_walk 0 51234 NULL
++probe_parport_driver_51942_fptrs probe parport_driver 0 51942 NULL
++parport_ieee1284_ecp_write_addr_fndecl_52806_fptrs parport_ieee1284_ecp_write_addr fndecl 0 52806 NULL nohasharray
++parport_ieee1284_epp_write_addr_fndecl_52806_fptrs parport_ieee1284_epp_write_addr fndecl 0 52806 &parport_ieee1284_ecp_write_addr_fndecl_52806_fptrs nohasharray
++parport_ieee1284_ecp_write_data_fndecl_52806_fptrs parport_ieee1284_ecp_write_data fndecl 0 52806 &parport_ieee1284_epp_write_addr_fndecl_52806_fptrs nohasharray
++parport_ieee1284_epp_write_data_fndecl_52806_fptrs parport_ieee1284_epp_write_data fndecl 0 52806 &parport_ieee1284_ecp_write_data_fndecl_52806_fptrs
++nr_cached_objects_super_operations_54808_fptrs nr_cached_objects super_operations 0 54808 NULL
++connect_frontend_dmx_demux_55378_fptrs connect_frontend dmx_demux 0 55378 NULL
++byte_read_data_parport_operations_57730_fptrs byte_read_data parport_operations 0 57730 NULL
++writebootseq_HYSDN_CARD_59000_fptrs writebootseq HYSDN_CARD 0 59000 NULL
++read_mii_bus_59181_fptrs read mii_bus 0 59181 NULL
++nibble_read_data_parport_operations_60589_fptrs nibble_read_data parport_operations 0 60589 NULL
++f_read_portcntrs_qib_devdata_61868_fptrs f_read_portcntrs qib_devdata 0 61868 NULL
++check_bandwidth_hc_driver_63438_fptrs check_bandwidth hc_driver 0 63438 NULL
++compat_write_data_parport_operations_64123_fptrs compat_write_data parport_operations 0 64123 NULL
++test_walk_mm_walk_64132_fptrs test_walk mm_walk 0 64132 NULL
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/e_vars.data b/scripts/gcc-plugins/size_overflow_plugin/e_vars.data
+new file mode 100644
+index 0000000..632c36d
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/e_vars.data
+@@ -0,0 +1,161 @@
++cache_size_vardecl_lkdtm_usercopy_c_448_vars cache_size vardecl_lkdtm_usercopy.c 0 448 NULL
++max_num_of_queues_per_device_vardecl_1365_vars max_num_of_queues_per_device vardecl 0 1365 NULL
++sdebug_num_tgts_vardecl_scsi_debug_c_2223_vars sdebug_num_tgts vardecl_scsi_debug.c 0 2223 NULL
++big_oops_buf_sz_vardecl_platform_c_2265_vars big_oops_buf_sz vardecl_platform.c 0 2265 NULL
++fpu_kernel_xstate_size_vardecl_2787_vars fpu_kernel_xstate_size vardecl 0 2787 NULL
++tx_max_out_p_vardecl_mptlan_c_2906_vars tx_max_out_p vardecl_mptlan.c 0 2906 NULL
++sysctl_nr_open_vardecl_3355_vars sysctl_nr_open vardecl 0 3355 NULL
++ecryptfs_message_buf_len_vardecl_3736_vars ecryptfs_message_buf_len vardecl 0 3736 NULL
++max_sg_segs_vardecl_osst_c_4365_vars max_sg_segs vardecl_osst.c 0 4365 NULL
++dma_tx_num_vardecl_altera_tse_main_c_4981_vars dma_tx_num vardecl_altera_tse_main.c 0 4981 NULL
++ring_buffer_size_vardecl_ldusb_c_5645_vars ring_buffer_size vardecl_ldusb.c 0 5645 NULL
++count_vardecl_speedtest_c_6069_vars count vardecl_speedtest.c 0 6069 NULL
++buffer_kbs_vardecl_st_c_6866_vars buffer_kbs vardecl_st.c 0 6866 NULL
++sysctl_perf_event_max_stack_vardecl_7792_vars sysctl_perf_event_max_stack vardecl 0 7792 NULL
++goldfish_tty_line_count_vardecl_goldfish_c_8058_vars goldfish_tty_line_count vardecl_goldfish.c 0 8058 NULL
++vmcore_size_vardecl_vmcore_c_8660_vars vmcore_size vardecl_vmcore.c 0 8660 NULL
++rx_buf_sz_vardecl_r8169_c_9136_vars rx_buf_sz vardecl_r8169.c 0 9136 NULL
++_max_socket_vardecl_x2apic_uv_x_c_9456_vars _max_socket vardecl_x2apic_uv_x.c 0 9456 NULL
++kdb_max_commands_vardecl_kdb_main_c_9529_vars kdb_max_commands vardecl_kdb_main.c 0 9529 NULL
++legacy_count_vardecl_pty_c_9908_vars legacy_count vardecl_pty.c 0 9908 NULL
++max_ptlrpcds_vardecl_ptlrpcd_c_9939_vars max_ptlrpcds vardecl_ptlrpcd.c 0 9939 NULL
++read_buffer_size_vardecl_legousbtower_c_10184_vars read_buffer_size vardecl_legousbtower.c 0 10184 NULL
++agg_buf_sz_vardecl_r8152_c_10254_vars agg_buf_sz vardecl_r8152.c 0 10254 NULL
++dma_rx_num_vardecl_altera_tse_main_c_10728_vars dma_rx_num vardecl_altera_tse_main.c 0 10728 NULL
++default_rds_buf_vardecl_fmdrv_common_c_11072_vars default_rds_buf vardecl_fmdrv_common.c 0 11072 NULL
++snd_efw_resp_buf_size_vardecl_11291_vars snd_efw_resp_buf_size vardecl 0 11291 NULL
++_max_pnode_vardecl_x2apic_uv_x_c_11492_vars _max_pnode vardecl_x2apic_uv_x.c 0 11492 NULL
++slave_num_vardecl_shdma_base_c_11603_vars slave_num vardecl_shdma-base.c 0 11603 NULL
++c4iw_wr_log_size_order_vardecl_device_c_13134_vars c4iw_wr_log_size_order vardecl_device.c 0 13134 NULL
++max_sets_vardecl_ip_set_core_c_13393_vars max_sets vardecl_ip_set_core.c 0 13393 NULL
++sysctl_perf_event_max_contexts_per_stack_vardecl_13620_vars sysctl_perf_event_max_contexts_per_stack vardecl 0 13620 NULL
++buffer_pos_vardecl_event_buffer_c_13658_vars buffer_pos vardecl_event_buffer.c 0 13658 NULL
++ipr_max_devs_vardecl_ipr_c_13921_vars ipr_max_devs vardecl_ipr.c 0 13921 NULL
++pasid_limit_vardecl_kfd_pasid_c_14334_vars pasid_limit vardecl_kfd_pasid.c 0 14334 NULL
++sel_end_vardecl_selection_c_14469_vars sel_end vardecl_selection.c 0 14469 NULL
++osst_max_sg_segs_vardecl_osst_c_14954_vars osst_max_sg_segs vardecl_osst.c 0 14954 NULL
++n_barrier_cbs_vardecl_rcutorture_c_16575_vars n_barrier_cbs vardecl_rcutorture.c 0 16575 NULL
++csio_fcoe_rnodes_vardecl_16778_vars csio_fcoe_rnodes vardecl 0 16778 NULL
++esrt_data_size_vardecl_esrt_c_16842_vars esrt_data_size vardecl_esrt.c 0 16842 NULL
++cmdlog_vardecl_ipw2200_c_18024_vars cmdlog vardecl_ipw2200.c 0 18024 NULL
++nreaders_vardecl_rcutorture_c_18862_vars nreaders vardecl_rcutorture.c 0 18862 NULL
++num_freq_table_entries_vardecl_sfi_cpufreq_c_18898_vars num_freq_table_entries vardecl_sfi-cpufreq.c 0 18898 NULL
++ndoms_cur_vardecl_core_c_19519_vars ndoms_cur vardecl_core.c 0 19519 NULL
++nwriters_vardecl_rcuperf_c_20234_vars nwriters vardecl_rcuperf.c 0 20234 NULL
++amdgpu_sched_jobs_vardecl_20778_vars amdgpu_sched_jobs vardecl 0 20778 NULL
++major_vardecl_dm_c_21185_vars major vardecl_dm.c 0 21185 NULL
++acpi_current_gpe_count_vardecl_21469_vars acpi_current_gpe_count vardecl 0 21469 NULL
++uv_possible_blades_vardecl_21579_vars uv_possible_blades vardecl 0 21579 NULL
++max_nr_vardecl_exynos_combiner_c_21761_vars max_nr vardecl_exynos-combiner.c 0 21761 NULL
++xprt_max_tcp_slot_table_entries_vardecl_xprtsock_c_21949_vars xprt_max_tcp_slot_table_entries vardecl_xprtsock.c 0 21949 NULL
++ch_count_vardecl_ib_srp_c_22190_vars ch_count vardecl_ib_srp.c 0 22190 NULL
++nreaders_stress_vardecl_locktorture_c_22217_vars nreaders_stress vardecl_locktorture.c 0 22217 NULL
++_major_vardecl_dm_c_23233_vars _major vardecl_dm.c 0 23233 NULL
++nreaders_vardecl_rcuperf_c_23383_vars nreaders vardecl_rcuperf.c 0 23383 NULL
++nr_node_ids_vardecl_23803_vars nr_node_ids vardecl 0 23803 NULL
++usbfs_snoop_max_vardecl_devio_c_23994_vars usbfs_snoop_max vardecl_devio.c 0 23994 NULL
++st_max_sg_segs_vardecl_st_c_24474_vars st_max_sg_segs vardecl_st.c 0 24474 NULL
++sdebug_sector_size_vardecl_scsi_debug_c_24855_vars sdebug_sector_size vardecl_scsi_debug.c 0 24855 NULL
++accent_table_size_vardecl_24972_vars accent_table_size vardecl 0 24972 NULL
++grefs_per_grant_frame_vardecl_grant_table_c_25386_vars grefs_per_grant_frame vardecl_grant-table.c 0 25386 NULL
++num_sg_lists_vardecl_25860_vars num_sg_lists vardecl 0 25860 NULL
++nfsd_drc_max_mem_vardecl_26544_vars nfsd_drc_max_mem vardecl 0 26544 NULL
++unconst_vardecl_lkdtm_usercopy_c_27400_vars unconst vardecl_lkdtm_usercopy.c 0 27400 NULL
++write_buffer_size_vardecl_ldusb_c_29393_vars write_buffer_size vardecl_ldusb.c 0 29393 NULL
++nfakewriters_vardecl_rcutorture_c_30320_vars nfakewriters vardecl_rcutorture.c 0 30320 NULL
++ip_list_hash_size_vardecl_xt_recent_c_30522_vars ip_list_hash_size vardecl_xt_recent.c 0 30522 NULL
++xen_blkif_max_segments_vardecl_xen_blkfront_c_30543_vars xen_blkif_max_segments vardecl_xen-blkfront.c 0 30543 NULL
++DAC960_ControllerCount_vardecl_DAC960_c_31089_vars DAC960_ControllerCount vardecl_DAC960.c 0 31089 NULL
++first_slot_vardecl_cpcihp_generic_c_32129_vars first_slot vardecl_cpcihp_generic.c 0 32129 NULL
++prof_shift_vardecl_profile_c_32143_vars prof_shift vardecl_profile.c 0 32143 NULL
++snd_buf_bytes_vardecl_usbatm_c_32457_vars snd_buf_bytes vardecl_usbatm.c 0 32457 NULL
++num_rcv_urbs_vardecl_usbatm_c_32830_vars num_rcv_urbs vardecl_usbatm.c 0 32830 NULL
++_min_socket_vardecl_x2apic_uv_x_c_33176_vars _min_socket vardecl_x2apic_uv_x.c 0 33176 NULL
++num_ae_requests_vardecl_33594_vars num_ae_requests vardecl 0 33594 NULL
++blkdev_minors_vardecl_dev_c_34365_vars blkdev_minors vardecl_dev.c 0 34365 NULL
++cpu_npartitions_vardecl_linux_cpu_c_34622_vars cpu_npartitions vardecl_linux-cpu.c 0 34622 NULL
++at_max_vardecl_35692_vars at_max vardecl 0 35692 NULL
++mod_num_sdma_vardecl_35721_vars mod_num_sdma vardecl 0 35721 NULL
++nwriters_stress_vardecl_locktorture_c_36080_vars nwriters_stress vardecl_locktorture.c 0 36080 NULL
++sdma_descq_cnt_vardecl_sdma_c_36526_vars sdma_descq_cnt vardecl_sdma.c 0 36526 NULL
++max_sg_segs_vardecl_st_c_36551_vars max_sg_segs vardecl_st.c 0 36551 NULL
++null_major_vardecl_null_blk_c_36718_vars null_major vardecl_null_blk.c 0 36718 NULL
++bufsiz_vardecl_spidev_c_36763_vars bufsiz vardecl_spidev.c 0 36763 NULL
++netdev_flow_limit_table_len_vardecl_36765_vars netdev_flow_limit_table_len vardecl 0 36765 NULL
++uwb_est_size_vardecl_est_c_36881_vars uwb_est_size vardecl_est.c 0 36881 NULL
++ncpus_vardecl_aoecmd_c_37517_vars ncpus vardecl_aoecmd.c 0 37517 NULL
++nrpacks_vardecl_usbusx2yaudio_c_38056_vars nrpacks vardecl_usbusx2yaudio.c 0 38056 NULL
++fb_bpp_vardecl_udl_fb_c_38075_vars fb_bpp vardecl_udl_fb.c 0 38075 NULL
++tcp_metrics_hash_log_vardecl_tcp_metrics_c_38657_vars tcp_metrics_hash_log vardecl_tcp_metrics.c 0 38657 NULL
++max_num_clients_vardecl_ntb_transport_c_38745_vars max_num_clients vardecl_ntb_transport.c 0 38745 NULL
++sg_buffers_vardecl_dmatest_c_38796_vars sg_buffers vardecl_dmatest.c 0 38796 NULL
++pci_ring_size_vardecl_pci_hyperv_c_39161_vars pci_ring_size vardecl_pci-hyperv.c 0 39161 NULL
++sel_start_vardecl_selection_c_39245_vars sel_start vardecl_selection.c 0 39245 NULL
++hash_table_size_vardecl_39253_vars hash_table_size vardecl 0 39253 NULL
++pktdev_major_vardecl_pktcdvd_c_39506_vars pktdev_major vardecl_pktcdvd.c 0 39506 NULL
++defcmd_set_count_vardecl_kdb_main_c_39817_vars defcmd_set_count vardecl_kdb_main.c 0 39817 NULL
++allocation_floor_vardecl_dell_rbu_c_40106_vars allocation_floor vardecl_dell_rbu.c 0 40106 NULL
++memcg_nr_cache_ids_vardecl_40280_vars memcg_nr_cache_ids vardecl 0 40280 NULL
++rose_ndevs_vardecl_af_rose_c_40602_vars rose_ndevs vardecl_af_rose.c 0 40602 NULL
++xprt_tcp_slot_table_entries_vardecl_xprtsock_c_40779_vars xprt_tcp_slot_table_entries vardecl_xprtsock.c 0 40779 NULL
++major_nr_vardecl_umem_c_41471_vars major_nr vardecl_umem.c 0 41471 NULL
++pcpu_unit_pages_vardecl_percpu_c_41525_vars pcpu_unit_pages vardecl_percpu.c 0 41525 NULL
++nr_online_nodes_vardecl_41549_vars nr_online_nodes vardecl 0 41549 NULL
++xp_max_npartitions_vardecl_41728_vars xp_max_npartitions vardecl 0 41728 NULL
++nr_desc_prm_vardecl_hidma_c_42371_vars nr_desc_prm vardecl_hidma.c 0 42371 NULL
++prof_len_vardecl_profile_c_42405_vars prof_len vardecl_profile.c 0 42405 NULL
++amdgpu_vm_block_size_vardecl_42475_vars amdgpu_vm_block_size vardecl 0 42475 NULL
++mtu_max_vardecl_42563_vars mtu_max vardecl 0 42563 NULL
++hfi1_sdma_comp_ring_size_vardecl_user_sdma_c_42743_vars hfi1_sdma_comp_ring_size vardecl_user_sdma.c 0 42743 NULL
++phonet_rxq_size_vardecl_f_phonet_c_43017_vars phonet_rxq_size vardecl_f_phonet.c 0 43017 NULL
++nr_efi_runtime_map_vardecl_runtime_map_c_43216_vars nr_efi_runtime_map vardecl_runtime-map.c 0 43216 NULL
++rds_buf_vardecl_radio_si470x_usb_c_43439_vars rds_buf vardecl_radio-si470x-usb.c 0 43439 NULL
++write_buffer_size_vardecl_legousbtower_c_45062_vars write_buffer_size vardecl_legousbtower.c 0 45062 NULL
++xpc_nasid_mask_nbytes_vardecl_xpc_partition_c_45405_vars xpc_nasid_mask_nbytes vardecl_xpc_partition.c 0 45405 NULL
++num_fault_mutexes_vardecl_hugetlb_c_45857_vars num_fault_mutexes vardecl_hugetlb.c 0 45857 NULL
++qxl_num_crtc_vardecl_46583_vars qxl_num_crtc vardecl 0 46583 NULL
++mc_groups_longs_vardecl_genetlink_c_46774_vars mc_groups_longs vardecl_genetlink.c 0 46774 NULL
++ipoib_recvq_size_vardecl_46904_vars ipoib_recvq_size vardecl 0 46904 NULL
++rds_buf_vardecl_radio_si470x_i2c_c_48053_vars rds_buf vardecl_radio-si470x-i2c.c 0 48053 NULL
++osst_max_dev_vardecl_osst_c_48086_vars osst_max_dev vardecl_osst.c 0 48086 NULL
++ramoops_console_size_vardecl_ram_c_48215_vars ramoops_console_size vardecl_ram.c 0 48215 NULL
++num_requests_vardecl_48964_vars num_requests vardecl 0 48964 NULL
++ff_nr_dev_vardecl_fmc_fakedev_c_49085_vars ff_nr_dev vardecl_fmc-fakedev.c 0 49085 NULL
++nr_ndevs_vardecl_af_netrom_c_49435_vars nr_ndevs vardecl_af_netrom.c 0 49435 NULL
++agg_wsize_vardecl_50735_vars agg_wsize vardecl 0 50735 NULL
++rcv_buf_bytes_vardecl_usbatm_c_51558_vars rcv_buf_bytes vardecl_usbatm.c 0 51558 NULL
++num_var_ranges_vardecl_51769_vars num_var_ranges vardecl 0 51769 NULL
++num_snd_urbs_vardecl_usbatm_c_52685_vars num_snd_urbs vardecl_usbatm.c 0 52685 NULL
++xpc_nasid_mask_nlongs_vardecl_53252_vars xpc_nasid_mask_nlongs vardecl 0 53252 NULL
++CIFSMaxBufSize_vardecl_53372_vars CIFSMaxBufSize vardecl 0 53372 NULL
++ramoops_ecc_vardecl_ram_c_53486_vars ramoops_ecc vardecl_ram.c 0 53486 NULL
++max_dev_vardecl_osst_c_53523_vars max_dev vardecl_osst.c 0 53523 NULL
++dma_txqueue_sz_vardecl_tsi721_dma_c_53597_vars dma_txqueue_sz vardecl_tsi721_dma.c 0 53597 NULL
++ramoops_pmsg_size_vardecl_ram_c_53601_vars ramoops_pmsg_size vardecl_ram.c 0 53601 NULL
++max_data_size_vardecl_hsi_char_c_53736_vars max_data_size vardecl_hsi_char.c 0 53736 NULL
++storvsc_ringbuffer_size_vardecl_storvsc_drv_c_54060_vars storvsc_ringbuffer_size vardecl_storvsc_drv.c 0 54060 NULL
++xprt_udp_slot_table_entries_vardecl_xprtsock_c_56096_vars xprt_udp_slot_table_entries vardecl_xprtsock.c 0 56096 NULL
++test_buf_size_vardecl_dmatest_c_56686_vars test_buf_size vardecl_dmatest.c 0 56686 NULL
++part_shift_vardecl_loop_c_57103_vars part_shift vardecl_loop.c 0 57103 NULL
++nr_cpu_ids_vardecl_57399_vars nr_cpu_ids vardecl 0 57399 NULL
++ql2xmaxqueues_vardecl_57653_vars ql2xmaxqueues vardecl 0 57653 NULL
++mdp_major_vardecl_57774_vars mdp_major vardecl 0 57774 NULL
++acpi_gbl_integer_byte_width_vardecl_58054_vars acpi_gbl_integer_byte_width vardecl 0 58054 NULL
++window_vardecl_tcp_cdg_c_58396_vars window vardecl_tcp_cdg.c 0 58396 NULL
++bufsize_vardecl_tcp_probe_c_58414_vars bufsize vardecl_tcp_probe.c 0 58414 NULL
++ebcnt_vardecl_torturetest_c_58475_vars ebcnt vardecl_torturetest.c 0 58475 NULL
++ramoops_ftrace_size_vardecl_ram_c_58686_vars ramoops_ftrace_size vardecl_ram.c 0 58686 NULL
++pcpu_nr_units_vardecl_percpu_c_59323_vars pcpu_nr_units vardecl_percpu.c 0 59323 NULL
++resultsize_vardecl_floppy_c_59525_vars resultsize vardecl_floppy.c 0 59525 NULL
++perdev_minors_vardecl_block_c_60809_vars perdev_minors vardecl_block.c 0 60809 NULL
++fbcon_softback_size_vardecl_fbcon_c_61184_vars fbcon_softback_size vardecl_fbcon.c 0 61184 NULL
++dm_ring_size_vardecl_hv_balloon_c_63071_vars dm_ring_size vardecl_hv_balloon.c 0 63071 NULL
++_min_pnode_vardecl_x2apic_uv_x_c_63577_vars _min_pnode vardecl_x2apic_uv_x.c 0 63577 NULL
++nbds_max_vardecl_nbd_c_63801_vars nbds_max vardecl_nbd.c 0 63801 NULL
++__max_logical_packages_vardecl_64002_vars __max_logical_packages vardecl 0 64002 NULL
++ubiblock_major_vardecl_block_c_64105_vars ubiblock_major vardecl_block.c 0 64105 NULL
++ff_nr_eeprom_vardecl_fmc_fakedev_c_64224_vars ff_nr_eeprom vardecl_fmc-fakedev.c 0 64224 NULL
++srp_sg_tablesize_vardecl_ib_srp_c_64692_vars srp_sg_tablesize vardecl_ib_srp.c 0 64692 NULL
++wear_eb_count_vardecl_nandsim_c_65291_vars wear_eb_count vardecl_nandsim.c 0 65291 NULL
++max_pfn_vardecl_65317_vars max_pfn vardecl 0 65317 NULL
++fpu_user_xstate_size_vardecl_65370_vars fpu_user_xstate_size vardecl 0 65370 NULL
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/generate_size_overflow_hash.sh b/scripts/gcc-plugins/size_overflow_plugin/generate_size_overflow_hash.sh
+new file mode 100644
+index 0000000..be9724d
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/generate_size_overflow_hash.sh
+@@ -0,0 +1,103 @@
++#!/bin/bash
++
++# This script generates the hash table (size_overflow_hash.h) for the size_overflow gcc plugin (size_overflow_plugin.c).
++
++header1="size_overflow_hash.h"
++database="size_overflow_hash.data"
++n=65536
++hashtable_name="size_overflow_hash"
++
++usage() {
++cat <<EOF
++usage: $0 options
++OPTIONS:
++        -h|--help               help
++      -o                      header file
++      -d                      database file
++      -n                      hash array size
++      -s                      name of the hash table
++EOF
++    return 0
++}
++
++while true
++do
++    case "$1" in
++    -h|--help)        usage && exit 0;;
++    -n)               n=$2; shift 2;;
++    -o)               header1="$2"; shift 2;;
++    -d)               database="$2"; shift 2;;
++    -s)               hashtable_name="$2"; shift 2;;
++    --)               shift 1; break ;;
++     *)               break ;;
++    esac
++done
++
++create_defines() {
++      for i in `seq 0 31`
++      do
++              echo -e "#define PARAM"$i" (1U << "$i")" >> "$header1"
++      done
++      echo >> "$header1"
++}
++
++create_structs() {
++      rm -f "$header1"
++
++      create_defines
++
++      cat "$database" | while read data
++      do
++              data_array=($data)
++              struct_hash_name="${data_array[0]}"
++              funcn="${data_array[1]}"
++              context="${data_array[2]}"
++              params="${data_array[3]}"
++              next="${data_array[5]}"
++
++              echo "const struct size_overflow_hash $struct_hash_name = {" >> "$header1"
++
++              echo -e "\t.next\t= $next,\n\t.name\t= \"$funcn\",\n\t.context\t= \"$context\"," >> "$header1"
++              echo -en "\t.param\t= " >> "$header1"
++              line=
++              for param_num in ${params//-/ };
++              do
++                      line="${line}PARAM"$param_num"|"
++              done
++
++              echo -e "${line%?},\n};\n" >> "$header1"
++      done
++}
++
++create_headers() {
++      echo "const struct size_overflow_hash * const $hashtable_name[$n] = {" >> "$header1"
++}
++
++create_array_elements() {
++      index=0
++      grep -v "nohasharray" $database | sort -n -k 5 | while read data
++      do
++              data_array=($data)
++              i="${data_array[4]}"
++              hash="${data_array[0]}"
++              while [[ $index -lt $i ]]
++              do
++                      echo -e "\t["$index"]\t= NULL," >> "$header1"
++                      index=$(($index + 1))
++              done
++              index=$(($index + 1))
++              echo -e "\t["$i"]\t= &"$hash"," >> "$header1"
++      done
++      echo '};' >> $header1
++}
++
++size_overflow_plugin_dir=`dirname $header1`
++if [ "$size_overflow_plugin_dir" != '.' ]; then
++      mkdir -p "$size_overflow_plugin_dir" 2> /dev/null
++fi
++
++create_structs
++create_headers
++create_array_elements
++
++exit 0
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/insert_size_overflow_asm.c b/scripts/gcc-plugins/size_overflow_plugin/insert_size_overflow_asm.c
+new file mode 100644
+index 0000000..9fb6a1a
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/insert_size_overflow_asm.c
+@@ -0,0 +1,374 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++// Data for the size_overflow asm stmt
++struct asm_data {
++      // call or return stmt with our attributes
++      gimple target_stmt;
++      // def_stmt of the marked arg
++      gimple def_stmt;
++      // size_overflow asm rhs
++      tree input;
++      // the output (lhs) of the size_overflow asm is the marked arg
++      tree output;
++      // marked arg number (0 for return values)
++      unsigned int argnum;
++      // intentional mark type
++      enum intentional_mark intentional_mark;
++};
++
++static void __unused print_asm_data(struct asm_data *asm_data)
++{
++      fprintf(stderr, "-----------------------\nprint_asm_data:\n");
++
++      fprintf(stderr, "def_stmt\n");
++      debug_gimple_stmt(asm_data->def_stmt);
++      fprintf(stderr, "target_stmt\n");
++      debug_gimple_stmt(asm_data->target_stmt);
++      fprintf(stderr, "output\n");
++      debug_tree(asm_data->output);
++      fprintf(stderr, "input\n");
++      debug_tree(asm_data->input);
++}
++
++static const char *convert_mark_to_str(enum intentional_mark mark)
++{
++      switch (mark) {
++      case MARK_NO:
++              return OK_ASM_STR;
++      case MARK_YES:
++              return YES_ASM_STR;
++      case MARK_END_INTENTIONAL:
++              return END_INTENTIONAL_ASM_STR;
++      case MARK_TURN_OFF:
++              return TURN_OFF_ASM_STR;
++      }
++      gcc_unreachable();
++}
++
++static char *create_asm_comment(struct asm_data *asm_data, const char *mark_str)
++{
++      const char *fn_name;
++      char *asm_comment;
++      unsigned int len;
++
++      if (gimple_code(asm_data->target_stmt) == GIMPLE_RETURN)
++              fn_name = DECL_NAME_POINTER(current_function_decl);
++      else
++              fn_name = DECL_NAME_POINTER(gimple_call_fndecl(asm_data->target_stmt));
++
++      len = asprintf(&asm_comment, "%s %s %u", mark_str, fn_name, asm_data->argnum);
++      gcc_assert(len > 0);
++
++      return asm_comment;
++}
++
++#if BUILDING_GCC_VERSION <= 4007
++static VEC(tree, gc) *create_asm_io_list(tree string, tree io)
++#else
++static vec<tree, va_gc> *create_asm_io_list(tree string, tree io)
++#endif
++{
++      tree list;
++#if BUILDING_GCC_VERSION <= 4007
++      VEC(tree, gc) *vec_list = NULL;
++#else
++      vec<tree, va_gc> *vec_list = NULL;
++#endif
++
++      list = build_tree_list(NULL_TREE, string);
++      list = chainon(NULL_TREE, build_tree_list(list, io));
++#if BUILDING_GCC_VERSION <= 4007
++      VEC_safe_push(tree, gc, vec_list, list);
++#else
++      vec_safe_push(vec_list, list);
++#endif
++      return vec_list;
++}
++
++static void create_so_asm_stmt(struct asm_data *asm_data)
++{
++      char *asm_comment;
++      const char *mark_str;
++      gasm *asm_stmt;
++      gimple_stmt_iterator gsi;
++      tree str_input, str_output;
++#if BUILDING_GCC_VERSION <= 4007
++      VEC(tree, gc) *input = NULL, *output = NULL;
++#else
++      vec<tree, va_gc> *input = NULL, *output = NULL;
++#endif
++
++      mark_str = convert_mark_to_str(asm_data->intentional_mark);
++      asm_comment = create_asm_comment(asm_data, mark_str);
++
++      str_input = build_string(2, "0");
++      input = create_asm_io_list(str_input, asm_data->input);
++      str_output = build_string(4, "=rm");
++      output = create_asm_io_list(str_output, asm_data->output);
++
++      asm_stmt = as_a_gasm(gimple_build_asm_vec(asm_comment, input, output, NULL, NULL));
++      gimple_asm_set_volatile(asm_stmt, true);
++
++      gsi = gsi_for_stmt(asm_data->def_stmt);
++      gsi_insert_after(&gsi, asm_stmt, GSI_NEW_STMT);
++
++      SSA_NAME_DEF_STMT(asm_data->output) = asm_stmt;
++
++      free(asm_comment);
++}
++
++static void check_size_overflow_asm(struct asm_data *asm_data)
++{
++      enum intentional_mark old_intentional_mark = get_so_asm_type(asm_data->def_stmt);
++
++      if (old_intentional_mark == asm_data->intentional_mark)
++              return;
++      if (asm_data->intentional_mark == MARK_NO)
++              return;
++
++      print_intentional_mark(old_intentional_mark);
++      print_intentional_mark(asm_data->intentional_mark);
++      gcc_unreachable();
++}
++
++static tree get_so_asm_output(struct asm_data *asm_data)
++{
++      gimple stmt = asm_data->target_stmt;
++      unsigned int argnum = asm_data->argnum;
++
++      switch (gimple_code(stmt)) {
++      case GIMPLE_RETURN:
++              gcc_assert(argnum == 0);
++              return gimple_return_retval(as_a_greturn(stmt));
++      case GIMPLE_CALL:
++              gcc_assert(argnum != 0);
++              gcc_assert(gimple_call_num_args(stmt) >= argnum);
++              return gimple_call_arg(stmt, argnum - 1);
++      default:
++              debug_gimple_stmt(stmt);
++              gcc_unreachable();
++      }
++}
++
++static tree get_so_asm_input(struct asm_data *asm_data)
++{
++      gassign *assign;
++      tree output_type, new_var;
++      gimple_stmt_iterator gsi;
++
++      output_type = TREE_TYPE(asm_data->output);
++      new_var = create_new_var(output_type);
++
++      assign = gimple_build_assign(new_var, asm_data->output);
++      gimple_assign_set_lhs(assign, make_ssa_name(new_var, assign));
++
++      gsi = gsi_for_stmt(asm_data->target_stmt);
++      gsi_insert_before(&gsi, assign, GSI_NEW_STMT);
++
++      asm_data->def_stmt = assign;
++
++      new_var = create_new_var(output_type);
++      asm_data->output = make_ssa_name(new_var, asm_data->target_stmt);
++
++      return gimple_assign_lhs(assign);
++}
++
++static void set_so_asm_input_target_stmt(struct asm_data *asm_data)
++{
++      switch (gimple_code(asm_data->target_stmt)) {
++      case GIMPLE_CALL:
++              gimple_call_set_arg(asm_data->target_stmt, asm_data->argnum - 1, asm_data->output);
++              break;
++      case GIMPLE_RETURN:
++              gimple_return_set_retval(as_a_greturn(asm_data->target_stmt), asm_data->output);
++              break;
++      default:
++              debug_gimple_stmt(asm_data->target_stmt);
++              gcc_unreachable();
++      }
++
++      update_stmt(asm_data->def_stmt);
++}
++
++/* This is the gimple part of searching for a missing size_overflow attribute. If the intentional_overflow attribute type
++ * is of the right kind create the appropriate size_overflow asm stmts:
++ *   __asm__("# size_overflow MARK_END_INTENTIONAL" : =rm" D.3344_8 : "0" cicus.4_16);
++ *   __asm__("# size_overflow MARK_NO" : =rm" cicus.4_16 : "0" size_1(D));
++ */
++static void __insert_size_overflow_asm(gimple stmt, unsigned int argnum, enum intentional_mark intentional_mark)
++{
++      struct asm_data asm_data;
++
++      asm_data.target_stmt = stmt;
++      asm_data.argnum = argnum;
++      asm_data.intentional_mark = intentional_mark;
++
++      asm_data.output = get_so_asm_output(&asm_data);
++      if (asm_data.output == NULL_TREE)
++              return;
++      if (is_gimple_constant(asm_data.output))
++              return;
++      if (skip_types(asm_data.output))
++              return;
++
++      asm_data.def_stmt = get_def_stmt(asm_data.output);
++      if (is_size_overflow_asm(asm_data.def_stmt)) {
++              check_size_overflow_asm(&asm_data);
++              return;
++      }
++
++      asm_data.input = get_so_asm_input(&asm_data);
++
++      create_so_asm_stmt(&asm_data);
++      set_so_asm_input_target_stmt(&asm_data);
++
++      update_stmt(asm_data.def_stmt);
++      update_stmt(asm_data.target_stmt);
++}
++
++// Determine the correct arg index and arg and insert the asm stmt to mark the stmt.
++static void insert_so_asm_by_so_attr(gimple stmt, unsigned int orig_argnum)
++{
++      if (orig_argnum == 0 && gimple_code(stmt) == GIMPLE_RETURN) {
++              __insert_size_overflow_asm(stmt, 0, MARK_NO);
++              return;
++      }
++
++      if (orig_argnum != 0 && gimple_code(stmt) == GIMPLE_CALL)
++              __insert_size_overflow_asm(stmt, orig_argnum, MARK_NO);
++}
++
++// If a function arg or the return value is marked by the size_overflow attribute then set its index in the array.
++static void set_argnum_attribute(const_tree attr, bool *argnums)
++{
++      unsigned int argnum;
++      tree attr_value;
++
++      gcc_assert(attr);
++      for (attr_value = TREE_VALUE(attr); attr_value; attr_value = TREE_CHAIN(attr_value)) {
++              argnum = (unsigned int)tree_to_uhwi(TREE_VALUE(attr_value));
++              argnums[argnum] = true;
++      }
++}
++
++// Check whether the arguments are marked by the size_overflow attribute.
++static void search_interesting_so_args(tree fndecl, bool *argnums)
++{
++      const_tree attr;
++
++      attr = get_attribute("size_overflow", fndecl);
++      if (attr)
++              set_argnum_attribute(attr, argnums);
++}
++
++static enum intentional_mark handle_intentional_attr(gimple stmt, unsigned int argnum)
++{
++      enum intentional_mark mark;
++      struct fn_raw_data raw_data;
++
++      mark = check_intentional_attribute(stmt, argnum);
++      if (mark == MARK_NO)
++              return MARK_NO;
++
++      initialize_raw_data(&raw_data);
++      raw_data.num = argnum;
++
++      if (gimple_code(stmt) == GIMPLE_RETURN)
++              raw_data.decl = current_function_decl;
++      else
++              raw_data.decl = gimple_call_fndecl(stmt);
++
++      if (raw_data.decl == NULL_TREE && !get_size_overflow_hash_entry_tree(&raw_data, DISABLE_SIZE_OVERFLOW))
++              return MARK_NO;
++      __insert_size_overflow_asm(stmt, argnum, mark);
++      return mark;
++}
++
++static void handle_size_overflow_attr_ret(greturn *stmt)
++{
++      enum intentional_mark mark;
++      bool orig_argnums[MAX_PARAM + 1] = {false};
++
++      search_interesting_so_args(get_orig_fndecl(current_function_decl), (bool *) &orig_argnums);
++
++      mark = handle_intentional_attr(stmt, 0);
++      if (mark == MARK_NO && orig_argnums[0])
++              insert_so_asm_by_so_attr(stmt, 0);
++}
++
++// If the argument(s) of the callee function are marked by an attribute then mark the call stmt with an asm stmt
++static void handle_size_overflow_attr_call(gcall *stmt)
++{
++      tree fndecl;
++      unsigned int argnum;
++      bool orig_argnums[MAX_PARAM + 1] = {false};
++
++      fndecl = get_interesting_orig_fndecl_from_stmt(stmt);
++      if (fndecl == NULL_TREE)
++              return;
++      if (DECL_BUILT_IN(fndecl))
++              return;
++
++      search_interesting_so_args(fndecl, (bool *) &orig_argnums);
++
++      for (argnum = 1; argnum <= gimple_call_num_args(stmt); argnum++) {
++              enum intentional_mark mark = handle_intentional_attr(stmt, argnum);
++
++              if (mark == MARK_NO && !is_vararg(fndecl, argnum) && orig_argnums[argnum])
++                      insert_so_asm_by_so_attr(stmt, argnum);
++      }
++}
++
++// Iterate over all the stmts and search for call stmts and mark them if they have size_overflow attribute
++static unsigned int insert_size_overflow_asm_execute(void)
++{
++      basic_block bb;
++
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      gimple stmt = gsi_stmt(gsi);
++
++                      if (is_gimple_call(stmt))
++                              handle_size_overflow_attr_call(as_a_gcall(stmt));
++                      else if (gimple_code(stmt) == GIMPLE_RETURN)
++                              handle_size_overflow_attr_ret(as_a_greturn(stmt));
++              }
++      }
++      return 0;
++}
++
++/*
++ * A lot of functions get inlined before the ipa passes so after the build_ssa gimple pass
++ * this pass inserts asm stmts to mark the interesting args
++ * that the ipa pass will detect and insert the size overflow checks for.
++ */
++
++#define PASS_NAME insert_size_overflow_asm
++
++#define NO_GATE
++
++#define PROPERTIES_REQUIRED PROP_cfg
++#define TODO_FLAGS_FINISH TODO_dump_func | TODO_verify_ssa | TODO_verify_stmts | TODO_remove_unused_locals | TODO_update_ssa_no_phi | TODO_cleanup_cfg | TODO_ggc_collect | TODO_verify_flow
++
++#include "gcc-generate-gimple-pass.h"
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/intentional_overflow.c b/scripts/gcc-plugins/size_overflow_plugin/intentional_overflow.c
+new file mode 100644
+index 0000000..ff572b3
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/intentional_overflow.c
+@@ -0,0 +1,1171 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++static enum intentional_mark walk_use_def(gimple_set *visited, const_tree lhs);
++
++static const char *get_asm_string(const gasm *stmt)
++{
++      if (stmt)
++              return gimple_asm_string(stmt);
++      return NULL;
++}
++
++tree get_size_overflow_asm_input(const gasm *stmt)
++{
++      gcc_assert(gimple_asm_ninputs(stmt) != 0);
++      return TREE_VALUE(gimple_asm_input_op(stmt, 0));
++}
++
++bool is_size_overflow_insert_check_asm(const gasm *stmt)
++{
++      const char *str;
++
++      if (!is_size_overflow_asm(stmt))
++              return false;
++
++      str = get_asm_string(stmt);
++      if (!str)
++              return false;
++      return !strncmp(str, OK_ASM_STR, sizeof(OK_ASM_STR) - 1);
++}
++
++bool is_size_overflow_asm(const_gimple stmt)
++{
++      const char *str;
++
++      if (!stmt)
++              return false;
++      if (gimple_code(stmt) != GIMPLE_ASM)
++              return false;
++
++      str = get_asm_string(as_a_const_gasm(stmt));
++      if (!str)
++              return false;
++      return !strncmp(str, SO_ASM_STR, sizeof(SO_ASM_STR) - 1);
++}
++
++static bool is_size_overflow_intentional_asm_turn_off(const gasm *stmt)
++{
++      const char *str;
++
++      if (!is_size_overflow_asm(stmt))
++              return false;
++
++      str = get_asm_string(stmt);
++      if (!str)
++              return false;
++      return !strncmp(str, TURN_OFF_ASM_STR, sizeof(TURN_OFF_ASM_STR) - 1);
++}
++
++static bool is_size_overflow_intentional_asm_end(const gasm *stmt)
++{
++      const char *str;
++
++      if (!is_size_overflow_asm(stmt))
++              return false;
++
++      str = get_asm_string(stmt);
++      if (!str)
++              return false;
++      return !strncmp(str, END_INTENTIONAL_ASM_STR, sizeof(END_INTENTIONAL_ASM_STR) - 1);
++}
++
++/* Get the param of the intentional_overflow attribute.
++ *   * 0: MARK_END_INTENTIONAL
++ *   * 1..MAX_PARAM: MARK_YES
++ *   * -1: MARK_TURN_OFF
++ */
++static tree get_attribute_param(const_tree decl)
++{
++      const_tree attr;
++
++      if (decl == NULL_TREE)
++              return NULL_TREE;
++
++      attr = get_attribute("intentional_overflow", decl);
++      if (attr)
++              return TREE_VALUE(attr);
++      return NULL_TREE;
++}
++
++// MARK_TURN_OFF
++static bool is_turn_off_intentional_attr(const_tree decl)
++{
++      const_tree param_head;
++
++      param_head = get_attribute_param(decl);
++      if (param_head == NULL_TREE)
++              return false;
++
++      if (tree_to_shwi(TREE_VALUE(param_head)) == -1)
++              return true;
++      return false;
++}
++
++// MARK_END_INTENTIONAL
++static bool is_end_intentional_intentional_attr(const_tree decl)
++{
++      const_tree param_head;
++
++      param_head = get_attribute_param(decl);
++      if (param_head == NULL_TREE)
++              return false;
++
++      if (tree_to_shwi(TREE_VALUE(param_head)) == 0)
++              return true;
++      return false;
++}
++
++// MARK_YES
++static bool is_yes_intentional_attr(const_tree decl, unsigned int argnum)
++{
++      tree param, param_head;
++
++      if (argnum == 0)
++              return false;
++
++      param_head = get_attribute_param(decl);
++      for (param = param_head; param; param = TREE_CHAIN(param)) {
++              int argval = tree_to_shwi(TREE_VALUE(param));
++
++              if (argval <= 0)
++                      continue;
++              if (argnum == (unsigned int)argval)
++                      return true;
++      }
++      return false;
++}
++
++static void print_missing_intentional(enum intentional_mark callee_attr, enum intentional_mark caller_attr, tree decl, unsigned int argnum)
++{
++      const struct size_overflow_hash *hash;
++      struct fn_raw_data raw_data;
++//    location_t loc;
++
++      if (caller_attr == MARK_NO || caller_attr == MARK_END_INTENTIONAL || caller_attr == MARK_TURN_OFF)
++              return;
++
++      if (callee_attr == MARK_END_INTENTIONAL || callee_attr == MARK_YES)
++              return;
++
++      initialize_raw_data(&raw_data);
++      raw_data.decl = decl;
++      raw_data.num = argnum;
++      hash = get_size_overflow_hash_entry_tree(&raw_data, SIZE_OVERFLOW);
++      if (!hash)
++              return;
++
++// !!!
++//    loc = DECL_SOURCE_LOCATION(decl);
++//    inform(loc, "The intentional_overflow attribute is missing from +%s+%u+", DECL_NAME_POINTER(decl), argnum);
++}
++
++// Get the field decl of a component ref for intentional_overflow checking
++static const_tree search_field_decl(const_tree comp_ref)
++{
++      const_tree field = NULL_TREE;
++      unsigned int i, len = TREE_OPERAND_LENGTH(comp_ref);
++
++      for (i = 0; i < len; i++) {
++              field = TREE_OPERAND(comp_ref, i);
++              if (TREE_CODE(field) == FIELD_DECL)
++                      break;
++      }
++      gcc_assert(TREE_CODE(field) == FIELD_DECL);
++      return field;
++}
++
++/* Get the type of the intentional_overflow attribute of a node
++ *  * MARK_TURN_OFF
++ *  * MARK_YES
++ *  * MARK_NO
++ *  * MARK_END_INTENTIONAL
++ */
++enum intentional_mark get_intentional_attr_type(const_tree node)
++{
++      const_tree cur_decl;
++
++      if (node == NULL_TREE)
++              return MARK_NO;
++
++      switch (TREE_CODE(node)) {
++      case COMPONENT_REF:
++              cur_decl = search_field_decl(node);
++              if (is_turn_off_intentional_attr(cur_decl))
++                      return MARK_TURN_OFF;
++              if (is_end_intentional_intentional_attr(cur_decl))
++                      return MARK_YES;
++              break;
++      case PARM_DECL: {
++              unsigned int argnum;
++
++              cur_decl = get_orig_fndecl(current_function_decl);
++              argnum = find_arg_number_tree(node, cur_decl);
++              if (argnum == CANNOT_FIND_ARG)
++                      return MARK_NO;
++              if (is_yes_intentional_attr(cur_decl, argnum))
++                      return MARK_YES;
++              if (is_end_intentional_intentional_attr(cur_decl))
++                      return MARK_END_INTENTIONAL;
++              break;
++      }
++      case FUNCTION_DECL: {
++              const_tree fndecl = get_orig_fndecl(node);
++
++              if (is_turn_off_intentional_attr(fndecl))
++                      return MARK_TURN_OFF;
++              if (is_end_intentional_intentional_attr(fndecl))
++                      return MARK_END_INTENTIONAL;
++              break;
++      }
++      case FIELD_DECL:
++      case VAR_DECL:
++              if (is_end_intentional_intentional_attr(node))
++                      return MARK_END_INTENTIONAL;
++              if (is_turn_off_intentional_attr(node))
++                      return MARK_TURN_OFF;
++      default:
++              break;
++      }
++      return MARK_NO;
++}
++
++static enum intentional_mark walk_use_def_phi(gimple_set *visited, const_tree result)
++{
++      enum intentional_mark mark = MARK_NO;
++      gphi *phi = as_a_gphi(get_def_stmt(result));
++      unsigned int i, n = gimple_phi_num_args(phi);
++
++      pointer_set_insert(visited, phi);
++      for (i = 0; i < n; i++) {
++              tree arg = gimple_phi_arg_def(phi, i);
++
++              mark = walk_use_def(visited, arg);
++              if (mark != MARK_NO)
++                      return mark;
++      }
++
++      return mark;
++}
++
++static enum intentional_mark walk_use_def_binary(gimple_set *visited, const_tree lhs)
++{
++      enum intentional_mark mark;
++      tree rhs1, rhs2;
++      gassign *def_stmt = as_a_gassign(get_def_stmt(lhs));
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs2 = gimple_assign_rhs2(def_stmt);
++
++      mark = walk_use_def(visited, rhs1);
++      if (mark == MARK_NO)
++              return walk_use_def(visited, rhs2);
++      return mark;
++}
++
++enum intentional_mark get_so_asm_type(const_gimple stmt)
++{
++      const gasm *asm_stmt;
++
++      if (!stmt)
++              return MARK_NO;
++      if (!is_size_overflow_asm(stmt))
++              return MARK_NO;
++
++      asm_stmt = as_a_const_gasm(stmt);
++      if (is_size_overflow_insert_check_asm(asm_stmt))
++              return MARK_NO;
++      if (is_size_overflow_intentional_asm_turn_off(asm_stmt))
++              return MARK_TURN_OFF;
++      if (is_size_overflow_intentional_asm_end(asm_stmt))
++              return MARK_END_INTENTIONAL;
++      return MARK_YES;
++}
++
++static enum intentional_mark walk_use_def(gimple_set *visited, const_tree lhs)
++{
++      const_gimple def_stmt;
++
++      if (TREE_CODE(lhs) != SSA_NAME)
++              return get_intentional_attr_type(lhs);
++
++      def_stmt = get_def_stmt(lhs);
++      gcc_assert(def_stmt);
++
++      if (pointer_set_insert(visited, def_stmt))
++              return MARK_NO;
++
++      switch (gimple_code(def_stmt)) {
++      case GIMPLE_CALL:
++      case GIMPLE_RETURN:
++              return MARK_NO;
++      case GIMPLE_NOP:
++              return walk_use_def(visited, SSA_NAME_VAR(lhs));
++      case GIMPLE_ASM:
++              return get_so_asm_type(as_a_const_gasm(def_stmt));
++      case GIMPLE_PHI:
++              return walk_use_def_phi(visited, lhs);
++      case GIMPLE_ASSIGN:
++              switch (gimple_num_ops(def_stmt)) {
++              case 2:
++                      return walk_use_def(visited, gimple_assign_rhs1(def_stmt));
++              case 3:
++                      return walk_use_def_binary(visited, lhs);
++              }
++      default:
++              debug_gimple_stmt((gimple)def_stmt);
++              error("%s: unknown gimple code", __func__);
++              gcc_unreachable();
++      }
++}
++
++enum intentional_mark check_intentional_size_overflow_asm_and_attribute(const_tree var)
++{
++      enum intentional_mark mark;
++      gimple_set *visited;
++
++      if (is_turn_off_intentional_attr(get_orig_fndecl(current_function_decl)))
++              return MARK_TURN_OFF;
++
++      visited = pointer_set_create();
++      mark = walk_use_def(visited, var);
++      pointer_set_destroy(visited);
++
++      return mark;
++}
++
++/* Search intentional_overflow attribute on caller and on callee too.
++ * -1 / MARK_TURN_OFF: means that overflow checking is turned off inside the function and
++ *                     parameters aren't tracked backwards.
++ * 1..31 / MARK_YES: e.g., 4 means that overflow checking is turned off on the fourth parameter inside
++ *                   the function.
++ * 0 / MARK_END_INTENTIONAL: means that overflow checking is turned off on all the parameters of the function
++ *                           in all callers (on a structure field means that overflow checking is turned off
++ *                           in all expressions involving the given field).
++ */
++enum intentional_mark check_intentional_attribute(const_gimple stmt, unsigned int argnum)
++{
++      enum intentional_mark caller_mark, callee_mark;
++      tree fndecl;
++      const_tree orig_cur_fndecl, arg;
++
++      orig_cur_fndecl = get_orig_fndecl(current_function_decl);
++
++      // handle MARK_TURN_OFF early on the caller
++      if (is_turn_off_intentional_attr(orig_cur_fndecl))
++              return MARK_TURN_OFF;
++      // handle MARK_END_INTENTIONAL on the caller
++      if (is_end_intentional_intentional_attr(orig_cur_fndecl))
++              return MARK_END_INTENTIONAL;
++
++      switch (gimple_code(stmt)) {
++      case GIMPLE_RETURN:
++              gcc_assert(argnum == 0);
++              // for now ignore other intentional attribute types on returns
++              return MARK_NO;
++      case GIMPLE_CALL:
++              gcc_assert(argnum != 0);
++              gcc_assert(argnum <= gimple_call_num_args(stmt));
++              arg = gimple_call_arg(stmt, argnum - 1);
++              break;
++      default:
++              debug_gimple_stmt((gimple)stmt);
++              gcc_unreachable();
++      }
++
++      // XXX ideiglenesen 0-nal a fuggvenyen belul is ki van kapcsolva a dupolas, eddig igy mukodott a doksi ellenere
++      if (is_end_intentional_intentional_attr(orig_cur_fndecl))
++              return MARK_END_INTENTIONAL;
++
++      fndecl = get_interesting_orig_fndecl_from_stmt(as_a_const_gcall(stmt));
++      // handle MARK_TURN_OFF on the callee
++      if (is_turn_off_intentional_attr(fndecl))
++              return MARK_TURN_OFF;
++      // find a defining marked caller argument or struct field for arg
++      caller_mark = check_intentional_size_overflow_asm_and_attribute(arg);
++
++      // did we find a marked struct field?
++      if (caller_mark == MARK_TURN_OFF)
++              return MARK_TURN_OFF;
++
++      // handle MARK_END_INTENTIONAL on the callee
++      if (is_end_intentional_intentional_attr(fndecl))
++              callee_mark = MARK_END_INTENTIONAL;
++      // is it a marked callee parameter?
++      else if (is_yes_intentional_attr(fndecl, argnum))
++              callee_mark = MARK_YES;
++      else
++              callee_mark = MARK_NO;
++
++      // no intentional attribute found
++      if (callee_mark == MARK_NO && caller_mark == MARK_NO)
++              return MARK_NO;
++
++      // MARK_YES is meaningful only on the caller
++      if (caller_mark == MARK_NO && callee_mark == MARK_YES)
++              return MARK_NO;
++
++      // we found a code region where we don't want to duplicate
++      if (caller_mark == MARK_YES && callee_mark == MARK_END_INTENTIONAL)
++              return MARK_END_INTENTIONAL;
++
++      // ignore the intentional attribute on the callee if we didn't find a marked defining argument or struct field
++      if (caller_mark == MARK_NO && callee_mark == MARK_END_INTENTIONAL)
++              return MARK_NO;
++
++      // the callee is missing the intentional attribute (MARK_YES or MARK_END_INTENTIONAL)
++      if (caller_mark == MARK_YES) {
++              print_missing_intentional(callee_mark, caller_mark, fndecl, argnum);
++              return MARK_YES;
++      }
++
++      fprintf(stderr, "caller: %s callee: %s\n", DECL_NAME_POINTER(orig_cur_fndecl), DECL_NAME_POINTER(fndecl));
++      debug_gimple_stmt((gimple)stmt);
++      print_intentional_mark(caller_mark);
++      print_intentional_mark(callee_mark);
++      gcc_unreachable();
++}
++
++bool is_a_cast_and_const_overflow(const_tree no_const_rhs)
++{
++      const_tree rhs1, lhs, rhs1_type, lhs_type;
++      enum machine_mode lhs_mode, rhs_mode;
++      gimple def_stmt = get_def_stmt(no_const_rhs);
++
++      if (!def_stmt || !gimple_assign_cast_p(def_stmt))
++              return false;
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      lhs = gimple_assign_lhs(def_stmt);
++      rhs1_type = TREE_TYPE(rhs1);
++      lhs_type = TREE_TYPE(lhs);
++      rhs_mode = TYPE_MODE(rhs1_type);
++      lhs_mode = TYPE_MODE(lhs_type);
++      if (TYPE_UNSIGNED(lhs_type) == TYPE_UNSIGNED(rhs1_type) || lhs_mode != rhs_mode)
++              return false;
++
++      return true;
++}
++
++static unsigned int uses_num(tree node)
++{
++      imm_use_iterator imm_iter;
++      use_operand_p use_p;
++      unsigned int num = 0;
++
++      FOR_EACH_IMM_USE_FAST(use_p, imm_iter, node) {
++              gimple use_stmt = USE_STMT(use_p);
++
++              if (use_stmt == NULL)
++                      return num;
++              if (is_gimple_debug(use_stmt))
++                      continue;
++              if (gimple_assign_cast_p(use_stmt) && is_size_overflow_type(gimple_assign_lhs(use_stmt)))
++                      continue;
++              num++;
++      }
++      return num;
++}
++
++static bool no_uses(tree node)
++{
++      return !uses_num(node);
++}
++
++// 3.8.5 mm/page-writeback.c __ilog2_u64(): ret, uint + uintmax; uint -> int; int max
++bool is_const_plus_unsigned_signed_truncation(const_tree lhs)
++{
++      tree rhs1, lhs_type, rhs_type, rhs2, not_const_rhs;
++      gimple def_stmt = get_def_stmt(lhs);
++
++      if (!def_stmt || !gimple_assign_cast_p(def_stmt))
++              return false;
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs_type = TREE_TYPE(rhs1);
++      lhs_type = TREE_TYPE(lhs);
++      if (TYPE_UNSIGNED(lhs_type) || !TYPE_UNSIGNED(rhs_type))
++              return false;
++      if (TYPE_MODE(lhs_type) != TYPE_MODE(rhs_type))
++              return false;
++
++      def_stmt = get_def_stmt(rhs1);
++      if (!def_stmt || !is_gimple_assign(def_stmt) || gimple_num_ops(def_stmt) != 3)
++              return false;
++
++      if (gimple_assign_rhs_code(def_stmt) != PLUS_EXPR)
++              return false;
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs2 = gimple_assign_rhs2(def_stmt);
++      if (!is_gimple_constant(rhs1) && !is_gimple_constant(rhs2))
++              return false;
++
++      if (is_gimple_constant(rhs2))
++              not_const_rhs = rhs1;
++      else
++              not_const_rhs = rhs2;
++
++      return no_uses(not_const_rhs);
++}
++
++static bool is_lt_signed_type_max(const_tree rhs)
++{
++      const_tree new_type, type_max, type = TREE_TYPE(rhs);
++
++      if (!TYPE_UNSIGNED(type))
++              return true;
++
++      switch (TYPE_MODE(type)) {
++      case QImode:
++              new_type = intQI_type_node;
++              break;
++      case HImode:
++              new_type = intHI_type_node;
++              break;
++      case SImode:
++              new_type = intSI_type_node;
++              break;
++      case DImode:
++              new_type = intDI_type_node;
++              break;
++      default:
++              debug_tree(type);
++              gcc_unreachable();
++      }
++
++      type_max = TYPE_MAX_VALUE(new_type);
++      if (!tree_int_cst_lt(type_max, rhs))
++              return true;
++
++      return false;
++}
++
++static bool is_gt_zero(const_tree rhs)
++{
++      const_tree type = TREE_TYPE(rhs);
++
++      if (TYPE_UNSIGNED(type))
++              return true;
++
++      if (!tree_int_cst_lt(rhs, integer_zero_node))
++              return true;
++
++      return false;
++}
++
++bool is_a_constant_overflow(const gassign *stmt, const_tree rhs)
++{
++      if (gimple_assign_rhs_code(stmt) == MIN_EXPR)
++              return false;
++      if (!is_gimple_constant(rhs))
++              return false;
++
++      // if the const is between 0 and the max value of the signed type of the same bitsize then there is no intentional overflow
++      if (is_lt_signed_type_max(rhs) && is_gt_zero(rhs))
++              return false;
++
++      return true;
++}
++
++static tree change_assign_rhs(struct visited *visited, gassign *stmt, const_tree orig_rhs, tree new_rhs)
++{
++      const_gimple assign;
++      gimple_stmt_iterator gsi = gsi_for_stmt(stmt);
++      tree origtype = TREE_TYPE(orig_rhs);
++
++      assign = build_cast_stmt(visited, origtype, new_rhs, CREATE_NEW_VAR, &gsi, BEFORE_STMT, false);
++      pointer_set_insert(visited->my_stmts, assign);
++      return get_lhs(assign);
++}
++
++tree handle_intentional_overflow(interesting_stmts_t expand_from, bool check_overflow, gassign *stmt, tree change_rhs, tree new_rhs2)
++{
++      tree new_rhs, orig_rhs;
++      void (*gimple_assign_set_rhs)(gimple, tree);
++      tree rhs1 = gimple_assign_rhs1(stmt);
++      tree rhs2 = gimple_assign_rhs2(stmt);
++      tree lhs = gimple_assign_lhs(stmt);
++
++      if (!check_overflow)
++              return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++
++      if (change_rhs == NULL_TREE)
++              return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++
++      if (new_rhs2 == NULL_TREE) {
++              orig_rhs = rhs1;
++              gimple_assign_set_rhs = &gimple_assign_set_rhs1;
++      } else {
++              orig_rhs = rhs2;
++              gimple_assign_set_rhs = &gimple_assign_set_rhs2;
++      }
++
++      check_size_overflow(expand_from, stmt, TREE_TYPE(change_rhs), change_rhs, orig_rhs, BEFORE_STMT);
++
++      new_rhs = change_assign_rhs(expand_from->visited, stmt, orig_rhs, change_rhs);
++      gimple_assign_set_rhs(stmt, new_rhs);
++      update_stmt(stmt);
++
++      return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++}
++
++static bool is_subtraction_special(struct visited *visited, const gassign *stmt)
++{
++      gimple rhs1_def_stmt, rhs2_def_stmt;
++      const_tree rhs1_def_stmt_rhs1, rhs2_def_stmt_rhs1, rhs1_def_stmt_lhs, rhs2_def_stmt_lhs;
++      enum machine_mode rhs1_def_stmt_rhs1_mode, rhs2_def_stmt_rhs1_mode, rhs1_def_stmt_lhs_mode, rhs2_def_stmt_lhs_mode;
++      const_tree rhs1 = gimple_assign_rhs1(stmt);
++      const_tree rhs2 = gimple_assign_rhs2(stmt);
++
++      if (is_gimple_constant(rhs1) || is_gimple_constant(rhs2))
++              return false;
++
++      if (gimple_assign_rhs_code(stmt) != MINUS_EXPR)
++              return false;
++
++      gcc_assert(TREE_CODE(rhs1) == SSA_NAME && TREE_CODE(rhs2) == SSA_NAME);
++
++      rhs1_def_stmt = get_def_stmt(rhs1);
++      rhs2_def_stmt = get_def_stmt(rhs2);
++      if (!gimple_assign_cast_p(rhs1_def_stmt) || !gimple_assign_cast_p(rhs2_def_stmt))
++              return false;
++
++      rhs1_def_stmt_rhs1 = gimple_assign_rhs1(rhs1_def_stmt);
++      rhs2_def_stmt_rhs1 = gimple_assign_rhs1(rhs2_def_stmt);
++      rhs1_def_stmt_lhs = gimple_assign_lhs(rhs1_def_stmt);
++      rhs2_def_stmt_lhs = gimple_assign_lhs(rhs2_def_stmt);
++      rhs1_def_stmt_rhs1_mode = TYPE_MODE(TREE_TYPE(rhs1_def_stmt_rhs1));
++      rhs2_def_stmt_rhs1_mode = TYPE_MODE(TREE_TYPE(rhs2_def_stmt_rhs1));
++      rhs1_def_stmt_lhs_mode = TYPE_MODE(TREE_TYPE(rhs1_def_stmt_lhs));
++      rhs2_def_stmt_lhs_mode = TYPE_MODE(TREE_TYPE(rhs2_def_stmt_lhs));
++      if (GET_MODE_BITSIZE(rhs1_def_stmt_rhs1_mode) <= GET_MODE_BITSIZE(rhs1_def_stmt_lhs_mode))
++              return false;
++      if (GET_MODE_BITSIZE(rhs2_def_stmt_rhs1_mode) <= GET_MODE_BITSIZE(rhs2_def_stmt_lhs_mode))
++              return false;
++
++      pointer_set_insert(visited->no_cast_check, rhs1_def_stmt);
++      pointer_set_insert(visited->no_cast_check, rhs2_def_stmt);
++      return true;
++}
++
++static gassign *create_binary_assign(struct visited *visited, enum tree_code code, gassign *stmt, tree rhs1, tree rhs2)
++{
++      gassign *assign;
++      gimple_stmt_iterator gsi = gsi_for_stmt(stmt);
++      tree type = TREE_TYPE(rhs1);
++      tree lhs = create_new_var(type);
++
++      gcc_assert(types_compatible_p(type, TREE_TYPE(rhs2)));
++      assign = as_a_gassign(gimple_build_assign_with_ops(code, lhs, rhs1, rhs2));
++      gimple_assign_set_lhs(assign, make_ssa_name(lhs, assign));
++
++      gsi_insert_before(&gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++      pointer_set_insert(visited->my_stmts, assign);
++      return assign;
++}
++
++static tree cast_to_TI_type(struct visited *visited, gassign *stmt, tree node)
++{
++      gimple_stmt_iterator gsi;
++      const_gimple cast_stmt;
++      tree type = TREE_TYPE(node);
++
++      if (types_compatible_p(type, intTI_type_node))
++              return node;
++
++      gsi = gsi_for_stmt(stmt);
++      cast_stmt = build_cast_stmt(visited, intTI_type_node, node, CREATE_NEW_VAR, &gsi, BEFORE_STMT, false);
++      pointer_set_insert(visited->my_stmts, cast_stmt);
++      return get_lhs(cast_stmt);
++}
++
++static tree get_def_stmt_rhs(struct visited *visited, const_tree var)
++{
++      tree rhs1, def_stmt_rhs1;
++      gimple rhs1_def_stmt, def_stmt_rhs1_def_stmt, def_stmt;
++
++      def_stmt = get_def_stmt(var);
++      if (!gimple_assign_cast_p(def_stmt))
++              return NULL_TREE;
++      gcc_assert(gimple_code(def_stmt) != GIMPLE_NOP && pointer_set_contains(visited->my_stmts, def_stmt) && gimple_assign_cast_p(def_stmt));
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs1_def_stmt = get_def_stmt(rhs1);
++      if (!gimple_assign_cast_p(rhs1_def_stmt))
++              return rhs1;
++
++      def_stmt_rhs1 = gimple_assign_rhs1(rhs1_def_stmt);
++      def_stmt_rhs1_def_stmt = get_def_stmt(def_stmt_rhs1);
++
++      switch (gimple_code(def_stmt_rhs1_def_stmt)) {
++      case GIMPLE_CALL:
++      case GIMPLE_NOP:
++      case GIMPLE_ASM:
++      case GIMPLE_PHI:
++              return def_stmt_rhs1;
++      case GIMPLE_ASSIGN:
++              return rhs1;
++      default:
++              debug_gimple_stmt(def_stmt_rhs1_def_stmt);
++              gcc_unreachable();
++      }
++}
++
++tree handle_integer_truncation(interesting_stmts_t expand_from, const_tree lhs)
++{
++      tree new_rhs1, new_rhs2;
++      tree new_rhs1_def_stmt_rhs1, new_rhs2_def_stmt_rhs1, new_lhs;
++      gassign *assign, *stmt = as_a_gassign(get_def_stmt(lhs));
++      tree rhs1 = gimple_assign_rhs1(stmt);
++      tree rhs2 = gimple_assign_rhs2(stmt);
++
++      if (!is_subtraction_special(expand_from->visited, stmt))
++              return NULL_TREE;
++
++      new_rhs1 = expand(expand_from, rhs1);
++      new_rhs2 = expand(expand_from, rhs2);
++
++      new_rhs1_def_stmt_rhs1 = get_def_stmt_rhs(expand_from->visited, new_rhs1);
++      new_rhs2_def_stmt_rhs1 = get_def_stmt_rhs(expand_from->visited, new_rhs2);
++
++      if (new_rhs1_def_stmt_rhs1 == NULL_TREE || new_rhs2_def_stmt_rhs1 == NULL_TREE)
++              return NULL_TREE;
++
++      if (!types_compatible_p(TREE_TYPE(new_rhs1_def_stmt_rhs1), TREE_TYPE(new_rhs2_def_stmt_rhs1))) {
++              new_rhs1_def_stmt_rhs1 = cast_to_TI_type(expand_from->visited, stmt, new_rhs1_def_stmt_rhs1);
++              new_rhs2_def_stmt_rhs1 = cast_to_TI_type(expand_from->visited, stmt, new_rhs2_def_stmt_rhs1);
++      }
++
++      assign = create_binary_assign(expand_from->visited, MINUS_EXPR, stmt, new_rhs1_def_stmt_rhs1, new_rhs2_def_stmt_rhs1);
++      new_lhs = gimple_assign_lhs(assign);
++      check_size_overflow(expand_from, assign, TREE_TYPE(new_lhs), new_lhs, rhs1, AFTER_STMT);
++
++      return dup_assign(expand_from->visited, stmt, lhs, new_rhs1, new_rhs2, NULL_TREE);
++}
++
++bool is_a_neg_overflow(const gassign *stmt, const_tree rhs)
++{
++      const_gimple def_stmt;
++
++      if (TREE_CODE(rhs) != SSA_NAME)
++              return false;
++
++      if (gimple_assign_rhs_code(stmt) != PLUS_EXPR)
++              return false;
++
++      def_stmt = get_def_stmt(rhs);
++      if (!is_gimple_assign(def_stmt) || gimple_assign_rhs_code(def_stmt) != BIT_NOT_EXPR)
++              return false;
++
++      return true;
++}
++
++/* e.g., drivers/acpi/acpica/utids.c acpi_ut_execute_CID()
++ * ((count - 1) * sizeof(struct acpi_pnp_dee_id_list) -> (count + fffffff) * 16
++ * fffffff * 16 > signed max -> truncate
++ */
++static bool look_for_mult_and_add(const_gimple stmt)
++{
++      const_tree res;
++      tree rhs1, rhs2, def_rhs1, def_rhs2, const_rhs, def_const_rhs;
++      const_gimple def_stmt;
++
++      if (!stmt || gimple_code(stmt) == GIMPLE_NOP)
++              return false;
++      if (!is_gimple_assign(stmt))
++              return false;
++      if (gimple_assign_rhs_code(stmt) != MULT_EXPR)
++              return false;
++
++      rhs1 = gimple_assign_rhs1(stmt);
++      rhs2 = gimple_assign_rhs2(stmt);
++      if (is_gimple_constant(rhs1)) {
++              const_rhs = rhs1;
++              def_stmt = get_def_stmt(rhs2);
++      } else if (is_gimple_constant(rhs2)) {
++              const_rhs = rhs2;
++              def_stmt = get_def_stmt(rhs1);
++      } else
++              return false;
++
++      if (!is_gimple_assign(def_stmt))
++              return false;
++
++      if (gimple_assign_rhs_code(def_stmt) != PLUS_EXPR && gimple_assign_rhs_code(def_stmt) != MINUS_EXPR)
++              return false;
++
++      def_rhs1 = gimple_assign_rhs1(def_stmt);
++      def_rhs2 = gimple_assign_rhs2(def_stmt);
++      if (is_gimple_constant(def_rhs1))
++              def_const_rhs = def_rhs1;
++      else if (is_gimple_constant(def_rhs2))
++              def_const_rhs = def_rhs2;
++      else
++              return false;
++
++      res = fold_binary_loc(gimple_location(def_stmt), MULT_EXPR, TREE_TYPE(const_rhs), const_rhs, def_const_rhs);
++      if (is_lt_signed_type_max(res) && is_gt_zero(res))
++              return false;
++      return true;
++}
++
++enum intentional_overflow_type add_mul_intentional_overflow(const gassign *stmt)
++{
++      const_gimple def_stmt_1, def_stmt_2;
++      const_tree rhs1, rhs2;
++      bool add_mul_rhs1, add_mul_rhs2;
++
++      rhs1 = gimple_assign_rhs1(stmt);
++      def_stmt_1 = get_def_stmt(rhs1);
++      add_mul_rhs1 = look_for_mult_and_add(def_stmt_1);
++
++      rhs2 = gimple_assign_rhs2(stmt);
++      def_stmt_2 = get_def_stmt(rhs2);
++      add_mul_rhs2 = look_for_mult_and_add(def_stmt_2);
++
++      if (add_mul_rhs1)
++              return RHS1_INTENTIONAL_OVERFLOW;
++      if (add_mul_rhs2)
++              return RHS2_INTENTIONAL_OVERFLOW;
++      return NO_INTENTIONAL_OVERFLOW;
++}
++
++static gassign *get_dup_stmt(struct visited *visited, gassign *stmt)
++{
++      gassign *my_stmt;
++      gimple_stmt_iterator gsi = gsi_for_stmt(stmt);
++
++      gsi_next(&gsi);
++      my_stmt = as_a_gassign(gsi_stmt(gsi));
++
++      gcc_assert(pointer_set_contains(visited->my_stmts, my_stmt));
++      if (gimple_assign_cast_p(stmt) && gimple_assign_cast_p(my_stmt))
++              return my_stmt;
++
++      if (gimple_assign_rhs_code(stmt) != gimple_assign_rhs_code(my_stmt)) {
++              fprintf(stderr, "%s != %s\n", get_tree_code_name(gimple_assign_rhs_code(stmt)), get_tree_code_name(gimple_assign_rhs_code(my_stmt)));
++              debug_gimple_stmt(stmt);
++              debug_gimple_stmt(my_stmt);
++              gcc_unreachable();
++      }
++
++      return my_stmt;
++}
++
++/* unsigned type -> unary or binary assign (rhs1 or rhs2 is constant)
++ * unsigned type cast to signed type, unsigned type: no more uses
++ * e.g., lib/vsprintf.c:simple_strtol()
++ * _10 = (unsigned long int) _9
++ * _11 = -_10;
++ * _12 = (long int) _11; (_11_ no more uses)
++ */
++static bool is_call_or_cast(gimple stmt)
++{
++      return gimple_assign_cast_p(stmt) || is_gimple_call(stmt);
++}
++
++static bool is_unsigned_cast_or_call_def_stmt(const_tree node)
++{
++      const_tree rhs;
++      gimple def_stmt;
++
++      if (node == NULL_TREE)
++              return true;
++      if (is_gimple_constant(node))
++              return true;
++
++      def_stmt = get_def_stmt(node);
++      if (!def_stmt)
++              return false;
++
++      if (is_call_or_cast(def_stmt))
++              return true;
++
++      if (!is_gimple_assign(def_stmt) || gimple_num_ops(def_stmt) != 2)
++              return false;
++      rhs = gimple_assign_rhs1(def_stmt);
++      def_stmt = get_def_stmt(rhs);
++      if (!def_stmt)
++              return false;
++      return is_call_or_cast(def_stmt);
++}
++
++void unsigned_signed_cast_intentional_overflow(struct visited *visited, gassign *stmt)
++{
++      unsigned int use_num;
++      gassign *so_stmt;
++      const_gimple def_stmt;
++      const_tree rhs1, rhs2;
++      tree rhs = gimple_assign_rhs1(stmt);
++      tree lhs_type = TREE_TYPE(gimple_assign_lhs(stmt));
++      const_tree rhs_type = TREE_TYPE(rhs);
++
++      if (!(TYPE_UNSIGNED(rhs_type) && !TYPE_UNSIGNED(lhs_type)))
++              return;
++      if (GET_MODE_BITSIZE(TYPE_MODE(rhs_type)) != GET_MODE_BITSIZE(TYPE_MODE(lhs_type)))
++              return;
++      use_num = uses_num(rhs);
++      if (use_num != 1)
++              return;
++
++      def_stmt = get_def_stmt(rhs);
++      if (!def_stmt)
++              return;
++      if (!is_gimple_assign(def_stmt))
++              return;
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      if (!is_unsigned_cast_or_call_def_stmt(rhs1))
++              return;
++
++      rhs2 = gimple_assign_rhs2(def_stmt);
++      if (!is_unsigned_cast_or_call_def_stmt(rhs2))
++              return;
++      if (gimple_num_ops(def_stmt) == 3 && !is_gimple_constant(rhs1) && !is_gimple_constant(rhs2))
++              return;
++
++      so_stmt = get_dup_stmt(visited, stmt);
++      create_up_and_down_cast(visited, so_stmt, lhs_type, gimple_assign_rhs1(so_stmt));
++}
++
++/* gcc intentional overflow
++ * e.g., skb_set_network_header(), skb_set_mac_header()
++ * -, int offset + u16 network_header
++ * offset = -x->props.header_len
++ * skb->network_header += offset;
++ *
++ * SSA
++ * _141 = -_140;
++ * _154 = (short unsigned int) _141;
++ * _155 = (size_overflow_type_SI) _154;
++ * _156 = _154 + _155; // 2x
++ * _157 = (short unsigned int) _156;
++ */
++static bool is_short_cast_neg(const_tree rhs)
++{
++      const_tree cast_rhs;
++      const_gimple neg_stmt;
++      gimple neg_cast_stmt, cast_stmt = get_def_stmt(rhs);
++
++      if (!cast_stmt || !gimple_assign_cast_p(cast_stmt))
++              return false;
++
++      cast_rhs = gimple_assign_rhs1(cast_stmt);
++      if (GET_MODE_BITSIZE(TYPE_MODE(TREE_TYPE(cast_rhs))) >= GET_MODE_BITSIZE(TYPE_MODE(TREE_TYPE(rhs))))
++              return false;
++
++      neg_cast_stmt = get_def_stmt(cast_rhs);
++      if (!neg_cast_stmt || !gimple_assign_cast_p(neg_cast_stmt))
++              return false;
++
++      neg_stmt = get_def_stmt(gimple_assign_rhs1(neg_cast_stmt));
++      if (!neg_stmt || !is_gimple_assign(neg_stmt))
++              return false;
++      return gimple_assign_rhs_code(neg_stmt) == NEGATE_EXPR;
++}
++
++static bool check_add_stmt(const_tree node)
++{
++      const_gimple add_stmt;
++      const_tree add_rhs1, add_rhs2;
++
++      if (node == NULL_TREE)
++              return false;
++
++      add_stmt = get_def_stmt(node);
++      if (!add_stmt || !is_gimple_assign(add_stmt) || gimple_assign_rhs_code(add_stmt) != PLUS_EXPR)
++              return false;
++
++      add_rhs1 = gimple_assign_rhs1(add_stmt);
++      add_rhs2 = gimple_assign_rhs2(add_stmt);
++      return is_short_cast_neg(add_rhs1) || is_short_cast_neg(add_rhs2);
++}
++
++bool neg_short_add_intentional_overflow(gassign *unary_stmt)
++{
++      const_tree rhs1, add_rhs1, add_rhs2, cast_rhs;
++      gimple cast_stmt;
++      const_gimple add_stmt;
++
++      rhs1 = gimple_assign_rhs1(unary_stmt);
++
++      cast_stmt = get_def_stmt(rhs1);
++      if (!cast_stmt || !gimple_assign_cast_p(cast_stmt))
++              return false;
++      cast_rhs = gimple_assign_rhs1(cast_stmt);
++      if (GET_MODE_BITSIZE(TYPE_MODE(TREE_TYPE(cast_rhs))) <= GET_MODE_BITSIZE(TYPE_MODE(TREE_TYPE(rhs1))))
++              return false;
++
++      // one or two plus expressions
++      if (check_add_stmt(cast_rhs))
++              return true;
++
++      add_stmt = get_def_stmt(cast_rhs);
++      if (!add_stmt || !is_gimple_assign(add_stmt))
++              return false;
++      add_rhs1 = gimple_assign_rhs1(add_stmt);
++      if (check_add_stmt(add_rhs1))
++              return true;
++      add_rhs2 = gimple_assign_rhs2(add_stmt);
++      return check_add_stmt(add_rhs2);
++}
++
++/* True:
++ * _25 = (<unnamed-unsigned:1>) _24;
++ * r_5(D)->stereo = _25;
++ */
++bool is_bitfield_unnamed_cast(const_tree decl, gassign *assign)
++{
++      const_tree rhs, type;
++      gimple def_stmt;
++
++      if (TREE_CODE(decl) != FIELD_DECL)
++              return false;
++      if (!DECL_BIT_FIELD_TYPE(decl))
++              return false;
++      if (gimple_num_ops(assign) != 2)
++              return false;
++
++      rhs = gimple_assign_rhs1(assign);
++      if (is_gimple_constant(rhs))
++              return false;
++      type = TREE_TYPE(rhs);
++      if (TREE_CODE(type) == BOOLEAN_TYPE)
++              return false;
++
++      def_stmt = get_def_stmt(rhs);
++      if (!gimple_assign_cast_p(def_stmt))
++              return false;
++      return TYPE_PRECISION(type) < CHAR_TYPE_SIZE;
++}
++
++static bool is_mult_const(const_tree lhs)
++{
++      const_gimple def_stmt;
++      const_tree rhs1, rhs2;
++
++      def_stmt = get_def_stmt(lhs);
++      if (!def_stmt || !is_gimple_assign(def_stmt) || gimple_assign_rhs_code(def_stmt) != MULT_EXPR)
++              return false;
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs2 = gimple_assign_rhs2(def_stmt);
++      if (is_gimple_constant(rhs1))
++              return !is_lt_signed_type_max(rhs1);
++      else if (is_gimple_constant(rhs2))
++              return !is_lt_signed_type_max(rhs2);
++      return false;
++}
++
++/* True:
++ * fs/cifs/file.c cifs_write_from_iter()
++ * u32 = u64 - (u64 - constant) * constant
++ * wdata->tailsz = cur_len - (nr_pages - 1) * PAGE_SIZE;
++ *
++ * _51 = _50 * 4294963200;
++ * _52 = _49 + _51;
++ * _53 = _52 + 4096;
++ */
++
++bool uconst_neg_intentional_overflow(const gassign *stmt)
++{
++      const_gimple def_stmt;
++      const_tree noconst_rhs;
++      tree rhs1, rhs2;
++
++      // _53 = _52 + const;
++      if (gimple_assign_rhs_code(stmt) != PLUS_EXPR)
++              return false;
++      rhs1 = gimple_assign_rhs1(stmt);
++      rhs2 = gimple_assign_rhs2(stmt);
++      if (is_gimple_constant(rhs1))
++              noconst_rhs = rhs2;
++      else if (is_gimple_constant(rhs2))
++              noconst_rhs = rhs1;
++      else
++              return false;
++      def_stmt = get_def_stmt(noconst_rhs);
++
++      // _52 = _49 + _51;
++      if (!def_stmt)
++              return false;
++      if (!is_gimple_assign(def_stmt))
++              return false;
++      if (gimple_assign_rhs_code(def_stmt) != PLUS_EXPR)
++              return false;
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs2 = gimple_assign_rhs2(def_stmt);
++      if (is_gimple_constant(rhs1) || is_gimple_constant(rhs2))
++              return false;
++
++      // _51 = _50 * gt signed type max;
++      return is_mult_const(rhs1) || is_mult_const(rhs2);
++}
++
++/* True:
++ * drivers/net/ethernet/via/via-velocity.c velocity_rx_refill()
++ * u16 = cpu_to_le16(s32) | const
++ * rd->size = cpu_to_le16(vptr->rx.buf_sz) | RX_INTEN;
++ *
++ * _36 = (signed short) _35;
++ * _37 = _36 | -32768;
++ * _38 = (short unsigned int) _37;
++ */
++
++bool short_or_neg_const_ushort(gassign *stmt)
++{
++      const_tree rhs, lhs_type, rhs_type;
++      const_tree def_rhs1, def_rhs2;
++      const_gimple def_stmt;
++      gimple def_def_stmt = NULL;
++
++      if (!gimple_assign_cast_p(stmt))
++              return false;
++
++      // _38 = (short unsigned int) _37;
++      lhs_type = TREE_TYPE(gimple_assign_lhs(stmt));
++      if (!TYPE_UNSIGNED(lhs_type))
++              return false;
++      if (TYPE_MODE(lhs_type) != HImode)
++              return false;
++      rhs = gimple_assign_rhs1(stmt);
++      rhs_type = TREE_TYPE(rhs);
++      if (TYPE_UNSIGNED(rhs_type))
++              return false;
++      if (TYPE_MODE(rhs_type) != HImode)
++              return false;
++
++      // _37 = _36 | -32768;
++      def_stmt = get_def_stmt(rhs);
++      if (!def_stmt || !is_gimple_assign(def_stmt) || gimple_assign_rhs_code(def_stmt) != BIT_IOR_EXPR)
++              return false;
++      def_rhs1 = gimple_assign_rhs1(def_stmt);
++      def_rhs2 = gimple_assign_rhs2(def_stmt);
++      if (is_gimple_constant(def_rhs1) && !is_gt_zero(def_rhs1))
++              def_def_stmt = get_def_stmt(def_rhs2);
++      else if (is_gimple_constant(def_rhs2) && !is_gt_zero(def_rhs2))
++              def_def_stmt = get_def_stmt(def_rhs1);
++
++      // _36 = (signed short) _35;
++      return def_def_stmt && gimple_assign_cast_p(def_def_stmt);
++}
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/remove_unnecessary_dup.c b/scripts/gcc-plugins/size_overflow_plugin/remove_unnecessary_dup.c
+new file mode 100644
+index 0000000..5ea5f35
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/remove_unnecessary_dup.c
+@@ -0,0 +1,137 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++bool skip_expr_on_double_type(const gassign *stmt)
++{
++      enum tree_code code = gimple_assign_rhs_code(stmt);
++
++      switch (code) {
++      case RSHIFT_EXPR:
++      case TRUNC_DIV_EXPR:
++      case CEIL_DIV_EXPR:
++      case FLOOR_DIV_EXPR:
++      case ROUND_DIV_EXPR:
++      case EXACT_DIV_EXPR:
++      case RDIV_EXPR:
++      case TRUNC_MOD_EXPR:
++      case CEIL_MOD_EXPR:
++      case FLOOR_MOD_EXPR:
++      case ROUND_MOD_EXPR:
++              return true;
++      default:
++              return false;
++      }
++}
++
++void create_up_and_down_cast(struct visited *visited, gassign *use_stmt, tree orig_type, tree rhs)
++{
++      const_tree orig_rhs1;
++      tree down_lhs, new_lhs, dup_type = TREE_TYPE(rhs);
++      const_gimple down_cast, up_cast;
++      gimple_stmt_iterator gsi = gsi_for_stmt(use_stmt);
++
++      down_cast = build_cast_stmt(visited, orig_type, rhs, CREATE_NEW_VAR, &gsi, BEFORE_STMT, false);
++      down_lhs = get_lhs(down_cast);
++
++      gsi = gsi_for_stmt(use_stmt);
++      up_cast = build_cast_stmt(visited, dup_type, down_lhs, CREATE_NEW_VAR, &gsi, BEFORE_STMT, false);
++      new_lhs = get_lhs(up_cast);
++
++      orig_rhs1 = gimple_assign_rhs1(use_stmt);
++      if (operand_equal_p(orig_rhs1, rhs, 0))
++              gimple_assign_set_rhs1(use_stmt, new_lhs);
++      else
++              gimple_assign_set_rhs2(use_stmt, new_lhs);
++      update_stmt(use_stmt);
++
++      pointer_set_insert(visited->my_stmts, up_cast);
++      pointer_set_insert(visited->my_stmts, down_cast);
++      pointer_set_insert(visited->skip_expr_casts, up_cast);
++      pointer_set_insert(visited->skip_expr_casts, down_cast);
++}
++
++static tree get_proper_unsigned_half_type(const_tree node)
++{
++      tree new_type, type;
++
++      gcc_assert(is_size_overflow_type(node));
++
++      type = TREE_TYPE(node);
++      switch (TYPE_MODE(type)) {
++      case HImode:
++              new_type = unsigned_intQI_type_node;
++              break;
++      case SImode:
++              new_type = unsigned_intHI_type_node;
++              break;
++      case DImode:
++              new_type = unsigned_intSI_type_node;
++              break;
++      case TImode:
++              new_type = unsigned_intDI_type_node;
++              break;
++      default:
++              gcc_unreachable();
++      }
++
++      if (TYPE_QUALS(type) != 0)
++              return build_qualified_type(new_type, TYPE_QUALS(type));
++      return new_type;
++}
++
++static void insert_cast_rhs(struct visited *visited, gassign *stmt, tree rhs)
++{
++      tree type;
++
++      if (rhs == NULL_TREE)
++              return;
++      if (!is_size_overflow_type(rhs))
++              return;
++
++      type = get_proper_unsigned_half_type(rhs);
++      if (is_gimple_constant(rhs))
++              return;
++      create_up_and_down_cast(visited, stmt, type, rhs);
++}
++
++static void insert_cast(struct visited *visited, gassign *stmt, tree rhs)
++{
++      if (LONG_TYPE_SIZE == GET_MODE_BITSIZE(SImode) && !is_size_overflow_type(rhs))
++              return;
++      gcc_assert(is_size_overflow_type(rhs));
++      insert_cast_rhs(visited, stmt, rhs);
++}
++
++void insert_cast_expr(struct visited *visited, gassign *stmt, enum intentional_overflow_type type)
++{
++      tree rhs1, rhs2;
++
++      if (type == NO_INTENTIONAL_OVERFLOW || type == RHS1_INTENTIONAL_OVERFLOW) {
++              rhs1 = gimple_assign_rhs1(stmt);
++              insert_cast(visited, stmt, rhs1);
++      }
++
++      if (type == NO_INTENTIONAL_OVERFLOW || type == RHS2_INTENTIONAL_OVERFLOW) {
++              rhs2 = gimple_assign_rhs2(stmt);
++              insert_cast(visited, stmt, rhs2);
++      }
++}
++
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/size_overflow.h b/scripts/gcc-plugins/size_overflow_plugin/size_overflow.h
+new file mode 100644
+index 0000000..8d14f68
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/size_overflow.h
+@@ -0,0 +1,345 @@
++#ifndef SIZE_OVERFLOW_H
++#define SIZE_OVERFLOW_H
++
++#define CREATE_NEW_VAR NULL_TREE
++#define MAX_PARAM 31
++#define CANNOT_FIND_ARG 32
++#define NONE_ARGNUM 32
++
++#define BEFORE_STMT true
++#define AFTER_STMT false
++
++#define TURN_OFF_ASM_STR "# size_overflow MARK_TURN_OFF "
++#define YES_ASM_STR "# size_overflow MARK_YES "
++#define END_INTENTIONAL_ASM_STR "# size_overflow MARK_END_INTENTIONAL "
++#define SO_ASM_STR "# size_overflow "
++#define OK_ASM_STR "# size_overflow MARK_NO"
++
++#define FUNCTION_PTR_P(node) \
++      (TREE_CODE(TREE_TYPE(node)) == POINTER_TYPE && (TREE_CODE(TREE_TYPE(TREE_TYPE(node))) == FUNCTION_TYPE || TREE_CODE(TREE_TYPE(TREE_TYPE(node))) == METHOD_TYPE))
++
++#define CODES_LIMIT 32
++
++#define GLOBAL_NIFN_LEN 65536
++#define NO_HASH 65537
++
++#define SIZE_OVERFLOW true
++#define DISABLE_SIZE_OVERFLOW false
++
++#include "gcc-common.h"
++
++#include <string.h>
++#include <limits.h>
++
++enum intentional_mark {
++      MARK_NO, MARK_YES, MARK_END_INTENTIONAL, MARK_TURN_OFF
++};
++
++enum intentional_overflow_type {
++      NO_INTENTIONAL_OVERFLOW, RHS1_INTENTIONAL_OVERFLOW, RHS2_INTENTIONAL_OVERFLOW
++};
++
++enum size_overflow_mark {
++      NO_SO_MARK, YES_SO_MARK, ASM_STMT_SO_MARK
++};
++
++struct decl_hash {
++      size_t tree_codes_len;
++      unsigned char tree_codes[CODES_LIMIT];
++      const_tree decl;
++      const char *context;
++      unsigned int hash;
++      const char *fn_name;
++};
++
++struct next_interesting_function;
++typedef struct next_interesting_function *  next_interesting_function_t;
++
++struct interesting_stmts;
++typedef struct interesting_stmts * interesting_stmts_t;
++
++enum decl_type {
++      SO_FUNCTION, SO_VAR, SO_FIELD, SO_FUNCTION_POINTER, SO_AUX, SO_DISABLE, SO_NONE
++};
++
++// Store data associated with the next_interesting_function_t entry
++struct fn_raw_data
++{
++      const char *decl_str;
++      tree decl;
++      const char *context;
++      unsigned int hash;
++      unsigned int num;
++      enum size_overflow_mark marked;
++      enum decl_type decl_type;
++      const char *orig_decl_str;
++      unsigned int orig_num;
++};
++
++#if BUILDING_GCC_VERSION <= 4007
++DEF_VEC_P(next_interesting_function_t);
++DEF_VEC_ALLOC_P(next_interesting_function_t, heap);
++#endif
++
++#if BUILDING_GCC_VERSION >= 5000
++typedef struct hash_set<const_gimple> gimple_set;
++
++static inline bool pointer_set_insert(gimple_set *visited, const_gimple stmt)
++{
++      return visited->add(stmt);
++}
++
++static inline bool pointer_set_contains(gimple_set *visited, const_gimple stmt)
++{
++      return visited->contains(stmt);
++}
++
++static inline gimple_set* pointer_set_create(void)
++{
++      return new hash_set<const_gimple>;
++}
++
++static inline void pointer_set_destroy(gimple_set *visited)
++{
++      delete visited;
++}
++
++typedef struct hash_set<next_interesting_function_t> next_interesting_function_set;
++
++static inline bool pointer_set_insert(next_interesting_function_set *visited, next_interesting_function_t node)
++{
++      return visited->add(node);
++}
++
++static inline bool pointer_set_contains(next_interesting_function_set *visited, next_interesting_function_t node)
++{
++      return visited->contains(node);
++}
++
++static inline next_interesting_function_set *next_interesting_function_pointer_set_create(void)
++{
++      return new hash_set<next_interesting_function_t>;
++}
++
++static inline void pointer_set_destroy(next_interesting_function_set *visited)
++{
++      delete visited;
++}
++#else
++typedef struct pointer_set_t gimple_set;
++typedef struct pointer_set_t next_interesting_function_set;
++
++static inline next_interesting_function_set *next_interesting_function_pointer_set_create(void)
++{
++      return pointer_set_create();
++}
++#endif
++
++struct visited {
++      gimple_set *stmts;
++      gimple_set *my_stmts;
++      gimple_set *skip_expr_casts;
++      gimple_set *no_cast_check;
++};
++
++/*
++ *  * children: callers with data flow into the integer parameter of decl
++ *  * decl_name: name of the function or the field
++ *  * context: the containing type name for a function pointer (or "fielddecl" if the type has no name), otherwise either "vardecl" or "fndecl"
++ *  * hash: hash num of the function
++ *  * num: parameter number (1-31) or return value (0)
++ *  * marked: determines whether to duplicate stmts and/or look for missing hashtable entries
++ *  * orig_next_node: pointer to the originally cloned function
++ */
++
++struct next_interesting_function {
++      next_interesting_function_t next;
++#if BUILDING_GCC_VERSION <= 4007
++      VEC(next_interesting_function_t, heap) *children;
++#else
++      vec<next_interesting_function_t, va_heap, vl_embed> *children;
++#endif
++      const char *decl_name;
++      const char *context;
++      enum decl_type decl_type;
++      unsigned int hash;
++      unsigned int num;
++      enum size_overflow_mark marked;
++      next_interesting_function_t orig_next_node;
++};
++
++// size_overflow_plugin.c
++extern tree report_size_overflow_decl;
++extern tree size_overflow_type_HI;
++extern tree size_overflow_type_SI;
++extern tree size_overflow_type_DI;
++extern tree size_overflow_type_TI;
++// command line options
++extern bool check_fields, check_fns, check_fnptrs, check_vars;
++
++
++// size_overflow_plugin_hash.c
++struct size_overflow_hash {
++      const struct size_overflow_hash * const next;
++      const char * const name;
++      const char * const context;
++      const unsigned int param;
++};
++
++extern const char *get_orig_decl_name(const_tree decl);
++extern bool is_size_overflow_asm(const_gimple stmt);
++extern void print_missing_function(next_interesting_function_t node);
++extern const struct size_overflow_hash *get_size_overflow_hash_entry(struct fn_raw_data *raw_data);
++extern const struct size_overflow_hash *get_size_overflow_hash_entry_tree(struct fn_raw_data *raw_data, bool hash_table);
++extern unsigned int find_arg_number_tree(const_tree arg, const_tree func);
++extern unsigned int get_decl_hash(const_tree decl, const char *decl_name);
++extern const char *get_decl_type_str(enum decl_type decl_type);
++extern void initialize_raw_data(struct fn_raw_data *raw_data);
++
++
++// intentional_overflow.c
++extern enum intentional_mark get_intentional_attr_type(const_tree node);
++extern tree get_size_overflow_asm_input(const gasm *stmt);
++extern enum intentional_mark check_intentional_size_overflow_asm_and_attribute(const_tree var);
++extern bool is_size_overflow_insert_check_asm(const gasm *stmt);
++extern enum intentional_mark check_intentional_attribute(const_gimple stmt, unsigned int argnum);
++extern enum intentional_mark get_so_asm_type(const_gimple stmt);
++extern const_tree get_attribute(const char* attr_name, const_tree decl);
++extern bool is_a_cast_and_const_overflow(const_tree no_const_rhs);
++extern bool is_const_plus_unsigned_signed_truncation(const_tree lhs);
++extern bool is_a_constant_overflow(const gassign *stmt, const_tree rhs);
++extern tree handle_intentional_overflow(interesting_stmts_t expand_from, bool check_overflow, gassign *stmt, tree change_rhs, tree new_rhs2);
++extern tree handle_integer_truncation(interesting_stmts_t expand_from, const_tree lhs);
++extern bool is_a_neg_overflow(const gassign *stmt, const_tree rhs);
++extern enum intentional_overflow_type add_mul_intentional_overflow(const gassign *stmt);
++extern void unsigned_signed_cast_intentional_overflow(struct visited *visited, gassign *stmt);
++extern bool neg_short_add_intentional_overflow(gassign *stmt);
++extern bool is_bitfield_unnamed_cast(const_tree decl, gassign *assign);
++extern bool uconst_neg_intentional_overflow(const gassign *stmt);
++extern bool short_or_neg_const_ushort(gassign *stmt);
++
++
++// insert_size_overflow_asm.c
++#if BUILDING_GCC_VERSION >= 4009
++extern opt_pass *make_insert_size_overflow_asm_pass(void);
++#else
++extern struct opt_pass *make_insert_size_overflow_asm_pass(void);
++#endif
++extern bool search_interesting_args(tree fndecl, bool *argnums);
++
++
++// size_overflow_misc.c
++extern bool is_vararg(const_tree fn, unsigned int num);
++extern tree get_ref_field(const_tree ref);
++extern unsigned int get_correct_argnum_fndecl(const_tree fndecl, const_tree correct_argnum_of_fndecl, unsigned int num);
++extern const char *get_type_name_from_field(const_tree field_decl);
++extern void set_dominance_info(void);
++extern void unset_dominance_info(void);
++extern tree get_interesting_orig_fndecl_from_stmt(const gcall *stmt);
++extern tree get_orig_fndecl(const_tree clone_fndecl);
++extern unsigned int get_correct_argnum(const_tree decl, const_tree correct_argnum_of_decl, unsigned int argnum);
++extern bool is_valid_cgraph_node(struct cgraph_node *node);
++extern void set_current_function_decl(tree fndecl);
++extern void unset_current_function_decl(void);
++extern gimple get_def_stmt(const_tree node);
++extern tree create_new_var(tree type);
++extern gimple build_cast_stmt(struct visited *visited, tree dst_type, tree rhs, tree lhs, gimple_stmt_iterator *gsi, bool before, bool force);
++extern bool skip_types(const_tree var);
++extern tree cast_a_tree(tree type, tree var);
++extern bool is_size_overflow_type(const_tree var);
++extern bool made_by_compiler(const_tree decl);
++extern gimple get_fnptr_def_stmt(const_tree fn_ptr);
++extern tree get_lhs(const_gimple stmt);
++
++
++// size_overflow_transform.c
++struct interesting_stmts {
++      struct interesting_stmts *next;
++      next_interesting_function_t next_node;
++      gimple first_stmt;
++      tree orig_node;
++      unsigned int num;
++      struct visited *visited;
++};
++
++extern unsigned int size_overflow_function_transform(struct cgraph_node *node);
++extern tree handle_fnptr_assign(const_gimple stmt);
++
++
++// size_overflow_transform_core.c
++extern tree cast_to_new_size_overflow_type(struct visited *visited, gimple stmt, tree rhs, tree size_overflow_type, bool before);
++extern tree get_size_overflow_type(struct visited *visited, const_gimple stmt, const_tree node);
++extern tree expand(interesting_stmts_t expand_from, tree lhs);
++extern void check_size_overflow(interesting_stmts_t expand_from, gimple stmt, tree size_overflow_type, tree cast_rhs, tree rhs, bool before);
++extern tree dup_assign(struct visited *visited, gassign *oldstmt, const_tree node, tree rhs1, tree rhs2, tree __unused rhs3);
++extern tree create_assign(struct visited *visited, gimple oldstmt, tree rhs1, bool before);
++
++
++// remove_unnecessary_dup.c
++extern struct opt_pass *make_remove_unnecessary_dup_pass(void);
++extern void insert_cast_expr(struct visited *visited, gassign *stmt, enum intentional_overflow_type type);
++extern bool skip_expr_on_double_type(const gassign *stmt);
++extern void create_up_and_down_cast(struct visited *visited, gassign *use_stmt, tree orig_type, tree rhs);
++
++
++// size_overflow_ipa.c
++struct walk_use_def_data {
++      next_interesting_function_t parent;
++      next_interesting_function_t next_cnodes_head;
++      gimple_set *visited;
++};
++
++extern const char* get_decl_context(const_tree decl);
++extern void add_to_global_next_interesting_function(next_interesting_function_t new_entry);
++extern bool has_next_interesting_function_vec(next_interesting_function_t target, next_interesting_function_t next_node);
++extern void push_child(next_interesting_function_t parent, next_interesting_function_t child);
++extern struct cgraph_node *get_cnode(const_tree fndecl);
++extern next_interesting_function_t global_next_interesting_function[GLOBAL_NIFN_LEN];
++extern next_interesting_function_t get_global_next_interesting_function_entry(struct fn_raw_data *raw_data);
++extern next_interesting_function_t get_global_next_interesting_function_entry_with_hash(struct fn_raw_data *raw_data);
++extern void size_overflow_register_hooks(void);
++#if BUILDING_GCC_VERSION >= 4009
++extern opt_pass *make_size_overflow_pass(void);
++#else
++extern struct opt_pass *make_size_overflow_pass(void);
++#endif
++extern void size_overflow_node_removal_hook(struct cgraph_node *node, void *data);
++extern next_interesting_function_t get_and_create_next_node_from_global_next_nodes(struct fn_raw_data *raw_data, next_interesting_function_t orig_next_node);
++extern next_interesting_function_t create_new_next_interesting_decl(struct fn_raw_data *raw_data, next_interesting_function_t orig_next_node);
++extern next_interesting_function_t create_new_next_interesting_entry(struct fn_raw_data *raw_data, next_interesting_function_t orig_next_node);
++
++
++// size_overflow_lto.c
++extern void size_overflow_read_summary(void);
++extern void size_overflow_read_optimization_summary(void);
++#if BUILDING_GCC_VERSION >= 4008
++extern void size_overflow_write_summary(void);
++extern void size_overflow_write_optimization_summary(void);
++#elif BUILDING_GCC_VERSION >= 4006
++extern void size_overflow_write_summary(cgraph_node_set set, varpool_node_set vset);
++extern void size_overflow_write_optimization_summary(cgraph_node_set set, varpool_node_set vset);
++#else
++extern void size_overflow_write_summary(cgraph_node_set set);
++extern void size_overflow_write_optimization_summary(cgraph_node_set set);
++#endif
++
++// size_overflow_fnptrs.c
++extern void handle_function_ptr_ret(struct walk_use_def_data *use_def_data, const_tree fn_ptr);
++extern void check_local_variables(next_interesting_function_t next_node);
++extern void check_global_variables(next_interesting_function_t cur_global);
++extern next_interesting_function_t get_and_create_next_node_from_global_next_nodes_fnptr(const_tree fn_ptr, struct fn_raw_data *raw_data);
++
++
++// size_overflow_debug.c
++extern void __unused print_intentional_mark(enum intentional_mark mark);
++extern unsigned int __unused size_overflow_dump_function(FILE *file, struct cgraph_node *node);
++extern void __unused print_next_interesting_functions_chain(next_interesting_function_t head, bool only_this);
++extern void __unused print_global_next_interesting_functions(void);
++extern void __unused print_children_chain_list(next_interesting_function_t next_node);
++extern void __unused print_all_next_node_children_chain_list(next_interesting_function_t next_node);
++extern const char * __unused print_so_mark_name(enum size_overflow_mark mark);
++extern const char * __unused print_intentional_mark_name(enum intentional_mark mark);
++extern void __unused print_next_interesting_function(next_interesting_function_t node);
++extern void __unused print_raw_data(struct fn_raw_data *data);
++
++#endif
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/size_overflow_debug.c b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_debug.c
+new file mode 100644
+index 0000000..7101094
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_debug.c
+@@ -0,0 +1,201 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++void __unused print_intentional_mark(enum intentional_mark mark)
++{
++      fprintf(stderr, "intentional mark: ");
++      switch (mark) {
++      case MARK_NO:
++              fprintf(stderr, "mark_no\n");
++              break;
++      case MARK_YES:
++              fprintf(stderr, "mark_yes\n");
++              break;
++      case MARK_TURN_OFF:
++              fprintf(stderr, "mark_turn_off\n");
++              break;
++      case MARK_END_INTENTIONAL:
++              fprintf(stderr, "mark_end_intentional\n");
++              break;
++      }
++}
++
++unsigned int __unused size_overflow_dump_function(FILE *file, struct cgraph_node *node)
++{
++      basic_block bb;
++
++      fprintf(file, "dump_function function_name: %s\n", cgraph_node_name(node));
++
++      fprintf(file, "\nstmts:\n");
++      FOR_EACH_BB_FN(bb, DECL_STRUCT_FUNCTION(NODE_DECL(node))) {
++              gimple_stmt_iterator si;
++
++              fprintf(file, "<bb %u>:\n", bb->index);
++              for (si = gsi_start_phis(bb); !gsi_end_p(si); gsi_next(&si))
++                      print_gimple_stmt(file, gsi_stmt(si), 0, TDF_VOPS|TDF_MEMSYMS);
++              for (si = gsi_start_bb(bb); !gsi_end_p(si); gsi_next(&si))
++                      print_gimple_stmt(file, gsi_stmt(si), 0, TDF_VOPS|TDF_MEMSYMS);
++              fprintf(file, "\n");
++      }
++
++      fprintf(file, "---------------------------------\n");
++
++      return 0;
++}
++
++void __unused print_next_interesting_function(next_interesting_function_t node)
++{
++      unsigned int i, children_len;
++      next_interesting_function_t cur;
++
++      if (!node)
++              return;
++
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, node->children))
++              children_len = 0;
++      else
++              children_len = VEC_length(next_interesting_function_t, node->children);
++#else
++      children_len = vec_safe_length(node->children);
++#endif
++
++      fprintf(stderr, "print_next_interesting_function: ptr: %p, ", node);
++      fprintf(stderr, "decl_name: %s, decl_type: %s, ", node->decl_name, get_decl_type_str(node->decl_type));
++
++      fprintf(stderr, "num: %u marked: %s context: %s children len: %u\n", node->num, print_so_mark_name(node->marked), node->context, children_len);
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, node->children))
++              return;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, node->children, i, cur) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(node->children, i, cur) {
++#endif
++              fprintf(stderr, "\t%u. child: %s %u %p marked: %s context: %s\n", i + 1, cur->decl_name, cur->num, cur, print_so_mark_name(cur->marked), cur->context);
++      }
++}
++
++// Dump the full next_interesting_function_t list for parsing by print_dependecy.py
++void __unused print_next_interesting_functions_chain(next_interesting_function_t head, bool only_this)
++{
++      next_interesting_function_t cur;
++      unsigned int len;
++
++      fprintf(stderr, "----------------------\nnext_interesting_function_t head: %p\n", head);
++      for (cur = head, len = 0; cur; cur = cur->next, len++) {
++              fprintf(stderr, "%u. ", len + 1);
++              print_next_interesting_function(cur);
++
++              fprintf(stderr, "+++++ has orig node: %p +++++\n", cur->orig_next_node);
++              print_next_interesting_function(cur->orig_next_node);
++
++              if (only_this)
++                      break;
++      }
++
++      fprintf(stderr, "len: %u\n----------------------\n\n\n", len + 1);
++}
++
++void __unused print_global_next_interesting_functions(void)
++{
++      unsigned int i;
++
++      fprintf(stderr, "----------------------\nprint_global_next_interesting_functions:\n----------------------\n");
++      for (i = 0; i < GLOBAL_NIFN_LEN; i++) {
++              if (!global_next_interesting_function[i])
++                      continue;
++              fprintf(stderr, "hash: %u\n", i);
++              print_next_interesting_functions_chain(global_next_interesting_function[i], false);
++      }
++      fprintf(stderr, "----------------------\n\n");
++}
++
++// Dump the information related to the specified next_interesting_function_t for parsing by print_dependecy.py
++void __unused print_children_chain_list(next_interesting_function_t next_node)
++{
++      next_interesting_function_t cur;
++      unsigned int i;
++
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, next_node->children))
++              return;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, next_node->children, i, cur) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(next_node->children, i, cur) {
++#endif
++              fprintf(stderr, "parent: %s %u (marked: %s) child: %s %u\n", next_node->decl_name, next_node->num, print_so_mark_name(next_node->marked), cur->decl_name, cur->num);
++              print_children_chain_list(cur);
++      }
++}
++
++void __unused print_all_next_node_children_chain_list(next_interesting_function_t head)
++{
++      next_interesting_function_t cur;
++
++      for (cur = head; cur; cur = cur->next) {
++#if BUILDING_GCC_VERSION <= 4007
++              if (VEC_empty(next_interesting_function_t, cur->children))
++#else
++              if (vec_safe_length(cur->children) == 0)
++#endif
++                      continue;
++              fprintf(stderr, "############ START ############\n");
++              print_children_chain_list(cur);
++              fprintf(stderr, "############ END ############\n");
++      }
++}
++
++const char * __unused print_intentional_mark_name(enum intentional_mark mark)
++{
++      switch(mark) {
++      case MARK_NO:
++              return "mark no";
++      case MARK_YES:
++              return "mark yes";
++      case MARK_END_INTENTIONAL:
++              return "mark end intetional";
++      case MARK_TURN_OFF:
++              return "mark turn off";
++      }
++
++      gcc_unreachable();
++}
++
++const char * __unused print_so_mark_name(enum size_overflow_mark mark)
++{
++      switch(mark) {
++      case ASM_STMT_SO_MARK:
++              return "asm_stmt_so_mark";
++      case YES_SO_MARK:
++              return "yes_so_mark";
++      case NO_SO_MARK:
++              return "no_so_mark";
++      }
++
++      gcc_unreachable();
++}
++
++void __unused print_raw_data(struct fn_raw_data *data)
++{
++      fprintf(stderr, "decl_str: %s, context: %s, num: %u, hash: %u\ndecl:\n", data->decl_str ? data->decl_str : "NULL", data->context ? data->context : "NULL", data->num, data->hash);
++      debug_tree(data->decl);
++      fprintf(stderr, "marked: %s, decl_type: %s\norig_decl_str: %s, orig_num: %u\n", print_so_mark_name(data->marked), get_decl_type_str(data->decl_type), data->orig_decl_str? data->orig_decl_str : "NULL", data->orig_num);
++}
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/size_overflow_ipa.c b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_ipa.c
+new file mode 100644
+index 0000000..c384be8
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_ipa.c
+@@ -0,0 +1,1286 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++#include <libgen.h>
++
++static void walk_use_def_next_functions(struct walk_use_def_data *use_def_data, tree lhs);
++
++next_interesting_function_t global_next_interesting_function[GLOBAL_NIFN_LEN];
++static bool global_changed;
++#define PRINT_DATA_FLOW true
++#define NO_PRINT_DATA_FLOW false
++
++static struct cgraph_node_hook_list *function_insertion_hook_holder;
++static struct cgraph_2node_hook_list *node_duplication_hook_holder;
++
++struct cgraph_node *get_cnode(const_tree fndecl)
++{
++      gcc_assert(TREE_CODE(fndecl) == FUNCTION_DECL);
++#if BUILDING_GCC_VERSION <= 4005
++      return cgraph_get_node(CONST_CAST_TREE(fndecl));
++#else
++      return cgraph_get_node(fndecl);
++#endif
++}
++
++static bool compare_next_interesting_functions(next_interesting_function_t cur_node, const char *decl_name, const char *context, unsigned int num)
++{
++      // Ignore num without a value
++      if (num != NONE_ARGNUM && cur_node->num != num)
++              return false;
++      if (strcmp(cur_node->context, context))
++              return false;
++      return !strcmp(cur_node->decl_name, decl_name);
++}
++
++// Return the context of vardecl. If it is in a file scope then the context is vardecl_filebasename
++static const char* get_vardecl_context(const_tree decl)
++{
++      expanded_location xloc;
++      char *buf, *path;
++      const char *bname;
++      int len;
++
++      xloc = expand_location(DECL_SOURCE_LOCATION(decl));
++      gcc_assert(xloc.file);
++      path = xstrdup(xloc.file);
++      bname = basename(path);
++
++      len = asprintf(&buf, "vardecl_%s", bname);
++      gcc_assert(len > 0);
++      return buf;
++}
++
++// Return the type name for a function pointer (or "fielddecl" if the type has no name), otherwise either "vardecl" or "fndecl"
++const char* get_decl_context(const_tree decl)
++{
++      switch (TREE_CODE(decl)) {
++      case FUNCTION_DECL:
++              return "fndecl";
++              // TODO: Ignore anonymous types for now
++      case FIELD_DECL:
++              return get_type_name_from_field(decl);
++      case VAR_DECL:
++              if (TREE_PUBLIC(decl) || DECL_EXTERNAL(decl))
++                      return "vardecl";
++              if (TREE_STATIC(decl) && !TREE_PUBLIC(decl))
++                      return get_vardecl_context(decl);
++              // ignore local variable
++              if (!TREE_STATIC(decl) && !DECL_EXTERNAL(decl))
++                      return NULL;
++      default:
++              debug_tree(decl);
++              gcc_unreachable();
++      }
++}
++
++// Find the function with the specified argument in the list
++next_interesting_function_t get_global_next_interesting_function_entry(struct fn_raw_data *raw_data)
++{
++      next_interesting_function_t cur_node, head;
++
++      gcc_assert(raw_data->hash != NO_HASH);
++      gcc_assert(raw_data->decl_str);
++      gcc_assert(raw_data->context);
++
++      head = global_next_interesting_function[raw_data->hash];
++      for (cur_node = head; cur_node; cur_node = cur_node->next) {
++              if (raw_data->marked != ASM_STMT_SO_MARK && cur_node->marked == ASM_STMT_SO_MARK)
++                      continue;
++              if (compare_next_interesting_functions(cur_node, raw_data->decl_str, raw_data->context, raw_data->num))
++                      return cur_node;
++      }
++      return NULL;
++}
++
++next_interesting_function_t get_global_next_interesting_function_entry_with_hash(struct fn_raw_data *raw_data)
++{
++      gcc_assert(raw_data->decl != NULL_TREE);
++      gcc_assert(raw_data->decl_str);
++
++      raw_data->hash = get_decl_hash(raw_data->decl, raw_data->decl_str);
++      if (raw_data->hash == NO_HASH)
++              return NULL;
++
++      if (!raw_data->context)
++              raw_data->context = get_decl_context(raw_data->decl);
++      if (!raw_data->context)
++              return NULL;
++      return get_global_next_interesting_function_entry(raw_data);
++}
++
++next_interesting_function_t create_new_next_interesting_entry(struct fn_raw_data *raw_data, next_interesting_function_t orig_next_node)
++{
++      next_interesting_function_t new_node;
++
++      gcc_assert(raw_data->decl_str);
++      gcc_assert(raw_data->context);
++      gcc_assert(raw_data->hash != NO_HASH);
++      gcc_assert(raw_data->num != NONE_ARGNUM);
++      gcc_assert(raw_data->decl_type != SO_NONE);
++
++      new_node = (next_interesting_function_t)xmalloc(sizeof(*new_node));
++      new_node->decl_name = xstrdup(raw_data->decl_str);
++
++      gcc_assert(raw_data->context);
++      new_node->context = xstrdup(raw_data->context);
++      new_node->hash = raw_data->hash;
++      new_node->num = raw_data->num;
++      new_node->next = NULL;
++      new_node->children = NULL;
++      new_node->marked = raw_data->marked;
++      new_node->orig_next_node = orig_next_node;
++      new_node->decl_type = raw_data->decl_type;
++
++      return new_node;
++}
++
++// Ignore these functions to not explode coverage (+strncmp+fndecl+3+35130+)
++static bool temporary_skip_these_functions(struct fn_raw_data *raw_data)
++{
++      gcc_assert(raw_data->hash != NO_HASH);
++      gcc_assert(raw_data->decl_str);
++
++      if (raw_data->hash == 35130 && !strcmp(raw_data->decl_str, "strncmp"))
++              return true;
++      if (raw_data->hash == 46193 && !strcmp(raw_data->decl_str, "strnlen"))
++              return true;
++      if (raw_data->hash == 43267 && !strcmp(raw_data->decl_str, "strncpy"))
++              return true;
++      if (raw_data->hash == 10300 && !strcmp(raw_data->decl_str, "strncpy_from_user"))
++              return true;
++      if (raw_data->hash == 26117 && !strcmp(raw_data->decl_str, "memchr"))
++              return true;
++      if (raw_data->hash == 16203 && !strcmp(raw_data->decl_str, "memchr_inv"))
++              return true;
++      if (raw_data->hash == 24269 && !strcmp(raw_data->decl_str, "memcmp"))
++              return true;
++      if (raw_data->hash == 60390 && !strcmp(raw_data->decl_str, "memcpy"))
++              return true;
++      if (raw_data->hash == 25040 && !strcmp(raw_data->decl_str, "memmove"))
++              return true;
++      if (raw_data->hash == 29763 && !strcmp(raw_data->decl_str, "memset"))
++              return true;
++      return false;
++}
++
++// Create the main data structure
++next_interesting_function_t create_new_next_interesting_decl(struct fn_raw_data *raw_data, next_interesting_function_t orig_next_node)
++{
++      enum tree_code decl_code;
++
++      if (raw_data->num == NONE_ARGNUM)
++              return NULL;
++
++      gcc_assert(raw_data->decl != NULL_TREE);
++      gcc_assert(raw_data->num != NONE_ARGNUM);
++      gcc_assert(raw_data->decl_str);
++
++      decl_code = TREE_CODE(raw_data->decl);
++
++      gcc_assert(decl_code == FIELD_DECL || decl_code == FUNCTION_DECL || decl_code == VAR_DECL);
++
++      if (is_vararg(raw_data->decl, raw_data->num))
++              return NULL;
++
++      raw_data->hash = get_decl_hash(raw_data->decl, raw_data->decl_str);
++      if (raw_data->hash == NO_HASH)
++              return NULL;
++
++      if (get_size_overflow_hash_entry_tree(raw_data, DISABLE_SIZE_OVERFLOW))
++              return NULL;
++      if (temporary_skip_these_functions(raw_data))
++              return NULL;
++
++      gcc_assert(raw_data->num <= MAX_PARAM);
++      // Clones must have an orig_next_node
++      gcc_assert(!made_by_compiler(raw_data->decl) || orig_next_node);
++
++      raw_data->context = get_decl_context(raw_data->decl);
++      if (!raw_data->context)
++              return NULL;
++
++      return create_new_next_interesting_entry(raw_data, orig_next_node);
++}
++
++void add_to_global_next_interesting_function(next_interesting_function_t new_entry)
++{
++      next_interesting_function_t cur_global_head, cur_global, cur_global_end = NULL;
++
++      // new_entry is appended to the end of a list
++      new_entry->next = NULL;
++
++      cur_global_head = global_next_interesting_function[new_entry->hash];
++      if (!cur_global_head) {
++              global_next_interesting_function[new_entry->hash] = new_entry;
++              return;
++      }
++
++
++      for (cur_global = cur_global_head; cur_global; cur_global = cur_global->next) {
++              if (!cur_global->next)
++                      cur_global_end = cur_global;
++
++              if (compare_next_interesting_functions(cur_global, new_entry->decl_name, new_entry->context, new_entry->num))
++                      return;
++      }
++
++      gcc_assert(cur_global_end);
++      cur_global_end->next = new_entry;
++}
++
++/* If the interesting function is a clone then find or create its original next_interesting_function_t node
++ * and add it to global_next_interesting_function
++ */
++static next_interesting_function_t create_orig_next_node_for_a_clone(struct fn_raw_data *clone_raw_data)
++{
++      struct fn_raw_data orig_raw_data;
++      next_interesting_function_t orig_next_node;
++      enum tree_code decl_code;
++
++      gcc_assert(clone_raw_data->decl != NULL_TREE);
++      gcc_assert(clone_raw_data->num != NONE_ARGNUM);
++      gcc_assert(clone_raw_data->decl_type != SO_NONE);
++
++      initialize_raw_data(&orig_raw_data);
++      orig_raw_data.decl = get_orig_fndecl(clone_raw_data->decl);
++
++      if (DECL_BUILT_IN(orig_raw_data.decl) || DECL_BUILT_IN_CLASS(orig_raw_data.decl) == BUILT_IN_NORMAL)
++              return NULL;
++
++      if (made_by_compiler(orig_raw_data.decl))
++              return NULL;
++
++      decl_code = TREE_CODE(orig_raw_data.decl);
++      if (decl_code == FIELD_DECL || decl_code == VAR_DECL)
++              orig_raw_data.num = clone_raw_data->num;
++      else
++              orig_raw_data.num = get_correct_argnum(clone_raw_data->decl, orig_raw_data.decl, clone_raw_data->num);
++
++      // Skip over ISRA.162 parm decls
++      if (orig_raw_data.num == CANNOT_FIND_ARG)
++              return NULL;
++
++      orig_raw_data.decl_str = get_orig_decl_name(orig_raw_data.decl);
++      orig_raw_data.marked = NO_SO_MARK;
++      orig_next_node = get_global_next_interesting_function_entry_with_hash(&orig_raw_data);
++      if (orig_next_node)
++              return orig_next_node;
++
++      orig_raw_data.marked = clone_raw_data->marked;
++      orig_raw_data.decl_type = clone_raw_data->decl_type;
++      orig_next_node = create_new_next_interesting_decl(&orig_raw_data, NULL);
++      if (!orig_next_node)
++              return NULL;
++
++      add_to_global_next_interesting_function(orig_next_node);
++      return orig_next_node;
++}
++
++// Find or create the next_interesting_function_t node for decl and num
++next_interesting_function_t get_and_create_next_node_from_global_next_nodes(struct fn_raw_data *raw_data, next_interesting_function_t orig_next_node)
++{
++      next_interesting_function_t cur_next_cnode;
++
++      gcc_assert(raw_data->decl != NULL_TREE);
++
++      if (DECL_NAME(raw_data->decl) == NULL_TREE)
++              return NULL;
++
++      raw_data->decl_str = DECL_NAME_POINTER(raw_data->decl);
++
++      cur_next_cnode = get_global_next_interesting_function_entry_with_hash(raw_data);
++      if (cur_next_cnode)
++              goto out;
++
++      if (!orig_next_node && made_by_compiler(raw_data->decl)) {
++              orig_next_node = create_orig_next_node_for_a_clone(raw_data);
++              if (!orig_next_node)
++                      return NULL;
++      }
++
++      cur_next_cnode = create_new_next_interesting_decl(raw_data, orig_next_node);
++      if (!cur_next_cnode)
++              return NULL;
++
++      add_to_global_next_interesting_function(cur_next_cnode);
++out:
++      if (cur_next_cnode->marked != raw_data->marked && cur_next_cnode->marked != NO_SO_MARK)
++              return cur_next_cnode;
++
++      if (raw_data->marked != NO_SO_MARK && cur_next_cnode->marked == NO_SO_MARK)
++              cur_next_cnode->marked = raw_data->marked;
++
++      return cur_next_cnode;
++}
++
++static bool has_next_interesting_function_chain_node(next_interesting_function_t next_cnodes_head, struct fn_raw_data *raw_data)
++{
++      next_interesting_function_t cur_node;
++
++      gcc_assert(!raw_data->context);
++
++      gcc_assert(raw_data->decl_str);
++      gcc_assert(raw_data->decl != NULL_TREE);
++      gcc_assert(raw_data->num != NONE_ARGNUM);
++
++      raw_data->context = get_decl_context(raw_data->decl);
++      // Ignore function if there is no context
++      if (!raw_data->context)
++              return true;
++
++      for (cur_node = next_cnodes_head; cur_node; cur_node = cur_node->next) {
++              if (compare_next_interesting_functions(cur_node, raw_data->decl_str, raw_data->context, raw_data->num))
++                      return true;
++      }
++      return false;
++}
++
++static void handle_function(struct walk_use_def_data *use_def_data, tree fndecl, const_tree arg)
++{
++      struct fn_raw_data raw_data;
++      next_interesting_function_t orig_next_node, new_node;
++
++      gcc_assert(fndecl != NULL_TREE);
++
++      // ignore builtins to not explode coverage (e.g., memcpy)
++      if (DECL_BUILT_IN(fndecl) || DECL_BUILT_IN_CLASS(fndecl) == BUILT_IN_NORMAL)
++              return;
++
++      if (get_intentional_attr_type(fndecl) == MARK_TURN_OFF)
++              return;
++
++      initialize_raw_data(&raw_data);
++      raw_data.decl = fndecl;
++      raw_data.decl_type = SO_FUNCTION;
++      raw_data.decl_str = DECL_NAME_POINTER(fndecl);
++      raw_data.marked = NO_SO_MARK;
++
++      // convert arg into its position
++      if (arg == NULL_TREE)
++              raw_data.num = 0;
++      else
++              raw_data.num = find_arg_number_tree(arg, raw_data.decl);
++      if (raw_data.num == CANNOT_FIND_ARG)
++              return;
++
++      if (has_next_interesting_function_chain_node(use_def_data->next_cnodes_head, &raw_data))
++              return;
++
++      if (made_by_compiler(raw_data.decl)) {
++              orig_next_node = create_orig_next_node_for_a_clone(&raw_data);
++              if (!orig_next_node)
++                      return;
++      } else
++              orig_next_node = NULL;
++
++      new_node = create_new_next_interesting_decl(&raw_data, orig_next_node);
++      if (!new_node)
++              return;
++      new_node->next = use_def_data->next_cnodes_head;
++      use_def_data->next_cnodes_head = new_node;
++}
++
++static void walk_use_def_next_functions_phi(struct walk_use_def_data *use_def_data, const_tree result)
++{
++      gphi *phi = as_a_gphi(get_def_stmt(result));
++      unsigned int i, n = gimple_phi_num_args(phi);
++
++      pointer_set_insert(use_def_data->visited, phi);
++      for (i = 0; i < n; i++) {
++              tree arg = gimple_phi_arg_def(phi, i);
++
++              walk_use_def_next_functions(use_def_data, arg);
++      }
++}
++
++static void walk_use_def_next_functions_binary(struct walk_use_def_data *use_def_data, const_tree lhs)
++{
++      gassign *def_stmt = as_a_gassign(get_def_stmt(lhs));
++      tree rhs1, rhs2;
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs2 = gimple_assign_rhs2(def_stmt);
++
++      walk_use_def_next_functions(use_def_data, rhs1);
++      walk_use_def_next_functions(use_def_data, rhs2);
++}
++
++static void walk_use_def_next_functions_unary(struct walk_use_def_data *use_def_data, const gassign *stmt)
++{
++      tree rhs1 = gimple_assign_rhs1(stmt);
++
++      walk_use_def_next_functions(use_def_data, rhs1);
++}
++
++void __attribute__((weak)) handle_function_ptr_ret(struct walk_use_def_data *use_def_data __unused, const_tree fn_ptr __unused)
++{
++}
++
++static void create_and_append_new_next_interesting_field_var_decl(struct walk_use_def_data *use_def_data, struct fn_raw_data *raw_data)
++{
++      next_interesting_function_t new_node;
++
++      if (raw_data->decl == NULL_TREE)
++              return;
++
++      if (DECL_NAME(raw_data->decl) == NULL_TREE)
++              return;
++
++      gcc_assert(!raw_data->decl_str);
++      gcc_assert(raw_data->num == NONE_ARGNUM);
++
++      raw_data->decl_str = DECL_NAME_POINTER(raw_data->decl);
++      raw_data->num = 0;
++      raw_data->marked = NO_SO_MARK;
++
++      new_node = create_new_next_interesting_decl(raw_data, NULL);
++      if (!new_node)
++              return;
++      new_node->next = use_def_data->next_cnodes_head;
++      use_def_data->next_cnodes_head = new_node;
++}
++
++static void handle_struct_fields(struct walk_use_def_data *use_def_data, const_tree node)
++{
++      struct fn_raw_data raw_data;
++
++      initialize_raw_data(&raw_data);
++
++      switch (TREE_CODE(node)) {
++      case ARRAY_REF:
++#if BUILDING_GCC_VERSION >= 4006
++      case MEM_REF:
++#endif
++      case INDIRECT_REF:
++      case COMPONENT_REF:
++              raw_data.decl = get_ref_field(node);
++              raw_data.decl_type = SO_FIELD;
++              break;
++      // TODO
++      case BIT_FIELD_REF:
++      case VIEW_CONVERT_EXPR:
++      case REALPART_EXPR:
++      case IMAGPART_EXPR:
++              return;
++      default:
++              debug_tree(node);
++              gcc_unreachable();
++      }
++
++      if (get_intentional_attr_type(raw_data.decl) == MARK_TURN_OFF)
++              return;
++
++      create_and_append_new_next_interesting_field_var_decl(use_def_data, &raw_data);
++}
++
++static void handle_vardecl(struct walk_use_def_data *use_def_data, tree node)
++{
++      struct fn_raw_data raw_data;
++
++      initialize_raw_data(&raw_data);
++
++      raw_data.decl = node;
++      raw_data.decl_type = SO_VAR;
++      create_and_append_new_next_interesting_field_var_decl(use_def_data, &raw_data);
++}
++
++/* Find all functions that influence lhs
++ *
++ * Encountered functions are added to the children vector (next_interesting_function_t).
++ */
++static void walk_use_def_next_functions(struct walk_use_def_data *use_def_data, tree lhs)
++{
++      enum tree_code code;
++      const_gimple def_stmt;
++
++      if (skip_types(lhs))
++              return;
++
++      if (VAR_P(lhs)) {
++              handle_vardecl(use_def_data, lhs);
++              return;
++      }
++
++      code = TREE_CODE(lhs);
++      if (code == PARM_DECL) {
++              handle_function(use_def_data, current_function_decl, lhs);
++              return;
++      }
++
++      if (TREE_CODE_CLASS(code) == tcc_reference) {
++              handle_struct_fields(use_def_data, lhs);
++              return;
++      }
++
++      if (code != SSA_NAME)
++              return;
++
++      def_stmt = get_def_stmt(lhs);
++      if (!def_stmt)
++              return;
++
++      if (pointer_set_insert(use_def_data->visited, def_stmt))
++              return;
++
++      switch (gimple_code(def_stmt)) {
++      case GIMPLE_NOP:
++              walk_use_def_next_functions(use_def_data, SSA_NAME_VAR(lhs));
++              return;
++      case GIMPLE_ASM:
++              if (!is_size_overflow_asm(def_stmt))
++                      return;
++              walk_use_def_next_functions(use_def_data, get_size_overflow_asm_input(as_a_const_gasm(def_stmt)));
++              return;
++      case GIMPLE_CALL: {
++              tree fndecl = gimple_call_fndecl(def_stmt);
++
++              if (fndecl != NULL_TREE) {
++                      handle_function(use_def_data, fndecl, NULL_TREE);
++                      return;
++              }
++              fndecl = gimple_call_fn(def_stmt);
++              handle_function_ptr_ret(use_def_data, fndecl);
++              return;
++      }
++      case GIMPLE_PHI:
++              walk_use_def_next_functions_phi(use_def_data, lhs);
++              return;
++      case GIMPLE_ASSIGN:
++              switch (gimple_num_ops(def_stmt)) {
++              case 2:
++                      walk_use_def_next_functions_unary(use_def_data, as_a_const_gassign(def_stmt));
++                      return;
++              case 3:
++                      walk_use_def_next_functions_binary(use_def_data, lhs);
++                      return;
++              }
++      default:
++              debug_gimple_stmt((gimple)def_stmt);
++              error("%s: unknown gimple code", __func__);
++              gcc_unreachable();
++      }
++}
++
++// Start the search for next_interesting_function_t children based on the (next_interesting_function_t) parent node
++static next_interesting_function_t search_next_functions(tree node, next_interesting_function_t parent)
++{
++      struct walk_use_def_data use_def_data;
++
++      use_def_data.parent = parent;
++      use_def_data.next_cnodes_head = NULL;
++      use_def_data.visited = pointer_set_create();
++
++      walk_use_def_next_functions(&use_def_data, node);
++
++      pointer_set_destroy(use_def_data.visited);
++      return use_def_data.next_cnodes_head;
++}
++
++// True if child already exists in the next_interesting_function_t children vector
++bool has_next_interesting_function_vec(next_interesting_function_t target, next_interesting_function_t next_node)
++{
++      unsigned int i;
++      next_interesting_function_t cur;
++
++      gcc_assert(next_node);
++      // handle recursion
++      if (!strcmp(target->decl_name, next_node->decl_name) && target->num == next_node->num)
++              return true;
++
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, target->children))
++              return false;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, target->children, i, cur) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(target->children, i, cur) {
++#endif
++              if (compare_next_interesting_functions(cur, next_node->decl_name, next_node->context, next_node->num))
++                      return true;
++      }
++      return false;
++}
++
++void push_child(next_interesting_function_t parent, next_interesting_function_t child)
++{
++      if (!has_next_interesting_function_vec(parent, child)) {
++#if BUILDING_GCC_VERSION <= 4007
++              VEC_safe_push(next_interesting_function_t, heap, parent->children, child);
++#else
++              vec_safe_push(parent->children, child);
++#endif
++      }
++}
++
++void __attribute__((weak)) check_local_variables(next_interesting_function_t next_node __unused) {}
++
++// Add children to parent and global_next_interesting_function
++static void collect_data_for_execute(next_interesting_function_t parent, next_interesting_function_t children)
++{
++      next_interesting_function_t cur = children;
++
++      gcc_assert(parent);
++
++      while (cur) {
++              struct fn_raw_data child_raw_data;
++              next_interesting_function_t next, child;
++
++              next = cur->next;
++
++              initialize_raw_data(&child_raw_data);
++              child_raw_data.decl_str = cur->decl_name;
++              child_raw_data.context = cur->context;
++              child_raw_data.hash = cur->hash;
++              child_raw_data.num = cur->num;
++              child_raw_data.marked = NO_SO_MARK;
++              child = get_global_next_interesting_function_entry(&child_raw_data);
++              if (!child) {
++                      add_to_global_next_interesting_function(cur);
++                      child = cur;
++              }
++
++              check_local_variables(child);
++
++              push_child(parent, child);
++
++              cur = next;
++      }
++
++      check_local_variables(parent);
++}
++
++next_interesting_function_t __attribute__((weak)) get_and_create_next_node_from_global_next_nodes_fnptr(const_tree fn_ptr __unused, struct fn_raw_data *raw_data __unused)
++{
++      return NULL;
++}
++
++static next_interesting_function_t create_parent_next_cnode(const_gimple stmt, unsigned int num)
++{
++      struct fn_raw_data raw_data;
++
++      initialize_raw_data(&raw_data);
++      raw_data.num = num;
++      raw_data.marked = NO_SO_MARK;
++      raw_data.decl_type = SO_FUNCTION;
++
++      switch (gimple_code(stmt)) {
++      case GIMPLE_ASM:
++              raw_data.decl = current_function_decl;
++              raw_data.marked = ASM_STMT_SO_MARK;
++              return get_and_create_next_node_from_global_next_nodes(&raw_data, NULL);
++      case GIMPLE_CALL:
++              raw_data.decl = gimple_call_fndecl(stmt);
++              if (raw_data.decl != NULL_TREE)
++                      return get_and_create_next_node_from_global_next_nodes(&raw_data, NULL);
++              raw_data.decl = gimple_call_fn(stmt);
++              return get_and_create_next_node_from_global_next_nodes_fnptr(raw_data.decl, &raw_data);
++      case GIMPLE_RETURN:
++              raw_data.decl = current_function_decl;
++              return get_and_create_next_node_from_global_next_nodes(&raw_data, NULL);
++      case GIMPLE_ASSIGN: {
++              tree lhs = gimple_assign_lhs(stmt);
++
++              if (VAR_P(lhs))
++                      raw_data.decl = lhs;
++              else
++                      raw_data.decl = get_ref_field(lhs);
++              if (raw_data.decl == NULL_TREE)
++                      return NULL;
++              return get_and_create_next_node_from_global_next_nodes(&raw_data, NULL);
++      }
++      default:
++              debug_gimple_stmt((gimple)stmt);
++              gcc_unreachable();
++      }
++}
++
++// Handle potential next_interesting_function_t parent if its argument has an integer type
++static void collect_all_possible_size_overflow_fns(const_gimple stmt, tree start_var, unsigned int num)
++{
++      next_interesting_function_t children_next_cnode, parent_next_cnode;
++
++      // skip void return values
++      if (start_var == NULL_TREE)
++              return;
++
++      if (skip_types(start_var))
++              return;
++
++      // handle intentional MARK_TURN_OFF
++      if (check_intentional_size_overflow_asm_and_attribute(start_var) == MARK_TURN_OFF)
++              return;
++
++      parent_next_cnode = create_parent_next_cnode(stmt, num);
++      if (!parent_next_cnode)
++              return;
++
++      children_next_cnode = search_next_functions(start_var, parent_next_cnode);
++      collect_data_for_execute(parent_next_cnode, children_next_cnode);
++}
++
++static void collect_all_possible_size_overflow_fields_and_vars(const gassign *assign)
++{
++      tree start_var, decl, lhs = gimple_assign_lhs(assign);
++
++      if (VAR_P(lhs))
++              decl = lhs;
++      else
++              decl = get_ref_field(lhs);
++      if (decl == NULL_TREE)
++              return;
++
++      if (get_intentional_attr_type(decl) == MARK_TURN_OFF)
++              return;
++
++      start_var = gimple_assign_rhs1(assign);
++      collect_all_possible_size_overflow_fns(assign, start_var, 0);
++
++      start_var = gimple_assign_rhs2(assign);
++      collect_all_possible_size_overflow_fns(assign, start_var, 0);
++
++#if BUILDING_GCC_VERSION >= 4006
++      start_var = gimple_assign_rhs3(assign);
++      collect_all_possible_size_overflow_fns(assign, start_var, 0);
++#endif
++}
++
++// Find potential next_interesting_function_t parents
++static void handle_cgraph_node(struct cgraph_node *node)
++{
++      basic_block bb;
++      tree cur_fndecl = NODE_DECL(node);
++
++      set_current_function_decl(cur_fndecl);
++
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      tree start_var;
++                      gimple stmt = gsi_stmt(gsi);
++
++                      switch (gimple_code(stmt)) {
++                      case GIMPLE_RETURN: {
++                              const greturn *return_stmt = as_a_const_greturn(stmt);
++
++                              start_var = gimple_return_retval(return_stmt);
++                              collect_all_possible_size_overflow_fns(return_stmt, start_var, 0);
++                              break;
++                      }
++                      case GIMPLE_ASM: {
++                              const gasm *asm_stmt = as_a_const_gasm(stmt);
++
++                              if (!is_size_overflow_insert_check_asm(asm_stmt))
++                                      break;
++                              start_var = get_size_overflow_asm_input(asm_stmt);
++                              collect_all_possible_size_overflow_fns(asm_stmt, start_var, 0);
++                              break;
++                      }
++                      case GIMPLE_CALL: {
++                              unsigned int i, len;
++                              const gcall *call = as_a_const_gcall(stmt);
++                              tree fndecl = gimple_call_fndecl(call);
++
++                              if (fndecl != NULL_TREE && (DECL_BUILT_IN(fndecl) || DECL_BUILT_IN_CLASS(fndecl) == BUILT_IN_NORMAL))
++                                      break;
++
++                              len = gimple_call_num_args(call);
++                              for (i = 0; i < len; i++) {
++                                      start_var = gimple_call_arg(call, i);
++                                      collect_all_possible_size_overflow_fns(call, start_var, i + 1);
++                              }
++                              break;
++                      }
++                      case GIMPLE_ASSIGN:
++                              collect_all_possible_size_overflow_fields_and_vars(as_a_const_gassign(stmt));
++                              break;
++                      default:
++                              break;
++                      }
++              }
++      }
++
++      unset_current_function_decl();
++}
++
++/* Collect all potentially interesting function parameters and return values of integer types
++ * and store their data flow dependencies
++ */
++static void size_overflow_generate_summary(void)
++{
++      struct cgraph_node *node;
++
++      size_overflow_register_hooks();
++
++      FOR_EACH_FUNCTION(node) {
++              if (is_valid_cgraph_node(node))
++                      handle_cgraph_node(node);
++      }
++}
++
++static void size_overflow_function_insertion_hook(struct cgraph_node *node __unused, void *data __unused)
++{
++      debug_cgraph_node(node);
++      gcc_unreachable();
++}
++
++/* Handle dst if src is in the global_next_interesting_function list.
++ * If src is a clone then dst inherits the orig_next_node of src otherwise
++ * src will become the orig_next_node of dst.
++ */
++static void size_overflow_node_duplication_hook(struct cgraph_node *src, struct cgraph_node *dst, void *data __unused)
++{
++      next_interesting_function_t head, cur;
++      struct fn_raw_data src_raw_data;
++
++      initialize_raw_data(&src_raw_data);
++      src_raw_data.decl = NODE_DECL(src);
++      src_raw_data.decl_str = DECL_NAME_POINTER(src_raw_data.decl);
++      src_raw_data.context = get_decl_context(src_raw_data.decl);
++      if (!src_raw_data.context)
++              return;
++
++      src_raw_data.num = NONE_ARGNUM;
++      src_raw_data.marked = NO_SO_MARK;
++
++      head = get_global_next_interesting_function_entry_with_hash(&src_raw_data);
++      if (!head)
++              return;
++
++      for (cur = head; cur; cur = cur->next) {
++              struct fn_raw_data dst_raw_data;
++              next_interesting_function_t orig_next_node, next_node;
++
++              if (!compare_next_interesting_functions(cur, src_raw_data.decl_str, src_raw_data.context, src_raw_data.num))
++                      continue;
++
++              initialize_raw_data(&dst_raw_data);
++              dst_raw_data.decl = NODE_DECL(dst);
++              dst_raw_data.decl_str = cgraph_node_name(dst);
++              dst_raw_data.marked = cur->marked;
++              dst_raw_data.decl_type = cur->decl_type;
++
++              if (!made_by_compiler(dst_raw_data.decl))
++                      break;
++
++              // For clones use the original node instead
++              if (cur->orig_next_node)
++                      orig_next_node = cur->orig_next_node;
++              else
++                      orig_next_node = cur;
++
++              dst_raw_data.num = get_correct_argnum_fndecl(src_raw_data.decl, dst_raw_data.decl, cur->num);
++              if (dst_raw_data.num == CANNOT_FIND_ARG)
++                      continue;
++
++              next_node = create_new_next_interesting_decl(&dst_raw_data, orig_next_node);
++              if (next_node)
++                      add_to_global_next_interesting_function(next_node);
++      }
++}
++
++void size_overflow_register_hooks(void)
++{
++      static bool init_p = false;
++
++      if (init_p)
++              return;
++      init_p = true;
++
++      function_insertion_hook_holder = cgraph_add_function_insertion_hook(&size_overflow_function_insertion_hook, NULL);
++      node_duplication_hook_holder = cgraph_add_node_duplication_hook(&size_overflow_node_duplication_hook, NULL);
++}
++
++static void set_yes_so_mark(next_interesting_function_t next_node)
++{
++      if (next_node->marked == NO_SO_MARK) {
++              next_node->marked = YES_SO_MARK;
++              global_changed = true;
++      }
++      // Mark the orig decl as well if it's a clone
++      if (next_node->orig_next_node && next_node->orig_next_node->marked == NO_SO_MARK) {
++              next_node->orig_next_node->marked = YES_SO_MARK;
++              global_changed = true;
++      }
++}
++
++// Determine whether node or orig node is part of a tracked data flow
++static bool marked_fn(next_interesting_function_t next_node)
++{
++      bool is_marked_fn, is_marked_orig = false;
++
++      is_marked_fn = next_node->marked != NO_SO_MARK;
++
++      if (next_node->orig_next_node)
++              is_marked_orig = next_node->orig_next_node->marked != NO_SO_MARK;
++
++      return is_marked_fn || is_marked_orig;
++}
++
++// Determine whether node or orig node is in the hash table already
++static bool already_in_the_hashtable(next_interesting_function_t next_node)
++{
++      struct fn_raw_data raw_data;
++
++      if (next_node->orig_next_node)
++              next_node = next_node->orig_next_node;
++
++      initialize_raw_data(&raw_data);
++      raw_data.context = next_node->context;
++      raw_data.orig_decl_str = next_node->decl_name;
++      raw_data.orig_num = next_node->num;
++      raw_data.hash = next_node->hash;
++
++      return get_size_overflow_hash_entry(&raw_data) != NULL;
++}
++
++// Propagate the size_overflow marks up the use-def chains
++static bool has_marked_child(next_interesting_function_t next_node)
++{
++      bool ret = false;
++      unsigned int i;
++      next_interesting_function_t child;
++
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, next_node->children))
++              return false;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, next_node->children, i, child) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(next_node->children, i, child) {
++#endif
++              if (marked_fn(child) || already_in_the_hashtable(child))
++                      ret = true;
++      }
++
++      return ret;
++}
++
++/* Set YES_SO_MARK on the function, its orig node and children if:
++ *      * the function or its orig node or one of its children is in the hash table already
++ *      * the function's orig node is marked with YES_SO_MARK or ASM_STMT_SO_MARK
++ *      * one of the children is marked with YES_SO_MARK or ASM_STMT_SO_MARK
++ */
++static bool set_fn_so_mark(next_interesting_function_t next_node)
++{
++      bool so_fn, so_hashtable, so_child;
++
++      so_hashtable = already_in_the_hashtable(next_node);
++      so_fn = marked_fn(next_node);
++      so_child = has_marked_child(next_node);
++
++      if (!so_fn && !so_hashtable && !so_child)
++              return false;
++      set_yes_so_mark(next_node);
++      return true;
++}
++
++// Determine if any of the function pointer targets have data flow between the return value and one of the arguments
++static next_interesting_function_t get_same_not_ret_child(next_interesting_function_t parent)
++{
++      unsigned int i;
++      next_interesting_function_t child;
++
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, parent->children))
++              return NULL;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, parent->children, i, child) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(parent->children, i, child) {
++#endif
++              if (child->num == 0)
++                      continue;
++              if (strcmp(parent->decl_name, child->decl_name))
++                      continue;
++              if (!strcmp(child->context, "fndecl"))
++                      return child;
++      }
++      return NULL;
++}
++
++/* Trace a return value of function pointer type back to an argument via a concrete function
++   fnptr 0 && fn 0 && (fn 0 -> fn 2) => fnptr 2 */
++static void search_missing_fptr_arg(next_interesting_function_t parent)
++{
++      next_interesting_function_t child;
++      unsigned int i;
++#if BUILDING_GCC_VERSION <= 4007
++      VEC(next_interesting_function_t, heap) *new_children = NULL;
++#else
++      vec<next_interesting_function_t, va_heap, vl_embed> *new_children = NULL;
++#endif
++
++      if (parent->num != 0)
++              return;
++      if (!strcmp(parent->context, "fndecl"))
++              return;
++      if (!strncmp(parent->context, "vardecl", sizeof("vardecl") - 1))
++              return;
++
++      // fnptr 0 && fn 0
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, parent->children))
++              return;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, parent->children, i, child) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(parent->children, i, child) {
++#endif
++              next_interesting_function_t cur_next_node, tracked_fn;
++
++              if (child->num != 0)
++                      continue;
++              // (fn 0 -> fn 2)
++              tracked_fn = get_same_not_ret_child(child);
++              if (!tracked_fn)
++                      continue;
++
++              // fn 2 => fnptr 2
++              for (cur_next_node = global_next_interesting_function[parent->hash]; cur_next_node; cur_next_node = cur_next_node->next) {
++                      if (cur_next_node->num != tracked_fn->num)
++                              continue;
++
++                      if (strcmp(parent->decl_name, cur_next_node->decl_name))
++                              continue;
++
++                      if (!has_next_interesting_function_vec(parent, cur_next_node)) {
++#if BUILDING_GCC_VERSION <= 4007
++                              VEC_safe_push(next_interesting_function_t, heap, new_children, cur_next_node);
++#else
++                              vec_safe_push(new_children, cur_next_node);
++#endif
++                      }
++              }
++      }
++
++#if BUILDING_GCC_VERSION == 4005
++      if (VEC_empty(next_interesting_function_t, new_children))
++              return;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, new_children, i, child)
++              VEC_safe_push(next_interesting_function_t, heap, parent->children, child);
++#elif BUILDING_GCC_VERSION <= 4007
++      VEC_safe_splice(next_interesting_function_t, heap, parent->children, new_children);
++#else
++      vec_safe_splice(parent->children, new_children);
++#endif
++}
++
++static void walk_so_marked_fns(next_interesting_function_set *visited, next_interesting_function_t parent, bool debug)
++{
++      unsigned int i;
++      next_interesting_function_t child;
++
++      gcc_assert(parent);
++      if (!set_fn_so_mark(parent))
++              return;
++
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, parent->children))
++              return;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, parent->children, i, child) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(parent->children, i, child) {
++#endif
++              set_yes_so_mark(child);
++
++              if (in_lto_p && debug == PRINT_DATA_FLOW) {
++                      fprintf(stderr, " PARENT: decl: %s-%u context: %s %p\n", parent->decl_name, parent->num, parent->context, parent);
++                      fprintf(stderr, " \tCHILD: decl: %s-%u context: %s %p\n", child->decl_name, child->num, child->context, child);
++              }
++
++              if (!pointer_set_insert(visited, child))
++                      walk_so_marked_fns(visited, child, debug);
++      }
++}
++
++// Do a depth-first recursive dump of the next_interesting_function_t children vector
++static void print_missing_functions(next_interesting_function_set *visited, next_interesting_function_t parent)
++{
++      unsigned int i;
++      next_interesting_function_t child;
++
++      gcc_assert(parent);
++      gcc_assert(parent->marked != NO_SO_MARK);
++      print_missing_function(parent);
++
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, parent->children))
++              return;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, parent->children, i, child) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(parent->children, i, child) {
++#endif
++              gcc_assert(child->marked != NO_SO_MARK);
++              if (!pointer_set_insert(visited, child))
++                      print_missing_functions(visited, child);
++      }
++}
++
++// Set YES_SO_MARK on functions that will be emitted into the hash table
++static void search_so_marked_fns(bool debug)
++{
++
++      unsigned int i;
++      next_interesting_function_set *visited;
++      next_interesting_function_t cur_global;
++
++      visited = next_interesting_function_pointer_set_create();
++      for (i = 0; i < GLOBAL_NIFN_LEN; i++) {
++              for (cur_global = global_next_interesting_function[i]; cur_global; cur_global = cur_global->next) {
++                      if (cur_global->marked == NO_SO_MARK || pointer_set_insert(visited, cur_global))
++                              continue;
++
++                      if  (in_lto_p && debug == PRINT_DATA_FLOW)
++                              fprintf(stderr, "Data flow: decl: %s-%u context: %s %p\n", cur_global->decl_name, cur_global->num, cur_global->context, cur_global);
++
++                      walk_so_marked_fns(visited, cur_global, debug);
++
++                      if  (in_lto_p && debug == PRINT_DATA_FLOW)
++                              fprintf(stderr, "\n");
++              }
++      }
++      pointer_set_destroy(visited);
++}
++
++static void walk_marked_functions(next_interesting_function_set *visited, next_interesting_function_t parent)
++{
++      unsigned int i;
++      next_interesting_function_t child;
++
++      if (pointer_set_insert(visited, parent))
++              return;
++
++#if BUILDING_GCC_VERSION <= 4007
++      if (VEC_empty(next_interesting_function_t, parent->children))
++              return;
++      FOR_EACH_VEC_ELT(next_interesting_function_t, parent->children, i, child) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(parent->children, i, child) {
++#endif
++              switch (parent->decl_type) {
++              case SO_FIELD:
++                      child->decl_type = SO_FIELD;
++                      gcc_assert(child->decl_type != SO_FUNCTION_POINTER);
++                      break;
++              case SO_FUNCTION_POINTER:
++                      child->decl_type = SO_FUNCTION_POINTER;
++                      gcc_assert(child->decl_type != SO_FIELD);
++                      break;
++              case SO_FUNCTION:
++              case SO_VAR:
++                      break;
++              default:
++                      gcc_unreachable();
++              }
++
++              walk_marked_functions(visited, child);
++      }
++}
++
++static void set_base_decl_type(void)
++{
++      unsigned int i;
++      next_interesting_function_set *visited;
++      next_interesting_function_t cur;
++
++      visited = next_interesting_function_pointer_set_create();
++      for (i = 0; i < GLOBAL_NIFN_LEN; i++) {
++              for (cur = global_next_interesting_function[i]; cur; cur = cur->next) {
++                      if (cur->marked == ASM_STMT_SO_MARK && !pointer_set_contains(visited, cur))
++                              walk_marked_functions(visited, cur);
++              }
++      }
++      pointer_set_destroy(visited);
++}
++
++// Print functions missing from the hash table
++static void print_so_marked_fns(void)
++{
++      unsigned int i;
++      next_interesting_function_set *visited;
++      next_interesting_function_t cur_global;
++
++      visited = next_interesting_function_pointer_set_create();
++      for (i = 0; i < GLOBAL_NIFN_LEN; i++) {
++              for (cur_global = global_next_interesting_function[i]; cur_global; cur_global = cur_global->next) {
++                      if (cur_global->marked != NO_SO_MARK && !pointer_set_insert(visited, cur_global))
++                              print_missing_functions(visited, cur_global);
++              }
++      }
++      pointer_set_destroy(visited);
++}
++
++void __attribute__((weak)) check_global_variables(next_interesting_function_t cur_global __unused) {}
++
++// Print all missing interesting functions
++static unsigned int size_overflow_execute(void)
++{
++      unsigned int i;
++      next_interesting_function_t cur_global;
++
++      if (flag_lto && !in_lto_p)
++              return 0;
++
++      // Collect vardecls and funtions reachable by function pointers
++      for (i = 0; i < GLOBAL_NIFN_LEN; i++) {
++              for (cur_global = global_next_interesting_function[i]; cur_global; cur_global = cur_global->next) {
++                      check_global_variables(cur_global);
++                      search_missing_fptr_arg(cur_global);
++              }
++      }
++
++      search_so_marked_fns(PRINT_DATA_FLOW);
++      while (global_changed) {
++              global_changed = false;
++              search_so_marked_fns(NO_PRINT_DATA_FLOW);
++      }
++
++      set_base_decl_type();
++
++      print_so_marked_fns();
++
++      if (in_lto_p) {
++              fprintf(stderr, "%s: SIZE_OVERFLOW EXECUTE\n", __func__);
++              print_global_next_interesting_functions();
++      }
++
++      return 0;
++}
++
++// Omit the IPA/LTO callbacks until https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61311 gets fixed (license concerns)
++#if BUILDING_GCC_VERSION >= 4008
++void __attribute__((weak)) size_overflow_write_summary(void) {}
++void __attribute__((weak)) size_overflow_write_optimization_summary(void) {}
++#elif BUILDING_GCC_VERSION >= 4006
++void __attribute__((weak)) size_overflow_write_summary(cgraph_node_set set __unused, varpool_node_set vset __unused) {}
++void __attribute__((weak)) size_overflow_write_optimization_summary(cgraph_node_set set __unused, varpool_node_set vset __unused) {}
++#else
++void __attribute__((weak)) size_overflow_write_summary(cgraph_node_set set __unused) {}
++void __attribute__((weak)) size_overflow_write_optimization_summary(cgraph_node_set set __unused) {}
++#endif
++
++void __attribute__((weak)) size_overflow_read_summary(void);
++void __attribute__((weak)) size_overflow_read_optimization_summary(void);
++
++#define PASS_NAME size_overflow
++
++#define NO_STMT_FIXUP
++#define NO_VARIABLE_TRANSFORM
++#define NO_GATE
++
++#include "gcc-generate-ipa-pass.h"
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/size_overflow_misc.c b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_misc.c
+new file mode 100644
+index 0000000..b5291e1
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_misc.c
+@@ -0,0 +1,505 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++bool is_vararg(const_tree fn, unsigned int num)
++{
++      tree arg_list;
++
++      if (num == 0)
++              return false;
++      if (fn == NULL_TREE)
++              return false;
++      if (TREE_CODE(fn) != FUNCTION_DECL)
++              return false;
++
++      arg_list = TYPE_ARG_TYPES(TREE_TYPE(fn));
++      if (arg_list == NULL_TREE)
++              return false;
++
++      if (tree_last(arg_list) == void_list_node)
++              return false;
++
++      return num >= (unsigned int)list_length(arg_list);
++}
++
++// Extract the field decl from memory references
++tree get_ref_field(const_tree ref)
++{
++      tree field;
++
++      // TODO: handle nested memory references
++      switch (TREE_CODE(ref)) {
++      case ARRAY_REF:
++              return NULL_TREE;
++#if BUILDING_GCC_VERSION >= 4006
++      case MEM_REF:
++#endif
++      case INDIRECT_REF:
++              field = TREE_OPERAND(ref, 0);
++              break;
++      case COMPONENT_REF:
++              field = TREE_OPERAND(ref, 1);
++              break;
++      default:
++              return NULL_TREE;
++      }
++
++      // TODO
++      if (TREE_CODE(field) == SSA_NAME)
++              return NULL_TREE;
++      // TODO
++      if (TREE_CODE(field) != FIELD_DECL)
++              return NULL_TREE;
++      // TODO
++      if (TREE_CODE(field) == ADDR_EXPR)
++              return NULL_TREE;
++
++      return field;
++}
++
++const char *get_type_name_from_field(const_tree field_decl)
++{
++      const_tree context, type_name;
++
++      if (TREE_CODE(field_decl) != FIELD_DECL)
++              return NULL;
++
++      context = DECL_CONTEXT(field_decl);
++      // TODO
++      if (TREE_CODE(context) != RECORD_TYPE)
++              return NULL;
++      gcc_assert(TREE_CODE(context) == RECORD_TYPE);
++      type_name = TYPE_NAME(TYPE_MAIN_VARIANT(context));
++      if (type_name == NULL_TREE)
++              return NULL;
++
++      if (TREE_CODE(type_name) == IDENTIFIER_NODE)
++              return IDENTIFIER_POINTER(type_name);
++      else if (TREE_CODE(type_name) == TYPE_DECL)
++              return DECL_NAME_POINTER(type_name);
++
++      debug_tree(field_decl);
++      debug_tree(type_name);
++      gcc_unreachable();
++}
++
++// Was the function created by the compiler itself?
++bool made_by_compiler(const_tree decl)
++{
++      enum tree_code decl_code;
++      struct cgraph_node *node;
++
++      if (FUNCTION_PTR_P(decl))
++              return false;
++      decl_code = TREE_CODE(decl);
++      if (decl_code == VAR_DECL || decl_code == FIELD_DECL)
++              return false;
++
++      gcc_assert(decl_code == FUNCTION_DECL);
++      if (DECL_ABSTRACT_ORIGIN(decl) != NULL_TREE && DECL_ABSTRACT_ORIGIN(decl) != decl)
++              return true;
++      if (DECL_ARTIFICIAL(decl))
++              return true;
++
++      node = get_cnode(decl);
++      if (!node)
++              return false;
++      return node->clone_of != NULL;
++}
++
++bool skip_types(const_tree var)
++{
++      const_tree type;
++
++      type = TREE_TYPE(var);
++      if (type == NULL_TREE)
++              return true;
++
++      switch (TREE_CODE(type)) {
++              case INTEGER_TYPE:
++              case ENUMERAL_TYPE:
++                      return false;
++              default:
++                      return true;
++      }
++}
++
++gimple get_fnptr_def_stmt(const_tree fn_ptr)
++{
++      gimple def_stmt;
++
++      gcc_assert(fn_ptr != NULL_TREE);
++      gcc_assert(FUNCTION_PTR_P(fn_ptr));
++
++      if (is_gimple_constant(fn_ptr))
++              return NULL;
++
++      def_stmt = get_def_stmt(fn_ptr);
++      gcc_assert(def_stmt);
++      return def_stmt;
++}
++
++gimple get_def_stmt(const_tree node)
++{
++      gcc_assert(node != NULL_TREE);
++
++      if (TREE_CODE(node) != SSA_NAME)
++              return NULL;
++      return SSA_NAME_DEF_STMT(node);
++}
++
++tree create_new_var(tree type)
++{
++      tree new_var = create_tmp_var(type, "cicus");
++
++      add_referenced_var(new_var);
++      return new_var;
++}
++
++static bool skip_cast(tree dst_type, const_tree rhs, bool force)
++{
++      const_gimple def_stmt = get_def_stmt(rhs);
++
++      if (force)
++              return false;
++
++      if (is_gimple_constant(rhs))
++              return false;
++
++      if (!def_stmt || gimple_code(def_stmt) == GIMPLE_NOP)
++              return false;
++
++      if (!types_compatible_p(dst_type, TREE_TYPE(rhs)))
++              return false;
++
++      // DI type can be on 32 bit (from create_assign) but overflow type stays DI
++      if (LONG_TYPE_SIZE == GET_MODE_BITSIZE(SImode))
++              return false;
++
++      return true;
++}
++
++tree cast_a_tree(tree type, tree var)
++{
++      gcc_assert(type != NULL_TREE);
++      gcc_assert(var != NULL_TREE);
++      gcc_assert(fold_convertible_p(type, var));
++
++      return fold_convert(type, var);
++}
++
++gimple build_cast_stmt(struct visited *visited, tree dst_type, tree rhs, tree lhs, gimple_stmt_iterator *gsi, bool before, bool force)
++{
++      gassign *assign;
++      gimple def_stmt;
++
++      gcc_assert(dst_type != NULL_TREE && rhs != NULL_TREE);
++      gcc_assert(!is_gimple_constant(rhs));
++      if (gsi_end_p(*gsi) && before == AFTER_STMT)
++              gcc_unreachable();
++
++      def_stmt = get_def_stmt(rhs);
++      if (def_stmt && gimple_code(def_stmt) != GIMPLE_NOP && skip_cast(dst_type, rhs, force) && pointer_set_contains(visited->my_stmts, def_stmt))
++              return def_stmt;
++
++      if (lhs == CREATE_NEW_VAR)
++              lhs = create_new_var(dst_type);
++
++      assign = gimple_build_assign(lhs, cast_a_tree(dst_type, rhs));
++
++      if (!gsi_end_p(*gsi)) {
++              location_t loc = gimple_location(gsi_stmt(*gsi));
++              gimple_set_location(assign, loc);
++      }
++
++      gimple_assign_set_lhs(assign, make_ssa_name(lhs, assign));
++
++      if (before)
++              gsi_insert_before(gsi, assign, GSI_NEW_STMT);
++      else
++              gsi_insert_after(gsi, assign, GSI_NEW_STMT);
++      update_stmt(assign);
++      return assign;
++}
++
++bool is_size_overflow_type(const_tree var)
++{
++      const char *name;
++      const_tree type_name, type;
++
++      if (var == NULL_TREE)
++              return false;
++
++      type = TREE_TYPE(var);
++      type_name = TYPE_NAME(type);
++      if (type_name == NULL_TREE)
++              return false;
++
++      if (DECL_P(type_name))
++              name = DECL_NAME_POINTER(type_name);
++      else
++              name = IDENTIFIER_POINTER(type_name);
++
++      if (!strncmp(name, "size_overflow_type", 18))
++              return true;
++      return false;
++}
++
++// Determine if a cloned function has all the original arguments
++static bool unchanged_arglist(struct cgraph_node *new_node, struct cgraph_node *old_node)
++{
++      const_tree new_decl_list, old_decl_list;
++
++      if (new_node->clone_of && new_node->clone.tree_map)
++              return !new_node->clone.args_to_skip;
++
++      new_decl_list = DECL_ARGUMENTS(NODE_DECL(new_node));
++      old_decl_list = DECL_ARGUMENTS(NODE_DECL(old_node));
++      if (new_decl_list != NULL_TREE && old_decl_list != NULL_TREE)
++              gcc_assert(list_length(new_decl_list) == list_length(old_decl_list));
++
++      return true;
++}
++
++unsigned int get_correct_argnum_fndecl(const_tree fndecl, const_tree correct_argnum_of_fndecl, unsigned int num)
++{
++      unsigned int new_num;
++      const_tree fndecl_arg;
++      tree fndecl_arglist = DECL_ARGUMENTS(fndecl);
++      const_tree arg, target_fndecl_arglist;
++
++      if (num == 0)
++              return num;
++
++      if (fndecl == correct_argnum_of_fndecl && !DECL_ARTIFICIAL(fndecl))
++              return num;
++      else if (fndecl == correct_argnum_of_fndecl && DECL_ARTIFICIAL(fndecl))
++              return CANNOT_FIND_ARG;
++
++      target_fndecl_arglist = DECL_ARGUMENTS(correct_argnum_of_fndecl);
++      if (fndecl_arglist == NULL_TREE || target_fndecl_arglist == NULL_TREE)
++              return CANNOT_FIND_ARG;
++
++      fndecl_arg = chain_index(num - 1, fndecl_arglist);
++      if (fndecl_arg == NULL_TREE)
++              return CANNOT_FIND_ARG;
++
++      for (arg = target_fndecl_arglist, new_num = 1; arg; arg = TREE_CHAIN(arg), new_num++) {
++              if (arg == fndecl_arg || !strcmp(DECL_NAME_POINTER(arg), DECL_NAME_POINTER(fndecl_arg)))
++                      return new_num;
++      }
++
++      return CANNOT_FIND_ARG;
++}
++
++// Find the specified argument in the originally cloned function
++static unsigned int clone_argnum_on_orig(struct cgraph_node *new_node, struct cgraph_node *old_node, unsigned int clone_argnum)
++{
++      bitmap args_to_skip;
++      unsigned int i, new_argnum = clone_argnum;
++
++      if (unchanged_arglist(new_node, old_node))
++              return clone_argnum;
++
++      gcc_assert(new_node->clone_of && new_node->clone.tree_map);
++      args_to_skip = new_node->clone.args_to_skip;
++      for (i = 0; i < clone_argnum; i++) {
++              if (bitmap_bit_p(args_to_skip, i))
++                      new_argnum++;
++      }
++      return new_argnum;
++}
++
++// Find the specified argument in the clone
++static unsigned int orig_argnum_on_clone(struct cgraph_node *new_node, struct cgraph_node *old_node, unsigned int orig_argnum)
++{
++      bitmap args_to_skip;
++      unsigned int i, new_argnum = orig_argnum;
++
++      if (unchanged_arglist(new_node, old_node))
++              return orig_argnum;
++
++      gcc_assert(new_node->clone_of && new_node->clone.tree_map);
++      args_to_skip = new_node->clone.args_to_skip;
++      if (bitmap_bit_p(args_to_skip, orig_argnum - 1))
++              // XXX torolni kellene a nodeot
++              return CANNOT_FIND_ARG;
++
++      for (i = 0; i < orig_argnum; i++) {
++              if (bitmap_bit_p(args_to_skip, i))
++                      new_argnum--;
++      }
++      return new_argnum;
++}
++
++// Associate the argument between a clone and a cloned function
++static unsigned int get_correct_argnum_cnode(struct cgraph_node *node, struct cgraph_node *correct_argnum_of_node, unsigned int argnum)
++{
++      bool node_clone, correct_argnum_of_node_clone;
++      const_tree correct_argnum_of_node_decl, node_decl;
++
++      if (node == correct_argnum_of_node)
++              return argnum;
++      if (argnum == 0)
++              return argnum;
++
++      correct_argnum_of_node_decl = NODE_DECL(correct_argnum_of_node);
++      gcc_assert(correct_argnum_of_node_decl != NULL_TREE);
++      gcc_assert(correct_argnum_of_node && !DECL_ARTIFICIAL(correct_argnum_of_node_decl));
++
++      if (node) {
++              node_decl = NODE_DECL(node);
++              gcc_assert(!DECL_ARTIFICIAL(node_decl));
++              node_clone = made_by_compiler(node_decl);
++      } else {
++              node_decl = NULL_TREE;
++              node_clone = false;
++      }
++
++      if (correct_argnum_of_node_decl == node_decl)
++              return argnum;
++
++      correct_argnum_of_node_clone = made_by_compiler(correct_argnum_of_node_decl);
++      // the original decl is lost if both nodes are clones
++      if (node_clone && correct_argnum_of_node_clone) {
++              gcc_assert(unchanged_arglist(node, correct_argnum_of_node));
++              return argnum;
++      }
++
++      if (node_clone && !correct_argnum_of_node_clone)
++              return clone_argnum_on_orig(correct_argnum_of_node, node, argnum);
++      else if (!node_clone && correct_argnum_of_node_clone)
++              return orig_argnum_on_clone(correct_argnum_of_node, node, argnum);
++
++      if (node)
++              debug_tree(NODE_DECL(node));
++      debug_tree(correct_argnum_of_node_decl);
++      gcc_unreachable();
++}
++
++unsigned int get_correct_argnum(const_tree decl, const_tree correct_argnum_of_decl, unsigned int argnum)
++{
++      struct cgraph_node *node, *correct_argnum_of_node;
++
++      gcc_assert(decl != NULL_TREE);
++      gcc_assert(correct_argnum_of_decl != NULL_TREE);
++
++      correct_argnum_of_node = get_cnode(correct_argnum_of_decl);
++      if (!correct_argnum_of_node || DECL_ARTIFICIAL(decl) || DECL_ARTIFICIAL(correct_argnum_of_decl))
++              return get_correct_argnum_fndecl(decl, correct_argnum_of_decl, argnum);
++
++      node = get_cnode(decl);
++      return get_correct_argnum_cnode(node, correct_argnum_of_node, argnum);
++}
++
++// Find the original cloned function
++tree get_orig_fndecl(const_tree clone_fndecl)
++{
++      struct cgraph_node *node;
++
++      gcc_assert(TREE_CODE(clone_fndecl) == FUNCTION_DECL);
++
++      if (DECL_ABSTRACT_ORIGIN(clone_fndecl))
++              return CONST_CAST_TREE(DECL_ABSTRACT_ORIGIN(clone_fndecl));
++      node = get_cnode(clone_fndecl);
++      if (!node)
++              return CONST_CAST_TREE(clone_fndecl);
++
++      while (node->clone_of)
++              node = node->clone_of;
++      if (!made_by_compiler(NODE_DECL(node)))
++              return NODE_DECL(node);
++      // Return the cloned decl because it is needed for the transform callback
++      return CONST_CAST_TREE(clone_fndecl);
++}
++
++static tree get_interesting_fndecl_from_stmt(const gcall *stmt)
++{
++      if (gimple_call_num_args(stmt) == 0)
++              return NULL_TREE;
++      return gimple_call_fndecl(stmt);
++}
++
++tree get_interesting_orig_fndecl_from_stmt(const gcall *stmt)
++{
++      tree fndecl;
++
++      fndecl = get_interesting_fndecl_from_stmt(stmt);
++      if (fndecl == NULL_TREE)
++              return NULL_TREE;
++      return get_orig_fndecl(fndecl);
++}
++
++void set_dominance_info(void)
++{
++      calculate_dominance_info(CDI_DOMINATORS);
++      calculate_dominance_info(CDI_POST_DOMINATORS);
++}
++
++void unset_dominance_info(void)
++{
++      free_dominance_info(CDI_DOMINATORS);
++      free_dominance_info(CDI_POST_DOMINATORS);
++}
++
++void set_current_function_decl(tree fndecl)
++{
++      gcc_assert(fndecl != NULL_TREE);
++
++      push_cfun(DECL_STRUCT_FUNCTION(fndecl));
++#if BUILDING_GCC_VERSION <= 4007
++      current_function_decl = fndecl;
++#endif
++      set_dominance_info();
++}
++
++void unset_current_function_decl(void)
++{
++      unset_dominance_info();
++#if BUILDING_GCC_VERSION <= 4007
++      current_function_decl = NULL_TREE;
++#endif
++      pop_cfun();
++}
++
++bool is_valid_cgraph_node(struct cgraph_node *node)
++{
++      if (cgraph_function_body_availability(node) == AVAIL_NOT_AVAILABLE)
++              return false;
++      if (node->thunk.thunk_p || node->alias)
++              return false;
++      return true;
++}
++
++tree get_lhs(const_gimple stmt)
++{
++      switch (gimple_code(stmt)) {
++      case GIMPLE_ASSIGN:
++      case GIMPLE_CALL:
++              return gimple_get_lhs(stmt);
++      case GIMPLE_PHI:
++              return gimple_phi_result(stmt);
++      default:
++              debug_gimple_stmt((gimple)stmt);
++              gcc_unreachable();
++      }
++}
++
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/size_overflow_plugin.c b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_plugin.c
+new file mode 100644
+index 0000000..e3b24b1
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_plugin.c
+@@ -0,0 +1,313 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++__visible int plugin_is_GPL_compatible;
++
++tree report_size_overflow_decl;
++
++tree size_overflow_type_HI;
++tree size_overflow_type_SI;
++tree size_overflow_type_DI;
++tree size_overflow_type_TI;
++
++bool check_fields, check_fns, check_fnptrs, check_vars;
++
++static struct plugin_info size_overflow_plugin_info = {
++      .version        = "20161025",
++      .help           = "no-size-overflow\tturn off size overflow checking\n",
++};
++
++static tree handle_size_overflow_attribute(tree *node, tree __unused name, tree args, int __unused flags, bool *no_add_attrs)
++{
++      unsigned int arg_count;
++      enum tree_code code = TREE_CODE(*node);
++
++      switch (code) {
++      case FUNCTION_DECL:
++              arg_count = type_num_arguments(TREE_TYPE(*node));
++              break;
++      case FUNCTION_TYPE:
++      case METHOD_TYPE:
++              arg_count = type_num_arguments(*node);
++              break;
++      default:
++              *no_add_attrs = true;
++              debug_tree(*node);
++              error("%s: %qE attribute only applies to functions", __func__, name);
++              return NULL_TREE;
++      }
++
++      for (; args; args = TREE_CHAIN(args)) {
++              int cur_val;
++              tree position = TREE_VALUE(args);
++
++              if (TREE_CODE(position) != INTEGER_CST) {
++                      error("%s: parameter isn't an integer", __func__);
++                      debug_tree(args);
++                      *no_add_attrs = true;
++                      return NULL_TREE;
++              }
++
++              cur_val = tree_to_shwi(position);
++              if (cur_val < 0 || arg_count < (unsigned int)cur_val) {
++                      error("%s: parameter %d is outside range.", __func__, cur_val);
++                      *no_add_attrs = true;
++                      return NULL_TREE;
++              }
++      }
++      return NULL_TREE;
++}
++
++static tree handle_intentional_overflow_attribute(tree *node, tree __unused name, tree args, int __unused flags, bool *no_add_attrs)
++{
++      unsigned int arg_count;
++      HOST_WIDE_INT s_first_arg;
++      enum tree_code code = TREE_CODE(*node);
++
++      switch (code) {
++      case FUNCTION_DECL:
++              arg_count = type_num_arguments(TREE_TYPE(*node));
++              break;
++      case FUNCTION_TYPE:
++      case METHOD_TYPE:
++              arg_count = type_num_arguments(*node);
++              break;
++      case VAR_DECL:
++      case FIELD_DECL:
++              return NULL_TREE;
++      default:
++              *no_add_attrs = true;
++              debug_tree(*node);
++              error("%qE attribute only applies to functions, fields or vars", name);
++              return NULL_TREE;
++      }
++
++      s_first_arg = tree_to_shwi(TREE_VALUE(args));
++      if (s_first_arg == -1)
++              return NULL_TREE;
++      if (s_first_arg < -1)
++              error("%s: parameter %d is outside range.", __func__, (int)s_first_arg);
++
++      for (; args; args = TREE_CHAIN(args)) {
++              unsigned int cur_val;
++
++              if (TREE_CODE(TREE_VALUE(args)) != INTEGER_CST) {
++                      error("%s: parameter isn't an integer", __func__);
++                      debug_tree(args);
++                      *no_add_attrs = true;
++                      return NULL_TREE;
++              }
++
++              cur_val = (unsigned int)tree_to_uhwi(TREE_VALUE(args));
++              if (cur_val > arg_count ) {
++                      error("%s: parameter %u is outside range. (arg_count: %u)", __func__, cur_val, arg_count);
++                      *no_add_attrs = true;
++                      return NULL_TREE;
++              }
++      }
++      return NULL_TREE;
++}
++
++static struct attribute_spec size_overflow_attr = {
++      .name                           = "size_overflow",
++      .min_length                     = 1,
++      .max_length                     = -1,
++      .decl_required                  = true,
++      .type_required                  = false,
++      .function_type_required         = false,
++      .handler                        = handle_size_overflow_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity          = false
++#endif
++};
++
++static struct attribute_spec intentional_overflow_attr = {
++      .name                           = "intentional_overflow",
++      .min_length                     = 1,
++      .max_length                     = -1,
++      .decl_required                  = true,
++      .type_required                  = false,
++      .function_type_required         = false,
++      .handler                        = handle_intentional_overflow_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity          = false
++#endif
++};
++
++static void register_attributes(void __unused *event_data, void __unused *data)
++{
++      register_attribute(&size_overflow_attr);
++      register_attribute(&intentional_overflow_attr);
++}
++
++static tree create_typedef(tree type, const char* ident)
++{
++      tree new_type, decl;
++
++      new_type = build_variant_type_copy(type);
++      decl = build_decl(BUILTINS_LOCATION, TYPE_DECL, get_identifier(ident), new_type);
++      DECL_ORIGINAL_TYPE(decl) = type;
++      TYPE_NAME(new_type) = decl;
++      return new_type;
++}
++
++// Create the noreturn report_size_overflow() function decl.
++static void size_overflow_start_unit(void __unused *gcc_data, void __unused *user_data)
++{
++      tree const_char_ptr_type_node;
++      tree fntype;
++
++      const_char_ptr_type_node = build_pointer_type(build_type_variant(char_type_node, 1, 0));
++
++      size_overflow_type_HI = create_typedef(intHI_type_node, "size_overflow_type_HI");
++      size_overflow_type_SI = create_typedef(intSI_type_node, "size_overflow_type_SI");
++      size_overflow_type_DI = create_typedef(intDI_type_node, "size_overflow_type_DI");
++      size_overflow_type_TI = create_typedef(intTI_type_node, "size_overflow_type_TI");
++
++      // void report_size_overflow(const char *loc_file, unsigned int loc_line, const char *current_func, const char *ssa_var)
++      fntype = build_function_type_list(void_type_node,
++                                        const_char_ptr_type_node,
++                                        unsigned_type_node,
++                                        const_char_ptr_type_node,
++                                        const_char_ptr_type_node,
++                                        NULL_TREE);
++      report_size_overflow_decl = build_fn_decl("report_size_overflow", fntype);
++
++      DECL_ASSEMBLER_NAME(report_size_overflow_decl);
++      TREE_PUBLIC(report_size_overflow_decl) = 1;
++      DECL_EXTERNAL(report_size_overflow_decl) = 1;
++      DECL_ARTIFICIAL(report_size_overflow_decl) = 1;
++//    TREE_THIS_VOLATILE(report_size_overflow_decl) = 1;
++// !!!
++      DECL_PRESERVE_P(report_size_overflow_decl) = 1;
++      DECL_UNINLINABLE(report_size_overflow_decl) = 1;
++      TREE_USED(report_size_overflow_decl) = 1;
++      TREE_NOTHROW(report_size_overflow_decl) = 1;
++}
++
++static bool disable_ubsan_si_overflow_gate(void)
++{
++#if BUILDING_GCC_VERSION >= 4009
++      flag_sanitize &= ~SANITIZE_SI_OVERFLOW;
++#endif
++      return true;
++}
++
++#define PASS_NAME disable_ubsan_si_overflow
++
++#define NO_EXECUTE
++
++#include "gcc-generate-gimple-pass.h"
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      int i;
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      bool enable = true;
++      struct register_pass_info insert_size_overflow_asm_pass_info;
++      struct register_pass_info size_overflow_pass_info;
++#if BUILDING_GCC_VERSION >= 4009
++      struct register_pass_info disable_ubsan_si_overflow_pass_info;
++#endif
++
++      static const struct ggc_root_tab gt_ggc_r_gt_size_overflow[] = {
++              {
++                      .base = &report_size_overflow_decl,
++                      .nelt = 1,
++                      .stride = sizeof(report_size_overflow_decl),
++                      .cb = &gt_ggc_mx_tree_node,
++                      .pchw = &gt_pch_nx_tree_node
++              },
++              LAST_GGC_ROOT_TAB
++      };
++
++      insert_size_overflow_asm_pass_info.pass                         = make_insert_size_overflow_asm_pass();
++      insert_size_overflow_asm_pass_info.reference_pass_name          = "ssa";
++      insert_size_overflow_asm_pass_info.ref_pass_instance_number     = 1;
++      insert_size_overflow_asm_pass_info.pos_op                       = PASS_POS_INSERT_AFTER;
++
++      size_overflow_pass_info.pass                    = make_size_overflow_pass();
++      size_overflow_pass_info.reference_pass_name     = "inline";
++      size_overflow_pass_info.ref_pass_instance_number        = 1;
++      size_overflow_pass_info.pos_op                  = PASS_POS_INSERT_AFTER;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      for (i = 0; i < argc; ++i) {
++              if (!strcmp(argv[i].key, "no-size-overflow")) {
++                      enable = false;
++                      continue;
++              }
++
++              if (!strcmp(argv[i].key, "check-fields")) {
++                      check_fields = true;
++                      continue;
++              }
++
++              if (!strcmp(argv[i].key, "check-fns")) {
++                      check_fns = true;
++                      continue;
++              }
++
++              if (!strcmp(argv[i].key, "check-fptrs")) {
++                      check_fnptrs = true;
++                      continue;
++              }
++
++              if (!strcmp(argv[i].key, "check-vars")) {
++                      check_vars = true;
++                      continue;
++              }
++
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &size_overflow_plugin_info);
++      if (enable) {
++#if BUILDING_GCC_VERSION >= 4009
++              if (flag_sanitize & SANITIZE_SI_OVERFLOW) {
++                      error(G_("ubsan SANITIZE_SI_OVERFLOW option is unsupported"));
++                      return 1;
++              }
++#endif
++              register_callback(plugin_name, PLUGIN_START_UNIT, &size_overflow_start_unit, NULL);
++              register_callback(plugin_name, PLUGIN_REGISTER_GGC_ROOTS, NULL, (void *)&gt_ggc_r_gt_size_overflow);
++#if BUILDING_GCC_VERSION >= 4009
++              flag_sanitize |= SANITIZE_SI_OVERFLOW;
++              disable_ubsan_si_overflow_pass_info.pass                        = make_disable_ubsan_si_overflow_pass();
++              disable_ubsan_si_overflow_pass_info.reference_pass_name         = "ubsan";
++              disable_ubsan_si_overflow_pass_info.ref_pass_instance_number    = 1;
++              disable_ubsan_si_overflow_pass_info.pos_op                      = PASS_POS_REPLACE;
++
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &disable_ubsan_si_overflow_pass_info);
++#endif
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &insert_size_overflow_asm_pass_info);
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &size_overflow_pass_info);
++      }
++      register_callback(plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL);
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/size_overflow_plugin_hash.c b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_plugin_hash.c
+new file mode 100644
+index 0000000..caf4bf1
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_plugin_hash.c
+@@ -0,0 +1,469 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++#include "e_aux.h"
++#include "disable.h"
++#include "e_fields.h"
++#include "e_fns.h"
++#include "e_fptrs.h"
++#include "e_vars.h"
++
++void initialize_raw_data(struct fn_raw_data *raw_data)
++{
++      raw_data->decl_str = NULL;
++      raw_data->decl = NULL_TREE;
++      raw_data->context = NULL;
++      raw_data->hash = NO_HASH;
++      raw_data->num = NONE_ARGNUM;
++      raw_data->decl_type = SO_NONE;
++      raw_data->orig_decl_str = NULL;
++      raw_data->orig_num = NONE_ARGNUM;
++}
++
++static const_tree get_function_type(const_tree decl)
++{
++      if (FUNCTION_PTR_P(decl))
++              return TREE_TYPE(TREE_TYPE(decl));
++      gcc_assert(TREE_CODE(decl) == FUNCTION_DECL);
++      return TREE_TYPE(decl);
++}
++
++static unsigned char get_tree_code(const_tree type)
++{
++      switch (TREE_CODE(type)) {
++      case ARRAY_TYPE:
++              return 0;
++      case BOOLEAN_TYPE:
++              return 1;
++      case ENUMERAL_TYPE:
++              return 2;
++      case FUNCTION_TYPE:
++              return 3;
++      case INTEGER_TYPE:
++              return 4;
++      case POINTER_TYPE:
++              return 5;
++      case RECORD_TYPE:
++              return 6;
++      case UNION_TYPE:
++              return 7;
++      case VOID_TYPE:
++              return 8;
++      case REAL_TYPE:
++              return 9;
++      case VECTOR_TYPE:
++              return 10;
++      case REFERENCE_TYPE:
++              return 11;
++      case OFFSET_TYPE:
++              return 12;
++      case COMPLEX_TYPE:
++              return 13;
++      default:
++              debug_tree(type);
++              gcc_unreachable();
++      }
++}
++
++// http://www.team5150.com/~andrew/noncryptohashzoo2~/CrapWow.html
++static unsigned int CrapWow(const char *key, unsigned int len, unsigned int seed)
++{
++#define cwfold( a, b, lo, hi ) { p = (unsigned int)(a) * (unsigned long long)(b); lo ^= (unsigned int)p; hi ^= (unsigned int)(p >> 32); }
++#define cwmixa( in ) { cwfold( in, m, k, h ); }
++#define cwmixb( in ) { cwfold( in, n, h, k ); }
++
++      unsigned int m = 0x57559429;
++      unsigned int n = 0x5052acdb;
++      const unsigned int *key4 = (const unsigned int *)key;
++      unsigned int h = len;
++      unsigned int k = len + seed + n;
++      unsigned long long p;
++
++      while (len >= 8) {
++              cwmixb(key4[0]) cwmixa(key4[1]) key4 += 2;
++              len -= 8;
++      }
++      if (len >= 4) {
++              cwmixb(key4[0]) key4 += 1;
++              len -= 4;
++      }
++      if (len)
++              cwmixa(key4[0] & ((1 << (len * 8)) - 1 ));
++      cwmixb(h ^ (k + n));
++      return k ^ h;
++
++#undef cwfold
++#undef cwmixa
++#undef cwmixb
++}
++
++static void set_hash(struct decl_hash *decl_hash_data)
++{
++      unsigned int fn, type, codes, seed = 0;
++
++      fn = CrapWow(decl_hash_data->fn_name, strlen(decl_hash_data->fn_name), seed) & 0xffff;
++      codes = CrapWow((const char*)decl_hash_data->tree_codes, decl_hash_data->tree_codes_len, seed) & 0xffff;
++      type = CrapWow(decl_hash_data->context, strlen(decl_hash_data->context), 0) & 0xffff;
++      decl_hash_data->hash = type ^ fn ^ codes;
++}
++
++static void set_decl_type_codes(const_tree type, struct decl_hash *decl_hash_data)
++{
++      gcc_assert(type != NULL_TREE);
++      gcc_assert(TREE_CODE_CLASS(TREE_CODE(type)) == tcc_type);
++
++      while (type && decl_hash_data->tree_codes_len < CODES_LIMIT) {
++              decl_hash_data->tree_codes[decl_hash_data->tree_codes_len] = get_tree_code(type);
++              decl_hash_data->tree_codes_len++;
++              type = TREE_TYPE(type);
++      }
++}
++
++static void set_result_codes(const_tree node, struct decl_hash *decl_hash_data)
++{
++      const_tree result;
++
++      gcc_assert(node != NULL_TREE);
++
++      if (DECL_P(node)) {
++              result = DECL_RESULT(node);
++              if (result != NULL_TREE)
++                      return set_decl_type_codes(TREE_TYPE(result), decl_hash_data);
++              return set_result_codes(TREE_TYPE(node), decl_hash_data);
++      }
++
++      gcc_assert(TYPE_P(node));
++
++      if (TREE_CODE(node) == FUNCTION_TYPE)
++              return set_result_codes(TREE_TYPE(node), decl_hash_data);
++
++      return set_decl_type_codes(node, decl_hash_data);
++}
++
++static void set_decl_codes(struct decl_hash *decl_hash_data)
++{
++      const_tree arg, type;
++      enum tree_code code;
++
++      if (TREE_CODE(decl_hash_data->decl) == VAR_DECL || TREE_CODE(decl_hash_data->decl) == FIELD_DECL) {
++              set_decl_type_codes(TREE_TYPE(decl_hash_data->decl), decl_hash_data);
++              return;
++      }
++
++      type = get_function_type(decl_hash_data->decl);
++      code = TREE_CODE(type);
++      gcc_assert(code == FUNCTION_TYPE || code == METHOD_TYPE);
++
++      if (FUNCTION_PTR_P(decl_hash_data->decl))
++              set_result_codes(type, decl_hash_data);
++      else
++              set_result_codes(decl_hash_data->decl, decl_hash_data);
++
++      for (arg = TYPE_ARG_TYPES(type); arg != NULL_TREE && decl_hash_data->tree_codes_len < CODES_LIMIT; arg = TREE_CHAIN(arg))
++              set_decl_type_codes(TREE_VALUE(arg), decl_hash_data);
++}
++
++static const struct size_overflow_hash *get_proper_hash_chain(const struct size_overflow_hash *entry, struct fn_raw_data *raw_data)
++{
++      gcc_assert(raw_data->orig_decl_str);
++      gcc_assert(raw_data->context);
++
++      for (; entry; entry = entry->next) {
++              if (strcmp(entry->name, raw_data->orig_decl_str))
++                      continue;
++              if (!strcmp(entry->context, raw_data->context))
++                      return entry;
++      }
++      return NULL;
++}
++
++unsigned int get_decl_hash(const_tree decl, const char *decl_name)
++{
++      struct decl_hash decl_hash_data;
++      enum tree_code code = TREE_CODE(decl);
++
++      gcc_assert(code == FIELD_DECL || code == FUNCTION_DECL || code == VAR_DECL);
++
++      // skip builtins __builtin_constant_p
++      if (code == FUNCTION_DECL && (DECL_BUILT_IN(decl) || DECL_BUILT_IN_CLASS(decl) == BUILT_IN_NORMAL))
++              return NO_HASH;
++
++      decl_hash_data.fn_name = decl_name;
++      decl_hash_data.decl = decl;
++      decl_hash_data.context = get_decl_context(decl);
++      if (!decl_hash_data.context)
++              return NO_HASH;
++      decl_hash_data.tree_codes_len = 0;
++
++      set_decl_codes(&decl_hash_data);
++      gcc_assert(decl_hash_data.tree_codes_len != 0);
++      set_hash(&decl_hash_data);
++      return decl_hash_data.hash;
++}
++
++const char *get_orig_decl_name(const_tree decl)
++{
++      const char *name;
++      unsigned int len;
++      const void *end;
++      const_tree orig_decl;
++
++      if (TREE_CODE(decl) == FUNCTION_DECL)
++              orig_decl = DECL_ORIGIN(decl);
++      else
++              orig_decl = decl;
++
++      len = DECL_NAME_LENGTH(orig_decl);
++      name = DECL_NAME_POINTER(orig_decl);
++
++      /* Sometimes gcc loses the original cgraph node leaving only clones behind.
++       * In such cases we will extract the name from the clone and use it in the hash table
++       * without checking the parameter number on the original (unavailable) decl.
++       */
++
++      if (made_by_compiler(orig_decl)) {
++              end = memchr(name, '.', len);
++              if (!end)
++                      return xstrndup(name, len);
++              len = (long)end - (long)name;
++              gcc_assert(len > 0);
++      }
++
++      return xstrndup(name, len);
++}
++
++static const struct size_overflow_hash *get_disable_size_overflow_hash_entry(struct fn_raw_data *raw_data)
++{
++      const struct size_overflow_hash *entry, *entry_node;
++
++      gcc_assert(raw_data->hash != NO_HASH);
++      gcc_assert(raw_data->orig_num != NONE_ARGNUM);
++
++      entry = disable_hash[raw_data->hash];
++      entry_node = get_proper_hash_chain(entry, raw_data);
++      if (entry_node && entry_node->param & (1U << raw_data->orig_num)) {
++              raw_data->decl_type = SO_DISABLE;
++              return entry_node;
++      }
++
++      return NULL;
++}
++
++static const struct size_overflow_hash *get_proper_node(const struct size_overflow_hash *entry_chain, struct fn_raw_data *raw_data)
++{
++      const struct size_overflow_hash *entry_node;
++
++      if (!entry_chain)
++              return NULL;
++
++      gcc_assert(raw_data->orig_num != NONE_ARGNUM);
++
++      entry_node = get_proper_hash_chain(entry_chain, raw_data);
++      if (entry_node && entry_node->param & (1U << raw_data->orig_num))
++              return entry_node;
++      return NULL;
++}
++
++const struct size_overflow_hash *get_size_overflow_hash_entry(struct fn_raw_data *raw_data)
++{
++      const struct size_overflow_hash *entry;
++
++      gcc_assert(raw_data->decl_type == SO_NONE);
++
++      gcc_assert(raw_data->hash != NO_HASH);
++
++      entry = get_proper_node(fns_hash[raw_data->hash], raw_data);
++      if (entry) {
++              raw_data->decl_type = SO_FUNCTION;
++              return check_fns ? entry : NULL;
++      }
++
++      entry = get_proper_node(fields_hash[raw_data->hash], raw_data);
++      if (entry) {
++              raw_data->decl_type = SO_FIELD;
++              return check_fields ? entry : NULL;
++      }
++
++      entry = get_proper_node(vars_hash[raw_data->hash], raw_data);
++      if (entry) {
++              raw_data->decl_type = SO_VAR;
++              return check_vars ? entry : NULL;
++      }
++
++      entry = get_proper_node(fptrs_hash[raw_data->hash], raw_data);
++      if (entry) {
++              raw_data->decl_type = SO_FUNCTION_POINTER;
++              return check_fnptrs ? entry : NULL;
++      }
++
++      entry = get_proper_node(aux_hash[raw_data->hash], raw_data);
++      if (entry) {
++              raw_data->decl_type = SO_AUX;
++              return entry;
++      }
++
++      raw_data->decl_type = SO_NONE;
++      return NULL;
++}
++
++const struct size_overflow_hash *get_size_overflow_hash_entry_tree(struct fn_raw_data *raw_data, bool hash_table)
++{
++      const_tree orig_decl;
++
++      gcc_assert(raw_data->decl != NULL_TREE);
++
++      if (made_by_compiler(raw_data->decl)) {
++              orig_decl = get_orig_fndecl(raw_data->decl);
++              if (raw_data->orig_num == NONE_ARGNUM)
++                      raw_data->orig_num = get_correct_argnum(raw_data->decl, orig_decl, raw_data->num);
++      } else {
++              orig_decl = raw_data->decl;
++              raw_data->orig_num = raw_data->num;
++      }
++
++      if (raw_data->orig_num == CANNOT_FIND_ARG)
++              return NULL;
++
++      if (!raw_data->orig_decl_str)
++              raw_data->orig_decl_str = get_orig_decl_name(orig_decl);
++
++      raw_data->hash = get_decl_hash(orig_decl, raw_data->orig_decl_str);
++      if (raw_data->hash == NO_HASH)
++              return NULL;
++
++      if (!raw_data->context)
++              raw_data->context = get_decl_context(orig_decl);
++
++      if (!raw_data->context)
++              return NULL;
++
++      if (hash_table == SIZE_OVERFLOW)
++              return get_size_overflow_hash_entry(raw_data);
++      return get_disable_size_overflow_hash_entry(raw_data);
++}
++
++unsigned int find_arg_number_tree(const_tree arg, const_tree func)
++{
++      tree var;
++      unsigned int argnum = 1;
++
++      if (DECL_ARGUMENTS(func) == NULL_TREE)
++              return CANNOT_FIND_ARG;
++
++      if (TREE_CODE(arg) == SSA_NAME)
++              arg = SSA_NAME_VAR(arg);
++
++      for (var = DECL_ARGUMENTS(func); var; var = TREE_CHAIN(var), argnum++) {
++              if (!operand_equal_p(arg, var, 0) && strcmp(DECL_NAME_POINTER(var), DECL_NAME_POINTER(arg)))
++                      continue;
++              if (!skip_types(var))
++                      return argnum;
++      }
++
++      return CANNOT_FIND_ARG;
++}
++
++const_tree get_attribute(const char* attr_name, const_tree decl)
++{
++      const_tree attr = lookup_attribute(attr_name, DECL_ATTRIBUTES(decl));
++      if (attr && TREE_VALUE(attr))
++              return attr;
++      return NULL_TREE;
++}
++
++const char *get_decl_type_str(enum decl_type decl_type)
++{
++      switch (decl_type) {
++      case SO_FUNCTION:
++              return "fns";
++      case SO_FIELD:
++              return "fields";
++      case SO_VAR:
++              return "vars";
++      case SO_FUNCTION_POINTER:
++              return "fptrs";
++      case SO_NONE:
++              return "none";
++      case SO_DISABLE:
++              return "disable";
++      case SO_AUX:
++              return "aux";
++      default:
++              gcc_unreachable();
++      }
++}
++
++/* Check if the function has a size_overflow attribute or it is in the size_overflow hash table.
++ * If the function is missing everywhere then print the missing message into stderr.
++ */
++void print_missing_function(next_interesting_function_t node)
++{
++      const struct size_overflow_hash *entry;
++      const char *decl_type;
++      struct fn_raw_data raw_data;
++
++      if (node->marked == ASM_STMT_SO_MARK)
++              return;
++
++      switch (node->decl_type) {
++      case SO_FUNCTION:
++              if (!check_fns)
++                      return;
++              break;
++      case SO_FIELD:
++              if (!check_fields)
++                      return;
++              break;
++      case SO_VAR:
++              if (!check_vars)
++                      return;
++              break;
++      case SO_FUNCTION_POINTER:
++              if (!check_fnptrs)
++                      return;
++              break;
++      default:
++              gcc_unreachable();
++      }
++
++      initialize_raw_data(&raw_data);
++      raw_data.context = node->context;
++
++      if (node->orig_next_node) {
++              raw_data.hash = node->orig_next_node->hash;
++              raw_data.orig_decl_str = node->orig_next_node->decl_name;
++              raw_data.orig_num = node->orig_next_node->num;
++              gcc_assert(!strcmp(node->context, node->orig_next_node->context));
++      } else {
++              raw_data.hash = node->hash;
++              raw_data.orig_decl_str = node->decl_name;
++              raw_data.orig_num = node->num;
++      }
++
++      entry = get_size_overflow_hash_entry(&raw_data);
++      if (entry)
++              return;
++
++      decl_type = get_decl_type_str(node->decl_type);
++      // inform() would be too slow
++      fprintf(stderr, "Function %s is missing from the e_%s hash table +%s+%s+%u+%u+\n", raw_data.orig_decl_str, decl_type, raw_data.orig_decl_str, raw_data.context, raw_data.orig_num, raw_data.hash);
++}
++
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/size_overflow_transform.c b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_transform.c
+new file mode 100644
+index 0000000..23fa5f1
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_transform.c
+@@ -0,0 +1,772 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++static tree cast_to_orig_type(struct visited *visited, gimple stmt, const_tree orig_node, tree new_node)
++{
++      gimple def_stmt;
++      const_gimple assign;
++      tree result, orig_type = TREE_TYPE(orig_node);
++      gimple_stmt_iterator gsi;
++
++      if (gimple_code(stmt) != GIMPLE_PHI) {
++              gsi = gsi_for_stmt(stmt);
++              assign = build_cast_stmt(visited, orig_type, new_node, CREATE_NEW_VAR, &gsi, BEFORE_STMT, false);
++              return get_lhs(assign);
++      }
++
++      def_stmt = get_def_stmt(new_node);
++      if (gimple_code(def_stmt) == GIMPLE_PHI)
++              gsi = gsi_after_labels(gimple_bb(def_stmt));
++      else
++              gsi = gsi_for_stmt(def_stmt);
++
++      result = gimple_phi_result(stmt);
++      assign = build_cast_stmt(visited, orig_type, new_node, SSA_NAME_VAR(result), &gsi, AFTER_STMT, false);
++      return get_lhs(assign);
++}
++
++static void change_size_overflow_asm_input(gasm *stmt, tree new_input)
++{
++      tree list;
++
++      gcc_assert(is_size_overflow_insert_check_asm(stmt));
++
++      list = build_tree_list(NULL_TREE, build_string(3, "rm"));
++      list = chainon(NULL_TREE, build_tree_list(list, new_input));
++      gimple_asm_set_input_op(stmt, 0, list);
++}
++
++static void change_field_write_rhs(gassign *assign, const_tree orig_rhs, tree new_rhs)
++{
++      const_tree rhs1, rhs2, rhs3 = NULL_TREE;
++
++      rhs1 = gimple_assign_rhs1(assign);
++      if (rhs1 == orig_rhs) {
++              gimple_assign_set_rhs1(assign, new_rhs);
++              return;
++      }
++
++      rhs2 = gimple_assign_rhs2(assign);
++      if (rhs2 == orig_rhs) {
++              gimple_assign_set_rhs2(assign, new_rhs);
++              return;
++      }
++
++#if BUILDING_GCC_VERSION >= 4006
++      rhs3 = gimple_assign_rhs3(assign);
++      if (rhs3 == orig_rhs) {
++              gimple_assign_set_rhs3(assign, new_rhs);
++              return;
++      }
++#endif
++
++      debug_gimple_stmt(assign);
++      fprintf(stderr, "orig_rhs:\n");
++      debug_tree(orig_rhs);
++      fprintf(stderr, "rhs1:\n");
++      debug_tree(rhs1);
++      fprintf(stderr, "rhs2:\n");
++      debug_tree(rhs2);
++      fprintf(stderr, "rhs3:\n");
++      debug_tree(rhs3);
++      gcc_unreachable();
++}
++
++static void change_phi_arg(gphi *phi, tree new_node, unsigned int num)
++{
++      unsigned int i;
++      location_t loc = gimple_location(phi);
++
++      for (i = 0; i < gimple_phi_num_args(phi); i++) {
++              if (i == num)
++                      add_phi_arg(phi, new_node, gimple_phi_arg_edge(phi, i), loc);
++      }
++}
++
++static void change_orig_node(struct visited *visited, gimple stmt, const_tree orig_node, tree new_node, unsigned int num)
++{
++      tree cast_lhs = cast_to_orig_type(visited, stmt, orig_node, new_node);
++
++      switch (gimple_code(stmt)) {
++      case GIMPLE_RETURN:
++              gimple_return_set_retval(as_a_greturn(stmt), cast_lhs);
++              break;
++      case GIMPLE_CALL:
++              gimple_call_set_arg(as_a_gcall(stmt), num - 1, cast_lhs);
++              break;
++      case GIMPLE_ASM:
++              change_size_overflow_asm_input(as_a_gasm(stmt), cast_lhs);
++              break;
++      case GIMPLE_ASSIGN:
++              change_field_write_rhs(as_a_gassign(stmt), orig_node, cast_lhs);
++              break;
++      case GIMPLE_PHI:
++              change_phi_arg(as_a_gphi(stmt), cast_lhs, num);
++              break;
++      default:
++              debug_gimple_stmt(stmt);
++              gcc_unreachable();
++      }
++
++      update_stmt(stmt);
++}
++
++// e.g., 3.8.2, 64, arch/x86/ia32/ia32_signal.c copy_siginfo_from_user32(): compat_ptr() u32 max
++static bool skip_asm_cast(const_tree arg)
++{
++      gimple def_stmt = get_def_stmt(arg);
++
++      if (!def_stmt || !gimple_assign_cast_p(def_stmt))
++              return false;
++
++      def_stmt = get_def_stmt(gimple_assign_rhs1(def_stmt));
++      if (is_size_overflow_asm(def_stmt))
++              return false;
++      return def_stmt && gimple_code(def_stmt) == GIMPLE_ASM;
++}
++
++static interesting_stmts_t create_interesting_stmts(interesting_stmts_t head, next_interesting_function_t next_node, tree orig_node, gimple first_stmt, unsigned int num)
++{
++      interesting_stmts_t new_node;
++
++      new_node = (interesting_stmts_t )xmalloc(sizeof(*new_node));
++      new_node->first_stmt = first_stmt;
++      new_node->num = num;
++      new_node->orig_node = orig_node;
++      new_node->next = head;
++      new_node->next_node = next_node;
++      return new_node;
++}
++
++static void free_interesting_stmts(interesting_stmts_t head)
++{
++      while (head) {
++              interesting_stmts_t cur = head->next;
++              free(head);
++              head = cur;
++      }
++}
++
++/* This function calls the main recursion function (expand) that duplicates the stmts. Before that it checks the intentional_overflow attribute,
++ * it decides whether the duplication is necessary or not. After expand() it changes the orig node to the duplicated node
++ * in the original stmt (first stmt) and it inserts the overflow check for the arg of the callee or for the return value.
++ */
++static interesting_stmts_t search_interesting_stmt(interesting_stmts_t head, next_interesting_function_t next_node, gimple first_stmt, tree orig_node, unsigned int num)
++{
++      enum tree_code orig_code;
++
++      gcc_assert(orig_node != NULL_TREE);
++
++      if (is_gimple_constant(orig_node))
++              return head;
++
++      orig_code = TREE_CODE(orig_node);
++      gcc_assert(orig_code != FIELD_DECL && orig_code != FUNCTION_DECL);
++
++      if (skip_types(orig_node))
++              return head;
++
++      // find a defining marked caller argument or struct field for arg
++      if (check_intentional_size_overflow_asm_and_attribute(orig_node) != MARK_NO)
++              return head;
++
++      if (skip_asm_cast(orig_node))
++              return head;
++
++      return create_interesting_stmts(head, next_node, orig_node, first_stmt, num);
++}
++
++static bool is_signed_error_code_const(const_tree node)
++{
++      HOST_WIDE_INT constant = tree_to_shwi(node);
++
++      return constant >= -4095 && constant <= -1;
++}
++
++static bool is_unsigned_error_code_const(const_tree node)
++{
++      unsigned HOST_WIDE_INT constant = tree_to_uhwi(node);
++
++      // ulong -4095
++      if (constant >= 0xfffffffffffff001)
++              return true;
++      // uint -4095
++      return constant >= 0xfffff001;
++}
++
++static bool is_error_code_const(const_tree node)
++{
++      enum machine_mode mode;
++
++      if (!is_gimple_constant(node))
++              return false;
++      mode = TYPE_MODE(TREE_TYPE(node));
++      if (mode != SImode && mode != DImode)
++              return false;
++
++      if (!TYPE_UNSIGNED(TREE_TYPE(node)) && is_signed_error_code_const(node))
++              return true;
++      return TYPE_UNSIGNED(TREE_TYPE(node)) && is_unsigned_error_code_const(node);
++}
++
++static bool has_error_code(gphi *phi)
++{
++      unsigned int i, len = gimple_phi_num_args(phi);
++
++      for (i = 0; i < len; i++) {
++              const_tree arg = gimple_phi_arg_def(phi, i);
++
++              if (is_error_code_const(arg))
++                      return true;
++      }
++
++      return false;
++}
++
++static interesting_stmts_t search_interesting_rets(interesting_stmts_t head, next_interesting_function_t next_node_ret, greturn *ret)
++{
++      tree first_node;
++
++      if (!next_node_ret || next_node_ret->marked == ASM_STMT_SO_MARK)
++              return head;
++
++      first_node = gimple_return_retval(ret);
++      if (first_node == NULL_TREE)
++              return head;
++
++      return search_interesting_stmt(head, next_node_ret, ret, first_node, 0);
++}
++
++static void handle_binary_assign(interesting_stmts_t expand_from, gassign *assign, tree rhs)
++{
++      tree new_node;
++      gimple def_orig_node;
++
++      new_node = expand(expand_from, rhs);
++      if (new_node == NULL_TREE)
++              return;
++
++      def_orig_node = get_def_stmt(rhs);
++      if (pointer_set_contains(expand_from->visited->no_cast_check, def_orig_node))
++              return;
++      change_orig_node(expand_from->visited, assign, rhs, new_node, 0);
++      check_size_overflow(expand_from, assign, TREE_TYPE(new_node), new_node, rhs, BEFORE_STMT);
++}
++
++static bool search_error_codes(gimple_set *visited_error_codes, interesting_stmts_t expand_from, tree lhs, bool error_code)
++{
++      gimple def_stmt;
++
++      def_stmt = get_def_stmt(lhs);
++      if (!def_stmt || gimple_code(def_stmt) == GIMPLE_NOP)
++              return error_code;
++
++      if (pointer_set_insert(visited_error_codes, def_stmt))
++              return error_code;
++
++      if (is_gimple_constant(lhs))
++              return error_code;
++      if (skip_types(lhs))
++              return is_error_code_const(lhs);
++
++      switch (gimple_code(def_stmt)) {
++      case GIMPLE_CALL:
++      case GIMPLE_ASM:
++              return error_code;
++      case GIMPLE_ASSIGN: {
++              tree rhs1, rhs2;
++              gassign *assign = as_a_gassign(def_stmt);
++
++              switch (gimple_num_ops(assign)) {
++              case 2:
++                      return search_error_codes(visited_error_codes, expand_from, gimple_assign_rhs1(def_stmt), error_code);
++              case 3:
++                      if (!error_code)
++                              return error_code;
++
++                      /* Run stmt duplication from the binary assignment ops (rhs1 and rhs2)
++                       * so that size_overflow checking skips the lhs of the last binary assignment
++                       * before the error code PHI.
++                       */
++                      rhs1 = gimple_assign_rhs1(assign);
++                      handle_binary_assign(expand_from, assign, rhs1);
++                      rhs2 = gimple_assign_rhs2(assign);
++                      handle_binary_assign(expand_from, assign, rhs2);
++                      return error_code;
++              }
++              gcc_unreachable();
++      }
++      case GIMPLE_PHI: {
++              unsigned int i;
++
++              error_code = has_error_code(as_a_gphi(def_stmt));
++              for (i = 0; i < gimple_phi_num_args(def_stmt); i++) {
++                      error_code = search_error_codes(visited_error_codes, expand_from, gimple_phi_arg_def(def_stmt, i), error_code);
++              }
++              return error_code;
++      }
++      default:
++              debug_gimple_stmt(def_stmt);
++              error("%s: unknown gimple code", __func__);
++              gcc_unreachable();
++      }
++}
++
++static bool handle_error_codes(interesting_stmts_t expand_from)
++{
++      bool error_code;
++      gimple_set *visited_error_codes;
++
++      // expand the data flow from a return stmt
++      if (expand_from->next_node->num != 0 || strcmp(expand_from->next_node->context, "fndecl"))
++              return false;
++
++      visited_error_codes = pointer_set_create();
++      error_code = search_error_codes(visited_error_codes, expand_from, expand_from->orig_node, false);
++      pointer_set_destroy(visited_error_codes);
++
++      return error_code;
++}
++
++static void handle_interesting_stmt(struct visited *visited, interesting_stmts_t head)
++{
++      interesting_stmts_t cur;
++
++      for (cur = head; cur; cur = cur->next) {
++              tree new_node;
++              gimple orig_def_stmt;
++
++              cur->visited = visited;
++              if (handle_error_codes(cur))
++                      continue;
++
++              new_node = expand(cur, cur->orig_node);
++              if (new_node == NULL_TREE)
++                      continue;
++
++              orig_def_stmt = get_def_stmt(cur->orig_node);
++              if (pointer_set_contains(visited->no_cast_check, orig_def_stmt))
++                      continue;
++              change_orig_node(visited, cur->first_stmt, cur->orig_node, new_node, cur->num);
++              check_size_overflow(cur, cur->first_stmt, TREE_TYPE(new_node), new_node, cur->orig_node, BEFORE_STMT);
++      }
++}
++
++static next_interesting_function_t get_interesting_function_next_node(tree decl, unsigned int num)
++{
++      next_interesting_function_t next_node;
++      const struct size_overflow_hash *so_hash;
++      struct fn_raw_data raw_data;
++
++      initialize_raw_data(&raw_data);
++      raw_data.decl = decl;
++      raw_data.decl_str = DECL_NAME_POINTER(decl);
++      raw_data.num = num;
++      raw_data.marked = YES_SO_MARK;
++
++      so_hash = get_size_overflow_hash_entry_tree(&raw_data, SIZE_OVERFLOW);
++      if (so_hash)
++              return get_and_create_next_node_from_global_next_nodes(&raw_data, NULL);
++      if (!so_hash && raw_data.decl_type != SO_NONE)
++              return NULL;
++
++      next_node = get_global_next_interesting_function_entry_with_hash(&raw_data);
++      if (next_node && next_node->marked != NO_SO_MARK) {
++              switch (next_node->decl_type) {
++              case SO_FUNCTION:
++                      if (check_fns)
++                              return next_node;
++                      return NULL;
++              case SO_FIELD:
++                      if (check_fields)
++                              return next_node;
++                      return NULL;
++              case SO_VAR:
++                      if (check_vars)
++                              return next_node;
++                      return NULL;
++              case SO_FUNCTION_POINTER:
++                      if (check_fnptrs)
++                              return next_node;
++                      return NULL;
++              default:
++                      gcc_unreachable();
++              }
++      }
++
++      return NULL;
++}
++
++tree handle_fnptr_assign(const_gimple stmt)
++{
++      tree field, rhs, op0;
++      const_tree op0_type;
++      enum tree_code rhs_code;
++
++      // TODO skip binary assignments for now (fs/sync.c _591 = __bpf_call_base + _590;)
++      if (gimple_num_ops(stmt) != 2)
++              return NULL_TREE;
++
++      gcc_assert(gimple_num_ops(stmt) == 2);
++      // TODO skip asm_stmt for now
++      if (gimple_code(stmt) == GIMPLE_ASM)
++              return NULL_TREE;
++      rhs = gimple_assign_rhs1(stmt);
++      if (is_gimple_constant(rhs))
++              return NULL_TREE;
++
++      rhs_code = TREE_CODE(rhs);
++      if (rhs_code == VAR_DECL)
++              return rhs;
++
++      switch (rhs_code) {
++      case ADDR_EXPR:
++              op0 = TREE_OPERAND(rhs, 0);
++              if (TREE_CODE(op0) == FUNCTION_DECL)
++                      return op0;
++              return NULL_TREE;
++      case COMPONENT_REF:
++              break;
++      // TODO skip array_ref for now
++      case ARRAY_REF:
++              return NULL_TREE;
++      // TODO skip ssa_name because it can lead to parm_decl
++      case SSA_NAME:
++              return NULL_TREE;
++      // TODO skip mem_ref and indirect_ref for now
++#if BUILDING_GCC_VERSION >= 4006
++      case MEM_REF:
++#endif
++      case INDIRECT_REF:
++              return NULL_TREE;
++      default:
++              debug_tree(rhs);
++              debug_gimple_stmt((gimple)stmt);
++              gcc_unreachable();
++      }
++
++      op0 = TREE_OPERAND(rhs, 0);
++      switch (TREE_CODE(op0)) {
++      // TODO skip array_ref and parm_decl for now
++      case ARRAY_REF:
++      case PARM_DECL:
++              return NULL_TREE;
++      case COMPONENT_REF:
++#if BUILDING_GCC_VERSION >= 4006
++      case MEM_REF:
++#endif
++      case INDIRECT_REF:
++      case VAR_DECL:
++              break;
++      default:
++              debug_tree(op0);
++              gcc_unreachable();
++      }
++
++      op0_type = TREE_TYPE(op0);
++      // TODO skip unions for now
++      if (TREE_CODE(op0_type) == UNION_TYPE)
++              return NULL_TREE;
++      gcc_assert(TREE_CODE(op0_type) == RECORD_TYPE);
++
++      field = TREE_OPERAND(rhs, 1);
++      gcc_assert(TREE_CODE(field) == FIELD_DECL);
++      return field;
++}
++
++static tree get_fn_or_fnptr_decl(const gcall *call_stmt)
++{
++      const_tree fnptr;
++      const_gimple def_stmt;
++      tree decl = gimple_call_fndecl(call_stmt);
++
++      if (decl != NULL_TREE)
++              return decl;
++
++      fnptr = gimple_call_fn(call_stmt);
++      if (fnptr == NULL_TREE)
++              return NULL_TREE;
++
++      // !!! assertot kell irni 0-ra, mert csak az lehet ott
++      if (is_gimple_constant(fnptr))
++              return NULL_TREE;
++      def_stmt = get_fnptr_def_stmt(fnptr);
++      return handle_fnptr_assign(def_stmt);
++}
++
++// Start stmt duplication on marked function parameters
++static interesting_stmts_t search_interesting_calls(interesting_stmts_t head, gcall *call_stmt)
++{
++      tree decl;
++      unsigned int i, len;
++
++      len = gimple_call_num_args(call_stmt);
++      if (len == 0)
++              return head;
++
++      decl = get_fn_or_fnptr_decl(call_stmt);
++      if (decl == NULL_TREE)
++              return head;
++
++      for (i = 0; i < len; i++) {
++              tree arg;
++              next_interesting_function_t next_node;
++
++              arg = gimple_call_arg(call_stmt, i);
++              if (is_gimple_constant(arg))
++                      continue;
++              if (skip_types(arg))
++                      continue;
++              next_node = get_interesting_function_next_node(decl, i + 1);
++              if (next_node)
++                      head = search_interesting_stmt(head, next_node, call_stmt, arg, i + 1);
++      }
++
++      return head;
++}
++
++// Find assignements to structure fields and vardecls
++static interesting_stmts_t search_interesting_structs_vardecls(interesting_stmts_t head, gassign *assign)
++{
++      enum intentional_mark mark;
++      next_interesting_function_t next_node;
++      tree rhs1, rhs2, lhs, decl;
++#if BUILDING_GCC_VERSION >= 4006
++      tree rhs3;
++#endif
++
++      lhs = gimple_assign_lhs(assign);
++
++      if (VAR_P(lhs))
++              decl = lhs;
++      else
++              decl = get_ref_field(lhs);
++      if (decl == NULL_TREE)
++              return head;
++      if (DECL_NAME(decl) == NULL_TREE)
++              return head;
++
++      if (is_bitfield_unnamed_cast(decl, assign))
++              return head;
++
++      next_node = get_interesting_function_next_node(decl, 0);
++      if (!next_node)
++              return head;
++
++      mark = get_intentional_attr_type(decl);
++      if (mark != MARK_NO)
++              return head;
++
++      rhs1 = gimple_assign_rhs1(assign);
++      head = search_interesting_stmt(head, next_node, assign, rhs1, 0);
++
++      rhs2 = gimple_assign_rhs2(assign);
++      if (rhs2)
++              head = search_interesting_stmt(head, next_node, assign, rhs2, 0);
++
++#if BUILDING_GCC_VERSION >= 4006
++      rhs3 = gimple_assign_rhs3(assign);
++      if (rhs3)
++              head = search_interesting_stmt(head, next_node, assign, rhs3, 0);
++#endif
++      return head;
++}
++
++static next_interesting_function_t create_so_asm_next_interesting_function_node(const gasm *stmt)
++{
++      next_interesting_function_t next_node;
++      struct fn_raw_data raw_data;
++
++      initialize_raw_data(&raw_data);
++      raw_data.decl_str = gimple_asm_string(stmt);
++      raw_data.context = "attr";
++      raw_data.hash = 0;
++      raw_data.num = 0;
++      raw_data.marked = ASM_STMT_SO_MARK;
++      raw_data.decl_type = SO_FUNCTION;
++
++      next_node = get_global_next_interesting_function_entry(&raw_data);
++      if (next_node)
++              return next_node;
++      next_node = create_new_next_interesting_entry(&raw_data, NULL);
++      gcc_assert(next_node);
++
++      add_to_global_next_interesting_function(next_node);
++      return next_node;
++}
++
++// Collect interesting stmts for duplication
++static void search_interesting_stmts(struct visited *visited)
++{
++      basic_block bb;
++      next_interesting_function_t next_node_ret;
++      interesting_stmts_t head = NULL;
++
++      next_node_ret = get_interesting_function_next_node(current_function_decl, 0);
++
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      gimple stmt = gsi_stmt(gsi);
++
++                      switch (gimple_code(stmt)) {
++                      case GIMPLE_ASM: {
++                              tree first_node;
++                              next_interesting_function_t next_node;
++                              const gasm *asm_stmt = as_a_gasm(stmt);
++
++                              if (!check_fns)
++                                      continue;
++
++                              if (!is_size_overflow_insert_check_asm(asm_stmt))
++                                      continue;
++                              next_node = create_so_asm_next_interesting_function_node(asm_stmt);
++                              first_node = get_size_overflow_asm_input(asm_stmt);
++                              head = search_interesting_stmt(head, next_node, stmt, first_node, 0);
++                              break;
++                      }
++                      case GIMPLE_RETURN:
++                              head = search_interesting_rets(head, next_node_ret, as_a_greturn(stmt));
++                              break;
++                      case GIMPLE_CALL:
++                              head = search_interesting_calls(head, as_a_gcall(stmt));
++                              break;
++                      case GIMPLE_ASSIGN:
++                              /* !!! TODO LTO modeban nincs duplikalas a globalis valtozora, mert a tree mergek
++                               * utan mar nem lehet megkulonboztetni attol a globalis valtozotol, aminek a scopeja csak a file
++                               * igy a context nem vardecl lesz, hanem vardecl_filenev. De execute-ban kiirja, ha hianyzik a hash tablabol
++                               * IPA-ban van duplikalas.
++                               */
++                              head = search_interesting_structs_vardecls(head, as_a_gassign(stmt));
++                              break;
++                      default:
++                              break;
++                      }
++              }
++      }
++
++      handle_interesting_stmt(visited, head);
++      free_interesting_stmts(head);
++}
++
++static struct visited *create_visited(void)
++{
++      struct visited *new_node;
++
++      new_node = (struct visited *)xmalloc(sizeof(*new_node));
++      new_node->stmts = pointer_set_create();
++      new_node->my_stmts = pointer_set_create();
++      new_node->skip_expr_casts = pointer_set_create();
++      new_node->no_cast_check = pointer_set_create();
++      return new_node;
++}
++
++static void free_visited(struct visited *visited)
++{
++      pointer_set_destroy(visited->stmts);
++      pointer_set_destroy(visited->my_stmts);
++      pointer_set_destroy(visited->skip_expr_casts);
++      pointer_set_destroy(visited->no_cast_check);
++
++      free(visited);
++}
++
++// Remove the size_overflow asm stmt and create an assignment from the input and output of the asm
++static void replace_size_overflow_asm_with_assign(gasm *asm_stmt, tree lhs, tree rhs)
++{
++      gassign *assign;
++      gimple_stmt_iterator gsi;
++
++      // already removed
++      if (gimple_bb(asm_stmt) == NULL)
++              return;
++      gsi = gsi_for_stmt(asm_stmt);
++
++      assign = gimple_build_assign(lhs, rhs);
++      gsi_insert_before(&gsi, assign, GSI_SAME_STMT);
++      SSA_NAME_DEF_STMT(lhs) = assign;
++
++      gsi_remove(&gsi, true);
++}
++
++// Replace our asm stmts with assignments (they are no longer needed and may interfere with later optimizations)
++static void remove_size_overflow_asm(gimple stmt)
++{
++      gimple_stmt_iterator gsi;
++      tree input, output;
++
++      if (!is_size_overflow_asm(stmt))
++              return;
++
++      if (gimple_asm_noutputs(as_a_gasm(stmt)) == 0) {
++              gsi = gsi_for_stmt(stmt);
++
++              ipa_remove_stmt_references(cgraph_get_node(current_function_decl), stmt);
++              gsi_remove(&gsi, true);
++              return;
++      }
++
++      input = gimple_asm_input_op(as_a_gasm(stmt), 0);
++      output = gimple_asm_output_op(as_a_gasm(stmt), 0);
++      replace_size_overflow_asm_with_assign(as_a_gasm(stmt), TREE_VALUE(output), TREE_VALUE(input));
++}
++
++static void remove_all_size_overflow_asm(void)
++{
++      basic_block bb;
++
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator si;
++
++              for (si = gsi_start_bb(bb); !gsi_end_p(si); gsi_next(&si))
++                      remove_size_overflow_asm(gsi_stmt(si));
++      }
++}
++
++unsigned int size_overflow_function_transform(struct cgraph_node *node __unused)
++{
++      struct visited *visited;
++
++#if BUILDING_GCC_VERSION >= 4008
++      if (dump_file) {
++              fprintf(dump_file, "BEFORE TRANSFORM -------------------------\n");
++              size_overflow_dump_function(dump_file, node);
++      }
++#endif
++      visited = create_visited();
++      set_dominance_info();
++
++      search_interesting_stmts(visited);
++
++      remove_all_size_overflow_asm();
++
++      unset_dominance_info();
++      free_visited(visited);
++
++#if BUILDING_GCC_VERSION >= 4008
++      if (dump_file) {
++              fprintf(dump_file, "AFTER TRANSFORM -------------------------\n");
++              size_overflow_dump_function(dump_file, node);
++      }
++#endif
++      return TODO_dump_func | TODO_verify_stmts | TODO_remove_unused_locals | TODO_update_ssa_no_phi | TODO_ggc_collect | TODO_verify_flow;
++}
+diff --git a/scripts/gcc-plugins/size_overflow_plugin/size_overflow_transform_core.c b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_transform_core.c
+new file mode 100644
+index 0000000..69e3a85
+--- /dev/null
++++ b/scripts/gcc-plugins/size_overflow_plugin/size_overflow_transform_core.c
+@@ -0,0 +1,1025 @@
++/*
++ * Copyright 2011-2016 by Emese Revfy <re.emese@gmail.com>
++ * Licensed under the GPL v2
++ *
++ * Homepage:
++ * https://github.com/ephox-gcc-plugins/size_overflow
++ *
++ * Documentation:
++ * http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++ *
++ * This plugin recomputes expressions of function arguments marked by a size_overflow attribute
++ * with double integer precision (DImode/TImode for 32/64 bit integer types).
++ * The recomputed argument is checked against TYPE_MAX and an event is logged on overflow and the triggering process is killed.
++ *
++ * Usage:
++ * $ make
++ * $ make run
++ */
++
++#include "size_overflow.h"
++
++#define MIN_CHECK true
++#define MAX_CHECK false
++
++unsigned int call_count = 0;
++
++tree get_size_overflow_type(struct visited *visited, const_gimple stmt, const_tree node)
++{
++      const_tree type;
++      tree new_type;
++
++      gcc_assert(node != NULL_TREE);
++
++      type = TREE_TYPE(node);
++
++      if (pointer_set_contains(visited->my_stmts, stmt))
++              return TREE_TYPE(node);
++
++      switch (TYPE_MODE(type)) {
++      case QImode:
++      case HImode:
++              new_type = size_overflow_type_SI;
++              break;
++      case SImode:
++              new_type = size_overflow_type_DI;
++              break;
++      case DImode:
++              if (LONG_TYPE_SIZE == GET_MODE_BITSIZE(SImode))
++                      new_type = TYPE_UNSIGNED(type) ? unsigned_intDI_type_node : intDI_type_node;
++              else
++                      new_type = size_overflow_type_TI;
++              break;
++      case TImode:
++              gcc_assert(!TYPE_UNSIGNED(type));
++              new_type = size_overflow_type_TI;
++              break;
++      default:
++              debug_tree(node);
++              error("%s: unsupported gcc configuration (%qE).", __func__, current_function_decl);
++              gcc_unreachable();
++      }
++
++      if (TYPE_QUALS(type) != 0)
++              return build_qualified_type(new_type, TYPE_QUALS(type));
++      return new_type;
++}
++
++tree cast_to_new_size_overflow_type(struct visited *visited, gimple stmt, tree rhs, tree size_overflow_type, bool before)
++{
++      gimple_stmt_iterator gsi;
++      gimple new_stmt;
++
++      if (rhs == NULL_TREE)
++              return NULL_TREE;
++
++      gsi = gsi_for_stmt(stmt);
++      new_stmt = build_cast_stmt(visited, size_overflow_type, rhs, CREATE_NEW_VAR, &gsi, before, false);
++      if (gimple_assign_cast_p(new_stmt))
++              gimple_assign_set_rhs_code(new_stmt, CONVERT_EXPR);
++      pointer_set_insert(visited->my_stmts, new_stmt);
++
++      return get_lhs(new_stmt);
++}
++
++tree create_assign(struct visited *visited, gimple oldstmt, tree rhs1, bool before)
++{
++      tree lhs, dst_type;
++      gimple_stmt_iterator gsi;
++
++      if (rhs1 == NULL_TREE) {
++              debug_gimple_stmt(oldstmt);
++              error("%s: rhs1 is NULL_TREE", __func__);
++              gcc_unreachable();
++      }
++
++      switch (gimple_code(oldstmt)) {
++      case GIMPLE_ASM:
++              lhs = rhs1;
++              break;
++      case GIMPLE_CALL:
++      case GIMPLE_ASSIGN:
++              lhs = gimple_get_lhs(oldstmt);
++              break;
++      default:
++              debug_gimple_stmt(oldstmt);
++              gcc_unreachable();
++      }
++
++      gsi = gsi_for_stmt(oldstmt);
++      pointer_set_insert(visited->stmts, oldstmt);
++      if (lookup_stmt_eh_lp(oldstmt) != 0) {
++              basic_block next_bb, cur_bb;
++              const_edge e;
++
++              gcc_assert(before == false);
++              gcc_assert(stmt_can_throw_internal(oldstmt));
++              gcc_assert(gimple_code(oldstmt) == GIMPLE_CALL);
++              gcc_assert(!gsi_end_p(gsi));
++
++              cur_bb = gimple_bb(oldstmt);
++              next_bb = cur_bb->next_bb;
++              e = find_edge(cur_bb, next_bb);
++              gcc_assert(e != NULL);
++              gcc_assert(e->flags & EDGE_FALLTHRU);
++
++              gsi = gsi_after_labels(next_bb);
++              gcc_assert(!gsi_end_p(gsi));
++
++              before = true;
++              oldstmt = gsi_stmt(gsi);
++      }
++
++      if (is_gimple_constant(rhs1) && TREE_CODE_CLASS(gimple_assign_rhs_code(oldstmt)) == tcc_comparison)
++              dst_type = get_size_overflow_type(visited, oldstmt, rhs1);
++      else
++              dst_type = get_size_overflow_type(visited, oldstmt, lhs);
++
++      if (is_gimple_constant(rhs1))
++              return cast_a_tree(dst_type, rhs1);
++      return cast_to_new_size_overflow_type(visited, oldstmt, rhs1, dst_type, before);
++}
++
++tree dup_assign(struct visited *visited, gassign *oldstmt, const_tree node, tree rhs1, tree rhs2, tree __unused rhs3)
++{
++      gassign *stmt;
++      gimple_stmt_iterator gsi;
++      tree size_overflow_type, new_var, lhs = gimple_assign_lhs(oldstmt);
++
++      if (pointer_set_contains(visited->my_stmts, oldstmt))
++              return lhs;
++
++      if (gimple_num_ops(oldstmt) != 4 && rhs1 == NULL_TREE) {
++              rhs1 = gimple_assign_rhs1(oldstmt);
++              rhs1 = create_assign(visited, oldstmt, rhs1, BEFORE_STMT);
++      }
++      if (gimple_num_ops(oldstmt) == 3 && rhs2 == NULL_TREE) {
++              rhs2 = gimple_assign_rhs2(oldstmt);
++              rhs2 = create_assign(visited, oldstmt, rhs2, BEFORE_STMT);
++      }
++
++      stmt = as_a_gassign(gimple_copy(oldstmt));
++      gimple_set_location(stmt, gimple_location(oldstmt));
++      pointer_set_insert(visited->my_stmts, stmt);
++
++      if (gimple_assign_rhs_code(oldstmt) == WIDEN_MULT_EXPR)
++              gimple_assign_set_rhs_code(stmt, MULT_EXPR);
++
++      size_overflow_type = get_size_overflow_type(visited, oldstmt, node);
++
++      new_var = create_new_var(size_overflow_type);
++      new_var = make_ssa_name(new_var, stmt);
++      gimple_assign_set_lhs(stmt, new_var);
++
++      if (rhs1 != NULL_TREE)
++              gimple_assign_set_rhs1(stmt, rhs1);
++
++      if (rhs2 != NULL_TREE)
++              gimple_assign_set_rhs2(stmt, rhs2);
++#if BUILDING_GCC_VERSION >= 4006
++      if (rhs3 != NULL_TREE)
++              gimple_assign_set_rhs3(stmt, rhs3);
++#endif
++      gimple_set_vuse(stmt, gimple_vuse(oldstmt));
++      gimple_set_vdef(stmt, gimple_vdef(oldstmt));
++
++      gsi = gsi_for_stmt(oldstmt);
++      gsi_insert_after(&gsi, stmt, GSI_SAME_STMT);
++      update_stmt(stmt);
++      pointer_set_insert(visited->stmts, oldstmt);
++      return gimple_assign_lhs(stmt);
++}
++
++static tree cast_parm_decl(struct visited *visited, tree phi_ssa_name, tree arg, tree size_overflow_type, basic_block bb)
++{
++      const_gimple assign;
++      gimple_stmt_iterator gsi;
++      basic_block first_bb;
++
++      gcc_assert(SSA_NAME_IS_DEFAULT_DEF(arg));
++
++      if (bb->index == 0) {
++              first_bb = split_block_after_labels(ENTRY_BLOCK_PTR_FOR_FN(cfun))->dest;
++              gcc_assert(dom_info_available_p(CDI_DOMINATORS));
++              set_immediate_dominator(CDI_DOMINATORS, first_bb, ENTRY_BLOCK_PTR_FOR_FN(cfun));
++              bb = first_bb;
++      }
++
++      gsi = gsi_after_labels(bb);
++      assign = build_cast_stmt(visited, size_overflow_type, arg, phi_ssa_name, &gsi, BEFORE_STMT, false);
++      pointer_set_insert(visited->my_stmts, assign);
++      return get_lhs(assign);
++}
++
++static tree use_phi_ssa_name(struct visited *visited, tree ssa_name_var, tree new_arg)
++{
++      gimple_stmt_iterator gsi;
++      const_gimple assign;
++      gimple def_stmt = get_def_stmt(new_arg);
++
++      if (gimple_code(def_stmt) == GIMPLE_PHI) {
++              gsi = gsi_after_labels(gimple_bb(def_stmt));
++              assign = build_cast_stmt(visited, TREE_TYPE(new_arg), new_arg, ssa_name_var, &gsi, BEFORE_STMT, true);
++      } else {
++              gsi = gsi_for_stmt(def_stmt);
++              assign = build_cast_stmt(visited, TREE_TYPE(new_arg), new_arg, ssa_name_var, &gsi, AFTER_STMT, true);
++      }
++
++      pointer_set_insert(visited->my_stmts, assign);
++      return get_lhs(assign);
++}
++
++static tree cast_visited_phi_arg(struct visited *visited, tree ssa_name_var, tree arg, tree size_overflow_type)
++{
++      basic_block bb;
++      gimple_stmt_iterator gsi;
++      const_gimple def_stmt;
++      const_gimple assign;
++
++      def_stmt = get_def_stmt(arg);
++      bb = gimple_bb(def_stmt);
++      gcc_assert(bb->index != 0);
++      gsi = gsi_after_labels(bb);
++
++      assign = build_cast_stmt(visited, size_overflow_type, arg, ssa_name_var, &gsi, BEFORE_STMT, false);
++      pointer_set_insert(visited->my_stmts, assign);
++      return get_lhs(assign);
++}
++
++static tree create_new_phi_arg(struct visited *visited, tree ssa_name_var, tree new_arg, gphi *oldstmt, unsigned int i)
++{
++      tree size_overflow_type;
++      tree arg;
++      const_gimple def_stmt;
++
++      if (new_arg != NULL_TREE && is_gimple_constant(new_arg))
++              return new_arg;
++
++      arg = gimple_phi_arg_def(oldstmt, i);
++      def_stmt = get_def_stmt(arg);
++      gcc_assert(def_stmt != NULL);
++      size_overflow_type = get_size_overflow_type(visited, oldstmt, arg);
++
++      switch (gimple_code(def_stmt)) {
++      case GIMPLE_PHI:
++              return cast_visited_phi_arg(visited, ssa_name_var, arg, size_overflow_type);
++      case GIMPLE_NOP: {
++              basic_block bb;
++
++              bb = gimple_phi_arg_edge(oldstmt, i)->src;
++              return cast_parm_decl(visited, ssa_name_var, arg, size_overflow_type, bb);
++      }
++      case GIMPLE_ASM: {
++              gimple_stmt_iterator gsi;
++              const_gimple assign;
++              gimple stmt = get_def_stmt(arg);
++
++              gsi = gsi_for_stmt(stmt);
++              assign = build_cast_stmt(visited, size_overflow_type, arg, ssa_name_var, &gsi, AFTER_STMT, false);
++              pointer_set_insert(visited->my_stmts, assign);
++              return get_lhs(assign);
++      }
++      default:
++              gcc_assert(new_arg != NULL_TREE);
++              gcc_assert(types_compatible_p(TREE_TYPE(new_arg), size_overflow_type));
++              return use_phi_ssa_name(visited, ssa_name_var, new_arg);
++      }
++}
++
++static gphi *overflow_create_phi_node(struct visited *visited, gphi *oldstmt, tree result)
++{
++      basic_block bb;
++      gphi *phi;
++      gimple_seq seq;
++      gimple_stmt_iterator gsi = gsi_for_stmt(oldstmt);
++
++      bb = gsi_bb(gsi);
++
++      if (result == NULL_TREE) {
++              tree old_result = gimple_phi_result(oldstmt);
++              tree size_overflow_type = get_size_overflow_type(visited, oldstmt, old_result);
++
++              result = create_new_var(size_overflow_type);
++      }
++
++      phi = as_a_gphi(create_phi_node(result, bb));
++      gimple_phi_set_result(phi, make_ssa_name(result, phi));
++      seq = phi_nodes(bb);
++      gsi = gsi_last(seq);
++      gsi_remove(&gsi, false);
++
++      gsi = gsi_for_stmt(oldstmt);
++      gsi_insert_after(&gsi, phi, GSI_NEW_STMT);
++      gimple_set_bb(phi, bb);
++      return phi;
++}
++
++#if BUILDING_GCC_VERSION <= 4007
++static tree create_new_phi_node(struct visited *visited, VEC(tree, heap) **args, tree ssa_name_var, gimple oldstmt)
++#else
++static tree create_new_phi_node(struct visited *visited, vec<tree, va_heap, vl_embed> *&args, tree ssa_name_var, gphi *oldstmt)
++#endif
++{
++      gphi *new_phi;
++      unsigned int i;
++      tree arg, result;
++      location_t loc = gimple_location(oldstmt);
++
++#if BUILDING_GCC_VERSION <= 4007
++      gcc_assert(!VEC_empty(tree, *args));
++#else
++      gcc_assert(!args->is_empty());
++#endif
++
++      new_phi = overflow_create_phi_node(visited, oldstmt, ssa_name_var);
++      result = gimple_phi_result(new_phi);
++      ssa_name_var = SSA_NAME_VAR(result);
++
++#if BUILDING_GCC_VERSION <= 4007
++      FOR_EACH_VEC_ELT(tree, *args, i, arg) {
++#else
++      FOR_EACH_VEC_SAFE_ELT(args, i, arg) {
++#endif
++              arg = create_new_phi_arg(visited, ssa_name_var, arg, oldstmt, i);
++              add_phi_arg(new_phi, arg, gimple_phi_arg_edge(oldstmt, i), loc);
++      }
++
++#if BUILDING_GCC_VERSION <= 4007
++      VEC_free(tree, heap, *args);
++#else
++      vec_free(args);
++#endif
++      update_stmt(new_phi);
++      pointer_set_insert(visited->my_stmts, new_phi);
++      return result;
++}
++
++static tree handle_phi(interesting_stmts_t expand_from, tree orig_result)
++{
++#if BUILDING_GCC_VERSION <= 4007
++      VEC(tree, heap) *args = NULL;
++#else
++      vec<tree, va_heap, vl_embed> *args = NULL;
++#endif
++      unsigned int i, len;
++      tree ssa_name_var = NULL_TREE;
++      gphi *oldstmt = as_a_gphi(get_def_stmt(orig_result));
++
++      len = gimple_phi_num_args(oldstmt);
++      pointer_set_insert(expand_from->visited->stmts, oldstmt);
++      for (i = 0; i < len; i++) {
++              tree arg, new_arg;
++
++              arg = gimple_phi_arg_def(oldstmt, i);
++              new_arg = expand(expand_from, arg);
++
++              if (ssa_name_var == NULL_TREE && new_arg != NULL_TREE)
++                      ssa_name_var = SSA_NAME_VAR(new_arg);
++
++              if (is_gimple_constant(arg)) {
++                      tree size_overflow_type = get_size_overflow_type(expand_from->visited, oldstmt, arg);
++
++                      new_arg = cast_a_tree(size_overflow_type, arg);
++              }
++
++#if BUILDING_GCC_VERSION <= 4007
++              VEC_safe_push(tree, heap, args, new_arg);
++#else
++              vec_safe_push(args, new_arg);
++#endif
++      }
++
++#if BUILDING_GCC_VERSION <= 4007
++      return create_new_phi_node(expand_from->visited, &args, ssa_name_var, oldstmt);
++#else
++      return create_new_phi_node(expand_from->visited, args, ssa_name_var, oldstmt);
++#endif
++}
++
++static tree create_cast_assign(struct visited *visited, gassign *stmt)
++{
++      tree rhs1 = gimple_assign_rhs1(stmt);
++      tree lhs = gimple_assign_lhs(stmt);
++      const_tree rhs1_type = TREE_TYPE(rhs1);
++      const_tree lhs_type = TREE_TYPE(lhs);
++
++      if (TYPE_UNSIGNED(rhs1_type) == TYPE_UNSIGNED(lhs_type))
++              return create_assign(visited, stmt, lhs, AFTER_STMT);
++
++      return create_assign(visited, stmt, rhs1, AFTER_STMT);
++}
++
++static bool skip_lhs_cast_check(struct visited *visited, const gassign *stmt)
++{
++      const_tree rhs = gimple_assign_rhs1(stmt);
++      const_gimple def_stmt = get_def_stmt(rhs);
++
++      // 3.8.2 kernel/futex_compat.c compat_exit_robust_list(): get_user() 64 ulong -> int (compat_long_t), int max
++      if (gimple_code(def_stmt) == GIMPLE_ASM)
++              return true;
++
++      if (is_const_plus_unsigned_signed_truncation(rhs)) {
++              pointer_set_insert(visited->no_cast_check, stmt);
++              return true;
++      }
++
++      return false;
++}
++
++static tree create_string_param(tree string)
++{
++      tree i_type, a_type;
++      const int length = TREE_STRING_LENGTH(string);
++
++      gcc_assert(length > 0);
++
++      i_type = build_index_type(build_int_cst(NULL_TREE, length - 1));
++      a_type = build_array_type(char_type_node, i_type);
++
++      TREE_TYPE(string) = a_type;
++      TREE_CONSTANT(string) = 1;
++      TREE_READONLY(string) = 1;
++
++      return build1(ADDR_EXPR, ptr_type_node, string);
++}
++
++static void insert_cond(basic_block cond_bb, tree arg, enum tree_code cond_code, tree type_value)
++{
++      gcond *cond_stmt;
++      gimple_stmt_iterator gsi = gsi_last_bb(cond_bb);
++
++      cond_stmt = gimple_build_cond(cond_code, arg, type_value, NULL_TREE, NULL_TREE);
++      gsi_insert_after(&gsi, cond_stmt, GSI_CONTINUE_LINKING);
++      update_stmt(cond_stmt);
++}
++
++static void insert_cond_result(interesting_stmts_t expand_from, basic_block bb_true, const_gimple stmt, const_tree arg, bool min)
++{
++      gcall *func_stmt;
++      const_gimple def_stmt;
++      const_tree loc_line;
++      tree loc_file, ssa_name, current_func;
++      expanded_location xloc;
++      char *ssa_name_buf;
++      int len;
++      struct cgraph_edge *edge;
++      struct cgraph_node *report_node;
++      int frequency;
++      gimple_stmt_iterator gsi = gsi_start_bb(bb_true);
++
++      def_stmt = get_def_stmt(arg);
++      if (gimple_has_location(def_stmt))
++              xloc = expand_location(gimple_location(def_stmt));
++      else if (gimple_has_location(stmt))
++              xloc = expand_location(gimple_location(stmt));
++      else
++              xloc = expand_location(DECL_SOURCE_LOCATION(current_function_decl));
++
++      loc_line = build_int_cstu(unsigned_type_node, xloc.line);
++
++      loc_file = build_string(strlen(xloc.file) + 1, xloc.file);
++      loc_file = create_string_param(loc_file);
++
++      current_func = build_string(DECL_NAME_LENGTH(current_function_decl) + 1, DECL_NAME_POINTER(current_function_decl));
++      current_func = create_string_param(current_func);
++
++      gcc_assert(DECL_NAME(SSA_NAME_VAR(arg)) != NULL);
++      call_count++;
++      len = asprintf(&ssa_name_buf, "%s_%u %s, count: %u, decl: %s; num: %u; context: %s;\n", DECL_NAME_POINTER(SSA_NAME_VAR(arg)), SSA_NAME_VERSION(arg), min ? "min" : "max", call_count, expand_from->next_node->decl_name, expand_from->next_node->num, expand_from->next_node->context);
++      gcc_assert(len > 0);
++      ssa_name = build_string(len + 1, ssa_name_buf);
++      free(ssa_name_buf);
++      ssa_name = create_string_param(ssa_name);
++
++      // void report_size_overflow(const char *file, unsigned int line, const char *func, const char *ssa_name)
++      func_stmt = as_a_gcall(gimple_build_call(report_size_overflow_decl, 4, loc_file, loc_line, current_func, ssa_name));
++      gsi_insert_after(&gsi, func_stmt, GSI_CONTINUE_LINKING);
++
++      report_node = cgraph_get_create_node(report_size_overflow_decl);
++      gcc_assert(report_node);
++      frequency = compute_call_stmt_bb_frequency(current_function_decl, bb_true);
++
++      edge = cgraph_create_edge(get_cnode(current_function_decl), report_node, func_stmt, bb_true->count, frequency, bb_true->loop_depth);
++      gcc_assert(edge != NULL);
++}
++
++static void insert_check_size_overflow(interesting_stmts_t expand_from, gimple stmt, enum tree_code cond_code, tree arg, tree type_value, bool before, bool min)
++{
++      basic_block cond_bb, join_bb, bb_true;
++      edge e;
++      gimple_stmt_iterator gsi = gsi_for_stmt(stmt);
++
++      cond_bb = gimple_bb(stmt);
++      if (before)
++              gsi_prev(&gsi);
++      if (gsi_end_p(gsi))
++              e = split_block_after_labels(cond_bb);
++      else
++              e = split_block(cond_bb, gsi_stmt(gsi));
++      cond_bb = e->src;
++      join_bb = e->dest;
++      e->flags = EDGE_FALSE_VALUE;
++      e->probability = REG_BR_PROB_BASE;
++
++      bb_true = create_empty_bb(cond_bb);
++      make_edge(cond_bb, bb_true, EDGE_TRUE_VALUE);
++      make_edge(cond_bb, join_bb, EDGE_FALSE_VALUE);
++      make_edge(bb_true, join_bb, EDGE_FALLTHRU);
++
++      gcc_assert(dom_info_available_p(CDI_DOMINATORS));
++      set_immediate_dominator(CDI_DOMINATORS, bb_true, cond_bb);
++      set_immediate_dominator(CDI_DOMINATORS, join_bb, cond_bb);
++
++      if (current_loops != NULL) {
++              gcc_assert(cond_bb->loop_father == join_bb->loop_father);
++              add_bb_to_loop(bb_true, cond_bb->loop_father);
++      }
++
++      insert_cond(cond_bb, arg, cond_code, type_value);
++      insert_cond_result(expand_from, bb_true, stmt, arg, min);
++
++//    print_the_code_insertions(stmt);
++}
++
++void check_size_overflow(interesting_stmts_t expand_from, gimple stmt, tree size_overflow_type, tree cast_rhs, tree rhs, bool before)
++{
++      const_tree rhs_type = TREE_TYPE(rhs);
++      tree cast_rhs_type, type_max_type, type_min_type, type_max, type_min;
++
++      if (pointer_set_contains(expand_from->visited->no_cast_check, stmt))
++              return;
++
++      gcc_assert(rhs_type != NULL_TREE);
++      if (TREE_CODE(rhs_type) == POINTER_TYPE)
++              return;
++
++      gcc_assert(TREE_CODE(rhs_type) == INTEGER_TYPE || TREE_CODE(rhs_type) == ENUMERAL_TYPE);
++
++      if (is_gimple_assign(stmt) && neg_short_add_intentional_overflow(as_a_gassign(stmt)))
++              return;
++
++      type_max = cast_a_tree(size_overflow_type, TYPE_MAX_VALUE(rhs_type));
++      // typemax (-1) < typemin (0)
++      if (TREE_OVERFLOW(type_max))
++              return;
++
++      type_min = cast_a_tree(size_overflow_type, TYPE_MIN_VALUE(rhs_type));
++
++      cast_rhs_type = TREE_TYPE(cast_rhs);
++      type_max_type = TREE_TYPE(type_max);
++      gcc_assert(types_compatible_p(cast_rhs_type, type_max_type));
++
++      insert_check_size_overflow(expand_from, stmt, GT_EXPR, cast_rhs, type_max, before, MAX_CHECK);
++
++      // special case: get_size_overflow_type(), 32, u64->s
++      if (LONG_TYPE_SIZE == GET_MODE_BITSIZE(SImode) && TYPE_UNSIGNED(size_overflow_type) && !TYPE_UNSIGNED(rhs_type))
++              return;
++
++      type_min_type = TREE_TYPE(type_min);
++      gcc_assert(types_compatible_p(type_max_type, type_min_type));
++      insert_check_size_overflow(expand_from, stmt, LT_EXPR, cast_rhs, type_min, before, MIN_CHECK);
++}
++
++static tree get_my_stmt_lhs(struct visited *visited, gimple stmt)
++{
++      gimple_stmt_iterator gsi;
++      gimple next_stmt = NULL;
++
++      gsi = gsi_for_stmt(stmt);
++
++      do {
++              gsi_next(&gsi);
++              next_stmt = gsi_stmt(gsi);
++
++              if (gimple_code(stmt) == GIMPLE_PHI && !pointer_set_contains(visited->my_stmts, next_stmt))
++                      return NULL_TREE;
++
++              if (pointer_set_contains(visited->my_stmts, next_stmt) && !pointer_set_contains(visited->skip_expr_casts, next_stmt))
++                      break;
++
++              gcc_assert(pointer_set_contains(visited->my_stmts, next_stmt));
++      } while (!gsi_end_p(gsi));
++
++      gcc_assert(next_stmt);
++      return get_lhs(next_stmt);
++}
++
++/* When the result of the negation is cast to a signed type then move
++ * the size_overflow cast check before negation.
++ * ssa:
++ * unsigned _588
++ * _588 = _587 >> 12;
++ * _589 = -_588;
++ * _590 = (long int) _589;
++ */
++static bool handle_unsigned_neg_or_bit_not(interesting_stmts_t expand_from, const gassign *stmt)
++{
++      gimple def_neg_stmt, neg_stmt;
++      tree lhs, new_neg_rhs;
++      const_tree rhs, neg_rhs;
++      enum tree_code rhs_code;
++
++      rhs = gimple_assign_rhs1(stmt);
++      lhs = gimple_assign_lhs(stmt);
++      if (TYPE_UNSIGNED(TREE_TYPE(lhs)) || !TYPE_UNSIGNED(TREE_TYPE(rhs)))
++              return false;
++
++      neg_stmt = get_def_stmt(rhs);
++      if (!neg_stmt || !is_gimple_assign(neg_stmt))
++              return false;
++
++      rhs_code = gimple_assign_rhs_code(neg_stmt);
++      if (rhs_code != BIT_NOT_EXPR && rhs_code != NEGATE_EXPR)
++              return false;
++
++      neg_rhs = gimple_assign_rhs1(neg_stmt);
++      def_neg_stmt = get_def_stmt(neg_rhs);
++      if (!def_neg_stmt)
++              return false;
++
++      new_neg_rhs = get_my_stmt_lhs(expand_from->visited, def_neg_stmt);
++      check_size_overflow(expand_from, neg_stmt, TREE_TYPE(new_neg_rhs), new_neg_rhs, lhs, BEFORE_STMT);
++      pointer_set_insert(expand_from->visited->no_cast_check, stmt);
++      return true;
++}
++
++static tree create_cast_overflow_check(interesting_stmts_t expand_from, tree new_rhs1, gassign *stmt)
++{
++      bool cast_lhs, cast_rhs;
++      tree lhs = gimple_assign_lhs(stmt);
++      tree rhs = gimple_assign_rhs1(stmt);
++      const_tree lhs_type = TREE_TYPE(lhs);
++      const_tree rhs_type = TREE_TYPE(rhs);
++      enum machine_mode lhs_mode = TYPE_MODE(lhs_type);
++      enum machine_mode rhs_mode = TYPE_MODE(rhs_type);
++      unsigned int lhs_size = GET_MODE_BITSIZE(lhs_mode);
++      unsigned int rhs_size = GET_MODE_BITSIZE(rhs_mode);
++
++      static bool check_lhs[3][4] = {
++              // ss    su     us     uu
++              { false, true,  true,  false }, // lhs > rhs
++              { false, false, false, false }, // lhs = rhs
++              { true,  true,  true,  true  }, // lhs < rhs
++      };
++
++      static bool check_rhs[3][4] = {
++              // ss    su     us     uu
++              { true,  false, true,  true  }, // lhs > rhs
++              { true,  false, true,  true  }, // lhs = rhs
++              { true,  false, true,  true  }, // lhs < rhs
++      };
++
++      if (handle_unsigned_neg_or_bit_not(expand_from, stmt))
++              return dup_assign(expand_from->visited, stmt, lhs, new_rhs1, NULL_TREE, NULL_TREE);
++
++      // skip lhs check on HI -> QI cast
++      if (rhs_mode == HImode && lhs_mode == QImode) {
++              pointer_set_insert(expand_from->visited->no_cast_check, stmt);
++              return dup_assign(expand_from->visited, stmt, lhs, new_rhs1, NULL_TREE, NULL_TREE);
++      }
++
++      // skip lhs check on signed SI -> HI cast or signed SI -> QI cast
++      if (rhs_mode == SImode && !TYPE_UNSIGNED(rhs_type) && (lhs_mode == HImode || lhs_mode == QImode))
++              return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++
++      if (lhs_size > rhs_size) {
++              cast_lhs = check_lhs[0][TYPE_UNSIGNED(rhs_type) + 2 * TYPE_UNSIGNED(lhs_type)];
++              cast_rhs = check_rhs[0][TYPE_UNSIGNED(rhs_type) + 2 * TYPE_UNSIGNED(lhs_type)];
++      } else if (lhs_size == rhs_size) {
++              cast_lhs = check_lhs[1][TYPE_UNSIGNED(rhs_type) + 2 * TYPE_UNSIGNED(lhs_type)];
++              cast_rhs = check_rhs[1][TYPE_UNSIGNED(rhs_type) + 2 * TYPE_UNSIGNED(lhs_type)];
++      } else {
++              cast_lhs = check_lhs[2][TYPE_UNSIGNED(rhs_type) + 2 * TYPE_UNSIGNED(lhs_type)];
++              cast_rhs = check_rhs[2][TYPE_UNSIGNED(rhs_type) + 2 * TYPE_UNSIGNED(lhs_type)];
++      }
++
++      if (!cast_lhs && !cast_rhs)
++              return dup_assign(expand_from->visited, stmt, lhs, new_rhs1, NULL_TREE, NULL_TREE);
++
++      if (cast_lhs && !skip_lhs_cast_check(expand_from->visited, stmt))
++              check_size_overflow(expand_from, stmt, TREE_TYPE(new_rhs1), new_rhs1, lhs, BEFORE_STMT);
++
++      if (cast_rhs)
++              check_size_overflow(expand_from, stmt, TREE_TYPE(new_rhs1), new_rhs1, rhs, BEFORE_STMT);
++
++      return dup_assign(expand_from->visited, stmt, lhs, new_rhs1, NULL_TREE, NULL_TREE);
++}
++
++static tree handle_unary_rhs(interesting_stmts_t expand_from, gassign *stmt)
++{
++      enum tree_code rhs_code;
++      tree rhs1, new_rhs1, lhs = gimple_assign_lhs(stmt);
++
++      if (pointer_set_contains(expand_from->visited->my_stmts, stmt))
++              return lhs;
++
++      rhs1 = gimple_assign_rhs1(stmt);
++      if (TREE_CODE(TREE_TYPE(rhs1)) == POINTER_TYPE)
++              return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++
++      new_rhs1 = expand(expand_from, rhs1);
++
++      if (new_rhs1 == NULL_TREE)
++              return create_cast_assign(expand_from->visited, stmt);
++
++      if (pointer_set_contains(expand_from->visited->no_cast_check, stmt))
++              return dup_assign(expand_from->visited, stmt, lhs, new_rhs1, NULL_TREE, NULL_TREE);
++
++#if BUILDING_GCC_VERSION >= 5000
++      if (short_or_neg_const_ushort(stmt)) {
++              pointer_set_insert(expand_from->visited->no_cast_check, stmt);
++              return dup_assign(expand_from->visited, stmt, lhs, new_rhs1, NULL_TREE, NULL_TREE);
++      }
++#endif
++
++      rhs_code = gimple_assign_rhs_code(stmt);
++      if (rhs_code == BIT_NOT_EXPR || rhs_code == NEGATE_EXPR) {
++              tree size_overflow_type = get_size_overflow_type(expand_from->visited, stmt, rhs1);
++
++              new_rhs1 = cast_to_new_size_overflow_type(expand_from->visited, stmt, new_rhs1, size_overflow_type, BEFORE_STMT);
++              check_size_overflow(expand_from, stmt, size_overflow_type, new_rhs1, rhs1, BEFORE_STMT);
++              return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++      }
++
++      if (!gimple_assign_cast_p(stmt))
++              return dup_assign(expand_from->visited, stmt, lhs, new_rhs1, NULL_TREE, NULL_TREE);
++
++      return create_cast_overflow_check(expand_from, new_rhs1, stmt);
++}
++
++static tree handle_unary_ops(interesting_stmts_t expand_from, gassign *stmt)
++{
++      tree rhs1, lhs = gimple_assign_lhs(stmt);
++      gimple def_stmt = get_def_stmt(lhs);
++
++      gcc_assert(gimple_code(def_stmt) != GIMPLE_NOP);
++      rhs1 = gimple_assign_rhs1(def_stmt);
++
++      if (is_gimple_constant(rhs1))
++              return create_assign(expand_from->visited, def_stmt, lhs, AFTER_STMT);
++
++      switch (TREE_CODE(rhs1)) {
++      case SSA_NAME: {
++              tree ret = handle_unary_rhs(expand_from, as_a_gassign(def_stmt));
++
++              if (gimple_assign_cast_p(stmt))
++                      unsigned_signed_cast_intentional_overflow(expand_from->visited, stmt);
++              return ret;
++      }
++      case ARRAY_REF:
++      case BIT_FIELD_REF:
++      case ADDR_EXPR:
++      case COMPONENT_REF:
++      case INDIRECT_REF:
++#if BUILDING_GCC_VERSION >= 4006
++      case MEM_REF:
++#endif
++      case TARGET_MEM_REF:
++      case VIEW_CONVERT_EXPR:
++              return create_assign(expand_from->visited, def_stmt, lhs, AFTER_STMT);
++      case PARM_DECL:
++      case VAR_DECL:
++              return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++
++      default:
++              debug_gimple_stmt(def_stmt);
++              debug_tree(rhs1);
++              gcc_unreachable();
++      }
++}
++
++static void __unused print_the_code_insertions(const_gimple stmt)
++{
++      location_t loc = gimple_location(stmt);
++
++      inform(loc, "Integer size_overflow check applied here.");
++}
++
++static bool is_from_cast(const_tree node)
++{
++      gimple def_stmt = get_def_stmt(node);
++
++      if (!def_stmt)
++              return false;
++
++      if (gimple_assign_cast_p(def_stmt))
++              return true;
++
++      return false;
++}
++
++// Skip duplication when there is a minus expr and the type of rhs1 or rhs2 is a pointer_type.
++static bool is_ptr_diff(gassign *stmt)
++{
++      const_tree rhs1, rhs2, ptr1_rhs, ptr2_rhs;
++
++      if (gimple_assign_rhs_code(stmt) != MINUS_EXPR)
++              return false;
++
++      rhs1 = gimple_assign_rhs1(stmt);
++      if (!is_from_cast(rhs1))
++              return false;
++
++      rhs2 = gimple_assign_rhs2(stmt);
++      if (!is_from_cast(rhs2))
++              return false;
++
++      ptr1_rhs = gimple_assign_rhs1(get_def_stmt(rhs1));
++      ptr2_rhs = gimple_assign_rhs1(get_def_stmt(rhs2));
++
++      if (TREE_CODE(TREE_TYPE(ptr1_rhs)) != POINTER_TYPE && TREE_CODE(TREE_TYPE(ptr2_rhs)) != POINTER_TYPE)
++              return false;
++
++      return true;
++}
++
++static tree handle_comparison_code_class(interesting_stmts_t expand_from, gassign *stmt, tree new_rhs1, tree new_rhs2)
++{
++      tree rhs1, rhs2, lhs;
++
++      rhs1 = gimple_assign_rhs1(stmt);
++      if (!is_gimple_constant(rhs1) && new_rhs1 != NULL_TREE)
++              check_size_overflow(expand_from, stmt, TREE_TYPE(new_rhs1), new_rhs1, rhs1, BEFORE_STMT);
++
++      lhs = gimple_assign_lhs(stmt);
++      if (new_rhs2 == NULL_TREE)
++              return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++
++      rhs2 = gimple_assign_rhs2(stmt);
++      if (!is_gimple_constant(rhs2))
++              check_size_overflow(expand_from, stmt, TREE_TYPE(new_rhs2), new_rhs2, rhs2, BEFORE_STMT);
++      return create_assign(expand_from->visited, stmt, lhs, AFTER_STMT);
++}
++
++static tree handle_binary_ops(interesting_stmts_t expand_from, tree lhs)
++{
++      enum intentional_overflow_type res;
++      tree rhs1, rhs2, new_lhs;
++      gassign *def_stmt = as_a_gassign(get_def_stmt(lhs));
++      tree new_rhs1 = NULL_TREE;
++      tree new_rhs2 = NULL_TREE;
++
++      if (is_ptr_diff(def_stmt))
++              return create_assign(expand_from->visited, def_stmt, lhs, AFTER_STMT);
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs2 = gimple_assign_rhs2(def_stmt);
++
++      /* no DImode/TImode division in the 32/64 bit kernel */
++      switch (gimple_assign_rhs_code(def_stmt)) {
++      case RDIV_EXPR:
++      case TRUNC_DIV_EXPR:
++      case CEIL_DIV_EXPR:
++      case FLOOR_DIV_EXPR:
++      case ROUND_DIV_EXPR:
++      case TRUNC_MOD_EXPR:
++      case CEIL_MOD_EXPR:
++      case FLOOR_MOD_EXPR:
++      case ROUND_MOD_EXPR:
++      case EXACT_DIV_EXPR:
++      case POINTER_PLUS_EXPR:
++      case BIT_AND_EXPR:
++              return create_assign(expand_from->visited, def_stmt, lhs, AFTER_STMT);
++      default:
++              break;
++      }
++
++      new_lhs = handle_integer_truncation(expand_from, lhs);
++      if (new_lhs != NULL_TREE)
++              return new_lhs;
++
++      if (TREE_CODE(rhs1) == SSA_NAME)
++              new_rhs1 = expand(expand_from, rhs1);
++      if (TREE_CODE(rhs2) == SSA_NAME)
++              new_rhs2 = expand(expand_from, rhs2);
++
++      res = add_mul_intentional_overflow(def_stmt);
++      if (res != NO_INTENTIONAL_OVERFLOW) {
++              new_lhs = dup_assign(expand_from->visited, def_stmt, lhs, new_rhs1, new_rhs2, NULL_TREE);
++              insert_cast_expr(expand_from->visited, as_a_gassign(get_def_stmt(new_lhs)), res);
++              return new_lhs;
++      }
++
++      if (skip_expr_on_double_type(def_stmt)) {
++              new_lhs = dup_assign(expand_from->visited, def_stmt, lhs, new_rhs1, new_rhs2, NULL_TREE);
++              insert_cast_expr(expand_from->visited, as_a_gassign(get_def_stmt(new_lhs)), NO_INTENTIONAL_OVERFLOW);
++              return new_lhs;
++      }
++
++      if (is_a_neg_overflow(def_stmt, rhs2))
++              return handle_intentional_overflow(expand_from, true, def_stmt, new_rhs1, NULL_TREE);
++      if (is_a_neg_overflow(def_stmt, rhs1))
++              return handle_intentional_overflow(expand_from, true, def_stmt, new_rhs2, new_rhs2);
++
++
++      if (is_a_constant_overflow(def_stmt, rhs2))
++              return handle_intentional_overflow(expand_from, !is_a_cast_and_const_overflow(rhs1), def_stmt, new_rhs1, NULL_TREE);
++      if (is_a_constant_overflow(def_stmt, rhs1))
++              return handle_intentional_overflow(expand_from, !is_a_cast_and_const_overflow(rhs2), def_stmt, new_rhs2, new_rhs2);
++
++      // the const is between 0 and (signed) MAX
++      if (is_gimple_constant(rhs1))
++              new_rhs1 = create_assign(expand_from->visited, def_stmt, rhs1, BEFORE_STMT);
++      if (is_gimple_constant(rhs2))
++              new_rhs2 = create_assign(expand_from->visited, def_stmt, rhs2, BEFORE_STMT);
++
++      if (TREE_CODE_CLASS(gimple_assign_rhs_code(def_stmt)) == tcc_comparison)
++              return handle_comparison_code_class(expand_from, def_stmt, new_rhs1, new_rhs2);
++
++      if (uconst_neg_intentional_overflow(def_stmt)) {
++              inform(gimple_location(def_stmt), "%s: gcc intentional overflow", __func__);
++              gcc_unreachable();
++      }
++
++      return dup_assign(expand_from->visited, def_stmt, lhs, new_rhs1, new_rhs2, NULL_TREE);
++}
++
++#if BUILDING_GCC_VERSION >= 4006
++static tree get_new_rhs(interesting_stmts_t expand_from, tree size_overflow_type, tree rhs)
++{
++      if (is_gimple_constant(rhs))
++              return cast_a_tree(size_overflow_type, rhs);
++      if (TREE_CODE(rhs) != SSA_NAME)
++              return NULL_TREE;
++      return expand(expand_from, rhs);
++}
++
++static tree handle_ternary_ops(interesting_stmts_t expand_from, tree lhs)
++{
++      tree rhs1, rhs2, rhs3, new_rhs1, new_rhs2, new_rhs3, size_overflow_type;
++      gassign *def_stmt = as_a_gassign(get_def_stmt(lhs));
++
++      size_overflow_type = get_size_overflow_type(expand_from->visited, def_stmt, lhs);
++
++      rhs1 = gimple_assign_rhs1(def_stmt);
++      rhs2 = gimple_assign_rhs2(def_stmt);
++      rhs3 = gimple_assign_rhs3(def_stmt);
++      new_rhs1 = get_new_rhs(expand_from, size_overflow_type, rhs1);
++      new_rhs2 = get_new_rhs(expand_from, size_overflow_type, rhs2);
++      new_rhs3 = get_new_rhs(expand_from, size_overflow_type, rhs3);
++
++      return dup_assign(expand_from->visited, def_stmt, lhs, new_rhs1, new_rhs2, new_rhs3);
++}
++#endif
++
++static tree expand_visited(struct visited *visited, gimple def_stmt)
++{
++      gimple_stmt_iterator gsi;
++      enum gimple_code code = gimple_code(def_stmt);
++
++      if (code == GIMPLE_ASM)
++              return NULL_TREE;
++
++      gsi = gsi_for_stmt(def_stmt);
++      gsi_next(&gsi);
++
++      if (gimple_code(def_stmt) == GIMPLE_PHI && gsi_end_p(gsi))
++              return NULL_TREE;
++      return get_my_stmt_lhs(visited, def_stmt);
++}
++
++tree expand(interesting_stmts_t expand_from, tree lhs)
++{
++      gimple def_stmt;
++
++      def_stmt = get_def_stmt(lhs);
++
++      if (!def_stmt || gimple_code(def_stmt) == GIMPLE_NOP)
++              return NULL_TREE;
++
++      if (pointer_set_contains(expand_from->visited->my_stmts, def_stmt))
++              return lhs;
++
++      if (pointer_set_contains(expand_from->visited->stmts, def_stmt))
++              return expand_visited(expand_from->visited, def_stmt);
++
++      if (is_gimple_constant(lhs))
++              return NULL_TREE;
++      if (skip_types(lhs))
++              return NULL_TREE;
++
++      switch (gimple_code(def_stmt)) {
++      case GIMPLE_PHI:
++              return handle_phi(expand_from, lhs);
++      case GIMPLE_CALL:
++      case GIMPLE_ASM:
++              if (is_size_overflow_asm(def_stmt))
++                      return expand(expand_from, get_size_overflow_asm_input(as_a_gasm(def_stmt)));
++              return create_assign(expand_from->visited, def_stmt, lhs, AFTER_STMT);
++      case GIMPLE_ASSIGN:
++              switch (gimple_num_ops(def_stmt)) {
++              case 2:
++                      return handle_unary_ops(expand_from, as_a_gassign(def_stmt));
++              case 3:
++                      return handle_binary_ops(expand_from, lhs);
++#if BUILDING_GCC_VERSION >= 4006
++              case 4:
++                      return handle_ternary_ops(expand_from, lhs);
++#endif
++              }
++      default:
++              debug_gimple_stmt(def_stmt);
++              error("%s: unknown gimple code", __func__);
++              gcc_unreachable();
++      }
++}
+diff --git a/scripts/gcc-plugins/stackleak_plugin.c b/scripts/gcc-plugins/stackleak_plugin.c
+new file mode 100644
+index 0000000..d8d3a9e
+--- /dev/null
++++ b/scripts/gcc-plugins/stackleak_plugin.c
+@@ -0,0 +1,350 @@
++/*
++ * Copyright 2011-2016 by the PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Note: the choice of the license means that the compilation process is
++ *       NOT 'eligible' as defined by gcc's library exception to the GPL v3,
++ *       but for the kernel it doesn't matter since it doesn't link against
++ *       any of the gcc libraries
++ *
++ * gcc plugin to help implement various PaX features
++ *
++ * - track lowest stack pointer
++ *
++ * TODO:
++ * - initialize all local variables
++ *
++ * BUGS:
++ * - none known
++ */
++
++#include "gcc-common.h"
++
++__visible int plugin_is_GPL_compatible;
++
++static int track_frame_size = -1;
++static const char track_function[] = "pax_track_stack";
++static const char check_function[] = "pax_check_alloca";
++static GTY(()) tree track_function_decl;
++static GTY(()) tree check_function_decl;
++static bool init_locals;
++
++static struct plugin_info stackleak_plugin_info = {
++      .version        = "201602181345",
++      .help           = "track-lowest-sp=nn\ttrack sp in functions whose frame size is at least nn bytes\n"
++//                      "initialize-locals\t\tforcibly initialize all stack frames\n"
++};
++
++static void stackleak_check_alloca(gimple_stmt_iterator *gsi)
++{
++      gimple stmt;
++      gcall *check_alloca;
++      tree alloca_size;
++      cgraph_node_ptr node;
++      int frequency;
++      basic_block bb;
++
++      // insert call to void pax_check_alloca(unsigned long size)
++      alloca_size = gimple_call_arg(gsi_stmt(*gsi), 0);
++      stmt = gimple_build_call(check_function_decl, 1, alloca_size);
++      check_alloca = as_a_gcall(stmt);
++      gsi_insert_before(gsi, check_alloca, GSI_SAME_STMT);
++
++      // update the cgraph
++      bb = gimple_bb(check_alloca);
++      node = cgraph_get_create_node(check_function_decl);
++      gcc_assert(node);
++      frequency = compute_call_stmt_bb_frequency(current_function_decl, bb);
++      cgraph_create_edge(cgraph_get_node(current_function_decl), node, check_alloca, bb->count, frequency, bb->loop_depth);
++}
++
++static void stackleak_add_instrumentation(gimple_stmt_iterator *gsi, bool after)
++{
++      gimple stmt;
++      gcall *track_stack;
++      cgraph_node_ptr node;
++      int frequency;
++      basic_block bb;
++
++      // insert call to void pax_track_stack(void)
++      stmt = gimple_build_call(track_function_decl, 0);
++      track_stack = as_a_gcall(stmt);
++      if (after)
++              gsi_insert_after(gsi, track_stack, GSI_CONTINUE_LINKING);
++      else
++              gsi_insert_before(gsi, track_stack, GSI_SAME_STMT);
++
++      // update the cgraph
++      bb = gimple_bb(track_stack);
++      node = cgraph_get_create_node(track_function_decl);
++      gcc_assert(node);
++      frequency = compute_call_stmt_bb_frequency(current_function_decl, bb);
++      cgraph_create_edge(cgraph_get_node(current_function_decl), node, track_stack, bb->count, frequency, bb->loop_depth);
++}
++
++static bool is_alloca(gimple stmt)
++{
++      if (gimple_call_builtin_p(stmt, BUILT_IN_ALLOCA))
++              return true;
++
++#if BUILDING_GCC_VERSION >= 4007
++      if (gimple_call_builtin_p(stmt, BUILT_IN_ALLOCA_WITH_ALIGN))
++              return true;
++#endif
++
++      return false;
++}
++
++static unsigned int stackleak_tree_instrument_execute(void)
++{
++      basic_block bb, entry_bb;
++      bool prologue_instrumented = false, is_leaf = true;
++
++      entry_bb = ENTRY_BLOCK_PTR_FOR_FN(cfun)->next_bb;
++
++      // 1. loop through BBs and GIMPLE statements
++      FOR_EACH_BB_FN(bb, cfun) {
++              gimple_stmt_iterator gsi;
++
++              for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++                      gimple stmt;
++
++                      stmt = gsi_stmt(gsi);
++
++                      if (is_gimple_call(stmt))
++                              is_leaf = false;
++
++                      // gimple match: align 8 built-in BUILT_IN_NORMAL:BUILT_IN_ALLOCA attributes <tree_list 0xb7576450>
++                      if (!is_alloca(stmt))
++                              continue;
++
++                      // 2. insert stack overflow check before each __builtin_alloca call
++                      stackleak_check_alloca(&gsi);
++
++                      // 3. insert track call after each __builtin_alloca call
++                      stackleak_add_instrumentation(&gsi, true);
++                      if (bb == entry_bb)
++                              prologue_instrumented = true;
++              }
++      }
++
++      // special cases for some bad linux code: taking the address of static inline functions will materialize them
++      // but we mustn't instrument some of them as the resulting stack alignment required by the function call ABI
++      // will break other assumptions regarding the expected (but not otherwise enforced) register clobbering  ABI.
++      // case in point: native_save_fl on amd64 when optimized for size clobbers rdx if it were instrumented here.
++      if (is_leaf && !TREE_PUBLIC(current_function_decl) && DECL_DECLARED_INLINE_P(current_function_decl))
++              return 0;
++      if (is_leaf && !strncmp(IDENTIFIER_POINTER(DECL_NAME(current_function_decl)), "_paravirt_", 10))
++              return 0;
++
++      // 4. insert track call at the beginning
++      if (!prologue_instrumented) {
++              gimple_stmt_iterator gsi;
++
++              gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++              bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
++              if (!single_pred_p(bb)) {
++//                    gcc_assert(bb_loop_depth(bb) || (bb->flags & BB_IRREDUCIBLE_LOOP));
++                      split_edge(single_succ_edge(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++                      gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++                      bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
++              }
++              gsi = gsi_after_labels(bb);
++              stackleak_add_instrumentation(&gsi, false);
++      }
++
++      return 0;
++}
++
++static unsigned int stackleak_final_execute(void)
++{
++      rtx_insn *insn, *next;
++
++      if (cfun->calls_alloca)
++              return 0;
++
++      // keep calls only if function frame is big enough
++      if (get_frame_size() >= track_frame_size)
++              return 0;
++
++      // 1. find pax_track_stack calls
++      for (insn = get_insns(); insn; insn = next) {
++              // rtl match: (call_insn 8 7 9 3 (call (mem (symbol_ref ("pax_track_stack") [flags 0x41] <function_decl 0xb7470e80 pax_track_stack>) [0 S1 A8]) (4)) -1 (nil) (nil))
++              rtx body;
++
++              next = NEXT_INSN(insn);
++              if (!CALL_P(insn))
++                      continue;
++              body = PATTERN(insn);
++              if (GET_CODE(body) != CALL)
++                      continue;
++              body = XEXP(body, 0);
++              if (GET_CODE(body) != MEM)
++                      continue;
++              body = XEXP(body, 0);
++              if (GET_CODE(body) != SYMBOL_REF)
++                      continue;
++//            if (strcmp(XSTR(body, 0), track_function))
++              if (SYMBOL_REF_DECL(body) != track_function_decl)
++                      continue;
++//            warning(0, "track_frame_size: %d %ld %d", cfun->calls_alloca, get_frame_size(), track_frame_size);
++              // 2. delete call
++              delete_insn_and_edges(insn);
++#if BUILDING_GCC_VERSION >= 4007
++              if (GET_CODE(next) == NOTE && NOTE_KIND(next) == NOTE_INSN_CALL_ARG_LOCATION) {
++                      insn = next;
++                      next = NEXT_INSN(insn);
++                      delete_insn_and_edges(insn);
++              }
++#endif
++      }
++
++//    print_simple_rtl(stderr, get_insns());
++//    print_rtl(stderr, get_insns());
++//    warning(0, "track_frame_size: %d %ld %d", cfun->calls_alloca, get_frame_size(), track_frame_size);
++
++      return 0;
++}
++
++static bool stackleak_track_stack_gate(void)
++{
++      tree section;
++
++      if (ix86_cmodel != CM_KERNEL)
++              return false;
++
++      section = lookup_attribute("section", DECL_ATTRIBUTES(current_function_decl));
++      if (section && TREE_VALUE(section)) {
++              section = TREE_VALUE(TREE_VALUE(section));
++
++              if (!strncmp(TREE_STRING_POINTER(section), ".init.text", 10))
++                      return false;
++              if (!strncmp(TREE_STRING_POINTER(section), ".devinit.text", 13))
++                      return false;
++              if (!strncmp(TREE_STRING_POINTER(section), ".cpuinit.text", 13))
++                      return false;
++              if (!strncmp(TREE_STRING_POINTER(section), ".meminit.text", 13))
++                      return false;
++      }
++
++      return track_frame_size >= 0;
++}
++
++static void stackleak_start_unit(void *gcc_data, void *user_data)
++{
++      tree fntype;
++
++      // void pax_track_stack(void)
++      fntype = build_function_type_list(void_type_node, NULL_TREE);
++      track_function_decl = build_fn_decl(track_function, fntype);
++      DECL_ASSEMBLER_NAME(track_function_decl); // for LTO
++      TREE_PUBLIC(track_function_decl) = 1;
++      TREE_USED(track_function_decl) = 1;
++      DECL_EXTERNAL(track_function_decl) = 1;
++      DECL_ARTIFICIAL(track_function_decl) = 1;
++      DECL_PRESERVE_P(track_function_decl) = 1;
++
++      // void pax_check_alloca(unsigned long)
++      fntype = build_function_type_list(void_type_node, long_unsigned_type_node, NULL_TREE);
++      check_function_decl = build_fn_decl(check_function, fntype);
++      DECL_ASSEMBLER_NAME(check_function_decl); // for LTO
++      TREE_PUBLIC(check_function_decl) = 1;
++      TREE_USED(check_function_decl) = 1;
++      DECL_EXTERNAL(check_function_decl) = 1;
++      DECL_ARTIFICIAL(check_function_decl) = 1;
++      DECL_PRESERVE_P(check_function_decl) = 1;
++}
++
++static bool stackleak_tree_instrument_gate(void)
++{
++      return stackleak_track_stack_gate();
++}
++
++#define PASS_NAME stackleak_tree_instrument
++#define PROPERTIES_REQUIRED PROP_gimple_leh | PROP_cfg
++#define TODO_FLAGS_START TODO_verify_ssa | TODO_verify_flow | TODO_verify_stmts
++#define TODO_FLAGS_FINISH TODO_verify_ssa | TODO_verify_stmts | TODO_dump_func | TODO_update_ssa | TODO_rebuild_cgraph_edges
++#include "gcc-generate-gimple-pass.h"
++
++static bool stackleak_final_gate(void)
++{
++      return stackleak_track_stack_gate();
++}
++
++#define PASS_NAME stackleak_final
++#define TODO_FLAGS_FINISH TODO_dump_func
++#include "gcc-generate-rtl-pass.h"
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      int i;
++      struct register_pass_info stackleak_tree_instrument_pass_info;
++      struct register_pass_info stackleak_final_pass_info;
++      static const struct ggc_root_tab gt_ggc_r_gt_stackleak[] = {
++              {
++                      .base = &track_function_decl,
++                      .nelt = 1,
++                      .stride = sizeof(track_function_decl),
++                      .cb = &gt_ggc_mx_tree_node,
++                      .pchw = &gt_pch_nx_tree_node
++              },
++              {
++                      .base = &check_function_decl,
++                      .nelt = 1,
++                      .stride = sizeof(check_function_decl),
++                      .cb = &gt_ggc_mx_tree_node,
++                      .pchw = &gt_pch_nx_tree_node
++              },
++              LAST_GGC_ROOT_TAB
++      };
++
++      stackleak_tree_instrument_pass_info.pass                        = make_stackleak_tree_instrument_pass();
++//    stackleak_tree_instrument_pass_info.reference_pass_name         = "tree_profile";
++      stackleak_tree_instrument_pass_info.reference_pass_name         = "optimized";
++      stackleak_tree_instrument_pass_info.ref_pass_instance_number    = 1;
++      stackleak_tree_instrument_pass_info.pos_op                      = PASS_POS_INSERT_BEFORE;
++
++      stackleak_final_pass_info.pass                          = make_stackleak_final_pass();
++      stackleak_final_pass_info.reference_pass_name           = "final";
++      stackleak_final_pass_info.ref_pass_instance_number      = 1;
++      stackleak_final_pass_info.pos_op                        = PASS_POS_INSERT_BEFORE;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &stackleak_plugin_info);
++
++      for (i = 0; i < argc; ++i) {
++              if (!strcmp(argv[i].key, "track-lowest-sp")) {
++                      if (!argv[i].value) {
++                              error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++                              continue;
++                      }
++                      track_frame_size = atoi(argv[i].value);
++                      if (argv[i].value[0] < '0' || argv[i].value[0] > '9' || track_frame_size < 0)
++                              error(G_("invalid option argument '-fplugin-arg-%s-%s=%s'"), plugin_name, argv[i].key, argv[i].value);
++                      continue;
++              }
++              if (!strcmp(argv[i].key, "initialize-locals")) {
++                      if (argv[i].value) {
++                              error(G_("invalid option argument '-fplugin-arg-%s-%s=%s'"), plugin_name, argv[i].key, argv[i].value);
++                              continue;
++                      }
++                      init_locals = true;
++                      continue;
++              }
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      register_callback(plugin_name, PLUGIN_START_UNIT, &stackleak_start_unit, NULL);
++      register_callback(plugin_name, PLUGIN_REGISTER_GGC_ROOTS, NULL, (void *)&gt_ggc_r_gt_stackleak);
++      register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &stackleak_tree_instrument_pass_info);
++      register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &stackleak_final_pass_info);
++
++      return 0;
++}
+diff --git a/scripts/gcc-plugins/structleak_plugin.c b/scripts/gcc-plugins/structleak_plugin.c
+new file mode 100644
+index 0000000..583faac
+--- /dev/null
++++ b/scripts/gcc-plugins/structleak_plugin.c
+@@ -0,0 +1,239 @@
++/*
++ * Copyright 2013-2016 by PaX Team <pageexec@freemail.hu>
++ * Licensed under the GPL v2
++ *
++ * Note: the choice of the license means that the compilation process is
++ *       NOT 'eligible' as defined by gcc's library exception to the GPL v3,
++ *       but for the kernel it doesn't matter since it doesn't link against
++ *       any of the gcc libraries
++ *
++ * gcc plugin to forcibly initialize certain local variables that could
++ * otherwise leak kernel stack to userland if they aren't properly initialized
++ * by later code
++ *
++ * Homepage: http://pax.grsecurity.net/
++ *
++ * Usage:
++ * $ # for 4.5/4.6/C based 4.7
++ * $ gcc -I`gcc -print-file-name=plugin`/include -I`gcc -print-file-name=plugin`/include/c-family -fPIC -shared -O2 -o structleak_plugin.so structleak_plugin.c
++ * $ # for C++ based 4.7/4.8+
++ * $ g++ -I`g++ -print-file-name=plugin`/include -I`g++ -print-file-name=plugin`/include/c-family -fPIC -shared -O2 -o structleak_plugin.so structleak_plugin.c
++ * $ gcc -fplugin=./structleak_plugin.so test.c -O2
++ *
++ * TODO: eliminate redundant initializers
++ *       increase type coverage
++ */
++
++#include "gcc-common.h"
++
++// unused C type flag in all versions 4.5-6
++#define TYPE_USERSPACE(TYPE) TYPE_LANG_FLAG_5(TYPE)
++
++__visible int plugin_is_GPL_compatible;
++
++static struct plugin_info structleak_plugin_info = {
++      .version        = "201607271510",
++      .help           = "disable\tdo not activate plugin\n",
++};
++
++static tree handle_user_attribute(tree *node, tree name, tree args, int flags, bool *no_add_attrs)
++{
++      *no_add_attrs = true;
++
++      // check for types? for now accept everything linux has to offer
++      if (TREE_CODE(*node) != FIELD_DECL)
++              return NULL_TREE;
++
++      *no_add_attrs = false;
++      return NULL_TREE;
++}
++
++static struct attribute_spec user_attr = {
++      .name                   = "user",
++      .min_length             = 0,
++      .max_length             = 0,
++      .decl_required          = false,
++      .type_required          = false,
++      .function_type_required = false,
++      .handler                = handle_user_attribute,
++#if BUILDING_GCC_VERSION >= 4007
++      .affects_type_identity  = true
++#endif
++};
++
++static void register_attributes(void *event_data, void *data)
++{
++      register_attribute(&user_attr);
++//    register_attribute(&force_attr);
++}
++
++static tree get_field_type(tree field)
++{
++      return strip_array_types(TREE_TYPE(field));
++}
++
++static bool is_userspace_type(tree type)
++{
++      tree field;
++
++      for (field = TYPE_FIELDS(type); field; field = TREE_CHAIN(field)) {
++              tree fieldtype = get_field_type(field);
++              enum tree_code code = TREE_CODE(fieldtype);
++
++              if (code == RECORD_TYPE || code == UNION_TYPE)
++                      if (is_userspace_type(fieldtype))
++                              return true;
++
++              if (lookup_attribute("user", DECL_ATTRIBUTES(field)))
++                      return true;
++      }
++      return false;
++}
++
++static void finish_type(void *event_data, void *data)
++{
++      tree type = (tree)event_data;
++
++      if (type == NULL_TREE || type == error_mark_node)
++              return;
++
++#if BUILDING_GCC_VERSION >= 5000
++      if (TREE_CODE(type) == ENUMERAL_TYPE)
++              return;
++#endif
++
++      if (TYPE_USERSPACE(type))
++              return;
++
++      if (is_userspace_type(type))
++              TYPE_USERSPACE(type) = 1;
++}
++
++static void initialize(tree var)
++{
++      basic_block bb;
++      gimple_stmt_iterator gsi;
++      tree initializer;
++      gimple init_stmt;
++
++      // this is the original entry bb before the forced split
++      bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
++
++      // first check if the variable is already initialized, warn otherwise
++      for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) {
++              gimple stmt = gsi_stmt(gsi);
++              tree rhs1;
++
++              // we're looking for an assignment of a single rhs...
++              if (!gimple_assign_single_p(stmt))
++                      continue;
++              rhs1 = gimple_assign_rhs1(stmt);
++#if BUILDING_GCC_VERSION >= 4007
++              // ... of a non-clobbering expression...
++              if (TREE_CLOBBER_P(rhs1))
++                      continue;
++#endif
++              // ... to our variable...
++              if (gimple_get_lhs(stmt) != var)
++                      continue;
++              // if it's an initializer then we're good
++              if (TREE_CODE(rhs1) == CONSTRUCTOR)
++                      return;
++      }
++
++      // these aren't the 0days you're looking for
++//    inform(DECL_SOURCE_LOCATION(var), "userspace variable will be forcibly initialized");
++
++      // build the initializer expression
++      initializer = build_constructor(TREE_TYPE(var), NULL);
++
++      // build the initializer stmt
++      init_stmt = gimple_build_assign(var, initializer);
++      gsi = gsi_after_labels(single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++      gsi_insert_before(&gsi, init_stmt, GSI_NEW_STMT);
++      update_stmt(init_stmt);
++}
++
++static unsigned int structleak_execute(void)
++{
++      basic_block bb;
++      unsigned int ret = 0;
++      tree var;
++      unsigned int i;
++
++      // split the first bb where we can put the forced initializers
++      gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++      bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun));
++      if (!single_pred_p(bb)) {
++//            gcc_assert(bb_loop_depth(bb) || (bb->flags & BB_IRREDUCIBLE_LOOP));
++              split_edge(single_succ_edge(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++              gcc_assert(single_succ_p(ENTRY_BLOCK_PTR_FOR_FN(cfun)));
++      }
++
++      // enumarate all local variables and forcibly initialize our targets
++      FOR_EACH_LOCAL_DECL(cfun, i, var) {
++              tree type = TREE_TYPE(var);
++
++              gcc_assert(DECL_P(var));
++              if (!auto_var_in_fn_p(var, current_function_decl))
++                      continue;
++
++              // only care about structure types
++              if (TREE_CODE(type) != RECORD_TYPE && TREE_CODE(type) != UNION_TYPE)
++                      continue;
++
++              // if the type is of interest, examine the variable
++              if (TYPE_USERSPACE(type))
++                      initialize(var);
++      }
++
++      return ret;
++}
++
++#define PASS_NAME structleak
++#define NO_GATE
++#define PROPERTIES_REQUIRED PROP_cfg
++#define TODO_FLAGS_FINISH TODO_verify_il | TODO_verify_ssa | TODO_verify_stmts | TODO_dump_func | TODO_remove_unused_locals | TODO_update_ssa | TODO_ggc_collect | TODO_verify_flow
++#include "gcc-generate-gimple-pass.h"
++
++__visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gcc_version *version)
++{
++      int i;
++      const char * const plugin_name = plugin_info->base_name;
++      const int argc = plugin_info->argc;
++      const struct plugin_argument * const argv = plugin_info->argv;
++      bool enable = true;
++      struct register_pass_info structleak_pass_info;
++
++      structleak_pass_info.pass                       = make_structleak_pass();
++      structleak_pass_info.reference_pass_name        = "early_optimizations";
++      structleak_pass_info.ref_pass_instance_number   = 1;
++      structleak_pass_info.pos_op                     = PASS_POS_INSERT_BEFORE;
++
++      if (!plugin_default_version_check(version, &gcc_version)) {
++              error(G_("incompatible gcc/plugin versions"));
++              return 1;
++      }
++
++      if (strncmp(lang_hooks.name, "GNU C", 5) && !strncmp(lang_hooks.name, "GNU C+", 6)) {
++              inform(UNKNOWN_LOCATION, G_("%s supports C only, not %s"), plugin_name, lang_hooks.name);
++              enable = false;
++      }
++
++      for (i = 0; i < argc; ++i) {
++              if (!strcmp(argv[i].key, "disable")) {
++                      enable = false;
++                      continue;
++              }
++              error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key);
++      }
++
++      register_callback(plugin_name, PLUGIN_INFO, NULL, &structleak_plugin_info);
++      if (enable) {
++              register_callback(plugin_name, PLUGIN_PASS_MANAGER_SETUP, NULL, &structleak_pass_info);
++              register_callback(plugin_name, PLUGIN_FINISH_TYPE, finish_type, NULL);
++      }
++      register_callback(plugin_name, PLUGIN_ATTRIBUTES, register_attributes, NULL);
++
++      return 0;
++}
+diff --git a/scripts/headers_install.sh b/scripts/headers_install.sh
+index fdebd66..a349e33 100755
+--- a/scripts/headers_install.sh
++++ b/scripts/headers_install.sh
+@@ -32,6 +32,7 @@ do
+       FILE="$(basename "$i")"
+       sed -r \
+               -e 's/([ \t(])(__user|__force|__iomem)[ \t]/\1/g' \
++              -e 's/__intentional_overflow\([- \t,0-9]*\)//g' \
+               -e 's/__attribute_const__([ \t]|$)/\1/g' \
+               -e 's@^#include <linux/compiler.h>@@' \
+               -e 's/(^|[^a-zA-Z0-9])__packed([^a-zA-Z0-9_]|$)/\1__attribute__((packed))\2/g' \
+diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c
+index 1f22a18..1c1b79c 100644
+--- a/scripts/kallsyms.c
++++ b/scripts/kallsyms.c
+@@ -92,7 +92,7 @@ static inline int is_arm_mapping_symbol(const char *str)
+ }
+ static int check_symbol_range(const char *sym, unsigned long long addr,
+-                            struct addr_range *ranges, int entries)
++                            struct addr_range *ranges, size_t entries)
+ {
+       size_t i;
+       struct addr_range *ar;
+@@ -183,7 +183,7 @@ static int read_symbol(FILE *in, struct sym_entry *s)
+ }
+ static int symbol_in_range(struct sym_entry *s, struct addr_range *ranges,
+-                         int entries)
++                         size_t entries)
+ {
+       size_t i;
+       struct addr_range *ar;
+diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h
+index 91ca126..5f7cad6 100644
+--- a/scripts/kconfig/lkc.h
++++ b/scripts/kconfig/lkc.h
+@@ -108,7 +108,8 @@ void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
+ void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
+ void menu_add_option(int token, char *arg);
+ void menu_finalize(struct menu *parent);
+-void menu_set_type(int type);
++enum symbol_type;
++void menu_set_type(enum symbol_type type);
+ /* util.c */
+ struct file *file_lookup(const char *name);
+@@ -123,7 +124,7 @@ struct gstr {
+       * when max_width is not zero long lines in string s (if any) get
+       * wrapped not to exceed the max_width value
+       */
+-      int max_width;
++      size_t max_width;
+ };
+ struct gstr str_new(void);
+ void str_free(struct gstr *gs);
+diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c
+index aed678e..1a703de 100644
+--- a/scripts/kconfig/menu.c
++++ b/scripts/kconfig/menu.c
+@@ -109,7 +109,7 @@ void menu_add_dep(struct expr *dep)
+       current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep));
+ }
+-void menu_set_type(int type)
++void menu_set_type(enum symbol_type type)
+ {
+       struct symbol *sym = current_entry->sym;
+diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c
+index 2432298..faeeb2e 100644
+--- a/scripts/kconfig/symbol.c
++++ b/scripts/kconfig/symbol.c
+@@ -970,7 +970,7 @@ const char *sym_escape_string_value(const char *in)
+ struct sym_match {
+       struct symbol   *sym;
+-      off_t           so, eo;
++      regoff_t        so, eo;
+ };
+ /* Compare matched symbols as thus:
+@@ -992,8 +992,8 @@ static int sym_rel_comp(const void *sym1, const void *sym2)
+        * exactly; if this is the case, we can't decide which comes first,
+        * and we fallback to sorting alphabetically.
+        */
+-      exact1 = (s1->eo - s1->so) == strlen(s1->sym->name);
+-      exact2 = (s2->eo - s2->so) == strlen(s2->sym->name);
++      exact1 = (s1->eo - s1->so) == (long)strlen(s1->sym->name);
++      exact2 = (s2->eo - s2->so) == (long)strlen(s2->sym->name);
+       if (exact1 && !exact2)
+               return -1;
+       if (!exact1 && exact2)
+diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh
+index 4f727eb..9728575 100755
+--- a/scripts/link-vmlinux.sh
++++ b/scripts/link-vmlinux.sh
+@@ -180,7 +180,7 @@ else
+ fi;
+ # final build of init/
+-${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init GCC_PLUGINS_CFLAGS="${GCC_PLUGINS_CFLAGS}"
++${MAKE} -f "${srctree}/scripts/Makefile.build" obj=init GCC_PLUGINS_CFLAGS="${GCC_PLUGINS_CFLAGS}" GCC_PLUGINS_AFLAGS="${GCC_PLUGINS_AFLAGS}"
+ kallsymso=""
+ kallsyms_vmlinux=""
+diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c
+index 29d6699..f131bc6 100644
+--- a/scripts/mod/file2alias.c
++++ b/scripts/mod/file2alias.c
+@@ -156,7 +156,7 @@ static void device_id_check(const char *modname, const char *device_id,
+                           unsigned long size, unsigned long id_size,
+                           void *symval)
+ {
+-      int i;
++      unsigned int i;
+       if (size % id_size || size < id_size) {
+               fatal("%s: sizeof(struct %s_device_id)=%lu is not a modulo "
+@@ -185,7 +185,7 @@ static void device_id_check(const char *modname, const char *device_id,
+ /* USB is special because the bcdDevice can be matched against a numeric range */
+ /* Looks like "usb:vNpNdNdcNdscNdpNicNiscNipNinN" */
+ static void do_usb_entry(void *symval,
+-                       unsigned int bcdDevice_initial, int bcdDevice_initial_digits,
++                       unsigned int bcdDevice_initial, unsigned int bcdDevice_initial_digits,
+                        unsigned char range_lo, unsigned char range_hi,
+                        unsigned char max, struct module *mod)
+ {
+@@ -295,7 +295,7 @@ static void do_usb_entry_multi(void *symval, struct module *mod)
+ {
+       unsigned int devlo, devhi;
+       unsigned char chi, clo, max;
+-      int ndigits;
++      unsigned int ndigits;
+       DEF_FIELD(symval, usb_device_id, match_flags);
+       DEF_FIELD(symval, usb_device_id, idVendor);
+@@ -619,7 +619,7 @@ static void do_pnp_device_entry(void *symval, unsigned long size,
+       for (i = 0; i < count; i++) {
+               DEF_FIELD_ADDR(symval + i*id_size, pnp_device_id, id);
+               char acpi_id[sizeof(*id)];
+-              int j;
++              unsigned int j;
+               buf_printf(&mod->dev_table_buf,
+                          "MODULE_ALIAS(\"pnp:d%s*\");\n", *id);
+@@ -648,7 +648,7 @@ static void do_pnp_card_entries(void *symval, unsigned long size,
+               for (j = 0; j < PNP_MAX_DEVICES; j++) {
+                       const char *id = (char *)(*devs)[j].id;
+-                      int i2, j2;
++                      unsigned int i2, j2;
+                       int dup = 0;
+                       if (!id[0])
+@@ -674,7 +674,7 @@ static void do_pnp_card_entries(void *symval, unsigned long size,
+                       /* add an individual alias for every device entry */
+                       if (!dup) {
+                               char acpi_id[PNP_ID_LEN];
+-                              int k;
++                              unsigned int k;
+                               buf_printf(&mod->dev_table_buf,
+                                          "MODULE_ALIAS(\"pnp:d%s*\");\n", id);
+@@ -999,7 +999,7 @@ static void dmi_ascii_filter(char *d, const char *s)
+ static int do_dmi_entry(const char *filename, void *symval,
+                       char *alias)
+ {
+-      int i, j;
++      unsigned int i, j;
+       DEF_FIELD_ADDR(symval, dmi_system_id, matches);
+       sprintf(alias, "dmi*");
+diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
+index 48958d3..d5ccb52 100644
+--- a/scripts/mod/modpost.c
++++ b/scripts/mod/modpost.c
+@@ -37,6 +37,7 @@ static int vmlinux_section_warnings = 1;
+ static int warn_unresolved = 0;
+ /* How a symbol is exported */
+ static int sec_mismatch_count = 0;
++static int writable_fptr_count = 0;
+ static int sec_mismatch_verbose = 1;
+ static int sec_mismatch_fatal = 0;
+ /* ignore missing files */
+@@ -947,6 +948,7 @@ enum mismatch {
+       ANY_EXIT_TO_ANY_INIT,
+       EXPORT_TO_INIT_EXIT,
+       EXTABLE_TO_NON_TEXT,
++      DATA_TO_TEXT
+ };
+ /**
+@@ -1073,6 +1075,12 @@ static const struct sectioncheck sectioncheck[] = {
+       .good_tosec = {ALL_TEXT_SECTIONS , NULL},
+       .mismatch = EXTABLE_TO_NON_TEXT,
+       .handler = extable_mismatch_handler,
++},
++/* Do not reference code from writable data */
++{
++      .fromsec = { DATA_SECTIONS, NULL },
++      .bad_tosec = { ALL_TEXT_SECTIONS, NULL },
++      .mismatch = DATA_TO_TEXT
+ }
+ };
+@@ -1222,10 +1230,10 @@ static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
+                       continue;
+               if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
+                       continue;
+-              if (sym->st_value == addr)
+-                      return sym;
+               /* Find a symbol nearby - addr are maybe negative */
+               d = sym->st_value - addr;
++              if (d == 0)
++                      return sym;
+               if (d < 0)
+                       d = addr - sym->st_value;
+               if (d < distance) {
+@@ -1384,7 +1392,11 @@ static void report_sec_mismatch(const char *modname,
+       char *prl_from;
+       char *prl_to;
+-      sec_mismatch_count++;
++      if (mismatch->mismatch == DATA_TO_TEXT)
++              writable_fptr_count++;
++      else
++              sec_mismatch_count++;
++
+       if (!sec_mismatch_verbose)
+               return;
+@@ -1508,6 +1520,14 @@ static void report_sec_mismatch(const char *modname,
+               fatal("There's a special handler for this mismatch type, "
+                     "we should never get here.");
+               break;
++      case DATA_TO_TEXT:
++#if 0
++              fprintf(stderr,
++              "The %s %s:%s references\n"
++              "the %s %s:%s%s\n",
++              from, fromsec, fromsym, to, tosec, tosym, to_p);
++#endif
++              break;
+       }
+       fprintf(stderr, "\n");
+ }
+@@ -1897,7 +1917,7 @@ static void section_rel(const char *modname, struct elf_info *elf,
+ static void check_sec_ref(struct module *mod, const char *modname,
+                         struct elf_info *elf)
+ {
+-      int i;
++      unsigned int i;
+       Elf_Shdr *sechdrs = elf->sechdrs;
+       /* Walk through all sections */
+@@ -2028,7 +2048,7 @@ void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
+       va_end(ap);
+ }
+-void buf_write(struct buffer *buf, const char *s, int len)
++void buf_write(struct buffer *buf, const char *s, unsigned int len)
+ {
+       if (buf->size - buf->pos < len) {
+               buf->size += len + SZ;
+@@ -2258,7 +2278,7 @@ static void write_if_changed(struct buffer *b, const char *fname)
+       if (fstat(fileno(file), &st) < 0)
+               goto close_write;
+-      if (st.st_size != b->pos)
++      if (st.st_size != (off_t)b->pos)
+               goto close_write;
+       tmp = NOFAIL(malloc(b->pos));
+@@ -2496,6 +2516,14 @@ int main(int argc, char **argv)
+                             "Set CONFIG_SECTION_MISMATCH_WARN_ONLY=y to allow them.\n");
+               }
+       }
++      if (writable_fptr_count) {
++              if (!sec_mismatch_verbose) {
++                      warn("modpost: Found %d writable function pointer(s).\n"
++                           "To see full details build your kernel with:\n"
++                           "'make CONFIG_DEBUG_SECTION_MISMATCH=y'\n",
++                           writable_fptr_count);
++              }
++      }
+       return err;
+ }
+diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h
+index 6a5e151..f2fbaf5 100644
+--- a/scripts/mod/modpost.h
++++ b/scripts/mod/modpost.h
+@@ -98,15 +98,15 @@ void *do_nofail(void *ptr, const char *expr);
+ struct buffer {
+       char *p;
+-      int pos;
+-      int size;
++      unsigned int pos;
++      unsigned int size;
+ };
+ void __attribute__((format(printf, 2, 3)))
+ buf_printf(struct buffer *buf, const char *fmt, ...);
+ void
+-buf_write(struct buffer *buf, const char *s, int len);
++buf_write(struct buffer *buf, const char *s, unsigned int len);
+ struct module {
+       struct module *next;
+diff --git a/scripts/mod/sumversion.c b/scripts/mod/sumversion.c
+index 944418d..15291e4 100644
+--- a/scripts/mod/sumversion.c
++++ b/scripts/mod/sumversion.c
+@@ -470,7 +470,7 @@ static void write_version(const char *filename, const char *sum,
+               goto out;
+       }
+-      if (write(fd, sum, strlen(sum)+1) != strlen(sum)+1) {
++      if (write(fd, sum, strlen(sum)+1) != (ssize_t)strlen(sum)+1) {
+               warn("writing sum in %s failed: %s\n",
+                       filename, strerror(errno));
+               goto out;
+diff --git a/scripts/module-common.lds b/scripts/module-common.lds
+index 73a2c7d..df11b31 100644
+--- a/scripts/module-common.lds
++++ b/scripts/module-common.lds
+@@ -6,6 +6,10 @@
+ SECTIONS {
+       /DISCARD/ : { *(.discard) }
++      .rodata                 0: {
++              *(.rodata) *(.rodata.*)
++              *(.data..read_only)
++      }
+       __ksymtab               0 : { *(SORT(___ksymtab+*)) }
+       __ksymtab_gpl           0 : { *(SORT(___ksymtab_gpl+*)) }
+       __ksymtab_unused        0 : { *(SORT(___ksymtab_unused+*)) }
+diff --git a/scripts/package/Makefile b/scripts/package/Makefile
+index 71b4a8a..dcb89c5 100644
+--- a/scripts/package/Makefile
++++ b/scripts/package/Makefile
+@@ -40,7 +40,7 @@ if test "$(objtree)" != "$(srctree)"; then \
+ fi ; \
+ $(srctree)/scripts/setlocalversion --save-scmversion; \
+ ln -sf $(srctree) $(2); \
+-tar -cz $(RCS_TAR_IGNORE) -f $(2).tar.gz \
++tar --owner=root --group=root -cz $(RCS_TAR_IGNORE) -f $(2).tar.gz \
+       $(addprefix $(2)/,$(TAR_CONTENT) $(3)); \
+ rm -f $(2) $(objtree)/.scmversion
+diff --git a/scripts/package/mkspec b/scripts/package/mkspec
+index 57673ba..c722dc4 100755
+--- a/scripts/package/mkspec
++++ b/scripts/package/mkspec
+@@ -120,22 +120,33 @@ echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/{build,source}"
+ echo "mkdir -p "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE"
+ echo "EXCLUDES=\"$RCS_TAR_IGNORE --exclude .tmp_versions --exclude=*vmlinux* --exclude=*.o --exclude=*.ko --exclude=*.cmd --exclude=Documentation --exclude=firmware --exclude .config.old --exclude .missing-syscalls.d\""
+ echo "tar "'$EXCLUDES'" -cf- . | (cd "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE;tar xvf -)"
+-echo 'cd $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE"
+-echo "ln -sf /usr/src/kernels/$KERNELRELEASE build"
+-echo "ln -sf /usr/src/kernels/$KERNELRELEASE source"
+ fi
+ echo ""
+ echo "%clean"
+ echo 'rm -rf $RPM_BUILD_ROOT'
+ echo ""
++echo "%pre"
++echo 'chmod -f 0500 /boot'
++echo 'if [ -d /lib/modules ]; then'
++echo 'chmod -f 0500 /lib/modules'
++echo 'fi'
++echo 'if [ -d /lib32/modules ]; then'
++echo 'chmod -f 0500 /lib32/modules'
++echo 'fi'
++echo 'if [ -d /lib64/modules ]; then'
++echo 'chmod -f 0500 /lib64/modules'
++echo 'fi'
++echo ""
++echo "%post devel"
++echo "ln -sf /usr/src/kernels/$KERNELRELEASE /lib/modules/$KERNELRELEASE/build"
++echo "ln -sf /usr/src/kernels/$KERNELRELEASE /lib/modules/$KERNELRELEASE/source"
++echo ""
+ echo "%post"
+-echo "if [ -x /sbin/installkernel -a -r /boot/vmlinuz-$KERNELRELEASE -a -r /boot/System.map-$KERNELRELEASE ]; then"
+-echo "cp /boot/vmlinuz-$KERNELRELEASE /boot/.vmlinuz-$KERNELRELEASE-rpm"
+-echo "cp /boot/System.map-$KERNELRELEASE /boot/.System.map-$KERNELRELEASE-rpm"
+-echo "rm -f /boot/vmlinuz-$KERNELRELEASE /boot/System.map-$KERNELRELEASE"
+-echo "/sbin/installkernel $KERNELRELEASE /boot/.vmlinuz-$KERNELRELEASE-rpm /boot/.System.map-$KERNELRELEASE-rpm"
+-echo "rm -f /boot/.vmlinuz-$KERNELRELEASE-rpm /boot/.System.map-$KERNELRELEASE-rpm"
++echo "if [ -x /sbin/dracut ]; then"
++echo '/sbin/new-kernel-pkg --dracut --mkinitrd --depmod --install --make-default '"$KERNELRELEASE"' || exit $?'
++echo "else"
++echo '/sbin/new-kernel-pkg --mkinitrd --depmod --install --make-default '"$KERNELRELEASE"' || exit $?'
+ echo "fi"
+ echo ""
+ echo "%preun"
+@@ -149,10 +160,10 @@ echo "/sbin/update-bootloader --remove $KERNELRELEASE"
+ echo "fi"
+ echo ""
+ echo "%files"
+-echo '%defattr (-, root, root)'
+-echo "/lib/modules/$KERNELRELEASE"
++echo '%defattr (400, root, root, 500)'
+ echo "%exclude /lib/modules/$KERNELRELEASE/build"
+ echo "%exclude /lib/modules/$KERNELRELEASE/source"
++echo "/lib/modules/$KERNELRELEASE"
+ echo "/lib/firmware/$KERNELRELEASE"
+ echo "/boot/*"
+ echo ""
+@@ -162,9 +173,11 @@ echo "/usr/include"
+ echo ""
+ if ! $PREBUILT; then
+ echo "%files devel"
+-echo '%defattr (-, root, root)'
++echo '%defattr (400, root, root, 500)'
++echo "%dir /lib/modules/$KERNELRELEASE"
+ echo "/usr/src/kernels/$KERNELRELEASE"
+-echo "/lib/modules/$KERNELRELEASE/build"
+-echo "/lib/modules/$KERNELRELEASE/source"
++echo "%attr (500, root, root) /usr/src/kernels/$KERNELRELEASE/scripts/recordmcount"
++echo "%attr (500, root, root) /usr/src/kernels/$KERNELRELEASE/scripts/basic/fixdep"
++echo "%attr (500, root, root) /usr/src/kernels/$KERNELRELEASE/scripts/mod/modpost"
+ echo ""
+ fi
+diff --git a/scripts/pnmtologo.c b/scripts/pnmtologo.c
+index 4718d78..9220d58 100644
+--- a/scripts/pnmtologo.c
++++ b/scripts/pnmtologo.c
+@@ -244,14 +244,14 @@ static void write_header(void)
+     fprintf(out, " *  Linux logo %s\n", logoname);
+     fputs(" */\n\n", out);
+     fputs("#include <linux/linux_logo.h>\n\n", out);
+-    fprintf(out, "static unsigned char %s_data[] __initdata = {\n",
++    fprintf(out, "static unsigned char %s_data[] = {\n",
+           logoname);
+ }
+ static void write_footer(void)
+ {
+     fputs("\n};\n\n", out);
+-    fprintf(out, "const struct linux_logo %s __initconst = {\n", logoname);
++    fprintf(out, "const struct linux_logo %s = {\n", logoname);
+     fprintf(out, "\t.type\t\t= %s,\n", logo_types[logo_type]);
+     fprintf(out, "\t.width\t\t= %d,\n", logo_width);
+     fprintf(out, "\t.height\t\t= %d,\n", logo_height);
+@@ -381,7 +381,7 @@ static void write_logo_clut224(void)
+     fputs("\n};\n\n", out);
+     /* write logo clut */
+-    fprintf(out, "static unsigned char %s_clut[] __initdata = {\n",
++    fprintf(out, "static unsigned char %s_clut[] = {\n",
+           logoname);
+     write_hex_cnt = 0;
+     for (i = 0; i < logo_clutsize; i++) {
+diff --git a/scripts/sortextable.h b/scripts/sortextable.h
+index ba87004..3f4852c 100644
+--- a/scripts/sortextable.h
++++ b/scripts/sortextable.h
+@@ -108,9 +108,9 @@ do_func(Elf_Ehdr *ehdr, char const *const fname, table_sort_t custom_sort)
+       const char *secstrtab;
+       const char *strtab;
+       char *extab_image;
+-      int extab_index = 0;
+-      int i;
+-      int idx;
++      unsigned int extab_index = 0;
++      unsigned int i;
++      unsigned int idx;
+       unsigned int num_sections;
+       unsigned int secindex_strings;
+diff --git a/scripts/tags.sh b/scripts/tags.sh
+index b3775a9..be6b9f9 100755
+--- a/scripts/tags.sh
++++ b/scripts/tags.sh
+@@ -26,7 +26,7 @@ else
+ fi
+ # ignore userspace tools
+-ignore="$ignore ( -path ${tree}tools ) -prune -o"
++ignore="$ignore ( -path \"${tree}tools/[^g]*\" ) -prune -o"
+ # Find all available archs
+ find_all_archs()
+diff --git a/security/Kconfig b/security/Kconfig
+index 118f454..d1818a1 100644
+--- a/security/Kconfig
++++ b/security/Kconfig
+@@ -4,6 +4,1066 @@
+ menu "Security options"
++menu "Grsecurity"
++
++config ARCH_TRACK_EXEC_LIMIT
++      bool
++
++config PAX_PER_CPU_PGD
++      bool
++
++config TASK_SIZE_MAX_SHIFT
++      int
++      depends on X86_64
++      default 47 if !PAX_PER_CPU_PGD
++      default 42 if PAX_PER_CPU_PGD
++
++config PAX_ENABLE_PAE
++      bool
++      default y if (X86_32 && (MPENTIUM4 || MK8 || MPSC || MCORE2 || MATOM))
++
++config GRKERNSEC
++      bool "Grsecurity"
++      select CRYPTO
++      select CRYPTO_SHA256
++      select PROC_FS
++      select STOP_MACHINE
++      select TTY
++      select DEBUG_KERNEL
++      select DEBUG_LIST
++      select MULTIUSER
++      select BUG
++      help
++        If you say Y here, you will be able to configure many features
++        that will enhance the security of your system.  It is highly
++        recommended that you say Y here and read through the help
++        for each option so that you fully understand the features and
++        can evaluate their usefulness for your machine.
++
++choice
++      prompt "Configuration Method"
++      depends on GRKERNSEC
++      default GRKERNSEC_CONFIG_CUSTOM
++      help
++
++config GRKERNSEC_CONFIG_AUTO
++      bool "Automatic"
++      help
++        If you choose this configuration method, you'll be able to answer a small
++        number of simple questions about how you plan to use this kernel.
++        The settings of grsecurity and PaX will be automatically configured for
++        the highest commonly-used settings within the provided constraints.
++
++        If you require additional configuration, custom changes can still be made
++        from the "custom configuration" menu.
++
++config GRKERNSEC_CONFIG_CUSTOM
++      bool "Custom"
++      help
++        If you choose this configuration method, you'll be able to configure all
++        grsecurity and PaX settings manually.  Via this method, no options are
++        automatically enabled.
++
++        Take note that if menuconfig is exited with this configuration method
++        chosen, you will not be able to use the automatic configuration methods
++        without starting again with a kernel configuration with no grsecurity
++        or PaX options specified inside.
++
++endchoice
++
++choice
++      prompt "Usage Type"
++      depends on (GRKERNSEC && GRKERNSEC_CONFIG_AUTO)
++      default GRKERNSEC_CONFIG_SERVER
++      help
++
++config GRKERNSEC_CONFIG_SERVER
++      bool "Server"
++      help
++        Choose this option if you plan to use this kernel on a server.
++
++config GRKERNSEC_CONFIG_DESKTOP
++      bool "Desktop"
++      help
++        Choose this option if you plan to use this kernel on a desktop.
++
++endchoice
++
++choice
++      prompt "Virtualization Type"
++      depends on (GRKERNSEC && X86 && GRKERNSEC_CONFIG_AUTO)
++      default GRKERNSEC_CONFIG_VIRT_NONE
++      help
++
++config GRKERNSEC_CONFIG_VIRT_NONE
++      bool "None"
++      help
++        Choose this option if this kernel will be run on bare metal.
++
++config GRKERNSEC_CONFIG_VIRT_GUEST
++      bool "Guest"
++      help
++        Choose this option if this kernel will be run as a VM guest.
++
++config GRKERNSEC_CONFIG_VIRT_HOST
++      bool "Host"
++      help
++        Choose this option if this kernel will be run as a VM host.
++
++endchoice
++
++choice
++      prompt "Virtualization Hardware"
++      depends on (GRKERNSEC && X86 && GRKERNSEC_CONFIG_AUTO && (GRKERNSEC_CONFIG_VIRT_GUEST || GRKERNSEC_CONFIG_VIRT_HOST))
++      help
++
++config GRKERNSEC_CONFIG_VIRT_EPT
++      bool "EPT/RVI Processor Support"
++      depends on X86
++      help
++        Choose this option if your CPU supports the EPT or RVI features of 2nd-gen
++        hardware virtualization.  This allows for additional kernel hardening protections
++        to operate without additional performance impact.
++
++        To see if your Intel processor supports EPT, see:
++        http://ark.intel.com/Products/VirtualizationTechnology
++        (Most Core i3/5/7 support EPT)
++
++        To see if your AMD processor supports RVI, see:
++        http://support.amd.com/us/kbarticles/Pages/GPU120AMDRVICPUsHyperVWin8.aspx
++
++config GRKERNSEC_CONFIG_VIRT_SOFT
++      bool "First-gen/No Hardware Virtualization"
++      help
++        Choose this option if you use an Atom/Pentium/Core 2 processor that either doesn't
++        support hardware virtualization or doesn't support the EPT/RVI extensions.
++
++endchoice
++
++choice
++      prompt "Virtualization Software"
++      depends on (GRKERNSEC && GRKERNSEC_CONFIG_AUTO && (GRKERNSEC_CONFIG_VIRT_GUEST || GRKERNSEC_CONFIG_VIRT_HOST))
++      help
++
++config GRKERNSEC_CONFIG_VIRT_XEN
++      bool "Xen"
++      help
++        Choose this option if this kernel is running as a Xen guest or host.
++
++config GRKERNSEC_CONFIG_VIRT_VMWARE
++      bool "VMWare"
++      help
++        Choose this option if this kernel is running as a VMWare guest or host.
++
++config GRKERNSEC_CONFIG_VIRT_KVM
++      bool "KVM"
++      help
++        Choose this option if this kernel is running as a KVM guest or host.
++
++config GRKERNSEC_CONFIG_VIRT_VIRTUALBOX
++      bool "VirtualBox"
++      help
++        Choose this option if this kernel is running as a VirtualBox guest or host.
++
++config GRKERNSEC_CONFIG_VIRT_HYPERV
++      bool "Hyper-V"
++      help
++        Choose this option if this kernel is running as a Hyper-V guest.
++
++endchoice
++
++choice
++      prompt "Required Priorities"
++      depends on (GRKERNSEC && GRKERNSEC_CONFIG_AUTO)
++      default GRKERNSEC_CONFIG_PRIORITY_PERF
++      help
++
++config GRKERNSEC_CONFIG_PRIORITY_PERF
++      bool "Performance"
++      help
++        Choose this option if performance is of highest priority for this deployment
++        of grsecurity.  Features like UDEREF on a 64bit kernel, kernel stack clearing,
++        clearing of structures intended for userland, and freed memory sanitizing will
++        be disabled.
++
++config GRKERNSEC_CONFIG_PRIORITY_SECURITY
++      bool "Security"
++      help
++        Choose this option if security is of highest priority for this deployment of
++        grsecurity.  UDEREF, kernel stack clearing, clearing of structures intended
++        for userland, and freed memory sanitizing will be enabled for this kernel.
++        In a worst-case scenario, these features can introduce a 20% performance hit
++        (UDEREF on x64 contributing half of this hit).
++
++endchoice
++
++menu "Default Special Groups"
++depends on (GRKERNSEC && GRKERNSEC_CONFIG_AUTO)
++
++config GRKERNSEC_PROC_GID
++      int "GID exempted from /proc restrictions"
++      default 1001
++      help
++        Setting this GID determines which group will be exempted from
++        grsecurity's /proc restrictions, allowing users of the specified
++        group  to view network statistics and the existence of other users'
++        processes on the system.  This GID may also be chosen at boot time
++        via "grsec_proc_gid=" on the kernel commandline.
++
++config GRKERNSEC_TPE_UNTRUSTED_GID
++        int "GID for TPE-untrusted users"
++        depends on GRKERNSEC_CONFIG_SERVER && GRKERNSEC_TPE && !GRKERNSEC_TPE_INVERT
++        default 1005
++        help
++        Setting this GID determines which group untrusted users should
++        be added to.  These users will be placed under grsecurity's Trusted Path
++        Execution mechanism, preventing them from executing their own binaries.
++        The users will only be able to execute binaries in directories owned and
++        writable only by the root user.  If the sysctl option is enabled, a sysctl
++        option with name "tpe_gid" is created.
++
++config GRKERNSEC_TPE_TRUSTED_GID
++        int "GID for TPE-trusted users"
++        depends on GRKERNSEC_CONFIG_SERVER && GRKERNSEC_TPE && GRKERNSEC_TPE_INVERT
++        default 1005
++        help
++          Setting this GID determines what group TPE restrictions will be
++          *disabled* for.  If the sysctl option is enabled, a sysctl option
++          with name "tpe_gid" is created.
++
++config GRKERNSEC_SYMLINKOWN_GID
++        int "GID for users with kernel-enforced SymlinksIfOwnerMatch"
++        depends on GRKERNSEC_CONFIG_SERVER
++        default 1006
++        help
++          Setting this GID determines what group kernel-enforced
++          SymlinksIfOwnerMatch will be enabled for.  If the sysctl option
++          is enabled, a sysctl option with name "symlinkown_gid" is created.
++
++
++endmenu
++
++menu "Customize Configuration"
++depends on GRKERNSEC
++
++menu "PaX"
++
++config PAX
++      bool "Enable various PaX features"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on GRKERNSEC && (ALPHA || ARM || AVR32 || IA64 || MIPS || PARISC || PPC || SPARC || X86)
++      help
++        This allows you to enable various PaX features.  PaX adds
++        intrusion prevention mechanisms to the kernel that reduce
++        the risks posed by exploitable memory corruption bugs.
++
++menu "PaX Control"
++      depends on PAX
++
++config PAX_SOFTMODE
++      bool 'Support soft mode'
++      help
++        Enabling this option will allow you to run PaX in soft mode, that
++        is, PaX features will not be enforced by default, only on executables
++        marked explicitly.  You must also enable PT_PAX_FLAGS or XATTR_PAX_FLAGS
++        support as they are the only way to mark executables for soft mode use.
++
++        Soft mode can be activated by using the "pax_softmode=1" kernel command
++        line option on boot.  Furthermore you can control various PaX features
++        at runtime via the entries in /proc/sys/kernel/pax.
++
++config PAX_EI_PAX
++      bool 'Use legacy ELF header marking'
++      default y if GRKERNSEC_CONFIG_AUTO
++      help
++        Enabling this option will allow you to control PaX features on
++        a per executable basis via the 'chpax' utility available at
++        http://pax.grsecurity.net/.  The control flags will be read from
++        an otherwise reserved part of the ELF header.  This marking has
++        numerous drawbacks (no support for soft-mode, toolchain does not
++        know about the non-standard use of the ELF header) therefore it
++        has been deprecated in favour of PT_PAX_FLAGS and XATTR_PAX_FLAGS
++        support.
++
++        Note that if you enable PT_PAX_FLAGS or XATTR_PAX_FLAGS marking
++        support as well, they will override the legacy EI_PAX marks.
++
++        If you enable none of the marking options then all applications
++        will run with PaX enabled on them by default.
++
++config PAX_PT_PAX_FLAGS
++      bool 'Use ELF program header marking'
++      default y if GRKERNSEC_CONFIG_AUTO
++      help
++        Enabling this option will allow you to control PaX features on
++        a per executable basis via the 'paxctl' utility available at
++        http://pax.grsecurity.net/.  The control flags will be read from
++        a PaX specific ELF program header (PT_PAX_FLAGS).  This marking
++        has the benefits of supporting both soft mode and being fully
++        integrated into the toolchain (the binutils patch is available
++        from http://pax.grsecurity.net).
++
++        Note that if you enable the legacy EI_PAX marking support as well,
++        the EI_PAX marks will be overridden by the PT_PAX_FLAGS marks.
++
++        If you enable both PT_PAX_FLAGS and XATTR_PAX_FLAGS support then you
++        must make sure that the marks are the same if a binary has both marks.
++
++        If you enable none of the marking options then all applications
++        will run with PaX enabled on them by default.
++
++config PAX_XATTR_PAX_FLAGS
++      bool 'Use filesystem extended attributes marking'
++      default y if GRKERNSEC_CONFIG_AUTO
++      select CIFS_XATTR if CIFS
++      select EXT2_FS_XATTR if EXT2_FS
++      select EXT3_FS_XATTR if EXT3_FS
++      select F2FS_FS_XATTR if F2FS_FS
++      select JFFS2_FS_XATTR if JFFS2_FS
++      select REISERFS_FS_XATTR if REISERFS_FS
++      select SQUASHFS_XATTR if SQUASHFS
++      select TMPFS_XATTR if TMPFS
++      help
++        Enabling this option will allow you to control PaX features on
++        a per executable basis via the 'setfattr' utility.  The control
++        flags will be read from the user.pax.flags extended attribute of
++        the file.  This marking has the benefit of supporting binary-only
++        applications that self-check themselves (e.g., skype) and would
++        not tolerate chpax/paxctl changes.  The main drawback is that
++        extended attributes are not supported by some filesystems (e.g.,
++        isofs, udf, vfat) so copying files through such filesystems will
++        lose the extended attributes and these PaX markings.
++
++        Note that if you enable the legacy EI_PAX marking support as well,
++        the EI_PAX marks will be overridden by the XATTR_PAX_FLAGS marks.
++
++        If you enable both PT_PAX_FLAGS and XATTR_PAX_FLAGS support then you
++        must make sure that the marks are the same if a binary has both marks.
++
++        If you enable none of the marking options then all applications
++        will run with PaX enabled on them by default.
++
++choice
++      prompt 'MAC system integration'
++      default PAX_HAVE_ACL_FLAGS
++      help
++        Mandatory Access Control systems have the option of controlling
++        PaX flags on a per executable basis, choose the method supported
++        by your particular system.
++
++        - "none": if your MAC system does not interact with PaX,
++        - "direct": if your MAC system defines pax_set_initial_flags() itself,
++        - "hook": if your MAC system uses the pax_set_initial_flags_func callback.
++
++        NOTE: this option is for developers/integrators only.
++
++      config PAX_NO_ACL_FLAGS
++              bool 'none'
++
++      config PAX_HAVE_ACL_FLAGS
++              bool 'direct'
++
++      config PAX_HOOK_ACL_FLAGS
++              bool 'hook'
++endchoice
++
++endmenu
++
++menu "Non-executable pages"
++      depends on PAX
++
++config PAX_NOEXEC
++      bool "Enforce non-executable pages"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on ALPHA || (ARM && (CPU_V6 || CPU_V6K || CPU_V7)) || IA64 || MIPS || PARISC || PPC || S390 || SPARC || X86
++      help
++        By design some architectures do not allow for protecting memory
++        pages against execution or even if they do, Linux does not make
++        use of this feature.  In practice this means that if a page is
++        readable (such as the stack or heap) it is also executable.
++
++        There is a well known exploit technique that makes use of this
++        fact and a common programming mistake where an attacker can
++        introduce code of his choice somewhere in the attacked program's
++        memory (typically the stack or the heap) and then execute it.
++
++        If the attacked program was running with different (typically
++        higher) privileges than that of the attacker, then he can elevate
++        his own privilege level (e.g. get a root shell, write to files for
++        which he does not have write access to, etc).
++
++        Enabling this option will let you choose from various features
++        that prevent the injection and execution of 'foreign' code in
++        a program.
++
++        This will also break programs that rely on the old behaviour and
++        expect that dynamically allocated memory via the malloc() family
++        of functions is executable (which it is not).  Notable examples
++        are the XFree86 4.x server, the java runtime and wine.
++
++config PAX_PAGEEXEC
++      bool "Paging based non-executable pages"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on PAX_NOEXEC && (!X86_32 || M586 || M586TSC || M586MMX || M686 || MPENTIUMII || MPENTIUMIII || MPENTIUMM || MCORE2 || MATOM || MPENTIUM4 || MPSC || MK7 || MK8 || MWINCHIPC6 || MWINCHIP2 || MWINCHIP3D || MVIAC3_2 || MVIAC7)
++      select ARCH_TRACK_EXEC_LIMIT if X86_32
++      help
++        This implementation is based on the paging feature of the CPU.
++        On i386 without hardware non-executable bit support there is a
++        variable but usually low performance impact, however on Intel's
++        P4 core based CPUs it is very high so you should not enable this
++        for kernels meant to be used on such CPUs.
++
++        On alpha, avr32, ia64, parisc, sparc, sparc64, x86_64 and i386
++        with hardware non-executable bit support there is no performance
++        impact, on ppc the impact is negligible.
++
++        Note that several architectures require various emulations due to
++        badly designed userland ABIs, this will cause a performance impact
++        but will disappear as soon as userland is fixed. For example, ppc
++        userland MUST have been built with secure-plt by a recent toolchain.
++
++config PAX_SEGMEXEC
++      bool "Segmentation based non-executable pages"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on PAX_NOEXEC && X86_32
++      help
++        This implementation is based on the segmentation feature of the
++        CPU and has a very small performance impact, however applications
++        will be limited to a 1.5 GB address space instead of the normal
++        3 GB.
++
++config PAX_EMUTRAMP
++      bool "Emulate trampolines"
++      default y if PARISC || GRKERNSEC_CONFIG_AUTO
++      depends on (PAX_PAGEEXEC || PAX_SEGMEXEC) && (PARISC || X86)
++      help
++        There are some programs and libraries that for one reason or
++        another attempt to execute special small code snippets from
++        non-executable memory pages.  Most notable examples are the
++        signal handler return code generated by the kernel itself and
++        the GCC trampolines.
++
++        If you enabled CONFIG_PAX_PAGEEXEC or CONFIG_PAX_SEGMEXEC then
++        such programs will no longer work under your kernel.
++
++        As a remedy you can say Y here and use the 'chpax' or 'paxctl'
++        utilities to enable trampoline emulation for the affected programs
++        yet still have the protection provided by the non-executable pages.
++
++        On parisc you MUST enable this option and EMUSIGRT as well, otherwise
++        your system will not even boot.
++
++        Alternatively you can say N here and use the 'chpax' or 'paxctl'
++        utilities to disable CONFIG_PAX_PAGEEXEC and CONFIG_PAX_SEGMEXEC
++        for the affected files.
++
++        NOTE: enabling this feature *may* open up a loophole in the
++        protection provided by non-executable pages that an attacker
++        could abuse.  Therefore the best solution is to not have any
++        files on your system that would require this option.  This can
++        be achieved by not using libc5 (which relies on the kernel
++        signal handler return code) and not using or rewriting programs
++        that make use of the nested function implementation of GCC.
++        Skilled users can just fix GCC itself so that it implements
++        nested function calls in a way that does not interfere with PaX.
++
++config PAX_EMUSIGRT
++      bool "Automatically emulate sigreturn trampolines"
++      depends on PAX_EMUTRAMP && PARISC
++      default y
++      help
++        Enabling this option will have the kernel automatically detect
++        and emulate signal return trampolines executing on the stack
++        that would otherwise lead to task termination.
++
++        This solution is intended as a temporary one for users with
++        legacy versions of libc (libc5, glibc 2.0, uClibc before 0.9.17,
++        Modula-3 runtime, etc) or executables linked to such, basically
++        everything that does not specify its own SA_RESTORER function in
++        normal executable memory like glibc 2.1+ does.
++
++        On parisc you MUST enable this option, otherwise your system will
++        not even boot.
++
++        NOTE: this feature cannot be disabled on a per executable basis
++        and since it *does* open up a loophole in the protection provided
++        by non-executable pages, the best solution is to not have any
++        files on your system that would require this option.
++
++config PAX_MPROTECT
++      bool "Restrict mprotect()"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on (PAX_PAGEEXEC || PAX_SEGMEXEC)
++      help
++        Enabling this option will prevent programs from
++         - changing the executable status of memory pages that were
++           not originally created as executable,
++         - making read-only executable pages writable again,
++         - creating executable pages from anonymous memory,
++         - making read-only-after-relocations (RELRO) data pages writable again.
++
++        You should say Y here to complete the protection provided by
++        the enforcement of non-executable pages.
++
++        NOTE: you can use the 'chpax' or 'paxctl' utilities to control
++        this feature on a per file basis.
++
++config PAX_MPROTECT_COMPAT
++      bool "Use legacy/compat protection demoting (read help)"
++      depends on PAX_MPROTECT
++      default n
++      help
++        The current implementation of PAX_MPROTECT denies RWX allocations/mprotects
++        by sending the proper error code to the application.  For some older
++        userland, this can cause problems with applications that assume such
++        allocations will not be prevented by PaX or SELinux and other access
++        control systems and have no fallback mechanisms.  For modern distros,
++        this option should generally be set to 'N'.
++
++config PAX_ELFRELOCS
++      bool "Allow ELF text relocations (read help)"
++      depends on PAX_MPROTECT
++      default n
++      help
++        Non-executable pages and mprotect() restrictions are effective
++        in preventing the introduction of new executable code into an
++        attacked task's address space.  There remain only two venues
++        for this kind of attack: if the attacker can execute already
++        existing code in the attacked task then he can either have it
++        create and mmap() a file containing his code or have it mmap()
++        an already existing ELF library that does not have position
++        independent code in it and use mprotect() on it to make it
++        writable and copy his code there.  While protecting against
++        the former approach is beyond PaX, the latter can be prevented
++        by having only PIC ELF libraries on one's system (which do not
++        need to relocate their code).  If you are sure this is your case,
++        as is the case with all modern Linux distributions, then leave
++        this option disabled.  You should say 'n' here.
++
++config PAX_ETEXECRELOCS
++      bool "Allow ELF ET_EXEC text relocations"
++      depends on PAX_MPROTECT && (ALPHA || IA64 || PARISC)
++      select PAX_ELFRELOCS
++      default y
++      help
++        On some architectures there are incorrectly created applications
++        that require text relocations and would not work without enabling
++        this option.  If you are an alpha, ia64 or parisc user, you should
++        enable this option and disable it once you have made sure that
++        none of your applications need it.
++
++config PAX_EMUPLT
++      bool "Automatically emulate ELF PLT"
++      depends on PAX_MPROTECT && (ALPHA || PARISC || SPARC)
++      default y
++      help
++        Enabling this option will have the kernel automatically detect
++        and emulate the Procedure Linkage Table entries in ELF files.
++        On some architectures such entries are in writable memory, and
++        become non-executable leading to task termination.  Therefore
++        it is mandatory that you enable this option on alpha, parisc,
++        sparc and sparc64, otherwise your system would not even boot.
++
++        NOTE: this feature *does* open up a loophole in the protection
++        provided by the non-executable pages, therefore the proper
++        solution is to modify the toolchain to produce a PLT that does
++        not need to be writable.
++
++config PAX_DLRESOLVE
++      bool 'Emulate old glibc resolver stub'
++      depends on PAX_EMUPLT && SPARC
++      default n
++      help
++        This option is needed if userland has an old glibc (before 2.4)
++        that puts a 'save' instruction into the runtime generated resolver
++        stub that needs special emulation.
++
++config PAX_KERNEXEC
++      bool "Enforce non-executable kernel pages"
++      default y if GRKERNSEC_CONFIG_AUTO && (!X86 || GRKERNSEC_CONFIG_VIRT_NONE || (GRKERNSEC_CONFIG_VIRT_EPT && GRKERNSEC_CONFIG_VIRT_GUEST) || (GRKERNSEC_CONFIG_VIRT_EPT && GRKERNSEC_CONFIG_VIRT_KVM))
++      depends on (X86 || (ARM && (CPU_V6 || CPU_V6K || CPU_V7) && !(ARM_LPAE && MODULES))) && !XEN
++      select PAX_PER_CPU_PGD if X86_64 || (X86_32 && X86_PAE)
++      select ARM_KERNMEM_PERMS if ARM
++      help
++        This is the kernel land equivalent of PAGEEXEC and MPROTECT,
++        that is, enabling this option will make it harder to inject
++        and execute 'foreign' code in kernel memory itself.
++
++        Note that on amd64, CONFIG_EFI enabled with "efi=old_map" on
++        the kernel command-line will result in an RWX physical map.
++
++        Likewise, the EFI runtime services are necessarily mapped as
++        RWX.  If CONFIG_EFI is enabled on an EFI-capable system, it
++        is recommended that you boot with "noefi" on the kernel
++        command-line if possible to eliminate the mapping.
++
++config PAX_KERNEXEC_PLUGIN
++      bool
++      depends on GCC_PLUGINS && X86_64
++
++choice
++      prompt "Code Pointer Instrumentation Method"
++      default PAX_KERNEXEC_PLUGIN_METHOD_BTS
++      depends on GCC_PLUGINS && X86_64 && (PAX_KERNEXEC || PAX_RAP)
++      help
++        KERNEXEC on amd64 is not as secure as its i386 variant due to the
++        lack of certain processor features. This option can bring back some
++        of the security by forcing all code pointers at runtime to fall into
++        kernel memory. This is achieved via compile time instrumentation of
++        all code pointer dereferences (indirect calls and function returns).
++
++        While there are alternative mechanisms (SMEP, UDEREF) that can achieve
++        the same or even more, they also have their own drawbacks in terms of
++        performance impact and/or being processor dependent so this feature
++        offers a choice by having a low performance impact and being processor
++        independent.
++
++        If you enabled RAP (see PAX_RAP) and have an amd64 processor that does
++        not support SMEP then you must also enable a KERNEXEC code pointer
++        instrumentation method.
++
++        Note that binary modules cannot be instrumented by this approach.
++
++        Note that the implementation requires a gcc with plugin support,
++        i.e., gcc 4.5 or newer.  You may need to install the supporting
++        headers explicitly in addition to the normal gcc package.
++
++      config PAX_KERNEXEC_PLUGIN_METHOD_NONE
++              bool "none"
++              help
++                In case your processor supports Supervisor Mode Execution
++                Prevention (SMEP) you should choose this option to disable
++                compile time instrumentation.
++
++                Note that the kernel will refuse to boot if SMEP is not
++                supported by the processor or is disabled on the kernel
++                command line.
++
++      config PAX_KERNEXEC_PLUGIN_METHOD_BTS
++              bool "bts"
++              select PAX_KERNEXEC_PLUGIN
++              help
++                This method is compatible with binary only modules but has
++                a higher runtime overhead.
++
++      config PAX_KERNEXEC_PLUGIN_METHOD_OR
++              bool "or"
++              depends on !PARAVIRT
++              select PAX_KERNEXEC_PLUGIN
++              help
++                This method is incompatible with binary only modules but has
++                a lower runtime overhead.
++endchoice
++
++config PAX_KERNEXEC_MODULE_TEXT
++      int "Minimum amount of memory reserved for module code"
++      default "8" if (!GRKERNSEC_CONFIG_AUTO || GRKERNSEC_CONFIG_SERVER)
++      default "12" if (GRKERNSEC_CONFIG_AUTO && GRKERNSEC_CONFIG_DESKTOP)
++      depends on PAX_KERNEXEC && X86_32
++      help
++        Due to implementation details the kernel must reserve a fixed
++        amount of memory for runtime allocated code (such as modules)
++        at compile time that cannot be changed at runtime.  Here you
++        can specify the minimum amount in MB that will be reserved.
++        Due to the same implementation details this size will always
++        be rounded up to the next 2/4 MB boundary (depends on PAE) so
++        the actually available memory for runtime allocated code will
++        usually be more than this minimum.
++
++        The default 4 MB should be enough for most users but if you have
++        an excessive number of modules (e.g., most distribution configs
++        compile many drivers as modules) or use huge modules such as
++        nvidia's kernel driver, you will need to adjust this amount.
++        A good rule of thumb is to look at your currently loaded kernel
++        modules and add up their sizes.
++
++endmenu
++
++menu "Address Space Layout Randomization"
++      depends on PAX
++
++config PAX_ASLR
++      bool "Address Space Layout Randomization"
++      default y if GRKERNSEC_CONFIG_AUTO
++      help
++        Many if not most exploit techniques rely on the knowledge of
++        certain addresses in the attacked program.  The following options
++        will allow the kernel to apply a certain amount of randomization
++        to specific parts of the program thereby forcing an attacker to
++        guess them in most cases.  Any failed guess will most likely crash
++        the attacked program which allows the kernel to detect such attempts
++        and react on them.  PaX itself provides no reaction mechanisms,
++        instead it is strongly encouraged that you make use of grsecurity's
++        (http://www.grsecurity.net/) built-in crash detection features or
++        develop one yourself.
++
++        By saying Y here you can choose to randomize the following areas:
++         - top of the task's kernel stack
++         - top of the task's userland stack
++         - base address for mmap() requests that do not specify one
++           (this includes all libraries)
++         - base address of the main executable
++
++        It is strongly recommended to say Y here as address space layout
++        randomization has negligible impact on performance yet it provides
++        a very effective protection.
++
++        NOTE: you can use the 'chpax' or 'paxctl' utilities to control
++        this feature on a per file basis.
++
++config PAX_RANDKSTACK
++      bool "Randomize kernel stack base"
++      default y if GRKERNSEC_CONFIG_AUTO && !(GRKERNSEC_CONFIG_VIRT_HOST && GRKERNSEC_CONFIG_VIRT_VIRTUALBOX)
++      depends on X86_TSC && X86
++      help
++        By saying Y here the kernel will randomize every task's kernel
++        stack on every system call.  This will not only force an attacker
++        to guess it but also prevent him from making use of possible
++        leaked information about it.
++
++        Since the kernel stack is a rather scarce resource, randomization
++        may cause unexpected stack overflows, therefore you should very
++        carefully test your system.  Note that once enabled in the kernel
++        configuration, this feature cannot be disabled on a per file basis.
++
++config PAX_RANDUSTACK
++      bool
++
++config PAX_RANDMMAP
++      bool "Randomize user stack and mmap() bases"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on PAX_ASLR
++      select PAX_RANDUSTACK
++      help
++        By saying Y here the kernel will randomize every task's userland
++        stack and use a randomized base address for mmap() requests that
++        do not specify one themselves.
++
++        The stack randomization is done in two steps where the second
++        one may apply a big amount of shift to the top of the stack and
++        cause problems for programs that want to use lots of memory (more
++        than 2.5 GB if SEGMEXEC is not active, or 1.25 GB when it is).
++
++        As a result of mmap randomization all dynamically loaded libraries
++        will appear at random addresses and therefore be harder to exploit
++        by a technique where an attacker attempts to execute library code
++        for his purposes (e.g. spawn a shell from an exploited program that
++        is running at an elevated privilege level).
++
++        Furthermore, if a program is relinked as a dynamic ELF file, its
++        base address will be randomized as well, completing the full
++        randomization of the address space layout.  Attacking such programs
++        becomes a guess game.  You can find an example of doing this at
++        http://pax.grsecurity.net/et_dyn.tar.gz and practical samples at
++        http://www.grsecurity.net/grsec-gcc-specs.tar.gz .
++
++        NOTE: you can use the 'chpax' or 'paxctl' utilities to control this
++        feature on a per file basis.
++
++endmenu
++
++menu "Miscellaneous hardening features"
++
++config PAX_MEMORY_SANITIZE
++      bool "Sanitize all freed memory"
++      default y if (GRKERNSEC_CONFIG_AUTO && GRKERNSEC_CONFIG_PRIORITY_SECURITY)
++      help
++        By saying Y here the kernel will erase memory pages and slab objects
++        as soon as they are freed.  This in turn reduces the lifetime of data
++        stored in them, making it less likely that sensitive information such
++        as passwords, cryptographic secrets, etc stay in memory for too long.
++
++        This is especially useful for programs whose runtime is short, long
++        lived processes and the kernel itself benefit from this as long as
++        they ensure timely freeing of memory that may hold sensitive
++        information.
++
++        A nice side effect of the sanitization of slab objects is the
++        reduction of possible info leaks caused by padding bytes within the
++        leaky structures.  Use-after-free bugs for structures containing
++        pointers can also be detected as dereferencing the sanitized pointer
++        will generate an access violation.
++
++        The tradeoff is performance impact, on a single CPU system kernel
++        compilation sees a 3% slowdown, other systems and workloads may vary
++        and you are advised to test this feature on your expected workload
++        before deploying it.
++
++        The slab sanitization feature excludes a few slab caches per default
++        for performance reasons.  To extend the feature to cover those as
++        well, pass "pax_sanitize_slab=full" as kernel command line parameter.
++
++        To reduce the performance penalty by sanitizing pages only, albeit
++        limiting the effectiveness of this feature at the same time, slab
++        sanitization can be disabled with the kernel command line parameter
++        "pax_sanitize_slab=off".
++
++        Note that this feature does not protect data stored in live pages,
++        e.g., process memory swapped to disk may stay there for a long time.
++
++config PAX_MEMORY_STACKLEAK
++      bool "Sanitize kernel stack"
++      default y if (GRKERNSEC_CONFIG_AUTO && GRKERNSEC_CONFIG_PRIORITY_SECURITY)
++      depends on X86 && GCC_PLUGINS
++      help
++        By saying Y here the kernel will erase the kernel stack before it
++        returns from a system call.  This in turn reduces the information
++        that a kernel stack leak bug can reveal.
++
++        Note that such a bug can still leak information that was put on
++        the stack by the current system call (the one eventually triggering
++        the bug) but traces of earlier system calls on the kernel stack
++        cannot leak anymore.
++
++        The tradeoff is performance impact: on a single CPU system kernel
++        compilation sees a 1% slowdown, other systems and workloads may vary
++        and you are advised to test this feature on your expected workload
++        before deploying it.
++
++        Note that the full feature requires a gcc with plugin support,
++        i.e., gcc 4.5 or newer.  You may need to install the supporting
++        headers explicitly in addition to the normal gcc package.  Using
++        older gcc versions means that functions with large enough stack
++        frames may leave uninitialized memory behind that may be exposed
++        to a later syscall leaking the stack.
++
++config PAX_MEMORY_STRUCTLEAK
++      bool "Forcibly initialize local variables copied to userland"
++      default y if (GRKERNSEC_CONFIG_AUTO && GRKERNSEC_CONFIG_PRIORITY_SECURITY)
++      depends on GCC_PLUGINS
++      help
++        By saying Y here the kernel will zero initialize some local
++        variables that are going to be copied to userland.  This in
++        turn prevents unintended information leakage from the kernel
++        stack should later code forget to explicitly set all parts of
++        the copied variable.
++
++        The tradeoff is less performance impact than PAX_MEMORY_STACKLEAK
++        at a much smaller coverage.
++
++        Note that the implementation requires a gcc with plugin support,
++        i.e., gcc 4.5 or newer.  You may need to install the supporting
++        headers explicitly in addition to the normal gcc package.
++
++config PAX_MEMORY_UDEREF
++      bool "Prevent invalid userland pointer dereference"
++      default y if GRKERNSEC_CONFIG_AUTO && !(X86_64 && GRKERNSEC_CONFIG_PRIORITY_PERF) && !(X86_64 && GRKERNSEC_CONFIG_VIRT_HOST && GRKERNSEC_CONFIG_VIRT_VIRTUALBOX) && (!X86 || GRKERNSEC_CONFIG_VIRT_NONE || GRKERNSEC_CONFIG_VIRT_EPT)
++      depends on (X86 || (ARM && (CPU_V6 || CPU_V6K || CPU_V7) && !ARM_LPAE)) && !UML_X86 && !XEN
++      select PAX_PER_CPU_PGD if X86_64
++      help
++        By saying Y here the kernel will be prevented from dereferencing
++        userland pointers in contexts where the kernel expects only kernel
++        pointers.  This is both a useful runtime debugging feature and a
++        security measure that prevents exploiting a class of kernel bugs.
++
++        The tradeoff is that some virtualization solutions may experience
++        a huge slowdown and therefore you should not enable this feature
++        for kernels meant to run in such environments.  Whether a given VM
++        solution is affected or not is best determined by simply trying it
++        out, the performance impact will be obvious right on boot as this
++        mechanism engages from very early on.  A good rule of thumb is that
++        VMs running on CPUs without hardware virtualization support (i.e.,
++        the majority of IA-32 CPUs) will likely experience the slowdown.
++
++        On X86_64 the kernel will make use of PCID support when available
++        (Intel's Westmere, Sandy Bridge, etc) for better security (default)
++        or performance impact.  Pass pax_weakuderef on the kernel command
++        line to choose the latter.
++
++config PAX_REFCOUNT
++      bool "Prevent various kernel object reference counter overflows"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on GRKERNSEC && ((ARM && (CPU_V6 || CPU_V6K || CPU_V7)) || MIPS || PPC || SPARC64 || X86)
++      help
++        By saying Y here the kernel will detect and prevent overflowing
++        various (but not all) kinds of object reference counters.  Such
++        overflows can normally occur due to bugs only and are often, if
++        not always, exploitable.
++
++        The tradeoff is that data structures protected by an overflowed
++        refcount will never be freed and therefore will leak memory.  Note
++        that this leak also happens even without this protection but in
++        that case the overflow can eventually trigger the freeing of the
++        data structure while it is still being used elsewhere, resulting
++        in the exploitable situation that this feature prevents.
++
++        Since this has a negligible performance impact, you should enable
++        this feature.
++
++config PAX_USERCOPY
++      bool "Harden memory copies between kernel and userland"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on GRKERNSEC && HAVE_ARCH_HARDENED_USERCOPY
++      select HARDENED_USERCOPY
++      help
++        By saying Y here the kernel will enforce the size of heap objects
++        when they are copied in either direction between the kernel and
++        userland, even if only a part of the heap object is copied.
++
++        Specifically, this checking prevents information leaking from the
++        kernel heap during kernel to userland copies (if the kernel heap
++        object is otherwise fully initialized) and prevents kernel heap
++        overflows during userland to kernel copies.
++
++        Note that the current implementation provides the strictest bounds
++        checks for the SLUB allocator.
++
++        Enabling this option also enables per-slab cache protection against
++        data in a given cache being copied into/out of via userland
++        accessors.  Though the whitelist of regions will be reduced over
++        time, it notably protects important data structures like task structs.
++
++        If frame pointers are enabled on x86, this option will also restrict
++        copies into and out of the kernel stack to local variables within a
++        single frame.
++
++        Since this has a negligible performance impact, you should enable
++        this feature.
++
++config PAX_CONSTIFY_PLUGIN
++      bool "Automatically constify eligible structures"
++      default y
++      depends on !UML && PAX_KERNEXEC && GCC_PLUGINS
++      help
++        By saying Y here the compiler will automatically constify a class
++        of types that contain only function pointers.  This reduces the
++        kernel's attack surface and also produces a better memory layout.
++
++        Note that the implementation requires a gcc with plugin support,
++        i.e., gcc 4.5 or newer.  You may need to install the supporting
++        headers explicitly in addition to the normal gcc package.
++
++        Note that if some code really has to modify constified variables
++        then the source code will have to be patched to allow it.  Examples
++        can be found in PaX itself (the no_const attribute) and for some
++        out-of-tree modules at http://www.grsecurity.net/~paxguy1/ .
++
++
++config PAX_USERCOPY_DEBUG
++      bool
++      depends on X86 && PAX_USERCOPY
++      default n
++
++config PAX_SIZE_OVERFLOW
++      bool "Prevent various integer overflows in function size parameters"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on GCC_PLUGINS
++      depends on !SPARC64 && !ARM64
++      help
++        By saying Y here the kernel recomputes expressions of function
++        arguments marked by a size_overflow attribute with double integer
++        precision (DImode/TImode for 32/64 bit integer types).
++
++        If the recomputed argument does not fit the original type then the
++        event is logged. If the pax_size_overflow_report_only parameter is
++        NOT passed on the kernel command line at boot then the triggering
++        process will also be killed.
++
++        Homepage: https://github.com/ephox-gcc-plugins/size_overflow
++        Blog: http://forums.grsecurity.net/viewtopic.php?f=7&t=3043
++
++        Note that the implementation requires a gcc with plugin support,
++        i.e., gcc 4.5 or newer.  You may need to install the supporting
++        headers explicitly in addition to the normal gcc package.
++
++config PAX_SIZE_OVERFLOW_EXTRA
++      bool "Increase coverage of size overflow checking"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on PAX_SIZE_OVERFLOW
++      help
++        By saying Y here the kernel will instrument more size argument
++        calculations that off-line static analysis tracked back through
++        indirect function calls, structure fields and global variables.
++
++        This greatly increases coverage and thus security however there
++        are also more false positives and the performance impact is higher
++        as well.
++
++config PAX_INITIFY
++      bool "Free more kernel memory after init"
++      depends on GCC_PLUGINS
++      depends on BROKEN
++      help
++        The kernel has a mechanism to free up code and data memory that is
++        only used during kernel or module initialization.  Enabling this
++        feature will teach the compiler to find more such code and data
++        that can be freed after initialization.
++
++config HAVE_PAX_INITIFY_INIT_EXIT
++      bool
++      depends on GCC_PLUGINS
++      help
++        Move functions to the exit section if they are called by __init and
++        __exit functions too.
++
++config PAX_INITIFY_INIT_EXIT
++      bool
++      depends on PAX_INITIFY && HAVE_PAX_INITIFY_INIT_EXIT
++
++config PAX_INITIFY_VERBOSE
++      bool "Free more kernel memory after init (verbose mode)"
++      depends on GCC_PLUGINS && PAX_INITIFY
++      help
++        Print all initified strings and all functions which should be
++        __init/__exit.
++
++        Note that the candidates identified for __init/__exit markings
++        depend on the current kernel configuration and thus should be
++        verified manually before the source code is patched.
++
++config PAX_LATENT_ENTROPY
++      bool "Generate some entropy during boot and runtime"
++      default y if GRKERNSEC_CONFIG_AUTO
++      depends on GCC_PLUGINS
++      help
++        By saying Y here the kernel will instrument some kernel code to
++        extract some entropy from both original and artificially created
++        program state.  This will help especially embedded systems where
++        there is little 'natural' source of entropy normally.  The cost
++        is some slowdown of the boot process (about 0.5%) and fork and
++        irq processing.
++
++        When pax_extra_latent_entropy is passed on the kernel command line,
++        entropy will be extracted from up to the first 4GB of RAM while the
++        runtime memory allocator is being initialized.  This costs even more
++        slowdown of the boot process.
++
++        Note that the implementation requires a gcc with plugin support,
++        i.e., gcc 4.5 or newer.  You may need to install the supporting
++        headers explicitly in addition to the normal gcc package.
++
++        Note that entropy extracted this way is not cryptographically
++        secure!
++
++config PAX_RAP
++      bool "Prevent code reuse attacks"
++      depends on X86_64 && GCC_PLUGINS
++      default y if GRKERNSEC_CONFIG_AUTO
++      help
++        By saying Y here the kernel will check indirect control transfers
++        in order to detect and prevent attacks that try to hijack control
++        flow by overwriting code pointers.
++
++        If you have an amd64 processor that does not support SMEP then you
++        must also enable a KERNEXEC code pointer instrumentation method
++        (see PAX_KERNEXEC_PLUGIN).
++
++        Note that binary modules cannot be instrumented by this approach.
++
++        Note that the implementation requires a gcc with plugin support,
++        i.e., gcc 4.5 or newer.  You may need to install the supporting
++        headers explicitly in addition to the normal gcc package.
++
++endmenu
++
++endmenu
++
++source grsecurity/Kconfig
++
++endmenu
++
++endmenu
++
+ source security/keys/Kconfig
+ config SECURITY_DMESG_RESTRICT
+@@ -104,7 +1164,7 @@ config INTEL_TXT
+ config LSM_MMAP_MIN_ADDR
+       int "Low address space for LSM to protect from user allocation"
+       depends on SECURITY && SECURITY_SELINUX
+-      default 32768 if ARM || (ARM64 && COMPAT)
++      default 32768 if ALPHA || ARM || (ARM64 && COMPAT) || PARISC || SPARC32
+       default 65536
+       help
+         This is the portion of low virtual memory which should be protected
+@@ -118,13 +1178,6 @@ config LSM_MMAP_MIN_ADDR
+         this low address space will need the permission specific to the
+         systems running LSM.
+-config HAVE_HARDENED_USERCOPY_ALLOCATOR
+-      bool
+-      help
+-        The heap allocator implements __check_heap_object() for
+-        validating memory ranges against heap object sizes in
+-        support of CONFIG_HARDENED_USERCOPY.
+-
+ config HAVE_ARCH_HARDENED_USERCOPY
+       bool
+       help
+@@ -134,23 +1187,14 @@ config HAVE_ARCH_HARDENED_USERCOPY
+         copy_to_user() and copy_from_user().
+ config HARDENED_USERCOPY
+-      bool "Harden memory copies between kernel and userspace"
+-      depends on HAVE_ARCH_HARDENED_USERCOPY
+-      depends on HAVE_HARDENED_USERCOPY_ALLOCATOR
+-      select BUG
+-      help
+-        This option checks for obviously wrong memory regions when
+-        copying memory to/from the kernel (via copy_to_user() and
+-        copy_from_user() functions) by rejecting memory ranges that
+-        are larger than the specified heap object, span multiple
+-        separately allocates pages, are not on the process stack,
+-        or are part of the kernel text. This kills entire classes
+-        of heap overflow exploits and similar kernel memory exposures.
++      def_bool y
++      select BUG if BROKEN_SECURITY
+ config HARDENED_USERCOPY_PAGESPAN
+       bool "Refuse to copy allocations that span multiple pages"
+       depends on HARDENED_USERCOPY
+       depends on EXPERT
++      depends on BROKEN_SECURITY
+       help
+         When a multi-page allocation is done without __GFP_COMP,
+         hardened usercopy will reject attempts to copy it. There are,
+@@ -205,4 +1249,3 @@ config DEFAULT_SECURITY
+       default "" if DEFAULT_SECURITY_DAC
+ endmenu
+-
+diff --git a/security/apparmor/file.c b/security/apparmor/file.c
+index 4d2af4b..608971a 100644
+--- a/security/apparmor/file.c
++++ b/security/apparmor/file.c
+@@ -349,8 +349,8 @@ static inline bool xindex_is_subset(u32 link, u32 target)
+ int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry,
+                const struct path *new_dir, struct dentry *new_dentry)
+ {
+-      struct path link = { new_dir->mnt, new_dentry };
+-      struct path target = { new_dir->mnt, old_dentry };
++      struct path link = { .mnt = new_dir->mnt, .dentry = new_dentry };
++      struct path target = { .mnt = new_dir->mnt, .dentry = old_dentry };
+       struct path_cond cond = {
+               d_backing_inode(old_dentry)->i_uid,
+               d_backing_inode(old_dentry)->i_mode
+diff --git a/security/apparmor/include/policy.h b/security/apparmor/include/policy.h
+index 52275f0..4c84202 100644
+--- a/security/apparmor/include/policy.h
++++ b/security/apparmor/include/policy.h
+@@ -134,7 +134,7 @@ struct aa_namespace {
+       struct aa_ns_acct acct;
+       struct aa_profile *unconfined;
+       struct list_head sub_ns;
+-      atomic_t uniq_null;
++      atomic_unchecked_t uniq_null;
+       long uniq_id;
+       struct dentry *dents[AAFS_NS_SIZEOF];
+diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c
+index 41b8cb1..411695c 100644
+--- a/security/apparmor/lsm.c
++++ b/security/apparmor/lsm.c
+@@ -176,7 +176,7 @@ static int common_perm_dir_dentry(int op, const struct path *dir,
+                                 struct dentry *dentry, u32 mask,
+                                 struct path_cond *cond)
+ {
+-      struct path path = { dir->mnt, dentry };
++      struct path path = { .mnt = dir->mnt, .dentry = dentry };
+       return common_perm(op, &path, mask, cond);
+ }
+@@ -306,8 +306,8 @@ static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_d
+       profile = aa_current_profile();
+       if (!unconfined(profile)) {
+-              struct path old_path = { old_dir->mnt, old_dentry };
+-              struct path new_path = { new_dir->mnt, new_dentry };
++              struct path old_path = { .mnt = old_dir->mnt, .dentry = old_dentry };
++              struct path new_path = { .mnt = new_dir->mnt, .dentry = new_dentry };
+               struct path_cond cond = { d_backing_inode(old_dentry)->i_uid,
+                                         d_backing_inode(old_dentry)->i_mode
+               };
+@@ -656,11 +656,11 @@ static const struct kernel_param_ops param_ops_aalockpolicy = {
+       .get = param_get_aalockpolicy
+ };
+-static int param_set_audit(const char *val, struct kernel_param *kp);
+-static int param_get_audit(char *buffer, struct kernel_param *kp);
++static int param_set_audit(const char *val, const struct kernel_param *kp);
++static int param_get_audit(char *buffer, const struct kernel_param *kp);
+-static int param_set_mode(const char *val, struct kernel_param *kp);
+-static int param_get_mode(char *buffer, struct kernel_param *kp);
++static int param_set_mode(const char *val, const struct kernel_param *kp);
++static int param_get_mode(char *buffer, const struct kernel_param *kp);
+ /* Flag values, also controllable via /sys/module/apparmor/parameters
+  * We define special types as we want to do additional mediation.
+@@ -774,7 +774,7 @@ static int param_get_aauint(char *buffer, const struct kernel_param *kp)
+       return param_get_uint(buffer, kp);
+ }
+-static int param_get_audit(char *buffer, struct kernel_param *kp)
++static int param_get_audit(char *buffer, const struct kernel_param *kp)
+ {
+       if (!policy_view_capable())
+               return -EPERM;
+@@ -785,7 +785,7 @@ static int param_get_audit(char *buffer, struct kernel_param *kp)
+       return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]);
+ }
+-static int param_set_audit(const char *val, struct kernel_param *kp)
++static int param_set_audit(const char *val, const struct kernel_param *kp)
+ {
+       int i;
+       if (!policy_admin_capable())
+@@ -807,7 +807,7 @@ static int param_set_audit(const char *val, struct kernel_param *kp)
+       return -EINVAL;
+ }
+-static int param_get_mode(char *buffer, struct kernel_param *kp)
++static int param_get_mode(char *buffer, const struct kernel_param *kp)
+ {
+       if (!policy_admin_capable())
+               return -EPERM;
+@@ -818,7 +818,7 @@ static int param_get_mode(char *buffer, struct kernel_param *kp)
+       return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]);
+ }
+-static int param_set_mode(const char *val, struct kernel_param *kp)
++static int param_set_mode(const char *val, const struct kernel_param *kp)
+ {
+       int i;
+       if (!policy_admin_capable())
+diff --git a/security/apparmor/policy.c b/security/apparmor/policy.c
+index 179e68d..48bd588 100644
+--- a/security/apparmor/policy.c
++++ b/security/apparmor/policy.c
+@@ -298,7 +298,7 @@ static struct aa_namespace *alloc_namespace(const char *prefix,
+       /* ns and ns->unconfined share ns->unconfined refcount */
+       ns->unconfined->ns = ns;
+-      atomic_set(&ns->uniq_null, 0);
++      atomic_set_unchecked(&ns->uniq_null, 0);
+       return ns;
+@@ -689,7 +689,7 @@ struct aa_profile *aa_new_null_profile(struct aa_profile *parent, int hat)
+ {
+       struct aa_profile *profile = NULL;
+       char *name;
+-      int uniq = atomic_inc_return(&parent->ns->uniq_null);
++      int uniq = atomic_inc_return_unchecked(&parent->ns->uniq_null);
+       /* freed below */
+       name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, GFP_KERNEL);
+diff --git a/security/commoncap.c b/security/commoncap.c
+index 14540bd..eaa4c55 100644
+--- a/security/commoncap.c
++++ b/security/commoncap.c
+@@ -438,6 +438,32 @@ int get_vfs_caps_from_disk(const struct dentry *dentry, struct cpu_vfs_cap_data
+       return 0;
+ }
++/* returns:
++      1 for suid privilege
++      2 for sgid privilege
++      3 for fscap privilege
++*/
++int is_privileged_binary(const struct dentry *dentry)
++{
++      struct cpu_vfs_cap_data capdata;
++      struct inode *inode = dentry->d_inode;
++
++      if (!inode || S_ISDIR(inode->i_mode))
++              return 0;
++
++      if (inode->i_mode & S_ISUID)
++              return 1;
++      if ((inode->i_mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
++              return 2;
++
++      if (!get_vfs_caps_from_disk(dentry, &capdata)) {
++              if (!cap_isclear(capdata.inheritable) || !cap_isclear(capdata.permitted))
++                      return 3;
++      }
++
++      return 0;
++}
++
+ /*
+  * Attempt to get the on-exec apply capability sets for an executable file from
+  * its xattrs and, if present, apply them to the proposed credentials being
+@@ -636,6 +662,9 @@ int cap_bprm_secureexec(struct linux_binprm *bprm)
+       const struct cred *cred = current_cred();
+       kuid_t root_uid = make_kuid(cred->user_ns, 0);
++      if (gr_acl_enable_at_secure())
++              return 1;
++
+       if (!uid_eq(cred->uid, root_uid)) {
+               if (bprm->cap_effective)
+                       return 1;
+diff --git a/security/integrity/ima/ima.h b/security/integrity/ima/ima.h
+index db25f54..f303f44 100644
+--- a/security/integrity/ima/ima.h
++++ b/security/integrity/ima/ima.h
+@@ -130,8 +130,8 @@ int ima_init_template(void);
+ extern spinlock_t ima_queue_lock;
+ struct ima_h_table {
+-      atomic_long_t len;      /* number of stored measurements in the list */
+-      atomic_long_t violations;
++      atomic_long_unchecked_t len;    /* number of stored measurements in the list */
++      atomic_long_unchecked_t violations;
+       struct hlist_head queue[IMA_MEASURE_HTABLE_SIZE];
+ };
+ extern struct ima_h_table ima_htable;
+diff --git a/security/integrity/ima/ima_api.c b/security/integrity/ima/ima_api.c
+index 9df26a2..2c6fc00 100644
+--- a/security/integrity/ima/ima_api.c
++++ b/security/integrity/ima/ima_api.c
+@@ -138,7 +138,7 @@ void ima_add_violation(struct file *file, const unsigned char *filename,
+       int result;
+       /* can overflow, only indicator */
+-      atomic_long_inc(&ima_htable.violations);
++      atomic_long_inc_unchecked(&ima_htable.violations);
+       result = ima_alloc_init_template(&event_data, &entry);
+       if (result < 0) {
+diff --git a/security/integrity/ima/ima_fs.c b/security/integrity/ima/ima_fs.c
+index c07a384..52ad9bc 100644
+--- a/security/integrity/ima/ima_fs.c
++++ b/security/integrity/ima/ima_fs.c
+@@ -31,12 +31,12 @@ static DEFINE_MUTEX(ima_write_mutex);
+ static int valid_policy = 1;
+ #define TMPBUFLEN 12
+ static ssize_t ima_show_htable_value(char __user *buf, size_t count,
+-                                   loff_t *ppos, atomic_long_t *val)
++                                   loff_t *ppos, atomic_long_unchecked_t *val)
+ {
+       char tmpbuf[TMPBUFLEN];
+       ssize_t len;
+-      len = scnprintf(tmpbuf, TMPBUFLEN, "%li\n", atomic_long_read(val));
++      len = scnprintf(tmpbuf, TMPBUFLEN, "%li\n", atomic_long_read_unchecked(val));
+       return simple_read_from_buffer(buf, count, ppos, tmpbuf, len);
+ }
+diff --git a/security/integrity/ima/ima_queue.c b/security/integrity/ima/ima_queue.c
+index 32f6ac0..8275005 100644
+--- a/security/integrity/ima/ima_queue.c
++++ b/security/integrity/ima/ima_queue.c
+@@ -84,7 +84,7 @@ static int ima_add_digest_entry(struct ima_template_entry *entry)
+       INIT_LIST_HEAD(&qe->later);
+       list_add_tail_rcu(&qe->later, &ima_measurements);
+-      atomic_long_inc(&ima_htable.len);
++      atomic_long_inc_unchecked(&ima_htable.len);
+       key = ima_hash_key(entry->digest);
+       hlist_add_head_rcu(&qe->hnext, &ima_htable.queue[key]);
+       return 0;
+diff --git a/security/integrity/integrity.h b/security/integrity/integrity.h
+index 24520b4..b89448a 100644
+--- a/security/integrity/integrity.h
++++ b/security/integrity/integrity.h
+@@ -177,7 +177,7 @@ static inline void evm_load_x509(void)
+ #ifdef CONFIG_INTEGRITY_AUDIT
+ /* declarations */
+-void integrity_audit_msg(int audit_msgno, struct inode *inode,
++void __nocapture(4) integrity_audit_msg(int audit_msgno, struct inode *inode,
+                        const unsigned char *fname, const char *op,
+                        const char *cause, int result, int info);
+ #else
+diff --git a/security/keys/internal.h b/security/keys/internal.h
+index a705a7d..898c675 100644
+--- a/security/keys/internal.h
++++ b/security/keys/internal.h
+@@ -91,12 +91,16 @@ extern void key_type_put(struct key_type *ktype);
+ extern int __key_link_begin(struct key *keyring,
+                           const struct keyring_index_key *index_key,
+-                          struct assoc_array_edit **_edit);
++                          struct assoc_array_edit **_edit)
++                          __acquires(&keyring->sem)
++                          __acquires(&keyring_serialise_link_sem);
+ extern int __key_link_check_live_key(struct key *keyring, struct key *key);
+ extern void __key_link(struct key *key, struct assoc_array_edit **_edit);
+ extern void __key_link_end(struct key *keyring,
+                          const struct keyring_index_key *index_key,
+-                         struct assoc_array_edit *edit);
++                         struct assoc_array_edit *edit)
++                         __releases(&keyring->sem)
++                         __releases(&keyring_serialise_link_sem);
+ extern key_ref_t find_key_to_update(key_ref_t keyring_ref,
+                                   const struct keyring_index_key *index_key);
+@@ -192,7 +196,7 @@ struct request_key_auth {
+       void                    *callout_info;
+       size_t                  callout_len;
+       pid_t                   pid;
+-};
++} __randomize_layout;
+ extern struct key_type key_type_request_key_auth;
+ extern struct key *request_key_auth_new(struct key *target,
+diff --git a/security/keys/key.c b/security/keys/key.c
+index 346fbf2..84458b1 100644
+--- a/security/keys/key.c
++++ b/security/keys/key.c
+@@ -287,7 +287,7 @@ struct key *key_alloc(struct key_type *type, const char *desc,
+       atomic_set(&key->usage, 1);
+       init_rwsem(&key->sem);
+-      lockdep_set_class(&key->sem, &type->lock_class);
++      lockdep_set_class(&key->sem, (struct lock_class_key *)&type->lock_class);
+       key->index_key.type = type;
+       key->user = user;
+       key->quotalen = quotalen;
+@@ -1101,7 +1101,9 @@ int register_key_type(struct key_type *ktype)
+       struct key_type *p;
+       int ret;
+-      memset(&ktype->lock_class, 0, sizeof(ktype->lock_class));
++      pax_open_kernel();
++      memset((void *)&ktype->lock_class, 0, sizeof(ktype->lock_class));
++      pax_close_kernel();
+       ret = -EEXIST;
+       down_write(&key_types_sem);
+@@ -1113,7 +1115,7 @@ int register_key_type(struct key_type *ktype)
+       }
+       /* store the type */
+-      list_add(&ktype->link, &key_types_list);
++      pax_list_add((struct list_head *)&ktype->link, &key_types_list);
+       pr_notice("Key type %s registered\n", ktype->name);
+       ret = 0;
+@@ -1135,7 +1137,7 @@ EXPORT_SYMBOL(register_key_type);
+ void unregister_key_type(struct key_type *ktype)
+ {
+       down_write(&key_types_sem);
+-      list_del_init(&ktype->link);
++      pax_list_del_init((struct list_head *)&ktype->link);
+       downgrade_write(&key_types_sem);
+       key_gc_keytype(ktype);
+       pr_notice("Key type %s unregistered\n", ktype->name);
+@@ -1153,10 +1155,10 @@ void __init key_init(void)
+                       0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
+       /* add the special key types */
+-      list_add_tail(&key_type_keyring.link, &key_types_list);
+-      list_add_tail(&key_type_dead.link, &key_types_list);
+-      list_add_tail(&key_type_user.link, &key_types_list);
+-      list_add_tail(&key_type_logon.link, &key_types_list);
++      pax_list_add_tail((struct list_head *)&key_type_keyring.link, &key_types_list);
++      pax_list_add_tail((struct list_head *)&key_type_dead.link, &key_types_list);
++      pax_list_add_tail((struct list_head *)&key_type_user.link, &key_types_list);
++      pax_list_add_tail((struct list_head *)&key_type_logon.link, &key_types_list);
+       /* record the root user tracking */
+       rb_link_node(&root_key_user.node,
+diff --git a/security/keys/keyring.c b/security/keys/keyring.c
+index c91e4e0..d3193f6 100644
+--- a/security/keys/keyring.c
++++ b/security/keys/keyring.c
+@@ -1095,8 +1095,6 @@ static int keyring_detect_cycle(struct key *A, struct key *B)
+ int __key_link_begin(struct key *keyring,
+                    const struct keyring_index_key *index_key,
+                    struct assoc_array_edit **_edit)
+-      __acquires(&keyring->sem)
+-      __acquires(&keyring_serialise_link_sem)
+ {
+       struct assoc_array_edit *edit;
+       int ret;
+@@ -1196,8 +1194,6 @@ void __key_link(struct key *key, struct assoc_array_edit **_edit)
+ void __key_link_end(struct key *keyring,
+                   const struct keyring_index_key *index_key,
+                   struct assoc_array_edit *edit)
+-      __releases(&keyring->sem)
+-      __releases(&keyring_serialise_link_sem)
+ {
+       BUG_ON(index_key->type == NULL);
+       kenter("%d,%s,", keyring->serial, index_key->type->name);
+diff --git a/security/min_addr.c b/security/min_addr.c
+index f728728..6457a0c 100644
+--- a/security/min_addr.c
++++ b/security/min_addr.c
+@@ -14,6 +14,7 @@ unsigned long dac_mmap_min_addr = CONFIG_DEFAULT_MMAP_MIN_ADDR;
+  */
+ static void update_mmap_min_addr(void)
+ {
++#ifndef SPARC
+ #ifdef CONFIG_LSM_MMAP_MIN_ADDR
+       if (dac_mmap_min_addr > CONFIG_LSM_MMAP_MIN_ADDR)
+               mmap_min_addr = dac_mmap_min_addr;
+@@ -22,6 +23,7 @@ static void update_mmap_min_addr(void)
+ #else
+       mmap_min_addr = dac_mmap_min_addr;
+ #endif
++#endif
+ }
+ /*
+diff --git a/security/selinux/avc.c b/security/selinux/avc.c
+index e60c79d..41fb721 100644
+--- a/security/selinux/avc.c
++++ b/security/selinux/avc.c
+@@ -71,7 +71,7 @@ struct avc_xperms_node {
+ struct avc_cache {
+       struct hlist_head       slots[AVC_CACHE_SLOTS]; /* head for avc_node->list */
+       spinlock_t              slots_lock[AVC_CACHE_SLOTS]; /* lock for writes */
+-      atomic_t                lru_hint;       /* LRU hint for reclaim scan */
++      atomic_unchecked_t      lru_hint;       /* LRU hint for reclaim scan */
+       atomic_t                active_nodes;
+       u32                     latest_notif;   /* latest revocation notification */
+ };
+@@ -183,7 +183,7 @@ void __init avc_init(void)
+               spin_lock_init(&avc_cache.slots_lock[i]);
+       }
+       atomic_set(&avc_cache.active_nodes, 0);
+-      atomic_set(&avc_cache.lru_hint, 0);
++      atomic_set_unchecked(&avc_cache.lru_hint, 0);
+       avc_node_cachep = kmem_cache_create("avc_node", sizeof(struct avc_node),
+                                       0, SLAB_PANIC, NULL);
+@@ -521,7 +521,7 @@ static inline int avc_reclaim_node(void)
+       spinlock_t *lock;
+       for (try = 0, ecx = 0; try < AVC_CACHE_SLOTS; try++) {
+-              hvalue = atomic_inc_return(&avc_cache.lru_hint) & (AVC_CACHE_SLOTS - 1);
++              hvalue = atomic_inc_return_unchecked(&avc_cache.lru_hint) & (AVC_CACHE_SLOTS - 1);
+               head = &avc_cache.slots[hvalue];
+               lock = &avc_cache.slots_lock[hvalue];
+diff --git a/security/selinux/include/xfrm.h b/security/selinux/include/xfrm.h
+index 1450f85..a91e0bc 100644
+--- a/security/selinux/include/xfrm.h
++++ b/security/selinux/include/xfrm.h
+@@ -48,7 +48,7 @@ static inline void selinux_xfrm_notify_policyload(void)
+       rtnl_lock();
+       for_each_net(net) {
+-              atomic_inc(&net->xfrm.flow_cache_genid);
++              atomic_inc_unchecked(&net->xfrm.flow_cache_genid);
+               rt_genid_bump_all(net);
+       }
+       rtnl_unlock();
+diff --git a/security/tomoyo/file.c b/security/tomoyo/file.c
+index 7041a58..223f21f 100644
+--- a/security/tomoyo/file.c
++++ b/security/tomoyo/file.c
+@@ -692,7 +692,7 @@ int tomoyo_path_number_perm(const u8 type, const struct path *path,
+ {
+       struct tomoyo_request_info r;
+       struct tomoyo_obj_info obj = {
+-              .path1 = *path,
++              .path1 = { .mnt = path->mnt, .dentry = path->dentry },
+       };
+       int error = -ENOMEM;
+       struct tomoyo_path_info buf;
+@@ -740,7 +740,7 @@ int tomoyo_check_open_permission(struct tomoyo_domain_info *domain,
+       struct tomoyo_path_info buf;
+       struct tomoyo_request_info r;
+       struct tomoyo_obj_info obj = {
+-              .path1 = *path,
++              .path1 = { .mnt = path->mnt, .dentry = path->dentry },
+       };
+       int idx;
+@@ -786,7 +786,7 @@ int tomoyo_path_perm(const u8 operation, const struct path *path, const char *ta
+ {
+       struct tomoyo_request_info r;
+       struct tomoyo_obj_info obj = {
+-              .path1 = *path,
++              .path1 = { .mnt = path->mnt, .dentry = path->dentry },
+       };
+       int error;
+       struct tomoyo_path_info buf;
+@@ -843,7 +843,7 @@ int tomoyo_mkdev_perm(const u8 operation, const struct path *path,
+ {
+       struct tomoyo_request_info r;
+       struct tomoyo_obj_info obj = {
+-              .path1 = *path,
++              .path1 = { .mnt = path->mnt, .dentry = path->dentry },
+       };
+       int error = -ENOMEM;
+       struct tomoyo_path_info buf;
+@@ -890,8 +890,8 @@ int tomoyo_path2_perm(const u8 operation, const struct path *path1,
+       struct tomoyo_path_info buf2;
+       struct tomoyo_request_info r;
+       struct tomoyo_obj_info obj = {
+-              .path1 = *path1,
+-              .path2 = *path2,
++              .path1 = { .mnt = path1->mnt, .dentry = path1->dentry },
++              .path2 = { .mnt = path2->mnt, .dentry = path2->dentry }
+       };
+       int idx;
+diff --git a/security/tomoyo/mount.c b/security/tomoyo/mount.c
+index 14b53fb..8829296 100644
+--- a/security/tomoyo/mount.c
++++ b/security/tomoyo/mount.c
+@@ -118,6 +118,10 @@ static int tomoyo_mount_acl(struct tomoyo_request_info *r,
+                  type == tomoyo_mounts[TOMOYO_MOUNT_MOVE]) {
+               need_dev = -1; /* dev_name is a directory */
+       } else {
++              if (!capable(CAP_SYS_ADMIN)) {
++                      error = -EPERM;
++                      goto out;
++              }
+               fstype = get_fs_type(type);
+               if (!fstype) {
+                       error = -ENODEV;
+diff --git a/security/tomoyo/tomoyo.c b/security/tomoyo/tomoyo.c
+index 75c9987..b9569d4 100644
+--- a/security/tomoyo/tomoyo.c
++++ b/security/tomoyo/tomoyo.c
+@@ -165,7 +165,7 @@ static int tomoyo_path_truncate(const struct path *path)
+  */
+ static int tomoyo_path_unlink(const struct path *parent, struct dentry *dentry)
+ {
+-      struct path path = { parent->mnt, dentry };
++      struct path path = { .mnt = parent->mnt, .dentry = dentry };
+       return tomoyo_path_perm(TOMOYO_TYPE_UNLINK, &path, NULL);
+ }
+@@ -181,7 +181,7 @@ static int tomoyo_path_unlink(const struct path *parent, struct dentry *dentry)
+ static int tomoyo_path_mkdir(const struct path *parent, struct dentry *dentry,
+                            umode_t mode)
+ {
+-      struct path path = { parent->mnt, dentry };
++      struct path path = { .mnt = parent->mnt, .dentry = dentry };
+       return tomoyo_path_number_perm(TOMOYO_TYPE_MKDIR, &path,
+                                      mode & S_IALLUGO);
+ }
+@@ -196,7 +196,7 @@ static int tomoyo_path_mkdir(const struct path *parent, struct dentry *dentry,
+  */
+ static int tomoyo_path_rmdir(const struct path *parent, struct dentry *dentry)
+ {
+-      struct path path = { parent->mnt, dentry };
++      struct path path = { .mnt = parent->mnt, .dentry = dentry };
+       return tomoyo_path_perm(TOMOYO_TYPE_RMDIR, &path, NULL);
+ }
+@@ -212,7 +212,7 @@ static int tomoyo_path_rmdir(const struct path *parent, struct dentry *dentry)
+ static int tomoyo_path_symlink(const struct path *parent, struct dentry *dentry,
+                              const char *old_name)
+ {
+-      struct path path = { parent->mnt, dentry };
++      struct path path = { .mnt = parent->mnt, .dentry = dentry };
+       return tomoyo_path_perm(TOMOYO_TYPE_SYMLINK, &path, old_name);
+ }
+@@ -229,7 +229,7 @@ static int tomoyo_path_symlink(const struct path *parent, struct dentry *dentry,
+ static int tomoyo_path_mknod(const struct path *parent, struct dentry *dentry,
+                            umode_t mode, unsigned int dev)
+ {
+-      struct path path = { parent->mnt, dentry };
++      struct path path = { .mnt = parent->mnt, .dentry = dentry };
+       int type = TOMOYO_TYPE_CREATE;
+       const unsigned int perm = mode & S_IALLUGO;
+@@ -268,8 +268,8 @@ static int tomoyo_path_mknod(const struct path *parent, struct dentry *dentry,
+ static int tomoyo_path_link(struct dentry *old_dentry, const struct path *new_dir,
+                           struct dentry *new_dentry)
+ {
+-      struct path path1 = { new_dir->mnt, old_dentry };
+-      struct path path2 = { new_dir->mnt, new_dentry };
++      struct path path1 = { .mnt = new_dir->mnt, .dentry = old_dentry };
++      struct path path2 = { .mnt = new_dir->mnt, .dentry = new_dentry };
+       return tomoyo_path2_perm(TOMOYO_TYPE_LINK, &path1, &path2);
+ }
+@@ -288,8 +288,8 @@ static int tomoyo_path_rename(const struct path *old_parent,
+                             const struct path *new_parent,
+                             struct dentry *new_dentry)
+ {
+-      struct path path1 = { old_parent->mnt, old_dentry };
+-      struct path path2 = { new_parent->mnt, new_dentry };
++      struct path path1 = { .mnt = old_parent->mnt, .dentry = old_dentry };
++      struct path path2 = { .mnt = new_parent->mnt, .dentry = new_dentry };
+       return tomoyo_path2_perm(TOMOYO_TYPE_RENAME, &path1, &path2);
+ }
+@@ -417,7 +417,7 @@ static int tomoyo_sb_mount(const char *dev_name, const struct path *path,
+  */
+ static int tomoyo_sb_umount(struct vfsmount *mnt, int flags)
+ {
+-      struct path path = { mnt, mnt->mnt_root };
++      struct path path = { .mnt = mnt, .dentry = mnt->mnt_root };
+       return tomoyo_path_perm(TOMOYO_TYPE_UMOUNT, &path, NULL);
+ }
+diff --git a/security/yama/Kconfig b/security/yama/Kconfig
+index 90c605e..bf3a29a 100644
+--- a/security/yama/Kconfig
++++ b/security/yama/Kconfig
+@@ -1,6 +1,6 @@
+ config SECURITY_YAMA
+       bool "Yama support"
+-      depends on SECURITY
++      depends on SECURITY && !GRKERNSEC
+       default n
+       help
+         This selects Yama, which extends DAC support with additional
+diff --git a/security/yama/yama_lsm.c b/security/yama/yama_lsm.c
+index 0309f21..0c9bdfb 100644
+--- a/security/yama/yama_lsm.c
++++ b/security/yama/yama_lsm.c
+@@ -425,7 +425,7 @@ static struct security_hook_list yama_hooks[] = {
+ static int yama_dointvec_minmax(struct ctl_table *table, int write,
+                               void __user *buffer, size_t *lenp, loff_t *ppos)
+ {
+-      struct ctl_table table_copy;
++      ctl_table_no_const table_copy;
+       if (write && !capable(CAP_SYS_PTRACE))
+               return -EPERM;
+diff --git a/sound/aoa/codecs/onyx.c b/sound/aoa/codecs/onyx.c
+index a04edff..6811b91 100644
+--- a/sound/aoa/codecs/onyx.c
++++ b/sound/aoa/codecs/onyx.c
+@@ -54,7 +54,7 @@ struct onyx {
+                               spdif_locked:1,
+                               analog_locked:1,
+                               original_mute:2;
+-      int                     open_count;
++      local_t                 open_count;
+       struct codec_info       *codec_info;
+       /* mutex serializes concurrent access to the device
+@@ -747,7 +747,7 @@ static int onyx_open(struct codec_info_item *cii,
+       struct onyx *onyx = cii->codec_data;
+       mutex_lock(&onyx->mutex);
+-      onyx->open_count++;
++      local_inc(&onyx->open_count);
+       mutex_unlock(&onyx->mutex);
+       return 0;
+@@ -759,8 +759,7 @@ static int onyx_close(struct codec_info_item *cii,
+       struct onyx *onyx = cii->codec_data;
+       mutex_lock(&onyx->mutex);
+-      onyx->open_count--;
+-      if (!onyx->open_count)
++      if (local_dec_and_test(&onyx->open_count))
+               onyx->spdif_locked = onyx->analog_locked = 0;
+       mutex_unlock(&onyx->mutex);
+diff --git a/sound/aoa/codecs/onyx.h b/sound/aoa/codecs/onyx.h
+index ffd2025..df062c9 100644
+--- a/sound/aoa/codecs/onyx.h
++++ b/sound/aoa/codecs/onyx.h
+@@ -11,6 +11,7 @@
+ #include <linux/i2c.h>
+ #include <asm/pmac_low_i2c.h>
+ #include <asm/prom.h>
++#include <asm/local.h>
+ /* PCM3052 register definitions */
+diff --git a/sound/core/oss/pcm_oss.c b/sound/core/oss/pcm_oss.c
+index ebc9fdf..61f491e 100644
+--- a/sound/core/oss/pcm_oss.c
++++ b/sound/core/oss/pcm_oss.c
+@@ -1193,10 +1193,10 @@ snd_pcm_sframes_t snd_pcm_oss_write3(struct snd_pcm_substream *substream, const
+               if (in_kernel) {
+                       mm_segment_t fs;
+                       fs = snd_enter_user();
+-                      ret = snd_pcm_lib_write(substream, (void __force __user *)ptr, frames);
++                      ret = snd_pcm_lib_write(substream, (void __force_user *)ptr, frames);
+                       snd_leave_user(fs);
+               } else {
+-                      ret = snd_pcm_lib_write(substream, (void __force __user *)ptr, frames);
++                      ret = snd_pcm_lib_write(substream, (void __force_user *)ptr, frames);
+               }
+               if (ret != -EPIPE && ret != -ESTRPIPE)
+                       break;
+@@ -1236,10 +1236,10 @@ snd_pcm_sframes_t snd_pcm_oss_read3(struct snd_pcm_substream *substream, char *p
+               if (in_kernel) {
+                       mm_segment_t fs;
+                       fs = snd_enter_user();
+-                      ret = snd_pcm_lib_read(substream, (void __force __user *)ptr, frames);
++                      ret = snd_pcm_lib_read(substream, (void __force_user *)ptr, frames);
+                       snd_leave_user(fs);
+               } else {
+-                      ret = snd_pcm_lib_read(substream, (void __force __user *)ptr, frames);
++                      ret = snd_pcm_lib_read(substream, (void __force_user *)ptr, frames);
+               }
+               if (ret == -EPIPE) {
+                       if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
+@@ -1335,7 +1335,7 @@ static ssize_t snd_pcm_oss_write2(struct snd_pcm_substream *substream, const cha
+               struct snd_pcm_plugin_channel *channels;
+               size_t oss_frame_bytes = (runtime->oss.plugin_first->src_width * runtime->oss.plugin_first->src_format.channels) / 8;
+               if (!in_kernel) {
+-                      if (copy_from_user(runtime->oss.buffer, (const char __force __user *)buf, bytes))
++                      if (copy_from_user(runtime->oss.buffer, (const char __force_user *)buf, bytes))
+                               return -EFAULT;
+                       buf = runtime->oss.buffer;
+               }
+@@ -1405,7 +1405,7 @@ static ssize_t snd_pcm_oss_write1(struct snd_pcm_substream *substream, const cha
+                       }
+               } else {
+                       tmp = snd_pcm_oss_write2(substream,
+-                                               (const char __force *)buf,
++                                               (const char __force_kernel *)buf,
+                                                runtime->oss.period_bytes, 0);
+                       if (tmp <= 0)
+                               goto err;
+@@ -1431,7 +1431,7 @@ static ssize_t snd_pcm_oss_read2(struct snd_pcm_substream *substream, char *buf,
+       struct snd_pcm_runtime *runtime = substream->runtime;
+       snd_pcm_sframes_t frames, frames1;
+ #ifdef CONFIG_SND_PCM_OSS_PLUGINS
+-      char __user *final_dst = (char __force __user *)buf;
++      char __user *final_dst = (char __force_user *)buf;
+       if (runtime->oss.plugin_first) {
+               struct snd_pcm_plugin_channel *channels;
+               size_t oss_frame_bytes = (runtime->oss.plugin_last->dst_width * runtime->oss.plugin_last->dst_format.channels) / 8;
+@@ -1493,7 +1493,7 @@ static ssize_t snd_pcm_oss_read1(struct snd_pcm_substream *substream, char __use
+                       xfer += tmp;
+                       runtime->oss.buffer_used -= tmp;
+               } else {
+-                      tmp = snd_pcm_oss_read2(substream, (char __force *)buf,
++                      tmp = snd_pcm_oss_read2(substream, (char __force_kernel *)buf,
+                                               runtime->oss.period_bytes, 0);
+                       if (tmp <= 0)
+                               goto err;
+@@ -1662,7 +1662,7 @@ static int snd_pcm_oss_sync(struct snd_pcm_oss_file *pcm_oss_file)
+                                                                  size1);
+                                       size1 /= runtime->channels; /* frames */
+                                       fs = snd_enter_user();
+-                                      snd_pcm_lib_write(substream, (void __force __user *)runtime->oss.buffer, size1);
++                                      snd_pcm_lib_write(substream, (void __force_user *)runtime->oss.buffer, size1);
+                                       snd_leave_user(fs);
+                               }
+                       } else if (runtime->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED) {
+diff --git a/sound/core/pcm_compat.c b/sound/core/pcm_compat.c
+index 1f64ab0..26a7233 100644
+--- a/sound/core/pcm_compat.c
++++ b/sound/core/pcm_compat.c
+@@ -31,7 +31,7 @@ static int snd_pcm_ioctl_delay_compat(struct snd_pcm_substream *substream,
+       int err;
+       fs = snd_enter_user();
+-      err = snd_pcm_delay(substream, &delay);
++      err = snd_pcm_delay(substream, (snd_pcm_sframes_t __force_user *)&delay);
+       snd_leave_user(fs);
+       if (err < 0)
+               return err;
+diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c
+index bb12615..b5e4ff9 100644
+--- a/sound/core/pcm_lib.c
++++ b/sound/core/pcm_lib.c
+@@ -1867,8 +1867,9 @@ EXPORT_SYMBOL(snd_pcm_lib_ioctl);
+  * Even if more than one periods have elapsed since the last call, you
+  * have to call this only once.
+  */
+-void snd_pcm_period_elapsed(struct snd_pcm_substream *substream)
++void snd_pcm_period_elapsed(void *_substream)
+ {
++      struct snd_pcm_substream *substream = _substream;
+       struct snd_pcm_runtime *runtime;
+       unsigned long flags;
+diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c
+index c61fd50f7..3081340 100644
+--- a/sound/core/pcm_native.c
++++ b/sound/core/pcm_native.c
+@@ -3014,11 +3014,11 @@ int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream,
+       switch (substream->stream) {
+       case SNDRV_PCM_STREAM_PLAYBACK:
+               result = snd_pcm_playback_ioctl1(NULL, substream, cmd,
+-                                               (void __user *)arg);
++                                               (void __force_user *)arg);
+               break;
+       case SNDRV_PCM_STREAM_CAPTURE:
+               result = snd_pcm_capture_ioctl1(NULL, substream, cmd,
+-                                              (void __user *)arg);
++                                              (void __force_user *)arg);
+               break;
+       default:
+               result = -EINVAL;
+diff --git a/sound/core/rawmidi.c b/sound/core/rawmidi.c
+index b450a27..28c8238 100644
+--- a/sound/core/rawmidi.c
++++ b/sound/core/rawmidi.c
+@@ -871,9 +871,10 @@ static int snd_rawmidi_control_ioctl(struct snd_card *card,
+  *
+  * Return: The size of read data, or a negative error code on failure.
+  */
+-int snd_rawmidi_receive(struct snd_rawmidi_substream *substream,
+-                      const unsigned char *buffer, int count)
++int snd_rawmidi_receive(void *_substream, const void *_buffer, int count)
+ {
++      struct snd_rawmidi_substream *substream = _substream;
++      const unsigned char *buffer = _buffer;
+       unsigned long flags;
+       int result = 0, count1;
+       struct snd_rawmidi_runtime *runtime = substream->runtime;
+diff --git a/sound/core/seq/oss/seq_oss_synth.c b/sound/core/seq/oss/seq_oss_synth.c
+index cd0e0eb..89543da 100644
+--- a/sound/core/seq/oss/seq_oss_synth.c
++++ b/sound/core/seq/oss/seq_oss_synth.c
+@@ -653,8 +653,8 @@ snd_seq_oss_synth_info_read(struct snd_info_buffer *buf)
+                           rec->synth_type, rec->synth_subtype,
+                           rec->nr_voices);
+               snd_iprintf(buf, "  capabilities : ioctl %s / load_patch %s\n",
+-                          enabled_str((long)rec->oper.ioctl),
+-                          enabled_str((long)rec->oper.load_patch));
++                          enabled_str(!!rec->oper.ioctl),
++                          enabled_str(!!rec->oper.load_patch));
+               snd_use_lock_free(&rec->use_lock);
+       }
+ }
+diff --git a/sound/core/seq/seq_clientmgr.c b/sound/core/seq/seq_clientmgr.c
+index d6d9419..49b620a 100644
+--- a/sound/core/seq/seq_clientmgr.c
++++ b/sound/core/seq/seq_clientmgr.c
+@@ -418,7 +418,7 @@ static ssize_t snd_seq_read(struct file *file, char __user *buf, size_t count,
+       if (!client->accept_input || (fifo = client->data.user.fifo) == NULL)
+               return -ENXIO;
+-      if (atomic_read(&fifo->overflow) > 0) {
++      if (atomic_read_unchecked(&fifo->overflow) > 0) {
+               /* buffer overflow is detected */
+               snd_seq_fifo_clear(fifo);
+               /* return error code */
+@@ -448,7 +448,7 @@ static ssize_t snd_seq_read(struct file *file, char __user *buf, size_t count,
+                       count -= sizeof(struct snd_seq_event);
+                       buf += sizeof(struct snd_seq_event);
+                       err = snd_seq_expand_var_event(&cell->event, count,
+-                                                     (char __force *)buf, 0,
++                                                     (char __force_kernel *)buf, 0,
+                                                      sizeof(struct snd_seq_event));
+                       if (err < 0)
+                               break;
+@@ -1064,13 +1064,13 @@ static ssize_t snd_seq_write(struct file *file, const char __user *buf,
+                       }
+                       /* set user space pointer */
+                       event.data.ext.len = extlen | SNDRV_SEQ_EXT_USRPTR;
+-                      event.data.ext.ptr = (char __force *)buf
++                      event.data.ext.ptr = (char __force_kernel *)buf
+                                               + sizeof(struct snd_seq_event);
+                       len += extlen; /* increment data length */
+               } else {
+ #ifdef CONFIG_COMPAT
+                       if (client->convert32 && snd_seq_ev_is_varusr(&event)) {
+-                              void *ptr = (void __force *)compat_ptr(event.data.raw32.d[1]);
++                              void *ptr = (void __force_kernel *)compat_ptr(event.data.raw32.d[1]);
+                               event.data.ext.ptr = ptr;
+                       }
+ #endif
+@@ -2437,7 +2437,7 @@ int snd_seq_kernel_client_ctl(int clientid, unsigned int cmd, void *arg)
+       if (client == NULL)
+               return -ENXIO;
+       fs = snd_enter_user();
+-      result = snd_seq_do_ioctl(client, cmd, (void __force __user *)arg);
++      result = snd_seq_do_ioctl(client, cmd, (void __force_user *)arg);
+       snd_leave_user(fs);
+       return result;
+ }
+diff --git a/sound/core/seq/seq_compat.c b/sound/core/seq/seq_compat.c
+index 6517590..9905cee 100644
+--- a/sound/core/seq/seq_compat.c
++++ b/sound/core/seq/seq_compat.c
+@@ -60,7 +60,7 @@ static int snd_seq_call_port_info_ioctl(struct snd_seq_client *client, unsigned
+       data->kernel = NULL;
+       fs = snd_enter_user();
+-      err = snd_seq_do_ioctl(client, cmd, data);
++      err = snd_seq_do_ioctl(client, cmd, (void __force_user *)data);
+       snd_leave_user(fs);
+       if (err < 0)
+               goto error;
+diff --git a/sound/core/seq/seq_fifo.c b/sound/core/seq/seq_fifo.c
+index 1d5acbe..5f55223 100644
+--- a/sound/core/seq/seq_fifo.c
++++ b/sound/core/seq/seq_fifo.c
+@@ -50,7 +50,7 @@ struct snd_seq_fifo *snd_seq_fifo_new(int poolsize)
+       spin_lock_init(&f->lock);
+       snd_use_lock_init(&f->use_lock);
+       init_waitqueue_head(&f->input_sleep);
+-      atomic_set(&f->overflow, 0);
++      atomic_set_unchecked(&f->overflow, 0);
+       f->head = NULL;
+       f->tail = NULL;
+@@ -96,7 +96,7 @@ void snd_seq_fifo_clear(struct snd_seq_fifo *f)
+       unsigned long flags;
+       /* clear overflow flag */
+-      atomic_set(&f->overflow, 0);
++      atomic_set_unchecked(&f->overflow, 0);
+       snd_use_lock_sync(&f->use_lock);
+       spin_lock_irqsave(&f->lock, flags);
+@@ -123,7 +123,7 @@ int snd_seq_fifo_event_in(struct snd_seq_fifo *f,
+       err = snd_seq_event_dup(f->pool, event, &cell, 1, NULL); /* always non-blocking */
+       if (err < 0) {
+               if ((err == -ENOMEM) || (err == -EAGAIN))
+-                      atomic_inc(&f->overflow);
++                      atomic_inc_unchecked(&f->overflow);
+               snd_use_lock_free(&f->use_lock);
+               return err;
+       }
+diff --git a/sound/core/seq/seq_fifo.h b/sound/core/seq/seq_fifo.h
+index 062c446..a4b6f4c 100644
+--- a/sound/core/seq/seq_fifo.h
++++ b/sound/core/seq/seq_fifo.h
+@@ -35,7 +35,7 @@ struct snd_seq_fifo {
+       spinlock_t lock;
+       snd_use_lock_t use_lock;
+       wait_queue_head_t input_sleep;
+-      atomic_t overflow;
++      atomic_unchecked_t overflow;
+ };
+diff --git a/sound/core/seq/seq_memory.c b/sound/core/seq/seq_memory.c
+index c850345..ec0a853 100644
+--- a/sound/core/seq/seq_memory.c
++++ b/sound/core/seq/seq_memory.c
+@@ -87,7 +87,7 @@ int snd_seq_dump_var_event(const struct snd_seq_event *event,
+       if (event->data.ext.len & SNDRV_SEQ_EXT_USRPTR) {
+               char buf[32];
+-              char __user *curptr = (char __force __user *)event->data.ext.ptr;
++              char __user *curptr = (char __force_user *)event->data.ext.ptr;
+               while (len > 0) {
+                       int size = sizeof(buf);
+                       if (len < size)
+@@ -126,15 +126,19 @@ EXPORT_SYMBOL(snd_seq_dump_var_event);
+  * expand the variable length event to linear buffer space.
+  */
+-static int seq_copy_in_kernel(char **bufptr, const void *src, int size)
++static int seq_copy_in_kernel(void *_bufptr, const void *src, int size)
+ {
++      char **bufptr = (char **)_bufptr;
++
+       memcpy(*bufptr, src, size);
+       *bufptr += size;
+       return 0;
+ }
+-static int seq_copy_in_user(char __user **bufptr, const void *src, int size)
++static int seq_copy_in_user(void *_bufptr, const void *src, int size)
+ {
++      char __user **bufptr = (char __user **)_bufptr;
++
+       if (copy_to_user(*bufptr, src, size))
+               return -EFAULT;
+       *bufptr += size;
+@@ -158,13 +162,13 @@ int snd_seq_expand_var_event(const struct snd_seq_event *event, int count, char
+       if (event->data.ext.len & SNDRV_SEQ_EXT_USRPTR) {
+               if (! in_kernel)
+                       return -EINVAL;
+-              if (copy_from_user(buf, (void __force __user *)event->data.ext.ptr, len))
++              if (copy_from_user(buf, (void __force_user *)event->data.ext.ptr, len))
+                       return -EFAULT;
+               return newlen;
+       }
+       err = snd_seq_dump_var_event(event,
+-                                   in_kernel ? (snd_seq_dump_func_t)seq_copy_in_kernel :
+-                                   (snd_seq_dump_func_t)seq_copy_in_user,
++                                   in_kernel ? seq_copy_in_kernel :
++                                   seq_copy_in_user,
+                                    &buf);
+       return err < 0 ? err : newlen;
+ }
+@@ -344,7 +348,7 @@ int snd_seq_event_dup(struct snd_seq_pool *pool, struct snd_seq_event *event,
+                               tmp->event = src->event;
+                               src = src->next;
+                       } else if (is_usrptr) {
+-                              if (copy_from_user(&tmp->event, (char __force __user *)buf, size)) {
++                              if (copy_from_user(&tmp->event, (char __force_user *)buf, size)) {
+                                       err = -EFAULT;
+                                       goto __error;
+                               }
+diff --git a/sound/core/seq/seq_midi.c b/sound/core/seq/seq_midi.c
+index 5dd0ee2..0208e35 100644
+--- a/sound/core/seq/seq_midi.c
++++ b/sound/core/seq/seq_midi.c
+@@ -111,8 +111,9 @@ static void snd_midi_input_event(struct snd_rawmidi_substream *substream)
+       }
+ }
+-static int dump_midi(struct snd_rawmidi_substream *substream, const char *buf, int count)
++static int dump_midi(void *_substream, const void *buf, int count)
+ {
++      struct snd_rawmidi_substream *substream = _substream;
+       struct snd_rawmidi_runtime *runtime;
+       int tmp;
+@@ -148,7 +149,7 @@ static int event_process_midi(struct snd_seq_event *ev, int direct,
+                       pr_debug("ALSA: seq_midi: invalid sysex event flags = 0x%x\n", ev->flags);
+                       return 0;
+               }
+-              snd_seq_dump_var_event(ev, (snd_seq_dump_func_t)dump_midi, substream);
++              snd_seq_dump_var_event(ev, dump_midi, substream);
+               snd_midi_event_reset_decode(msynth->parser);
+       } else {
+               if (msynth->parser == NULL)
+diff --git a/sound/core/seq/seq_virmidi.c b/sound/core/seq/seq_virmidi.c
+index c82ed3e..e11d039 100644
+--- a/sound/core/seq/seq_virmidi.c
++++ b/sound/core/seq/seq_virmidi.c
+@@ -90,7 +90,7 @@ static int snd_virmidi_dev_receive_event(struct snd_virmidi_dev *rdev,
+               if (ev->type == SNDRV_SEQ_EVENT_SYSEX) {
+                       if ((ev->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE)
+                               continue;
+-                      snd_seq_dump_var_event(ev, (snd_seq_dump_func_t)snd_rawmidi_receive, vmidi->substream);
++                      snd_seq_dump_var_event(ev, snd_rawmidi_receive, vmidi->substream);
+               } else {
+                       len = snd_midi_event_decode(vmidi->parser, msg, sizeof(msg), ev);
+                       if (len > 0)
+diff --git a/sound/core/sound.c b/sound/core/sound.c
+index 175f9e4..3518d31 100644
+--- a/sound/core/sound.c
++++ b/sound/core/sound.c
+@@ -86,7 +86,7 @@ static void snd_request_other(int minor)
+       case SNDRV_MINOR_TIMER:         str = "snd-timer";      break;
+       default:                        return;
+       }
+-      request_module(str);
++      request_module("%s", str);
+ }
+ #endif        /* modular kernel */
+diff --git a/sound/drivers/mts64.c b/sound/drivers/mts64.c
+index fd4d18d..235097d 100644
+--- a/sound/drivers/mts64.c
++++ b/sound/drivers/mts64.c
+@@ -29,6 +29,7 @@
+ #include <sound/initval.h>
+ #include <sound/rawmidi.h>
+ #include <sound/control.h>
++#include <asm/local.h>
+ #define CARD_NAME "Miditerminal 4140"
+ #define DRIVER_NAME "MTS64"
+@@ -65,7 +66,7 @@ struct mts64 {
+       struct snd_card *card;
+       struct snd_rawmidi *rmidi;
+       struct pardevice *pardev;
+-      int open_count;
++      local_t open_count;
+       int current_midi_output_port;
+       int current_midi_input_port;
+       u8 mode[MTS64_NUM_INPUT_PORTS];
+@@ -685,7 +686,7 @@ static int snd_mts64_rawmidi_open(struct snd_rawmidi_substream *substream)
+ {
+       struct mts64 *mts = substream->rmidi->private_data;
+-      if (mts->open_count == 0) {
++      if (local_read(&mts->open_count) == 0) {
+               /* We don't need a spinlock here, because this is just called 
+                  if the device has not been opened before. 
+                  So there aren't any IRQs from the device */
+@@ -693,7 +694,7 @@ static int snd_mts64_rawmidi_open(struct snd_rawmidi_substream *substream)
+               msleep(50);
+       }
+-      ++(mts->open_count);
++      local_inc(&mts->open_count);
+       return 0;
+ }
+@@ -703,8 +704,7 @@ static int snd_mts64_rawmidi_close(struct snd_rawmidi_substream *substream)
+       struct mts64 *mts = substream->rmidi->private_data;
+       unsigned long flags;
+-      --(mts->open_count);
+-      if (mts->open_count == 0) {
++      if (local_dec_return(&mts->open_count) == 0) {
+               /* We need the spinlock_irqsave here because we can still
+                  have IRQs at this point */
+               spin_lock_irqsave(&mts->lock, flags);
+@@ -713,8 +713,8 @@ static int snd_mts64_rawmidi_close(struct snd_rawmidi_substream *substream)
+               msleep(500);
+-      } else if (mts->open_count < 0)
+-              mts->open_count = 0;
++      } else if (local_read(&mts->open_count) < 0)
++              local_set(&mts->open_count, 0);
+       return 0;
+ }
+diff --git a/sound/drivers/opl4/opl4_lib.c b/sound/drivers/opl4/opl4_lib.c
+index 89c7aa0..6d75e49 100644
+--- a/sound/drivers/opl4/opl4_lib.c
++++ b/sound/drivers/opl4/opl4_lib.c
+@@ -29,7 +29,7 @@ MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
+ MODULE_DESCRIPTION("OPL4 driver");
+ MODULE_LICENSE("GPL");
+-static void inline snd_opl4_wait(struct snd_opl4 *opl4)
++static inline void snd_opl4_wait(struct snd_opl4 *opl4)
+ {
+       int timeout = 10;
+       while ((inb(opl4->fm_port) & OPL4_STATUS_BUSY) && --timeout > 0)
+diff --git a/sound/drivers/portman2x4.c b/sound/drivers/portman2x4.c
+index 189e3e7..a873a71 100644
+--- a/sound/drivers/portman2x4.c
++++ b/sound/drivers/portman2x4.c
+@@ -48,6 +48,7 @@
+ #include <sound/initval.h>
+ #include <sound/rawmidi.h>
+ #include <sound/control.h>
++#include <asm/local.h>
+ #define CARD_NAME "Portman 2x4"
+ #define DRIVER_NAME "portman"
+@@ -83,7 +84,7 @@ struct portman {
+       struct snd_card *card;
+       struct snd_rawmidi *rmidi;
+       struct pardevice *pardev;
+-      int open_count;
++      local_t open_count;
+       int mode[PORTMAN_NUM_INPUT_PORTS];
+       struct snd_rawmidi_substream *midi_input[PORTMAN_NUM_INPUT_PORTS];
+ };
+diff --git a/sound/firewire/amdtp-am824.c b/sound/firewire/amdtp-am824.c
+index bebddc6..f5976be 100644
+--- a/sound/firewire/amdtp-am824.c
++++ b/sound/firewire/amdtp-am824.c
+@@ -314,7 +314,7 @@ void amdtp_am824_midi_trigger(struct amdtp_stream *s, unsigned int port,
+       struct amdtp_am824 *p = s->protocol;
+       if (port < p->midi_ports)
+-              ACCESS_ONCE(p->midi[port]) = midi;
++              ACCESS_ONCE_RW(p->midi[port]) = midi;
+ }
+ EXPORT_SYMBOL_GPL(amdtp_am824_midi_trigger);
+diff --git a/sound/firewire/amdtp-stream.c b/sound/firewire/amdtp-stream.c
+index 00060c4..9ba6f37 100644
+--- a/sound/firewire/amdtp-stream.c
++++ b/sound/firewire/amdtp-stream.c
+@@ -350,7 +350,7 @@ static void update_pcm_pointers(struct amdtp_stream *s,
+       ptr = s->pcm_buffer_pointer + frames;
+       if (ptr >= pcm->runtime->buffer_size)
+               ptr -= pcm->runtime->buffer_size;
+-      ACCESS_ONCE(s->pcm_buffer_pointer) = ptr;
++      ACCESS_ONCE_RW(s->pcm_buffer_pointer) = ptr;
+       s->pcm_period_pointer += frames;
+       if (s->pcm_period_pointer >= pcm->runtime->period_size) {
+@@ -833,7 +833,7 @@ EXPORT_SYMBOL(amdtp_stream_pcm_pointer);
+ void amdtp_stream_update(struct amdtp_stream *s)
+ {
+       /* Precomputing. */
+-      ACCESS_ONCE(s->source_node_id_field) =
++      ACCESS_ONCE_RW(s->source_node_id_field) =
+               (fw_parent_device(s->unit)->card->node_id << CIP_SID_SHIFT) &
+                                                               CIP_SID_MASK;
+ }
+diff --git a/sound/firewire/amdtp-stream.h b/sound/firewire/amdtp-stream.h
+index c1bc7fa..40d7cbc 100644
+--- a/sound/firewire/amdtp-stream.h
++++ b/sound/firewire/amdtp-stream.h
+@@ -207,7 +207,7 @@ static inline bool amdtp_stream_pcm_running(struct amdtp_stream *s)
+ static inline void amdtp_stream_pcm_trigger(struct amdtp_stream *s,
+                                           struct snd_pcm_substream *pcm)
+ {
+-      ACCESS_ONCE(s->pcm) = pcm;
++      ACCESS_ONCE_RW(s->pcm) = pcm;
+ }
+ static inline bool cip_sfc_is_base_44100(enum cip_sfc sfc)
+diff --git a/sound/firewire/digi00x/amdtp-dot.c b/sound/firewire/digi00x/amdtp-dot.c
+index b3cffd0..f17b591 100644
+--- a/sound/firewire/digi00x/amdtp-dot.c
++++ b/sound/firewire/digi00x/amdtp-dot.c
+@@ -365,7 +365,7 @@ void amdtp_dot_midi_trigger(struct amdtp_stream *s, unsigned int port,
+       struct amdtp_dot *p = s->protocol;
+       if (port < p->midi_ports)
+-              ACCESS_ONCE(p->midi[port]) = midi;
++              ACCESS_ONCE_RW(p->midi[port]) = midi;
+ }
+ static unsigned int process_tx_data_blocks(struct amdtp_stream *s,
+diff --git a/sound/firewire/isight.c b/sound/firewire/isight.c
+index 48d6dca..a0266c23 100644
+--- a/sound/firewire/isight.c
++++ b/sound/firewire/isight.c
+@@ -96,7 +96,7 @@ static void isight_update_pointers(struct isight *isight, unsigned int count)
+       ptr += count;
+       if (ptr >= runtime->buffer_size)
+               ptr -= runtime->buffer_size;
+-      ACCESS_ONCE(isight->buffer_pointer) = ptr;
++      ACCESS_ONCE_RW(isight->buffer_pointer) = ptr;
+       isight->period_counter += count;
+       if (isight->period_counter >= runtime->period_size) {
+@@ -293,7 +293,7 @@ static int isight_hw_params(struct snd_pcm_substream *substream,
+       if (err < 0)
+               return err;
+-      ACCESS_ONCE(isight->pcm_active) = true;
++      ACCESS_ONCE_RW(isight->pcm_active) = true;
+       return 0;
+ }
+@@ -331,7 +331,7 @@ static int isight_hw_free(struct snd_pcm_substream *substream)
+ {
+       struct isight *isight = substream->private_data;
+-      ACCESS_ONCE(isight->pcm_active) = false;
++      ACCESS_ONCE_RW(isight->pcm_active) = false;
+       mutex_lock(&isight->mutex);
+       isight_stop_streaming(isight);
+@@ -424,10 +424,10 @@ static int isight_trigger(struct snd_pcm_substream *substream, int cmd)
+       switch (cmd) {
+       case SNDRV_PCM_TRIGGER_START:
+-              ACCESS_ONCE(isight->pcm_running) = true;
++              ACCESS_ONCE_RW(isight->pcm_running) = true;
+               break;
+       case SNDRV_PCM_TRIGGER_STOP:
+-              ACCESS_ONCE(isight->pcm_running) = false;
++              ACCESS_ONCE_RW(isight->pcm_running) = false;
+               break;
+       default:
+               return -EINVAL;
+diff --git a/sound/firewire/oxfw/oxfw-scs1x.c b/sound/firewire/oxfw/oxfw-scs1x.c
+index f897c98..4f9a70d 100644
+--- a/sound/firewire/oxfw/oxfw-scs1x.c
++++ b/sound/firewire/oxfw/oxfw-scs1x.c
+@@ -291,9 +291,9 @@ static void midi_capture_trigger(struct snd_rawmidi_substream *stream, int up)
+       if (up) {
+               scs->input_escape_count = 0;
+-              ACCESS_ONCE(scs->input) = stream;
++              ACCESS_ONCE_RW(scs->input) = stream;
+       } else {
+-              ACCESS_ONCE(scs->input) = NULL;
++              ACCESS_ONCE_RW(scs->input) = NULL;
+       }
+ }
+@@ -325,10 +325,10 @@ static void midi_playback_trigger(struct snd_rawmidi_substream *stream, int up)
+               scs->transaction_bytes = 0;
+               scs->error = false;
+-              ACCESS_ONCE(scs->output) = stream;
++              ACCESS_ONCE_RW(scs->output) = stream;
+               schedule_work(&scs->work);
+       } else {
+-              ACCESS_ONCE(scs->output) = NULL;
++              ACCESS_ONCE_RW(scs->output) = NULL;
+       }
+ }
+ static void midi_playback_drain(struct snd_rawmidi_substream *stream)
+diff --git a/sound/oss/sb_audio.c b/sound/oss/sb_audio.c
+index dc91072..d85a10a 100644
+--- a/sound/oss/sb_audio.c
++++ b/sound/oss/sb_audio.c
+@@ -900,7 +900,7 @@ sb16_copy_from_user(int dev,
+               buf16 = (signed short *)(localbuf + localoffs);
+               while (c)
+               {
+-                      locallen = (c >= LBUFCOPYSIZE ? LBUFCOPYSIZE : c);
++                      locallen = ((unsigned)c >= LBUFCOPYSIZE ? LBUFCOPYSIZE : c);
+                       if (copy_from_user(lbuf8,
+                                          userbuf+useroffs + p,
+                                          locallen))
+diff --git a/sound/oss/swarm_cs4297a.c b/sound/oss/swarm_cs4297a.c
+index 213a416..aeab5c9 100644
+--- a/sound/oss/swarm_cs4297a.c
++++ b/sound/oss/swarm_cs4297a.c
+@@ -2623,7 +2623,6 @@ static int __init cs4297a_init(void)
+ {
+       struct cs4297a_state *s;
+       u32 pwr, id;
+-      mm_segment_t fs;
+       int rval;
+       u64 cfg;
+       int mdio_val;
+@@ -2709,22 +2708,23 @@ static int __init cs4297a_init(void)
+         if (!rval) {
+               char *sb1250_duart_present;
++#if 0
++                mm_segment_t fs;
+                 fs = get_fs();
+                 set_fs(KERNEL_DS);
+-#if 0
+                 val = SOUND_MASK_LINE;
+                 mixer_ioctl(s, SOUND_MIXER_WRITE_RECSRC, (unsigned long) &val);
+                 for (i = 0; i < ARRAY_SIZE(initvol); i++) {
+                         val = initvol[i].vol;
+                         mixer_ioctl(s, initvol[i].mixch, (unsigned long) &val);
+                 }
++                set_fs(fs);
+ //                cs4297a_write_ac97(s, 0x18, 0x0808);
+ #else
+                 //                cs4297a_write_ac97(s, 0x5e, 0x180);
+                 cs4297a_write_ac97(s, 0x02, 0x0808);
+                 cs4297a_write_ac97(s, 0x18, 0x0808);
+ #endif
+-                set_fs(fs);
+                 list_add(&s->list, &cs4297a_devs);
+diff --git a/sound/pci/als300.c b/sound/pci/als300.c
+index add3176..c9394d9 100644
+--- a/sound/pci/als300.c
++++ b/sound/pci/als300.c
+@@ -647,7 +647,7 @@ static int snd_als300_create(struct snd_card *card,
+                            struct snd_als300 **rchip)
+ {
+       struct snd_als300 *chip;
+-      void *irq_handler;
++      irq_handler_t irq_handler;
+       int err;
+       static struct snd_device_ops ops = {
+diff --git a/sound/pci/aw2/aw2-alsa.c b/sound/pci/aw2/aw2-alsa.c
+index 1677143..85aca1d 100644
+--- a/sound/pci/aw2/aw2-alsa.c
++++ b/sound/pci/aw2/aw2-alsa.c
+@@ -458,7 +458,6 @@ static int snd_aw2_pcm_prepare_playback(struct snd_pcm_substream *substream)
+       /* Define Interrupt callback */
+       snd_aw2_saa7146_define_it_playback_callback(pcm_device->stream_number,
+-                                                  (snd_aw2_saa7146_it_cb)
+                                                   snd_pcm_period_elapsed,
+                                                   (void *)substream);
+@@ -487,7 +486,6 @@ static int snd_aw2_pcm_prepare_capture(struct snd_pcm_substream *substream)
+       /* Define Interrupt callback */
+       snd_aw2_saa7146_define_it_capture_callback(pcm_device->stream_number,
+-                                                 (snd_aw2_saa7146_it_cb)
+                                                  snd_pcm_period_elapsed,
+                                                  (void *)substream);
+diff --git a/sound/pci/aw2/aw2-saa7146.c b/sound/pci/aw2/aw2-saa7146.c
+index 1d78904..d9c1056 100644
+--- a/sound/pci/aw2/aw2-saa7146.c
++++ b/sound/pci/aw2/aw2-saa7146.c
+@@ -262,7 +262,7 @@ void snd_aw2_saa7146_define_it_playback_callback(unsigned int stream_number,
+ {
+       if (stream_number < NB_STREAM_PLAYBACK) {
+               arr_substream_it_playback_cb[stream_number].p_it_callback =
+-                  (snd_aw2_saa7146_it_cb) p_it_callback;
++                  p_it_callback;
+               arr_substream_it_playback_cb[stream_number].p_callback_param =
+                   (void *)p_callback_param;
+       }
+@@ -275,7 +275,7 @@ void snd_aw2_saa7146_define_it_capture_callback(unsigned int stream_number,
+ {
+       if (stream_number < NB_STREAM_CAPTURE) {
+               arr_substream_it_capture_cb[stream_number].p_it_callback =
+-                  (snd_aw2_saa7146_it_cb) p_it_callback;
++                  p_it_callback;
+               arr_substream_it_capture_cb[stream_number].p_callback_param =
+                   (void *)p_callback_param;
+       }
+diff --git a/sound/pci/ctxfi/ctamixer.c b/sound/pci/ctxfi/ctamixer.c
+index 5fcbb06..f4b85df 100644
+--- a/sound/pci/ctxfi/ctamixer.c
++++ b/sound/pci/ctxfi/ctamixer.c
+@@ -297,8 +297,9 @@ static int put_amixer_rsc(struct amixer_mgr *mgr, struct amixer *amixer)
+       return 0;
+ }
+-int amixer_mgr_create(struct hw *hw, struct amixer_mgr **ramixer_mgr)
++int amixer_mgr_create(struct hw *hw, void **_ramixer_mgr)
+ {
++      struct amixer_mgr **ramixer_mgr = (struct amixer_mgr **)_ramixer_mgr;
+       int err;
+       struct amixer_mgr *amixer_mgr;
+@@ -326,8 +327,10 @@ error:
+       return err;
+ }
+-int amixer_mgr_destroy(struct amixer_mgr *amixer_mgr)
++int amixer_mgr_destroy(void *_amixer_mgr)
+ {
++      struct amixer_mgr *amixer_mgr = _amixer_mgr;
++
+       rsc_mgr_uninit(&amixer_mgr->mgr);
+       kfree(amixer_mgr);
+       return 0;
+@@ -452,8 +455,9 @@ static int put_sum_rsc(struct sum_mgr *mgr, struct sum *sum)
+       return 0;
+ }
+-int sum_mgr_create(struct hw *hw, struct sum_mgr **rsum_mgr)
++int sum_mgr_create(struct hw *hw, void **_rsum_mgr)
+ {
++      struct sum_mgr **rsum_mgr = (struct sum_mgr **)_rsum_mgr;
+       int err;
+       struct sum_mgr *sum_mgr;
+@@ -481,8 +485,10 @@ error:
+       return err;
+ }
+-int sum_mgr_destroy(struct sum_mgr *sum_mgr)
++int sum_mgr_destroy(void *_sum_mgr)
+ {
++      struct sum_mgr *sum_mgr = _sum_mgr;
++
+       rsc_mgr_uninit(&sum_mgr->mgr);
+       kfree(sum_mgr);
+       return 0;
+diff --git a/sound/pci/ctxfi/ctamixer.h b/sound/pci/ctxfi/ctamixer.h
+index 2de18aa..2fbd01b 100644
+--- a/sound/pci/ctxfi/ctamixer.h
++++ b/sound/pci/ctxfi/ctamixer.h
+@@ -47,8 +47,8 @@ struct sum_mgr {
+ };
+ /* Constructor and destructor of daio resource manager */
+-int sum_mgr_create(struct hw *hw, struct sum_mgr **rsum_mgr);
+-int sum_mgr_destroy(struct sum_mgr *sum_mgr);
++int sum_mgr_create(struct hw *hw, void **rsum_mgr);
++int sum_mgr_destroy(void *sum_mgr);
+ /* Define the descriptor of a amixer resource */
+ struct amixer_rsc_ops;
+@@ -93,7 +93,7 @@ struct amixer_mgr {
+ };
+ /* Constructor and destructor of amixer resource manager */
+-int amixer_mgr_create(struct hw *hw, struct amixer_mgr **ramixer_mgr);
+-int amixer_mgr_destroy(struct amixer_mgr *amixer_mgr);
++int amixer_mgr_create(struct hw *hw, void **ramixer_mgr);
++int amixer_mgr_destroy(void *amixer_mgr);
+ #endif /* CTAMIXER_H */
+diff --git a/sound/pci/ctxfi/ctatc.c b/sound/pci/ctxfi/ctatc.c
+index 977a598..a787004a 100644
+--- a/sound/pci/ctxfi/ctatc.c
++++ b/sound/pci/ctxfi/ctatc.c
+@@ -113,16 +113,16 @@ static struct {
+       int (*create)(struct hw *hw, void **rmgr);
+       int (*destroy)(void *mgr);
+ } rsc_mgr_funcs[NUM_RSCTYP] = {
+-      [SRC]           = { .create     = (create_t)src_mgr_create,
+-                          .destroy    = (destroy_t)src_mgr_destroy    },
+-      [SRCIMP]        = { .create     = (create_t)srcimp_mgr_create,
+-                          .destroy    = (destroy_t)srcimp_mgr_destroy },
+-      [AMIXER]        = { .create     = (create_t)amixer_mgr_create,
+-                          .destroy    = (destroy_t)amixer_mgr_destroy },
+-      [SUM]           = { .create     = (create_t)sum_mgr_create,
+-                          .destroy    = (destroy_t)sum_mgr_destroy    },
+-      [DAIO]          = { .create     = (create_t)daio_mgr_create,
+-                          .destroy    = (destroy_t)daio_mgr_destroy   }
++      [SRC]           = { .create     = src_mgr_create,
++                          .destroy    = src_mgr_destroy       },
++      [SRCIMP]        = { .create     = srcimp_mgr_create,
++                          .destroy    = srcimp_mgr_destroy    },
++      [AMIXER]        = { .create     = amixer_mgr_create,
++                          .destroy    = amixer_mgr_destroy    },
++      [SUM]           = { .create     = sum_mgr_create,
++                          .destroy    = sum_mgr_destroy       },
++      [DAIO]          = { .create     = daio_mgr_create,
++                          .destroy    = daio_mgr_destroy      }
+ };
+ static int
+diff --git a/sound/pci/ctxfi/ctdaio.c b/sound/pci/ctxfi/ctdaio.c
+index 7f089cb..6bea28e 100644
+--- a/sound/pci/ctxfi/ctdaio.c
++++ b/sound/pci/ctxfi/ctdaio.c
+@@ -687,8 +687,9 @@ static int daio_mgr_commit_write(struct daio_mgr *mgr)
+       return 0;
+ }
+-int daio_mgr_create(struct hw *hw, struct daio_mgr **rdaio_mgr)
++int daio_mgr_create(struct hw *hw, void **_rdaio_mgr)
+ {
++      struct daio_mgr **rdaio_mgr = (struct daio_mgr **)_rdaio_mgr;
+       int err, i;
+       struct daio_mgr *daio_mgr;
+       struct imapper *entry;
+@@ -741,8 +742,9 @@ error1:
+       return err;
+ }
+-int daio_mgr_destroy(struct daio_mgr *daio_mgr)
++int daio_mgr_destroy(void *_daio_mgr)
+ {
++      struct daio_mgr *daio_mgr = _daio_mgr;
+       unsigned long flags;
+       /* free daio input mapper list */
+diff --git a/sound/pci/ctxfi/ctdaio.h b/sound/pci/ctxfi/ctdaio.h
+index a30be73..91b8dbd 100644
+--- a/sound/pci/ctxfi/ctdaio.h
++++ b/sound/pci/ctxfi/ctdaio.h
+@@ -119,7 +119,7 @@ struct daio_mgr {
+ };
+ /* Constructor and destructor of daio resource manager */
+-int daio_mgr_create(struct hw *hw, struct daio_mgr **rdaio_mgr);
+-int daio_mgr_destroy(struct daio_mgr *daio_mgr);
++int daio_mgr_create(struct hw *hw, void **rdaio_mgr);
++int daio_mgr_destroy(void *daio_mgr);
+ #endif /* CTDAIO_H */
+diff --git a/sound/pci/ctxfi/ctsrc.c b/sound/pci/ctxfi/ctsrc.c
+index a5a72df..f86edb8 100644
+--- a/sound/pci/ctxfi/ctsrc.c
++++ b/sound/pci/ctxfi/ctsrc.c
+@@ -544,8 +544,9 @@ static int src_mgr_commit_write(struct src_mgr *mgr)
+       return 0;
+ }
+-int src_mgr_create(struct hw *hw, struct src_mgr **rsrc_mgr)
++int src_mgr_create(struct hw *hw, void **_rsrc_mgr)
+ {
++      struct src_mgr **rsrc_mgr = (struct src_mgr **)_rsrc_mgr;
+       int err, i;
+       struct src_mgr *src_mgr;
+@@ -584,8 +585,10 @@ error1:
+       return err;
+ }
+-int src_mgr_destroy(struct src_mgr *src_mgr)
++int src_mgr_destroy(void *_src_mgr)
+ {
++      struct src_mgr *src_mgr = _src_mgr;
++
+       rsc_mgr_uninit(&src_mgr->mgr);
+       kfree(src_mgr);
+@@ -828,8 +831,9 @@ static int srcimp_imap_delete(struct srcimp_mgr *mgr, struct imapper *entry)
+       return err;
+ }
+-int srcimp_mgr_create(struct hw *hw, struct srcimp_mgr **rsrcimp_mgr)
++int srcimp_mgr_create(struct hw *hw, void **_rsrcimp_mgr)
+ {
++      struct srcimp_mgr **rsrcimp_mgr = (struct srcimp_mgr **)_rsrcimp_mgr;
+       int err;
+       struct srcimp_mgr *srcimp_mgr;
+       struct imapper *entry;
+@@ -873,8 +877,9 @@ error1:
+       return err;
+ }
+-int srcimp_mgr_destroy(struct srcimp_mgr *srcimp_mgr)
++int srcimp_mgr_destroy(void *_srcimp_mgr)
+ {
++      struct srcimp_mgr *srcimp_mgr = _srcimp_mgr;
+       unsigned long flags;
+       /* free src input mapper list */
+diff --git a/sound/pci/ctxfi/ctsrc.h b/sound/pci/ctxfi/ctsrc.h
+index 92944a0..fc78ed4 100644
+--- a/sound/pci/ctxfi/ctsrc.h
++++ b/sound/pci/ctxfi/ctsrc.h
+@@ -143,10 +143,10 @@ struct srcimp_mgr {
+ };
+ /* Constructor and destructor of SRC resource manager */
+-int src_mgr_create(struct hw *hw, struct src_mgr **rsrc_mgr);
+-int src_mgr_destroy(struct src_mgr *src_mgr);
++int src_mgr_create(struct hw *hw, void **rsrc_mgr);
++int src_mgr_destroy(void *src_mgr);
+ /* Constructor and destructor of SRCIMP resource manager */
+-int srcimp_mgr_create(struct hw *hw, struct srcimp_mgr **rsrc_mgr);
+-int srcimp_mgr_destroy(struct srcimp_mgr *srcimp_mgr);
++int srcimp_mgr_create(struct hw *hw, void **rsrc_mgr);
++int srcimp_mgr_destroy(void *srcimp_mgr);
+ #endif /* CTSRC_H */
+diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
+index 9913be8..381d325 100644
+--- a/sound/pci/hda/hda_codec.c
++++ b/sound/pci/hda/hda_codec.c
+@@ -1743,7 +1743,7 @@ static int get_kctl_0dB_offset(struct hda_codec *codec,
+               /* FIXME: set_fs() hack for obtaining user-space TLV data */
+               mm_segment_t fs = get_fs();
+               set_fs(get_ds());
+-              if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv))
++              if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), (unsigned int __force_user *)_tlv))
+                       tlv = _tlv;
+               set_fs(fs);
+       } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
+diff --git a/sound/pci/ymfpci/ymfpci.h b/sound/pci/ymfpci/ymfpci.h
+index 149d4cb..7784769 100644
+--- a/sound/pci/ymfpci/ymfpci.h
++++ b/sound/pci/ymfpci/ymfpci.h
+@@ -358,7 +358,7 @@ struct snd_ymfpci {
+       spinlock_t reg_lock;
+       spinlock_t voice_lock;
+       wait_queue_head_t interrupt_sleep;
+-      atomic_t interrupt_sleep_count;
++      atomic_unchecked_t interrupt_sleep_count;
+       struct snd_info_entry *proc_entry;
+       const struct firmware *dsp_microcode;
+       const struct firmware *controller_microcode;
+diff --git a/sound/pci/ymfpci/ymfpci_main.c b/sound/pci/ymfpci/ymfpci_main.c
+index 4c26076..a13f370 100644
+--- a/sound/pci/ymfpci/ymfpci_main.c
++++ b/sound/pci/ymfpci/ymfpci_main.c
+@@ -204,8 +204,8 @@ static void snd_ymfpci_hw_stop(struct snd_ymfpci *chip)
+               if ((snd_ymfpci_readl(chip, YDSXGR_STATUS) & 2) == 0)
+                       break;
+       }
+-      if (atomic_read(&chip->interrupt_sleep_count)) {
+-              atomic_set(&chip->interrupt_sleep_count, 0);
++      if (atomic_read_unchecked(&chip->interrupt_sleep_count)) {
++              atomic_set_unchecked(&chip->interrupt_sleep_count, 0);
+               wake_up(&chip->interrupt_sleep);
+       }
+       __end:
+@@ -789,7 +789,7 @@ static void snd_ymfpci_irq_wait(struct snd_ymfpci *chip)
+                       continue;
+               init_waitqueue_entry(&wait, current);
+               add_wait_queue(&chip->interrupt_sleep, &wait);
+-              atomic_inc(&chip->interrupt_sleep_count);
++              atomic_inc_unchecked(&chip->interrupt_sleep_count);
+               schedule_timeout_uninterruptible(msecs_to_jiffies(50));
+               remove_wait_queue(&chip->interrupt_sleep, &wait);
+       }
+@@ -827,8 +827,8 @@ static irqreturn_t snd_ymfpci_interrupt(int irq, void *dev_id)
+               snd_ymfpci_writel(chip, YDSXGR_MODE, mode);
+               spin_unlock(&chip->reg_lock);
+-              if (atomic_read(&chip->interrupt_sleep_count)) {
+-                      atomic_set(&chip->interrupt_sleep_count, 0);
++              if (atomic_read_unchecked(&chip->interrupt_sleep_count)) {
++                      atomic_set_unchecked(&chip->interrupt_sleep_count, 0);
+                       wake_up(&chip->interrupt_sleep);
+               }
+       }
+@@ -2384,7 +2384,7 @@ int snd_ymfpci_create(struct snd_card *card,
+       spin_lock_init(&chip->reg_lock);
+       spin_lock_init(&chip->voice_lock);
+       init_waitqueue_head(&chip->interrupt_sleep);
+-      atomic_set(&chip->interrupt_sleep_count, 0);
++      atomic_set_unchecked(&chip->interrupt_sleep_count, 0);
+       chip->card = card;
+       chip->pci = pci;
+       chip->irq = -1;
+diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c
+index ecfdbfc..38d0ebd 100644
+--- a/sound/soc/codecs/arizona.c
++++ b/sound/soc/codecs/arizona.c
+@@ -2558,7 +2558,9 @@ int arizona_register_notifier(struct snd_soc_codec *codec,
+       struct arizona_priv *priv = snd_soc_codec_get_drvdata(codec);
+       struct arizona *arizona = priv->arizona;
+-      nb->notifier_call = notify;
++      pax_open_kernel();
++      const_cast(nb->notifier_call) = notify;
++      pax_close_kernel();
+       return blocking_notifier_chain_register(&arizona->notifier, nb);
+ }
+diff --git a/sound/soc/codecs/cx20442.c b/sound/soc/codecs/cx20442.c
+index fb3885f..7c89556 100644
+--- a/sound/soc/codecs/cx20442.c
++++ b/sound/soc/codecs/cx20442.c
+@@ -264,6 +264,12 @@ static int v253_hangup(struct tty_struct *tty)
+       return 0;
+ }
++static int v253_hw_write(void *client, const char *buf, int count)
++{
++      struct tty_struct *tty = client;
++      return tty->ops->write(client, buf, count);
++}
++
+ /* Line discipline .receive_buf() */
+ static void v253_receive(struct tty_struct *tty,
+                               const unsigned char *cp, char *fp, int count)
+@@ -281,7 +287,7 @@ static void v253_receive(struct tty_struct *tty,
+               /* Set up codec driver access to modem controls */
+               cx20442->control_data = tty;
+-              codec->hw_write = (hw_write_t)tty->ops->write;
++              codec->hw_write = v253_hw_write;
+               codec->component.card->pop_time = 1;
+       }
+ }
+diff --git a/sound/soc/codecs/sti-sas.c b/sound/soc/codecs/sti-sas.c
+index 160d61a..cd7a4ac 100644
+--- a/sound/soc/codecs/sti-sas.c
++++ b/sound/soc/codecs/sti-sas.c
+@@ -591,11 +591,13 @@ static int sti_sas_driver_probe(struct platform_device *pdev)
+       sti_sas_dai[STI_SAS_DAI_ANALOG_OUT].ops = drvdata->dev_data->dac_ops;
+       /* Set dapms*/
+-      sti_sas_driver.dapm_widgets = drvdata->dev_data->dapm_widgets;
+-      sti_sas_driver.num_dapm_widgets = drvdata->dev_data->num_dapm_widgets;
++      pax_open_kernel();
++      const_cast(sti_sas_driver.dapm_widgets) = drvdata->dev_data->dapm_widgets;
++      const_cast(sti_sas_driver.num_dapm_widgets) = drvdata->dev_data->num_dapm_widgets;
+-      sti_sas_driver.dapm_routes = drvdata->dev_data->dapm_routes;
+-      sti_sas_driver.num_dapm_routes = drvdata->dev_data->num_dapm_routes;
++      const_cast(sti_sas_driver.dapm_routes) = drvdata->dev_data->dapm_routes;
++      const_cast(sti_sas_driver.num_dapm_routes) = drvdata->dev_data->num_dapm_routes;
++      pax_close_kernel();
+       /* Store context */
+       dev_set_drvdata(&pdev->dev, drvdata);
+diff --git a/sound/soc/codecs/tlv320dac33.c b/sound/soc/codecs/tlv320dac33.c
+index f7a6ce7..82310c8 100644
+--- a/sound/soc/codecs/tlv320dac33.c
++++ b/sound/soc/codecs/tlv320dac33.c
+@@ -1375,13 +1375,18 @@ static int dac33_set_dai_fmt(struct snd_soc_dai *codec_dai,
+       return 0;
+ }
++static int dac33_hw_write(void *client, const char *buf, int count)
++{
++      return i2c_master_send(client, buf, count);
++}
++
+ static int dac33_soc_probe(struct snd_soc_codec *codec)
+ {
+       struct tlv320dac33_priv *dac33 = snd_soc_codec_get_drvdata(codec);
+       int ret = 0;
+       codec->control_data = dac33->control_data;
+-      codec->hw_write = (hw_write_t) i2c_master_send;
++      codec->hw_write = dac33_hw_write;
+       dac33->codec = codec;
+       /* Read the tlv320dac33 ID registers */
+diff --git a/sound/soc/codecs/uda1380.c b/sound/soc/codecs/uda1380.c
+index 35f0469..7c25cd5 100644
+--- a/sound/soc/codecs/uda1380.c
++++ b/sound/soc/codecs/uda1380.c
+@@ -687,6 +687,11 @@ static struct snd_soc_dai_driver uda1380_dai[] = {
+ },
+ };
++static int uda1380_hw_write(void *client, const char *buf, int count)
++{
++      return i2c_master_send(client, buf, count);
++}
++
+ static int uda1380_probe(struct snd_soc_codec *codec)
+ {
+       struct uda1380_platform_data *pdata =codec->dev->platform_data;
+@@ -695,7 +700,7 @@ static int uda1380_probe(struct snd_soc_codec *codec)
+       uda1380->codec = codec;
+-      codec->hw_write = (hw_write_t)i2c_master_send;
++      codec->hw_write = uda1380_hw_write;
+       codec->control_data = uda1380->control_data;
+       if (!pdata)
+diff --git a/sound/soc/intel/skylake/skl-sst-dsp.h b/sound/soc/intel/skylake/skl-sst-dsp.h
+index 0f8629e..79f9d59 100644
+--- a/sound/soc/intel/skylake/skl-sst-dsp.h
++++ b/sound/soc/intel/skylake/skl-sst-dsp.h
+@@ -140,7 +140,7 @@ struct skl_dsp_fw_ops {
+       int (*load_mod)(struct sst_dsp *ctx, u16 mod_id, u8 *mod_name);
+       int (*unload_mod)(struct sst_dsp *ctx, u16 mod_id);
+-};
++} __no_const;
+ struct skl_dsp_loader_ops {
+       int stream_tag;
+diff --git a/sound/soc/soc-ac97.c b/sound/soc/soc-ac97.c
+index bc4a55b..ce6b925 100644
+--- a/sound/soc/soc-ac97.c
++++ b/sound/soc/soc-ac97.c
+@@ -414,8 +414,10 @@ int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
+       if (ret)
+               return ret;
+-      ops->warm_reset = snd_soc_ac97_warm_reset;
+-      ops->reset = snd_soc_ac97_reset;
++      pax_open_kernel();
++      const_cast(ops->warm_reset) = snd_soc_ac97_warm_reset;
++      const_cast(ops->reset) = snd_soc_ac97_reset;
++      pax_close_kernel();
+       snd_ac97_rst_cfg = cfg;
+       return 0;
+diff --git a/sound/soc/xtensa/xtfpga-i2s.c b/sound/soc/xtensa/xtfpga-i2s.c
+index 8382ffa..86af7d0 100644
+--- a/sound/soc/xtensa/xtfpga-i2s.c
++++ b/sound/soc/xtensa/xtfpga-i2s.c
+@@ -437,7 +437,7 @@ static int xtfpga_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
+       case SNDRV_PCM_TRIGGER_START:
+       case SNDRV_PCM_TRIGGER_RESUME:
+       case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
+-              ACCESS_ONCE(i2s->tx_ptr) = 0;
++              ACCESS_ONCE_RW(i2s->tx_ptr) = 0;
+               rcu_assign_pointer(i2s->tx_substream, substream);
+               xtfpga_pcm_refill_fifo(i2s);
+               break;
+diff --git a/sound/synth/emux/emux_seq.c b/sound/synth/emux/emux_seq.c
+index a020920..55579f6 100644
+--- a/sound/synth/emux/emux_seq.c
++++ b/sound/synth/emux/emux_seq.c
+@@ -33,13 +33,13 @@ static int snd_emux_unuse(void *private_data, struct snd_seq_port_subscribe *inf
+  * MIDI emulation operators
+  */
+ static struct snd_midi_op emux_ops = {
+-      snd_emux_note_on,
+-      snd_emux_note_off,
+-      snd_emux_key_press,
+-      snd_emux_terminate_note,
+-      snd_emux_control,
+-      snd_emux_nrpn,
+-      snd_emux_sysex,
++      .note_on = snd_emux_note_on,
++      .note_off = snd_emux_note_off,
++      .key_press = snd_emux_key_press,
++      .note_terminate = snd_emux_terminate_note,
++      .control = snd_emux_control,
++      .nrpn = snd_emux_nrpn,
++      .sysex = snd_emux_sysex,
+ };
+diff --git a/sound/usb/line6/driver.c b/sound/usb/line6/driver.c
+index 183311c..760f13f 100644
+--- a/sound/usb/line6/driver.c
++++ b/sound/usb/line6/driver.c
+@@ -307,7 +307,7 @@ int line6_read_data(struct usb_line6 *line6, unsigned address, void *data,
+ {
+       struct usb_device *usbdev = line6->usbdev;
+       int ret;
+-      unsigned char len;
++      unsigned char *plen;
+       unsigned count;
+       if (address > 0xffff || datalen > 0xff)
+@@ -324,6 +324,10 @@ int line6_read_data(struct usb_line6 *line6, unsigned address, void *data,
+               return ret;
+       }
++      plen = kmalloc(1, GFP_KERNEL);
++      if (plen == NULL)
++              return -ENOMEM;
++
+       /* Wait for data length. We'll get 0xff until length arrives. */
+       for (count = 0; count < LINE6_READ_WRITE_MAX_RETRIES; count++) {
+               mdelay(LINE6_READ_WRITE_STATUS_DELAY);
+@@ -331,30 +335,35 @@ int line6_read_data(struct usb_line6 *line6, unsigned address, void *data,
+               ret = usb_control_msg(usbdev, usb_rcvctrlpipe(usbdev, 0), 0x67,
+                                     USB_TYPE_VENDOR | USB_RECIP_DEVICE |
+                                     USB_DIR_IN,
+-                                    0x0012, 0x0000, &len, 1,
++                                    0x0012, 0x0000, plen, 1,
+                                     LINE6_TIMEOUT * HZ);
+               if (ret < 0) {
+                       dev_err(line6->ifcdev,
+                               "receive length failed (error %d)\n", ret);
++                      kfree(plen);
+                       return ret;
+               }
+-              if (len != 0xff)
++              if (*plen != 0xff)
+                       break;
+       }
+-      if (len == 0xff) {
++      if (*plen == 0xff) {
+               dev_err(line6->ifcdev, "read failed after %d retries\n",
+                       count);
++              kfree(plen);
+               return -EIO;
+-      } else if (len != datalen) {
++      } else if (*plen != datalen) {
+               /* should be equal or something went wrong */
+               dev_err(line6->ifcdev,
+                       "length mismatch (expected %d, got %d)\n",
+-                      (int)datalen, (int)len);
++                      (int)datalen, (int)*plen);
++              kfree(plen);
+               return -EIO;
+       }
++      kfree(plen);
++
+       /* receive the result: */
+       ret = usb_control_msg(usbdev, usb_rcvctrlpipe(usbdev, 0), 0x67,
+                             USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
+@@ -378,7 +387,7 @@ int line6_write_data(struct usb_line6 *line6, unsigned address, void *data,
+ {
+       struct usb_device *usbdev = line6->usbdev;
+       int ret;
+-      unsigned char status;
++      unsigned char *status;
+       int count;
+       if (address > 0xffff || datalen > 0xffff)
+@@ -395,6 +404,10 @@ int line6_write_data(struct usb_line6 *line6, unsigned address, void *data,
+               return ret;
+       }
++      status = kmalloc(1, GFP_KERNEL);
++      if (status == NULL)
++              return -ENOMEM;
++
+       for (count = 0; count < LINE6_READ_WRITE_MAX_RETRIES; count++) {
+               mdelay(LINE6_READ_WRITE_STATUS_DELAY);
+@@ -403,27 +416,32 @@ int line6_write_data(struct usb_line6 *line6, unsigned address, void *data,
+                                     USB_TYPE_VENDOR | USB_RECIP_DEVICE |
+                                     USB_DIR_IN,
+                                     0x0012, 0x0000,
+-                                    &status, 1, LINE6_TIMEOUT * HZ);
++                                    status, 1, LINE6_TIMEOUT * HZ);
+               if (ret < 0) {
+                       dev_err(line6->ifcdev,
+                               "receiving status failed (error %d)\n", ret);
++                      kfree(status);
+                       return ret;
+               }
+-              if (status != 0xff)
++              if (*status != 0xff)
+                       break;
+       }
+-      if (status == 0xff) {
++      if (*status == 0xff) {
+               dev_err(line6->ifcdev, "write failed after %d retries\n",
+                       count);
++              kfree(status);
+               return -EIO;
+-      } else if (status != 0) {
++      } else if (*status != 0) {
+               dev_err(line6->ifcdev, "write failed (error %d)\n", ret);
++              kfree(status);
+               return -EIO;
+       }
++      kfree(status);
++
+       return 0;
+ }
+ EXPORT_SYMBOL_GPL(line6_write_data);
+diff --git a/sound/usb/line6/toneport.c b/sound/usb/line6/toneport.c
+index 6d4c50c..aa658c8 100644
+--- a/sound/usb/line6/toneport.c
++++ b/sound/usb/line6/toneport.c
+@@ -367,13 +367,19 @@ static bool toneport_has_source_select(struct usb_line6_toneport *toneport)
+ */
+ static void toneport_setup(struct usb_line6_toneport *toneport)
+ {
+-      int ticks;
++      int *ticks;
+       struct usb_line6 *line6 = &toneport->line6;
+       struct usb_device *usbdev = line6->usbdev;
++      ticks = kmalloc(sizeof(int), GFP_KERNEL);
++      if (ticks == NULL)
++              return;
++
+       /* sync time on device with host: */
+-      ticks = (int)get_seconds();
+-      line6_write_data(line6, 0x80c6, &ticks, 4);
++      *ticks = (int)get_seconds();
++      line6_write_data(line6, 0x80c6, ticks, sizeof(int));
++
++      kfree(ticks);
+       /* enable device: */
+       toneport_send_cmd(usbdev, 0x0301, 0x0000);
+diff --git a/tools/include/asm/alternative-asm.h b/tools/include/asm/alternative-asm.h
+index 2a4d1bf..68e0eec 100644
+--- a/tools/include/asm/alternative-asm.h
++++ b/tools/include/asm/alternative-asm.h
+@@ -6,4 +6,7 @@
+ #define altinstruction_entry #
+ #define ALTERNATIVE_2 #
++      .macro pax_force_retaddr rip=0, reload=0
++      .endm
++
+ #endif
+diff --git a/tools/include/linux/compiler.h b/tools/include/linux/compiler.h
+index e33fc1d..b41929d 100644
+--- a/tools/include/linux/compiler.h
++++ b/tools/include/linux/compiler.h
+@@ -50,6 +50,14 @@
+ # define unlikely(x)          __builtin_expect(!!(x), 0)
+ #endif
++#ifndef __size_overflow
++# define __size_overflow(...)
++#endif
++
++#ifndef __intentional_overflow
++# define __intentional_overflow(...)
++#endif
++
+ #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x))
+ #include <linux/types.h>
+diff --git a/tools/virtio/linux/uaccess.h b/tools/virtio/linux/uaccess.h
+index 0a578fe..b81f62d 100644
+--- a/tools/virtio/linux/uaccess.h
++++ b/tools/virtio/linux/uaccess.h
+@@ -13,7 +13,7 @@ static inline void __chk_user_ptr(const volatile void *p, size_t size)
+ ({                                                            \
+       typeof(ptr) __pu_ptr = (ptr);                           \
+       __chk_user_ptr(__pu_ptr, sizeof(*__pu_ptr));            \
+-      ACCESS_ONCE(*(__pu_ptr)) = x;                           \
++      ACCESS_ONCE_RW(*(__pu_ptr)) = x;                        \
+       0;                                                      \
+ })
+diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
+index 1950782..098c717 100644
+--- a/virt/kvm/kvm_main.c
++++ b/virt/kvm/kvm_main.c
+@@ -93,12 +93,17 @@ LIST_HEAD(vm_list);
+ static cpumask_var_t cpus_hardware_enabled;
+ static int kvm_usage_count;
+-static atomic_t hardware_enable_failed;
++static atomic_unchecked_t hardware_enable_failed;
+ struct kmem_cache *kvm_vcpu_cache;
+ EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
+-static __read_mostly struct preempt_ops kvm_preempt_ops;
++static void kvm_sched_in(struct preempt_notifier *pn, int cpu);
++static void kvm_sched_out(struct preempt_notifier *pn, struct task_struct *next);
++static struct preempt_ops kvm_preempt_ops = {
++      .sched_in = kvm_sched_in,
++      .sched_out = kvm_sched_out,
++};
+ struct dentry *kvm_debugfs_dir;
+ EXPORT_SYMBOL_GPL(kvm_debugfs_dir);
+@@ -909,7 +914,7 @@ int __kvm_set_memory_region(struct kvm *kvm,
+       /* We can read the guest memory with __xxx_user() later on. */
+       if ((id < KVM_USER_MEM_SLOTS) &&
+           ((mem->userspace_addr & (PAGE_SIZE - 1)) ||
+-           !access_ok(VERIFY_WRITE,
++           !access_ok_noprefault(VERIFY_WRITE,
+                       (void __user *)(unsigned long)mem->userspace_addr,
+                       mem->memory_size)))
+               goto out;
+@@ -2020,9 +2025,17 @@ EXPORT_SYMBOL_GPL(kvm_read_guest_cached);
+ int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len)
+ {
+-      const void *zero_page = (const void *) __va(page_to_phys(ZERO_PAGE(0)));
++      int r;
++      unsigned long addr;
+-      return kvm_write_guest_page(kvm, gfn, zero_page, offset, len);
++      addr = gfn_to_hva(kvm, gfn);
++      if (kvm_is_error_hva(addr))
++              return -EFAULT;
++      r = __clear_user((void __user *)addr + offset, len);
++      if (r)
++              return -EFAULT;
++      mark_page_dirty(kvm, gfn);
++      return 0;
+ }
+ EXPORT_SYMBOL_GPL(kvm_clear_guest_page);
+@@ -2373,7 +2386,7 @@ static int kvm_vcpu_release(struct inode *inode, struct file *filp)
+       return 0;
+ }
+-static struct file_operations kvm_vcpu_fops = {
++static file_operations_no_const kvm_vcpu_fops __read_only = {
+       .release        = kvm_vcpu_release,
+       .unlocked_ioctl = kvm_vcpu_ioctl,
+ #ifdef CONFIG_KVM_COMPAT
+@@ -3107,7 +3120,7 @@ out:
+ }
+ #endif
+-static struct file_operations kvm_vm_fops = {
++static file_operations_no_const kvm_vm_fops __read_only = {
+       .release        = kvm_vm_release,
+       .unlocked_ioctl = kvm_vm_ioctl,
+ #ifdef CONFIG_KVM_COMPAT
+@@ -3194,7 +3207,7 @@ out:
+       return r;
+ }
+-static struct file_operations kvm_chardev_ops = {
++static file_operations_no_const kvm_chardev_ops __read_only = {
+       .unlocked_ioctl = kvm_dev_ioctl,
+       .compat_ioctl   = kvm_dev_ioctl,
+       .llseek         = noop_llseek,
+@@ -3220,7 +3233,7 @@ static void hardware_enable_nolock(void *junk)
+       if (r) {
+               cpumask_clear_cpu(cpu, cpus_hardware_enabled);
+-              atomic_inc(&hardware_enable_failed);
++              atomic_inc_unchecked(&hardware_enable_failed);
+               pr_info("kvm: enabling virtualization on CPU%d failed\n", cpu);
+       }
+ }
+@@ -3277,10 +3290,10 @@ static int hardware_enable_all(void)
+       kvm_usage_count++;
+       if (kvm_usage_count == 1) {
+-              atomic_set(&hardware_enable_failed, 0);
++              atomic_set_unchecked(&hardware_enable_failed, 0);
+               on_each_cpu(hardware_enable_nolock, NULL, 1);
+-              if (atomic_read(&hardware_enable_failed)) {
++              if (atomic_read_unchecked(&hardware_enable_failed)) {
+                       hardware_disable_all_nolock();
+                       r = -EBUSY;
+               }
+@@ -3840,8 +3853,8 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
+       /* A kmem cache lets us meet the alignment requirements of fx_save. */
+       if (!vcpu_align)
+               vcpu_align = __alignof__(struct kvm_vcpu);
+-      kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
+-                                         0, NULL);
++      kvm_vcpu_cache = kmem_cache_create_usercopy("kvm_vcpu", vcpu_size, vcpu_align,
++                                         0, 0, vcpu_size, NULL);
+       if (!kvm_vcpu_cache) {
+               r = -ENOMEM;
+               goto out_free_3;
+@@ -3851,9 +3864,11 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
+       if (r)
+               goto out_free;
++      pax_open_kernel();
+       kvm_chardev_ops.owner = module;
+       kvm_vm_fops.owner = module;
+       kvm_vcpu_fops.owner = module;
++      pax_close_kernel();
+       r = misc_register(&kvm_dev);
+       if (r) {
+@@ -3863,9 +3878,6 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
+       register_syscore_ops(&kvm_syscore_ops);
+-      kvm_preempt_ops.sched_in = kvm_sched_in;
+-      kvm_preempt_ops.sched_out = kvm_sched_out;
+-
+       r = kvm_init_debug();
+       if (r) {
+               pr_err("kvm: create debugfs files failed\n");