From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?B?Um9nZXIgUGF1IE1vbm7DqQ==?= Subject: Guidelines for new PV protocol submission Date: Tue, 20 Jan 2015 13:47:38 +0100 Message-ID: <54BE4E6A.8010102@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1YDYE8-00015R-7G for xen-devel@lists.xenproject.org; Tue, 20 Jan 2015 12:48:12 +0000 List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel Cc: oleksandr.dmytryshyn@globallogic.com, Ian Jackson , Ian Campbell , Jan Beulich , Stefano Stabellini List-Id: xen-devel@lists.xenproject.org Hello, I should probably have done this earlier because I've been aware of this issue for a long time (since I've started dealing with the PV blk protocol). The current way to describe PV protocols in Xen is very inefficient IMHO. Using C structs as "the description" of a binary protocol seems very wrong, specially taking into account that different ABIs can generate different layouts for the same C struct. This is for example a problem in the PV blk protocol, since the binary layout of the structures change depending on the bitness. In order to avoid this, I would like to request that any new PV protocol that's added to Xen be described in binary terms, just like it's normally done with other protocols. As a reference see for example the following section from the TCP RFC: http://tools.ietf.org/html/rfc793#page-15 I think this is both more easy to understand and removes the bitness problem of using C structs. Then each user of this protocol could define it's own set of structures that would map to the binary layout, which should be almost trivial. There would be no problem with using __packed or similar gcc'isms as each implementation could choose the more convenient way to represent this layout internally. Roger.