Re: [Xen-devel] [PATCH 1/4] xen kconfig: keep XEN_XENBUS_FRONTEND builtin

2012-01-12 Thread Bastian Blank
On Thu, Jan 12, 2012 at 09:37:45AM -0500, Konrad Rzeszutek Wilk wrote: > Or is it possible to make the modules (fb) try to load xenbus frontend > automatically? Preferrably one would do this: Which modules? > modprobe xen_fbfront > which would then automatically load xenbus_module, xen_kbdfront

[PATCH 4/4] xen/netback: Add module alias for autoloading

2011-06-29 Thread Bastian Blank
Add xen-backend:vif module alias to the xen-netback module. This allows automatic loading of the module. Signed-off-by: Bastian Blank Acked-by: Ian Campbell Acked-by: Konrad Rzeszutek Wilk --- drivers/net/xen-netback/netback.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff

[PATCH 3/4] xen/blkback: Add module alias for autoloading

2011-06-29 Thread Bastian Blank
Add xen-backend:vbd module alias to the xen-blkback module. This allows automatic loading of the module. Signed-off-by: Bastian Blank Acked-by: Ian Campbell Acked-by: Konrad Rzeszutek Wilk --- drivers/block/xen-blkback/blkback.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff

[PATCH 2/4] xen: Add module alias to autoload backend drivers

2011-06-29 Thread Bastian Blank
All the Xen backend drivers are assigned to a special bus type xen-backend. This patch exports xen-backend:* names through modalias and uevent to autoload them. Signed-off-by: Bastian Blank Acked-by: Ian Campbell Acked-by: Konrad Rzeszutek Wilk --- drivers/xen/xenbus/xenbus_probe.c

[PATCH 1/4] xen: Populate xenbus device attributes

2011-06-29 Thread Bastian Blank
The xenbus bus type uses device_create_file to assign all used device attributes. However it does not remove them when the device goes away. This patch uses the dev_attrs field of the bus type to specify default attributes for all devices. Signed-off-by: Bastian Blank Acked-by: Ian Campbell

Re: [PATCH 2/2] xen: Add alias to autoload backend drivers

2011-06-27 Thread Bastian Blank
On Mon, Jun 27, 2011 at 12:13:27PM -0400, Konrad Rzeszutek Wilk wrote: > On Fri, Jun 24, 2011 at 11:51:55PM +0200, Bastian Blank wrote: > > All the Xen backend drivers are assigned to a special bus type > > xen-backend. This allows userspace to load the modules on request. > I

Re: [Xen-devel] Re: [PATCH 2/2] xen: Add alias to autoload backend drivers

2011-06-27 Thread Bastian Blank
On Mon, Jun 27, 2011 at 12:57:11PM -0400, Konrad Rzeszutek Wilk wrote: > Ugh actually no I can't. Why? It does not actually change things. > Can you re-submit these two patches (and stick on Acked-by Ian on them) and > split the "xen: Add alias to autoload backend driver" in three patches: > 1)

[PATCH 1/2] xen: Populate xenbus device attributes

2011-06-24 Thread Bastian Blank
The xenbus bus type uses device_create_file to assign all used device attributes. However it does not remove them when the device goes away. This patch uses the dev_attrs field of the bus type to specify default attributes for all devices. Signed-off-by: Bastian Blank --- drivers/xen/xenbus

[PATCH 2/2] xen: Add alias to autoload backend drivers

2011-06-24 Thread Bastian Blank
All the Xen backend drivers are assigned to a special bus type xen-backend. This allows userspace to load the modules on request. This patch defines xen-backend:* aliases on the modules and exports this names through modalias and uevent. Signed-off-by: Bastian Blank --- drivers/block/xen

Re: [PATCH 7/24] consolidate msr.h

2007-11-20 Thread Bastian Blank
On Fri, Nov 09, 2007 at 04:42:48PM -0200, Glauber de Oliveira Costa wrote: > - wrmsrl(MSR_CSTAR, ia32_cstar_target); > + wrmsrl(MSR_CSTAR, (u64)ia32_cstar_target); Hmm, why do you add explicit casts? The compiler should convert that correctly on its own. > +static inline void wrmsrl(unsig

Re: [Xen-devel] [patch 19/28]xen: Add early printk support via hvc console

2007-05-12 Thread Bastian Blank
On Thu, May 10, 2007 at 05:07:02PM -0700, Jeremy Fitzhardinge wrote: > +#ifdef CONFIG_XEN xenboot_console is only available with CONFIG_HVC_XEN. > + } else if (!strncmp(buf, "xen", 3)) { > + early_console = &xenboot_console; > +#endif __