Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
19516634
Commit
19516634
authored
Oct 11, 2002
by
Luca Tettamanti
Committed by
Linus Torvalds
Oct 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] C99 designated initializer for fs/affs
parent
96123596
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
fs/affs/super.c
fs/affs/super.c
+16
-16
No files found.
fs/affs/super.c
View file @
19516634
...
...
@@ -130,17 +130,17 @@ static void destroy_inodecache(void)
}
static
struct
super_operations
affs_sops
=
{
alloc_inode:
affs_alloc_inode
,
destroy_inode:
affs_destroy_inode
,
read_inode:
affs_read_inode
,
write_inode:
affs_write_inode
,
put_inode:
affs_put_inode
,
delete_inode:
affs_delete_inode
,
clear_inode:
affs_clear_inode
,
put_super:
affs_put_super
,
write_super:
affs_write_super
,
statfs:
affs_statfs
,
remount_fs:
affs_remount
,
.
alloc_inode
=
affs_alloc_inode
,
.
destroy_inode
=
affs_destroy_inode
,
.
read_inode
=
affs_read_inode
,
.
write_inode
=
affs_write_inode
,
.
put_inode
=
affs_put_inode
,
.
delete_inode
=
affs_delete_inode
,
.
clear_inode
=
affs_clear_inode
,
.
put_super
=
affs_put_super
,
.
write_super
=
affs_write_super
,
.
statfs
=
affs_statfs
,
.
remount_fs
=
affs_remount
,
};
static
int
...
...
@@ -550,11 +550,11 @@ static struct super_block *affs_get_sb(struct file_system_type *fs_type,
}
static
struct
file_system_type
affs_fs_type
=
{
owner:
THIS_MODULE
,
name:
"affs"
,
get_sb:
affs_get_sb
,
kill_sb:
kill_block_super
,
fs_flags:
FS_REQUIRES_DEV
,
.
owner
=
THIS_MODULE
,
.
name
=
"affs"
,
.
get_sb
=
affs_get_sb
,
.
kill_sb
=
kill_block_super
,
.
fs_flags
=
FS_REQUIRES_DEV
,
};
static
int
__init
init_affs_fs
(
void
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment