Re: [take17 1/4] kevent: Core files.

2006-09-08 Thread shawvrana
I stand corrected. On Thursday 07 September 2006 23:38, Evgeniy Polyakov wrote: > On Thu, Sep 07, 2006 at 09:05:16PM -0700, [EMAIL PROTECTED] ([EMAIL > PROTECTED]) wrote: > > > +static int __devinit kevent_user_init(void) > > > +{ > > > + int err = 0; > > > + > > > + kevent_cache = kmem_cache_cr

Re: [take17 1/4] kevent: Core files.

2006-09-07 Thread Evgeniy Polyakov
On Thu, Sep 07, 2006 at 09:05:16PM -0700, [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: > > +static int __devinit kevent_user_init(void) > > +{ > > + int err = 0; > > + > > + kevent_cache = kmem_cache_create("kevent_cache", > > + sizeof(struct kevent), 0, SLAB_PANIC, NULL, NUL

Re: [take17 1/4] kevent: Core files.

2006-09-07 Thread shaw
> +static int __devinit kevent_user_init(void) > +{ > + int err = 0; > + > + kevent_cache = kmem_cache_create("kevent_cache", > + sizeof(struct kevent), 0, SLAB_PANIC, NULL, NULL); > + > + err = misc_register(&kevent_miscdev); > + if (err) { > + print

[take17 1/4] kevent: Core files.

2006-09-07 Thread Evgeniy Polyakov
Core files. This patch includes core kevent files: - userspace controlling - kernelspace interfaces - initialization - notification state machines Signed-off-by: Evgeniy Polyakov <[EMAIL PROTECTED]> diff --git a/arch/i386/kernel/syscall_table.S b/arch/i386/kernel/syscall_table.S index dd63d