public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* mmap issues
@ 2002-05-08 23:02 David Stroupe
  0 siblings, 0 replies; 3+ messages in thread
From: David Stroupe @ 2002-05-08 23:02 UTC (permalink / raw)
  To: linux-kernel

In the driver is:
static int S_Mmap(struct file * flip, struct vm_area_struct *vma)
{
 
<snip>
  unsigned long size = (unsigned long)vma->vm_end - vma->vm_start; 
<------size = 2000 for this case
  unsigned long start = (unsigned long)vma->vm_start;

   vma->vm_flags |= VM_LOCKED;

 
  vaddy = kmalloc(size , GFP_KERNEL);
  strcpy((char*)vaddy, "testing\0");
  mem_map_reserve(virt_to_page(vaddy));
  result = remap_page_range(start, virt_to_phys(vaddy), size, 
vma->vm_page_prot);
   if (result)
        return -EAGAIN;
 return 0;
 
in user space is:
<snip>
  pdma->dwBytes = 2000;
  pdma->pUserAddr =  mmap(0, pdma->dwBytes, PROT_READ | PROT_WRITE, 
MAP_SHARED, hWd, 0);
  str = (char*)pdma->pUserAddr;
<snip)

when I try to view the memory that I just mmap()ed using gdb I see:
$12 = 0x40018000 <Address 0x40018000 out of bounds>

If I don't do the mem_map_reserve() command I can view the memory but it 
is all zeros.

What am I missing?

TIA

-- 
Best regards,
David Stroupe
Keyed-Up Software



^ permalink raw reply	[flat|nested] 3+ messages in thread
* MMAP issues
@ 2001-11-27 16:46 Peter Zaitsev
       [not found] ` <3C03D108.E3FADE95@zip.com.au>
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Zaitsev @ 2001-11-27 16:46 UTC (permalink / raw)
  To: linux-kernel

Hello ,

  I'm trying to write a program which uses mmap agressively to mmap
  files (really it's used as fail safe memory allocator to store data
  if application failed)
  I'm using the latest kernel 2.4.16.

  I've found a couple of problems.

  1) I can mmap only about 64K files (4K size ones) and I can't find there the limit
  is triggered. I can open huge number of files (tried 500K) or I can
  map ammoniums pages even  lager number.  May be this limit is
  compiled in kernel somehow so may be changed ?
  The error code returned is 12 -  Can not allocate memory

  2) I see the speed dramatically degrades over time with mapping
  segments:
zetta:/home/pz/mmap # ./a.out
 10000  Time: 7
 20000  Time: 22
 30000  Time: 38
 40000  Time: 61
 50000  Time: 78
 60000  Time: 90

 First 10000 of mmaps took only  7 second there  mapping 10000 of
 files after 50000 took 90 seconds.  I used the same file associated
 with many file descriptors to avoid disk related speed issues. Map
 ammoniums in the same case are runned much faster and with almost no
 speed penalty as well as open calls.  So the question is if this
 thing may be tuned somehow - hash increase or something.


 3) It looks like the speed degrades over the program runs:

 1st
 10000  Time: 7
 20000  Time: 22
 30000  Time: 38
 40000  Time: 61
 50000  Time: 78
 60000  Time: 90 

 2nd
 10000  Time: 7
 20000  Time: 28
 30000  Time: 49
 40000  Time: 71
 50000  Time: 92
 60000  Time: 104 

 3rd
 10000  Time: 9
 20000  Time: 31
 30000  Time: 52
 40000  Time: 68
 50000  Time: 87
 60000  Time: 107 





-- 
Best regards,
 Peter                          mailto:pz@spylog.ru


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2002-05-08 23:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-08 23:02 mmap issues David Stroupe
  -- strict thread matches above, loose matches on Subject: below --
2001-11-27 16:46 MMAP issues Peter Zaitsev
     [not found] ` <3C03D108.E3FADE95@zip.com.au>
2001-11-27 17:54   ` Re[2]: " Peter Zaitsev
2001-11-27 22:36     ` Jeff Epler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox