svn commit: r256219 - in stable/9/sys: cam/ctl cam/scsi dev/aic7xxx dev/cp dev/ctau dev/cx dev/hptmv dev/isci/scil dev/nsp dev/sfxge/common dev/sn dev/stg kern netgraph/bluetooth/l2cap ofed/drivers...

Alexander Motin mav at FreeBSD.org
Wed Oct 9 19:04:52 UTC 2013


Author: mav
Date: Wed Oct  9 19:04:48 2013
New Revision: 256219
URL: http://svnweb.freebsd.org/changeset/base/256219

Log:
  MFC r250460 (by eadler):
  Fix a bunch of typos.

Modified:
  stable/9/sys/cam/ctl/scsi_ctl.c
  stable/9/sys/cam/scsi/scsi_da.c
  stable/9/sys/cam/scsi/scsi_pt.c
  stable/9/sys/dev/aic7xxx/aic7xxx.h
  stable/9/sys/dev/cp/if_cp.c
  stable/9/sys/dev/ctau/if_ct.c
  stable/9/sys/dev/cx/csigma.c
  stable/9/sys/dev/cx/if_cx.c
  stable/9/sys/dev/hptmv/entry.c
  stable/9/sys/dev/isci/scil/scif_sas_domain.c
  stable/9/sys/dev/nsp/nsp.c
  stable/9/sys/dev/sfxge/common/efx_mcdi.c
  stable/9/sys/dev/sn/if_sn.c
  stable/9/sys/dev/stg/tmc18c30.c
  stable/9/sys/kern/uipc_usrreq.c
  stable/9/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
  stable/9/sys/ofed/drivers/net/mlx4/eq.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/cam/ctl/scsi_ctl.c
