git: 4943c24be3de - stable/13 - Fix typo in comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 16 Oct 2021 13:02:49 UTC
The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=4943c24be3de1fe66c68e96a888fb5673439166c commit 4943c24be3de1fe66c68e96a888fb5673439166c Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2021-10-14 20:03:36 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2021-10-15 20:39:08 +0000 Fix typo in comment (cherry picked from commit 86929782cfab2664010a31979e9e3c0626721ebb) --- sys/sys/proc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 67dc32dbaa03..b647cb1c33ef 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -305,7 +305,7 @@ struct thread { struct osd td_osd; /* (k) Object specific data. */ struct vm_map_entry *td_map_def_user; /* (k) Deferred entries. */ pid_t td_dbg_forked; /* (c) Child pid for debugger. */ - struct vnode *td_vp_reserved;/* (k) Prealloated vnode. */ + struct vnode *td_vp_reserved;/* (k) Preallocated vnode. */ u_int td_no_sleeping; /* (k) Sleeping disabled count. */ void *td_su; /* (k) FFS SU private */ sbintime_t td_sleeptimo; /* (t) Sleep timeout. */