From: sam_at_vilain.net
Date: Sat 11 Oct 2003 - 22:16:18 BST
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.
Sam.