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
1d1c803e
Commit
1d1c803e
authored
Mar 18, 2003
by
Nathan Scott
Committed by
Stephen Lord
Mar 18, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Export end_buffer_async_write, needed for unwritten extent support in XFS.
SGI Modid: 2.5.x-xfs:slinx:141507a
parent
2e12b904
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
fs/buffer.c
fs/buffer.c
+1
-1
include/linux/buffer_head.h
include/linux/buffer_head.h
+1
-0
kernel/ksyms.c
kernel/ksyms.c
+1
-0
No files found.
fs/buffer.c
View file @
1d1c803e
...
...
@@ -532,7 +532,7 @@ static void end_buffer_async_read(struct buffer_head *bh, int uptodate)
* Completion handler for block_write_full_page() - pages which are unlocked
* during I/O, and which have PageWriteback cleared upon I/O completion.
*/
static
void
end_buffer_async_write
(
struct
buffer_head
*
bh
,
int
uptodate
)
void
end_buffer_async_write
(
struct
buffer_head
*
bh
,
int
uptodate
)
{
static
spinlock_t
page_uptodate_lock
=
SPIN_LOCK_UNLOCKED
;
unsigned
long
flags
;
...
...
include/linux/buffer_head.h
View file @
1d1c803e
...
...
@@ -137,6 +137,7 @@ int try_to_free_buffers(struct page *);
void
create_empty_buffers
(
struct
page
*
,
unsigned
long
,
unsigned
long
b_state
);
void
end_buffer_io_sync
(
struct
buffer_head
*
bh
,
int
uptodate
);
void
end_buffer_async_write
(
struct
buffer_head
*
bh
,
int
uptodate
);
/* Things to do with buffers at mapping->private_list */
void
buffer_insert_list
(
spinlock_t
*
lock
,
...
...
kernel/ksyms.c
View file @
1d1c803e
...
...
@@ -175,6 +175,7 @@ EXPORT_SYMBOL(d_lookup);
EXPORT_SYMBOL
(
d_path
);
EXPORT_SYMBOL
(
mark_buffer_dirty
);
EXPORT_SYMBOL
(
end_buffer_io_sync
);
EXPORT_SYMBOL
(
end_buffer_async_write
);
EXPORT_SYMBOL
(
__mark_inode_dirty
);
EXPORT_SYMBOL
(
get_empty_filp
);
EXPORT_SYMBOL
(
open_private_file
);
...
...
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