diff options
Diffstat (limited to 'usr/src/uts')
| -rw-r--r-- | usr/src/uts/common/avs/ns/sdbc/dynmem_readme.txt | 2 | ||||
| -rw-r--r-- | usr/src/uts/common/fs/ctfs/ctfs_root.c | 2 | ||||
| -rw-r--r-- | usr/src/uts/common/io/fd.c | 2 | ||||
| -rw-r--r-- | usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c | 4 | ||||
| -rw-r--r-- | usr/src/uts/common/io/ksocket/ksocket.c | 2 | ||||
| -rw-r--r-- | usr/src/uts/common/sys/fs/ufs_lockfs.h | 4 | ||||
| -rw-r--r-- | usr/src/uts/common/vm/vpm.c | 2 | ||||
| -rw-r--r-- | usr/src/uts/intel/ia32/os/sysi86.c | 2 | ||||
| -rw-r--r-- | usr/src/uts/intel/io/agpgart/agpgart.c | 2 |
9 files changed, 10 insertions, 12 deletions
diff --git a/usr/src/uts/common/avs/ns/sdbc/dynmem_readme.txt b/usr/src/uts/common/avs/ns/sdbc/dynmem_readme.txt index 6ff1eee235..d5fba71d7d 100644 --- a/usr/src/uts/common/avs/ns/sdbc/dynmem_readme.txt +++ b/usr/src/uts/common/avs/ns/sdbc/dynmem_readme.txt @@ -48,7 +48,7 @@ in module sd_bcache.c. When a request is received for cache and system resources it is broken down and each piece catagorized both as an independent entity and as a member of a group with close neighbors. Cache resources comprise cache control entries (ccent), write control entries -(wctrl for FWC support) and sytem memory. The current allocation algorithim +(wctrl for FWC support) and system memory. The current allocation algorithim for ccent and wrctl remains the same. The memory allocation has been modified and falls into two general catagories - single page and multi-page allocations. diff --git a/usr/src/uts/common/fs/ctfs/ctfs_root.c b/usr/src/uts/common/fs/ctfs/ctfs_root.c index cf96908450..aa4d4a9102 100644 --- a/usr/src/uts/common/fs/ctfs/ctfs_root.c +++ b/usr/src/uts/common/fs/ctfs/ctfs_root.c @@ -53,7 +53,7 @@ * ctfs, the contract filesystem. * * Exposes the construct subsystem to userland. The structure of the - * filesytem is a public interface, but the behavior of the files is + * filesystem is a public interface, but the behavior of the files is * private and unstable. Contract consumers are expected to use * libcontract(3lib) to operate on ctfs file descriptors. * diff --git a/usr/src/uts/common/io/fd.c b/usr/src/uts/common/io/fd.c index e378bf75d5..76d123f969 100644 --- a/usr/src/uts/common/io/fd.c +++ b/usr/src/uts/common/io/fd.c @@ -600,7 +600,7 @@ fd_detach(dev_info_t *dip, ddi_detach_cmd_t cmd) * (We guess this by looking for a block open. Character * opens are fine.) This limits some of the usability of * suspend/resume, but it certainly avoids this - * potential filesytem corruption from pilot error. + * potential filesystem corruption from pilot error. * Given the decreasing popularity of floppy media, we * don't see this as much of a limitation. */ diff --git a/usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c b/usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c index 695d254d63..c5bf3b1535 100644 --- a/usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c +++ b/usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c @@ -743,9 +743,9 @@ ql_dump_pci_config(qlge_t *qlge) qlge->pci_cfg.pci_doorbell_mem_base_address_lower); ql_printf("\tpci_doorbell_mem_base_address_upper =0x%x.\n", qlge->pci_cfg.pci_doorbell_mem_base_address_upper); - ql_printf("\tSubsytem Vendor Id =0x%x.\n", + ql_printf("\tSubsystem Vendor Id =0x%x.\n", qlge->pci_cfg.sub_vendor_id); - ql_printf("\tSubsytem Id =0x%x.\n", + ql_printf("\tSubsystem Id =0x%x.\n", qlge->pci_cfg.sub_device_id); ql_printf("\tExpansion ROM Base Register =0x%x.\n", qlge->pci_cfg.expansion_rom); diff --git a/usr/src/uts/common/io/ksocket/ksocket.c b/usr/src/uts/common/io/ksocket/ksocket.c index 8944fcbff3..17ac19b612 100644 --- a/usr/src/uts/common/io/ksocket/ksocket.c +++ b/usr/src/uts/common/io/ksocket/ksocket.c @@ -68,7 +68,7 @@ ksocket_socket(ksocket_t *ksp, int domain, int type, int protocol, int flags, char *mod = NULL; /* - * Could be that root file sytem is not loaded or + * Could be that root file system is not loaded or * soconfig has not run yet. */ if (type == SOCK_STREAM && (domain == AF_INET || diff --git a/usr/src/uts/common/sys/fs/ufs_lockfs.h b/usr/src/uts/common/sys/fs/ufs_lockfs.h index a91334af32..6e2ef0aa9c 100644 --- a/usr/src/uts/common/sys/fs/ufs_lockfs.h +++ b/usr/src/uts/common/sys/fs/ufs_lockfs.h @@ -27,8 +27,6 @@ #ifndef _SYS_FS_UFS_LOCKFS_H #define _SYS_FS_UFS_LOCKFS_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <sys/lockfs.h> #ifdef __cplusplus @@ -55,7 +53,7 @@ extern "C" { * * ufs_vnodeops(es) that conflict with the above file system lock types * will get either suspended, or get a EAGAIN error, - * or get an EIO error if the file sytem is hard locked, + * or get an EIO error if the file system is hard locked, * or will block if the file system is error locked. * * There are exceptions. diff --git a/usr/src/uts/common/vm/vpm.c b/usr/src/uts/common/vm/vpm.c index db5fdeda85..f3d14613aa 100644 --- a/usr/src/uts/common/vm/vpm.c +++ b/usr/src/uts/common/vm/vpm.c @@ -871,7 +871,7 @@ vpm_map_pages( * If we did not find the page or if this page was not * in vpm cache(p_vpmref == 0), then let VOP_GETPAGE get * all the pages. - * We need to call VOP_GETPAGE so that filesytems can do some + * We need to call VOP_GETPAGE so that filesystems can do some * (un)necessary tracking for sequential access. */ diff --git a/usr/src/uts/intel/ia32/os/sysi86.c b/usr/src/uts/intel/ia32/os/sysi86.c index 308cdddf4f..7be9ec20fd 100644 --- a/usr/src/uts/intel/ia32/os/sysi86.c +++ b/usr/src/uts/intel/ia32/os/sysi86.c @@ -293,7 +293,7 @@ ssd_to_usd(struct ssd *ssd, user_desc_t *usd) /* * 64-bit code selectors are never allowed in the LDT. - * Reserved bit is always 0 on 32-bit sytems. + * Reserved bit is always 0 on 32-bit systems. */ #if defined(__amd64) usd->usd_long = 0; diff --git a/usr/src/uts/intel/io/agpgart/agpgart.c b/usr/src/uts/intel/io/agpgart/agpgart.c index 7df05184e3..64827d58a5 100644 --- a/usr/src/uts/intel/io/agpgart/agpgart.c +++ b/usr/src/uts/intel/io/agpgart/agpgart.c @@ -2321,7 +2321,7 @@ err3: * array and set up the agp aperture page to physical memory page * translation. * Arguments: - * type valid sytem arc types ARC_AMD64AGP, ARC_INTELAGP, + * type valid system arc types ARC_AMD64AGP, ARC_INTELAGP, * ARC_AMD64AGP * pfnarray allocated physical page frame number array * pg_offset agp aperture start page to be bound |
