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
99baa752
Commit
99baa752
authored
Aug 09, 2006
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Plain Diff
Merge
git://oss.sgi.com:8090/nathans/xfs-rc-2.6
parents
fff64257
0e1edbd9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
49 deletions
+54
-49
fs/xfs/xfs_alloc.c
fs/xfs/xfs_alloc.c
+54
-49
No files found.
fs/xfs/xfs_alloc.c
View file @
99baa752
...
...
@@ -1835,21 +1835,27 @@ xfs_alloc_fix_freelist(
&
agbp
)))
return
error
;
if
(
!
pag
->
pagf_init
)
{
ASSERT
(
flags
&
XFS_ALLOC_FLAG_TRYLOCK
);
ASSERT
(
!
(
flags
&
XFS_ALLOC_FLAG_FREEING
));
args
->
agbp
=
NULL
;
return
0
;
}
}
else
agbp
=
NULL
;
/* If this is a metadata preferred pag and we are user data
/*
* If this is a metadata preferred pag and we are user data
* then try somewhere else if we are not being asked to
* try harder at this point
*/
if
(
pag
->
pagf_metadata
&&
args
->
userdata
&&
flags
)
{
if
(
pag
->
pagf_metadata
&&
args
->
userdata
&&
(
flags
&
XFS_ALLOC_FLAG_TRYLOCK
))
{
ASSERT
(
!
(
flags
&
XFS_ALLOC_FLAG_FREEING
));
args
->
agbp
=
NULL
;
return
0
;
}
if
(
!
(
flags
&
XFS_ALLOC_FLAG_FREEING
))
{
need
=
XFS_MIN_FREELIST_PAG
(
pag
,
mp
);
delta
=
need
>
pag
->
pagf_flcount
?
need
-
pag
->
pagf_flcount
:
0
;
/*
...
...
@@ -1859,16 +1865,17 @@ xfs_alloc_fix_freelist(
longest
=
(
pag
->
pagf_longest
>
delta
)
?
(
pag
->
pagf_longest
-
delta
)
:
(
pag
->
pagf_flcount
>
0
||
pag
->
pagf_longest
>
0
);
if
(
args
->
minlen
+
args
->
alignment
+
args
->
minalignslop
-
1
>
longest
||
(
!
(
flags
&
XFS_ALLOC_FLAG_FREEING
)
&&
(
int
)(
pag
->
pagf_freeblks
+
pag
->
pagf_flcount
-
need
-
args
->
total
)
<
(
int
)
args
->
minleft
))
{
if
((
args
->
minlen
+
args
->
alignment
+
args
->
minalignslop
-
1
)
>
longest
||
((
int
)(
pag
->
pagf_freeblks
+
pag
->
pagf_flcount
-
need
-
args
->
total
)
<
(
int
)
args
->
minleft
))
{
if
(
agbp
)
xfs_trans_brelse
(
tp
,
agbp
);
args
->
agbp
=
NULL
;
return
0
;
}
}
/*
* Get the a.g. freespace buffer.
* Can fail if we're not blocking on locks, and it's held.
...
...
@@ -1878,6 +1885,8 @@ xfs_alloc_fix_freelist(
&
agbp
)))
return
error
;
if
(
agbp
==
NULL
)
{
ASSERT
(
flags
&
XFS_ALLOC_FLAG_TRYLOCK
);
ASSERT
(
!
(
flags
&
XFS_ALLOC_FLAG_FREEING
));
args
->
agbp
=
NULL
;
return
0
;
}
...
...
@@ -1887,23 +1896,25 @@ xfs_alloc_fix_freelist(
*/
agf
=
XFS_BUF_TO_AGF
(
agbp
);
need
=
XFS_MIN_FREELIST
(
agf
,
mp
);
delta
=
need
>
be32_to_cpu
(
agf
->
agf_flcount
)
?
(
need
-
be32_to_cpu
(
agf
->
agf_flcount
))
:
0
;
/*
* If there isn't enough total or single-extent, reject it.
*/
if
(
!
(
flags
&
XFS_ALLOC_FLAG_FREEING
))
{
delta
=
need
>
be32_to_cpu
(
agf
->
agf_flcount
)
?
(
need
-
be32_to_cpu
(
agf
->
agf_flcount
))
:
0
;
longest
=
be32_to_cpu
(
agf
->
agf_longest
);
longest
=
(
longest
>
delta
)
?
(
longest
-
delta
)
:
(
be32_to_cpu
(
agf
->
agf_flcount
)
>
0
||
longest
>
0
);
if
(
args
->
minlen
+
args
->
alignment
+
args
->
minalignslop
-
1
>
longest
||
(
!
(
flags
&
XFS_ALLOC_FLAG_FREEING
)
&&
(
int
)(
be32_to_cpu
(
agf
->
agf_freeblks
)
+
if
((
args
->
minlen
+
args
->
alignment
+
args
->
minalignslop
-
1
)
>
longest
||
(
(
int
)(
be32_to_cpu
(
agf
->
agf_freeblks
)
+
be32_to_cpu
(
agf
->
agf_flcount
)
-
need
-
args
->
total
)
<
(
int
)
args
->
minleft
))
{
xfs_trans_brelse
(
tp
,
agbp
);
args
->
agbp
=
NULL
;
return
0
;
}
}
/*
* Make the freelist shorter if it's too long.
*/
...
...
@@ -1950,13 +1961,12 @@ xfs_alloc_fix_freelist(
* on a completely full ag.
*/
if
(
targs
.
agbno
==
NULLAGBLOCK
)
{
if
(
!
(
flags
&
XFS_ALLOC_FLAG_FREEING
))
{
if
(
flags
&
XFS_ALLOC_FLAG_FREEING
)
break
;
xfs_trans_brelse
(
tp
,
agflbp
);
args
->
agbp
=
NULL
;
return
0
;
}
break
;
}
/*
* Put each allocated block on the list.
*/
...
...
@@ -2442,31 +2452,26 @@ xfs_free_extent(
xfs_fsblock_t
bno
,
/* starting block number of extent */
xfs_extlen_t
len
)
/* length of extent */
{
#ifdef DEBUG
xfs_agf_t
*
agf
;
/* a.g. freespace header */
#endif
xfs_alloc_arg_t
args
;
/* allocation argument structure */
xfs_alloc_arg_t
args
;
int
error
;
ASSERT
(
len
!=
0
);
memset
(
&
args
,
0
,
sizeof
(
xfs_alloc_arg_t
));
args
.
tp
=
tp
;
args
.
mp
=
tp
->
t_mountp
;
args
.
agno
=
XFS_FSB_TO_AGNO
(
args
.
mp
,
bno
);
ASSERT
(
args
.
agno
<
args
.
mp
->
m_sb
.
sb_agcount
);
args
.
agbno
=
XFS_FSB_TO_AGBNO
(
args
.
mp
,
bno
);
args
.
alignment
=
1
;
args
.
minlen
=
args
.
minleft
=
args
.
minalignslop
=
0
;
down_read
(
&
args
.
mp
->
m_peraglock
);
args
.
pag
=
&
args
.
mp
->
m_perag
[
args
.
agno
];
if
((
error
=
xfs_alloc_fix_freelist
(
&
args
,
XFS_ALLOC_FLAG_FREEING
)))
goto
error0
;
#ifdef DEBUG
ASSERT
(
args
.
agbp
!=
NULL
);
agf
=
XFS_BUF_TO_AGF
(
args
.
agbp
);
ASSERT
(
args
.
agbno
+
len
<=
be32_to_cpu
(
agf
->
agf_length
));
ASSERT
((
args
.
agbno
+
len
)
<=
be32_to_cpu
(
XFS_BUF_TO_AGF
(
args
.
agbp
)
->
agf_length
));
#endif
error
=
xfs_free_ag_extent
(
tp
,
args
.
agbp
,
args
.
agno
,
args
.
agbno
,
len
,
0
);
error
=
xfs_free_ag_extent
(
tp
,
args
.
agbp
,
args
.
agno
,
args
.
agbno
,
len
,
0
);
error0:
up_read
(
&
args
.
mp
->
m_peraglock
);
return
error
;
...
...
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