Date: Thu, 5 Aug 2010 10:45:27 +0000 (UTC) From: Benedict Reuschling <bcr@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r210856 - in stable/8/sys/cam: . scsi Message-ID: <201008051045.o75AjRwG066453@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bcr (doc committer) Date: Thu Aug 5 10:45:27 2010 New Revision: 210856 URL: http://svn.freebsd.org/changeset/base/210856 Log: MFC r210779: Fix two (very common) occurrences of s/sytem/system in comments. Approved by: mav MFC after: 3 days Modified: stable/8/sys/cam/cam.c stable/8/sys/cam/scsi/scsi_target.c Directory Properties: stable/8/sys/cam/ (props changed) Modified: stable/8/sys/cam/cam.c ============================================================================== --- stable/8/sys/cam/cam.c Thu Aug 5 08:57:53 2010 (r210855) +++ stable/8/sys/cam/cam.c Thu Aug 5 10:45:27 2010 (r210856) @@ -59,7 +59,7 @@ const struct cam_status_entry cam_status { CAM_REQ_ABORTED, "CCB request aborted by the host" }, { CAM_UA_ABORT, "Unable to abort CCB request" }, { CAM_REQ_CMP_ERR, "CCB request completed with an error" }, - { CAM_BUSY, "CAM subsytem is busy" }, + { CAM_BUSY, "CAM subsystem is busy" }, { CAM_REQ_INVALID, "CCB request was invalid" }, { CAM_PATH_INVALID, "Supplied Path ID is invalid" }, { CAM_DEV_NOT_THERE, "Device Not Present" }, Modified: stable/8/sys/cam/scsi/scsi_target.c ============================================================================== --- stable/8/sys/cam/scsi/scsi_target.c Thu Aug 5 08:57:53 2010 (r210855) +++ stable/8/sys/cam/scsi/scsi_target.c Thu Aug 5 10:45:27 2010 (r210856) @@ -1138,7 +1138,7 @@ targcamstatus(cam_status status) return (EINVAL); case CAM_RESRC_UNAVAIL: /* Resource Unavailable */ return (ENOMEM); - case CAM_BUSY: /* CAM subsytem is busy */ + case CAM_BUSY: /* CAM subsystem is busy */ case CAM_UA_ABORT: /* Unable to abort CCB request */ return (EBUSY); default:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008051045.o75AjRwG066453>