super.c (10ce3cc919f50c2043b41ca968b43c26a3672600) | super.c (8de52778798fe39660a8d6b26f290e0c93202761) |
---|---|
1/* 2 * super.c - NILFS module and super block management. 3 * 4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or --- 1045 unchanged lines hidden (view full) --- 1054 err = init_nilfs(nilfs, sb, (char *)data); 1055 if (err) 1056 goto failed_nilfs; 1057 1058 sb->s_op = &nilfs_sops; 1059 sb->s_export_op = &nilfs_export_ops; 1060 sb->s_root = NULL; 1061 sb->s_time_gran = 1; | 1/* 2 * super.c - NILFS module and super block management. 3 * 4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or --- 1045 unchanged lines hidden (view full) --- 1054 err = init_nilfs(nilfs, sb, (char *)data); 1055 if (err) 1056 goto failed_nilfs; 1057 1058 sb->s_op = &nilfs_sops; 1059 sb->s_export_op = &nilfs_export_ops; 1060 sb->s_root = NULL; 1061 sb->s_time_gran = 1; |
1062 sb->s_max_links = NILFS_LINK_MAX; |
|
1062 1063 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info; 1064 sb->s_bdi = bdi ? : &default_backing_dev_info; 1065 1066 err = load_nilfs(nilfs, sb); 1067 if (err) 1068 goto failed_nilfs; 1069 --- 391 unchanged lines hidden --- | 1063 1064 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info; 1065 sb->s_bdi = bdi ? : &default_backing_dev_info; 1066 1067 err = load_nilfs(nilfs, sb); 1068 if (err) 1069 goto failed_nilfs; 1070 --- 391 unchanged lines hidden --- |