cvs commit: src/sys/kern kern_module.c src/sys/sys module.h

2008-02-13 Thread John Baldwin
jhb 2008-02-13 21:34:06 UTC FreeBSD src repository Modified files: sys/kern kern_module.c sys/sys module.h Log: Add an automatic kernel module version dependency to prevent loading modules using invalid ABI versions (e.g. a 7.x module with an 8

cvs commit: src/sys/kern kern_module.c src/sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master

2007-12-19 Thread John Baldwin
jhb 2007-12-19 22:59:07 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/kern kern_module.c sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master Log: MFC: Move several data structure definitions o

cvs commit: src/sys/kern kern_module.c src/sys/compat/freebsd32 freebsd32.h freebsd32_ipc.h freebsd32_misc.c syscalls.master

2007-12-19 Thread John Baldwin
jhb 2007-12-19 20:37:53 UTC FreeBSD src repository Modified files:(Branch: RELENG_7) sys/kern kern_module.c sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master Added files: (Branch: RELENG_7) sys/com

Re: cvs commit: src/sys/kern kern_module.c src/sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master

2007-12-10 Thread John Baldwin
On Friday 07 December 2007 11:46:56 am Coleman Kane wrote: > John Baldwin wrote: > > jhb 2007-12-06 23:11:27 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern kern_module.c > > sys/compat/freebsd32 freebsd32.h freebsd32_misc.c > >

Re: cvs commit: src/sys/kern kern_module.c src/sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master

2007-12-07 Thread Coleman Kane
John Baldwin wrote: > jhb 2007-12-06 23:11:27 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_module.c > sys/compat/freebsd32 freebsd32.h freebsd32_misc.c > syscalls.master > Log: > Move several data structure defini

cvs commit: src/sys/kern kern_module.c src/sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master

2007-12-06 Thread John Baldwin
jhb 2007-12-06 23:11:27 UTC FreeBSD src repository Modified files: sys/kern kern_module.c sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master Log: Move several data structure definitions out of freebsd32_misc.c and into

Re: cvs commit: src/sys/kern kern_module.c

2006-06-30 Thread John Baldwin
On Friday 30 June 2006 01:58, Warner Losh wrote: > From: John Baldwin <[EMAIL PROTECTED]> > Subject: Re: cvs commit: src/sys/kern kern_module.c > Date: Tue, 27 Jun 2006 08:48:28 -0400 > > > On Monday 26 June 2006 19:41, Sam Leffler wrote: > > > John Baldwin wrot

Re: cvs commit: src/sys/kern kern_module.c

2006-06-29 Thread Warner Losh
From: John Baldwin <[EMAIL PROTECTED]> Subject: Re: cvs commit: src/sys/kern kern_module.c Date: Tue, 27 Jun 2006 08:48:28 -0400 > On Monday 26 June 2006 19:41, Sam Leffler wrote: > > John Baldwin wrote: > > > jhb 2006-06-26 18:34:45 UTC > > >

Re: cvs commit: src/sys/kern kern_module.c

2006-06-29 Thread John Baldwin
On Monday 26 June 2006 19:41, Sam Leffler wrote: > John Baldwin wrote: > > jhb 2006-06-26 18:34:45 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern kern_module.c > > Log: > > Address a problem I missed in removing Giant from the kernel linke

cvs commit: src/sys/kern kern_module.c

2006-06-28 Thread Maxim Konovalov
maxim 2006-06-29 03:27:04 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/kern kern_module.c Log: o MFC rev. 1.50: expand an exclusive lock scope. Revision ChangesPath 1.48.2.1 +5 -5 src/sys/kern/kern_module.c _

Re: cvs commit: src/sys/kern kern_module.c

2006-06-26 Thread Sam Leffler
John Baldwin wrote: > jhb 2006-06-26 18:34:45 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_module.c > Log: > Address a problem I missed in removing Giant from the kernel linker. Not > all of the module event handlers are MP safe yet, so al

cvs commit: src/sys/kern kern_module.c

2006-06-26 Thread John Baldwin
jhb 2006-06-26 18:34:45 UTC FreeBSD src repository Modified files: sys/kern kern_module.c Log: Address a problem I missed in removing Giant from the kernel linker. Not all of the module event handlers are MP safe yet, so always acquire Giant for now when invo

cvs commit: src/sys/kern kern_module.c

2006-06-15 Thread Maxim Konovalov
maxim 2006-06-15 08:53:10 UTC FreeBSD src repository Modified files: sys/kern kern_module.c Log: o Expand an exclusive lock scope to prevent a race between two simultaneous module_register(). Original work done by: Alex Lyashkov Reviewed by:jhb

cvs commit: src/sys/kern kern_module.c src/sys/sys module.h

2006-04-17 Thread John Baldwin
jhb 2006-04-17 19:44:44 UTC FreeBSD src repository Modified files: sys/kern kern_module.c sys/sys module.h Log: Add a new module_file() function that returns the linker_file_t associated with a given module_t. I use this in some the MOD_LOAD e