xfs_super.c (d26a3a6ce7e02f9c056ad992bcd9624735022337) xfs_super.c (3cfb9290da3d87a5877b03bda96c3d5d3ed9fcb0)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6
7#include "xfs.h"
8#include "xfs_shared.h"

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

36#include "xfs_bmap_item.h"
37#include "xfs_reflink.h"
38#include "xfs_pwork.h"
39#include "xfs_ag.h"
40#include "xfs_defer.h"
41#include "xfs_attr_item.h"
42#include "xfs_xattr.h"
43#include "xfs_iunlink_item.h"
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6
7#include "xfs.h"
8#include "xfs_shared.h"

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

36#include "xfs_bmap_item.h"
37#include "xfs_reflink.h"
38#include "xfs_pwork.h"
39#include "xfs_ag.h"
40#include "xfs_defer.h"
41#include "xfs_attr_item.h"
42#include "xfs_xattr.h"
43#include "xfs_iunlink_item.h"
44#include "xfs_dahash_test.h"
44
45#include <linux/magic.h>
46#include <linux/fs_context.h>
47#include <linux/fs_parser.h>
48
49static const struct super_operations xfs_super_operations;
50
51static struct kset *xfs_kset; /* top-level xfs sysfs dir */

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

2281
2282STATIC int __init
2283init_xfs_fs(void)
2284{
2285 int error;
2286
2287 xfs_check_ondisk_structs();
2288
45
46#include <linux/magic.h>
47#include <linux/fs_context.h>
48#include <linux/fs_parser.h>
49
50static const struct super_operations xfs_super_operations;
51
52static struct kset *xfs_kset; /* top-level xfs sysfs dir */

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

2282
2283STATIC int __init
2284init_xfs_fs(void)
2285{
2286 int error;
2287
2288 xfs_check_ondisk_structs();
2289
2290 error = xfs_dahash_test();
2291 if (error)
2292 return error;
2293
2289 printk(KERN_INFO XFS_VERSION_STRING " with "
2290 XFS_BUILD_OPTIONS " enabled\n");
2291
2292 xfs_dir_startup();
2293
2294 error = xfs_cpu_hotplug_init();
2295 if (error)
2296 goto out;

--- 110 unchanged lines hidden ---
2294 printk(KERN_INFO XFS_VERSION_STRING " with "
2295 XFS_BUILD_OPTIONS " enabled\n");
2296
2297 xfs_dir_startup();
2298
2299 error = xfs_cpu_hotplug_init();
2300 if (error)
2301 goto out;

--- 110 unchanged lines hidden ---