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
ad479a4b
Commit
ad479a4b
authored
Feb 19, 2003
by
Christoph Hellwig
Committed by
Christoph Hellwig
Feb 19, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] make pagebuf_delwri_queue static
SGI Modid: 2.5.x-xfs:slinx:138828a
parent
2f59a55c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
fs/xfs/pagebuf/page_buf.c
fs/xfs/pagebuf/page_buf.c
+2
-2
fs/xfs/pagebuf/page_buf.h
fs/xfs/pagebuf/page_buf.h
+0
-1
No files found.
fs/xfs/pagebuf/page_buf.c
View file @
ad479a4b
...
@@ -119,9 +119,9 @@ pb_trace_func(
...
@@ -119,9 +119,9 @@ pb_trace_func(
STATIC
kmem_cache_t
*
pagebuf_cache
;
STATIC
kmem_cache_t
*
pagebuf_cache
;
STATIC
void
pagebuf_daemon_wakeup
(
int
);
STATIC
void
pagebuf_daemon_wakeup
(
int
);
STATIC
void
pagebuf_delwri_queue
(
page_buf_t
*
,
int
);
STATIC
struct
workqueue_struct
*
pagebuf_workqueue
;
STATIC
struct
workqueue_struct
*
pagebuf_workqueue
;
/*
/*
* Pagebuf module configuration parameters, exported via
* Pagebuf module configuration parameters, exported via
* /proc/sys/vm/pagebuf
* /proc/sys/vm/pagebuf
...
@@ -1516,7 +1516,7 @@ STATIC int pbd_active = 1;
...
@@ -1516,7 +1516,7 @@ STATIC int pbd_active = 1;
STATIC
LIST_HEAD
(
pbd_delwrite_queue
);
STATIC
LIST_HEAD
(
pbd_delwrite_queue
);
STATIC
spinlock_t
pbd_delwrite_lock
=
SPIN_LOCK_UNLOCKED
;
STATIC
spinlock_t
pbd_delwrite_lock
=
SPIN_LOCK_UNLOCKED
;
void
STATIC
void
pagebuf_delwri_queue
(
pagebuf_delwri_queue
(
page_buf_t
*
pb
,
page_buf_t
*
pb
,
int
unlock
)
int
unlock
)
...
...
fs/xfs/pagebuf/page_buf.h
View file @
ad479a4b
...
@@ -350,7 +350,6 @@ extern int pagebuf_ispin( page_buf_t *); /* check if pagebuf is pinned */
...
@@ -350,7 +350,6 @@ extern int pagebuf_ispin( page_buf_t *); /* check if pagebuf is pinned */
/* Reading and writing pages */
/* Reading and writing pages */
extern
void
pagebuf_delwri_queue
(
page_buf_t
*
,
int
);
extern
void
pagebuf_delwri_dequeue
(
page_buf_t
*
);
extern
void
pagebuf_delwri_dequeue
(
page_buf_t
*
);
#define PBDF_WAIT 0x01
#define PBDF_WAIT 0x01
...
...
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