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
542c3118
Commit
542c3118
authored
Apr 16, 2015
by
Dave Chinner
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'xfs-dio-extend-fix' into for-next
Conflicts: fs/xfs/xfs_file.c
parents
6a63ef06
0cefb29e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
239 additions
and
82 deletions
+239
-82
fs/xfs/xfs_aops.c
fs/xfs/xfs_aops.c
+192
-78
fs/xfs/xfs_file.c
fs/xfs/xfs_file.c
+42
-4
fs/xfs/xfs_trace.h
fs/xfs/xfs_trace.h
+5
-0
No files found.
fs/xfs/xfs_aops.c
View file @
542c3118
This diff is collapsed.
Click to expand it.
fs/xfs/xfs_file.c
View file @
542c3118
...
@@ -569,20 +569,41 @@ xfs_file_aio_write_checks(
...
@@ -569,20 +569,41 @@ xfs_file_aio_write_checks(
* write. If zeroing is needed and we are currently holding the
* write. If zeroing is needed and we are currently holding the
* iolock shared, we need to update it to exclusive which implies
* iolock shared, we need to update it to exclusive which implies
* having to redo all checks before.
* having to redo all checks before.
*
* We need to serialise against EOF updates that occur in IO
* completions here. We want to make sure that nobody is changing the
* size while we do this check until we have placed an IO barrier (i.e.
* hold the XFS_IOLOCK_EXCL) that prevents new IO from being dispatched.
* The spinlock effectively forms a memory barrier once we have the
* XFS_IOLOCK_EXCL so we are guaranteed to see the latest EOF value
* and hence be able to correctly determine if we need to run zeroing.
*/
*/
spin_lock
(
&
ip
->
i_flags_lock
);
if
(
*
pos
>
i_size_read
(
inode
))
{
if
(
*
pos
>
i_size_read
(
inode
))
{
bool
zero
=
false
;
bool
zero
=
false
;
spin_unlock
(
&
ip
->
i_flags_lock
);
if
(
*
iolock
==
XFS_IOLOCK_SHARED
)
{
if
(
*
iolock
==
XFS_IOLOCK_SHARED
)
{
xfs_rw_iunlock
(
ip
,
*
iolock
);
xfs_rw_iunlock
(
ip
,
*
iolock
);
*
iolock
=
XFS_IOLOCK_EXCL
;
*
iolock
=
XFS_IOLOCK_EXCL
;
xfs_rw_ilock
(
ip
,
*
iolock
);
xfs_rw_ilock
(
ip
,
*
iolock
);
/*
* We now have an IO submission barrier in place, but
* AIO can do EOF updates during IO completion and hence
* we now need to wait for all of them to drain. Non-AIO
* DIO will have drained before we are given the
* XFS_IOLOCK_EXCL, and so for most cases this wait is a
* no-op.
*/
inode_dio_wait
(
inode
);
goto
restart
;
goto
restart
;
}
}
error
=
xfs_zero_eof
(
ip
,
*
pos
,
i_size_read
(
inode
),
&
zero
);
error
=
xfs_zero_eof
(
ip
,
*
pos
,
i_size_read
(
inode
),
&
zero
);
if
(
error
)
if
(
error
)
return
error
;
return
error
;
}
}
else
spin_unlock
(
&
ip
->
i_flags_lock
);
/*
/*
* Updating the timestamps will grab the ilock again from
* Updating the timestamps will grab the ilock again from
...
@@ -644,6 +665,8 @@ xfs_file_dio_aio_write(
...
@@ -644,6 +665,8 @@ xfs_file_dio_aio_write(
int
iolock
;
int
iolock
;
size_t
count
=
iov_iter_count
(
from
);
size_t
count
=
iov_iter_count
(
from
);
loff_t
pos
=
iocb
->
ki_pos
;
loff_t
pos
=
iocb
->
ki_pos
;
loff_t
end
;
struct
iov_iter
data
;
struct
xfs_buftarg
*
target
=
XFS_IS_REALTIME_INODE
(
ip
)
?
struct
xfs_buftarg
*
target
=
XFS_IS_REALTIME_INODE
(
ip
)
?
mp
->
m_rtdev_targp
:
mp
->
m_ddev_targp
;
mp
->
m_rtdev_targp
:
mp
->
m_ddev_targp
;
...
@@ -683,10 +706,11 @@ xfs_file_dio_aio_write(
...
@@ -683,10 +706,11 @@ xfs_file_dio_aio_write(
if
(
ret
)
if
(
ret
)
goto
out
;
goto
out
;
iov_iter_truncate
(
from
,
count
);
iov_iter_truncate
(
from
,
count
);
end
=
pos
+
count
-
1
;
if
(
mapping
->
nrpages
)
{
if
(
mapping
->
nrpages
)
{
ret
=
filemap_write_and_wait_range
(
VFS_I
(
ip
)
->
i_mapping
,
ret
=
filemap_write_and_wait_range
(
VFS_I
(
ip
)
->
i_mapping
,
pos
,
pos
+
count
-
1
);
pos
,
end
);
if
(
ret
)
if
(
ret
)
goto
out
;
goto
out
;
/*
/*
...
@@ -696,7 +720,7 @@ xfs_file_dio_aio_write(
...
@@ -696,7 +720,7 @@ xfs_file_dio_aio_write(
*/
*/
ret
=
invalidate_inode_pages2_range
(
VFS_I
(
ip
)
->
i_mapping
,
ret
=
invalidate_inode_pages2_range
(
VFS_I
(
ip
)
->
i_mapping
,
pos
>>
PAGE_CACHE_SHIFT
,
pos
>>
PAGE_CACHE_SHIFT
,
(
pos
+
count
-
1
)
>>
PAGE_CACHE_SHIFT
);
end
>>
PAGE_CACHE_SHIFT
);
WARN_ON_ONCE
(
ret
);
WARN_ON_ONCE
(
ret
);
ret
=
0
;
ret
=
0
;
}
}
...
@@ -713,8 +737,22 @@ xfs_file_dio_aio_write(
...
@@ -713,8 +737,22 @@ xfs_file_dio_aio_write(
}
}
trace_xfs_file_direct_write
(
ip
,
count
,
iocb
->
ki_pos
,
0
);
trace_xfs_file_direct_write
(
ip
,
count
,
iocb
->
ki_pos
,
0
);
ret
=
generic_file_direct_write
(
iocb
,
from
,
pos
);
data
=
*
from
;
ret
=
mapping
->
a_ops
->
direct_IO
(
WRITE
,
iocb
,
&
data
,
pos
);
/* see generic_file_direct_write() for why this is necessary */
if
(
mapping
->
nrpages
)
{
invalidate_inode_pages2_range
(
mapping
,
pos
>>
PAGE_CACHE_SHIFT
,
end
>>
PAGE_CACHE_SHIFT
);
}
if
(
ret
>
0
)
{
pos
+=
ret
;
iov_iter_advance
(
from
,
ret
);
iocb
->
ki_pos
=
pos
;
}
out:
out:
xfs_rw_iunlock
(
ip
,
iolock
);
xfs_rw_iunlock
(
ip
,
iolock
);
...
...
fs/xfs/xfs_trace.h
View file @
542c3118
...
@@ -1221,6 +1221,11 @@ DEFINE_IOMAP_EVENT(xfs_map_blocks_found);
...
@@ -1221,6 +1221,11 @@ DEFINE_IOMAP_EVENT(xfs_map_blocks_found);
DEFINE_IOMAP_EVENT
(
xfs_map_blocks_alloc
);
DEFINE_IOMAP_EVENT
(
xfs_map_blocks_alloc
);
DEFINE_IOMAP_EVENT
(
xfs_get_blocks_found
);
DEFINE_IOMAP_EVENT
(
xfs_get_blocks_found
);
DEFINE_IOMAP_EVENT
(
xfs_get_blocks_alloc
);
DEFINE_IOMAP_EVENT
(
xfs_get_blocks_alloc
);
DEFINE_IOMAP_EVENT
(
xfs_gbmap_direct
);
DEFINE_IOMAP_EVENT
(
xfs_gbmap_direct_new
);
DEFINE_IOMAP_EVENT
(
xfs_gbmap_direct_update
);
DEFINE_IOMAP_EVENT
(
xfs_gbmap_direct_none
);
DEFINE_IOMAP_EVENT
(
xfs_gbmap_direct_endio
);
DECLARE_EVENT_CLASS
(
xfs_simple_io_class
,
DECLARE_EVENT_CLASS
(
xfs_simple_io_class
,
TP_PROTO
(
struct
xfs_inode
*
ip
,
xfs_off_t
offset
,
ssize_t
count
),
TP_PROTO
(
struct
xfs_inode
*
ip
,
xfs_off_t
offset
,
ssize_t
count
),
...
...
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