ntfs_fs.h (78ab59fee07f22464f32eafebab2bd97ba94ff2d) ntfs_fs.h (d3624466b56dd5b1886c1dff500525b544c19c83)
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 *
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
5 *
6 */
7
8// clang-format off

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

54struct ntfs_mount_options {
55 struct nls_table *nls;
56
57 kuid_t fs_uid;
58 kgid_t fs_gid;
59 u16 fs_fmask_inv;
60 u16 fs_dmask_inv;
61
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 *
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
5 *
6 */
7
8// clang-format off

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

54struct ntfs_mount_options {
55 struct nls_table *nls;
56
57 kuid_t fs_uid;
58 kgid_t fs_gid;
59 u16 fs_fmask_inv;
60 u16 fs_dmask_inv;
61
62 unsigned uid : 1, /* uid was set. */
63 gid : 1, /* gid was set. */
64 fmask : 1, /* fmask was set. */
65 dmask : 1, /* dmask was set. */
66 sys_immutable : 1,/* Immutable system files. */
67 discard : 1, /* Issue discard requests on deletions. */
68 sparse : 1, /* Create sparse files. */
69 showmeta : 1, /* Show meta files. */
70 nohidden : 1, /* Do not show hidden files. */
71 force : 1, /* Rw mount dirty volume. */
72 no_acs_rules : 1,/*Exclude acs rules. */
73 prealloc : 1 /* Preallocate space when file is growing. */
62 unsigned uid : 1, /* uid was set. */
63 gid : 1, /* gid was set. */
64 fmask : 1, /* fmask was set. */
65 dmask : 1, /* dmask was set. */
66 sys_immutable : 1, /* Immutable system files. */
67 discard : 1, /* Issue discard requests on deletions. */
68 sparse : 1, /* Create sparse files. */
69 showmeta : 1, /* Show meta files. */
70 nohidden : 1, /* Do not show hidden files. */
71 force : 1, /* Rw mount dirty volume. */
72 no_acs_rules : 1, /*Exclude acs rules. */
73 prealloc : 1 /* Preallocate space when file is growing. */
74 ;
75};
76
77/* Special value to unpack and deallocate. */
78#define RUN_DEALLOCATE ((struct runs_tree *)(size_t)1)
79
80/* TODO: Use rb tree instead of array. */
81struct runs_tree {

--- 1030 unchanged lines hidden ---
74 ;
75};
76
77/* Special value to unpack and deallocate. */
78#define RUN_DEALLOCATE ((struct runs_tree *)(size_t)1)
79
80/* TODO: Use rb tree instead of array. */
81struct runs_tree {

--- 1030 unchanged lines hidden ---