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
Kirill Smelkov
linux
Commits
fd12985b
Commit
fd12985b
authored
Nov 06, 2002
by
Nathan Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Fix compile error with XFS_BIG_FILESYSTEMS set.
SGI Modid: 2.5.x-xfs:slinx:131618a
parent
cfb315eb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
fs/xfs/xfs_bmap_btree.c
fs/xfs/xfs_bmap_btree.c
+3
-3
No files found.
fs/xfs/xfs_bmap_btree.c
View file @
fd12985b
...
...
@@ -1874,7 +1874,7 @@ xfs_bmbt_delete(
* xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
*/
static
__inline__
void
STATIC
__inline__
void
__xfs_bmbt_get_all
(
__uint64_t
l0
,
__uint64_t
l1
,
...
...
@@ -2514,10 +2514,10 @@ xfs_bmbt_set_allf(
#if XFS_BIG_FILESYSTEMS
r
->
l0
=
((
xfs_bmbt_rec_base_t
)
extent_flag
<<
63
)
|
((
xfs_bmbt_rec_base_t
)
o
<<
9
)
|
((
xfs_bmbt_rec_base_t
)
b
>>
43
)
)
;
((
xfs_bmbt_rec_base_t
)
b
>>
43
);
r
->
l1
=
((
xfs_bmbt_rec_base_t
)
b
<<
21
)
|
((
xfs_bmbt_rec_base_t
)
c
&
(
xfs_bmbt_rec_base_t
)
XFS_MASK64LO
(
21
))
)
;
(
xfs_bmbt_rec_base_t
)
XFS_MASK64LO
(
21
));
#else
/* !XFS_BIG_FILESYSTEMS */
if
(
ISNULLSTARTBLOCK
(
b
))
{
r
->
l0
=
((
xfs_bmbt_rec_base_t
)
extent_flag
<<
63
)
|
...
...
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