From: Andrew Morton <akpm@digeo.com>
To: lkml <linux-kernel@vger.kernel.org>,
"linux-mm@kvack.org" <linux-mm@kvack.org>
Subject: 2.5.38-mm3
Date: Thu, 26 Sep 2002 00:57:59 -0700 [thread overview]
Message-ID: <3D92BE07.B6CDFE54@digeo.com> (raw)
url: http://www.zip.com.au/~akpm/linux/patches/2.5/2.5.38/2.5.38-mm3/
Includes a SARD update from Rick. The SARD disk accounting is
pretty much final now.
I moved the remaining disk accounting numbers (pgpgin, pgpgout) out of
/proc/stat and this will confuse vmstat. Again. Updated versions
are at http://surriel.com/procps, but they're not uptodate enough.
To get a current procps, grab the cygnus CVS (instructions are at
Rik's site) and then apply
http://www.zip.com.au/~akpm/linux/patches/2.5/2.5.38/2.5.38-mm3/vmstat.patch
Since 2.5.38-mm2:
-ide-block-fix-1.patch
Merged (Jens)
-ext3-htree.patch
+ext3-dxdir.patch
Switch to Ted's ext3-htree patch.
-might_sleep.patch
-unbreak-writeback-mode.patch
-queue-congestion.patch
-nonblocking-ext2-preread.patch
-nonblocking-pdflush.patch
-nonblocking-vm.patch
-set_page_dirty-locking-fix.patch
-prepare_to_wait.patch
-vm-wakeups.patch
-sync-helper.patch
-slabasap.patch
Merged
+misc.patch
A comment fix.
+topology_fixes.patch
Some topology API fixlets from Matthew
+dio-bio-add-page.patch
Convert direct-io.c to use bio_add_page(). (Badari)
It will now build BIOs as large as the device supports.
+dio-bio-fixes.patch
Some alterations to the above.
-read-latency.patch
"I have to say, that elevator thing is the ugliest code I've seen
in a long while." -- Linus
+deadline-update.patch
Latest deadline scheduler fixes from Jens.
+akpm-deadline.patch
Expose the deadline scheduler tunables into /proc/sys/vm, and set
the default fifo_batch to 16.
linus.patch
cset-1.579.3.4-to-1.605.1.31.txt.gz
ide-high-1.patch
scsi_hack.patch
Fix block-highmem for scsi
ext3-dxdir.patch
spin-lock-check.patch
spinlock/rwlock checking infrastructure
rd-cleanup.patch
Cleanup and fix the ramdisk driver (doesn't work right yet)
misc.patch
misc fixes
write-deadlock.patch
Fix the generic_file_write-from-same-mmapped-page deadlock
buddyinfo.patch
Add /proc/buddyinfo - stats on the free pages pool
free_area.patch
Remove struct free_area_struct and free_area_t, use `struct free_area'
per-node-kswapd.patch
Per-node kswapd instance
topology-api.patch
Simple topology API
topology_fixes.patch
topology-api cleanups
radix_tree_gang_lookup.patch
radix tree gang lookup
truncate_inode_pages.patch
truncate/invalidate_inode_pages rewrite
proc_vmstat.patch
Move the vm accounting out of /proc/stat
kswapd-reclaim-stats.patch
Add kswapd_steal to /proc/vmstat
iowait.patch
I/O wait statistics
sard.patch
SARD disk accounting
dio-bio-add-page.patch
Use bio_add_page() in direct-io.c
dio-bio-fixes.patch
dio-bio-add-page fixes
remove-gfp_nfs.patch
remove GFP_NFS
tcp-wakeups.patch
Use fast wakeups in TCP/IPV4
swapoff-deadlock.patch
Fix a tmpfs swapoff deadlock
dirty-and-uptodate.patch
page state cleanup
shmem_rename.patch
shmem_rename() directory link count fix
dirent-size.patch
tmpfs: show a non-zero size for directories
tmpfs-trivia.patch
tmpfs: small fixlets
per-zone-vm.patch
separate the kswapd and direct reclaim code paths
swsusp-feature.patch
add shrink_all_memory() for swsusp
adaptec-fix.patch
partial fix for aic7xxx error recovery
remove-page-virtual.patch
remove page->virtual for !WANT_PAGE_VIRTUAL
dirty-memory-clamp.patch
sterner dirty-memory clamping
mempool-wakeup-fix.patch
Fix for stuck tasks in mempool_alloc()
remove-write_mapping_buffers.patch
Remove write_mapping_buffers
buffer_boundary-scheduling.patch
IO schduling for indirect blocks
ll_rw_block-cleanup.patch
cleanup ll_rw_block()
lseek-ext2_readdir.patch
remove lock_kernel() from ext2_readdir()
discontig-no-contig_page_data.patch
undefine contif_page_data for discontigmem
per-node-zone_normal.patch
ia32 NUMA: per-node ZONE_NORMAL
alloc_pages_node-cleanup.patch
alloc_pages_node cleanup
read_barrier_depends.patch
extended barrier primitives
rcu_ltimer.patch
RCU core
dcache_rcu.patch
Use RCU for dcache
deadline-update.patch
deadline scheduler updates
akpm-deadline.patch
WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@digeo.com>
To: lkml <linux-kernel@vger.kernel.org>,
"linux-mm@kvack.org" <linux-mm@kvack.org>
Subject: 2.5.38-mm3
Date: Thu, 26 Sep 2002 00:57:59 -0700 [thread overview]
Message-ID: <3D92BE07.B6CDFE54@digeo.com> (raw)
url: http://www.zip.com.au/~akpm/linux/patches/2.5/2.5.38/2.5.38-mm3/
Includes a SARD update from Rick. The SARD disk accounting is
pretty much final now.
I moved the remaining disk accounting numbers (pgpgin, pgpgout) out of
/proc/stat and this will confuse vmstat. Again. Updated versions
are at http://surriel.com/procps, but they're not uptodate enough.
To get a current procps, grab the cygnus CVS (instructions are at
Rik's site) and then apply
http://www.zip.com.au/~akpm/linux/patches/2.5/2.5.38/2.5.38-mm3/vmstat.patch
Since 2.5.38-mm2:
-ide-block-fix-1.patch
Merged (Jens)
-ext3-htree.patch
+ext3-dxdir.patch
Switch to Ted's ext3-htree patch.
-might_sleep.patch
-unbreak-writeback-mode.patch
-queue-congestion.patch
-nonblocking-ext2-preread.patch
-nonblocking-pdflush.patch
-nonblocking-vm.patch
-set_page_dirty-locking-fix.patch
-prepare_to_wait.patch
-vm-wakeups.patch
-sync-helper.patch
-slabasap.patch
Merged
+misc.patch
A comment fix.
+topology_fixes.patch
Some topology API fixlets from Matthew
+dio-bio-add-page.patch
Convert direct-io.c to use bio_add_page(). (Badari)
It will now build BIOs as large as the device supports.
+dio-bio-fixes.patch
Some alterations to the above.
-read-latency.patch
"I have to say, that elevator thing is the ugliest code I've seen
in a long while." -- Linus
+deadline-update.patch
Latest deadline scheduler fixes from Jens.
+akpm-deadline.patch
Expose the deadline scheduler tunables into /proc/sys/vm, and set
the default fifo_batch to 16.
linus.patch
cset-1.579.3.4-to-1.605.1.31.txt.gz
ide-high-1.patch
scsi_hack.patch
Fix block-highmem for scsi
ext3-dxdir.patch
spin-lock-check.patch
spinlock/rwlock checking infrastructure
rd-cleanup.patch
Cleanup and fix the ramdisk driver (doesn't work right yet)
misc.patch
misc fixes
write-deadlock.patch
Fix the generic_file_write-from-same-mmapped-page deadlock
buddyinfo.patch
Add /proc/buddyinfo - stats on the free pages pool
free_area.patch
Remove struct free_area_struct and free_area_t, use `struct free_area'
per-node-kswapd.patch
Per-node kswapd instance
topology-api.patch
Simple topology API
topology_fixes.patch
topology-api cleanups
radix_tree_gang_lookup.patch
radix tree gang lookup
truncate_inode_pages.patch
truncate/invalidate_inode_pages rewrite
proc_vmstat.patch
Move the vm accounting out of /proc/stat
kswapd-reclaim-stats.patch
Add kswapd_steal to /proc/vmstat
iowait.patch
I/O wait statistics
sard.patch
SARD disk accounting
dio-bio-add-page.patch
Use bio_add_page() in direct-io.c
dio-bio-fixes.patch
dio-bio-add-page fixes
remove-gfp_nfs.patch
remove GFP_NFS
tcp-wakeups.patch
Use fast wakeups in TCP/IPV4
swapoff-deadlock.patch
Fix a tmpfs swapoff deadlock
dirty-and-uptodate.patch
page state cleanup
shmem_rename.patch
shmem_rename() directory link count fix
dirent-size.patch
tmpfs: show a non-zero size for directories
tmpfs-trivia.patch
tmpfs: small fixlets
per-zone-vm.patch
separate the kswapd and direct reclaim code paths
swsusp-feature.patch
add shrink_all_memory() for swsusp
adaptec-fix.patch
partial fix for aic7xxx error recovery
remove-page-virtual.patch
remove page->virtual for !WANT_PAGE_VIRTUAL
dirty-memory-clamp.patch
sterner dirty-memory clamping
mempool-wakeup-fix.patch
Fix for stuck tasks in mempool_alloc()
remove-write_mapping_buffers.patch
Remove write_mapping_buffers
buffer_boundary-scheduling.patch
IO schduling for indirect blocks
ll_rw_block-cleanup.patch
cleanup ll_rw_block()
lseek-ext2_readdir.patch
remove lock_kernel() from ext2_readdir()
discontig-no-contig_page_data.patch
undefine contif_page_data for discontigmem
per-node-zone_normal.patch
ia32 NUMA: per-node ZONE_NORMAL
alloc_pages_node-cleanup.patch
alloc_pages_node cleanup
read_barrier_depends.patch
extended barrier primitives
rcu_ltimer.patch
RCU core
dcache_rcu.patch
Use RCU for dcache
deadline-update.patch
deadline scheduler updates
akpm-deadline.patch
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/
next reply other threads:[~2002-09-26 7:52 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-09-26 7:57 Andrew Morton [this message]
2002-09-26 7:57 ` 2.5.38-mm3 Andrew Morton
2002-09-26 12:24 ` 2.5.38-mm3 Dipankar Sarma
2002-09-26 12:24 ` 2.5.38-mm3 Dipankar Sarma
2002-09-26 12:29 ` 2.5.38-mm3 William Lee Irwin III
2002-09-26 12:29 ` 2.5.38-mm3 William Lee Irwin III
2002-09-26 12:40 ` 2.5.38-mm3 Dipankar Sarma
2002-09-26 12:40 ` 2.5.38-mm3 Dipankar Sarma
2002-09-26 12:42 ` 2.5.38-mm3 William Lee Irwin III
2002-09-26 12:42 ` 2.5.38-mm3 William Lee Irwin III
2002-09-26 13:05 ` 2.5.38-mm3 Dipankar Sarma
2002-09-26 13:05 ` 2.5.38-mm3 Dipankar Sarma
2002-09-26 13:17 ` 2.5.38-mm3 William Lee Irwin III
2002-09-26 13:17 ` 2.5.38-mm3 William Lee Irwin III
2002-09-26 13:29 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-26 13:29 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-26 13:39 ` 2.5.38-mm3 William Lee Irwin III
2002-09-26 13:39 ` 2.5.38-mm3 William Lee Irwin III
2002-09-26 13:46 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-26 13:46 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-27 8:27 ` 2.5.38-mm3 Dipankar Sarma
2002-09-27 8:27 ` 2.5.38-mm3 Dipankar Sarma
2002-09-27 9:20 ` 2.5.38-mm3 William Lee Irwin III
2002-09-27 9:20 ` 2.5.38-mm3 William Lee Irwin III
2002-09-27 9:58 ` 2.5.38-mm3 Dipankar Sarma
2002-09-27 9:58 ` 2.5.38-mm3 Dipankar Sarma
2002-09-27 15:04 ` 2.5.38-mm3 Martin J. Bligh
2002-09-27 15:04 ` 2.5.38-mm3 Martin J. Bligh
2002-09-27 17:14 ` 2.5.38-mm3 Dipankar Sarma
2002-09-27 17:14 ` 2.5.38-mm3 Dipankar Sarma
2002-09-27 22:54 ` 2.5.38-mm3 William Lee Irwin III
2002-09-27 22:54 ` 2.5.38-mm3 William Lee Irwin III
2002-09-28 5:41 ` 2.5.38-mm3 Dipankar Sarma
2002-09-28 5:41 ` 2.5.38-mm3 Dipankar Sarma
2002-09-28 4:35 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-28 4:35 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-28 4:36 ` 2.5.38-mm3 William Lee Irwin III
2002-09-28 4:36 ` 2.5.38-mm3 William Lee Irwin III
2002-09-28 4:54 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-28 4:54 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-28 5:29 ` 2.5.38-mm3 Dipankar Sarma
2002-09-28 5:29 ` 2.5.38-mm3 Dipankar Sarma
2002-09-28 4:30 ` 2.5.38-mm3 Zwane Mwaikambo
2002-09-28 4:30 ` 2.5.38-mm3 Zwane Mwaikambo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3D92BE07.B6CDFE54@digeo.com \
--to=akpm@digeo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.