Merge remote-tracking branch 'stefanha/trivial-patches' into staging

* stefanha/trivial-patches:
  configure: Earlier pkg-config probe
  vmmouse_reset(): remove minimal code duplication
  linux-user/syscall.c: remove wrong forward decl of setgroups()
  fix build error on ARM due to wrong glibc check
  gitignore: Add virtfs-proxy-helper
  arm_gic: Add cpu nr to Raised IRQ message
  zynq_slcr: Compile time warning fixes.
  pflash_cfi0x: Send debug messages to stderr
  pflash_cfi01: qemu_log_mask "unimplemented" msg
  net, hub: fix the indent in the comments

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Anthony Liguori 2012-12-18 15:41:43 -06:00
commit 914606d26e
10 changed files with 27 additions and 26 deletions

1
.gitignore vendored
View File

@ -47,6 +47,7 @@ test-qmp-output-visitor
test-string-input-visitor test-string-input-visitor
test-string-output-visitor test-string-output-visitor
test-visitor-serialization test-visitor-serialization
fsdev/virtfs-proxy-helper
fsdev/virtfs-proxy-helper.1 fsdev/virtfs-proxy-helper.1
fsdev/virtfs-proxy-helper.pod fsdev/virtfs-proxy-helper.pod
.gdbinit .gdbinit

16
configure vendored
View File

@ -1359,6 +1359,14 @@ esac
fi fi
##########################################
# pkg-config probe
if ! has "$pkg_config_exe"; then
echo "Error: pkg-config binary '$pkg_config_exe' not found"
exit 1
fi
########################################## ##########################################
# NPTL probe # NPTL probe
@ -1589,14 +1597,6 @@ if test "$xen_pci_passthrough" != "no"; then
fi fi
fi fi
##########################################
# pkg-config probe
if ! has "$pkg_config_exe"; then
echo "Error: pkg-config binary '$pkg_config_exe' not found"
exit 1
fi
########################################## ##########################################
# libtool probe # libtool probe

View File

@ -76,7 +76,7 @@ void gic_update(GICState *s)
if (best_prio < s->priority_mask[cpu]) { if (best_prio < s->priority_mask[cpu]) {
s->current_pending[cpu] = best_irq; s->current_pending[cpu] = best_irq;
if (best_prio < s->running_priority[cpu]) { if (best_prio < s->running_priority[cpu]) {
DPRINTF("Raised pending IRQ %d\n", best_irq); DPRINTF("Raised pending IRQ %d (cpu %d)\n", best_irq, cpu);
level = 1; level = 1;
} }
} }

View File

