aboutsummaryrefslogtreecommitdiff
path: root/sys/geom/journal
diff options
context:
space:
mode:
authorUlf Lilleengen <lulf@FreeBSD.org>2008-06-20 19:48:18 +0000
committerUlf Lilleengen <lulf@FreeBSD.org>2008-06-20 19:48:18 +0000
commit7e7a4e1d189b4ee780c412ddf76126a67c428647 (patch)
tree264ccd5357d9a8a16db34169e41195f7d42a28d1 /sys/geom/journal
parentcca7141d7662cc6ce4466a6fb7a7ad4407d6ed3e (diff)
downloadsrc-7e7a4e1d189b4ee780c412ddf76126a67c428647.tar.gz
src-7e7a4e1d189b4ee780c412ddf76126a67c428647.zip
- Fix spelling errors.
Approved by: kib (mentor) PR: kern/124788 Submitted by: Hywel Mallett <Hywel -at- hmallett.co.uk>
Notes
Notes: svn path=/head/; revision=179897
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 71ddf8cc695f..7c170bf54970 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);