Lines Matching defs:table
27 struct ctl_table *table;
29 table = kmemdup(unix_table, sizeof(unix_table), GFP_KERNEL);
30 if (table == NULL)
35 table[0].procname = NULL;
37 table[0].data = &net->unx.sysctl_max_dgram_qlen;
38 net->unx.ctl = register_net_sysctl(net, "net/unix", table);
45 kfree(table);
52 struct ctl_table *table;
54 table = net->unx.ctl->ctl_table_arg;
56 kfree(table);