diff options
author | rwatson <rwatson@FreeBSD.org> | 2007-11-24 18:39:01 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2007-11-24 18:39:01 +0000 |
commit | 3a9e4de211c8fa6102f9910b9d0c803c44ba5370 (patch) | |
tree | 25f8a063b5673fdc4475342ae07f32a330d2e942 | |
parent | 8dfd7032f8f962a346cceca091672b304cd5c431 (diff) | |
download | FreeBSD-src-3a9e4de211c8fa6102f9910b9d0c803c44ba5370.zip FreeBSD-src-3a9e4de211c8fa6102f9910b9d0c803c44ba5370.tar.gz |
Respell 'Conatainer' as 'Container'.
MFC after: 3 days
Reported by: Toomas Aas <toomas dot aas at raad dot tartu dot ee>
-rw-r--r-- | sys/dev/aac/aac_debug.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/aac/aac_debug.c b/sys/dev/aac/aac_debug.c index 4717ef7..8afcee5 100644 --- a/sys/dev/aac/aac_debug.c +++ b/sys/dev/aac/aac_debug.c @@ -416,57 +416,57 @@ aac_print_aif(struct aac_softc *sc, struct aac_aif_command *aif) break; case AifJobCtrZero: /* Container clear operation */ device_printf(sc->aac_dev, - "(ConatainerZero) container %d\n", + "(ContainerZero) container %d\n", aif->data.PR[0].jd.client.container.src); break; case AifJobCtrCopy: /* Container copy operation */ device_printf(sc->aac_dev, - "(ConatainerCopy) container %d to %d\n", + "(ContainerCopy) container %d to %d\n", aif->data.PR[0].jd.client.container.src, aif->data.PR[0].jd.client.container.dst); break; case AifJobCtrCreateMirror: /* Container Create Mirror * operation */ device_printf(sc->aac_dev, - "(ConatainerCreateMirror) container %d\n", + "(ContainerCreateMirror) container %d\n", aif->data.PR[0].jd.client.container.src); /* XXX two containers? */ break; case AifJobCtrMergeMirror: /* Container Merge Mirror * operation */ device_printf(sc->aac_dev, - "(ConatainerMergeMirror) container %d\n", + "(ContainerMergeMirror) container %d\n", aif->data.PR[0].jd.client.container.src); /* XXX two containers? */ break; case AifJobCtrScrubMirror: /* Container Scrub Mirror * operation */ device_printf(sc->aac_dev, - "(ConatainerScrubMirror) container %d\n", + "(ContainerScrubMirror) container %d\n", aif->data.PR[0].jd.client.container.src); break; case AifJobCtrRebuildRaid5: /* Container Rebuild Raid5 * operation */ device_printf(sc->aac_dev, - "(ConatainerRebuildRaid5) container %d\n", + "(ContainerRebuildRaid5) container %d\n", aif->data.PR[0].jd.client.container.src); break; case AifJobCtrScrubRaid5: /* Container Scrub Raid5 * operation */ device_printf(sc->aac_dev, - "(ConatainerScrubRaid5) container %d\n", + "(ContainerScrubRaid5) container %d\n", aif->data.PR[0].jd.client.container.src); break; case AifJobCtrMorph: /* Container morph operation */ device_printf(sc->aac_dev, - "(ConatainerMorph) container %d\n", + "(ContainerMorph) container %d\n", aif->data.PR[0].jd.client.container.src); /* XXX two containers? */ break; case AifJobCtrPartCopy: /* Container Partition copy * operation */ device_printf(sc->aac_dev, - "(ConatainerPartCopy) container %d to " + "(ContainerPartCopy) container %d to " "%d\n", aif->data.PR[0].jd.client.container.src, aif->data.PR[0].jd.client.container.dst); @@ -474,13 +474,13 @@ aac_print_aif(struct aac_softc *sc, struct aac_aif_command *aif) case AifJobCtrRebuildMirror: /* Container Rebuild Mirror * operation */ device_printf(sc->aac_dev, - "(ConatainerRebuildMirror) container " + "(ContainerRebuildMirror) container " "%d\n", aif->data.PR[0].jd.client.container.src); break; case AifJobCtrCrazyCache: /* crazy cache */ device_printf(sc->aac_dev, - "(ConatainerCrazyCache) container %d\n", + "(ContainerCrazyCache) container %d\n", aif->data.PR[0].jd.client.container.src); /* XXX two containers? */ break; |