|
| From: | Xiao Guangrong |
| Subject: | Re: [Qemu-devel] [PATCH v3 5/8] nvdimm acpi: introduce patched dsm memory |
| Date: | Tue, 1 Mar 2016 16:53:23 +0800 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 |
On 02/29/2016 05:38 PM, Michael S. Tsirkin wrote:
+/* Build NAME(XXXX, 0x00000000) where 0x00000000 is encoded as a dword,
+ * and return the offset to 0x00000000 for runtime patching.
+ *
+ * Warning: runtime patching is best avoided. Only use this as
+ * a replacement for DataTableRegion (for guests that don't
+ * support it).
+ */
+int
+build_append_named_dword(GArray *array, const char *name_format, ...)
+{
+ int offset;
+ va_list ap;
+
+ va_start(ap, name_format);
+ build_append_namestringv(array, name_format, ap);
+ va_end(ap);
The NameOP was missed here... The idea is great and i fixed and applied it on the top this patchset, the patch is attached, would it be good to you?
0001-acpi-add-build_append_named_dword-returning-an-offse.patch
Description: Text Data
| [Prev in Thread] | Current Thread | [Next in Thread] |