diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-05 00:27:03 +0000 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-05 00:27:03 +0000 |
commit | ac875d0caffd12074e0a7eedac1cadbf204a847a (patch) | |
tree | b52bf7e189b308ae6e65cb9f51b694bb4dc7f985 /sys/fs/tmpfs.c | |
parent | 23a8e1b78063c0276d987e835434700267b9c8f8 (diff) |
kernel: tmpfs: Do not NULL np->data during reclaim
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/fs/tmpfs.c')
-rw-r--r-- | sys/fs/tmpfs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/fs/tmpfs.c b/sys/fs/tmpfs.c index a6e40e1..21dd7b5 100644 --- a/sys/fs/tmpfs.c +++ b/sys/fs/tmpfs.c @@ -369,7 +369,6 @@ tmpfs_reclaim(struct vnode *vp) } np->vp = NULL; - vp->data = NULL; return 0; } |