Searched refs:ctx_name (Results 1 – 1 of 1) sorted by relevance
748 char *ctx_name; in dbgfs_mk_context_write() local754 ctx_name = kmalloc(count + 1, GFP_KERNEL); in dbgfs_mk_context_write()755 if (!ctx_name) { in dbgfs_mk_context_write()761 if (sscanf(kbuf, "%s", ctx_name) != 1) { in dbgfs_mk_context_write()767 ret = dbgfs_mk_context(ctx_name); in dbgfs_mk_context_write()774 kfree(ctx_name); in dbgfs_mk_context_write()848 char *ctx_name; in dbgfs_rm_context_write() local853 ctx_name = kmalloc(count + 1, GFP_KERNEL); in dbgfs_rm_context_write()854 if (!ctx_name) { in dbgfs_rm_context_write()860 if (sscanf(kbuf, "%s", ctx_name) != 1) { in dbgfs_rm_context_write()[all …]