We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Occasionally, zfs_write appears to work but does not actually store any data on disk. export/import will sometimes fix the issue.
I am wondering if it is related to that we do not have update_pages(), as used here;
update_pages()
ASSERT(tx_bytes <= uio_resid(uio)); uioskip(uio, tx_bytes); } if (tx_bytes && vn_has_cached_data(vp)) { printf("we should add update_pages()\n"); //update_pages(vp, woff, tx_bytes, zfsvfs->z_os, // zp->z_id, uio->uio_segflg, tx); }
The FreeBSD version looks like; http://fxr.watson.org/fxr/source/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c#L441
The Solaris version looks like; http://fxr.watson.org/fxr/source/common/fs/zfs/zfs_vnops.c?v=OPENSOLARIS#L355
I am unsure what the OSX kernel version would look like.
The text was updated successfully, but these errors were encountered:
91442ee
Sorry, something went wrong.
No branches or pull requests
Occasionally, zfs_write appears to work but does not actually store any data on disk. export/import will sometimes fix the issue.
I am wondering if it is related to that we do not have
update_pages()
, as used here;The FreeBSD version looks like;
http://fxr.watson.org/fxr/source/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c#L441
The Solaris version looks like;
http://fxr.watson.org/fxr/source/common/fs/zfs/zfs_vnops.c?v=OPENSOLARIS#L355
I am unsure what the OSX kernel version would look like.
The text was updated successfully, but these errors were encountered: