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
a0c33a0e
Commit
a0c33a0e
authored
May 02, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Resolve tweak overlap
parents
5d891b38
d71e8716
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
65 additions
and
59 deletions
+65
-59
fs/ext2/inode.c
fs/ext2/inode.c
+2
-0
fs/proc/proc_misc.c
fs/proc/proc_misc.c
+2
-2
include/linux/page-flags.h
include/linux/page-flags.h
+44
-41
mm/filemap.c
mm/filemap.c
+1
-1
mm/page-writeback.c
mm/page-writeback.c
+14
-13
mm/page_alloc.c
mm/page_alloc.c
+2
-2
No files found.
fs/ext2/inode.c
View file @
a0c33a0e
...
...
@@ -591,6 +591,8 @@ struct address_space_operations ext2_aops = {
commit_write:
generic_commit_write
,
bmap:
ext2_bmap
,
direct_IO:
ext2_direct_IO
,
writeback_mapping:
generic_writeback_mapping
,
vm_writeback:
generic_vm_writeback
,
};
/*
...
...
fs/proc/proc_misc.c
View file @
a0c33a0e
...
...
@@ -159,7 +159,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
"SwapTotal: %8lu kB
\n
"
"SwapFree: %8lu kB
\n
"
"Dirty: %8lu kB
\n
"
"
Locked:
%8lu kB
\n
"
,
"
Writeback:
%8lu kB
\n
"
,
K
(
i
.
totalram
),
K
(
i
.
freeram
),
K
(
i
.
sharedram
),
...
...
@@ -175,7 +175,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
K
(
i
.
totalswap
),
K
(
i
.
freeswap
),
K
(
ps
.
nr_dirty
),
K
(
ps
.
nr_
locked
)
K
(
ps
.
nr_
writeback
)
);
return
proc_calc_metrics
(
page
,
start
,
off
,
count
,
eof
,
len
);
...
...
include/linux/page-flags.h
View file @
a0c33a0e
...
...
@@ -13,7 +13,7 @@
*
* The PG_private bitflag is set if page->private contains a valid value.
*
* During disk I/O, PG_locked
_dontuse
is used. This bit is set before I/O and
* During disk I/O, PG_locked is used. This bit is set before I/O and
* reset when I/O completes. page_waitqueue(page) is a wait queue of all tasks
* waiting for the I/O on this page to complete.
*
...
...
@@ -28,7 +28,7 @@
*
* Note that the referenced bit, the page->lru list_head and the active,
* inactive_dirty and inactive_clean lists are protected by the
* pagemap_lru_lock, and *NOT* by the usual PG_locked
_dontuse
bit!
* pagemap_lru_lock, and *NOT* by the usual PG_locked bit!
*
* PG_error is set to indicate that an I/O error occurred on this page.
*
...
...
@@ -47,7 +47,7 @@
* locked- and dirty-page accounting. The top eight bits of page->flags are
* used for page->zone, so putting flag bits there doesn't work.
*/
#define PG_locked
_dontuse
0
/* Page is locked. Don't touch. */
#define PG_locked 0
/* Page is locked. Don't touch. */
#define PG_error 1
#define PG_referenced 2
#define PG_uptodate 3
...
...
@@ -71,7 +71,7 @@
*/
extern
struct
page_state
{
unsigned
long
nr_dirty
;
unsigned
long
nr_
locked
;
unsigned
long
nr_
writeback
;
unsigned
long
nr_pagecache
;
}
____cacheline_aligned_in_smp
page_states
[
NR_CPUS
];
...
...
@@ -91,37 +91,16 @@ extern void get_page_state(struct page_state *ret);
/*
* Manipulation of page state flags
*/
#define PageLocked(page) test_bit(PG_locked_dontuse, &(page)->flags)
#define SetPageLocked(page) \
do { \
if (!test_and_set_bit(PG_locked_dontuse, \
&(page)->flags)) \
inc_page_state(nr_locked); \
} while (0)
#define TestSetPageLocked(page) \
({ \
int ret; \
ret = test_and_set_bit(PG_locked_dontuse, \
&(page)->flags); \
if (!ret) \
inc_page_state(nr_locked); \
ret; \
})
#define ClearPageLocked(page) \
do { \
if (test_and_clear_bit(PG_locked_dontuse, \
&(page)->flags)) \
dec_page_state(nr_locked); \
} while (0)
#define TestClearPageLocked(page) \
({ \
int ret; \
ret = test_and_clear_bit(PG_locked_dontuse, \
&(page)->flags); \
if (ret) \
dec_page_state(nr_locked); \
ret; \
})
#define PageLocked(page) \
test_bit(PG_locked, &(page)->flags)
#define SetPageLocked(page) \
set_bit(PG_locked, &(page)->flags)
#define TestSetPageLocked(page) \
test_and_set_bit(PG_locked, &(page)->flags)
#define ClearPageLocked(page) \
clear_bit(PG_locked, &(page)->flags)
#define TestClearPageLocked(page) \
test_and_clear_bit(PG_locked, &(page)->flags)
#define PageError(page) test_bit(PG_error, &(page)->flags)
#define SetPageError(page) set_bit(PG_error, &(page)->flags)
...
...
@@ -201,12 +180,36 @@ extern void get_page_state(struct page_state *ret);
#define PagePrivate(page) test_bit(PG_private, &(page)->flags)
#define PageWriteback(page) test_bit(PG_writeback, &(page)->flags)
#define SetPageWriteback(page) set_bit(PG_writeback, &(page)->flags)
#define ClearPageWriteback(page) clear_bit(PG_writeback, &(page)->flags)
#define TestSetPageWriteback(page) \
test_and_set_bit(PG_writeback, &(page)->flags)
#define TestClearPageWriteback(page) \
test_and_clear_bit(PG_writeback, &(page)->flags)
#define SetPageWriteback(page) \
do { \
if (!test_and_set_bit(PG_writeback, \
&(page)->flags)) \
inc_page_state(nr_writeback); \
} while (0)
#define TestSetPageWriteback(page) \
({ \
int ret; \
ret = test_and_set_bit(PG_writeback, \
&(page)->flags); \
if (!ret) \
inc_page_state(nr_writeback); \
ret; \
})
#define ClearPageWriteback(page) \
do { \
if (test_and_clear_bit(PG_writeback, \
&(page)->flags)) \
dec_page_state(nr_writeback); \
} while (0)
#define TestClearPageWriteback(page) \
({ \
int ret; \
ret = test_and_clear_bit(PG_writeback, \
&(page)->flags); \
if (ret) \
dec_page_state(nr_writeback); \
ret; \
})
/*
* The PageSwapCache predicate doesn't use a PG_flag at this time,
...
...
mm/filemap.c
View file @
a0c33a0e
...
...
@@ -628,7 +628,7 @@ static void wait_on_page_bit(struct page *page, int bit_nr)
*/
void
___wait_on_page_locked
(
struct
page
*
page
)
{
wait_on_page_bit
(
page
,
PG_locked
_dontuse
);
wait_on_page_bit
(
page
,
PG_locked
);
}
EXPORT_SYMBOL
(
___wait_on_page_locked
);
...
...
mm/page-writeback.c
View file @
a0c33a0e
...
...
@@ -29,12 +29,12 @@
/*
* Start background writeback (via pdflush) at this level
*/
static
int
dirty_background_ratio
=
2
0
;
static
int
dirty_background_ratio
=
4
0
;
/*
* The generator of dirty data starts async writeback at this level
*/
static
int
dirty_async_ratio
=
6
0
;
static
int
dirty_async_ratio
=
5
0
;
/*
* The generator of dirty data performs sync writeout at this level
...
...
@@ -62,25 +62,27 @@ void balance_dirty_pages(struct address_space *mapping)
int
async_thresh
;
int
sync_thresh
;
int
wake_pdflush
=
0
;
unsigned
long
dirty_and_
locked
;
unsigned
long
dirty_and_
writeback
;
get_page_state
(
&
ps
);
dirty_and_
locked
=
ps
.
nr_dirty
+
ps
.
nr_locked
;
dirty_and_
writeback
=
ps
.
nr_dirty
+
ps
.
nr_writeback
;
background_thresh
=
(
dirty_background_ratio
*
tot
)
/
100
;
async_thresh
=
(
dirty_async_ratio
*
tot
)
/
100
;
sync_thresh
=
(
dirty_sync_ratio
*
tot
)
/
100
;
if
(
dirty_and_
locked
>
sync_thresh
)
{
int
nr_to_write
=
dirty_and_locked
-
async_thresh
;
if
(
dirty_and_
writeback
>
sync_thresh
)
{
int
nr_to_write
=
1500
;
writeback_unlocked_inodes
(
&
nr_to_write
,
WB_SYNC_LAST
,
NULL
);
get_page_state
(
&
ps
);
dirty_and_writeback
=
ps
.
nr_dirty
+
ps
.
nr_writeback
;
wake_pdflush
=
1
;
}
else
if
(
dirty_and_
locked
>
async_thresh
)
{
int
nr_to_write
=
dirty_and_locked
-
async_thresh
;
}
else
if
(
dirty_and_
writeback
>
async_thresh
)
{
int
nr_to_write
=
1500
;
writeback_unlocked_inodes
(
&
nr_to_write
,
WB_SYNC_NONE
,
NULL
);
}
else
if
(
dirty_and_
locked
>
background_thresh
)
{
}
else
if
(
dirty_and_
writeback
>
background_thresh
)
{
wake_pdflush
=
1
;
}
...
...
@@ -88,9 +90,8 @@ void balance_dirty_pages(struct address_space *mapping)
/*
* There is no flush thread against this device. Start one now.
*/
get_page_state
(
&
ps
);
if
(
ps
.
nr_dirty
>
0
)
{
pdflush_flush
(
ps
.
nr_dirty
);
if
(
dirty_and_writeback
>
async_thresh
)
{
pdflush_flush
(
dirty_and_writeback
-
async_thresh
);
yield
();
}
}
...
...
@@ -109,7 +110,7 @@ void balance_dirty_pages_ratelimited(struct address_space *mapping)
preempt_disable
();
cpu
=
smp_processor_id
();
if
(
ratelimits
[
cpu
].
count
++
>=
32
)
{
if
(
ratelimits
[
cpu
].
count
++
>=
1000
)
{
ratelimits
[
cpu
].
count
=
0
;
preempt_enable
();
balance_dirty_pages
(
mapping
);
...
...
mm/page_alloc.c
View file @
a0c33a0e
...
...
@@ -584,7 +584,7 @@ void get_page_state(struct page_state *ret)
int
pcpu
;
ret
->
nr_dirty
=
0
;
ret
->
nr_
locked
=
0
;
ret
->
nr_
writeback
=
0
;
ret
->
nr_pagecache
=
0
;
for
(
pcpu
=
0
;
pcpu
<
smp_num_cpus
;
pcpu
++
)
{
...
...
@@ -592,7 +592,7 @@ void get_page_state(struct page_state *ret)
ps
=
&
page_states
[
cpu_logical_map
(
pcpu
)];
ret
->
nr_dirty
+=
ps
->
nr_dirty
;
ret
->
nr_
locked
+=
ps
->
nr_locked
;
ret
->
nr_
writeback
+=
ps
->
nr_writeback
;
ret
->
nr_pagecache
+=
ps
->
nr_pagecache
;
}
}
...
...
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