Add SWIF_DEV_PREFIX flag to add "/dev/..." to device name.

This commit is contained in:
Matthew Dillon 1999-01-22 10:57:03 +00:00
parent e53c5e2053
commit a14dedd13c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=43048

View File

@ -14,7 +14,7 @@ static const char copyright[] =
#ifndef lint
static const char rcsid[] =
"$Id: kvm_getswapinfo.c,v 1.38 1999/01/21 08:08:55 dillon Exp $";
"$Id: kvm_getswapinfo.c,v 1.1 1999/01/22 10:36:04 dillon Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -198,7 +198,8 @@ kvm_getswapinfo(
snprintf(
swap_ary[i].ksw_devname,
sizeof(swap_ary[i].ksw_devname),
"%s",
"%s%s",
((flags & SWIF_DEV_PREFIX) ? "/dev/" : ""),
devname(swinfo.sw_dev, S_IFBLK)
);
}