cregit-Linux how code gets into the kernel

Release 4.15 fs/ubifs/misc.c

Directory: fs/ubifs
// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.h>
#include "ubifs.h"

/* Normal UBIFS messages */

void ubifs_msg(const struct ubifs_info *c, const char *fmt, ...) { struct va_format vaf; va_list args; va_start(args, fmt); vaf.fmt = fmt; vaf.va = &args; pr_notice("UBIFS (ubi%d:%d): %pV\n", c->vi.ubi_num, c->vi.vol_id, &vaf); va_end(args); }

Contributors

PersonTokensPropCommitsCommitProp
Joe Perches70100.00%1100.00%
Total70100.00%1100.00%

\ /* UBIFS error messages */
void ubifs_err(const struct ubifs_info *c, const char *fmt, ...) { struct va_format vaf; va_list args; va_start(args, fmt); vaf.fmt = fmt; vaf.va = &args; pr_err("UBIFS error (ubi%d:%d pid %d): %ps: %pV\n", c->vi.ubi_num, c->vi.vol_id, current->pid, __builtin_return_address(0), &vaf); va_end(args); }

Contributors

PersonTokensPropCommitsCommitProp
Joe Perches79100.00%1100.00%
Total79100.00%1100.00%

\ /* UBIFS warning messages */
void ubifs_warn(const struct ubifs_info *c, const char *fmt, ...) { struct va_format vaf; va_list args; va_start(args, fmt); vaf.fmt = fmt; vaf.va = &args; pr_warn("UBIFS warning (ubi%d:%d pid %d): %ps: %pV\n", c->vi.ubi_num, c->vi.vol_id, current->pid, __builtin_return_address(0), &vaf); va_end(args); }

Contributors

PersonTokensPropCommitsCommitProp
Joe Perches79100.00%1100.00%
Total79100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Joe Perches23999.58%150.00%
Greg Kroah-Hartman10.42%150.00%
Total240100.00%2100.00%
Directory: fs/ubifs
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.