diff options
author | 2010-06-10 08:48:36 +0000 | |
---|---|---|
committer | 2010-06-10 08:48:36 +0000 | |
commit | d3b3d34d000a9caf9ccb1cdd5bd5fda8ca02c25f (patch) | |
tree | 2d6ff5ebbac6f64bb4488bff4ffc5034621a62ff /sys/uvm/uvm_pmemrange.c | |
parent | the pagedaemon sleeps on uvm.pagedaemon not (diff) | |
download | wireguard-openbsd-d3b3d34d000a9caf9ccb1cdd5bd5fda8ca02c25f.tar.xz wireguard-openbsd-d3b3d34d000a9caf9ccb1cdd5bd5fda8ca02c25f.zip |
fix typos in comments: lineair -> linear.
Diffstat (limited to 'sys/uvm/uvm_pmemrange.c')
-rw-r--r-- | sys/uvm/uvm_pmemrange.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_pmemrange.c b/sys/uvm/uvm_pmemrange.c index 0c10aee5f5c..5b2917e4343 100644 --- a/sys/uvm/uvm_pmemrange.c +++ b/sys/uvm/uvm_pmemrange.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_pmemrange.c,v 1.12 2010/06/10 08:42:23 thib Exp $ */ +/* $OpenBSD: uvm_pmemrange.c,v 1.13 2010/06/10 08:48:36 thib Exp $ */ /* * Copyright (c) 2009, 2010 Ariane van der Steldt <ariane@stack.nl> @@ -590,7 +590,7 @@ uvm_pmr_remove_1strange(struct pglist *pgl, paddr_t boundary, * element (rather than a close match to the smallest element). */ if (is_desperate) { - /* Lineair search for smallest segment. */ + /* Linear search for smallest segment. */ pmr_iter = pmr; for (iter = TAILQ_NEXT(end, pageq); iter != NULL && start != end; |