svn commit: r363006 - stable/12/sys/kern

Konstantin Belousov kib at FreeBSD.org
Wed Jul 8 10:04:13 UTC 2020


Author: kib
Date: Wed Jul  8 10:04:12 2020
New Revision: 363006
URL: https://svnweb.freebsd.org/changeset/base/363006

Log:
  MFC r362948:
  Fix typo.

Modified:
  stable/12/sys/kern/vfs_vnops.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/kern/vfs_vnops.c
==============================================================================
--- stable/12/sys/kern/vfs_vnops.c	Wed Jul  8 09:04:20 2020	(r363005)
+++ stable/12/sys/kern/vfs_vnops.c	Wed Jul  8 10:04:12 2020	(r363006)
@@ -1447,7 +1447,7 @@ vn_stat(struct vnode *vp, struct stat *sb, struct ucre
 	 *   "a filesystem-specific preferred I/O block size for this 
 	 *    object.  In some filesystem types, this may vary from file
 	 *    to file"
-	 * Use miminum/default of PAGE_SIZE (e.g. for VCHR).
+	 * Use minimum/default of PAGE_SIZE (e.g. for VCHR).
 	 */
 
 	sb->st_blksize = max(PAGE_SIZE, vap->va_blocksize);


More information about the svn-src-all mailing list