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
79bfe848
Commit
79bfe848
authored
Oct 08, 2003
by
Stephen Lord
Committed by
Stephen Lord
Oct 08, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert from using __kernel_fsid_t to fsid_t since ia64 now defines
this correctly
parent
8db83635
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
fs/xfs/linux/xfs_vfs.h
fs/xfs/linux/xfs_vfs.h
+2
-2
fs/xfs/xfs_mount.c
fs/xfs/xfs_mount.c
+1
-1
No files found.
fs/xfs/linux/xfs_vfs.h
View file @
79bfe848
...
@@ -44,8 +44,8 @@ struct xfs_mount_args;
...
@@ -44,8 +44,8 @@ struct xfs_mount_args;
typedef
struct
vfs
{
typedef
struct
vfs
{
u_int
vfs_flag
;
/* flags */
u_int
vfs_flag
;
/* flags */
__kernel_
fsid_t
vfs_fsid
;
/* file system ID */
fsid_t
vfs_fsid
;
/* file system ID */
__kernel_
fsid_t
*
vfs_altfsid
;
/* An ID fixed for life of FS */
fsid_t
*
vfs_altfsid
;
/* An ID fixed for life of FS */
bhv_head_t
vfs_bh
;
/* head of vfs behavior chain */
bhv_head_t
vfs_bh
;
/* head of vfs behavior chain */
struct
super_block
*
vfs_super
;
/* Linux superblock structure */
struct
super_block
*
vfs_super
;
/* Linux superblock structure */
struct
task_struct
*
vfs_sync_task
;
struct
task_struct
*
vfs_sync_task
;
...
...
fs/xfs/xfs_mount.c
View file @
79bfe848
...
@@ -903,7 +903,7 @@ xfs_mountfs(
...
@@ -903,7 +903,7 @@ xfs_mountfs(
* File systems that don't support user level file handles (i.e.
* File systems that don't support user level file handles (i.e.
* all of them except for XFS) will leave vfs_altfsid as NULL.
* all of them except for XFS) will leave vfs_altfsid as NULL.
*/
*/
vfsp
->
vfs_altfsid
=
(
__kernel_
fsid_t
*
)
mp
->
m_fixedfsid
;
vfsp
->
vfs_altfsid
=
(
fsid_t
*
)
mp
->
m_fixedfsid
;
mp
->
m_dmevmask
=
0
;
/* not persistent; set after each mount */
mp
->
m_dmevmask
=
0
;
/* not persistent; set after each mount */
/*
/*
...
...
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