> In fs/proc/array.c:proc_pid_statm() there is this test block:
> if (vma->vm_flags & VM_EXECUTABLE)
> trs += pages; /* text */
> else if (vma->vm_flags & VM_GROWSDOWN)
> drs += pages; /* stack */
> else if (vma->vm_end > 0x60000000)
> lrs += pages; /* library */
> else
> drs += pages;
> Is there any special reason for the hardcoded constant `0x60000000'?
> In the Linux/m68k tree, we use TASK_UNMAPPED_BASE instead. But I don't know
> why.
you be happy with ELF_ET_DYN_BASE? I made a fairly small patch that
deals with that.
Cheers,
Bill
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/