On 11/18/10 16:41, Anthony Liguori wrote: > On 11/18/2010 09:35 AM, Michael Roth wrote: >>>> +/* listening fd, one for each service we're forwarding to remote >>>> end */ >>>> +typedef struct VPOForward { >>>> + VPDriver *drv; >>>> + int listen_fd; >>>> + char service_id[VP_SERVICE_ID_LEN]; >>>> + QLIST_ENTRY(VPOForward) next; >>>> +} VPOForward; >>> >>> I am really not a fan of the typedefmeharder approach you are taking in >>> here, but others may disagree with me. >> >> Isn't typedef'ing structured types part of the qemu coding style >> guidelines? > > Yes, I think Jes was just looking for an excuse to say "typedefmeharder" > :-)
Actually typedefs are not listed as a must do thing in CODING_STYLE, fortunately! It's just a really bad habit that is applied all over the place in QEMU :( http://www.linuxjournal.com/article/5780?page=0,2 search for typedef, for a lot of good reasoning why we shouldn't do this. Jes