ubuntu 10.04 LTS(2.6.32-38-generic) i686 - intel i7 - 16GB
I got a map failed error to memset certain amount of memory. Do you have any idea? Additional information is I could malloc the same size. Here's my code.
//Here I could malloc successfully
pdev->frame_buffer = (uint16_t *)malloc(3840000);
//Then, I got map_failed error here and message from compiler is "Invalid argument"
if((pdev->frame_buffer = (uint16_t *)mmap(0, 3840000, PROT_READ | PROT_WRITE, MAP_SHARED, fb, 0)) == MAP_FAILED){
perror("Error: cannot mmap frame buffer");
exit(1);
}
If I mmap smaller than the size I tried above like mmap(0, 100,...), then it returns right address. I'm not sure if this issue is because of the size.
Do you have any guess why it happend?