super.c (0fe2f273ab892bbba3f8d85e3f237bc0802e5709) super.c (14f3db5542e62bcf6fe088a09760ac52d55306c5)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * linux/fs/ext4/super.c
4 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)

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

6649 return 1;
6650}
6651
6652static struct file_system_type ext4_fs_type = {
6653 .owner = THIS_MODULE,
6654 .name = "ext4",
6655 .mount = ext4_mount,
6656 .kill_sb = kill_block_super,
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * linux/fs/ext4/super.c
4 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)

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

6649 return 1;
6650}
6651
6652static struct file_system_type ext4_fs_type = {
6653 .owner = THIS_MODULE,
6654 .name = "ext4",
6655 .mount = ext4_mount,
6656 .kill_sb = kill_block_super,
6657 .fs_flags = FS_REQUIRES_DEV,
6657 .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
6658};
6659MODULE_ALIAS_FS("ext4");
6660
6661/* Shared across all ext4 file systems */
6662wait_queue_head_t ext4__ioend_wq[EXT4_WQ_HASH_SZ];
6663
6664static int __init ext4_init_fs(void)
6665{

--- 99 unchanged lines hidden ---
6658};
6659MODULE_ALIAS_FS("ext4");
6660
6661/* Shared across all ext4 file systems */
6662wait_queue_head_t ext4__ioend_wq[EXT4_WQ_HASH_SZ];
6663
6664static int __init ext4_init_fs(void)
6665{

--- 99 unchanged lines hidden ---