All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type
@ 2015-04-08 18:04 Chih-Min Chao
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 1/5] bitops : fix coding style Chih-Min Chao
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Chih-Min Chao @ 2015-04-08 18:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, kraxel

    patch 1-2 
        fix the coding style related to space indent and brance position

    patch 3-5 
        remove the 'struct' from the type which has been typedef


Chih-Min Chao (5):
  bitops : fix coding style
  ui/vnc : fix coding style
  ui/vnc : remove 'struct' of 'typedef struct'
  ui/console : remove 'struct' from 'typedef struct' type
  hw/display : remove 'struct' from 'typedef QXL struct'

 hw/display/qxl.c       |  2 +-
 include/qemu/bitops.h  | 61 +++++++++++++++++++++++++-------------------------
 ui/console.c           |  4 ++--
 ui/spice-display.c     |  8 +++----
 ui/vnc-auth-vencrypt.c |  8 ++++---
 ui/vnc-tls.c           | 10 ++++-----
 ui/vnc-ws.c            |  4 ++--
 ui/vnc.c               |  2 +-
 8 files changed, 51 insertions(+), 48 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PATCH 1/5] bitops : fix coding style
  2015-04-08 18:04 [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Chih-Min Chao
@ 2015-04-08 18:04 ` Chih-Min Chao
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 2/5] ui/vnc " Chih-Min Chao
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Chih-Min Chao @ 2015-04-08 18:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, kraxel, Chih-Min Chao

    don't mix tab and space. The rule is 4 spaces

Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
---
 include/qemu/bitops.h | 61 ++++++++++++++++++++++++++-------------------------
 1 file changed, 31 insertions(+), 30 deletions(-)

diff --git a/include/qemu/bitops.h b/include/qemu/bitops.h
index 90ca8df..8abdcf9 100644
--- a/include/qemu/bitops.h
+++ b/include/qemu/bitops.h
@@ -20,10 +20,10 @@
 #define BITS_PER_BYTE           CHAR_BIT
 #define BITS_PER_LONG           (sizeof (unsigned long) * BITS_PER_BYTE)
 
-#define BIT(nr)			(1UL << (nr))
-#define BIT_MASK(nr)		(1UL << ((nr) % BITS_PER_LONG))
-#define BIT_WORD(nr)		((nr) / BITS_PER_LONG)
-#define BITS_TO_LONGS(nr)	DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
+#define BIT(nr)                 (1UL << (nr))
+#define BIT_MASK(nr)            (1UL << ((nr) % BITS_PER_LONG))
+#define BIT_WORD(nr)            ((nr) / BITS_PER_LONG)
+#define BITS_TO_LONGS(nr)       DIV_ROUND_UP(nr, BITS_PER_BYTE * sizeof(long))
 
 /**
  * set_bit - Set a bit in memory
@@ -32,10 +32,10 @@
  */
 static inline void set_bit(long nr, unsigned long *addr)
 {
-	unsigned long mask = BIT_MASK(nr);
-        unsigned long *p = addr + BIT_WORD(nr);
+    unsigned long mask = BIT_MASK(nr);
+    unsigned long *p = addr + BIT_WORD(nr);
 
-	*p  |= mask;
+    *p  |= mask;
 }
 
 /**
@@ -45,10 +45,10 @@ static inline void set_bit(long nr, unsigned long *addr)
  */
 static inline void clear_bit(long nr, unsigned long *addr)
 {
-	unsigned long mask = BIT_MASK(nr);
-        unsigned long *p = addr + BIT_WORD(nr);
+    unsigned long mask = BIT_MASK(nr);
+    unsigned long *p = addr + BIT_WORD(nr);
 
-	*p &= ~mask;
+    *p &= ~mask;
 }
 
 /**
@@ -58,10 +58,10 @@ static inline void clear_bit(long nr, unsigned long *addr)
  */
 static inline void change_bit(long nr, unsigned long *addr)
 {
-	unsigned long mask = BIT_MASK(nr);
-        unsigned long *p = addr + BIT_WORD(nr);
+    unsigned long mask = BIT_MASK(nr);
+    unsigned long *p = addr + BIT_WORD(nr);
 
-	*p ^= mask;
+    *p ^= mask;
 }
 
 /**
@@ -71,12 +71,12 @@ static inline void change_bit(long nr, unsigned long *addr)
  */
 static inline int test_and_set_bit(long nr, unsigned long *addr)
 {
-	unsigned long mask = BIT_MASK(nr);
-        unsigned long *p = addr + BIT_WORD(nr);
-	unsigned long old = *p;
+    unsigned long mask = BIT_MASK(nr);
+    unsigned long *p = addr + BIT_WORD(nr);
+    unsigned long old = *p;
 
-	*p = old | mask;
-	return (old & mask) != 0;
+    *p = old | mask;
+    return (old & mask) != 0;
 }
 
 /**
@@ -86,12 +86,12 @@ static inline int test_and_set_bit(long nr, unsigned long *addr)
  */
 static inline int test_and_clear_bit(long nr, unsigned long *addr)
 {
-	unsigned long mask = BIT_MASK(nr);
-        unsigned long *p = addr + BIT_WORD(nr);
-	unsigned long old = *p;
+    unsigned long mask = BIT_MASK(nr);
+    unsigned long *p = addr + BIT_WORD(nr);
+    unsigned long old = *p;
 
-	*p = old & ~mask;
-	return (old & mask) != 0;
+    *p = old & ~mask;
+    return (old & mask) != 0;
 }
 
 /**
@@ -101,12 +101,12 @@ static inline int test_and_clear_bit(long nr, unsigned long *addr)
  */
 static inline int test_and_change_bit(long nr, unsigned long *addr)
 {
-	unsigned long mask = BIT_MASK(nr);
-        unsigned long *p = addr + BIT_WORD(nr);
-	unsigned long old = *p;
+    unsigned long mask = BIT_MASK(nr);
+    unsigned long *p = addr + BIT_WORD(nr);
+    unsigned long old = *p;
 
-	*p = old ^ mask;
-	return (old & mask) != 0;
+    *p = old ^ mask;
+    return (old & mask) != 0;
 }
 
 /**
@@ -116,7 +116,7 @@ static inline int test_and_change_bit(long nr, unsigned long *addr)
  */
 static inline int test_bit(long nr, const unsigned long *addr)
 {
-	return 1UL & (addr[BIT_WORD(nr)] >> (nr & (BITS_PER_LONG-1)));
+    return 1UL & (addr[BIT_WORD(nr)] >> (nr & (BITS_PER_LONG-1)));
 }
 
 /**
@@ -136,7 +136,8 @@ unsigned long find_last_bit(const unsigned long *addr,
  * @size: The bitmap size in bits
  */
 unsigned long find_next_bit(const unsigned long *addr,
-				   unsigned long size, unsigned long offset);
+                            unsigned long size,
+                            unsigned long offset);
 
 /**
  * find_next_zero_bit - find the next cleared bit in a memory region
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PATCH 2/5] ui/vnc : fix coding style
  2015-04-08 18:04 [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Chih-Min Chao
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 1/5] bitops : fix coding style Chih-Min Chao
@ 2015-04-08 18:04 ` Chih-Min Chao
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 3/5] ui/vnc : remove 'struct' of 'typedef struct' Chih-Min Chao
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Chih-Min Chao @ 2015-04-08 18:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, kraxel, Chih-Min Chao

    reported by checkpatch.pl

Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
---
 ui/vnc-auth-vencrypt.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/ui/vnc-auth-vencrypt.c b/ui/vnc-auth-vencrypt.c
index a420ccb..65f1afa 100644
--- a/ui/vnc-auth-vencrypt.c
+++ b/ui/vnc-auth-vencrypt.c
@@ -65,7 +65,8 @@ static void start_auth_vencrypt_subauth(VncState *vs)
 
 static void vnc_tls_handshake_io(void *opaque);
 
-static int vnc_start_vencrypt_handshake(struct VncState *vs) {
+static int vnc_start_vencrypt_handshake(struct VncState *vs)
+{
     int ret;
 
     if ((ret = gnutls_handshake(vs->tls.session)) < 0) {
@@ -100,7 +101,8 @@ static int vnc_start_vencrypt_handshake(struct VncState *vs) {
     return 0;
 }
 
-static void vnc_tls_handshake_io(void *opaque) {
+static void vnc_tls_handshake_io(void *opaque)
+{
     struct VncState *vs = (struct VncState *)opaque;
 
     VNC_DEBUG("Handshake IO continue\n");
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PATCH 3/5] ui/vnc : remove 'struct' of 'typedef struct'
  2015-04-08 18:04 [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Chih-Min Chao
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 1/5] bitops : fix coding style Chih-Min Chao
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 2/5] ui/vnc " Chih-Min Chao
@ 2015-04-08 18:04 ` Chih-Min Chao
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 4/5] ui/console : remove 'struct' from 'typedef struct' type Chih-Min Chao
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Chih-Min Chao @ 2015-04-08 18:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, kraxel, Chih-Min Chao

Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
---
 ui/vnc-auth-vencrypt.c |  4 ++--
 ui/vnc-tls.c           | 10 +++++-----
 ui/vnc-ws.c            |  4 ++--
 ui/vnc.c               |  2 +-
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/ui/vnc-auth-vencrypt.c b/ui/vnc-auth-vencrypt.c
index 65f1afa..03ea48a 100644
--- a/ui/vnc-auth-vencrypt.c
+++ b/ui/vnc-auth-vencrypt.c
@@ -65,7 +65,7 @@ static void start_auth_vencrypt_subauth(VncState *vs)
 
 static void vnc_tls_handshake_io(void *opaque);
 
-static int vnc_start_vencrypt_handshake(struct VncState *vs)
+static int vnc_start_vencrypt_handshake(VncState *vs)
 {
     int ret;
 
@@ -103,7 +103,7 @@ static int vnc_start_vencrypt_handshake(struct VncState *vs)
 
 static void vnc_tls_handshake_io(void *opaque)
 {
-    struct VncState *vs = (struct VncState *)opaque;
+    VncState *vs = (VncState *)opaque;
 
     VNC_DEBUG("Handshake IO continue\n");
     vnc_start_vencrypt_handshake(vs);
diff --git a/ui/vnc-tls.c b/ui/vnc-tls.c
index eddd39b..028fc4d 100644
--- a/ui/vnc-tls.c
+++ b/ui/vnc-tls.c
@@ -68,7 +68,7 @@ static int vnc_tls_initialize(void)
 static ssize_t vnc_tls_push(gnutls_transport_ptr_t transport,
                             const void *data,
                             size_t len) {
-    struct VncState *vs = (struct VncState *)transport;
+    VncState *vs = (VncState *)transport;
     int ret;
 
  retry:
@@ -85,7 +85,7 @@ static ssize_t vnc_tls_push(gnutls_transport_ptr_t transport,
 static ssize_t vnc_tls_pull(gnutls_transport_ptr_t transport,
                             void *data,
                             size_t len) {
-    struct VncState *vs = (struct VncState *)transport;
+    VncState *vs = (VncState *)transport;
     int ret;
 
  retry:
@@ -170,7 +170,7 @@ static gnutls_certificate_credentials_t vnc_tls_initialize_x509_cred(VncDisplay
 }
 
 
-int vnc_tls_validate_certificate(struct VncState *vs)
+int vnc_tls_validate_certificate(VncState *vs)
 {
     int ret;
     unsigned int status;
@@ -332,7 +332,7 @@ static int vnc_set_gnutls_priority(gnutls_session_t s, int x509)
 
 #endif
 
-int vnc_tls_client_setup(struct VncState *vs,
+int vnc_tls_client_setup(VncState *vs,
                          int needX509Creds) {
     VNC_DEBUG("Do TLS setup\n");
     if (vnc_tls_initialize() < 0) {
@@ -410,7 +410,7 @@ int vnc_tls_client_setup(struct VncState *vs,
 }
 
 
-void vnc_tls_client_cleanup(struct VncState *vs)
+void vnc_tls_client_cleanup(VncState *vs)
 {
     if (vs->tls.session) {
         gnutls_deinit(vs->tls.session);
diff --git a/ui/vnc-ws.c b/ui/vnc-ws.c
index 62eb97f..38a1b8b 100644
--- a/ui/vnc-ws.c
+++ b/ui/vnc-ws.c
@@ -24,7 +24,7 @@
 #ifdef CONFIG_VNC_TLS
 #include "qemu/sockets.h"
 
-static int vncws_start_tls_handshake(struct VncState *vs)
+static int vncws_start_tls_handshake(VncState *vs)
 {
     int ret = gnutls_handshake(vs->tls.session);
 
@@ -63,7 +63,7 @@ static int vncws_start_tls_handshake(struct VncState *vs)
 
 void vncws_tls_handshake_io(void *opaque)
 {
-    struct VncState *vs = (struct VncState *)opaque;
+    VncState *vs = (VncState *)opaque;
 
     if (!vs->tls.session) {
         VNC_DEBUG("TLS Websocket setup\n");
diff --git a/ui/vnc.c b/ui/vnc.c
index cffb5b7..9f8ecd0 100644
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -1046,7 +1046,7 @@ static void vnc_dpy_cursor_define(DisplayChangeListener *dcl,
     }
 }
 
-static int find_and_clear_dirty_height(struct VncState *vs,
+static int find_and_clear_dirty_height(VncState *vs,
                                        int y, int last_x, int x, int height)
 {
     int h;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PATCH 4/5] ui/console : remove 'struct' from 'typedef struct' type
  2015-04-08 18:04 [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Chih-Min Chao
                   ` (2 preceding siblings ...)
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 3/5] ui/vnc : remove 'struct' of 'typedef struct' Chih-Min Chao
@ 2015-04-08 18:04 ` Chih-Min Chao
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 5/5] hw/display : remove 'struct' from 'typedef QXL struct' Chih-Min Chao
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Chih-Min Chao @ 2015-04-08 18:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, kraxel, Chih-Min Chao

Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
---
 ui/console.c       | 4 ++--
 ui/spice-display.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ui/console.c b/ui/console.c
index b15ca87..d8d268c 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -269,7 +269,7 @@ void graphic_hw_invalidate(QemuConsole *con)
     }
 }
 
-static void ppm_save(const char *filename, struct DisplaySurface *ds,
+static void ppm_save(const char *filename, DisplaySurface *ds,
                      Error **errp)
 {
     int width = pixman_image_get_width(ds->image);
@@ -1535,7 +1535,7 @@ void dpy_text_update(QemuConsole *con, int x, int y, int w, int h)
 void dpy_text_resize(QemuConsole *con, int w, int h)
 {
     DisplayState *s = con->ds;
-    struct DisplayChangeListener *dcl;
+    DisplayChangeListener *dcl;
 
     if (!qemu_console_is_visible(con)) {
         return;
diff --git a/ui/spice-display.c b/ui/spice-display.c
index 1644185..6767d08 100644
--- a/ui/spice-display.c
+++ b/ui/spice-display.c
@@ -715,7 +715,7 @@ static void display_update(DisplayChangeListener *dcl,
 }
 
 static void display_switch(DisplayChangeListener *dcl,
-                           struct DisplaySurface *surface)
+                           DisplaySurface *surface)
 {
     SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl);
     qemu_spice_display_switch(ssd, surface);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [Qemu-devel] [PATCH 5/5] hw/display : remove 'struct' from 'typedef QXL struct'
  2015-04-08 18:04 [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Chih-Min Chao
                   ` (3 preceding siblings ...)
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 4/5] ui/console : remove 'struct' from 'typedef struct' type Chih-Min Chao
@ 2015-04-08 18:04 ` Chih-Min Chao
  2015-04-09  7:03 ` [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Gerd Hoffmann
  2015-04-25  6:23 ` Michael Tokarev
  6 siblings, 0 replies; 8+ messages in thread
From: Chih-Min Chao @ 2015-04-08 18:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, kraxel, Chih-Min Chao

Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
---
 hw/display/qxl.c   | 2 +-
 ui/spice-display.c | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/display/qxl.c b/hw/display/qxl.c
index b6d65b9..0cd314c 100644
--- a/hw/display/qxl.c
+++ b/hw/display/qxl.c
@@ -696,7 +696,7 @@ static inline void qxl_push_free_res(PCIQXLDevice *d, int flush)
 
 /* called from spice server thread context only */
 static void interface_release_resource(QXLInstance *sin,
-                                       struct QXLReleaseInfoExt ext)
+                                       QXLReleaseInfoExt ext)
 {
     PCIQXLDevice *qxl = container_of(sin, PCIQXLDevice, ssd.qxl);
     QXLReleaseRing *ring;
diff --git a/ui/spice-display.c b/ui/spice-display.c
index 6767d08..32263a3 100644
--- a/ui/spice-display.c
+++ b/ui/spice-display.c
@@ -536,7 +536,7 @@ static void interface_get_init_info(QXLInstance *sin, QXLDevInitInfo *info)
     info->n_surfaces = ssd->num_surfaces;
 }
 
-static int interface_get_command(QXLInstance *sin, struct QXLCommandExt *ext)
+static int interface_get_command(QXLInstance *sin, QXLCommandExt *ext)
 {
     SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
     SimpleSpiceUpdate *update;
@@ -563,7 +563,7 @@ static int interface_req_cmd_notification(QXLInstance *sin)
 }
 
 static void interface_release_resource(QXLInstance *sin,
-                                       struct QXLReleaseInfoExt rext)
+                                       QXLReleaseInfoExt rext)
 {
     SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
     SimpleSpiceUpdate *update;
@@ -586,7 +586,7 @@ static void interface_release_resource(QXLInstance *sin,
     }
 }
 
-static int interface_get_cursor_command(QXLInstance *sin, struct QXLCommandExt *ext)
+static int interface_get_cursor_command(QXLInstance *sin, QXLCommandExt *ext)
 {
     SimpleSpiceDisplay *ssd = container_of(sin, SimpleSpiceDisplay, qxl);
     int ret;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type
  2015-04-08 18:04 [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Chih-Min Chao
                   ` (4 preceding siblings ...)
  2015-04-08 18:04 ` [Qemu-devel] [PATCH 5/5] hw/display : remove 'struct' from 'typedef QXL struct' Chih-Min Chao
@ 2015-04-09  7:03 ` Gerd Hoffmann
  2015-04-25  6:23 ` Michael Tokarev
  6 siblings, 0 replies; 8+ messages in thread
From: Gerd Hoffmann @ 2015-04-09  7:03 UTC (permalink / raw)
  To: Chih-Min Chao; +Cc: qemu-trivial, qemu-devel

On Do, 2015-04-09 at 02:04 +0800, Chih-Min Chao wrote:
>   bitops : fix coding style
>   ui/vnc : fix coding style
>   ui/vnc : remove 'struct' of 'typedef struct'
>   ui/console : remove 'struct' from 'typedef struct' type
>   hw/display : remove 'struct' from 'typedef QXL struct'

Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type
  2015-04-08 18:04 [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Chih-Min Chao
                   ` (5 preceding siblings ...)
  2015-04-09  7:03 ` [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Gerd Hoffmann
@ 2015-04-25  6:23 ` Michael Tokarev
  6 siblings, 0 replies; 8+ messages in thread
From: Michael Tokarev @ 2015-04-25  6:23 UTC (permalink / raw)
  To: Chih-Min Chao, qemu-devel; +Cc: qemu-trivial, kraxel

08.04.2015 21:04, Chih-Min Chao wrote:
>     patch 1-2 
>         fix the coding style related to space indent and brance position
> 
>     patch 3-5 
>         remove the 'struct' from the type which has been typedef
> 
> Chih-Min Chao (5):
>   bitops : fix coding style
>   ui/vnc : fix coding style
>   ui/vnc : remove 'struct' of 'typedef struct'
>   ui/console : remove 'struct' from 'typedef struct' type
>   hw/display : remove 'struct' from 'typedef QXL struct'
> 
>  hw/display/qxl.c       |  2 +-
>  include/qemu/bitops.h  | 61 +++++++++++++++++++++++++-------------------------
>  ui/console.c           |  4 ++--
>  ui/spice-display.c     |  8 +++----
>  ui/vnc-auth-vencrypt.c |  8 ++++---
>  ui/vnc-tls.c           | 10 ++++-----
>  ui/vnc-ws.c            |  4 ++--
>  ui/vnc.c               |  2 +-
>  8 files changed, 51 insertions(+), 48 deletions(-)

Applied to -trivial, thank you!

/mjt

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-04-25  6:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-08 18:04 [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Chih-Min Chao
2015-04-08 18:04 ` [Qemu-devel] [PATCH 1/5] bitops : fix coding style Chih-Min Chao
2015-04-08 18:04 ` [Qemu-devel] [PATCH 2/5] ui/vnc " Chih-Min Chao
2015-04-08 18:04 ` [Qemu-devel] [PATCH 3/5] ui/vnc : remove 'struct' of 'typedef struct' Chih-Min Chao
2015-04-08 18:04 ` [Qemu-devel] [PATCH 4/5] ui/console : remove 'struct' from 'typedef struct' type Chih-Min Chao
2015-04-08 18:04 ` [Qemu-devel] [PATCH 5/5] hw/display : remove 'struct' from 'typedef QXL struct' Chih-Min Chao
2015-04-09  7:03 ` [Qemu-devel] [PATCH 0/5] fix coding style and use of typedef type Gerd Hoffmann
2015-04-25  6:23 ` Michael Tokarev

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.