mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-29 02:22:43 +00:00
Fix bug in zphys offset calculation I introduced while retyping
original patch.
This commit is contained in:
parent
e29dea04cb
commit
64fbf83d6d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193802
@ -58,7 +58,7 @@
|
||||
* definition.
|
||||
*/
|
||||
#define LOCATION_ZID (2 * sizeof(void *))
|
||||
#define LOCATION_ZPHYS(zsize) ((zsize) - (2 * sizeof(void *) - sizeof(struct task)))
|
||||
#define LOCATION_ZPHYS(zsize) ((zsize) - (2 * sizeof(void *) + sizeof(struct task)))
|
||||
|
||||
int
|
||||
zfs_filestat(struct vnode *vp, struct filestat *fsp)
|
||||
|
Loading…
Reference in New Issue
Block a user