On Sat, Oct 11, 2003 at 10:16:18PM +0100, [EMAIL PROTECTED] wrote:
> namei.c:
>
> + read_lock(¤t->fs->lock);
> + struct dentry *saferoot = current->fs->saferoot;
> + if (saferoot != NULL){
>
> I think should be:
>
> struct dentry *saferoot;
> read_lock(¤t->fs->lock);
> saferoot = current->fs->saferoot;
> if (saferoot != NULL){
>
> I got a compile error when building an SMP kernel.well, forget 18pre1 for now, if you want to test, use c17f ... TIA, Herbert > Sam.
