lkml.org 
[lkml]   [2008]   [Jun]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH] nommu: Correct kobjsize() page validity checks.
Date
David Howells <dhowells@redhat.com> wrote:

> Works for me.

Having said that, it doesn't produce the right answers under SLOB, with or
without this patch:

void task_mem(struct seq_file *m, struct mm_struct *mm)
{
struct vm_list_struct *vml;
unsigned long bytes = 0, sbytes = 0, slack = 0;

down_read(&mm->mmap_sem);
for (vml = mm->context.vmlist; vml; vml = vml->next) {
if (!vml->vma)
continue;

bytes += kobjsize(vml);

Here kobjsize() returns 16384 (PAGE_SIZE) when it should return something a
lot smaller. This appears related to SLOB not setting PG_slab, so
/proc/pic/status gets messed up:

Mem: 983040 bytes
Slack: 44112 bytes
Shared: 1687552 bytes

SLAB returns 64 at this point, and in /proc/pid/status shows:

Mem: 594016 bytes
Slack: 44112 bytes
Shared: 1638688 bytes

with or without the patch, which might even be correct.


Maybe on SLOB we want kobjsize() to become sizeof() where we're dealing with
fixed size units such as structs. On the other hand, getting rid of
kobjsize() entirely would be good.

David


\
 
 \ /
  Last update: 2008-06-12 12:25    [W:0.042 / U:0.216 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site