Searched refs:ctx_name (Results 1 – 1 of 1) sorted by relevance
853 char *ctx_name; in dbgfs_mk_context_write() local859 ctx_name = kmalloc(count + 1, GFP_KERNEL); in dbgfs_mk_context_write()860 if (!ctx_name) { in dbgfs_mk_context_write()866 if (sscanf(kbuf, "%s", ctx_name) != 1) { in dbgfs_mk_context_write()872 ret = dbgfs_mk_context(ctx_name); in dbgfs_mk_context_write()879 kfree(ctx_name); in dbgfs_mk_context_write()960 char *ctx_name; in dbgfs_rm_context_write() local965 ctx_name = kmalloc(count + 1, GFP_KERNEL); in dbgfs_rm_context_write()966 if (!ctx_name) { in dbgfs_rm_context_write()972 if (sscanf(kbuf, "%s", ctx_name) != 1) { in dbgfs_rm_context_write()[all …]