search for: vmalloc_32

Displaying 9 results from an estimated 9 matches for "vmalloc_32".

2012 Sep 21
8
Re: Xen + DVB = not working. memory allocation issue?
...ee if there is anthing being reported? > > I''ve tried installing the above patch to the 3.6-rc6 kernel, but did > not seem to help. > > Apologies if this has been asked before (I wasn''t able to find another > patch), but is there a patch to get this (suspected vmalloc_32) fixed > and DVB card working? Eventually yes. > > FYI I''m running 64 bit 3.5-rc6 and xen 4.3-unstable. 3.5-rc6 or 3.6-rc6? I presume the latter? > > Thank you! :) > > Regards, > > John >
2012 Sep 13
20
Xen 4.2.0-rc4 issues with DVB tuner
On Thu, Aug 30, 2012 at 6:33 PM, Konrad Rzeszutek Wilk <konrad@kernel.org>wrote: Hi, > > I''ve just upgraded a server of mine from a Core i3 2100T to an i7 3770, > in order > > to do full virtualization with VTd. > > > > I''m using kernel 3.5.2 and Xen from git://xenbits.xen.org/xen.git @ > commit > >
2005 Jul 06
0
Re: Asterisk-Users Digest, Vol 12, Issue 25
...ux/vmalloc.h:35: for each function it appears in.) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_dma': /usr/src/linux-2.4/include/linux/vmalloc.h:44: `boot_cpu_data_R0657d037' undeclared (first use in this function) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_32': /usr/src/linux-2.4/include/linux/vmalloc.h:53: `boot_cpu_data_R0657d037' undeclared (first use in this function) tor2.c: In function `tor2_spanconfig': tor2.c:206: warning: implicit declaration of function `printk_R1b7d4074' tor2.c: In function `init_spans': tor2.c:274: warnin...
2004 Aug 12
1
zaptel wont compile
...ux/vmalloc.h:35: for each function it appears in.) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_dma': /usr/src/linux-2.4/include/linux/vmalloc.h:44: `boot_cpu_data_R0657d037' undeclared (first use in this function) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_32': /usr/src/linux-2.4/include/linux/vmalloc.h:53: `boot_cpu_data_R0657d037' undeclared (first use in this function) tor2.c: In function `tor2_spanconfig': tor2.c:206: warning: implicit declaration of function `printk_R1b7d4074' tor2.c: In function `init_spans': tor2.c:274: warnin...
2004 May 13
0
zaptel does not compile on latest RHEL kernel
...037' undeclared (first use in this function) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_dma': /usr/src/linux-2.4/include/linux/vmalloc.h:49: `boot_cpu_data_R0657d037' undeclared (first use in this function) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_32': /usr/src/linux-2.4/include/linux/vmalloc.h:58: `boot_cpu_data_R0657d037' undeclared (first use in this function) tor2.c: In function `tor2_spanconfig': tor2.c:206: warning: implicit declaration of function `printk_R1b7d4074' tor2.c: In function `init_spans': tor2.c:274: warni...
2004 Aug 26
0
Can't make zaptel on red hat 9
...ux/vmalloc.h:36: for each function it appears in.) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_dma': /usr/src/linux-2.4/include/linux/vmalloc.h:45: `boot_cpu_data_R0657d037' undeclared (first use in this function) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_32': /usr/src/linux-2.4/include/linux/vmalloc.h:54: `boot_cpu_data_R0657d037' undeclared (first use in this function) tor2.c: In function `tor2_spanconfig': tor2.c:206: warning: implicit declaration of function `printk_R1b7d4074' tor2.c: In function `init_spans': tor2.c:274: warnin...
2004 Apr 23
3
zaptel on Fedora (Core 1) RedHat Linux-2.4
...39; undeclared (first use in this function) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_dma': /usr/src/linux-2.4/include/linux/vmalloc.h:49: error: `boot_cpu_data_R4a8db2ac' undeclared (first use in this function) /usr/src/linux-2.4/include/linux/vmalloc.h: In function `vmalloc_32': /usr/src/linux-2.4/include/linux/vmalloc.h:58: error: `boot_cpu_data_R4a8db2ac' undeclared (first use in this function) tor2.c: In function `tor2_spanconfig': tor2.c:206: warning: implicit declaration of function `printk_R1b7d4074' tor2.c: In function `init_spans': tor2.c:274:...
2009 Nov 05
0
[PATCH] Add VirtIO Frame Buffer Support
...; + str(DEFAULT_HEIGHT) "\")"); > + > +static void virtio_fb_output(struct virtqueue *vq); > + > +static void *rvmalloc(unsigned long size) what exactly does this do? > +{ > + void *mem; > + unsigned long adr; > + > + size = PAGE_ALIGN(size); > + mem = vmalloc_32(size); > + if (!mem) > + return NULL; > + > + memset(mem, 0, size); /* Clear the ram out, no junk to the user */ > + adr = (unsigned long) mem; > + while (size > 0) { > + SetPageReserved(vmalloc_to_page((void *)adr)); Where is the bit cleared? > + adr += PAGE_SIZE; &...
2009 Nov 05
0
[PATCH] Add VirtIO Frame Buffer Support
...; + str(DEFAULT_HEIGHT) "\")"); > + > +static void virtio_fb_output(struct virtqueue *vq); > + > +static void *rvmalloc(unsigned long size) what exactly does this do? > +{ > + void *mem; > + unsigned long adr; > + > + size = PAGE_ALIGN(size); > + mem = vmalloc_32(size); > + if (!mem) > + return NULL; > + > + memset(mem, 0, size); /* Clear the ram out, no junk to the user */ > + adr = (unsigned long) mem; > + while (size > 0) { > + SetPageReserved(vmalloc_to_page((void *)adr)); Where is the bit cleared? > + adr += PAGE_SIZE; &...