Add missing spaces in split string literals.

This commit is contained in:
uwe 2017-02-02 21:22:08 +00:00
parent 4777ae6bba
commit 5465d902d6
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_physseg.c,v 1.6 2016/12/29 12:58:38 rin Exp $ */
/* $NetBSD: uvm_physseg.c,v 1.7 2017/02/02 21:22:08 uwe Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@ -166,7 +166,7 @@ uvm_physseg_alloc(size_t sz)
if (__predict_false(uvm.page_init_done == false)) {
if (sz % sizeof(struct uvm_physseg))
panic("%s: tried to alloc size other than multiple"
"of struct uvm_physseg at boot\n", __func__);
" of struct uvm_physseg at boot\n", __func__);
size_t n = sz / sizeof(struct uvm_physseg);
nseg += n;
@ -200,7 +200,7 @@ uvm_physseg_free(void *p, size_t sz)
if (__predict_false(uvm.page_init_done == false)) {
if (sz % sizeof(struct uvm_physseg))
panic("%s: tried to free size other than struct uvm_physseg"
"at boot\n", __func__);
" at boot\n", __func__);
}
@ -213,7 +213,7 @@ uvm_physseg_free(void *p, size_t sz)
(struct uvm_physseg *)p < (uvm_physseg + VM_PHYSSEG_MAX)) {
if (sz % sizeof(struct uvm_physseg))
panic("%s: tried to free() other than struct uvm_physseg"
"from static array\n", __func__);
" from static array\n", __func__);
if ((sz / sizeof(struct uvm_physseg)) >= VM_PHYSSEG_MAX)
panic("%s: tried to free() the entire static array!", __func__);
@ -1349,7 +1349,7 @@ uvm_physseg_unplug(paddr_t pfn, size_t pages)
uvm_physseg_graph.nentries++;
#else /* UVM_HOTPLUG */
panic("%s: can't unplug() from the middle of a segment without"
"UVM_HOTPLUG\n", __func__);
" UVM_HOTPLUG\n", __func__);
/* NOTREACHED */
#endif /* UVM_HOTPLUG */
return true;