Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1602714
| From | Stefano Stabellini <sstabellini@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v4 0/7] Xen transport for 9pfs frontend driver |
| Date | 2017-03-16 18:50 +0100 |
| Message-ID | <tlHHc-1ID-33@gated-at.bofh.it> (permalink) |
| References | <tlmMp-3Hv-1@gated-at.bofh.it> <tlwVt-2BJ-33@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Thu, 16 Mar 2017, Juergen Gross wrote: > On 15/03/17 20:23, Stefano Stabellini wrote: > > Hi all, > > > > This patch series implements a new transport for 9pfs, aimed at Xen > > systems. > > > > The transport is based on a traditional Xen frontend and backend drivers > > pair. This patch series implements the frontend, which typically runs in > > a regular unprivileged guest. > > > > I also sent a series that implements the backend in userspace in QEMU, > > which typically runs in Dom0 (but could also run in a another guest). > > > > The frontend complies to the Xen transport for 9pfs specification > > version 1, available here: > > > > http://xenbits.xen.org/gitweb/?p=xen.git;a=blob_plain;f=docs/misc/9pfs.markdown;hb=HEAD > > > > > > Changes in v4: > > - code style improvements > > - use xenbus_read_unsigned when possible > > - do not leak "versions" > > - introduce BUILD_BUG_ON > > - introduce rwlock to protect the xen_9pfs_devs list > > - add review-by > > > > Changes in v3: > > - add full copyright header to trans_xen.c > > - rename ring->ring to ring->data > > - handle gnttab_grant_foreign_access errors > > - remove ring->bytes > > - wrap long lines > > - add reviewed-by > > > > Changes in v2: > > - use XEN_PAGE_SHIFT instead of PAGE_SHIFT > > - remove unnecessary initializations > > - fix error paths > > - fix memory allocations for 64K kernels > > - simplify p9_xen_create and p9_xen_close > > - use virt_XXX barriers > > - set status = REQ_STATUS_ERROR inside the p9_xen_response loop > > - add in-code comments > > > > > > Stefano Stabellini (7): > > xen: import new ring macros in ring.h > > xen: introduce the header file for the Xen 9pfs transport protocol > > xen/9pfs: introduce Xen 9pfs transport driver > > xen/9pfs: connect to the backend > > xen/9pfs: send requests to the backend > > xen/9pfs: receive responses > > xen/9pfs: build 9pfs Xen transport driver > > > > include/xen/interface/io/9pfs.h | 40 ++++ > > include/xen/interface/io/ring.h | 131 ++++++++++ > > net/9p/Kconfig | 8 + > > net/9p/Makefile | 4 + > > net/9p/trans_xen.c | 513 ++++++++++++++++++++++++++++++++++++++++ > > 5 files changed, 696 insertions(+) > > create mode 100644 include/xen/interface/io/9pfs.h > > create mode 100644 net/9p/trans_xen.c > > I strongly recommend running checkpatch.pl to avoid style problems. This > will save us some more rounds, I guess: there are multiple style > violations in the patches which are not related to the header import > from Xen. Yes, you are right. FWIW I have just ran checkpatch.pl for the QEMU series, I'll do that for Linux too.
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v4 0/7] Xen transport for 9pfs frontend driver Stefano Stabellini <sstabellini@kernel.org> - 2017-03-15 20:30 +0100
[PATCH v4 1/7] xen: import new ring macros in ring.h Stefano Stabellini <sstabellini@kernel.org> - 2017-03-15 20:30 +0100
[PATCH v4 3/7] xen/9pfs: introduce Xen 9pfs transport driver Stefano Stabellini <sstabellini@kernel.org> - 2017-03-15 20:30 +0100
[PATCH v4 6/7] xen/9pfs: receive responses Stefano Stabellini <sstabellini@kernel.org> - 2017-03-15 20:30 +0100
[PATCH v4 7/7] xen/9pfs: build 9pfs Xen transport driver Stefano Stabellini <sstabellini@kernel.org> - 2017-03-15 20:30 +0100
[PATCH v4 2/7] xen: introduce the header file for the Xen 9pfs transport protocol Stefano Stabellini <sstabellini@kernel.org> - 2017-03-15 20:30 +0100
[PATCH v4 5/7] xen/9pfs: send requests to the backend Stefano Stabellini <sstabellini@kernel.org> - 2017-03-15 20:30 +0100
[PATCH v4 4/7] xen/9pfs: connect to the backend Stefano Stabellini <sstabellini@kernel.org> - 2017-03-15 20:30 +0100
Re: [PATCH v4 4/7] xen/9pfs: connect to the backend Juergen Gross <jgross@suse.com> - 2017-03-16 07:40 +0100
Re: [PATCH v4 4/7] xen/9pfs: connect to the backend Stefano Stabellini <sstabellini@kernel.org> - 2017-03-16 19:10 +0100
Re: [PATCH v4 0/7] Xen transport for 9pfs frontend driver Juergen Gross <jgross@suse.com> - 2017-03-16 07:20 +0100
Re: [PATCH v4 0/7] Xen transport for 9pfs frontend driver Stefano Stabellini <sstabellini@kernel.org> - 2017-03-16 18:50 +0100
csiph-web