aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/cgroups
Commit message (Expand)AuthorAge
* cgroup: add clone_children control fileDaniel Lezcano2010-10-27
* Merge branch 'for-2.6.37/core' of git://git.kernel.dk/linux-2.6-blockLinus Torvalds2010-10-22
|\
| * blkio: Documentation UpdateVivek Goyal2010-09-16
* | cfq-iosched: Documentation help for new tunablesVivek Goyal2010-08-23
|/
* Documentation: update broken web addresses.Justin P. Mattock2010-08-04
* memcg: update documentationKAMEZAWA Hiroyuki2010-05-27
* memcg: move charge of file pagesDaisuke Nishimura2010-05-27
* memcg: oom kill disable and oom statusKAMEZAWA Hiroyuki2010-05-27
* memcg: oom notifierKAMEZAWA Hiroyuki2010-05-27
* Documentation/cgroups/cgroups.txt: fix reference to "numtasks"Trevor Woerner2010-05-27
* Merge branch 'master' into for-2.6.35Jens Axboe2010-05-21
|\
| * Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Linus Torvalds2010-05-20
| |\
| | * Documentation/: it's -> its where appropriateFrancis Galiegue2010-04-22
| | * cpuset: Fix documentation punctuationGreg Thelen2010-03-25
| | * memcg: fix typo in memcg documentationGreg Thelen2010-03-19
| | * Fix typos in commentsThomas Weber2010-03-16
* | | Merge branch 'master' into for-2.6.35Jens Axboe2010-04-29
|\| |
| * | cgroups: fix procs documentationKAMEZAWA Hiroyuki2010-04-24
* | | blk-cgroup: config options re-arrangementVivek Goyal2010-04-26
* | | io-controller: Document for blkio.weight_deviceGui Jianfeng2010-04-13
* | | blkio: Add more debug-only per-cgroup statsDivyesh Shah2010-04-09
* | | blkio: Add io_queued and avg_queue_size statsDivyesh Shah2010-04-09
* | | blkio: Add io_merged statDivyesh Shah2010-04-09
* | | blkio: Changes to IO controller additional stats patchesDivyesh Shah2010-04-09
|/ /
* / memcg: fix typo in memcg documentationGreg Thelen2010-03-24
|/
* Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik...Linus Torvalds2010-03-12
|\
| * doc: cpuset: Update the cpuset flag fileGeunSik Lim2010-02-24
* | memcg: fix typos in memcg_test.txtKirill A. Shutemov2010-03-12
* | memcg: update memcg_test.txt to describe memory thresholdsKirill A. Shutemov2010-03-12
* | cgroups: add simple listener of cgroup events to documentationKirill A. Shutemov2010-03-12
* | memcg: handle panic_on_oom=always caseKAMEZAWA Hiroyuki2010-03-12
* | memcg: update memcg_test.txtDaisuke Nishimura2010-03-12
* | memcg: implement memory thresholdsKirill A. Shutemov2010-03-12
* | cgroup: implement eventfd-based generic API for notificationsKirill A. Shutemov2010-03-12
* | memcg: move charges of anonymous swapDaisuke Nishimura2010-03-12
* | memcg: add interface to move charge at task migrationDaisuke Nishimura2010-03-12
* | cgroups: fix CONTENTS in cgroups documentationKirill A. Shutemov2010-03-12
* | cgroups: subsystem module unloadingBen Blum2010-03-12
* | cgroups: subsystem module loading interfaceBen Blum2010-03-12
* | cgroup: introduce cancel_attach()Daisuke Nishimura2010-03-12
|/
* blkio: DocumentationVivek Goyal2009-12-03
* cgroups: update documentation of cgroups tasks and procs filesPaul Menage2009-10-08
* memory controller: soft limit documentationBalbir Singh2009-09-24
* memcg: remove the overhead associated with the root cgroupBalbir Singh2009-09-24
* cgroups: let ss->can_attach and ss->attach do whole threadgroups at a timeBen Blum2009-09-24
* cgroups: support named cgroups hierarchiesPaul Menage2009-09-24
* cpusets: document adding/removing cpus to cpuset elaboratelyNikanth Karthikesan2009-06-30
* memcg: add interface to reset limitsDaisuke Nishimura2009-06-18
* memcg: fix behavior under memory.limit equals to memsw.limitKAMEZAWA Hiroyuki2009-06-18
* memcg: fix documentationBharata B Rao2009-04-13
a id='n140' href='#n140'>140 141 142 143 144
145
146
147
148
149




















                                                                               
                                                               































                                                                                
                        
                                   














                                                                             




                                 
                                                                        









                                                                    



                                                                            




















                                                                    

                                                              







                                          
                                













                                                       

                                                                




                                  
                               



                              
/*
 *  linux/mm/page_io.c
 *
 *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
 *
 *  Swap reorganised 29.12.95, 
 *  Asynchronous swapping added 30.12.95. Stephen Tweedie
 *  Removed race in async swapping. 14.4.1996. Bruno Haible
 *  Add swap of shared pages through the page cache. 20.2.1998. Stephen Tweedie
 *  Always use brw_page, life becomes simpler. 12 May 1998 Eric Biederman
 */

