git: ee42b38ca436 - stable/13 - kern_lockf.c: fix typo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 06 Jul 2023 06:57:44 UTC
The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=ee42b38ca4364fdc992d2f2d395a9d36e5222630 commit ee42b38ca4364fdc992d2f2d395a9d36e5222630 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2023-07-04 22:23:57 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2023-07-06 06:56:57 +0000 kern_lockf.c: fix typo (cherry picked from commit 658e7620672f8eb650695992b4a73e004c5f101b) --- sys/kern/kern_lockf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/kern_lockf.c b/sys/kern/kern_lockf.c index 52c603949bdc..2bd5b24014a0 100644 --- a/sys/kern/kern_lockf.c +++ b/sys/kern/kern_lockf.c @@ -195,7 +195,7 @@ static void lf_print_owner(struct lock_owner *); struct lock_owner { LIST_ENTRY(lock_owner) lo_link; /* (l) hash chain */ int lo_refs; /* (l) Number of locks referring to this */ - int lo_flags; /* (c) Flags passwd to lf_advlock */ + int lo_flags; /* (c) Flags passed to lf_advlock */ caddr_t lo_id; /* (c) Id value passed to lf_advlock */ pid_t lo_pid; /* (c) Process Id of the lock owner */ int lo_sysid; /* (c) System Id of the lock owner */