hi Robert,
On Fri, Oct 19, 2001 at 08:01:04AM +0200, Robert Sander wrote:
> On Fri, Oct 19, 2001 at 04:33:34PM +1100, Nathan Scott wrote:
> > We could be seeing a problem with the system call getting into
> > XFS (this would be a kernel problem) - has happened before with
> > some incorrect patches and one of our initial releases was even
> > botched this way actually. Which kernel version are you using
> > (CVS?, a release kernel?, patch? - which patch)?
>
Yup, its the exact same problem - fs/dquot.c has been merged
incorrectly. So close, but one subtle issue was missed.
> Currently I am using the Mandrake 2.4.8 kernel from
> http://iserv.nl/files/xfs/ compiled with gcc 2.91.66
>
> I'll send them to you by private email.
>
Thanks for that. Hopefully the Mandrake folk can pick up this
fix before their final release. The patch to the fs/dquot.c
you sent me is below.
Many thanks for reporting this!
cheers.
--
Nathan
--- dquot.c.orig Fri Oct 19 16:06:13 2001
+++ dquot.c Fri Oct 19 16:06:45 2001
@@ -2012,7 +2012,7 @@
type = cmd & SUBCMDMASK;
- if ((uint) type >= MAXQUOTAS || cmds > 0x1100 || cmds < 0x100 || cmds
== 0x0300 ||
+ if ((uint) type >= MAXQUOTAS || cmds < 0x100 || cmds == 0x0300 ||
cmds == 0x0400 || cmds == 0x0500 || cmds == 0x1000)
goto out;
|