return buf;
 }
 
-#define vpr_info(fmt, ...)                                     \
+#define vnpr_info(lvl, fmt, ...)                               \
 do {                                                           \
-       if (verbose)                                            \
+       if (verbose >= lvl)                                     \
                pr_info(fmt, ##__VA_ARGS__);                    \
 } while (0)
 
+#define vpr_info(fmt, ...)     vnpr_info(1, fmt, ##__VA_ARGS__)
+#define v2pr_info(fmt, ...)    vnpr_info(2, fmt, ##__VA_ARGS__)
+
 static void vpr_info_dq(const struct ddebug_query *query, const char *msg)
 {
        /* trim any trailing newlines */
                                static_branch_enable(&dp->key.dd_key_true);
 #endif
                        dp->flags = newflags;
-                       vpr_info("changed %s:%d [%s]%s =%s\n",
+                       v2pr_info("changed %s:%d [%s]%s =%s\n",
                                 trim_prefix(dp->filename), dp->lineno,
                                 dt->mod_name, dp->function,
                                 ddebug_describe_flags(dp, flagbuf,
        struct _ddebug *dp;
        int n = *pos;
 
-       vpr_info("called m=%p *pos=%lld\n", m, (unsigned long long)*pos);
-
        mutex_lock(&ddebug_lock);
 
        if (!n)
        struct ddebug_iter *iter = m->private;
        struct _ddebug *dp;
 
-       vpr_info("called m=%p p=%p *pos=%lld\n",
-                m, p, (unsigned long long)*pos);
-
        if (p == SEQ_START_TOKEN)
                dp = ddebug_iter_first(iter);
        else
        struct _ddebug *dp = p;
        char flagsbuf[10];
 
-       vpr_info("called m=%p p=%p\n", m, p);
-
        if (p == SEQ_START_TOKEN) {
                seq_puts(m,
                         "# filename:lineno [module]function flags format\n");
  */
 static void ddebug_proc_stop(struct seq_file *m, void *p)
 {
-       vpr_info("called m=%p p=%p\n", m, p);
        mutex_unlock(&ddebug_lock);
 }
 
        list_add_tail(&dt->link, &ddebug_tables);
        mutex_unlock(&ddebug_lock);
 
-       vpr_info("%u debug prints in module %s\n", n, dt->mod_name);
+       v2pr_info("%u debug prints in module %s\n", n, dt->mod_name);
        return 0;
 }
 
        struct ddebug_table *dt, *nextdt;
        int ret = -ENOENT;
 
-       vpr_info("removing module \"%s\"\n", mod_name);
+       v2pr_info("removing module \"%s\"\n", mod_name);
 
        mutex_lock(&ddebug_lock);
        list_for_each_entry_safe(dt, nextdt, &ddebug_tables, link) {