summaryrefslogtreecommitdiffstats
path: root/sys/geom/journal
diff options
context:
space:
mode:
authorlulf <lulf@FreeBSD.org>2008-06-20 19:48:18 +0000
committerlulf <lulf@FreeBSD.org>2008-06-20 19:48:18 +0000
commita8c357db8af10a39ad5ba715f7af6bd149f880bd (patch)
tree264ccd5357d9a8a16db34169e41195f7d42a28d1 /sys/geom/journal
parent5893a883ae365515ba91269983d8f069463cc9bb (diff)
downloadFreeBSD-src-a8c357db8af10a39ad5ba715f7af6bd149f880bd.zip
FreeBSD-src-a8c357db8af10a39ad5ba715f7af6bd149f880bd.tar.gz
- Fix spelling errors.
Approved by: kib (mentor) PR: kern/124788 Submitted by: Hywel Mallett <Hywel -at- hmallett.co.uk>
Diffstat (limited to 'sys/geom/journal')
-rw-r--r--sys/geom/journal/g_journal.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/geom/journal/g_journal.c b/sys/geom/journal/g_journal.c
index 71ddf8c..7c170bf 100644
--- a/sys/geom/journal/g_journal.c
+++ b/sys/geom/journal/g_journal.c
@@ -101,13 +101,13 @@ SYSCTL_UINT(_kern_geom_journal, OID_AUTO, force_switch, CTLFLAG_RW,
&g_journal_force_switch, 0, "Force switch when journal is N% full");
SYSCTL_UINT(_kern_geom_journal, OID_AUTO, parallel_flushes, CTLFLAG_RW,
&g_journal_parallel_flushes, 0,
- "Number of flush I/O requests send in parallel");
+ "Number of flush I/O requests to send in parallel");
SYSCTL_UINT(_kern_geom_journal, OID_AUTO, accept_immediately, CTLFLAG_RW,
&g_journal_accept_immediately, 0,
- "Number of I/O requests accepted immediatelly");
+ "Number of I/O requests accepted immediately");
SYSCTL_UINT(_kern_geom_journal, OID_AUTO, parallel_copies, CTLFLAG_RW,
&g_journal_parallel_copies, 0,
- "Number of copy I/O requests send in parallel");
+ "Number of copy I/O requests to send in parallel");
static int
g_journal_record_entries_sysctl(SYSCTL_HANDLER_ARGS)
{
@@ -1202,7 +1202,7 @@ g_journal_copy_write_done(struct bio *bp)
sc->sc_copy_in_progress--;
if (bp->bio_error != 0) {
- GJ_LOGREQ(0, bp, "[copy] Error while writting data (error=%d)",
+ GJ_LOGREQ(0, bp, "[copy] Error while writing data (error=%d)",
bp->bio_error);
}
GJQ_REMOVE(sc->sc_copy_queue, bp);
@@ -1354,7 +1354,7 @@ g_journal_flush_done(struct bio *bp)
sc->sc_flush_in_progress--;
if (bp->bio_error != 0) {
- GJ_LOGREQ(0, bp, "[flush] Error while writting data (error=%d)",
+ GJ_LOGREQ(0, bp, "[flush] Error while writing data (error=%d)",
bp->bio_error);
}
gj_free(bp->bio_data, bp->bio_length);
OpenPOWER on IntegriCloud