summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_lkm.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* remove lkm filestedu2014-10-091-918/+0
|
* remove uneeded proc.h includesjsg2014-09-141-2/+1
| | | | ok mpi@ kspillner@
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
| | | | after discussions with beck deraadt kettenis.
* bzero -> memsettedu2014-01-211-2/+2
|
* fix typos in comments, no code changes;schwarze2010-01-141-2/+2
| | | | | from Brad Tilley <brad at 16systems dot com>; ok oga@
* Fix LKM support for amd64.mikeb2007-11-031-5/+13
| | | | ok deraadt weingart
* MALLOC/FREE -> malloc/freechl2007-10-291-2/+2
| | | | | | replace an hard coded value with M_WAITOK ok krw@
* typos; from bret lambertjmc2006-11-151-2/+2
|
* ansi/deregister.jsg2005-11-281-5/+5
| | | | 'go for it' deraadt@
* better way of finding and identifying lkms.tedu2004-03-031-18/+42
| | | | | adapted from pr2910 by peter werner, minus lkmfree removals since i couldn't tell what issue they were fixing.
* remember to reset exec_maxhdrsz after lkm load/unload. ok fgsch@tedu2003-08-231-5/+7
|
* remove caddr_t casts. it's just silly to cast something when the functiontedu2003-07-211-3/+3
| | | | takes a void *. convert uiomove to take a void * as well. ok deraadt@
* after freeing curp, set to NULL. fixes a crash when loading a moduletedu2003-04-291-1/+2
| | | | twice. similar to patch from Even Farrer farrer at uofu.net
* First round of __P removal in sysmillert2002-03-141-4/+4
|
* make sure we use lkmfree() in error cases as well.ericj2002-01-091-4/+10
| | | | millert@ ok
* first pass cleanup for lkmsericj2002-01-071-260/+145
| | | | | | | | | - Use queue.h macros instead of accessing members directly - Allocate from kernel_map instead of kmem_map - remove streams - free memory for syms in lkmunreserve() - change LMREADY arg to u_long (allow it to work on 64bit systems) - NetBSD - KNF
* Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.miod2001-11-061-2/+1
| | | | (Look ma, I might have broken the tree)
* merge vm/vm_kern.h into uvm/uvm_extern.h; art@ okmickey2001-09-191-2/+2
|
* absolutely no need to include vm_parm.h after vm.hmickey2001-08-121-2/+1
|
* remove old vmart2001-06-271-14/+1
|
* No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok)ho2001-05-161-8/+5
|
* Get rid of CLSIZE and all related stuff.art2001-05-051-2/+2
| | | | | | | | | CLSIZE -> 1 CLBYTES -> PAGE_SIZE OLOFSET -> PAGE_MASK etc. At the same time some archs needed some cleaning in vmparam.h so that goes in at the same time.
* new symbol handling in ddb for ELF, there is still a problem with hangman on alpha though..niklas2001-02-101-2/+2
|
* spelling and KNF.fgsch2001-02-061-10/+18
|
* (lkmalloc): initialize `sym_id'assar2000-01-021-2/+4
| | | | | | (lkmunreserve): check that the DDB symbols were actually loaded before unloading them PR 1031
* kmem allocation changes for uvmart1999-02-261-2/+16
|
* Change the vfs lkm interface do it takes a full struct vfsconf instead ofart1999-02-191-57/+4
| | | | | only struct vfsops. Use the new vfs_register and vfs_unregister in the vfs lkms.
* initialize all fileds in vfsconf when installing a new filesystem.art1998-03-181-1/+7
|
* fix vfs lkms + some indentationart1998-03-171-30/+44
|
* Updates for VFS Lite 2 + soft update.csapuntz1997-11-061-26/+21
|
* back out vfs lite2 till after 2.2deraadt1997-10-061-21/+26
|
* VFS Lite2 Changescsapuntz1997-10-061-26/+21
|
* s/DEBUG/LKM_DEBUG/gmickey1997-09-241-24/+24
|
* No need to doubly include vm/vm.hniklas1997-07-231-6/+4
|
* vm.hderaadt1997-07-201-1/+3
|
* save symtab id after addition to ddb for future usemickey1997-05-291-2/+2
|
* terminate copyinstr, copyoutstr full name; Don.Lewis@tsc.tdk.comderaadt1997-02-061-3/+4
|
* make gcc -Wall happy for lkms...mickey1996-10-141-2/+1
|
* copyinstr correctly; spotted by bitbltderaadt1996-10-021-2/+2
|
* Format type fix (%d -> %ld) in debugging/DDB printf.briggs1996-09-271-2/+2
|
* Be less verbose if we have been compiled without DEBUGtholo1996-09-161-1/+3
|
* fix db_add_symtab arguments.mickey1996-09-091-2/+3
|
* Do not do the if(a = b) game even if correct, it is confusingniklas1996-09-041-2/+4
|
* lkm ddb symbol table loading. done during the middle ages by jtkohl, mergedderaadt1996-08-291-8/+85
| | | | to modern day sources by rees@umich.edu
* -Wall & -Wstrict-prototype fixesniklas1996-07-021-2/+3
|
* allow LKM listing.mickey1996-06-211-1/+13
|
* allocate LKM slot dynamically.mickey1996-06-211-124/+112
| | | | prepare to LKM symtabs, cross deps, etc!
* partial sync with netbsd 960418, more to comederaadt1996-04-211-13/+11
|
* From NetBSD: 960217 mergeniklas1996-03-031-51/+75
|
* initial import of NetBSD treederaadt1995-10-181-0/+920