main.c (e8cdfb0509f48d44d95d68d4f42d8d71a9ba4acd) main.c (58a69cb47ec6991bf006a3e5d202e8571b0327a4)
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
8 */

--- 130 unchanged lines hidden (view full) ---

139 goto fail;
140
141 error = register_filesystem(&gfs2meta_fs_type);
142 if (error)
143 goto fail_unregister;
144
145 error = -ENOMEM;
146 gfs_recovery_wq = alloc_workqueue("gfs_recovery",
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
8 */

--- 130 unchanged lines hidden (view full) ---

139 goto fail;
140
141 error = register_filesystem(&gfs2meta_fs_type);
142 if (error)
143 goto fail_unregister;
144
145 error = -ENOMEM;
146 gfs_recovery_wq = alloc_workqueue("gfs_recovery",
147 WQ_MEM_RECLAIM | WQ_FREEZEABLE, 0);
147 WQ_MEM_RECLAIM | WQ_FREEZABLE, 0);
148 if (!gfs_recovery_wq)
149 goto fail_wq;
150
151 gfs2_register_debugfs();
152
153 printk("GFS2 (built %s %s) installed\n", __DATE__, __TIME__);
154
155 return 0;

--- 62 unchanged lines hidden ---
148 if (!gfs_recovery_wq)
149 goto fail_wq;
150
151 gfs2_register_debugfs();
152
153 printk("GFS2 (built %s %s) installed\n", __DATE__, __TIME__);
154
155 return 0;

--- 62 unchanged lines hidden ---