summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorJan Sembera <jsembera@suse.cz>2010-09-09 16:37:54 -0700
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-01-06 18:07:47 -0500
commitb1f9216a7b13b63c26573e8c31b2df700db1faaf (patch)
tree787b5fcee988c6717c22f67820d75ac802f180cb /fs
parent982ce55c5ea05debc2ca705e936580f905745618 (diff)
downloadlwn-b1f9216a7b13b63c26573e8c31b2df700db1faaf.tar.gz
lwn-b1f9216a7b13b63c26573e8c31b2df700db1faaf.zip
binfmt_misc: fix binfmt_misc priority
commit ee3aebdd8f5f8eac41c25c80ceee3d728f920f3b upstream. Commit 74641f584da ("alpha: binfmt_aout fix") (May 2009) introduced a regression - binfmt_misc is now consulted after binfmt_elf, which will unfortunately break ia32el. ia32 ELF binaries on ia64 used to be matched using binfmt_misc and executed using wrapper. As 32bit binaries are now matched by binfmt_elf before bindmt_misc kicks in, the wrapper is ignored. The fix increases precedence of binfmt_misc to the original state. Signed-off-by: Jan Sembera <jsembera@suse.cz> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Cc: Al Viro <viro@ZenIV.linux.org.uk> Cc: Richard Henderson <rth@twiddle.net Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/binfmt_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/binfmt_misc.c b/fs/binfmt_misc.c
index c4e83537ead7..42b60b04ea06 100644
--- a/fs/binfmt_misc.c
+++ b/fs/binfmt_misc.c
@@ -723,7 +723,7 @@ static int __init init_misc_binfmt(void)
{
int err = register_filesystem(&bm_fs_type);
if (!err) {
- err = register_binfmt(&misc_format);
+ err = insert_binfmt(&misc_format);
if (err)
unregister_filesystem(&bm_fs_type);
}