|
1 |
| ---- VirtualBox-5.0.17-105882/src/VBox/Additions/linux/drm/vbox_mode.c.orig 2016-03-09 03:07:13.392279611 +0000 |
2 |
| -+++ VirtualBox-5.0.17-105882/src/VBox/Additions/linux/drm/vbox_mode.c 2016-03-09 03:08:22.875010971 +0000 |
3 |
| -@@ -401,7 +401,7 @@ static struct drm_encoder *vbox_encoder_ |
4 |
| - return NULL; |
5 |
| - |
6 |
| - drm_encoder_init(dev, &vbox_encoder->base, &vbox_enc_funcs, |
7 |
| -- DRM_MODE_ENCODER_DAC); |
8 |
| -+ DRM_MODE_ENCODER_DAC, NULL); |
9 |
| - drm_encoder_helper_add(&vbox_encoder->base, &vbox_enc_helper_funcs); |
10 |
| - |
11 |
| - vbox_encoder->base.possible_crtcs = 1 << i; |
12 | 1 | --- VirtualBox-5.0.17-105882/src/VBox/VMM/VMMR3/DBGFR3Trace.cpp.orig 2016-03-08 22:52:14.716735644 +0000
|
13 | 2 | +++ VirtualBox-5.0.17-105882/src/VBox/VMM/VMMR3/DBGFR3Trace.cpp 2016-03-08 22:53:19.923458002 +0000
|
14 | 3 | @@ -122,7 +122,7 @@ static int dbgfR3TraceEnable(PVM pVM, ui
|
|
40 | 29 |
|
41 | 30 | /* next */
|
42 | 31 | pSect++;
|
43 |
| ---- VirtualBox-5.0.16/src/VBox/Disassembler/DisasmCore.cpp 2016-03-04 19:28:26.000000000 +0000 |
44 |
| -+++ VirtualBox-5.0.17-105882/src/VBox/Disassembler/DisasmCore.cpp 2016-03-08 17:25:32.806645217 +0000 |
45 |
| -@@ -2532,7 +2532,8 @@ static size_t ParseVex3b(size_t offInstr |
46 |
| - uint8_t implOpcode = (byte1 & 0x1f); |
47 |
| - |
48 |
| - // REX.RXB |
49 |
| -- if (pDis->uCpuMode == DISCPUMODE_64BIT && ~(byte1 & 0xe0)) |
50 |
| -+ /** @todo Check this! was weird: ~(byte1 & 0xe0) */ |
51 |
| -+ if (pDis->uCpuMode == DISCPUMODE_64BIT && !(byte1 & 0xe0)) |
52 |
| - pDis->fRexPrefix |= (byte1 >> 5) ^ 7; |
53 |
| - |
54 |
| - // VEX.W |
0 commit comments