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
1bf7dbfd
Commit
1bf7dbfd
authored
Jun 04, 2010
by
Alex Elder
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into for-linus
parents
ad845636
f9369729
Changes
18
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
736 additions
and
798 deletions
+736
-798
Documentation/filesystems/xfs-delayed-logging-design.txt
Documentation/filesystems/xfs-delayed-logging-design.txt
+0
-5
fs/xfs/linux-2.6/xfs_aops.c
fs/xfs/linux-2.6/xfs_aops.c
+15
-0
fs/xfs/linux-2.6/xfs_iops.c
fs/xfs/linux-2.6/xfs_iops.c
+13
-3
fs/xfs/linux-2.6/xfs_quotaops.c
fs/xfs/linux-2.6/xfs_quotaops.c
+0
-1
fs/xfs/linux-2.6/xfs_sync.c
fs/xfs/linux-2.6/xfs_sync.c
+0
-9
fs/xfs/linux-2.6/xfs_trace.c
fs/xfs/linux-2.6/xfs_trace.c
+0
-1
fs/xfs/linux-2.6/xfs_trace.h
fs/xfs/linux-2.6/xfs_trace.h
+188
-168
fs/xfs/quota/xfs_qm.c
fs/xfs/quota/xfs_qm.c
+3
-1
fs/xfs/xfs_ag.h
fs/xfs/xfs_ag.h
+0
-1
fs/xfs/xfs_iget.c
fs/xfs/xfs_iget.c
+10
-19
fs/xfs/xfs_inode.c
fs/xfs/xfs_inode.c
+62
-82
fs/xfs/xfs_log_recover.c
fs/xfs/xfs_log_recover.c
+3
-8
fs/xfs/xfs_mount.c
fs/xfs/xfs_mount.c
+29
-39
fs/xfs/xfs_rtalloc.c
fs/xfs/xfs_rtalloc.c
+2
-2
fs/xfs/xfs_rtalloc.h
fs/xfs/xfs_rtalloc.h
+10
-1
fs/xfs/xfs_trans.c
fs/xfs/xfs_trans.c
+400
-46
fs/xfs/xfs_trans.h
fs/xfs/xfs_trans.h
+0
-411
fs/xfs/xfs_vnodeops.c
fs/xfs/xfs_vnodeops.c
+1
-1
No files found.
Documentation/filesystems/xfs-delayed-logging-design.txt
View file @
1bf7dbfd
...
...
@@ -794,11 +794,6 @@ designed.
Roadmap:
2.6.35 Inclusion in mainline as an experimental mount option
=> approximately 2-3 months to merge window
=> needs to be in xfs-dev tree in 4-6 weeks
=> code is nearing readiness for review
2.6.37 Remove experimental tag from mount option
=> should be roughly 6 months after initial merge
=> enough time to:
...
...
fs/xfs/linux-2.6/xfs_aops.c
View file @
1bf7dbfd
...
...
@@ -1332,6 +1332,21 @@ xfs_vm_writepage(
trace_xfs_writepage
(
inode
,
page
,
0
);
/*
* Refuse to write the page out if we are called from reclaim context.
*
* This is primarily to avoid stack overflows when called from deep
* used stacks in random callers for direct reclaim, but disabling
* reclaim for kswap is a nice side-effect as kswapd causes rather
* suboptimal I/O patters, too.
*
* This should really be done by the core VM, but until that happens
* filesystems like XFS, btrfs and ext4 have to take care of this
* by themselves.
*/
if
(
current
->
flags
&
PF_MEMALLOC
)
goto
out_fail
;
/*
* We need a transaction if:
* 1. There are delalloc buffers on the page
...
...
fs/xfs/linux-2.6/xfs_iops.c
View file @
1bf7dbfd
...
...
@@ -585,11 +585,20 @@ xfs_vn_fallocate(
bf
.
l_len
=
len
;
xfs_ilock
(
ip
,
XFS_IOLOCK_EXCL
);
/* check the new inode size is valid before allocating */
if
(
!
(
mode
&
FALLOC_FL_KEEP_SIZE
)
&&
offset
+
len
>
i_size_read
(
inode
))
{
new_size
=
offset
+
len
;
error
=
inode_newsize_ok
(
inode
,
new_size
);
if
(
error
)
goto
out_unlock
;
}
error
=
-
xfs_change_file_space
(
ip
,
XFS_IOC_RESVSP
,
&
bf
,
0
,
XFS_ATTR_NOLOCK
);
if
(
!
error
&&
!
(
mode
&
FALLOC_FL_KEEP_SIZE
)
&&
offset
+
len
>
i_size_read
(
inode
))
new_size
=
offset
+
len
;
if
(
error
)
goto
out_unlock
;
/* Change file size if needed */
if
(
new_size
)
{
...
...
@@ -600,6 +609,7 @@ xfs_vn_fallocate(
error
=
-
xfs_setattr
(
ip
,
&
iattr
,
XFS_ATTR_NOLOCK
);
}
out_unlock:
xfs_iunlock
(
ip
,
XFS_IOLOCK_EXCL
);
out_error:
return
error
;
...
...
fs/xfs/linux-2.6/xfs_quotaops.c
View file @
1bf7dbfd
...
...
@@ -23,7 +23,6 @@
#include "xfs_ag.h"
#include "xfs_mount.h"
#include "xfs_quota.h"
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_bmap_btree.h"
#include "xfs_inode.h"
...
...
fs/xfs/linux-2.6/xfs_sync.c
View file @
1bf7dbfd
...
...
@@ -164,10 +164,6 @@ xfs_inode_ag_iterator(
struct
xfs_perag
*
pag
;
pag
=
xfs_perag_get
(
mp
,
ag
);
if
(
!
pag
->
pag_ici_init
)
{
xfs_perag_put
(
pag
);
continue
;
}
error
=
xfs_inode_ag_walk
(
mp
,
pag
,
execute
,
flags
,
tag
,
exclusive
,
&
nr
);
xfs_perag_put
(
pag
);
...
...
@@ -867,12 +863,7 @@ xfs_reclaim_inode_shrink(
down_read
(
&
xfs_mount_list_lock
);
list_for_each_entry
(
mp
,
&
xfs_mount_list
,
m_mplist
)
{
for
(
ag
=
0
;
ag
<
mp
->
m_sb
.
sb_agcount
;
ag
++
)
{
pag
=
xfs_perag_get
(
mp
,
ag
);
if
(
!
pag
->
pag_ici_init
)
{
xfs_perag_put
(
pag
);
continue
;
}
reclaimable
+=
pag
->
pag_ici_reclaimable
;
xfs_perag_put
(
pag
);
}
...
...
fs/xfs/linux-2.6/xfs_trace.c
View file @
1bf7dbfd
...
...
@@ -50,7 +50,6 @@
#include "quota/xfs_dquot_item.h"
#include "quota/xfs_dquot.h"
#include "xfs_log_recover.h"
#include "xfs_buf_item.h"
#include "xfs_inode_item.h"
/*
...
...
fs/xfs/linux-2.6/xfs_trace.h
View file @
1bf7dbfd
This diff is collapsed.
Click to expand it.
fs/xfs/quota/xfs_qm.c
View file @
1bf7dbfd
...
...
@@ -249,8 +249,10 @@ xfs_qm_hold_quotafs_ref(
if
(
!
xfs_Gqm
)
{
xfs_Gqm
=
xfs_Gqm_init
();
if
(
!
xfs_Gqm
)
if
(
!
xfs_Gqm
)
{
mutex_unlock
(
&
xfs_Gqm_lock
);
return
ENOMEM
;
}
}
/*
...
...
fs/xfs/xfs_ag.h
View file @
1bf7dbfd
...
...
@@ -227,7 +227,6 @@ typedef struct xfs_perag {
atomic_t
pagf_fstrms
;
/* # of filestreams active in this AG */
int
pag_ici_init
;
/* incore inode cache initialised */
rwlock_t
pag_ici_lock
;
/* incore inode lock */
struct
radix_tree_root
pag_ici_root
;
/* incore inode cache root */
int
pag_ici_reclaimable
;
/* reclaimable inodes */
...
...
fs/xfs/xfs_iget.c
View file @
1bf7dbfd
...
...
@@ -382,9 +382,6 @@ xfs_iget(
/* get the perag structure and ensure that it's inode capable */
pag
=
xfs_perag_get
(
mp
,
XFS_INO_TO_AGNO
(
mp
,
ino
));
if
(
!
pag
->
pagi_inodeok
)
return
EINVAL
;
ASSERT
(
pag
->
pag_ici_init
);
agino
=
XFS_INO_TO_AGINO
(
mp
,
ino
);
again:
...
...
@@ -744,30 +741,24 @@ xfs_ilock_demote(
}
#ifdef DEBUG
/*
* Debug-only routine, without additional rw_semaphore APIs, we can
* now only answer requests regarding whether we hold the lock for write
* (reader state is outside our visibility, we only track writer state).
*
* Note: this means !xfs_isilocked would give false positives, so don't do that.
*/
int
xfs_isilocked
(
xfs_inode_t
*
ip
,
uint
lock_flags
)
{
if
(
(
lock_flags
&
(
XFS_ILOCK_EXCL
|
XFS_ILOCK_SHARED
))
==
XFS_ILOCK_EXCL
)
{
if
(
!
ip
->
i_lock
.
mr_writer
)
return
0
;
if
(
lock_flags
&
(
XFS_ILOCK_EXCL
|
XFS_ILOCK_SHARED
))
{
if
(
!
(
lock_flags
&
XFS_ILOCK_SHARED
))
return
!!
ip
->
i_lock
.
mr_writer
;
return
rwsem_is_locked
(
&
ip
->
i_lock
.
mr_lock
)
;
}
if
(
(
lock_flags
&
(
XFS_IOLOCK_EXCL
|
XFS_IOLOCK_SHARED
))
==
XFS_IOLOCK_EXCL
)
{
if
(
!
ip
->
i_iolock
.
mr_writer
)
return
0
;
if
(
lock_flags
&
(
XFS_IOLOCK_EXCL
|
XFS_IOLOCK_SHARED
))
{
if
(
!
(
lock_flags
&
XFS_IOLOCK_SHARED
))
return
!!
ip
->
i_iolock
.
mr_writer
;
return
rwsem_is_locked
(
&
ip
->
i_iolock
.
mr_lock
)
;
}
return
1
;
ASSERT
(
0
);
return
0
;
}
#endif
fs/xfs/xfs_inode.c
View file @
1bf7dbfd
...
...
@@ -1940,10 +1940,10 @@ xfs_ifree_cluster(
int
blks_per_cluster
;
int
nbufs
;
int
ninodes
;
int
i
,
j
,
found
,
pre_flushed
;
int
i
,
j
;
xfs_daddr_t
blkno
;
xfs_buf_t
*
bp
;
xfs_inode_t
*
ip
,
**
ip_found
;
xfs_inode_t
*
ip
;
xfs_inode_log_item_t
*
iip
;
xfs_log_item_t
*
lip
;
struct
xfs_perag
*
pag
;
...
...
@@ -1960,114 +1960,97 @@ xfs_ifree_cluster(
nbufs
=
XFS_IALLOC_BLOCKS
(
mp
)
/
blks_per_cluster
;
}
ip_found
=
kmem_alloc
(
ninodes
*
sizeof
(
xfs_inode_t
*
),
KM_NOFS
);
for
(
j
=
0
;
j
<
nbufs
;
j
++
,
inum
+=
ninodes
)
{
int
found
=
0
;
blkno
=
XFS_AGB_TO_DADDR
(
mp
,
XFS_INO_TO_AGNO
(
mp
,
inum
),
XFS_INO_TO_AGBNO
(
mp
,
inum
));
/*
* We obtain and lock the backing buffer first in the process
* here, as we have to ensure that any dirty inode that we
* can't get the flush lock on is attached to the buffer.
* If we scan the in-memory inodes first, then buffer IO can
* complete before we get a lock on it, and hence we may fail
* to mark all the active inodes on the buffer stale.
*/
bp
=
xfs_trans_get_buf
(
tp
,
mp
->
m_ddev_targp
,
blkno
,
mp
->
m_bsize
*
blks_per_cluster
,
XBF_LOCK
);
/*
* Walk the inodes already attached to the buffer and mark them
* stale. These will all have the flush locks held, so an
* in-memory inode walk can't lock them.
*/
lip
=
XFS_BUF_FSPRIVATE
(
bp
,
xfs_log_item_t
*
);
while
(
lip
)
{
if
(
lip
->
li_type
==
XFS_LI_INODE
)
{
iip
=
(
xfs_inode_log_item_t
*
)
lip
;
ASSERT
(
iip
->
ili_logged
==
1
);
lip
->
li_cb
=
(
void
(
*
)(
xfs_buf_t
*
,
xfs_log_item_t
*
))
xfs_istale_done
;
xfs_trans_ail_copy_lsn
(
mp
->
m_ail
,
&
iip
->
ili_flush_lsn
,
&
iip
->
ili_item
.
li_lsn
);
xfs_iflags_set
(
iip
->
ili_inode
,
XFS_ISTALE
);
found
++
;
}
lip
=
lip
->
li_bio_list
;
}
/*
*
Look for each inode in memory and attempt to lock it,
*
we can be racing with flush and tail pushing here.
*
any inode we get the locks on, add to an array of
*
inode items to process lat
er.
*
For each inode in memory attempt to add it to the inode
*
buffer and set it up for being staled on buffer IO
*
completion. This is safe as we've locked out tail pushing
*
and flushing by locking the buff
er.
*
* The get the buffer lock, we could beat a flush
* or tail pushing thread to the lock here, in which
* case they will go looking for the inode buffer
* and fail, we need some other form of interlock
* here.
* We have already marked every inode that was part of a
* transaction stale above, which means there is no point in
* even trying to lock them.
*/
found
=
0
;
for
(
i
=
0
;
i
<
ninodes
;
i
++
)
{
read_lock
(
&
pag
->
pag_ici_lock
);
ip
=
radix_tree_lookup
(
&
pag
->
pag_ici_root
,
XFS_INO_TO_AGINO
(
mp
,
(
inum
+
i
)));
/* Inode not in memory or we found it already,
* nothing to do
*/
/* Inode not in memory or stale, nothing to do */
if
(
!
ip
||
xfs_iflags_test
(
ip
,
XFS_ISTALE
))
{
read_unlock
(
&
pag
->
pag_ici_lock
);
continue
;
}
if
(
xfs_inode_clean
(
ip
))
{
read_unlock
(
&
pag
->
pag_ici_lock
);
continue
;
}
/* If we can get the locks then add it to the
* list, otherwise by the time we get the bp lock
* below it will already be attached to the
* inode buffer.
*/
/* This inode will already be locked - by us, lets
* keep it that way.
*/
if
(
ip
==
free_ip
)
{
if
(
xfs_iflock_nowait
(
ip
))
{
xfs_iflags_set
(
ip
,
XFS_ISTALE
);
if
(
xfs_inode_clean
(
ip
))
{
xfs_ifunlock
(
ip
);
}
else
{
ip_found
[
found
++
]
=
ip
;
}
}
/* don't try to lock/unlock the current inode */
if
(
ip
!=
free_ip
&&
!
xfs_ilock_nowait
(
ip
,
XFS_ILOCK_EXCL
))
{
read_unlock
(
&
pag
->
pag_ici_lock
);
continue
;
}
read_unlock
(
&
pag
->
pag_ici_lock
);
if
(
xfs_ilock_nowait
(
ip
,
XFS_ILOCK_EXCL
))
{
if
(
xfs_iflock_nowait
(
ip
))
{
xfs_iflags_set
(
ip
,
XFS_ISTALE
);
if
(
xfs_inode_clean
(
ip
))
{
xfs_ifunlock
(
ip
);
xfs_iunlock
(
ip
,
XFS_ILOCK_EXCL
);
}
else
{
ip_found
[
found
++
]
=
ip
;
}
}
else
{
if
(
!
xfs_iflock_nowait
(
ip
))
{
if
(
ip
!=
free_ip
)
xfs_iunlock
(
ip
,
XFS_ILOCK_EXCL
);
}
continue
;
}
read_unlock
(
&
pag
->
pag_ici_lock
);
}
bp
=
xfs_trans_get_buf
(
tp
,
mp
->
m_ddev_targp
,
blkno
,
mp
->
m_bsize
*
blks_per_cluster
,
XBF_LOCK
);
pre_flushed
=
0
;
lip
=
XFS_BUF_FSPRIVATE
(
bp
,
xfs_log_item_t
*
);
while
(
lip
)
{
if
(
lip
->
li_type
==
XFS_LI_INODE
)
{
iip
=
(
xfs_inode_log_item_t
*
)
lip
;
ASSERT
(
iip
->
ili_logged
==
1
);
lip
->
li_cb
=
(
void
(
*
)(
xfs_buf_t
*
,
xfs_log_item_t
*
))
xfs_istale_done
;
xfs_trans_ail_copy_lsn
(
mp
->
m_ail
,
&
iip
->
ili_flush_lsn
,
&
iip
->
ili_item
.
li_lsn
);
xfs_iflags_set
(
iip
->
ili_inode
,
XFS_ISTALE
);
pre_flushed
++
;
xfs_iflags_set
(
ip
,
XFS_ISTALE
);
if
(
xfs_inode_clean
(
ip
))
{
ASSERT
(
ip
!=
free_ip
);
xfs_ifunlock
(
ip
);
xfs_iunlock
(
ip
,
XFS_ILOCK_EXCL
);
continue
;
}
lip
=
lip
->
li_bio_list
;
}
for
(
i
=
0
;
i
<
found
;
i
++
)
{
ip
=
ip_found
[
i
];
iip
=
ip
->
i_itemp
;
if
(
!
iip
)
{
/* inode with unlogged changes only */
ASSERT
(
ip
!=
free_ip
);
ip
->
i_update_core
=
0
;
xfs_ifunlock
(
ip
);
xfs_iunlock
(
ip
,
XFS_ILOCK_EXCL
);
continue
;
}
found
++
;
iip
->
ili_last_fields
=
iip
->
ili_format
.
ilf_fields
;
iip
->
ili_format
.
ilf_fields
=
0
;
...
...
@@ -2078,17 +2061,16 @@ xfs_ifree_cluster(
xfs_buf_attach_iodone
(
bp
,
(
void
(
*
)(
xfs_buf_t
*
,
xfs_log_item_t
*
))
xfs_istale_done
,
(
xfs_log_item_t
*
)
iip
);
if
(
ip
!=
free_ip
)
{
if
(
ip
!=
free_ip
)
xfs_iunlock
(
ip
,
XFS_ILOCK_EXCL
);
}
}
if
(
found
||
pre_flushed
)
if
(
found
)
xfs_trans_stale_inode_buf
(
tp
,
bp
);
xfs_trans_binval
(
tp
,
bp
);
}
kmem_free
(
ip_found
);
xfs_perag_put
(
pag
);
}
...
...
@@ -2649,8 +2631,6 @@ xfs_iflush_cluster(
int
i
;
pag
=
xfs_perag_get
(
mp
,
XFS_INO_TO_AGNO
(
mp
,
ip
->
i_ino
));
ASSERT
(
pag
->
pagi_inodeok
);
ASSERT
(
pag
->
pag_ici_init
);
inodes_per_cluster
=
XFS_INODE_CLUSTER_SIZE
(
mp
)
>>
mp
->
m_sb
.
sb_inodelog
;
ilist_size
=
inodes_per_cluster
*
sizeof
(
xfs_inode_t
*
);
...
...
fs/xfs/xfs_log_recover.c
View file @
1bf7dbfd
...
...
@@ -132,15 +132,10 @@ xlog_align(
int
nbblks
,
xfs_buf_t
*
bp
)
{
xfs_daddr_t
offset
;
xfs_caddr_t
ptr
;
xfs_daddr_t
offset
=
blk_no
&
((
xfs_daddr_t
)
log
->
l_sectBBsize
-
1
);
offset
=
blk_no
&
((
xfs_daddr_t
)
log
->
l_sectBBsize
-
1
);
ptr
=
XFS_BUF_PTR
(
bp
)
+
BBTOB
(
offset
);
ASSERT
(
ptr
+
BBTOB
(
nbblks
)
<=
XFS_BUF_PTR
(
bp
)
+
XFS_BUF_SIZE
(
bp
));
return
ptr
;
ASSERT
(
BBTOB
(
offset
+
nbblks
)
<=
XFS_BUF_SIZE
(
bp
));
return
XFS_BUF_PTR
(
bp
)
+
BBTOB
(
offset
);
}
...
...
fs/xfs/xfs_mount.c
View file @
1bf7dbfd
...
...
@@ -268,10 +268,10 @@ xfs_sb_validate_fsb_count(
#if XFS_BIG_BLKNOS
/* Limited by ULONG_MAX of page cache index */
if
(
nblocks
>>
(
PAGE_CACHE_SHIFT
-
sbp
->
sb_blocklog
)
>
ULONG_MAX
)
return
E
2
BIG
;
return
E
F
BIG
;
#else
/* Limited by UINT_MAX of sectors */
if
(
nblocks
<<
(
sbp
->
sb_blocklog
-
BBSHIFT
)
>
UINT_MAX
)
return
E
2
BIG
;
return
E
F
BIG
;
#endif
return
0
;
}
...
...
@@ -393,7 +393,7 @@ xfs_mount_validate_sb(
xfs_sb_validate_fsb_count
(
sbp
,
sbp
->
sb_rblocks
))
{
xfs_fs_mount_cmn_err
(
flags
,
"file system too large to be mounted on this system."
);
return
XFS_ERROR
(
E
2
BIG
);
return
XFS_ERROR
(
E
F
BIG
);
}
if
(
unlikely
(
sbp
->
sb_inprogress
))
{
...
...
@@ -413,17 +413,6 @@ xfs_mount_validate_sb(
return
0
;
}
STATIC
void
xfs_initialize_perag_icache
(
xfs_perag_t
*
pag
)
{
if
(
!
pag
->
pag_ici_init
)
{
rwlock_init
(
&
pag
->
pag_ici_lock
);
INIT_RADIX_TREE
(
&
pag
->
pag_ici_root
,
GFP_ATOMIC
);
pag
->
pag_ici_init
=
1
;
}
}
int
xfs_initialize_perag
(
xfs_mount_t
*
mp
,
...
...
@@ -436,13 +425,8 @@ xfs_initialize_perag(
xfs_agino_t
agino
;
xfs_ino_t
ino
;
xfs_sb_t
*
sbp
=
&
mp
->
m_sb
;
xfs_ino_t
max_inum
=
XFS_MAXINUMBER_32
;
int
error
=
-
ENOMEM
;
/* Check to see if the filesystem can overflow 32 bit inodes */
agino
=
XFS_OFFBNO_TO_AGINO
(
mp
,
sbp
->
sb_agblocks
-
1
,
0
);
ino
=
XFS_AGINO_TO_INO
(
mp
,
agcount
-
1
,
agino
);
/*
* Walk the current per-ag tree so we don't try to initialise AGs
* that already exist (growfs case). Allocate and insert all the
...
...
@@ -456,11 +440,18 @@ xfs_initialize_perag(
}
if
(
!
first_initialised
)
first_initialised
=
index
;
pag
=
kmem_zalloc
(
sizeof
(
*
pag
),
KM_MAYFAIL
);
if
(
!
pag
)
goto
out_unwind
;
pag
->
pag_agno
=
index
;
pag
->
pag_mount
=
mp
;
rwlock_init
(
&
pag
->
pag_ici_lock
);
INIT_RADIX_TREE
(
&
pag
->
pag_ici_root
,
GFP_ATOMIC
);
if
(
radix_tree_preload
(
GFP_NOFS
))
goto
out_unwind
;
spin_lock
(
&
mp
->
m_perag_lock
);
if
(
radix_tree_insert
(
&
mp
->
m_perag_tree
,
index
,
pag
))
{
BUG
();
...
...
@@ -469,25 +460,26 @@ xfs_initialize_perag(
error
=
-
EEXIST
;
goto
out_unwind
;
}
pag
->
pag_agno
=
index
;
pag
->
pag_mount
=
mp
;
spin_unlock
(
&
mp
->
m_perag_lock
);
radix_tree_preload_end
();
}
/* Clear the mount flag if no inode can overflow 32 bits
* on this filesystem, or if specifically requested..
/*
* If we mount with the inode64 option, or no inode overflows
* the legacy 32-bit address space clear the inode32 option.
*/
if
((
mp
->
m_flags
&
XFS_MOUNT_SMALL_INUMS
)
&&
ino
>
max_inum
)
{
agino
=
XFS_OFFBNO_TO_AGINO
(
mp
,
sbp
->
sb_agblocks
-
1
,
0
);
ino
=
XFS_AGINO_TO_INO
(
mp
,
agcount
-
1
,
agino
);
if
((
mp
->
m_flags
&
XFS_MOUNT_SMALL_INUMS
)
&&
ino
>
XFS_MAXINUMBER_32
)
mp
->
m_flags
|=
XFS_MOUNT_32BITINODES
;
}
else
{
else
mp
->
m_flags
&=
~
XFS_MOUNT_32BITINODES
;
}
/* If we can overflow then setup the ag headers accordingly */
if
(
mp
->
m_flags
&
XFS_MOUNT_32BITINODES
)
{
/* Calculate how much should be reserved for inodes to
* meet the max inode percentage.
/*
* Calculate how much should be reserved for inodes to meet
* the max inode percentage.
*/
if
(
mp
->
m_maxicount
)
{
__uint64_t
icount
;
...
...
@@ -500,30 +492,28 @@ xfs_initialize_perag(
}
else
{
max_metadata
=
agcount
;
}
for
(
index
=
0
;
index
<
agcount
;
index
++
)
{
ino
=
XFS_AGINO_TO_INO
(
mp
,
index
,
agino
);
if
(
ino
>
max_inum
)
{
if
(
ino
>
XFS_MAXINUMBER_32
)
{
index
++
;
break
;
}
/* This ag is preferred for inodes */
pag
=
xfs_perag_get
(
mp
,
index
);
pag
->
pagi_inodeok
=
1
;
if
(
index
<
max_metadata
)
pag
->
pagf_metadata
=
1
;
xfs_initialize_perag_icache
(
pag
);
xfs_perag_put
(
pag
);
}
}
else
{
/* Setup default behavior for smaller filesystems */
for
(
index
=
0
;
index
<
agcount
;
index
++
)
{
pag
=
xfs_perag_get
(
mp
,
index
);
pag
->
pagi_inodeok
=
1
;
xfs_initialize_perag_icache
(
pag
);
xfs_perag_put
(
pag
);
}
}
if
(
maxagi
)
*
maxagi
=
index
;
return
0
;
...
...
@@ -1009,7 +999,7 @@ xfs_check_sizes(xfs_mount_t *mp)
d
=
(
xfs_daddr_t
)
XFS_FSB_TO_BB
(
mp
,
mp
->
m_sb
.
sb_dblocks
);
if
(
XFS_BB_TO_FSB
(
mp
,
d
)
!=
mp
->
m_sb
.
sb_dblocks
)
{
cmn_err
(
CE_WARN
,
"XFS: size check 1 failed"
);
return
XFS_ERROR
(
E
2
BIG
);
return
XFS_ERROR
(
E
F
BIG
);
}
error
=
xfs_read_buf
(
mp
,
mp
->
m_ddev_targp
,
d
-
XFS_FSS_TO_BB
(
mp
,
1
),
...
...
@@ -1019,7 +1009,7 @@ xfs_check_sizes(xfs_mount_t *mp)
}
else
{
cmn_err
(
CE_WARN
,
"XFS: size check 2 failed"
);
if
(
error
==
ENOSPC
)
error
=
XFS_ERROR
(
E
2
BIG
);
error
=
XFS_ERROR
(
E
F
BIG
);
return
error
;
}
...
...
@@ -1027,7 +1017,7 @@ xfs_check_sizes(xfs_mount_t *mp)
d
=
(
xfs_daddr_t
)
XFS_FSB_TO_BB
(
mp
,
mp
->
m_sb
.
sb_logblocks
);
if
(
XFS_BB_TO_FSB
(
mp
,
d
)
!=
mp
->
m_sb
.
sb_logblocks
)
{
cmn_err
(
CE_WARN
,
"XFS: size check 3 failed"
);
return
XFS_ERROR
(
E
2
BIG
);
return
XFS_ERROR
(
E
F
BIG
);
}
error
=
xfs_read_buf
(
mp
,
mp
->
m_logdev_targp
,
d
-
XFS_FSB_TO_BB
(
mp
,
1
),
...
...
@@ -1037,7 +1027,7 @@ xfs_check_sizes(xfs_mount_t *mp)
}
else
{
cmn_err
(
CE_WARN
,
"XFS: size check 3 failed"
);
if
(
error
==
ENOSPC
)
error
=
XFS_ERROR
(
E
2
BIG
);
error
=
XFS_ERROR
(
E
F
BIG
);
return
error
;
}
}
...
...
@@ -1254,7 +1244,7 @@ xfs_mountfs(
* Allocate and initialize the per-ag data.
*/
spin_lock_init
(
&
mp
->
m_perag_lock
);
INIT_RADIX_TREE
(
&
mp
->
m_perag_tree
,
GFP_
NOFS
);
INIT_RADIX_TREE
(
&
mp
->
m_perag_tree
,
GFP_
ATOMIC
);
error
=
xfs_initialize_perag
(
mp
,
sbp
->
sb_agcount
,
&
mp
->
m_maxagi
);
if
(
error
)
{
cmn_err
(
CE_WARN
,
"XFS: Failed per-ag init: %d"
,
error
);
...
...
fs/xfs/xfs_rtalloc.c
View file @
1bf7dbfd
...
...
@@ -2247,7 +2247,7 @@ xfs_rtmount_init(
cmn_err
(
CE_WARN
,
"XFS: realtime mount -- %llu != %llu"
,
(
unsigned
long
long
)
XFS_BB_TO_FSB
(
mp
,
d
),
(
unsigned
long
long
)
mp
->
m_sb
.
sb_rblocks
);
return
XFS_ERROR
(
E
2
BIG
);
return
XFS_ERROR
(
E
F
BIG
);
}
error
=
xfs_read_buf
(
mp
,
mp
->
m_rtdev_targp
,
d
-
XFS_FSB_TO_BB
(
mp
,
1
),
...
...
@@ -2256,7 +2256,7 @@ xfs_rtmount_init(
cmn_err
(
CE_WARN
,
"XFS: realtime mount -- xfs_read_buf failed, returned %d"
,
error
);
if
(
error
==
ENOSPC
)
return
XFS_ERROR
(
E
2
BIG
);
return
XFS_ERROR
(
E
F
BIG
);
return
error
;
}
xfs_buf_relse
(
bp
);
...
...
fs/xfs/xfs_rtalloc.h
View file @
1bf7dbfd
...
...
@@ -147,7 +147,16 @@ xfs_growfs_rt(
# define xfs_rtfree_extent(t,b,l) (ENOSYS)
# define xfs_rtpick_extent(m,t,l,rb) (ENOSYS)
# define xfs_growfs_rt(mp,in) (ENOSYS)
# define xfs_rtmount_init(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
static
inline
int
/* error */
xfs_rtmount_init
(
xfs_mount_t
*
mp
)
/* file system mount structure */
{
if
(
mp
->
m_sb
.
sb_rblocks
==
0
)
return
0
;
cmn_err
(
CE_WARN
,
"XFS: Not built with CONFIG_XFS_RT"
);
return
ENOSYS
;
}
# define xfs_rtmount_inodes(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
# define xfs_rtunmount_inodes(m)
#endif
/* CONFIG_XFS_RT */
...
...
fs/xfs/xfs_trans.c
View file @
1bf7dbfd
This diff is collapsed.
Click to expand it.
fs/xfs/xfs_trans.h
View file @
1bf7dbfd
This diff is collapsed.
Click to expand it.
fs/xfs/xfs_vnodeops.c
View file @
1bf7dbfd
...
...
@@ -267,7 +267,7 @@ xfs_setattr(
if
(
code
)
{
ASSERT
(
tp
==
NULL
);
lock_flags
&=
~
XFS_ILOCK_EXCL
;
ASSERT
(
lock_flags
==
XFS_IOLOCK_EXCL
);
ASSERT
(
lock_flags
==
XFS_IOLOCK_EXCL
||
!
need_iolock
);
goto
error_return
;
}
tp
=
xfs_trans_alloc
(
mp
,
XFS_TRANS_SETATTR_SIZE
);
...
...
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