Displaying 17 results from an estimated 17 matches for "vgastat".
Did you mean:
vgastate
2006 Mar 16
0
[PATCH 3a/3] Add shadow VRAM
...* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
+#include <signal.h>
+#include <setjmp.h>
+#include <emmintrin.h>
+
#include "vl.h"
#include "vga_int.h"
@@ -149,6 +153,8 @@ static uint8_t expand4to8[16];
VGAState *vga_state;
int vga_io_memory;
+
+int sse2_ok = 1;
static uint32_t vga_ioport_read(void *opaque, uint32_t addr)
{
@@ -1340,6 +1346,80 @@ void vga_invalidate_scanlines(VGAState *
}
}
+extern inline int cmp_vram(VGAState *s, int offset, int n)
+{
+ long *vp, *sp;
+
+ if (s->vram_shad...
2006 Jul 17
0
(no subject)
...use qemu
dm die, this patch fixes it.
Signed-off-by: Xin Li <xin.b.li@intel.com>
diff -r ecb8ff1fcf1f tools/ioemu/hw/vga.c
--- a/tools/ioemu/hw/vga.c Fri Jul 14 18:53:27 2006 +0100
+++ b/tools/ioemu/hw/vga.c Mon Jul 17 22:35:54 2006 +0800
@@ -1392,7 +1392,8 @@ static void vga_draw_graphic(VGAState *s
static void vga_draw_graphic(VGAState *s, int full_update)
{
int y1, y, update, page_min, page_max, linesize, y_start,
double_scan, mask;
- int width, height, shift_control, line_offset, page0, page1,
bwidth;
+ int width, height, shift_control, line_offset, bwidth;
+ ram_addr_t...
2006 Jul 26
4
[PATCH] Add lost logic for VGA initialization
This patch adds lost logic for vga initialization. It was lost after
changing to new Qemu.
Signed-off-by : Kevin Tian <kevin.tian@intel.com>
Signed-off-by : Zhang Xiantao <xiantao.zhang@intel.com>
Thanks & Best Regards
-Xiantao
OTC,Intel Corporation
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
2014 May 16
2
Machine freeze on latest Linus kernel, seems related to nouveau
..._seq_dummy snd_seq_midi i2c_algo_bit snd_seq_oss ttm snd_seq_midi_event drm_kms_helper snd_seq drm i2c_core snd_rawmidi backlight snd_seq_device snd_hda_intel sr_mod ehci_pci snd_hda_controller uhci_hcd pcspkr ehci_hcd cdrom usbcore snd_hda_codec snd_pcm_oss snd_mixer_oss nvidiafb snd_pcm snd_timer vgastate evdev usb_common acpi_cpufreq loop fuse autofs4
May 16 08:30:27 brouette kernel: CPU: 3 PID: 31253 Comm: plugin-containe Tainted: P O 3.15.0-rc5 #1
May 16 08:30:27 brouette kernel: Hardware name: System manufacturer System Product Name/P6T SE, BIOS 0808 03/08/2010
May 16 08:30:27 bro...
2010 Sep 17
1
General protection fault
...e/index2/shared_cpu_map
Sep 17 15:26:18 box6 kernel: [ 1947.924056] CPU 1
Sep 17 15:26:18 box6 kernel: [ 1947.944445] Modules linked in: ocfs2
quota_tree ocfs2_dlmfs ocfs2_stack_o2cb ocfs2_dlm ocfs2_nodemanager
ocfs2_stackglue configfs drbd fbcon tileblit font bitblit softcursor aoe
joydev vga16fb vgastate shpchp ioatdma ixgbe mdio bonding lp parport
raid10 raid456 async_pq async_xor xor async_memcpy async_raid6_recov
megaraid_sas usbhid e1000e hid igb dca raid6_pq async_tx raid1 raid0
multipath linear [last unloaded: configfs]
Sep 17 15:26:18 box6 kernel: [ 1948.069302] Pid: 4979, comm: sh Not
tain...
2018 Sep 03
4
[Bug 107818] New: linux-4.18.5 every boot some drivers errors
...hermal uvcvideo
intel_powerclamp videobuf2_vmalloc asus_nb_wmi videobuf2_memops kvm_intel
videobuf2_v4l2 asus_wmi wmi_bmof mxm_wmi coretemp videodev kvm irqbypass
videobuf2_common nouveau mousedev btusb ttm btrtl btbcm sdhci_pci btintel
pcspkr idma64 bluetooth cqhci nvidiafb ecdh_generic r8822be(C) vgastate sdhci
fb_ddc mmc_core processor_thermal_device intel_lpss_pci intel_lpss
intel_soc_dts_iosf intel_pch_thermal i2c_hid int3403_thermal
int340x_thermal_zone wmi pinctrl_sunrisepoint pinctrl_intel int3400_thermal
acpi_thermal_rel asus_wireless efivarfs
[ 7.143825] CPU: 7 PID: 3391 Comm: X Tainted:...
2010 Sep 04
3
Wine 1.3.1 X_CreateWindow Error
I'm trying to run Total Annihilation but this error comes up:
wine totala.exe
fixme:system:SystemParametersInfoW Unimplemented action: 94 (SPI_GETMOUSETRAILS)
fixme:system:SystemParametersInfoW Unimplemented action: 93 (SPI_SETMOUSETRAILS)
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 1 (X_CreateWindow)
Serial number of failed
2006 Jun 02
1
Re: [Xen-changelog] [xen-unstable] [IA64][HVM] Enable CGA acceleration for VTI.
...lerate;
>
> /* Compute the memory access functions */
> diff -r 639ad22eb7c8 -r e67432187b88 tools/ioemu/hw/vga.c
> --- a/tools/ioemu/hw/vga.c Fri Jun 02 09:15:51 2006 +0100
> +++ b/tools/ioemu/hw/vga.c Fri Jun 02 09:20:58 2006 +0100
> @@ -1995,6 +1995,7 @@ void vga_common_init(VGAState *s, Displa
> s->get_resolution = vga_get_resolution;
> /* XXX: currently needed for display */
> vga_state = s;
> + vga_bios_init(s);
> }
>
>
> @@ -2082,7 +2083,6 @@ int vga_initialize(PCIBus *bus, DisplayS
> #endif
> }
>
> -...
2005 Jul 30
0
fb0 - conflict?
...nit_module+0x56/0x5a [fbcon]
Jul 29 01:31:37 loki kernel: [<c012b5ca>] sys_init_module+0xf1/0x1e9
Jul 29 01:31:37 loki kernel: [<c0108c10>] syscall_call+0x7/0xb
Jul 29 01:31:37 loki kernel: PREEMPT
Jul 29 01:31:37 loki kernel: Modules linked in: fbcon font bitblit
vga16fb cfbcopyarea vgastate cfbimgblt cfbfillrect usbserial usbhid
usbkbd ehci_hcd ohci_hcd usbcore sata_sil libata scsi_mod raid1 md unix
Jul 29 01:31:37 loki kernel: CPU: 0
Jul 29 01:31:37 loki kernel: EIP: 0061:[<c48c9dd3>] Not tainted VLI
Jul 29 01:31:37 loki kernel: EFLAGS: 00010202 (2.6.11.10-xen0)
Ju...
2006 Jan 23
0
Oops
...ia w83627hf eeprom i2c_sensor i2c_isa i2c_viapro
i2c_core rtc psmouse mousedev parport_pc lp parport sd_mod md ext3 jbd
mbcache thermal processor fan ide_cd cdrom usb_storage scsi_mod
ehci_hcd uhci_hcd tg3 pdc202xx_new ide_disk ide_generic via82cxxx
ide_core unix vesafb capability commoncap vga16fb vgastate softcursor
cfbimgblt cfbfillrect cfbcopyarea fbcon tileblit font bitblit Jan 23
03:08:22 infinity kernel: [24686.841128] Pid: 3318, comm: kjournald
Tainted: P 2.6.12-9-amd64-k8-smp Jan 23 03:08:22 infinity kernel:
[24686.841132] RIP: 0010:[_end+130728930/2132406272] <ffffffff8810d3e2>
{...
2008 Aug 24
1
domU lenny not working: kernel BUG at lib/radix-tree.c:474!
...ler/exit/always_halt=true -- quiet"
Started domain DebTest1
[ 0.181720] i8042.c: No controller found.
[ 1.613628] ------------[ cut here ]------------
[ 1.613638] kernel BUG at lib/radix-tree.c:474!
[ 1.613644] invalid opcode: 0000 [#1] SMP
[ 1.613649] Modules linked in: vga16fb vgastate thermal_sys xen_netfront
[ 1.613658]
[ 1.613662] Pid: 778, comm: bterm Tainted: G W
(2.6.26-1-686-bigmem #1)
[ 1.613669] EIP: 0061:[<c01e9a3d>] EFLAGS: 00010002 CPU: 0
[ 1.613675] EIP is at radix_tree_tag_set+0x1b/0x88
[ 1.613680] EAX: ce42bf30 EBX: 00000000 ECX: 000000...
2014 May 17
0
Machine freeze on latest Linus kernel, seems related to nouveau
...k snd_hda_codec_generic
wmi snd_ca0106 video i2c_algo_bit snd_ac97_codec ac97_bus
snd_seq_dummy snd_seq_midi snd_seq_oss ttm snd_seq_midi_event
drm_kms_helper snd_seq drm i2c_core backlight snd_rawmidi
snd_hda_intel snd_hda_codec snd_seq_device sr_mod snd_pcm_oss pcspkr
cdrom nvidiafb snd_mixer_oss vgastate snd_pcm snd_timer ehci_pci
uhci_hcd ehci_hcd usbcore evdev usb_common acpi_cpufreq loop fuse
autofs4
May 17 20:01:36 brouette kernel: CPU: 1 PID: 12671 Comm:
plugin-containe Tainted: P O 3.14.4 #1
May 17 20:01:36 brouette kernel: Hardware name: System manufacturer
System Product Name/P6T...
2010 Dec 15
2
loss of connection
My log says suddenly:
Dec 14 02:35:16 hp1 kernel: [1492482.232822] o2net: no longer connected to node hp2 (num 1) at 192.168.1.2:7777
Dec 14 02:35:18 hp1 kernel: [1492483.960150] BUG: soft lockup - CPU#1 stuck for 61s! [kvm:32398]
I have no idea what happens here and why - but the result are a lot of problems with virtual machines.
Viele Gr??e
Andreas Rittershofer
--
Hier k?nnte keine
2007 Apr 27
0
Problems with Digium TE110P
...19968 13
piix 12420 1
generic 5892 0
thermal 14728 0
processor 27080 1 thermal
fan 5764 0
capability 5896 0
commoncap 8192 1 capability
vga16fb 14856 1
vgastate 11136 1 vga16fb
fbcon 44448 70
tileblit 3712 1 fbcon
font 9216 1 fbcon
bitblit 7424 1 fbcon
softcursor 3200 1 bitblit
root@paggo-asterisk01:~# more /etc/zaptel.conf | egrep -v '^#'
span=1,...
2014 May 17
1
Machine freeze on latest Linus kernel, seems related to nouveau
...gt; wmi snd_ca0106 video i2c_algo_bit snd_ac97_codec ac97_bus
> snd_seq_dummy snd_seq_midi snd_seq_oss ttm snd_seq_midi_event
> drm_kms_helper snd_seq drm i2c_core backlight snd_rawmidi
> snd_hda_intel snd_hda_codec snd_seq_device sr_mod snd_pcm_oss pcspkr
> cdrom nvidiafb snd_mixer_oss vgastate snd_pcm snd_timer ehci_pci
> uhci_hcd ehci_hcd usbcore evdev usb_common acpi_cpufreq loop fuse
> autofs4
> May 17 20:01:36 brouette kernel: CPU: 1 PID: 12671 Comm:
> plugin-containe Tainted: P O 3.14.4 #1
> May 17 20:01:36 brouette kernel: Hardware name: System manufacture...
2004 Mar 05
2
PROBLEM: log abort over RAID5
...37228 1 - Live 0xf8cf4000
lp 11844 0 - Live 0xf8ca9000
parport 45608 2 parport_pc,lp, Live 0xf8ce7000 ext2 75528 3 - Live
0xf8cd3000
dm_mod 42304 8 - Live 0xf8c66000
raid5 23392 1 - Live 0xf8c06000
xor 15848 1 raid5, Live 0xf8b40000
md 48680 2 raid5, Live 0xf8caf000
i810fb 33088 0 - Live 0xf8bfc000
vgastate 10272 1 i810fb, Live 0xf8b91000 e100 65448 0 - Live 0xf8c55000
ntfs 92044 0 - Live 0xf8c3d000
cifs 178380 0 - Live 0xf8c72000
autofs4 17344 0 - Live 0xf8bdc000
smbfs 70424 0 - Live 0xf8c2a000
udf 105188 0 - Live 0xf8c0f000
vfat 16512 0 - Live 0xf8bd6000
msdos 11424 0 - Live 0xf8b8d000
fat 48064 2...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...invalidate = 1;
/* Standard VGA initial text mode dimensions */
- curses_resize(ds, 80, 25);
+ curses_resize(ds);
}
diff --git a/hw/cirrus_vga.c b/hw/cirrus_vga.c
--- a/hw/cirrus_vga.c
+++ b/hw/cirrus_vga.c
@@ -794,26 +794,9 @@
static int cirrus_bitblt_videotovideo_copy(CirrusVGAState * s)
{
- if (s->ds->dpy_copy) {
- cirrus_do_copy(s, s->cirrus_blt_dstaddr - s->start_addr,
- s->cirrus_blt_srcaddr - s->start_addr,
- s->cirrus_blt_width, s->cirrus_blt_height);
- } else {
-
- if (BLTUNSAFE(s))
- return 0;
-
- (*s->cirrus...