On Wed, 26 Nov 2008, David P. Quigley wrote: > + err = 0; > + (void)security_inode_getsecctx(dentry->d_inode, &context, &len); > + if (len < 0) > + return nfserrno(len); So, with the simpler version: err = security_inode_getsecctx(dentry->d_inode, &context, &len); if (err) return nfserrno(err); -- James Morris <jmorris@xxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html