super.c (858a0d7eb5300b5f620d98ab3c4b96c9d5f19131) | super.c (dc3b17cc8bf21307c7e076e7c778d5db756f7871) |
---|---|
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 --- 1054 unchanged lines hidden (view full) --- 1063 goto failed_nilfs; 1064 1065 sb->s_op = &nilfs_sops; 1066 sb->s_export_op = &nilfs_export_ops; 1067 sb->s_root = NULL; 1068 sb->s_time_gran = 1; 1069 sb->s_max_links = NILFS_LINK_MAX; 1070 | 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 --- 1054 unchanged lines hidden (view full) --- 1063 goto failed_nilfs; 1064 1065 sb->s_op = &nilfs_sops; 1066 sb->s_export_op = &nilfs_export_ops; 1067 sb->s_root = NULL; 1068 sb->s_time_gran = 1; 1069 sb->s_max_links = NILFS_LINK_MAX; 1070 |
1071 sb->s_bdi = &bdev_get_queue(sb->s_bdev)->backing_dev_info; | 1071 sb->s_bdi = bdev_get_queue(sb->s_bdev)->backing_dev_info; |
1072 1073 err = load_nilfs(nilfs, sb); 1074 if (err) 1075 goto failed_nilfs; 1076 1077 cno = nilfs_last_cno(nilfs); 1078 err = nilfs_attach_checkpoint(sb, cno, true, &fsroot); 1079 if (err) { --- 410 unchanged lines hidden --- | 1072 1073 err = load_nilfs(nilfs, sb); 1074 if (err) 1075 goto failed_nilfs; 1076 1077 cno = nilfs_last_cno(nilfs); 1078 err = nilfs_attach_checkpoint(sb, cno, true, &fsroot); 1079 if (err) { --- 410 unchanged lines hidden --- |