svn commit: r326153 - head/sys/amd64/vmm/amd

Andriy Gapon avg at FreeBSD.org
Fri Nov 24 11:25:08 UTC 2017


Author: avg
Date: Fri Nov 24 11:25:06 2017
New Revision: 326153
URL: https://svnweb.freebsd.org/changeset/base/326153

Log:
  amd-vi: fix up r326152, the new width requires a wider type
  
  This is my brain-o from extending the width at the last moment.

Modified:
  head/sys/amd64/vmm/amd/amdvi_priv.h

Modified: head/sys/amd64/vmm/amd/amdvi_priv.h
==============================================================================
--- head/sys/amd64/vmm/amd/amdvi_priv.h	Fri Nov 24 11:20:10 2017	(r326152)
+++ head/sys/amd64/vmm/amd/amdvi_priv.h	Fri Nov 24 11:25:06 2017	(r326153)
@@ -230,7 +230,7 @@ struct amdvi_ctrl {
 	uint64_t :45;
 	uint32_t evt_tail:19;
 	uint64_t :45;
-	uint8_t	 status:19;
+	uint32_t status:19;
 	uint64_t :45;
 	uint64_t pad2;
 	uint8_t  :4;


More information about the svn-src-head mailing list