Fix typo: s/unknow/unknown

This commit is contained in:
Kevin Lo 2012-10-09 06:15:16 +00:00
parent 3c9898d95c
commit 10d66948a8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=241369
3 changed files with 6 additions and 6 deletions

View File

@ -753,11 +753,11 @@ static void arcmsr_report_srb_state(struct AdapterControlBlock *acb, struct Comm
}
break;
default:
printf("arcmsr%d: scsi id=%d lun=%d isr got command error done,but got unknow DeviceStatus=0x%x \n"
printf("arcmsr%d: scsi id=%d lun=%d isr got command error done,but got unknown DeviceStatus=0x%x \n"
, acb->pci_unit, target, lun ,srb->arcmsr_cdb.DeviceStatus);
acb->devstate[target][lun]=ARECA_RAID_GONE;
srb->pccb->ccb_h.status |= CAM_UNCOR_PARITY;
/*unknow error or crc error just for retry*/
/*unknown error or crc error just for retry*/
arcmsr_srb_complete(srb, 1);
break;
}
@ -1789,7 +1789,7 @@ static void arcmsr_interrupt(struct AdapterControlBlock *acb)
break;
default:
printf("arcmsr%d: interrupt service,"
" unknow adapter type =%d\n", acb->pci_unit, acb->adapter_type);
" unknown adapter type =%d\n", acb->pci_unit, acb->adapter_type);
break;
}
}

View File

@ -832,7 +832,7 @@ ng_netflow_rcvdata (hook_p hook, item_p item)
goto loopend;
#endif
/*
* Any unknow header (new extension or IPv6/IPv4
* Any unknown header (new extension or IPv6/IPv4
* header for tunnels) ends loop.
*/
default:

View File

@ -315,10 +315,10 @@ static size_t pipesizemax8 = sizeof(struct dn_pipe_max8);
/* Indicate 'ipfw' version
* 1: from FreeBSD 7.2
* 0: from FreeBSD 8
* -1: unknow (for now is unused)
* -1: unknown (for now is unused)
*
* It is update when a IP_DUMMYNET_DEL or IP_DUMMYNET_CONFIGURE request arrives
* NOTE: if a IP_DUMMYNET_GET arrives and the 'ipfw' version is unknow,
* NOTE: if a IP_DUMMYNET_GET arrives and the 'ipfw' version is unknown,
* it is suppose to be the FreeBSD 8 version.
*/
static int is7 = 0;