qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] qemu-ui-gtk clipboard: fix for freeze-crashes v2


From: Manos Pitsidianakis
Subject: Re: [PATCH] qemu-ui-gtk clipboard: fix for freeze-crashes v2
Date: Mon, 16 Oct 2023 08:44:55 +0300
User-agent: meli 0.8.2

Hello Edmund,

The reproduction in the bug description sounds convoluted so I will focus on the code and patch instead:

First of all, the patch title should not include a `v2`. The versioning (reroll count) must go in the `[PATCH]` prefix, e.g. `[PATCH v2]` Secondly, the commit message should describe what the problem is and how the fixes in the patch are a solution for it.

See the "meaningfull commit message" in the QEMU docs.

https://www.qemu.org/docs/master/devel/submitting-a-patch.html

If your patch fixes a bug in the gitlab bug tracker, please add a line with “Resolves: <URL-of-the-bug>” to the commit message, too. Gitlab can close bugs automatically once commits with the “Resolved:” keyword get merged into the master branch of the project. And if your patch addresses a bug in another public bug tracker, you can also use a line with “Buglink: <URL-of-the-bug>” for reference here, too.

 Example:

Fixes: 14055ce53c2d ("s390x/tcg: avoid overflows in time2tod/tod2time")
 Resolves: https://gitlab.com/qemu-project/qemu/-/issues/42
 Buglink: https://bugs.launchpad.net/qemu/+bug/1804323``

This information should go before your Signed-off-by: trailer line.

You can still include all that information that should not go into the commit message by putting them below the -- line and above the patch, see https://www.qemu.org/docs/master/devel/submitting-a-patch.html#include-version-history-in-patchset-revisions


On Sat, 14 Oct 2023 11:48, Edmund Raile <edmund.raile@proton.me> wrote:
To not risk breaking anything in the mailing list, I'm starting this new mail thread instead of replying to my first one.

That's the right thing to do, replying to old versions will make it less visible to people.

Some code comments follow:


---
include/ui/clipboard.h |  2 ++
ui/gtk-clipboard.c     | 34 ++++++++++++++++++++--------------
2 files changed, 22 insertions(+), 14 deletions(-)

diff --git a/include/ui/clipboard.h b/include/ui/clipboard.h
index ab6acdbd8a..123c04fc07 100644
--- a/include/ui/clipboard.h
+++ b/include/ui/clipboard.h
@@ -106,6 +106,7 @@ struct QemuClipboardNotify {
 * @types: clipboard data array (one entry per type).
 * @has_serial: whether @serial is available.
 * @serial: the grab serial counter.
+ * @serial_last: used by GTK UI to discard outdated transaction results.
 *
 * Clipboard content data and metadata.
 */
@@ -115,6 +116,7 @@ struct QemuClipboardInfo {
    QemuClipboardSelection selection;
    bool has_serial;
    uint32_t serial;
+    uint32_t serial_last;
    struct {
        bool available;
        bool requested;
diff --git a/ui/gtk-clipboard.c b/ui/gtk-clipboard.c
index 8d8a636fd1..9e96cc2fb5 100644
--- a/ui/gtk-clipboard.c
+++ b/ui/gtk-clipboard.c
@@ -133,26 +133,38 @@ static void gd_clipboard_notify(Notifier *notifier, void 
*data)
    }
}

+/* asynchronous clipboard text transfer (host -> guest): callback */
+static void gd_clipboard_transfer_text_to_guest_callback(GtkClipboard 
*clipboard, const gchar *text, gpointer data)
+{
+    QemuClipboardInfo *info = (QemuClipboardInfo *)data;



+
+    // serial_last is intentionally not stored as a static in this function as 
callbacks implementing other data types (e.g. images) need access as well

This line and several others are too long. If you run scripts/checkpatch.pl on your patch you will see them reported:

 ERROR: line over 90 characters
 #81: FILE: ui/gtk-clipboard.c:141:
+ // serial_last is intentionally not stored as a static in this function as callbacks implementing other data types (e.g. images) need access as well

Also, no C99 // comments:

 ERROR: do not use C99 // comments
 #81: FILE: ui/gtk-clipboard.c:141:
+ // serial_last is intentionally not stored as a static in this function as callbacks implementing other data types (e.g. images) need access as well

In any case I think this comment is not needed.

+
+    if (text && (info->serial > info->serial_last)) {
+        info->types[QEMU_CLIPBOARD_TYPE_TEXT].available = true;
+        qemu_clipboard_update(info);
+        info->serial_last = info->serial;
+    }
+
+    qemu_clipboard_info_unref(info);

Does this free `info`? If yes why update its fields in the previous line?

--
Manos



reply via email to

[Prev in Thread] Current Thread [Next in Thread]