Skip to content

Commit 3d7cad3

Browse files
committed
Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-for-5.1-pull-request' into staging
trivial branch patches 20200707 # gpg: Signature made Tue 07 Jul 2020 11:52:06 BST # gpg: using RSA key CD2F75DDC8E3A4DC2E4F5173F30C38BD3F2FBE3C # gpg: issuer "[email protected]" # gpg: Good signature from "Laurent Vivier <[email protected]>" [full] # gpg: aka "Laurent Vivier <[email protected]>" [full] # gpg: aka "Laurent Vivier (Red Hat) <[email protected]>" [full] # Primary key fingerprint: CD2F 75DD C8E3 A4DC 2E4F 5173 F30C 38BD 3F2F BE3C * remotes/vivier2/tags/trivial-branch-for-5.1-pull-request: net/tap-solaris.c: Include qemu-common.h for TFR macro intel_iommu: "aw-bits" error message still refers to "x-aw-bits" util/qemu-option: Document the get_opt_value() function MAINTAINERS: Update Radoslaw Biernacki email address .mailmap: Update Alexander Graf email address trivial: Respect alphabetical order of .o files in Makefile.objs fix the prototype of muls64/mulu64 Signed-off-by: Peter Maydell <[email protected]>
2 parents 48f22ad + 89615cf commit 3d7cad3

File tree

7 files changed

+21
-5
lines changed

7 files changed

+21
-5
lines changed

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,13 @@ Aleksandar Markovic <[email protected]> <aleksandar.markovic@imgte
4444
Aleksandar Markovic <[email protected]> <[email protected]>
4545
4646
47+
4748
Anthony Liguori <[email protected]> Anthony Liguori <[email protected]>
4849
4950
5051
5152
53+
Radoslaw Biernacki <[email protected]> <[email protected]>
5254
5355
5456

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ F: include/hw/misc/imx6_*.h
809809
F: include/hw/ssi/imx_spi.h
810810

811811
SBSA-REF
812-
M: Radoslaw Biernacki <[email protected]>
812+
M: Radoslaw Biernacki <[email protected]>
813813
M: Peter Maydell <[email protected]>
814814
R: Leif Lindholm <[email protected]>
815815

hw/i386/intel_iommu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3758,7 +3758,7 @@ static bool vtd_decide_config(IntelIOMMUState *s, Error **errp)
37583758
/* Currently only address widths supported are 39 and 48 bits */
37593759
if ((s->aw_bits != VTD_HOST_AW_39BIT) &&
37603760
(s->aw_bits != VTD_HOST_AW_48BIT)) {
3761-
error_setg(errp, "Supported values for x-aw-bits are: %d, %d",
3761+
error_setg(errp, "Supported values for aw-bits are: %d, %d",
37623762
VTD_HOST_AW_39BIT, VTD_HOST_AW_48BIT);
37633763
return false;
37643764
}

include/qemu/host-utils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ static inline int divs128(int64_t *plow, int64_t *phigh, int64_t divisor)
7777
}
7878
}
7979
#else
80-
void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b);
81-
void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b);
80+
void muls64(uint64_t *plow, uint64_t *phigh, int64_t a, int64_t b);
81+
void mulu64(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b);
8282
int divu128(uint64_t *plow, uint64_t *phigh, uint64_t divisor);
8383
int divs128(int64_t *plow, int64_t *phigh, int64_t divisor);
8484

include/qemu/option.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@
2828

2929
#include "qemu/queue.h"
3030

31+
/**
32+
* get_opt_value
33+
* @p: a pointer to the option name, delimited by commas
34+
* @value: a non-NULL pointer that will received the delimited options
35+
*
36+
* The @value char pointer will be allocated and filled with
37+
* the delimited options.
38+
*
39+
* Returns the position of the comma delimiter/zero byte after the
40+
* option name in @p.
41+
* The memory pointer in @value must be released with a call to g_free()
42+
* when no longer required.
43+
*/
3144
const char *get_opt_value(const char *p, char **value);
3245

3346
void parse_option_size(const char *name, const char *value,

net/tap-solaris.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include "tap_int.h"
2828
#include "qemu/ctype.h"
2929
#include "qemu/cutils.h"
30+
#include "qemu-common.h"
3031

3132
#include <sys/ethernet.h>
3233
#include <sys/sockio.h>

stubs/Makefile.objs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ stub-obj-y += replay.o
2121
stub-obj-y += runstate-check.o
2222
stub-obj-$(CONFIG_SOFTMMU) += semihost.o
2323
stub-obj-y += set-fd-handler.o
24-
stub-obj-y += vmgenid.o
2524
stub-obj-y += sysbus.o
2625
stub-obj-y += tpm.o
2726
stub-obj-y += trace-control.o
27+
stub-obj-y += vmgenid.o
2828
stub-obj-y += vmstate.o
2929
stub-obj-$(CONFIG_SOFTMMU) += win32-kbd-hook.o
3030

0 commit comments

Comments
 (0)