svn commit: r311413 - stable/10/sys/cam/ctl

Alexander Motin mav at FreeBSD.org
Thu Jan 5 11:33:39 UTC 2017


Author: mav
Date: Thu Jan  5 11:33:38 2017
New Revision: 311413
URL: https://svnweb.freebsd.org/changeset/base/311413

Log:
  MFC r310275: Fix typo in function name.

Modified:
  stable/10/sys/cam/ctl/ctl_error.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/cam/ctl/ctl_error.c
==============================================================================
--- stable/10/sys/cam/ctl/ctl_error.c	Thu Jan  5 11:32:57 2017	(r311412)
+++ stable/10/sys/cam/ctl/ctl_error.c	Thu Jan  5 11:33:38 2017	(r311413)
@@ -366,7 +366,7 @@ ctl_set_ua(struct ctl_scsiio *ctsio, int
 }
 
 static void
-ctl_ua_to_acsq(struct ctl_lun *lun, ctl_ua_type ua_to_build, int *asc,
+ctl_ua_to_ascq(struct ctl_lun *lun, ctl_ua_type ua_to_build, int *asc,
     int *ascq, ctl_ua_type *ua_to_clear, uint8_t **info)
 {
 
@@ -492,7 +492,7 @@ ctl_build_qae(struct ctl_lun *lun, uint3
 	ua_to_build = (1 << (ffs(ua) - 1));
 	ua_to_clear = ua_to_build;
 	info = NULL;
-	ctl_ua_to_acsq(lun, ua_to_build, &asc, &ascq, &ua_to_clear, &info);
+	ctl_ua_to_ascq(lun, ua_to_build, &asc, &ascq, &ua_to_clear, &info);
 
 	resp[0] = SSD_KEY_UNIT_ATTENTION;
 	if (ua_to_build == ua)
@@ -537,7 +537,7 @@ ctl_build_ua(struct ctl_lun *lun, uint32
 	ua_to_build = (1 << (ffs(ua[i]) - 1));
 	ua_to_clear = ua_to_build;
 	info = NULL;
-	ctl_ua_to_acsq(lun, ua_to_build, &asc, &ascq, &ua_to_clear, &info);
+	ctl_ua_to_ascq(lun, ua_to_build, &asc, &ascq, &ua_to_clear, &info);
 
 	ctl_set_sense_data(sense, lun, sense_format, /*current_error*/ 1,
 	    /*sense_key*/ SSD_KEY_UNIT_ATTENTION, asc, ascq,


More information about the svn-src-all mailing list