MCPcopy Create free account
hub / github.com/F-Stack/f-stack / make_dev_s

Function make_dev_s

freebsd/kern/kern_conf.c:842–853  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

840}
841
842int
843make_dev_s(struct make_dev_args *args, struct cdev **dres,
844 const char *fmt, ...)
845{
846 va_list ap;
847 int res;
848
849 va_start(ap, fmt);
850 res = make_dev_sv(args, dres, fmt, ap);
851 va_end(ap);
852 return (res);
853}
854
855static int
856make_dev_credv(int flags, struct cdev **dres, struct cdevsw *devsw, int unit,

Callers 7

zvol_rename_minorFunction · 0.85
zvol_create_minor_implFunction · 0.85
dmtpps_attachFunction · 0.85
tty_makedevfFunction · 0.85
kcov_initFunction · 0.85
pfil_initFunction · 0.85
tun_create_deviceFunction · 0.85

Calls 1

make_dev_svFunction · 0.85

Tested by

no test coverage detected