search for: kernel_map

Displaying 3 results from an estimated 3 matches for "kernel_map".

2011 May 29
1
Where is the Centos Linux 5.5 kernel syscall handler for mmap? (Keith Roberts)
Keith Roberts, Thank you for your suggestion about doing a grep of the source code. We found mmap.S in ../sysdeps/unix/sysv/linux/i386. We looked in mmap.S and found a lot of assembly code. Could you please tell us if any of the assembly code call the kernel syscall handler for mmap.s? Also, we ran make for the kernel Makefile and we obtained the following result shown below. Could you please
2013 Jul 07
1
status of autotuning freebsd for 9.2
Andre, Are you going to have time to MFC things from -current for auto-tuning -stable before 9.2? I fear (maybe unnecessarily?) that we are about to ship yet another release that can't do basic 10gigE when sufficient memory exists. If you don't have time, then let me know and I'll see what I can do. -- Alfred Perlstein VP Software Engineering, iXsystems
2003 Aug 22
3
PAE removal patch for testing
...[UPAGES]; - vm_offset_t up; + vm_page_t m; + struct user *up; + unsigned *ptek, oldpte; /* * allocate object for the upages @@ -844,19 +863,22 @@ } /* get a kernel virtual address for the UPAGES for this proc */ - if ((up = (vm_offset_t) p->p_addr) == 0) { - up = kmem_alloc_nofault(kernel_map, UPAGES * PAGE_SIZE); - if (up == 0) + if ((up = p->p_addr) == NULL) { + up = (struct user *) kmem_alloc_nofault(kernel_map, + UPAGES * PAGE_SIZE); + if (up == NULL) panic("pmap_new_proc: u_map allocation failed"); - p->p_addr = (struct user *) up; + p->p_addr = up;...