Your message dated Tue, 09 Jan 2007 22:28:11 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Bug#399702: fwatch: Unable to handle kernel NULL pointer
dereference at virtual address 00000008
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: fwatch
Version: 0.1-alpha-3
Severity: critical
hi,
this module turns out to be unusable for me, on 2.4.33.4: loading is ok but
as soon as an attempt is made to use it, eg by fwatchread, system gets
unstable due to Oops in subj.
Also, the module interface seems outdated, module's init() and exit()
functions seems not what expected for current 2.4.
Finally, some C99 issues around line ~287:
struct dentry * tmp;
tmp = f->f_dentry;
char filename[512];
filename[0] = '\0';
int error = do_revalidate(tmp);
should be re-arranged as:
struct dentry * tmp;
char filename[512];
int error;
tmp = f->f_dentry;
filename[0] = '\0';
error = do_revalidate(tmp);
but, is this module going to be dropped soon?
thanks
-- paolo
--- End Message ---
--- Begin Message ---
Closing this bug since etch does not support 2.4 kernels (problem has
only been reported on 2.4.33.4). If anybody ever reproduce the bug with
a 2.6 kernel, feel free to reopen.
Brice
--- End Message ---