==============================================================================
--- stable/9/sys/cam/ctl/scsi_ctl.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/cam/ctl/scsi_ctl.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -2142,7 +2142,7 @@ ctlfe_dump_queue(struct ctlfe_lun_softc 
 
 	xpt_print(periph->path, "%d requests total waiting for CCBs\n",
 		  num_items);
-	xpt_print(periph->path, "%ju CCBs oustanding (%ju allocated, %ju "
+	xpt_print(periph->path, "%ju CCBs outstanding (%ju allocated, %ju "
 		  "freed)\n", (uintmax_t)(softc->ccbs_alloced -
 		  softc->ccbs_freed), (uintmax_t)softc->ccbs_alloced,
 		  (uintmax_t)softc->ccbs_freed);

Modified: stable/9/sys/cam/scsi/scsi_da.c
==============================================================================
--- stable/9/sys/cam/scsi/scsi_da.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/cam/scsi/scsi_da.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -2299,7 +2299,7 @@ skipstate:
 
 out:
 		/*
-		 * Block out any asyncronous callbacks
+		 * Block out any asynchronous callbacks
 		 * while we touch the pending ccb list.
 		 */
 		LIST_INSERT_HEAD(&softc->pending_ccbs,
@@ -2961,7 +2961,7 @@ dadone(struct cam_periph *periph, union 
 		}
 
 		/*
-		 * Block out any asyncronous callbacks
+		 * Block out any asynchronous callbacks
 		 * while we touch the pending ccb list.
 		 */
 		LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);

Modified: stable/9/sys/cam/scsi/scsi_pt.c
==============================================================================
--- stable/9/sys/cam/scsi/scsi_pt.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/cam/scsi/scsi_pt.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -455,7 +455,7 @@ ptstart(struct cam_periph *periph, union
 		start_ccb->ccb_h.ccb_state = PT_CCB_BUFFER_IO_UA;
 
 		/*
-		 * Block out any asyncronous callbacks
+		 * Block out any asynchronous callbacks
 		 * while we touch the pending ccb list.
 		 */
 		LIST_INSERT_HEAD(&softc->pending_ccbs, &start_ccb->ccb_h,
@@ -549,7 +549,7 @@ ptdone(struct cam_periph *periph, union 
 		}
 
 		/*
-		 * Block out any asyncronous callbacks
+		 * Block out any asynchronous callbacks
 		 * while we touch the pending ccb list.
 		 */
 		LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);

Modified: stable/9/sys/dev/aic7xxx/aic7xxx.h
==============================================================================
--- stable/9/sys/dev/aic7xxx/aic7xxx.h	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/aic7xxx/aic7xxx.h	Wed Oct  9 19:04:48 2013	(r256219)
@@ -768,7 +768,7 @@ struct ahc_syncrate {
 #define	AHC_ULTRA2_XFER_PERIOD 0x0a
 
 /*
- * Indexes into our table of syncronous transfer rates.
+ * Indexes into our table of synchronous transfer rates.
  */
 #define AHC_SYNCRATE_DT		0
 #define AHC_SYNCRATE_ULTRA2	1

Modified: stable/9/sys/dev/cp/if_cp.c
==============================================================================
--- stable/9/sys/dev/cp/if_cp.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/cp/if_cp.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -1,7 +1,7 @@
 /*-
  * Cronyx-Tau-PCI adapter driver for FreeBSD.
  * Supports PPP/HDLC, Cisco/HDLC and FrameRelay protocol in synchronous mode,
- * and asyncronous channels with full modem control.
+ * and asynchronous channels with full modem control.
  * Keepalive protocol implemented in both Cisco and PPP modes.
  *
  * Copyright (C) 1999-2004 Cronyx Engineering.

Modified: stable/9/sys/dev/ctau/if_ct.c
==============================================================================
--- stable/9/sys/dev/ctau/if_ct.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/ctau/if_ct.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -1,7 +1,7 @@
 /*-
  * Cronyx-Tau adapter driver for FreeBSD.
  * Supports PPP/HDLC and Cisco/HDLC protocol in synchronous mode,
- * and asyncronous channels with full modem control.
+ * and asynchronous channels with full modem control.
  * Keepalive protocol implemented in both Cisco and PPP modes.
  *
  * Copyright (C) 1994-2002 Cronyx Engineering.

Modified: stable/9/sys/dev/cx/csigma.c
==============================================================================
--- stable/9/sys/dev/cx/csigma.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/cx/csigma.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -1168,7 +1168,7 @@ void cx_set_dtr (cx_chan_t *c, int on)
 
 	switch (c->num) {
 	default:
-		/* Channels 4..7 and 12..15 in syncronous mode
+		/* Channels 4..7 and 12..15 in synchronous mode
 		 * have no DTR signal. */
 		break;
 

Modified: stable/9/sys/dev/cx/if_cx.c
==============================================================================
--- stable/9/sys/dev/cx/if_cx.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/cx/if_cx.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -1,7 +1,7 @@
 /*-
  * Cronyx-Sigma adapter driver for FreeBSD.
  * Supports PPP/HDLC and Cisco/HDLC protocol in synchronous mode,
- * and asyncronous channels with full modem control.
+ * and asynchronous channels with full modem control.
  * Keepalive protocol implemented in both Cisco and PPP modes.
  *
  * Copyright (C) 1994-2002 Cronyx Engineering.

Modified: stable/9/sys/dev/hptmv/entry.c
==============================================================================
--- stable/9/sys/dev/hptmv/entry.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/hptmv/entry.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -914,8 +914,8 @@ hptmv_event_notify(MV_SATA_ADAPTER *pMvS
 				else
 				{
 
-					MV_ERROR("RR18xx: illigal value for param1(%d) at "
-							 "connect/disconect event, host=%d\n", param1,
+					MV_ERROR("RR18xx: illegal value for param1(%d) at "
+							 "connect/disconnect event, host=%d\n", param1,
 							 pMvSataAdapter->adapterId );
 
 				}
@@ -983,7 +983,7 @@ hptmv_allocate_edma_queues(IAL_ADAPTER_T
 	if ((pAdapter->responsesArrayBaseDmaAlignedAddr - pAdapter->responsesArrayBaseDmaAddr) != 
 		(pAdapter->responsesArrayBaseAlignedAddr - pAdapter->responsesArrayBaseAddr))
 	{
-		MV_ERROR("RR18xx[%d]: Error in Response Quueues Alignment\n",
+		MV_ERROR("RR18xx[%d]: Error in Response Queues Alignment\n",
 				 pAdapter->mvSataAdapter.adapterId);
 		contigfree(pAdapter->requestsArrayBaseAddr, REQUESTS_ARRAY_SIZE, M_DEVBUF);
 		contigfree(pAdapter->responsesArrayBaseAddr, RESPONSES_ARRAY_SIZE, M_DEVBUF);

Modified: stable/9/sys/dev/isci/scil/scif_sas_domain.c
==============================================================================
--- stable/9/sys/dev/isci/scil/scif_sas_domain.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/isci/scil/scif_sas_domain.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -637,7 +637,7 @@ void scif_sas_domain_terminate_requests(
       SCIF_SAS_REQUEST_T      * request = NULL;
 
       // Cycle through the fast list of IO requests.  Terminate each
-      // oustanding requests that matches the criteria supplied by the
+      // outstanding requests that matches the criteria supplied by the
       // caller.
       while (element != NULL)
       {
@@ -1275,7 +1275,7 @@ U8 scif_sas_domain_get_smp_request_count
    SCIC_TRANSPORT_PROTOCOL   protocol;
 
    // Cycle through the fast list of IO requests.  Terminate each
-   // oustanding requests that matches the criteria supplied by the
+   // outstanding requests that matches the criteria supplied by the
    // caller.
    while (element != NULL)
    {

Modified: stable/9/sys/dev/nsp/nsp.c
==============================================================================
--- stable/9/sys/dev/nsp/nsp.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/nsp/nsp.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -88,7 +88,7 @@ __FBSDID("$FreeBSD$");
  ***************************************************/
 /* DEVICE CONFIGURATION FLAGS (MINOR)
  *
- * 0x01   DISCONECT OFF
+ * 0x01   DISCONNECT OFF
  * 0x02   PARITY LINE OFF
  * 0x04   IDENTIFY MSG OFF ( = single lun)
  * 0x08   SYNC TRANSFER OFF

Modified: stable/9/sys/dev/sfxge/common/efx_mcdi.c
==============================================================================
--- stable/9/sys/dev/sfxge/common/efx_mcdi.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/sfxge/common/efx_mcdi.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -86,7 +86,7 @@ efx_mcdi_request_start(
 	/*
 	 * efx_mcdi_request_start() is naturally serialised against both
 	 * efx_mcdi_request_poll() and efx_mcdi_ev_cpl()/efx_mcdi_ev_death(),
-	 * by virtue of there only being one oustanding MCDI request.
+	 * by virtue of there only being one outstanding MCDI request.
 	 * Unfortunately, upper layers may also call efx_mcdi_request_abort()
 	 * at any time, to timeout a pending mcdi request, That request may
 	 * then subsequently complete, meaning efx_mcdi_ev_cpl() or
@@ -439,7 +439,7 @@ efx_mcdi_ev_death(
 	 * The MCDI request (if there is one) has been terminated, either
 	 * by a BADASSERT or REBOOT event.
 	 *
-	 * If there is an oustanding event-completed MCDI operation, then we
+	 * If there is an outstanding event-completed MCDI operation, then we
 	 * will never receive the completion event (because both MCDI
 	 * completions and BADASSERT events are sent to the same evq). So
 	 * complete this MCDI op.

Modified: stable/9/sys/dev/sn/if_sn.c
==============================================================================
--- stable/9/sys/dev/sn/if_sn.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/sn/if_sn.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -444,7 +444,7 @@ startagain:
 	/*
 	 * Wait a short amount of time to see if the allocation request
 	 * completes.  Otherwise, I enable the interrupt and wait for
-	 * completion asyncronously.
+	 * completion asynchronously.
 	 */
 
 	time_out = MEMORY_WAIT_TIME;

Modified: stable/9/sys/dev/stg/tmc18c30.c
==============================================================================
--- stable/9/sys/dev/stg/tmc18c30.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/dev/stg/tmc18c30.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -87,7 +87,7 @@ __FBSDID("$FreeBSD$");
  ***************************************************/
 /* DEVICE CONFIGURATION FLAGS (MINOR)
  *
- * 0x01   DISCONECT OFF
+ * 0x01   DISCONNECT OFF
  * 0x02   PARITY LINE OFF
  * 0x04   IDENTIFY MSG OFF ( = single lun)
  * 0x08   SYNC TRANSFER OFF

Modified: stable/9/sys/kern/uipc_usrreq.c
==============================================================================
--- stable/9/sys/kern/uipc_usrreq.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/kern/uipc_usrreq.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -1342,7 +1342,7 @@ unp_connect(struct socket *so, struct so
 		}
 
 		/*
-		 * The connecter's (client's) credentials are copied from its
+		 * The connector's (client's) credentials are copied from its
 		 * process structure at the time of connect() (which is now).
 		 */
 		cru2x(td->td_ucred, &unp3->unp_peercred);

Modified: stable/9/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
==============================================================================
--- stable/9/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -306,7 +306,7 @@ ng_l2cap_con_fail(ng_l2cap_con_p con, u_
 
 	/*
 	 * There still might be channels (in OPEN state?) that
-	 * did not submit any commands, so diconnect them
+	 * did not submit any commands, so disconnect them
 	 */
 
 	LIST_FOREACH(ch, &l2cap->chan_list, next)

Modified: stable/9/sys/ofed/drivers/net/mlx4/eq.c
==============================================================================
--- stable/9/sys/ofed/drivers/net/mlx4/eq.c	Wed Oct  9 19:04:40 2013	(r256218)
+++ stable/9/sys/ofed/drivers/net/mlx4/eq.c	Wed Oct  9 19:04:48 2013	(r256219)
@@ -705,7 +705,7 @@ int mlx4_test_interrupts(struct mlx4_dev
 		/* Temporary use polling for command completions */
 		mlx4_cmd_use_polling(dev);
 
-		/* Map the new eq to handle all asyncronous events */
+		/* Map the new eq to handle all asynchronous events */
 		err = mlx4_MAP_EQ(dev, MLX4_ASYNC_EVENT_MASK, 0,
 				  priv->eq_table.eq[i].eqn);
 		if (err) {


More information about the svn-src-stable-9 mailing list