diff for duplicates of <1565940990109.1573@bt.com> diff --git a/a/2.bin b/a/2.bin deleted file mode 100644 index a6bbcb4..0000000 --- a/a/2.bin +++ /dev/null @@ -1,364 +0,0 @@ -<html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -<style type="text/css" style="display:none"><!-- P { margin-top: 0px; margin-bottom: 0px; } .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left-width: 2px; border-left-style: solid; border-left-color: rgb(128, 0, 0); }--></style> -</head> -<body dir="ltr" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;"> -<p></p> -<div style="color: rgb(33, 33, 33);"><font size="2"><span style="font-size:10pt;"> -<div class="PlainText"> -<div><span style="font-size: 10pt;">Preparation for replacing device_endian with MemOp.</span><br> -</div> -<div><br> -</div> -<div>Device realizing code with MemorRegionOps endianness as</div> -<div>DEVICE_NATIVE_ENDIAN is not common code.</div> -<div><br> -</div> -<div>Corrected devices were identified by making the declaration of</div> -<div>DEVICE_NATIVE_ENDIAN conditional upon NEED_CPU_H and then listing</div> -<div>what failed to compile.</div> -<div><br> -</div> -<div>Signed-off-by: Tony Nguyen <tony.nguyen@bt.com></div> -<div>---</div> -<div> hw/audio/Makefile.objs | 3 ++-</div> -<div> hw/block/Makefile.objs | 6 +++---</div> -<div> hw/char/Makefile.objs | 4 ++--</div> -<div> hw/core/Makefile.objs | 2 +-</div> -<div> hw/display/Makefile.objs | 6 +++---</div> -<div> hw/dma/Makefile.objs | 6 +++---</div> -<div> hw/gpio/Makefile.objs | 2 +-</div> -<div> hw/i2c/Makefile.objs | 2 +-</div> -<div> hw/input/Makefile.objs | 2 +-</div> -<div> hw/intc/Makefile.objs | 6 +++---</div> -<div> hw/ipack/Makefile.objs | 2 +-</div> -<div> hw/misc/Makefile.objs | 10 +++++-----</div> -<div> hw/net/Makefile.objs | 2 +-</div> -<div> hw/pci-host/Makefile.objs | 2 +-</div> -<div> hw/scsi/Makefile.objs | 2 +-</div> -<div> hw/ssi/Makefile.objs | 2 +-</div> -<div> hw/timer/Makefile.objs | 6 +++---</div> -<div> hw/virtio/Makefile.objs | 2 +-</div> -<div> 18 files changed, 34 insertions(+), 33 deletions(-)</div> -<div><br> -</div> -<div>diff --git a/hw/audio/Makefile.objs b/hw/audio/Makefile.objs</div> -<div>index 63db383..13133b4 100644</div> -<div>--- a/hw/audio/Makefile.objs</div> -<div>+++ b/hw/audio/Makefile.objs</div> -<div>@@ -5,7 +5,8 @@ common-obj-$(CONFIG_AC97) += ac97.o</div> -<div> common-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o</div> -<div> common-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o</div> -<div> common-obj-$(CONFIG_CS4231A) += cs4231a.o</div> -<div>-common-obj-$(CONFIG_HDA) += intel-hda.o hda-codec.o</div> -<div>+common-obj-$(CONFIG_HDA) += hda-codec.o</div> -<div>+obj-$(CONFIG_HDA) += intel-hda.o</div> -<div> </div> -<div> common-obj-$(CONFIG_PCSPK) += pcspk.o</div> -<div> common-obj-$(CONFIG_WM8750) += wm8750.o</div> -<div>diff --git a/hw/block/Makefile.objs b/hw/block/Makefile.objs</div> -<div>index f5f643f..04ed4d7 100644</div> -<div>--- a/hw/block/Makefile.objs</div> -<div>+++ b/hw/block/Makefile.objs</div> -<div>@@ -1,9 +1,9 @@</div> -<div> common-obj-y += block.o cdrom.o hd-geometry.o</div> -<div>-common-obj-$(CONFIG_FDC) += fdc.o</div> -<div>+obj-$(CONFIG_FDC) += fdc.o</div> -<div> common-obj-$(CONFIG_SSI_M25P80) += m25p80.o</div> -<div> common-obj-$(CONFIG_NAND) += nand.o</div> -<div>-common-obj-$(CONFIG_PFLASH_CFI01) += pflash_cfi01.o</div> -<div>-common-obj-$(CONFIG_PFLASH_CFI02) += pflash_cfi02.o</div> -<div>+obj-$(CONFIG_PFLASH_CFI01) += pflash_cfi01.o</div> -<div>+obj-$(CONFIG_PFLASH_CFI02) += pflash_cfi02.o</div> -<div> common-obj-$(CONFIG_XEN) += xen-block.o</div> -<div> common-obj-$(CONFIG_ECC) += ecc.o</div> -<div> common-obj-$(CONFIG_ONENAND) += onenand.o</div> -<div>diff --git a/hw/char/Makefile.objs b/hw/char/Makefile.objs</div> -<div>index 02d8a66..215c02b 100644</div> -<div>--- a/hw/char/Makefile.objs</div> -<div>+++ b/hw/char/Makefile.objs</div> -<div>@@ -1,7 +1,6 @@</div> -<div> common-obj-$(CONFIG_IPACK) += ipoctal232.o</div> -<div> common-obj-$(CONFIG_ESCC) += escc.o</div> -<div> common-obj-$(CONFIG_NRF51_SOC) += nrf51_uart.o</div> -<div>-common-obj-$(CONFIG_PARALLEL) += parallel.o</div> -<div> common-obj-$(CONFIG_ISA_BUS) += parallel-isa.o</div> -<div> common-obj-$(CONFIG_PL011) += pl011.o</div> -<div> common-obj-$(CONFIG_SERIAL) += serial.o</div> -<div>@@ -9,7 +8,6 @@ common-obj-$(CONFIG_SERIAL_ISA) += serial-isa.o</div> -<div> common-obj-$(CONFIG_SERIAL_PCI) += serial-pci.o</div> -<div> common-obj-$(CONFIG_SERIAL_PCI_MULTI) += serial-pci-multi.o</div> -<div> common-obj-$(CONFIG_VIRTIO_SERIAL) += virtio-console.o</div> -<div>-common-obj-$(CONFIG_XILINX) += xilinx_uartlite.o</div> -<div> common-obj-$(CONFIG_XEN) += xen_console.o</div> -<div> common-obj-$(CONFIG_CADENCE) += cadence_uart.o</div> -<div> </div> -<div>@@ -21,6 +19,8 @@ obj-$(CONFIG_PSERIES) += spapr_vty.o</div> -<div> obj-$(CONFIG_DIGIC) += digic-uart.o</div> -<div> obj-$(CONFIG_STM32F2XX_USART) += stm32f2xx_usart.o</div> -<div> obj-$(CONFIG_RASPI) += bcm2835_aux.o</div> -<div>+obj-$(CONFIG_PARALLEL) += parallel.o</div> -<div>+obj-$(CONFIG_XILINX) += xilinx_uartlite.o</div> -<div> </div> -<div> common-obj-$(CONFIG_CMSDK_APB_UART) += cmsdk-apb-uart.o</div> -<div> common-obj-$(CONFIG_ETRAXFS) += etraxfs_ser.o</div> -<div>diff --git a/hw/core/Makefile.objs b/hw/core/Makefile.objs</div> -<div>index f8481d9..1b336c6 100644</div> -<div>--- a/hw/core/Makefile.objs</div> -<div>+++ b/hw/core/Makefile.objs</div> -<div>@@ -9,7 +9,7 @@ common-obj-y += hotplug.o</div> -<div> common-obj-$(CONFIG_SOFTMMU) += nmi.o</div> -<div> common-obj-$(CONFIG_SOFTMMU) += vm-change-state-handler.o</div> -<div> </div> -<div>-common-obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o</div> -<div>+obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o</div> -<div> common-obj-$(CONFIG_XILINX_AXI) += stream.o</div> -<div> common-obj-$(CONFIG_PTIMER) += ptimer.o</div> -<div> common-obj-$(CONFIG_SOFTMMU) += sysbus.o</div> -<div>diff --git a/hw/display/Makefile.objs b/hw/display/Makefile.objs</div> -<div>index a64998f..facc1d4 100644</div> -<div>--- a/hw/display/Makefile.objs</div> -<div>+++ b/hw/display/Makefile.objs</div> -<div>@@ -8,7 +8,7 @@ common-obj-$(CONFIG_ADS7846) += ads7846.o</div> -<div> common-obj-$(CONFIG_VGA_CIRRUS) += cirrus_vga.o</div> -<div> common-obj-$(call land,$(CONFIG_VGA_CIRRUS),$(CONFIG_VGA_ISA))+=cirrus_vga_isa.o</div> -<div> common-obj-$(CONFIG_G364FB) += g364fb.o</div> -<div>-common-obj-$(CONFIG_JAZZ_LED) += jazz_led.o</div> -<div>+obj-$(CONFIG_JAZZ_LED) += jazz_led.o</div> -<div> common-obj-$(CONFIG_PL110) += pl110.o</div> -<div> common-obj-$(CONFIG_SII9022) += sii9022.o</div> -<div> common-obj-$(CONFIG_SSD0303) += ssd0303.o</div> -<div>@@ -17,12 +17,12 @@ common-obj-$(CONFIG_XEN) += xenfb.o</div> -<div> </div> -<div> common-obj-$(CONFIG_VGA_PCI) += vga-pci.o</div> -<div> common-obj-$(CONFIG_VGA_ISA) += vga-isa.o</div> -<div>-common-obj-$(CONFIG_VGA_ISA_MM) += vga-isa-mm.o</div> -<div>+obj-$(CONFIG_VGA_ISA_MM) += vga-isa-mm.o</div> -<div> common-obj-$(CONFIG_VMWARE_VGA) += vmware_vga.o</div> -<div> common-obj-$(CONFIG_BOCHS_DISPLAY) += bochs-display.o</div> -<div> </div> -<div> common-obj-$(CONFIG_BLIZZARD) += blizzard.o</div> -<div>-common-obj-$(CONFIG_EXYNOS4) += exynos4210_fimd.o</div> -<div>+obj-$(CONFIG_EXYNOS4) += exynos4210_fimd.o</div> -<div> common-obj-$(CONFIG_FRAMEBUFFER) += framebuffer.o</div> -<div> obj-$(CONFIG_MILKYMIST) += milkymist-vgafb.o</div> -<div> common-obj-$(CONFIG_ZAURUS) += tc6393xb.o</div> -<div>diff --git a/hw/dma/Makefile.objs b/hw/dma/Makefile.objs</div> -<div>index 8b39f9c..fff43e0 100644</div> -<div>--- a/hw/dma/Makefile.objs</div> -<div>+++ b/hw/dma/Makefile.objs</div> -<div>@@ -1,10 +1,10 @@</div> -<div> common-obj-$(CONFIG_PUV3) += puv3_dma.o</div> -<div>-common-obj-$(CONFIG_RC4030) += rc4030.o</div> -<div>+obj-$(CONFIG_RC4030) += rc4030.o</div> -<div> common-obj-$(CONFIG_PL080) += pl080.o</div> -<div> common-obj-$(CONFIG_PL330) += pl330.o</div> -<div> common-obj-$(CONFIG_I82374) += i82374.o</div> -<div>-common-obj-$(CONFIG_I8257) += i8257.o</div> -<div>-common-obj-$(CONFIG_XILINX_AXI) += xilinx_axidma.o</div> -<div>+obj-$(CONFIG_I8257) += i8257.o</div> -<div>+obj-$(CONFIG_XILINX_AXI) += xilinx_axidma.o</div> -<div> common-obj-$(CONFIG_ZYNQ_DEVCFG) += xlnx-zynq-devcfg.o</div> -<div> common-obj-$(CONFIG_ETRAXFS) += etraxfs_dma.o</div> -<div> common-obj-$(CONFIG_STP2000) += sparc32_dma.o</div> -<div>diff --git a/hw/gpio/Makefile.objs b/hw/gpio/Makefile.objs</div> -<div>index e5da0cb..3199288 100644</div> -<div>--- a/hw/gpio/Makefile.objs</div> -<div>+++ b/hw/gpio/Makefile.objs</div> -<div>@@ -1,6 +1,6 @@</div> -<div> common-obj-$(CONFIG_MAX7310) += max7310.o</div> -<div> common-obj-$(CONFIG_PL061) += pl061.o</div> -<div>-common-obj-$(CONFIG_PUV3) += puv3_gpio.o</div> -<div>+obj-$(CONFIG_PUV3) += puv3_gpio.o</div> -<div> common-obj-$(CONFIG_ZAURUS) += zaurus.o</div> -<div> common-obj-$(CONFIG_E500) += mpc8xxx.o</div> -<div> common-obj-$(CONFIG_GPIO_KEY) += gpio_key.o</div> -<div>diff --git a/hw/i2c/Makefile.objs b/hw/i2c/Makefile.objs</div> -<div>index d7073a4..f026949 100644</div> -<div>--- a/hw/i2c/Makefile.objs</div> -<div>+++ b/hw/i2c/Makefile.objs</div> -<div>@@ -4,7 +4,7 @@ common-obj-$(CONFIG_VERSATILE_I2C) += versatile_i2c.o</div> -<div> common-obj-$(CONFIG_ACPI_X86_ICH) += smbus_ich9.o</div> -<div> common-obj-$(CONFIG_ACPI_SMBUS) += pm_smbus.o</div> -<div> common-obj-$(CONFIG_BITBANG_I2C) += bitbang_i2c.o</div> -<div>-common-obj-$(CONFIG_EXYNOS4) += exynos4210_i2c.o</div> -<div>+obj-$(CONFIG_EXYNOS4) += exynos4210_i2c.o</div> -<div> common-obj-$(CONFIG_IMX_I2C) += imx_i2c.o</div> -<div> common-obj-$(CONFIG_ASPEED_SOC) += aspeed_i2c.o</div> -<div> common-obj-$(CONFIG_NRF51_SOC) += microbit_i2c.o</div> -<div>diff --git a/hw/input/Makefile.objs b/hw/input/Makefile.objs</div> -<div>index a1bc502..e28f844 100644</div> -<div>--- a/hw/input/Makefile.objs</div> -<div>+++ b/hw/input/Makefile.objs</div> -<div>@@ -1,7 +1,7 @@</div> -<div> common-obj-$(CONFIG_ADB) += adb.o adb-mouse.o adb-kbd.o</div> -<div> common-obj-y += hid.o</div> -<div> common-obj-$(CONFIG_LM832X) += lm832x.o</div> -<div>-common-obj-$(CONFIG_PCKBD) += pckbd.o</div> -<div>+obj-$(CONFIG_PCKBD) += pckbd.o</div> -<div> common-obj-$(CONFIG_PL050) += pl050.o</div> -<div> common-obj-$(CONFIG_PS2) += ps2.o</div> -<div> common-obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o</div> -<div>diff --git a/hw/intc/Makefile.objs b/hw/intc/Makefile.objs</div> -<div>index 03019b9..650de8b 100644</div> -<div>--- a/hw/intc/Makefile.objs</div> -<div>+++ b/hw/intc/Makefile.objs</div> -<div>@@ -2,14 +2,14 @@ common-obj-$(CONFIG_HEATHROW_PIC) += heathrow_pic.o</div> -<div> common-obj-$(CONFIG_I8259) += i8259_common.o i8259.o</div> -<div> common-obj-$(CONFIG_PL190) += pl190.o</div> -<div> common-obj-$(CONFIG_PUV3) += puv3_intc.o</div> -<div>-common-obj-$(CONFIG_XILINX) += xilinx_intc.o</div> -<div>+obj-$(CONFIG_XILINX) += xilinx_intc.o</div> -<div> common-obj-$(CONFIG_XLNX_ZYNQMP) += xlnx-pmu-iomod-intc.o</div> -<div> common-obj-$(CONFIG_XLNX_ZYNQMP) += xlnx-zynqmp-ipi.o</div> -<div> common-obj-$(CONFIG_ETRAXFS) += etraxfs_pic.o</div> -<div> common-obj-$(CONFIG_IMX) += imx_avic.o imx_gpcv2.o</div> -<div> common-obj-$(CONFIG_LM32) += lm32_pic.o</div> -<div> common-obj-$(CONFIG_REALVIEW) += realview_gic.o</div> -<div>-common-obj-$(CONFIG_SLAVIO) += slavio_intctl.o</div> -<div>+obj-$(CONFIG_SLAVIO) += slavio_intctl.o</div> -<div> common-obj-$(CONFIG_IOAPIC) += ioapic_common.o</div> -<div> common-obj-$(CONFIG_ARM_GIC) += arm_gic_common.o</div> -<div> common-obj-$(CONFIG_ARM_GIC) += arm_gic.o</div> -<div>@@ -18,7 +18,7 @@ common-obj-$(CONFIG_ARM_GIC) += arm_gicv3_common.o</div> -<div> common-obj-$(CONFIG_ARM_GIC) += arm_gicv3.o</div> -<div> common-obj-$(CONFIG_ARM_GIC) += arm_gicv3_dist.o</div> -<div> common-obj-$(CONFIG_ARM_GIC) += arm_gicv3_redist.o</div> -<div>-common-obj-$(CONFIG_ARM_GIC) += arm_gicv3_its_common.o</div> -<div>+obj-$(CONFIG_ARM_GIC) += arm_gicv3_its_common.o</div> -<div> common-obj-$(CONFIG_OPENPIC) += openpic.o</div> -<div> common-obj-y += intc.o</div> -<div> </div> -<div>diff --git a/hw/ipack/Makefile.objs b/hw/ipack/Makefile.objs</div> -<div>index 8b9bdcb..a7c5485 100644</div> -<div>--- a/hw/ipack/Makefile.objs</div> -<div>+++ b/hw/ipack/Makefile.objs</div> -<div>@@ -1,2 +1,2 @@</div> -<div> common-obj-$(CONFIG_IPACK) += ipack.o</div> -<div>-common-obj-$(CONFIG_IPACK) += tpci200.o</div> -<div>+obj-$(CONFIG_IPACK) += tpci200.o</div> -<div>diff --git a/hw/misc/Makefile.objs b/hw/misc/Makefile.objs</div> -<div>index e9aab51..10932b2 100644</div> -<div>--- a/hw/misc/Makefile.objs</div> -<div>+++ b/hw/misc/Makefile.objs</div> -<div>@@ -1,4 +1,4 @@</div> -<div>-common-obj-$(CONFIG_APPLESMC) += applesmc.o</div> -<div>+ommon-obj-$(CONFIG_APPLESMC) += applesmc.o</div> -<div> common-obj-$(CONFIG_MAX111X) += max111x.o</div> -<div> common-obj-$(CONFIG_TMP105) += tmp105.o</div> -<div> common-obj-$(CONFIG_TMP421) += tmp421.o</div> -<div>@@ -6,20 +6,20 @@ common-obj-$(CONFIG_ISA_DEBUG) += debugexit.o</div> -<div> common-obj-$(CONFIG_SGA) += sga.o</div> -<div> common-obj-$(CONFIG_ISA_TESTDEV) += pc-testdev.o</div> -<div> common-obj-$(CONFIG_PCI_TESTDEV) += pci-testdev.o</div> -<div>-common-obj-$(CONFIG_EDU) += edu.o</div> -<div>+obj-$(CONFIG_EDU) += edu.o</div> -<div> common-obj-$(CONFIG_PCA9552) += pca9552.o</div> -<div> </div> -<div>-common-obj-y += unimp.o</div> -<div>+obj-y += unimp.o</div> -<div> common-obj-$(CONFIG_FW_CFG_DMA) += vmcoreinfo.o</div> -<div> </div> -<div> # ARM devices</div> -<div> common-obj-$(CONFIG_PL310) += arm_l2x0.o</div> -<div>-common-obj-$(CONFIG_INTEGRATOR_DEBUG) += arm_integrator_debug.o</div> -<div>+obj-$(CONFIG_INTEGRATOR_DEBUG) += arm_integrator_debug.o</div> -<div> common-obj-$(CONFIG_A9SCU) += a9scu.o</div> -<div> common-obj-$(CONFIG_ARM11SCU) += arm11scu.o</div> -<div> </div> -<div> # Mac devices</div> -<div>-common-obj-$(CONFIG_MOS6522) += mos6522.o</div> -<div>+obj-$(CONFIG_MOS6522) += mos6522.o</div> -<div> </div> -<div> # PKUnity SoC devices</div> -<div> common-obj-$(CONFIG_PUV3) += puv3_pm.o</div> -<div>diff --git a/hw/net/Makefile.objs b/hw/net/Makefile.objs</div> -<div>index 9904273..8526611 100644</div> -<div>--- a/hw/net/Makefile.objs</div> -<div>+++ b/hw/net/Makefile.objs</div> -<div>@@ -1,4 +1,4 @@</div> -<div>-common-obj-$(CONFIG_DP8393X) += dp8393x.o</div> -<div>+obj-$(CONFIG_DP8393X) += dp8393x.o</div> -<div> common-obj-$(CONFIG_XEN) += xen_nic.o</div> -<div> common-obj-$(CONFIG_NE2000_COMMON) += ne2000.o</div> -<div> </div> -<div>diff --git a/hw/pci-host/Makefile.objs b/hw/pci-host/Makefile.objs</div> -<div>index a9cd3e0..02f286b 100644</div> -<div>--- a/hw/pci-host/Makefile.objs</div> -<div>+++ b/hw/pci-host/Makefile.objs</div> -<div>@@ -12,7 +12,7 @@ common-obj-$(CONFIG_PPCE500_PCI) += ppce500.o</div> -<div> common-obj-$(CONFIG_VERSATILE_PCI) += versatile.o</div> -<div> </div> -<div> common-obj-$(CONFIG_PCI_SABRE) += sabre.o</div> -<div>-common-obj-$(CONFIG_FULONG) += bonito.o</div> -<div>+obj-$(CONFIG_FULONG) += bonito.o</div> -<div> common-obj-$(CONFIG_PCI_PIIX) += piix.o</div> -<div> common-obj-$(CONFIG_PCI_EXPRESS_Q35) += q35.o</div> -<div> common-obj-$(CONFIG_PCI_EXPRESS_GENERIC_BRIDGE) += gpex.o</div> -<div>diff --git a/hw/scsi/Makefile.objs b/hw/scsi/Makefile.objs</div> -<div>index 54b36ed..418af9a 100644</div> -<div>--- a/hw/scsi/Makefile.objs</div> -<div>+++ b/hw/scsi/Makefile.objs</div> -<div>@@ -4,7 +4,7 @@ common-obj-$(CONFIG_LSI_SCSI_PCI) += lsi53c895a.o</div> -<div> common-obj-$(CONFIG_MPTSAS_SCSI_PCI) += mptsas.o mptconfig.o mptendian.o</div> -<div> common-obj-$(CONFIG_MEGASAS_SCSI_PCI) += megasas.o</div> -<div> common-obj-$(CONFIG_VMW_PVSCSI_SCSI_PCI) += vmw_pvscsi.o</div> -<div>-common-obj-$(CONFIG_ESP) += esp.o</div> -<div>+obj-$(CONFIG_ESP) += esp.o</div> -<div> common-obj-$(CONFIG_ESP_PCI) += esp-pci.o</div> -<div> obj-$(CONFIG_SPAPR_VSCSI) += spapr_vscsi.o</div> -<div> </div> -<div>diff --git a/hw/ssi/Makefile.objs b/hw/ssi/Makefile.objs</div> -<div>index f5bcc65..54b5542 100644</div> -<div>--- a/hw/ssi/Makefile.objs</div> -<div>+++ b/hw/ssi/Makefile.objs</div> -<div>@@ -1,6 +1,6 @@</div> -<div> common-obj-$(CONFIG_PL022) += pl022.o</div> -<div> common-obj-$(CONFIG_SSI) += ssi.o</div> -<div>-common-obj-$(CONFIG_XILINX_SPI) += xilinx_spi.o</div> -<div>+obj-$(CONFIG_XILINX_SPI) += xilinx_spi.o</div> -<div> common-obj-$(CONFIG_XILINX_SPIPS) += xilinx_spips.o</div> -<div> common-obj-$(CONFIG_ASPEED_SOC) += aspeed_smc.o</div> -<div> common-obj-$(CONFIG_STM32F2XX_SPI) += stm32f2xx_spi.o</div> -<div>diff --git a/hw/timer/Makefile.objs b/hw/timer/Makefile.objs</div> -<div>index 123d92c..b27513f 100644</div> -<div>--- a/hw/timer/Makefile.objs</div> -<div>+++ b/hw/timer/Makefile.objs</div> -<div>@@ -12,10 +12,10 @@ ifeq ($(CONFIG_ISA_BUS),y)</div> -<div> common-obj-$(CONFIG_M48T59) += m48t59-isa.o</div> -<div> endif</div> -<div> common-obj-$(CONFIG_PL031) += pl031.o</div> -<div>-common-obj-$(CONFIG_PUV3) += puv3_ost.o</div> -<div>+obj-$(CONFIG_PUV3) += puv3_ost.o</div> -<div> common-obj-$(CONFIG_TWL92230) += twl92230.o</div> -<div>-common-obj-$(CONFIG_XILINX) += xilinx_timer.o</div> -<div>-common-obj-$(CONFIG_SLAVIO) += slavio_timer.o</div> -<div>+obj-$(CONFIG_XILINX) += xilinx_timer.o</div> -<div>+obj-$(CONFIG_SLAVIO) += slavio_timer.o</div> -<div> common-obj-$(CONFIG_ETRAXFS) += etraxfs_timer.o</div> -<div> common-obj-$(CONFIG_GRLIB) += grlib_gptimer.o</div> -<div> common-obj-$(CONFIG_IMX) += imx_epit.o</div> -<div>diff --git a/hw/virtio/Makefile.objs b/hw/virtio/Makefile.objs</div> -<div>index 964ce78..573b1a9 100644</div> -<div>--- a/hw/virtio/Makefile.objs</div> -<div>+++ b/hw/virtio/Makefile.objs</div> -<div>@@ -8,7 +8,7 @@ obj-$(CONFIG_VHOST_USER) += vhost-user.o</div> -<div> </div> -<div> common-obj-$(CONFIG_VIRTIO_RNG) += virtio-rng.o</div> -<div> common-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o</div> -<div>-common-obj-$(CONFIG_VIRTIO_MMIO) += virtio-mmio.o</div> -<div>+obj-$(CONFIG_VIRTIO_MMIO) += virtio-mmio.o</div> -<div> obj-$(CONFIG_VIRTIO_BALLOON) += virtio-balloon.o</div> -<div> obj-$(CONFIG_VIRTIO_CRYPTO) += virtio-crypto.o</div> -<div> obj-$(call land,$(CONFIG_VIRTIO_CRYPTO),$(CONFIG_VIRTIO_PCI)) += virtio-crypto-pci.o</div> -<div>-- </div> -<div>1.8.3.1</div> -<div><br> -​<br> -</div> -<br> -</div> -</span></font></div> -</body> -</html> diff --git a/a/2.hdr b/a/2.hdr deleted file mode 100644 index e54d0ae..0000000 --- a/a/2.hdr +++ /dev/null @@ -1,2 +0,0 @@ -Content-Type: text/html; charset="iso-8859-1" -Content-Transfer-Encoding: quoted-printable diff --git a/a/content_digest b/N1/content_digest index 47c6b35..47ce141 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,96 +1,93 @@ "ref\043bc5e07ac614d0e8e740bf6007ff77b@tpw09926dag18e.domain1.systemhost.net\0" "From\0<tony.nguyen@bt.com>\0" - "Subject\0[Qemu-riscv] [Qemu-devel] [PATCH v7 31/42] build: Correct non-common common-obj-* to obj-*\0" + "Subject\0[Qemu-devel] [PATCH v7 31/42] build: Correct non-common common-obj-* to obj-*\0" "Date\0Fri, 16 Aug 2019 07:36:31 +0000\0" "To\0<qemu-devel@nongnu.org>\0" - "Cc\0<rth@twiddle.net>" - <pbonzini@redhat.com> - <mst@redhat.com> - <imammedo@redhat.com> - <marcel.apfelbaum@gmail.com> - <xiaoguangrong.eric@gmail.com> - <alistair@alistair23.me> - <peter.maydell@linaro.org> - <b.galvani@gmail.com> - <clg@kaod.org> - <andrew@aj.id.au> - <joel@jms.id.au> - <i.mitsyanko@gmail.com> - <robh@kernel.org> - <peter.chubb@nicta.com.au> - <sundeep.lkml@gmail.com> - <jan.kiszka@web.de> - <balrogg@gmail.com> - <eric.auger@redhat.com> - <kraxel@redhat.com> - <michael@walle.cc> - <kwolf@redhat.com> - <mreitz@redhat.com> - <jsnow@redhat.com> - <keith.busch@intel.com> - <philmd@redhat.com> - <marcandre.lureau@redhat.com> - <Andrew.Baumann@microsoft.com> - <edgar.iglesias@gmail.com> - <antonynpavlov@gmail.com> - <chouteau@adacore.com> - <frederic.konrad@adacore.com> - <huth@tuxfamily.org> - <mark.cave-ayland@ilande.co.uk> - <hpoussin@reactos.org> - <arikalo@wavecomp.com> - <balaton@eik.bme.hu> - <gxt@mprc.pku.edu.cn> - <david@gibson.dropbear.id.au> - <deller@gmx.de> - <ehabkost@redhat.com> - <sstabellini@kernel.org> - <anthony.perard@citrix.com> - <paul.durrant@citrix.com> - <aurelien@aurel32.net> - <amarkovic@wavecomp.com> - <magnus.damm@gmail.com> - <berto@igalia.com> - <minyard@acm.org> - <pburton@wavecomp.com> - <jslaby@suse.cz> - <jcd@tribudubois.net> - <andrew.smirnov@gmail.com> - <green@moxielogic.com> - <jasowang@redhat.com> - <dmitry.fleytman@gmail.com> - <sw@weilnetz.de> - <jiri@resnulli.us> - <crwulff@gmail.com> - <marex@denx.de> - <lersek@redhat.com> - <proljc@gmail.com> - <shorne@gmail.com> - <yuval.shaia@oracle.com> - <palmer@sifive.com> - <sagark@eecs.berkeley.edu> - <kbastian@mail.uni-paderborn.de> - <walling@linux.ibm.com> - <cohuck@redhat.com> - <david@redhat.com> - <pasic@linux.ibm.com> - <borntraeger@de.ibm.com> - <fam@euphon.net> - <hare@suse.com> - <atar4qemu@gmail.com> - <stefanb@linux.ibm.com> - <alex.williamson@redhat.com> - <jcmvbkbc@gmail.com> - <laurent@vivier.eu> - <claudio.fontana@suse.com> - <stefanha@redhat.com> - <qemu-arm@nongnu.org> - <qemu-block@nongnu.org> - <qemu-ppc@nongnu.org> - <xen-devel@lists.xenproject.org> - <qemu-riscv@nongnu.org> - " <qemu-s390x@nongnu.org>\0" - "\01:1\0" + "Cc\0frederic.konrad@adacore.com" + berto@igalia.com + qemu-block@nongnu.org + arikalo@wavecomp.com + pasic@linux.ibm.com + hpoussin@reactos.org + anthony.perard@citrix.com + xen-devel@lists.xenproject.org + lersek@redhat.com + jasowang@redhat.com + jiri@resnulli.us + ehabkost@redhat.com + b.galvani@gmail.com + eric.auger@redhat.com + alex.williamson@redhat.com + stefanha@redhat.com + jsnow@redhat.com + rth@twiddle.net + kwolf@redhat.com + andrew@aj.id.au + claudio.fontana@suse.com + crwulff@gmail.com + laurent@vivier.eu + sundeep.lkml@gmail.com + michael@walle.cc + qemu-ppc@nongnu.org + kbastian@mail.uni-paderborn.de + imammedo@redhat.com + fam@euphon.net + peter.maydell@linaro.org + david@redhat.com + palmer@sifive.com + keith.busch@intel.com + jcmvbkbc@gmail.com + hare@suse.com + sstabellini@kernel.org + andrew.smirnov@gmail.com + deller@gmx.de + magnus.damm@gmail.com + atar4qemu@gmail.com + minyard@acm.org + sw@weilnetz.de + yuval.shaia@oracle.com + qemu-s390x@nongnu.org + qemu-arm@nongnu.org + jan.kiszka@web.de + clg@kaod.org + shorne@gmail.com + qemu-riscv@nongnu.org + i.mitsyanko@gmail.com + cohuck@redhat.com + philmd@redhat.com + amarkovic@wavecomp.com + peter.chubb@nicta.com.au + aurelien@aurel32.net + pburton@wavecomp.com + sagark@eecs.berkeley.edu + green@moxielogic.com + kraxel@redhat.com + edgar.iglesias@gmail.com + gxt@mprc.pku.edu.cn + robh@kernel.org + borntraeger@de.ibm.com + joel@jms.id.au + antonynpavlov@gmail.com + chouteau@adacore.com + Andrew.Baumann@microsoft.com + mreitz@redhat.com + walling@linux.ibm.com + dmitry.fleytman@gmail.com + mst@redhat.com + mark.cave-ayland@ilande.co.uk + jslaby@suse.cz + marex@denx.de + proljc@gmail.com + marcandre.lureau@redhat.com + alistair@alistair23.me + paul.durrant@citrix.com + david@gibson.dropbear.id.au + xiaoguangrong.eric@gmail.com + huth@tuxfamily.org + jcd@tribudubois.net + pbonzini@redhat.com + " stefanb@linux.ibm.com\0" + "\00:1\0" "b\0" "Preparation for replacing device_endian with MemOp.\n" "\n" @@ -436,371 +433,5 @@ "1.8.3.1\n" "\n" ? - "\01:2\0" - "b\0" - "<html>\r\n" - "<head>\r\n" - "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\r\n" - "<style type=\"text/css\" style=\"display:none\"><!-- P { margin-top: 0px; margin-bottom: 0px; } .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left-width: 2px; border-left-style: solid; border-left-color: rgb(128, 0, 0); }--></style>\r\n" - "</head>\r\n" - "<body dir=\"ltr\" style=\"font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;\">\r\n" - "<p></p>\r\n" - "<div style=\"color: rgb(33, 33, 33);\"><font size=\"2\"><span style=\"font-size:10pt;\">\r\n" - "<div class=\"PlainText\">\r\n" - "<div><span style=\"font-size: 10pt;\">Preparation for replacing device_endian with MemOp.</span><br>\r\n" - "</div>\r\n" - "<div><br>\r\n" - "</div>\r\n" - "<div>Device realizing code with MemorRegionOps endianness as</div>\r\n" - "<div>DEVICE_NATIVE_ENDIAN is not common code.</div>\r\n" - "<div><br>\r\n" - "</div>\r\n" - "<div>Corrected devices were identified by making the declaration of</div>\r\n" - "<div>DEVICE_NATIVE_ENDIAN conditional upon NEED_CPU_H and then listing</div>\r\n" - "<div>what failed to compile.</div>\r\n" - "<div><br>\r\n" - "</div>\r\n" - "<div>Signed-off-by: Tony Nguyen <tony.nguyen@bt.com></div>\r\n" - "<div>---</div>\r\n" - "<div> hw/audio/Makefile.objs | 3 ++-</div>\r\n" - "<div> hw/block/Makefile.objs | 6 +++---</div>\r\n" - "<div> hw/char/Makefile.objs | 4 ++--</div>\r\n" - "<div> hw/core/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/display/Makefile.objs | 6 +++---</div>\r\n" - "<div> hw/dma/Makefile.objs | 6 +++---</div>\r\n" - "<div> hw/gpio/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/i2c/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/input/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/intc/Makefile.objs | 6 +++---</div>\r\n" - "<div> hw/ipack/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/misc/Makefile.objs | 10 +++++-----</div>\r\n" - "<div> hw/net/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/pci-host/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/scsi/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/ssi/Makefile.objs | 2 +-</div>\r\n" - "<div> hw/timer/Makefile.objs | 6 +++---</div>\r\n" - "<div> hw/virtio/Makefile.objs | 2 +-</div>\r\n" - "<div> 18 files changed, 34 insertions(+), 33 deletions(-)</div>\r\n" - "<div><br>\r\n" - "</div>\r\n" - "<div>diff --git a/hw/audio/Makefile.objs b/hw/audio/Makefile.objs</div>\r\n" - "<div>index 63db383..13133b4 100644</div>\r\n" - "<div>--- a/hw/audio/Makefile.objs</div>\r\n" - "<div>+++ b/hw/audio/Makefile.objs</div>\r\n" - "<div>@@ -5,7 +5,8 @@ common-obj-$(CONFIG_AC97) += ac97.o</div>\r\n" - "<div> common-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o</div>\r\n" - "<div> common-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o</div>\r\n" - "<div> common-obj-$(CONFIG_CS4231A) += cs4231a.o</div>\r\n" - "<div>-common-obj-$(CONFIG_HDA) += intel-hda.o hda-codec.o</div>\r\n" - "<div>+common-obj-$(CONFIG_HDA) += hda-codec.o</div>\r\n" - "<div>+obj-$(CONFIG_HDA) += intel-hda.o</div>\r\n" - "<div> </div>\r\n" - "<div> common-obj-$(CONFIG_PCSPK) += pcspk.o</div>\r\n" - "<div> common-obj-$(CONFIG_WM8750) += wm8750.o</div>\r\n" - "<div>diff --git a/hw/block/Makefile.objs b/hw/block/Makefile.objs</div>\r\n" - "<div>index f5f643f..04ed4d7 100644</div>\r\n" - "<div>--- a/hw/block/Makefile.objs</div>\r\n" - "<div>+++ b/hw/block/Makefile.objs</div>\r\n" - "<div>@@ -1,9 +1,9 @@</div>\r\n" - "<div> common-obj-y += block.o cdrom.o hd-geometry.o</div>\r\n" - "<div>-common-obj-$(CONFIG_FDC) += fdc.o</div>\r\n" - "<div>+obj-$(CONFIG_FDC) += fdc.o</div>\r\n" - "<div> common-obj-$(CONFIG_SSI_M25P80) += m25p80.o</div>\r\n" - "<div> common-obj-$(CONFIG_NAND) += nand.o</div>\r\n" - "<div>-common-obj-$(CONFIG_PFLASH_CFI01) += pflash_cfi01.o</div>\r\n" - "<div>-common-obj-$(CONFIG_PFLASH_CFI02) += pflash_cfi02.o</div>\r\n" - "<div>+obj-$(CONFIG_PFLASH_CFI01) += pflash_cfi01.o</div>\r\n" - "<div>+obj-$(CONFIG_PFLASH_CFI02) += pflash_cfi02.o</div>\r\n" - "<div> common-obj-$(CONFIG_XEN) += xen-block.o</div>\r\n" - "<div> common-obj-$(CONFIG_ECC) += ecc.o</div>\r\n" - "<div> common-obj-$(CONFIG_ONENAND) += onenand.o</div>\r\n" - "<div>diff --git a/hw/char/Makefile.objs b/hw/char/Makefile.objs</div>\r\n" - "<div>index 02d8a66..215c02b 100644</div>\r\n" - "<div>--- a/hw/char/Makefile.objs</div>\r\n" - "<div>+++ b/hw/char/Makefile.objs</div>\r\n" - "<div>@@ -1,7 +1,6 @@</div>\r\n" - "<div> common-obj-$(CONFIG_IPACK) += ipoctal232.o</div>\r\n" - "<div> common-obj-$(CONFIG_ESCC) += escc.o</div>\r\n" - "<div> common-obj-$(CONFIG_NRF51_SOC) += nrf51_uart.o</div>\r\n" - "<div>-common-obj-$(CONFIG_PARALLEL) += parallel.o</div>\r\n" - "<div> common-obj-$(CONFIG_ISA_BUS) += parallel-isa.o</div>\r\n" - "<div> common-obj-$(CONFIG_PL011) += pl011.o</div>\r\n" - "<div> common-obj-$(CONFIG_SERIAL) += serial.o</div>\r\n" - "<div>@@ -9,7 +8,6 @@ common-obj-$(CONFIG_SERIAL_ISA) += serial-isa.o</div>\r\n" - "<div> common-obj-$(CONFIG_SERIAL_PCI) += serial-pci.o</div>\r\n" - "<div> common-obj-$(CONFIG_SERIAL_PCI_MULTI) += serial-pci-multi.o</div>\r\n" - "<div> common-obj-$(CONFIG_VIRTIO_SERIAL) += virtio-console.o</div>\r\n" - "<div>-common-obj-$(CONFIG_XILINX) += xilinx_uartlite.o</div>\r\n" - "<div> common-obj-$(CONFIG_XEN) += xen_console.o</div>\r\n" - "<div> common-obj-$(CONFIG_CADENCE) += cadence_uart.o</div>\r\n" - "<div> </div>\r\n" - "<div>@@ -21,6 +19,8 @@ obj-$(CONFIG_PSERIES) += spapr_vty.o</div>\r\n" - "<div> obj-$(CONFIG_DIGIC) += digic-uart.o</div>\r\n" - "<div> obj-$(CONFIG_STM32F2XX_USART) += stm32f2xx_usart.o</div>\r\n" - "<div> obj-$(CONFIG_RASPI) += bcm2835_aux.o</div>\r\n" - "<div>+obj-$(CONFIG_PARALLEL) += parallel.o</div>\r\n" - "<div>+obj-$(CONFIG_XILINX) += xilinx_uartlite.o</div>\r\n" - "<div> </div>\r\n" - "<div> common-obj-$(CONFIG_CMSDK_APB_UART) += cmsdk-apb-uart.o</div>\r\n" - "<div> common-obj-$(CONFIG_ETRAXFS) += etraxfs_ser.o</div>\r\n" - "<div>diff --git a/hw/core/Makefile.objs b/hw/core/Makefile.objs</div>\r\n" - "<div>index f8481d9..1b336c6 100644</div>\r\n" - "<div>--- a/hw/core/Makefile.objs</div>\r\n" - "<div>+++ b/hw/core/Makefile.objs</div>\r\n" - "<div>@@ -9,7 +9,7 @@ common-obj-y += hotplug.o</div>\r\n" - "<div> common-obj-$(CONFIG_SOFTMMU) += nmi.o</div>\r\n" - "<div> common-obj-$(CONFIG_SOFTMMU) += vm-change-state-handler.o</div>\r\n" - "<div> </div>\r\n" - "<div>-common-obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o</div>\r\n" - "<div>+obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o</div>\r\n" - "<div> common-obj-$(CONFIG_XILINX_AXI) += stream.o</div>\r\n" - "<div> common-obj-$(CONFIG_PTIMER) += ptimer.o</div>\r\n" - "<div> common-obj-$(CONFIG_SOFTMMU) += sysbus.o</div>\r\n" - "<div>diff --git a/hw/display/Makefile.objs b/hw/display/Makefile.objs</div>\r\n" - "<div>index a64998f..facc1d4 100644</div>\r\n" - "<div>--- a/hw/display/Makefile.objs</div>\r\n" - "<div>+++ b/hw/display/Makefile.objs</div>\r\n" - "<div>@@ -8,7 +8,7 @@ common-obj-$(CONFIG_ADS7846) += ads7846.o</div>\r\n" - "<div> common-obj-$(CONFIG_VGA_CIRRUS) += cirrus_vga.o</div>\r\n" - "<div> common-obj-$(call land,$(CONFIG_VGA_CIRRUS),$(CONFIG_VGA_ISA))+=cirrus_vga_isa.o</div>\r\n" - "<div> common-obj-$(CONFIG_G364FB) += g364fb.o</div>\r\n" - "<div>-common-obj-$(CONFIG_JAZZ_LED) += jazz_led.o</div>\r\n" - "<div>+obj-$(CONFIG_JAZZ_LED) += jazz_led.o</div>\r\n" - "<div> common-obj-$(CONFIG_PL110) += pl110.o</div>\r\n" - "<div> common-obj-$(CONFIG_SII9022) += sii9022.o</div>\r\n" - "<div> common-obj-$(CONFIG_SSD0303) += ssd0303.o</div>\r\n" - "<div>@@ -17,12 +17,12 @@ common-obj-$(CONFIG_XEN) += xenfb.o</div>\r\n" - "<div> </div>\r\n" - "<div> common-obj-$(CONFIG_VGA_PCI) += vga-pci.o</div>\r\n" - "<div> common-obj-$(CONFIG_VGA_ISA) += vga-isa.o</div>\r\n" - "<div>-common-obj-$(CONFIG_VGA_ISA_MM) += vga-isa-mm.o</div>\r\n" - "<div>+obj-$(CONFIG_VGA_ISA_MM) += vga-isa-mm.o</div>\r\n" - "<div> common-obj-$(CONFIG_VMWARE_VGA) += vmware_vga.o</div>\r\n" - "<div> common-obj-$(CONFIG_BOCHS_DISPLAY) += bochs-display.o</div>\r\n" - "<div> </div>\r\n" - "<div> common-obj-$(CONFIG_BLIZZARD) += blizzard.o</div>\r\n" - "<div>-common-obj-$(CONFIG_EXYNOS4) += exynos4210_fimd.o</div>\r\n" - "<div>+obj-$(CONFIG_EXYNOS4) += exynos4210_fimd.o</div>\r\n" - "<div> common-obj-$(CONFIG_FRAMEBUFFER) += framebuffer.o</div>\r\n" - "<div> obj-$(CONFIG_MILKYMIST) += milkymist-vgafb.o</div>\r\n" - "<div> common-obj-$(CONFIG_ZAURUS) += tc6393xb.o</div>\r\n" - "<div>diff --git a/hw/dma/Makefile.objs b/hw/dma/Makefile.objs</div>\r\n" - "<div>index 8b39f9c..fff43e0 100644</div>\r\n" - "<div>--- a/hw/dma/Makefile.objs</div>\r\n" - "<div>+++ b/hw/dma/Makefile.objs</div>\r\n" - "<div>@@ -1,10 +1,10 @@</div>\r\n" - "<div> common-obj-$(CONFIG_PUV3) += puv3_dma.o</div>\r\n" - "<div>-common-obj-$(CONFIG_RC4030) += rc4030.o</div>\r\n" - "<div>+obj-$(CONFIG_RC4030) += rc4030.o</div>\r\n" - "<div> common-obj-$(CONFIG_PL080) += pl080.o</div>\r\n" - "<div> common-obj-$(CONFIG_PL330) += pl330.o</div>\r\n" - "<div> common-obj-$(CONFIG_I82374) += i82374.o</div>\r\n" - "<div>-common-obj-$(CONFIG_I8257) += i8257.o</div>\r\n" - "<div>-common-obj-$(CONFIG_XILINX_AXI) += xilinx_axidma.o</div>\r\n" - "<div>+obj-$(CONFIG_I8257) += i8257.o</div>\r\n" - "<div>+obj-$(CONFIG_XILINX_AXI) += xilinx_axidma.o</div>\r\n" - "<div> common-obj-$(CONFIG_ZYNQ_DEVCFG) += xlnx-zynq-devcfg.o</div>\r\n" - "<div> common-obj-$(CONFIG_ETRAXFS) += etraxfs_dma.o</div>\r\n" - "<div> common-obj-$(CONFIG_STP2000) += sparc32_dma.o</div>\r\n" - "<div>diff --git a/hw/gpio/Makefile.objs b/hw/gpio/Makefile.objs</div>\r\n" - "<div>index e5da0cb..3199288 100644</div>\r\n" - "<div>--- a/hw/gpio/Makefile.objs</div>\r\n" - "<div>+++ b/hw/gpio/Makefile.objs</div>\r\n" - "<div>@@ -1,6 +1,6 @@</div>\r\n" - "<div> common-obj-$(CONFIG_MAX7310) += max7310.o</div>\r\n" - "<div> common-obj-$(CONFIG_PL061) += pl061.o</div>\r\n" - "<div>-common-obj-$(CONFIG_PUV3) += puv3_gpio.o</div>\r\n" - "<div>+obj-$(CONFIG_PUV3) += puv3_gpio.o</div>\r\n" - "<div> common-obj-$(CONFIG_ZAURUS) += zaurus.o</div>\r\n" - "<div> common-obj-$(CONFIG_E500) += mpc8xxx.o</div>\r\n" - "<div> common-obj-$(CONFIG_GPIO_KEY) += gpio_key.o</div>\r\n" - "<div>diff --git a/hw/i2c/Makefile.objs b/hw/i2c/Makefile.objs</div>\r\n" - "<div>index d7073a4..f026949 100644</div>\r\n" - "<div>--- a/hw/i2c/Makefile.objs</div>\r\n" - "<div>+++ b/hw/i2c/Makefile.objs</div>\r\n" - "<div>@@ -4,7 +4,7 @@ common-obj-$(CONFIG_VERSATILE_I2C) += versatile_i2c.o</div>\r\n" - "<div> common-obj-$(CONFIG_ACPI_X86_ICH) += smbus_ich9.o</div>\r\n" - "<div> common-obj-$(CONFIG_ACPI_SMBUS) += pm_smbus.o</div>\r\n" - "<div> common-obj-$(CONFIG_BITBANG_I2C) += bitbang_i2c.o</div>\r\n" - "<div>-common-obj-$(CONFIG_EXYNOS4) += exynos4210_i2c.o</div>\r\n" - "<div>+obj-$(CONFIG_EXYNOS4) += exynos4210_i2c.o</div>\r\n" - "<div> common-obj-$(CONFIG_IMX_I2C) += imx_i2c.o</div>\r\n" - "<div> common-obj-$(CONFIG_ASPEED_SOC) += aspeed_i2c.o</div>\r\n" - "<div> common-obj-$(CONFIG_NRF51_SOC) += microbit_i2c.o</div>\r\n" - "<div>diff --git a/hw/input/Makefile.objs b/hw/input/Makefile.objs</div>\r\n" - "<div>index a1bc502..e28f844 100644</div>\r\n" - "<div>--- a/hw/input/Makefile.objs</div>\r\n" - "<div>+++ b/hw/input/Makefile.objs</div>\r\n" - "<div>@@ -1,7 +1,7 @@</div>\r\n" - "<div> common-obj-$(CONFIG_ADB) += adb.o adb-mouse.o adb-kbd.o</div>\r\n" - "<div> common-obj-y += hid.o</div>\r\n" - "<div> common-obj-$(CONFIG_LM832X) += lm832x.o</div>\r\n" - "<div>-common-obj-$(CONFIG_PCKBD) += pckbd.o</div>\r\n" - "<div>+obj-$(CONFIG_PCKBD) += pckbd.o</div>\r\n" - "<div> common-obj-$(CONFIG_PL050) += pl050.o</div>\r\n" - "<div> common-obj-$(CONFIG_PS2) += ps2.o</div>\r\n" - "<div> common-obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o</div>\r\n" - "<div>diff --git a/hw/intc/Makefile.objs b/hw/intc/Makefile.objs</div>\r\n" - "<div>index 03019b9..650de8b 100644</div>\r\n" - "<div>--- a/hw/intc/Makefile.objs</div>\r\n" - "<div>+++ b/hw/intc/Makefile.objs</div>\r\n" - "<div>@@ -2,14 +2,14 @@ common-obj-$(CONFIG_HEATHROW_PIC) += heathrow_pic.o</div>\r\n" - "<div> common-obj-$(CONFIG_I8259) += i8259_common.o i8259.o</div>\r\n" - "<div> common-obj-$(CONFIG_PL190) += pl190.o</div>\r\n" - "<div> common-obj-$(CONFIG_PUV3) += puv3_intc.o</div>\r\n" - "<div>-common-obj-$(CONFIG_XILINX) += xilinx_intc.o</div>\r\n" - "<div>+obj-$(CONFIG_XILINX) += xilinx_intc.o</div>\r\n" - "<div> common-obj-$(CONFIG_XLNX_ZYNQMP) += xlnx-pmu-iomod-intc.o</div>\r\n" - "<div> common-obj-$(CONFIG_XLNX_ZYNQMP) += xlnx-zynqmp-ipi.o</div>\r\n" - "<div> common-obj-$(CONFIG_ETRAXFS) += etraxfs_pic.o</div>\r\n" - "<div> common-obj-$(CONFIG_IMX) += imx_avic.o imx_gpcv2.o</div>\r\n" - "<div> common-obj-$(CONFIG_LM32) += lm32_pic.o</div>\r\n" - "<div> common-obj-$(CONFIG_REALVIEW) += realview_gic.o</div>\r\n" - "<div>-common-obj-$(CONFIG_SLAVIO) += slavio_intctl.o</div>\r\n" - "<div>+obj-$(CONFIG_SLAVIO) += slavio_intctl.o</div>\r\n" - "<div> common-obj-$(CONFIG_IOAPIC) += ioapic_common.o</div>\r\n" - "<div> common-obj-$(CONFIG_ARM_GIC) += arm_gic_common.o</div>\r\n" - "<div> common-obj-$(CONFIG_ARM_GIC) += arm_gic.o</div>\r\n" - "<div>@@ -18,7 +18,7 @@ common-obj-$(CONFIG_ARM_GIC) += arm_gicv3_common.o</div>\r\n" - "<div> common-obj-$(CONFIG_ARM_GIC) += arm_gicv3.o</div>\r\n" - "<div> common-obj-$(CONFIG_ARM_GIC) += arm_gicv3_dist.o</div>\r\n" - "<div> common-obj-$(CONFIG_ARM_GIC) += arm_gicv3_redist.o</div>\r\n" - "<div>-common-obj-$(CONFIG_ARM_GIC) += arm_gicv3_its_common.o</div>\r\n" - "<div>+obj-$(CONFIG_ARM_GIC) += arm_gicv3_its_common.o</div>\r\n" - "<div> common-obj-$(CONFIG_OPENPIC) += openpic.o</div>\r\n" - "<div> common-obj-y += intc.o</div>\r\n" - "<div> </div>\r\n" - "<div>diff --git a/hw/ipack/Makefile.objs b/hw/ipack/Makefile.objs</div>\r\n" - "<div>index 8b9bdcb..a7c5485 100644</div>\r\n" - "<div>--- a/hw/ipack/Makefile.objs</div>\r\n" - "<div>+++ b/hw/ipack/Makefile.objs</div>\r\n" - "<div>@@ -1,2 +1,2 @@</div>\r\n" - "<div> common-obj-$(CONFIG_IPACK) += ipack.o</div>\r\n" - "<div>-common-obj-$(CONFIG_IPACK) += tpci200.o</div>\r\n" - "<div>+obj-$(CONFIG_IPACK) += tpci200.o</div>\r\n" - "<div>diff --git a/hw/misc/Makefile.objs b/hw/misc/Makefile.objs</div>\r\n" - "<div>index e9aab51..10932b2 100644</div>\r\n" - "<div>--- a/hw/misc/Makefile.objs</div>\r\n" - "<div>+++ b/hw/misc/Makefile.objs</div>\r\n" - "<div>@@ -1,4 +1,4 @@</div>\r\n" - "<div>-common-obj-$(CONFIG_APPLESMC) += applesmc.o</div>\r\n" - "<div>+ommon-obj-$(CONFIG_APPLESMC) += applesmc.o</div>\r\n" - "<div> common-obj-$(CONFIG_MAX111X) += max111x.o</div>\r\n" - "<div> common-obj-$(CONFIG_TMP105) += tmp105.o</div>\r\n" - "<div> common-obj-$(CONFIG_TMP421) += tmp421.o</div>\r\n" - "<div>@@ -6,20 +6,20 @@ common-obj-$(CONFIG_ISA_DEBUG) += debugexit.o</div>\r\n" - "<div> common-obj-$(CONFIG_SGA) += sga.o</div>\r\n" - "<div> common-obj-$(CONFIG_ISA_TESTDEV) += pc-testdev.o</div>\r\n" - "<div> common-obj-$(CONFIG_PCI_TESTDEV) += pci-testdev.o</div>\r\n" - "<div>-common-obj-$(CONFIG_EDU) += edu.o</div>\r\n" - "<div>+obj-$(CONFIG_EDU) += edu.o</div>\r\n" - "<div> common-obj-$(CONFIG_PCA9552) += pca9552.o</div>\r\n" - "<div> </div>\r\n" - "<div>-common-obj-y += unimp.o</div>\r\n" - "<div>+obj-y += unimp.o</div>\r\n" - "<div> common-obj-$(CONFIG_FW_CFG_DMA) += vmcoreinfo.o</div>\r\n" - "<div> </div>\r\n" - "<div> # ARM devices</div>\r\n" - "<div> common-obj-$(CONFIG_PL310) += arm_l2x0.o</div>\r\n" - "<div>-common-obj-$(CONFIG_INTEGRATOR_DEBUG) += arm_integrator_debug.o</div>\r\n" - "<div>+obj-$(CONFIG_INTEGRATOR_DEBUG) += arm_integrator_debug.o</div>\r\n" - "<div> common-obj-$(CONFIG_A9SCU) += a9scu.o</div>\r\n" - "<div> common-obj-$(CONFIG_ARM11SCU) += arm11scu.o</div>\r\n" - "<div> </div>\r\n" - "<div> # Mac devices</div>\r\n" - "<div>-common-obj-$(CONFIG_MOS6522) += mos6522.o</div>\r\n" - "<div>+obj-$(CONFIG_MOS6522) += mos6522.o</div>\r\n" - "<div> </div>\r\n" - "<div> # PKUnity SoC devices</div>\r\n" - "<div> common-obj-$(CONFIG_PUV3) += puv3_pm.o</div>\r\n" - "<div>diff --git a/hw/net/Makefile.objs b/hw/net/Makefile.objs</div>\r\n" - "<div>index 9904273..8526611 100644</div>\r\n" - "<div>--- a/hw/net/Makefile.objs</div>\r\n" - "<div>+++ b/hw/net/Makefile.objs</div>\r\n" - "<div>@@ -1,4 +1,4 @@</div>\r\n" - "<div>-common-obj-$(CONFIG_DP8393X) += dp8393x.o</div>\r\n" - "<div>+obj-$(CONFIG_DP8393X) += dp8393x.o</div>\r\n" - "<div> common-obj-$(CONFIG_XEN) += xen_nic.o</div>\r\n" - "<div> common-obj-$(CONFIG_NE2000_COMMON) += ne2000.o</div>\r\n" - "<div> </div>\r\n" - "<div>diff --git a/hw/pci-host/Makefile.objs b/hw/pci-host/Makefile.objs</div>\r\n" - "<div>index a9cd3e0..02f286b 100644</div>\r\n" - "<div>--- a/hw/pci-host/Makefile.objs</div>\r\n" - "<div>+++ b/hw/pci-host/Makefile.objs</div>\r\n" - "<div>@@ -12,7 +12,7 @@ common-obj-$(CONFIG_PPCE500_PCI) += ppce500.o</div>\r\n" - "<div> common-obj-$(CONFIG_VERSATILE_PCI) += versatile.o</div>\r\n" - "<div> </div>\r\n" - "<div> common-obj-$(CONFIG_PCI_SABRE) += sabre.o</div>\r\n" - "<div>-common-obj-$(CONFIG_FULONG) += bonito.o</div>\r\n" - "<div>+obj-$(CONFIG_FULONG) += bonito.o</div>\r\n" - "<div> common-obj-$(CONFIG_PCI_PIIX) += piix.o</div>\r\n" - "<div> common-obj-$(CONFIG_PCI_EXPRESS_Q35) += q35.o</div>\r\n" - "<div> common-obj-$(CONFIG_PCI_EXPRESS_GENERIC_BRIDGE) += gpex.o</div>\r\n" - "<div>diff --git a/hw/scsi/Makefile.objs b/hw/scsi/Makefile.objs</div>\r\n" - "<div>index 54b36ed..418af9a 100644</div>\r\n" - "<div>--- a/hw/scsi/Makefile.objs</div>\r\n" - "<div>+++ b/hw/scsi/Makefile.objs</div>\r\n" - "<div>@@ -4,7 +4,7 @@ common-obj-$(CONFIG_LSI_SCSI_PCI) += lsi53c895a.o</div>\r\n" - "<div> common-obj-$(CONFIG_MPTSAS_SCSI_PCI) += mptsas.o mptconfig.o mptendian.o</div>\r\n" - "<div> common-obj-$(CONFIG_MEGASAS_SCSI_PCI) += megasas.o</div>\r\n" - "<div> common-obj-$(CONFIG_VMW_PVSCSI_SCSI_PCI) += vmw_pvscsi.o</div>\r\n" - "<div>-common-obj-$(CONFIG_ESP) += esp.o</div>\r\n" - "<div>+obj-$(CONFIG_ESP) += esp.o</div>\r\n" - "<div> common-obj-$(CONFIG_ESP_PCI) += esp-pci.o</div>\r\n" - "<div> obj-$(CONFIG_SPAPR_VSCSI) += spapr_vscsi.o</div>\r\n" - "<div> </div>\r\n" - "<div>diff --git a/hw/ssi/Makefile.objs b/hw/ssi/Makefile.objs</div>\r\n" - "<div>index f5bcc65..54b5542 100644</div>\r\n" - "<div>--- a/hw/ssi/Makefile.objs</div>\r\n" - "<div>+++ b/hw/ssi/Makefile.objs</div>\r\n" - "<div>@@ -1,6 +1,6 @@</div>\r\n" - "<div> common-obj-$(CONFIG_PL022) += pl022.o</div>\r\n" - "<div> common-obj-$(CONFIG_SSI) += ssi.o</div>\r\n" - "<div>-common-obj-$(CONFIG_XILINX_SPI) += xilinx_spi.o</div>\r\n" - "<div>+obj-$(CONFIG_XILINX_SPI) += xilinx_spi.o</div>\r\n" - "<div> common-obj-$(CONFIG_XILINX_SPIPS) += xilinx_spips.o</div>\r\n" - "<div> common-obj-$(CONFIG_ASPEED_SOC) += aspeed_smc.o</div>\r\n" - "<div> common-obj-$(CONFIG_STM32F2XX_SPI) += stm32f2xx_spi.o</div>\r\n" - "<div>diff --git a/hw/timer/Makefile.objs b/hw/timer/Makefile.objs</div>\r\n" - "<div>index 123d92c..b27513f 100644</div>\r\n" - "<div>--- a/hw/timer/Makefile.objs</div>\r\n" - "<div>+++ b/hw/timer/Makefile.objs</div>\r\n" - "<div>@@ -12,10 +12,10 @@ ifeq ($(CONFIG_ISA_BUS),y)</div>\r\n" - "<div> common-obj-$(CONFIG_M48T59) += m48t59-isa.o</div>\r\n" - "<div> endif</div>\r\n" - "<div> common-obj-$(CONFIG_PL031) += pl031.o</div>\r\n" - "<div>-common-obj-$(CONFIG_PUV3) += puv3_ost.o</div>\r\n" - "<div>+obj-$(CONFIG_PUV3) += puv3_ost.o</div>\r\n" - "<div> common-obj-$(CONFIG_TWL92230) += twl92230.o</div>\r\n" - "<div>-common-obj-$(CONFIG_XILINX) += xilinx_timer.o</div>\r\n" - "<div>-common-obj-$(CONFIG_SLAVIO) += slavio_timer.o</div>\r\n" - "<div>+obj-$(CONFIG_XILINX) += xilinx_timer.o</div>\r\n" - "<div>+obj-$(CONFIG_SLAVIO) += slavio_timer.o</div>\r\n" - "<div> common-obj-$(CONFIG_ETRAXFS) += etraxfs_timer.o</div>\r\n" - "<div> common-obj-$(CONFIG_GRLIB) += grlib_gptimer.o</div>\r\n" - "<div> common-obj-$(CONFIG_IMX) += imx_epit.o</div>\r\n" - "<div>diff --git a/hw/virtio/Makefile.objs b/hw/virtio/Makefile.objs</div>\r\n" - "<div>index 964ce78..573b1a9 100644</div>\r\n" - "<div>--- a/hw/virtio/Makefile.objs</div>\r\n" - "<div>+++ b/hw/virtio/Makefile.objs</div>\r\n" - "<div>@@ -8,7 +8,7 @@ obj-$(CONFIG_VHOST_USER) += vhost-user.o</div>\r\n" - "<div> </div>\r\n" - "<div> common-obj-$(CONFIG_VIRTIO_RNG) += virtio-rng.o</div>\r\n" - "<div> common-obj-$(CONFIG_VIRTIO_PCI) += virtio-pci.o</div>\r\n" - "<div>-common-obj-$(CONFIG_VIRTIO_MMIO) += virtio-mmio.o</div>\r\n" - "<div>+obj-$(CONFIG_VIRTIO_MMIO) += virtio-mmio.o</div>\r\n" - "<div> obj-$(CONFIG_VIRTIO_BALLOON) += virtio-balloon.o</div>\r\n" - "<div> obj-$(CONFIG_VIRTIO_CRYPTO) += virtio-crypto.o</div>\r\n" - "<div> obj-$(call land,$(CONFIG_VIRTIO_CRYPTO),$(CONFIG_VIRTIO_PCI)) += virtio-crypto-pci.o</div>\r\n" - "<div>-- </div>\r\n" - "<div>1.8.3.1</div>\r\n" - "<div><br>\r\n" - "​<br>\r\n" - "</div>\r\n" - "<br>\r\n" - "</div>\r\n" - "</span></font></div>\r\n" - "</body>\r\n" - "</html>\r\n" -ede71cfb69ac718523a2781f12c83afb60bbfeb899e770fe8abb623683cb465b +a8a66c03c47a6f3a2b896228b261d4112eeec5f471e27d4202ea56ea54182bea
diff --git a/N2/1.1.hdr b/N2/1.1.hdr new file mode 100644 index 0000000..12686e4 --- /dev/null +++ b/N2/1.1.hdr @@ -0,0 +1,2 @@ +Content-Type: text/plain; charset="iso-8859-1" +Content-Transfer-Encoding: quoted-printable diff --git a/a/1.txt b/N2/1.1.txt similarity index 100% rename from a/1.txt rename to N2/1.1.txt diff --git a/a/2.bin b/N2/1.2.bin similarity index 100% rename from a/2.bin rename to N2/1.2.bin diff --git a/N2/1.2.hdr b/N2/1.2.hdr new file mode 100644 index 0000000..e54d0ae --- /dev/null +++ b/N2/1.2.hdr @@ -0,0 +1,2 @@ +Content-Type: text/html; charset="iso-8859-1" +Content-Transfer-Encoding: quoted-printable diff --git a/a/2.hdr b/N2/2.hdr index e54d0ae..5216513 100644 --- a/a/2.hdr +++ b/N2/2.hdr @@ -1,2 +1,4 @@ -Content-Type: text/html; charset="iso-8859-1" -Content-Transfer-Encoding: quoted-printable +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: base64 +Content-Disposition: inline diff --git a/N2/2.txt b/N2/2.txt new file mode 100644 index 0000000..d2ea9a6 --- /dev/null +++ b/N2/2.txt @@ -0,0 +1,4 @@ +_______________________________________________ +Xen-devel mailing list +Xen-devel@lists.xenproject.org +https://lists.xenproject.org/mailman/listinfo/xen-devel diff --git a/a/content_digest b/N2/content_digest index 47c6b35..79e12c0 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,96 +1,96 @@ "ref\043bc5e07ac614d0e8e740bf6007ff77b@tpw09926dag18e.domain1.systemhost.net\0" "From\0<tony.nguyen@bt.com>\0" - "Subject\0[Qemu-riscv] [Qemu-devel] [PATCH v7 31/42] build: Correct non-common common-obj-* to obj-*\0" + "Subject\0[Xen-devel] [Qemu-devel] [PATCH v7 31/42] build: Correct non-common common-obj-* to obj-*\0" "Date\0Fri, 16 Aug 2019 07:36:31 +0000\0" "To\0<qemu-devel@nongnu.org>\0" - "Cc\0<rth@twiddle.net>" - <pbonzini@redhat.com> - <mst@redhat.com> - <imammedo@redhat.com> - <marcel.apfelbaum@gmail.com> - <xiaoguangrong.eric@gmail.com> - <alistair@alistair23.me> - <peter.maydell@linaro.org> - <b.galvani@gmail.com> - <clg@kaod.org> - <andrew@aj.id.au> - <joel@jms.id.au> - <i.mitsyanko@gmail.com> - <robh@kernel.org> - <peter.chubb@nicta.com.au> - <sundeep.lkml@gmail.com> - <jan.kiszka@web.de> - <balrogg@gmail.com> - <eric.auger@redhat.com> - <kraxel@redhat.com> - <michael@walle.cc> - <kwolf@redhat.com> - <mreitz@redhat.com> - <jsnow@redhat.com> - <keith.busch@intel.com> - <philmd@redhat.com> - <marcandre.lureau@redhat.com> - <Andrew.Baumann@microsoft.com> - <edgar.iglesias@gmail.com> - <antonynpavlov@gmail.com> - <chouteau@adacore.com> - <frederic.konrad@adacore.com> - <huth@tuxfamily.org> - <mark.cave-ayland@ilande.co.uk> - <hpoussin@reactos.org> - <arikalo@wavecomp.com> - <balaton@eik.bme.hu> - <gxt@mprc.pku.edu.cn> - <david@gibson.dropbear.id.au> - <deller@gmx.de> - <ehabkost@redhat.com> - <sstabellini@kernel.org> - <anthony.perard@citrix.com> - <paul.durrant@citrix.com> - <aurelien@aurel32.net> - <amarkovic@wavecomp.com> - <magnus.damm@gmail.com> - <berto@igalia.com> - <minyard@acm.org> - <pburton@wavecomp.com> - <jslaby@suse.cz> - <jcd@tribudubois.net> - <andrew.smirnov@gmail.com> - <green@moxielogic.com> - <jasowang@redhat.com> - <dmitry.fleytman@gmail.com> - <sw@weilnetz.de> - <jiri@resnulli.us> - <crwulff@gmail.com> - <marex@denx.de> - <lersek@redhat.com> - <proljc@gmail.com> - <shorne@gmail.com> - <yuval.shaia@oracle.com> - <palmer@sifive.com> - <sagark@eecs.berkeley.edu> - <kbastian@mail.uni-paderborn.de> - <walling@linux.ibm.com> - <cohuck@redhat.com> - <david@redhat.com> - <pasic@linux.ibm.com> - <borntraeger@de.ibm.com> - <fam@euphon.net> - <hare@suse.com> - <atar4qemu@gmail.com> - <stefanb@linux.ibm.com> - <alex.williamson@redhat.com> - <jcmvbkbc@gmail.com> - <laurent@vivier.eu> - <claudio.fontana@suse.com> - <stefanha@redhat.com> - <qemu-arm@nongnu.org> - <qemu-block@nongnu.org> - <qemu-ppc@nongnu.org> - <xen-devel@lists.xenproject.org> - <qemu-riscv@nongnu.org> - " <qemu-s390x@nongnu.org>\0" - "\01:1\0" + "Cc\0frederic.konrad@adacore.com" + berto@igalia.com + qemu-block@nongnu.org + arikalo@wavecomp.com + pasic@linux.ibm.com + hpoussin@reactos.org + anthony.perard@citrix.com + xen-devel@lists.xenproject.org + lersek@redhat.com + jasowang@redhat.com + jiri@resnulli.us + ehabkost@redhat.com + b.galvani@gmail.com + eric.auger@redhat.com + alex.williamson@redhat.com + stefanha@redhat.com + jsnow@redhat.com + rth@twiddle.net + kwolf@redhat.com + andrew@aj.id.au + claudio.fontana@suse.com + crwulff@gmail.com + laurent@vivier.eu + sundeep.lkml@gmail.com + michael@walle.cc + qemu-ppc@nongnu.org + kbastian@mail.uni-paderborn.de + imammedo@redhat.com + fam@euphon.net + peter.maydell@linaro.org + david@redhat.com + palmer@sifive.com + balaton@eik.bme.hu + keith.busch@intel.com + jcmvbkbc@gmail.com + hare@suse.com + sstabellini@kernel.org + andrew.smirnov@gmail.com + deller@gmx.de + magnus.damm@gmail.com + marcel.apfelbaum@gmail.com + atar4qemu@gmail.com + minyard@acm.org + sw@weilnetz.de + yuval.shaia@oracle.com + qemu-s390x@nongnu.org + qemu-arm@nongnu.org + jan.kiszka@web.de + clg@kaod.org + shorne@gmail.com + qemu-riscv@nongnu.org + i.mitsyanko@gmail.com + cohuck@redhat.com + philmd@redhat.com + amarkovic@wavecomp.com + peter.chubb@nicta.com.au + aurelien@aurel32.net + pburton@wavecomp.com + sagark@eecs.berkeley.edu + green@moxielogic.com + kraxel@redhat.com + edgar.iglesias@gmail.com + gxt@mprc.pku.edu.cn + robh@kernel.org + borntraeger@de.ibm.com + joel@jms.id.au + antonynpavlov@gmail.com + chouteau@adacore.com + balrogg@gmail.com + Andrew.Baumann@microsoft.com + mreitz@redhat.com + walling@linux.ibm.com + dmitry.fleytman@gmail.com + mst@redhat.com + mark.cave-ayland@ilande.co.uk + jslaby@suse.cz + marex@denx.de + proljc@gmail.com + marcandre.lureau@redhat.com + alistair@alistair23.me + paul.durrant@citrix.com + david@gibson.dropbear.id.au + xiaoguangrong.eric@gmail.com + huth@tuxfamily.org + jcd@tribudubois.net + pbonzini@redhat.com + " stefanb@linux.ibm.com\0" + "\02:1.1\0" "b\0" "Preparation for replacing device_endian with MemOp.\n" "\n" @@ -436,7 +436,7 @@ "1.8.3.1\n" "\n" ? - "\01:2\0" + "\02:1.2\0" "b\0" "<html>\r\n" "<head>\r\n" @@ -802,5 +802,11 @@ "</span></font></div>\r\n" "</body>\r\n" "</html>\r\n" + "\01:2\0" + "b\0" + "_______________________________________________\n" + "Xen-devel mailing list\n" + "Xen-devel@lists.xenproject.org\n" + https://lists.xenproject.org/mailman/listinfo/xen-devel -ede71cfb69ac718523a2781f12c83afb60bbfeb899e770fe8abb623683cb465b +30dbafcc799374527dd72a075b08b505d7969a2bfd1aa2b61d530b6f48834b84
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.