FreeBSD Bugzilla – Attachment 210429 Details for
Bug 242768
[panic] Fatal trap 12: current process (nfsd: service)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
check for a non-NULL tvp returned by nfsvno_getvp()
lockcrash.patch (text/plain), 437 bytes, created by
Rick Macklem
on 2020-01-04 01:34:00 UTC
(
hide
)
Description:
check for a non-NULL tvp returned by nfsvno_getvp()
Filename:
MIME Type:
Creator:
Rick Macklem
Created:
2020-01-04 01:34:00 UTC
Size:
437 bytes
patch
obsolete
>--- fs/nfsserver/nfs_nfsdstate.c.sav 2020-01-03 13:20:12.691769000 -0800 >+++ fs/nfsserver/nfs_nfsdstate.c 2020-01-03 13:21:05.695731000 -0800 >@@ -1554,7 +1554,8 @@ nfsrv_freeallnfslocks(struct nfsstate *stp, vnode_t vp > tvp = NULL; > else if (vp == NULL && cansleep != 0) { > tvp = nfsvno_getvp(&lfp->lf_fh); >- NFSVOPUNLOCK(tvp, 0); >+ if (tvp != NULL) >+ NFSVOPUNLOCK(tvp, 0); > } else > tvp = vp; > gottvp = 1;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 242768
: 210429 |
210503