super.c (7a0263dc904f3467f474e4088ae092eda9a5a99b) super.c (5b11888471806edf699316d4dcb9b426caebbef2)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * fs/f2fs/super.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
7 */
8#include <linux/module.h>

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

3221 devs[i] = FDEV(i).bdev;
3222 *num_devs = sbi->s_ndevs;
3223 return devs;
3224}
3225
3226static const struct fscrypt_operations f2fs_cryptops = {
3227 .needs_bounce_pages = 1,
3228 .has_32bit_inodes = 1,
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * fs/f2fs/super.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
7 */
8#include <linux/module.h>

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

3221 devs[i] = FDEV(i).bdev;
3222 *num_devs = sbi->s_ndevs;
3223 return devs;
3224}
3225
3226static const struct fscrypt_operations f2fs_cryptops = {
3227 .needs_bounce_pages = 1,
3228 .has_32bit_inodes = 1,
3229 .supports_subblock_data_units = 1,
3229 .legacy_key_prefix = "f2fs:",
3230 .get_context = f2fs_get_context,
3231 .set_context = f2fs_set_context,
3232 .get_dummy_policy = f2fs_get_dummy_policy,
3233 .empty_dir = f2fs_empty_dir,
3234 .has_stable_inodes = f2fs_has_stable_inodes,
3235 .get_devices = f2fs_get_devices,
3236};

--- 1800 unchanged lines hidden ---
3230 .legacy_key_prefix = "f2fs:",
3231 .get_context = f2fs_get_context,
3232 .set_context = f2fs_set_context,
3233 .get_dummy_policy = f2fs_get_dummy_policy,
3234 .empty_dir = f2fs_empty_dir,
3235 .has_stable_inodes = f2fs_has_stable_inodes,
3236 .get_devices = f2fs_get_devices,
3237};

--- 1800 unchanged lines hidden ---