Skip to content

Commit

Permalink
HPFS: Make HPFS compile on preempt and SMP
Browse files Browse the repository at this point in the history
Make HPFS compile on preempt and SMP

Signed-off-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Mikulas Patocka authored and Linus Torvalds committed May 9, 2011
1 parent 0ee5623 commit 637b424
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion fs/hpfs/Kconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
config HPFS_FS
tristate "OS/2 HPFS file system support"
depends on BLOCK
depends on BROKEN || !PREEMPT
help
OS/2 is IBM's operating system for PC's, the same as Warp, and HPFS
is the file system used for organizing files on OS/2 hard disk
Expand Down
5 changes: 0 additions & 5 deletions fs/hpfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -479,11 +479,6 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)

int o;

if (num_possible_cpus() > 1) {
printk(KERN_ERR "HPFS is not SMP safe\n");
return -EINVAL;
}

save_mount_options(s, options);

sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Expand Down

0 comments on commit 637b424

Please sign in to comment.