From: arnd@arndb.de Date: Mon, 19 Jun 2006 18:33:34 +0000 (+0200) Subject: [POWERPC] spufs: fail spu_create with invalid flags X-Git-Tag: v2.6.18-rc1~1081^2~225^2~10 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=c983294872ebccd4aacf1b8dd694ac2170feadc3;p=safe%2Fjmp%2Flinux-2.6 [POWERPC] spufs: fail spu_create with invalid flags At this time, all flags are invalid. Since we are planning to actually add valid flags in the future, we better check if any were passed by the user. Signed-off-by: Arnd Bergmann Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/platforms/cell/spufs/inode.c b/arch/powerpc/platforms/cell/spufs/inode.c index fed511a..1987697 100644 --- a/arch/powerpc/platforms/cell/spufs/inode.c +++ b/arch/powerpc/platforms/cell/spufs/inode.c @@ -304,6 +304,10 @@ long spufs_create_thread(struct nameidata *nd, nd->dentry != nd->dentry->d_sb->s_root) goto out; + /* all flags are reserved */ + if (flags) + goto out; + dentry = lookup_create(nd, 1); ret = PTR_ERR(dentry); if (IS_ERR(dentry))