super.c (10ce3cc919f50c2043b41ca968b43c26a3672600) | super.c (8de52778798fe39660a8d6b26f290e0c93202761) |
---|---|
1/* 2 * Copyright (C) International Business Machines Corp., 2000-2004 3 * Portions Copyright (C) Christoph Hellwig, 2001-2002 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. --- 427 unchanged lines hidden (view full) --- 436 if (!new_valid_dev(sb->s_bdev->bd_dev)) 437 return -EOVERFLOW; 438 439 sbi = kzalloc(sizeof (struct jfs_sb_info), GFP_KERNEL); 440 if (!sbi) 441 return -ENOMEM; 442 443 sb->s_fs_info = sbi; | 1/* 2 * Copyright (C) International Business Machines Corp., 2000-2004 3 * Portions Copyright (C) Christoph Hellwig, 2001-2002 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. --- 427 unchanged lines hidden (view full) --- 436 if (!new_valid_dev(sb->s_bdev->bd_dev)) 437 return -EOVERFLOW; 438 439 sbi = kzalloc(sizeof (struct jfs_sb_info), GFP_KERNEL); 440 if (!sbi) 441 return -ENOMEM; 442 443 sb->s_fs_info = sbi; |
444 sb->s_max_links = JFS_LINK_MAX; |
|
444 sbi->sb = sb; 445 sbi->uid = sbi->gid = sbi->umask = -1; 446 447 /* initialize the mount flag and determine the default error handler */ 448 flag = JFS_ERR_REMOUNT_RO; 449 450 if (!parse_options((char *) data, sb, &newLVSize, &flag)) 451 goto out_kfree; --- 448 unchanged lines hidden --- | 445 sbi->sb = sb; 446 sbi->uid = sbi->gid = sbi->umask = -1; 447 448 /* initialize the mount flag and determine the default error handler */ 449 flag = JFS_ERR_REMOUNT_RO; 450 451 if (!parse_options((char *) data, sb, &newLVSize, &flag)) 452 goto out_kfree; --- 448 unchanged lines hidden --- |