search for: netback_init

Displaying 11 results from an estimated 11 matches for "netback_init".

2013 Jun 28
3
[PATCH next] xen: Use more current logging styles
...------------- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 130bcb2..64828de 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@ -1890,9 +1890,8 @@ static int __init netback_init(void) return -ENODEV; if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) { - printk(KERN_INFO - "xen-netback: fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n", - fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX); + pr_info("fatal_skb...
2013 Jun 28
3
[PATCH next] xen: Use more current logging styles
...------------- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 130bcb2..64828de 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@ -1890,9 +1890,8 @@ static int __init netback_init(void) return -ENODEV; if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) { - printk(KERN_INFO - "xen-netback: fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n", - fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX); + pr_info("fatal_skb...
2013 Jun 28
3
[PATCH next] xen: Use more current logging styles
...------------- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 130bcb2..64828de 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@ -1890,9 +1890,8 @@ static int __init netback_init(void) return -ENODEV; if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) { - printk(KERN_INFO - "xen-netback: fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n", - fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX); + pr_info("fatal_skb...
2010 Jul 14
2
2.6.32.16 - pv_ops kernel compile error
...`blkif_init'': /usr/src/linux-2.6-xen/drivers/xen/blkback/blkback.c:635: undefined reference to `alloc_empty_pages_and_pagevec'' /usr/src/linux-2.6-xen/drivers/xen/blkback/blkback.c:669: undefined reference to `free_empty_pages_and_pagevec'' drivers/built-in.o: In function `netback_init'': /usr/src/linux-2.6-xen/drivers/xen/netback/netback.c:1768: undefined reference t o `alloc_empty_pages_and_pagevec'' /usr/src/linux-2.6-xen/drivers/xen/netback/netback.c:1802: undefined reference t o `free_empty_pages_and_p...
2011 Jun 29
1
[PATCH 4/4] xen/netback: Add module alias for autoloading
...1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 0e4851b..fd00f25 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@ -1743,3 +1743,4 @@ failed_init: module_init(netback_init); MODULE_LICENSE("Dual BSD/GPL"); +MODULE_ALIAS("xen-backend:vif"); -- 1.7.5.4
2011 Jun 29
1
[PATCH 4/4] xen/netback: Add module alias for autoloading
...1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 0e4851b..fd00f25 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@ -1743,3 +1743,4 @@ failed_init: module_init(netback_init); MODULE_LICENSE("Dual BSD/GPL"); +MODULE_ALIAS("xen-backend:vif"); -- 1.7.5.4
2011 Jun 29
1
[PATCH 4/4] xen/netback: Add module alias for autoloading
...1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 0e4851b..fd00f25 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@ -1743,3 +1743,4 @@ failed_init: module_init(netback_init); MODULE_LICENSE("Dual BSD/GPL"); +MODULE_ALIAS("xen-backend:vif"); -- 1.7.5.4
2006 Mar 10
1
RE: Linux PG_arch_1 conflict
...oreign pages) because it was otherwise unused > > in Linux/x86. But Xen is no longer an arch. > > > > Grep''ing for "PageForeign" in -sparse will show most (all?) > > of the actual uses of it. Nearly all are in x86-specific > > code. But one is in netback_init(). > > That thread seems to already have a solution. Has anybody run it past > Linux MM people? (Adding xen-devel to CC for greater exposure.) If by "solution" you mean that Keir could change Xenlinux to add a new "PG_foreign" bit and change Xenlinux/x86 (and netback...
2007 Mar 20
62
RFC: [0/2] Remove netloop by lazy copying in netback
Hi Keir: These two patches remove the need for netloop by performing the copying in netback and only if it is necessary. The rationale is that most packets will be processed without delay allowing them to be freed without copying at all. So instead of copying every packet destined to dom0 we''ll only copy those that linger longer than a specified amount of time (currently 0.5s). As it
2011 Jun 13
5
3.0.0-rc2: Xen: High amount of kernel "reserved" memory, about 33% in 256MB DOMU
Hi, another issue I''m seeing with 3.0-rc2 and Xen is that there is an unexpectedly high amount of kernel reserved memory. I suspect that Linux allocates page table entries and corresponding data structures for the whole 6GB areas of the provided ''physical RAM map'' even though it has rather big unusable holes in it. [ 0.000000] BIOS-provided physical RAM map: [
2010 Nov 16
0
Bug#603727: xen-hypervisor-4.0-amd64: i386 Dom0 crashes after doing some I/O on local storage (software Raid1 on SAS-drives with mpt2sas driver)
...2e returned 0 after 35 usecs [ 39.321988] calling pciback_init+0x0/0x109 @ 1 [ 39.327230] initcall pciback_init+0x0/0x109 returned 0 after 631 usecs [ 39.333662] calling blkif_init+0x0/0x12d @ 1 [ 39.339941] initcall blkif_init+0x0/0x12d returned 0 after 1815 usecs [ 39.346286] calling netback_init+0x0/0x335 @ 1 [ 39.358465] registering netback [ 39.361573] initcall netback_init+0x0/0x335 returned 0 after 10438 usecs [ 39.368281] calling hypervisor_subsys_init+0x0/0x1d @ 1 [ 39.373651] initcall hypervisor_subsys_init+0x0/0x1d returned 0 after 0 usecs [ 39.380844] calling hyper_sys...