git: f9af3151fad9 - main - Revert "ffs(3): Fix a typo in a sysctl description"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 05 Dec 2021 12:47:21 UTC
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=f9af3151fad9dc673d3710c4a50bf615545c0e6e commit f9af3151fad9dc673d3710c4a50bf615545c0e6e Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2021-12-05 12:45:47 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2021-12-05 12:45:47 +0000 Revert "ffs(3): Fix a typo in a sysctl description" It should be - s/contigous/contiguous/ not continuous Reported by: tuexen@ This reverts commit 42efe994ece337929b6f9937829f7970e620db9b. --- sys/ufs/ffs/ffs_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index 66771cdcc2ce..42708e3dce71 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -501,7 +501,7 @@ SYSCTL_INT(_vfs_ffs, OID_AUTO, dotrimcons, CTLFLAG_RWTUN, &dotrimcons, 0, static int maxclustersearch = 10; SYSCTL_INT(_vfs_ffs, OID_AUTO, maxclustersearch, CTLFLAG_RW, &maxclustersearch, -0, "max number of cylinder group to search for continuous blocks"); +0, "max number of cylinder group to search for contigous blocks"); #ifdef DIAGNOSTIC static int prtrealloc = 0;