Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Mar 2021 00:26:14 GMT
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: bff56d9cff25 - stable/12 - Fix diroffdiroff, probably copy/paste bug.
Message-ID:  <202103070026.1270QET5090423@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by mav:

URL: https://cgit.FreeBSD.org/src/commit/?id=bff56d9cff25231d6f05a9d6e40b43838da821db

commit bff56d9cff25231d6f05a9d6e40b43838da821db
Author:     Alexander Motin <mav@FreeBSD.org>
AuthorDate: 2021-02-28 14:07:13 +0000
Commit:     Alexander Motin <mav@FreeBSD.org>
CommitDate: 2021-03-07 00:26:08 +0000

    Fix diroffdiroff, probably copy/paste bug.
    
    Too long name looks bad in `vmstat -m`.
    
    MFC after:      1 week
    
    (cherry picked from commit d01032736cf067d63e66d6428ffc08e47652600f)
---
 sys/fs/nfs/nfs_commonport.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/fs/nfs/nfs_commonport.c b/sys/fs/nfs/nfs_commonport.c
index 1a1e64cd823b..214ad51f759d 100644
--- a/sys/fs/nfs/nfs_commonport.c
+++ b/sys/fs/nfs/nfs_commonport.c
@@ -119,7 +119,7 @@ MALLOC_DEFINE(M_NEWNFSCLLOCKOWNER, "NFSCL lckown", "NFSCL Lock Owner");
 MALLOC_DEFINE(M_NEWNFSCLLOCK, "NFSCL lck", "NFSCL Lock");
 MALLOC_DEFINE(M_NEWNFSV4NODE, "NEWNFSnode", "NFS vnode");
 MALLOC_DEFINE(M_NEWNFSDIRECTIO, "NEWdirectio", "NFS Direct IO buffer");
-MALLOC_DEFINE(M_NEWNFSDIROFF, "NFSCL diroffdiroff",
+MALLOC_DEFINE(M_NEWNFSDIROFF, "NFSCL diroff",
     "NFS directory offset data");
 MALLOC_DEFINE(M_NEWNFSDROLLBACK, "NFSD rollback",
     "NFS local lock rollback");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103070026.1270QET5090423>