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

Function make_dev_alias_p

freebsd/kern/kern_conf.c:1019–1030  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1017}
1018
1019int
1020make_dev_alias_p(int flags, struct cdev **cdev, struct cdev *pdev,
1021 const char *fmt, ...)
1022{
1023 va_list ap;
1024 int res;
1025
1026 va_start(ap, fmt);
1027 res = make_dev_alias_v(flags, cdev, pdev, fmt, ap);
1028 va_end(ap);
1029 return (res);
1030}
1031
1032int
1033make_dev_physpath_alias(int flags, struct cdev **cdev, struct cdev *pdev,

Callers 2

make_dev_physpath_aliasFunction · 0.85
tunrenameFunction · 0.85

Calls 1

make_dev_alias_vFunction · 0.85

Tested by

no test coverage detected