@ -46,15 +46,15 @@
#define PFLASH_BUG(fmt, ...) \ #define PFLASH_BUG(fmt, ...) \
do { \ do { \
printf("PFLASH: Possible BUG - " fmt, ## __VA_ARGS__); \ fprintf(stderr, "PFLASH: Possible BUG - " fmt, ## __VA_ARGS__); \
exit(1); \ exit(1); \
} while(0) } while(0)
/* #define PFLASH_DEBUG */ /* #define PFLASH_DEBUG */
#ifdef PFLASH_DEBUG #ifdef PFLASH_DEBUG
#define DPRINTF(fmt, ...) \ #define DPRINTF(fmt, ...) \
do { \ do { \
printf("PFLASH: " fmt , ## __VA_ARGS__); \ fprintf(stderr, "PFLASH: " fmt , ## __VA_ARGS__); \
} while (0) } while (0)
#else #else
#define DPRINTF(fmt, ...) do { } while (0) #define DPRINTF(fmt, ...) do { } while (0)
@ -438,9 +438,9 @@ static void pflash_write(pflash_t *pfl, hwaddr offset,
return; return;
error_flash: error_flash:
printf("%s: Unimplemented flash cmd sequence " qemu_log_mask(LOG_UNIMP, "%s: Unimplemented flash cmd sequence "
"(offset " TARGET_FMT_plx ", wcycle 0x%x cmd 0x%x value 0x%x)\n", "(offset " TARGET_FMT_plx ", wcycle 0x%x cmd 0x%x value 0x%x)"
__func__, offset, pfl->wcycle, pfl->cmd, value); "\n", __func__, offset, pfl->wcycle, pfl->cmd, value);
reset_flash: reset_flash:
memory_region_rom_device_set_readable(&pfl->mem, true); memory_region_rom_device_set_readable(&pfl->mem, true);

View File

@ -45,9 +45,9 @@
//#define PFLASH_DEBUG //#define PFLASH_DEBUG
#ifdef PFLASH_DEBUG #ifdef PFLASH_DEBUG
#define DPRINTF(fmt, ...) \ #define DPRINTF(fmt, ...) \
do { \ do { \
printf("PFLASH: " fmt , ## __VA_ARGS__); \ fprintf(stderr "PFLASH: " fmt , ## __VA_ARGS__); \
} while (0) } while (0)
#else #else
#define DPRINTF(fmt, ...) do { } while (0) #define DPRINTF(fmt, ...) do { } while (0)

View File

@ -252,7 +252,6 @@ static void vmmouse_reset(DeviceState *d)
{ {
VMMouseState *s = container_of(d, VMMouseState, dev.qdev); VMMouseState *s = container_of(d, VMMouseState, dev.qdev);
s->status = 0xffff;
s->queue_size = VMMOUSE_QUEUE_SIZE; s->queue_size = VMMOUSE_QUEUE_SIZE;
vmmouse_disable(s); vmmouse_disable(s);

View File

@ -334,7 +334,7 @@ static uint64_t zynq_slcr_read(void *opaque, hwaddr offset,
{ {
uint32_t ret = zynq_slcr_read_imp(opaque, offset); uint32_t ret = zynq_slcr_read_imp(opaque, offset);
DB_PRINT("addr: %08x data: %08x\n", offset, ret); DB_PRINT("addr: %08x data: %08x\n", (unsigned)offset, (unsigned)ret);
return ret; return ret;
} }
@ -343,7 +343,7 @@ static void zynq_slcr_write(void *opaque, hwaddr offset,
{ {
ZynqSLCRState *s = (ZynqSLCRState *)opaque; ZynqSLCRState *s = (ZynqSLCRState *)opaque;
DB_PRINT("offset: %08x data: %08x\n", offset, (unsigned)val); DB_PRINT("offset: %08x data: %08x\n", (unsigned)offset, (unsigned)val);
switch (offset) { switch (offset) {
case 0x00: /* SCL */ case 0x00: /* SCL */
@ -476,7 +476,8 @@ static void zynq_slcr_write(void *opaque, hwaddr offset,
break; break;
default: default:
bad_reg: bad_reg:
DB_PRINT("Bad register write %x <= %08x\n", (int)offset, val); DB_PRINT("Bad register write %x <= %08x\n", (int)offset,
(unsigned)val);
} }
} else { } else {
DB_PRINT("SCLR registers are locked. Unlock them first\n"); DB_PRINT("SCLR registers are locked. Unlock them first\n");

View File

@ -28,6 +28,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <time.h> #include <time.h>
#include <limits.h> #include <limits.h>
#include <grp.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/ipc.h> #include <sys/ipc.h>
#include <sys/msg.h> #include <sys/msg.h>
@ -584,7 +585,6 @@ extern int personality(int);
extern int flock(int, int); extern int flock(int, int);
extern int setfsuid(int); extern int setfsuid(int);
extern int setfsgid(int); extern int setfsgid(int);
extern int setgroups(int, gid_t *);
/* ARM EABI and MIPS expect 64bit types aligned even on pairs or registers */ /* ARM EABI and MIPS expect 64bit types aligned even on pairs or registers */
#ifdef TARGET_ARM #ifdef TARGET_ARM

View File

@ -256,7 +256,7 @@ void net_hub_info(Monitor *mon)
/** /**
* Get the hub id that a client is connected to * Get the hub id that a client is connected to
* *
* @id Pointer for hub id output, may be NULL * @id: Pointer for hub id output, may be NULL
*/ */
int net_hub_id_for_client(NetClientState *nc, int *id) int net_hub_id_for_client(NetClientState *nc, int *id)
{ {

View File

@ -436,7 +436,7 @@ int cpu_signal_handler(int host_signum, void *pinfo,
unsigned long pc; unsigned long pc;
int is_write; int is_write;
#if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3)) #if defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3))
pc = uc->uc_mcontext.gregs[R15]; pc = uc->uc_mcontext.gregs[R15];
#else #else
pc = uc->uc_mcontext.arm_pc; pc = uc->uc_mcontext.arm_pc;