Fix typos and pasto, from Jean-Yves Migeon (jean-yves dot migeon at espci

dot fr). Luckily this pasto is fatal only in case of a 64bit domU on a
32bit dom0, which we don't support yet as dom0.
This commit is contained in:
bouyer 2008-09-16 19:53:05 +00:00
parent 5874ba97c9
commit dca35a7e77

View File

@ -1,4 +1,4 @@
/* $NetBSD: xbdback_xenbus.c,v 1.18 2008/08/24 21:00:49 bouyer Exp $ */
/* $NetBSD: xbdback_xenbus.c,v 1.19 2008/09/16 19:53:05 bouyer Exp $ */
/*
* Copyright (c) 2006 Manuel Bouyer.
@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: xbdback_xenbus.c,v 1.18 2008/08/24 21:00:49 bouyer Exp $");
__KERNEL_RCSID(0, "$NetBSD: xbdback_xenbus.c,v 1.19 2008/09/16 19:53:05 bouyer Exp $");
#include <sys/types.h>
#include <sys/param.h>
@ -485,7 +485,7 @@ xbdback_frontend_changed(void *arg, XenbusState new_state)
proto = XEN_IO_PROTO_ABI_X86_32;
} else if(strcmp(xsproto, XEN_IO_PROTO_ABI_X86_64) == 0) {
xbdi->xbdi_proto = XBDIP_64;
proto = XEN_IO_PROTO_ABI_X86_32;
proto = XEN_IO_PROTO_ABI_X86_64;
} else {
printf("xbd domain %d: unknown proto %s\n",
xbdi->xbdi_domid, xsproto);
@ -549,7 +549,7 @@ xbdback_frontend_changed(void *arg, XenbusState new_state)
printf("blkback %s: can't get event channel: %d\n",
xbusd->xbusd_otherend, err);
xenbus_dev_fatal(xbusd, err,
"can't bind event chanel", xbusd->xbusd_otherend);
"can't bind event channel", xbusd->xbusd_otherend);
goto err2;
}
xbdi->xbdi_evtchn = evop.u.bind_interdomain.local_port;
@ -643,7 +643,7 @@ xbdback_backend_changed(struct xenbus_watch *watch,
major = major(xbdi->xbdi_dev);
devname = devsw_blk2name(major);
if (devname == NULL) {
printf("xbdback %s: unknwon device 0x%x\n", xbusd->xbusd_path,
printf("xbdback %s: unknown device 0x%x\n", xbusd->xbusd_path,
xbdi->xbdi_dev);
return;
}