Lines Matching defs:m
16 static inline void print_unload_info(struct seq_file *m, struct module *mod)
21 seq_printf(m, " %i ", module_refcount(mod));
29 seq_printf(m, "%s,", use->source->name);
34 seq_puts(m, "[permanent],");
38 seq_puts(m, "-");
41 static inline void print_unload_info(struct seq_file *m, struct module *mod)
44 seq_puts(m, " - -");
49 static void *m_start(struct seq_file *m, loff_t *pos)
55 static void *m_next(struct seq_file *m, void *p, loff_t *pos)
60 static void m_stop(struct seq_file *m, void *p)
74 static int m_show(struct seq_file *m, void *p)
86 seq_printf(m, "%s %u", mod->name, size);
87 print_unload_info(m, mod);
90 seq_printf(m, " %s",
95 value = m->private ? NULL : mod->mem[MOD_TEXT].base;
96 seq_printf(m, " 0x%px", value);
100 seq_printf(m, " %s", module_flags(mod, buf, true));
102 seq_puts(m, "\n");
122 * "m->private" to see if you should keep the values private).
131 struct seq_file *m = file->private_data;
133 m->private = kallsyms_show_value(file->f_cred) ? NULL : (void *)8ul;