The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
554 views

Porting module to newer Linux kernel: Cannot allocate memory

I have a quite big driver module that I am trying to compile for a recent Linux kernel (3.4.4). I can successfully compile and insmod the same module with a 2.6.27.25 kernel. GCC version are also ...
1
vote
0answers
195 views

vmalloc_to_pfn returns 32 bit address on Linux 32 system. Why does it chop off higher bits of PAE physical address?

I'm using vmalloc_to_pfn() to get the physical address on a 32-bit PAE Linux system. It looks like vmalloc_to_pfn() returns "unsigned long" which means it is 32 bit on a 32 bit system, 64 bit on a ...
1
vote
1answer
291 views

How large VMALLOC space can be in 32bit x86?

My physical memory is 4G and I'm using Android x86 which is 32bit, HIGHMEM4G is enabled. I want to enlarge vmalloc() space as much as possible. As I tried, if changing to 2G/2G VMsplit and making ...
1
vote
1answer
242 views

Does vmalloc() only get memory from ZONE_HIGHMEM on 32bit x86?

On 32bit x86 platform, if vmalloc() can allocate memory from either ZONE_NORMAL or ZONE_HIGHMEM, does it mean that even if I enlarge ZONE_HIGHMEM, the actual total range that vmalloc() can use is ...
2
votes
1answer
245 views

reading out large array from a linux kernel module

I've searched on this a good deal, though I definitely may have missed something, and I'm coming from reading the http://tldp.org/LDP/lkmpg/2.6/html/lkmpg.html and this ...
0
votes
3answers
363 views

Freeing (vfree-ing) pointer to volatile data

volatile seems to be a never ending question of every one. I thought I knew everything about it, but then I encountered this: So, I have a piece of memory shared between threads and I defined it like ...
0
votes
2answers
311 views

Using vmalloc (libvmalloc.a) on Mac and CentOS- cannot include vmalloc header

I want to allocate virtually contiguous range memory so that I can use the locality property (spatial locality) when accessing data, with consideration for better performance. I found out at the ...
6
votes
3answers
2k views

Is there a size limit for kernel module in linux?

I have a problem loading a kernel module, there is a large data structure, around the size of 2Gb of memory - whether I preallocate the table (so that it shows in .bss when I do size -A module.ko or ...
36
votes
5answers
29k views

What is the difference between vmalloc and kmalloc?

I've googled around and found most people advocating the use of kmalloc, as you're guaranteed to get contiguous physical blocks of memory. However, it also seems as though kmalloc can fail if a ...