From: Herbert Poetzl (herbert_at_13thfloor.at)
Date: Sat 11 Oct 2003 - 22:45:08 BST
On Sat, Oct 11, 2003 at 10:16:18PM +0100, sam_at_vilain.net 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.