Tagged Questions
1
vote
0answers
58 views
Linux not freeing the file buffer when we execute rm or > (redirection) operator
I have a router with embedded-linux, kernel version 2.4.22. I know its very old version but I have to deal with it. The following is free command output on the box,
[8300002902-3] Debug> free
...
0
votes
0answers
25 views
PKMAP_BASE is 0xBFE00000. How kernel accesses pkmap space?
Below is boot log when kernel starts.
<5>[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
<5>[ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
...
0
votes
0answers
48 views
About using kmap
all
I'm learning linux based on ARM, I have some questions about kmap.
As I know, when the target start kernel, kmap_init function is processed in paging_init function.
kmap_init function just try ...
1
vote
1answer
29 views
What is idr_alloc()
In the source code implementation it says idr_alloc() is used to allocate new idr entry. I couldn't find the man page and want to know why it is used especially when writing drivers for MTD devices.
2
votes
0answers
95 views
How to handle multiple pages buffers and scatterlists for Linux Crypto API?
I am facing some trouble processing large buffers. Since I was testing my code only on quite small buffers (not larger than PAGE_SIZE), I have not met this before. The code is simply about ciphering ...
0
votes
2answers
176 views
mmap() in linux kernel to access unmapped memory
I am trying to use the mamp() functionality provided in linux-kernel.
As we call mmap() in user-space we try to map virtual memory area of user-space process to the memory in the kernel-space.
the ...
5
votes
2answers
206 views
How to programmatically tell that Linux is in PAE or non-PAE mode?
Need to create a script to check to see if the kernel is in PAE mode or not. Surely, it is not enough to just check if the /proc/cpuinfo flags have this 'pae' setting.
We must know if the PAE ...
0
votes
1answer
105 views
What does `PAGE_ALIGN` do to and `unsigned int`? shouldn't it get an address?
In some framebuffer configuration code I had seen these lines:
static unsigned int max_size = 0;
max_size = max(max_size, 8*(mi->xres * (mi->xres + mi->yres)));
}
max_size = ...
0
votes
0answers
47 views
New ZONE and GFP_MASK in linux kernel
I would like to patch the linux kernel to create my own ZONE and a GFP_MASK macro to split HIGH_MEM region into two parts. Any help?
3
votes
1answer
199 views
memory management and segmentation faults in modern day systems (Linux)
In modern-day operating systems, memory is available as an abstracted resource. A process is exposed to a virtual address space (which is independent from address space of all other processes) and a ...
1
vote
1answer
145 views
Linux Page Cache Status
I'm able to list page cache statuses in my OS by using page-types tool in Linux kernel source tree. Such as:
referenced,uptodate,lru,mappedtodisk
referenced,uptodate,lru,active,private
In ...
0
votes
0answers
33 views
mapping non contineous shared memory as contineous for process through character driver mmap()
Being a complete new in kernel module programming, I should extend character driver module for shared memory allocation for processes which is able to map discontinuous memory to continuous memory in ...
1
vote
0answers
226 views
increase memory limit openvz [closed]
When i try to increase on of my VPS memory limit to 2GB, the following error comes:
Error: detected vswap CT config but kernel does not support vswap This
means either old kernel or bad config ...
0
votes
0answers
55 views
How to check the memory consumption of a NIC driver?
I have multi network card machine (let's say from different vendors). I wanted to check the memory footprint of the network driver code under Linux. Is it possible?
1
vote
2answers
1k views
KMALLOC size allocation
does KMALLOC allocates only in page size memory or it can allocate less ?
what are the sizes that the kmalloc can allocate ?
where can i find description of it , since everyone i looked it doesn't ...
0
votes
1answer
257 views
what information does /proc/slabinfo give?
An application is cosuming memory. Seen as "memory used" in top. I would like to know if its corresponding driver is allocating memory and not releasing it when the application exits. Will ...
2
votes
1answer
146 views
Is there NUMA next-touch policy in modern Linux
When we working on NUMA system, memory can be local or remote relative to current NUMA node.
To make memory more local there is a "first-touch" policy (the default memory to node binding strategy):
...
0
votes
2answers
78 views
How many memorys can a process have under PPC64 on linux
I watched a testcase for linux. it test for mmap like follows:
#define HIGH_ADDR (void *)(0x1000000000000)
addr = mmap(HIGH_ADDR, map_sz, PROT_READ,
MAP_SHARED | MAP_FIXED, ...
1
vote
2answers
559 views
How to measure the memory usage of a process without calling an external program
The memory usage of a process can be displayed by running:
$ ps -C processname -o size
SIZE
3808
Is there any way to retrieve this information without executing ps (or any external program), or ...
0
votes
1answer
210 views
How to perform a memory range check within the Linux kernel for non-userspace memory?
I am writing an API as a linux kernel module for another module. For initial development, I would like to do some memory range checking on the physical memory pointers being passed to my API. That ...
1
vote
1answer
148 views
How to get the address of an array in kernel module so I'll be able to use it within a user-space application?
I have a kernel module named mymodule and in it I have :
static struct file_operations my_mod_fops = {
.owner = THIS_MODULE
.write = my_write,
.open = my_open,
...
2
votes
1answer
178 views
Embedded system: Where's my memory?
I have an ARM based embedded system. I just bring up the kernel (2.6.34). Below are some command outputs. I am not able to account for whole of RAM (128 M).
Kernel seems to be using 128 MB - 124368 ...
0
votes
4answers
395 views
How can I map a memory of bytes from a kernel module to user space app?
I would like to declare an array in kernel module and to access it within a userspace app. how can I do it?
How do I memory map it for using via userspace so it can be used by a user?
1
vote
1answer
341 views
linux kernel function page_address()
I'm confused with the function:
void * page_address(struct page *page)
which
(1) "convert a given page to its logical address" according to "Linux Kerenl developement 3rd edition"
(2) "returns the ...
0
votes
1answer
290 views
Average working set size for a process
I am running an executable in linux (c++ code). I want to calculate 'average' working set size of this executable? I have no clue in how to proceed. Can some one help me out?
Is there any command in ...
0
votes
3answers
1k views
Getting memory map of every device in linux
How do I get memory map of all the physical devices that are recognized by Linux. I have already looked up at /proc/iomem and /proc/ioports. However, I was not able to find a per device memory maps. ...
1
vote
0answers
77 views
Measuring kernel memory usage of a FUSE-based application
I'm designing a FUSE-based file-system for an embedded system, thus under strict memory constraints. The path of data is long between an application calling fwrite and the actual FUSE-based ...
1
vote
2answers
110 views
What's the type of memory management when the OS booted,paging or no-paging?
When an OS is booted, what's the type of memory management ,paging or no-paging? That's is to say what is the value in the cr0 register that control the on/off of paging.I guess paging is off in the ...
2
votes
2answers
293 views
How the address translation(virt->phy) is performed when CPU requires an address above 0xC0000000?
I came up with this question because I don't understand how address translation is carried out in kernel area.
From what I understand, to translate any address above 0xC0000000, we just need to minus ...
7
votes
3answers
1k views
What is the best way to read from Linux /proc interfaces using C user space code?
According to man 5 proc, one can use the /proc filesystem to access the following information on Linux:
/proc/[pid]/maps
A file containing the currently mapped memory regions and their ...
1
vote
2answers
57 views
How do I find the ptep for a given address?
I'm trying to write a function that write-protects every pte in a given vm_area_struct. What is the function that gives me the ptep for a given address? I have:
pte_t *ptep;
for (addr = start; addr ...
1
vote
1answer
581 views
Profiling the memory used by linux kernel
I have linux kernel 2.6.30 on an ARM based embedded device.
I have to do some kernel memory usage profiling on the device.
I am thinking of monitoring the ps output on various kernel threads and ...
1
vote
1answer
150 views
Make contiguous region in kernel space
I'm allocating memory by alloc_page(GFP_USER) and I have allocated more than one page.
I need to make that I will see it as contiguous region (I need to make from it buffer), so I want to revoke to it ...
0
votes
0answers
395 views
Accessing Flash (NAND) Memory in kernel/user space
I have to develop an app for linux. I've not decided yet if it run in user space or kernel space. But that app has to access and edit the data written in NAND flash at a particular address(say in ...
0
votes
2answers
451 views
Kernel Read/Write Userspace memory
First, malloc a buffer from userspace and fill the buffer with all 'A'
Then, pass the pointer of the buffer to kernel ,using netlink socket,
Finally, I can read and write the buffer, using the raw ...
4
votes
2answers
464 views
32-bit process’s address space on 64-bit linux
In this answer author states:
With the 64-bit x86_64 kernel, a 32-bit process can use the entire 4GB address space, except for a couple pages (8KB) at the end of the 4GB address space which are ...
0
votes
1answer
275 views
Scanning system call table using GDB
I tried scanning system call table to print the system call addresses
$ sudo gdb /usr/src/linux-2.6.38.8/vmlinux /proc/kcore
(gdb) x/255x 0xc12ab280
0xc12ab280: 0x00000000 0x00000000 0x00000000 ...
2
votes
1answer
400 views
do_mmap_pgoff for other processes
In a linux kernel syscall, I want to map a region of memory in a similar manner as calling mmap from user mode. If I wanted to map the region for the current process, I could simply use do_mmap_pgoff. ...
0
votes
0answers
540 views
Virtual to logical to physical address conversion [closed]
On a segmented architecture like i386, how is a virtual address converted to a physical address. I know the virtual address is split into bits, where higher 10 bits index into the Page directory ...
1
vote
1answer
940 views
How can I get CR3 value?
How can I get the CR3 value?
Furthermore, how can I get the CR3 value of process A (say Firefox)?
Is there any command I could use to read the current CR3?
Thanks!
0
votes
1answer
337 views
SYSCALL_DEFINE6(…)
I am now studying about the implementation of page table of linux 2.6.38.8. In linux/include/linux/syscall.c, I found that
#define SYSCALL_DEFINE6(name, ...) SYSCALL_DEFINEx(6, _##name, __VA_ARGS__)
...
0
votes
1answer
83 views
physical storage of the kernel data
I have some question about physical storage of the kernel data in Linux, I know that the upper 1 GB of the VIRTUAL memory of each process points to the same PHYSICAL location, but
this piece of the ...
0
votes
0answers
113 views
How to fix “disappeared” memory after Linux 2.6.18 Kernel? [closed]
I think there is currently a known issue that there are some issues with memory display since 2.6.18 kernel:
For example:
dmesg | grep Memory
[ 0.000000] Memory: 82008k/98304k available (3091k ...
1
vote
1answer
167 views
Changing page mapping for a user process in the linux kernel
So lets say I have access to a process and its mm_struct, is there a way that I can change one of the mappings or remove a mapping and create a temporary one so that I can allocate an amount smaller ...
12
votes
6answers
1k views
Limit physical memory per process
I am writing an algorithm to perform some external memory computations, i.e. where your input data does not fit into main memory and you have to consider the I/O complexity.
Since for my tests I do ...
0
votes
1answer
460 views
linux virtual memory parameters
Can anyone tell me the working of dirty_bytes and dirty_background_bytes in the Linux VM tunable parameters.
I infer that dirty_bytes specifies the amount of memory after which the application doing ...
1
vote
1answer
51 views
Issuing an asnyc I/O on a page
I was wondering what the correct way of issuing an asynchronous read operation on a page that has been swapped out is. And once this is done is there a way to execute a callback that happens so that I ...
0
votes
1answer
1k views
using virt_to_page
What exactly does the virt_to_page function return, does it return the page given an address in the kernel space or does it return a page given an address in user space? As far as I can tell it seems ...
3
votes
2answers
882 views
available memory in kernel
Is there a kernel function which returns amount of kernel memory available(Not vmalloc related).
2
votes
2answers
288 views
What exactly is meant by 'map memory into userspace'?
When memory (suppose some kernel memory buffer) is mapped into userspace, what is it that happens? Is it that the entries in the page tables of the user process's struct mm are modified so that they ...
