svn commit: r231837 - head/sys/dev/xen/blkback
Justin T. Gibbs
gibbs at FreeBSD.org
Thu Feb 16 21:49:28 UTC 2012
Author: gibbs
Date: Thu Feb 16 21:49:28 2012
New Revision: 231837
URL: http://svn.freebsd.org/changeset/base/231837
Log:
Fix typo in a printf string: "specificed" -> "specified".
MFC after: 1 day
Modified:
head/sys/dev/xen/blkback/blkback.c
Modified: head/sys/dev/xen/blkback/blkback.c
==============================================================================
--- head/sys/dev/xen/blkback/blkback.c Thu Feb 16 21:47:17 2012 (r231836)
+++ head/sys/dev/xen/blkback/blkback.c Thu Feb 16 21:49:28 2012 (r231837)
@@ -3134,7 +3134,7 @@ xbb_collect_frontend_info(struct xbb_sof
if (xbb->ring_config.ring_pages > XBB_MAX_RING_PAGES) {
xenbus_dev_fatal(xbb->dev, EINVAL,
- "Front-end specificed ring-pages of %u "
+ "Front-end specified ring-pages of %u "
"exceeds backend limit of %zu. "
"Unable to connect.",
xbb->ring_config.ring_pages,
@@ -3142,7 +3142,7 @@ xbb_collect_frontend_info(struct xbb_sof
return (EINVAL);
} else if (xbb->max_requests > XBB_MAX_REQUESTS) {
xenbus_dev_fatal(xbb->dev, EINVAL,
- "Front-end specificed max_requests of %u "
+ "Front-end specified max_requests of %u "
"exceeds backend limit of %u. "
"Unable to connect.",
xbb->max_requests,
@@ -3150,7 +3150,7 @@ xbb_collect_frontend_info(struct xbb_sof
return (EINVAL);
} else if (xbb->max_request_segments > XBB_MAX_SEGMENTS_PER_REQUEST) {
xenbus_dev_fatal(xbb->dev, EINVAL,
- "Front-end specificed max_requests_segments "
+ "Front-end specified max_requests_segments "
"of %u exceeds backend limit of %u. "
"Unable to connect.",
xbb->max_request_segments,
@@ -3158,7 +3158,7 @@ xbb_collect_frontend_info(struct xbb_sof
return (EINVAL);
} else if (xbb->max_request_size > XBB_MAX_REQUEST_SIZE) {
xenbus_dev_fatal(xbb->dev, EINVAL,
- "Front-end specificed max_request_size "
+ "Front-end specified max_request_size "
"of %u exceeds backend limit of %u. "
"Unable to connect.",
xbb->max_request_size,
More information about the svn-src-all
mailing list