Author: jhb
Date: Wed Aug 26 21:41:14 2020
New Revision: 364843
URL: https://svnweb.freebsd.org/changeset/base/364843
Log:
MFC 361220: Correct the order of arguments to copyin() for Q_SETQUOTA.
Modified:
stable/11/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c
Directory Properties:
stable/11/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/12/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/11/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c
==============================================================================
--- stable/11/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c
Wed Aug 26 21:35:28 2020 (r364842)
+++ stable/11/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c
Wed Aug 26 21:41:14 2020 (r364843)
@@ -264,7 +264,7 @@ zfs_quotactl(vfs_t *vfsp, int cmds, uid_t id, void *ar
vfs_unbusy(vfsp);
break;
case Q_SETQUOTA:
- error = copyin(&dqblk, arg, sizeof(dqblk));
+ error = copyin(arg, &dqblk, sizeof(dqblk));
if (error == 0)
error = zfs_set_userquota(zfsvfs, quota_type,
"", id,
dbtob(dqblk.dqb_bhardlimit));
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"