#include <linux/mm.h>
#include <linux/kernel_stat.h>
#include <linux/pagemap.h>
#include <linux/swap.h>
#include <linux/bio.h>
#include <linux/swapops.h>
#include <linux/writeback.h>
#include <asm/pgtable.h>

static struct bio *get_swap_bio(gfp_t gfp_flags, pgoff_t index,
				struct page *page, bio_end_io_t end_io)
{
	struct bio *bio;

	bio = bio_alloc(gfp_flags, 1);
	if (bio) {
		struct swap_info_struct *sis;
		swp_entry_t entry = { .val = index, };

		sis = get_swap_info_struct(swp_type(entry));
		bio->bi_sector = map_swap_page(sis, swp_offset(entry)) *
					(PAGE_SIZE >> 9);
		bio->bi_bdev = sis->bdev;
		bio->bi_io_vec[0].bv_page = page;
		bio->bi_io_vec[0].bv_len = PAGE_SIZE;
		bio->bi_io_vec[0].bv_offset = 0;
		bio->bi_vcnt = 1;
		bio->bi_idx = 0;
		bio->bi_size = PAGE_SIZE;
		bio->bi_end_io = end_io;
	}
	return bio;
}

static int end_swap_bio_write(struct bio *bio, unsigned int bytes_done, int err)
{
	const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
	struct page *page = bio->bi_io_vec[0].bv_page;

	if (bio->bi_size)
		return 1;

	if (!uptodate) {
		SetPageError(page);
		/*
		 * We failed to write the page out to swap-space.
		 * Re-dirty the page in order to avoid it being reclaimed.
		 * Also print a dire warning that things will go BAD (tm)
		 * very quickly.
		 *
		 * Also clear PG_reclaim to avoid rotate_reclaimable_page()
		 */
		set_page_dirty(page);
		printk(KERN_ALERT "Write-error on swap-device (%u:%u:%Lu)\n",
				imajor(bio->bi_bdev->bd_inode),
				iminor(bio->bi_bdev->bd_inode),
				(unsigned long long)bio->bi_sector);
		ClearPageReclaim(page);
	}
	end_page_writeback(page);
	bio_put(bio);
	return 0;
}

int end_swap_bio_read(struct bio *bio, unsigned int bytes_done, int err)
{
	const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
	struct page *page = bio->bi_io_vec[0].bv_page;

	if (bio->bi_size)
		return 1;

	if (!uptodate) {
		SetPageError(page);
		ClearPageUptodate(page);
		printk(KERN_ALERT "Read-error on swap-device (%u:%u:%Lu)\n",
				imajor(bio->bi_bdev->bd_inode),
				iminor(bio->bi_bdev->bd_inode),
				(unsigned long long)bio->bi_sector);
	} else {
		SetPageUptodate(page);
	}
	unlock_page(page);
	bio_put(bio);
	return 0;
}

/*
 * We may have stale swap cache pages in memory: notice
 * them here and get rid of the unnecessary final write.
 */
int swap_writepage(struct page *page, struct writeback_control *wbc)
{
	struct bio *bio;
	int ret = 0, rw = WRITE;

	if (remove_exclusive_swap_page(page)) {
		unlock_page(page);
		goto out;
	}
	bio = get_swap_bio(GFP_NOIO, page_private(page), page,
				end_swap_bio_write);
	if (bio == NULL) {
		set_page_dirty(page);
		unlock_page(page);
		ret = -ENOMEM;
		goto out;
	}
	if (wbc->sync_mode == WB_SYNC_ALL)
		rw |= (1 << BIO_RW_SYNC);
	count_vm_event(PSWPOUT);
	set_page_writeback(page);
	unlock_page(page);
	submit_bio(rw, bio);
out:
	return ret;
}

int swap_readpage(struct file *file, struct page *page)
{
	struct bio *bio;
	int ret = 0;

	BUG_ON(!PageLocked(page));
	ClearPageUptodate(page);
	bio = get_swap_bio(GFP_KERNEL, page_private(page), page,
				end_swap_bio_read);
	if (bio == NULL) {
		unlock_page(page);
		ret = -ENOMEM;
		goto out;
	}
	count_vm_event(PSWPIN);
	submit_bio(READ, bio);
out:
	return ret;
}