Re: [PATCH] VSOCK: Split vm_sockets.h into kernel/uapi

2013-03-08 Thread David Miller
From: David Howells Date: Fri, 08 Mar 2013 01:09:18 + > Greg KH wrote: > >> David, is there any rush to get stuff like this into 3.9 for any >> uapi-type changes, or can it just wait for 3.10? > > Not especially. It won't appear in userspace due to the __KERNEL__ guards. I've applied thi

Re: [PATCH] VSOCK: Split vm_sockets.h into kernel/uapi

2013-03-07 Thread David Howells
Greg KH wrote: > David, is there any rush to get stuff like this into 3.9 for any > uapi-type changes, or can it just wait for 3.10? Not especially. It won't appear in userspace due to the __KERNEL__ guards. David -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in th

Re: [PATCH] VSOCK: Split vm_sockets.h into kernel/uapi

2013-03-07 Thread Greg KH
On Thu, Mar 07, 2013 at 04:58:10PM +, David Howells wrote: > Andy King wrote: > > > Split the vSockets header into kernel and UAPI parts. The former gets the > > bits > > that used to be in __KERNEL__ guards, while the latter gets everything that > > is > > user-visible. Tested by compili

Re: [PATCH] VSOCK: Split vm_sockets.h into kernel/uapi

2013-03-07 Thread David Howells
Andy King wrote: > Split the vSockets header into kernel and UAPI parts. The former gets the > bits > that used to be in __KERNEL__ guards, while the latter gets everything that is > user-visible. Tested by compiling vsock (+transport) and a simple user-mode > vSockets application. > > Report