diff options
Diffstat (limited to 'mm/zbud.c')
-rw-r--r-- | mm/zbud.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -466,7 +466,7 @@ void zbud_free(struct zbud_pool *pool, unsigned long handle) | |||
466 | /** | 466 | /** |
467 | * zbud_reclaim_page() - evicts allocations from a pool page and frees it | 467 | * zbud_reclaim_page() - evicts allocations from a pool page and frees it |
468 | * @pool: pool from which a page will attempt to be evicted | 468 | * @pool: pool from which a page will attempt to be evicted |
469 | * @retires: number of pages on the LRU list for which eviction will | 469 | * @retries: number of pages on the LRU list for which eviction will |
470 | * be attempted before failing | 470 | * be attempted before failing |
471 | * | 471 | * |
472 | * zbud reclaim is different from normal system reclaim in that the reclaim is | 472 | * zbud reclaim is different from normal system reclaim in that the reclaim is |
@@ -476,7 +476,7 @@ void zbud_free(struct zbud_pool *pool, unsigned long handle) | |||
476 | * the user, however. | 476 | * the user, however. |
477 | * | 477 | * |
478 | * To avoid these, this is how zbud_reclaim_page() should be called: | 478 | * To avoid these, this is how zbud_reclaim_page() should be called: |
479 | 479 | * | |
480 | * The user detects a page should be reclaimed and calls zbud_reclaim_page(). | 480 | * The user detects a page should be reclaimed and calls zbud_reclaim_page(). |
481 | * zbud_reclaim_page() will remove a zbud page from the pool LRU list and call | 481 | * zbud_reclaim_page() will remove a zbud page from the pool LRU list and call |
482 | * the user-defined eviction handler with the pool and handle as arguments. | 482 | * the user-defined eviction handler with the pool and handle as arguments. |