From 0295d28583d398bfd505d7b2295b2d157677e75a Mon Sep 17 00:00:00 2001 From: Namjae Jeon Date: Sat, 2 Feb 2013 23:52:28 +0900 Subject: [PATCH] --- yaml --- r: 358993 b: refs/heads/master c: ec7b1f2dd180afb1ce23aa44a7451e59bf2f3eb3 h: refs/heads/master i: 358991: 42ce3b22b6774be04c44254eb64becb361d5fd47 v: v3 --- [refs] | 2 +- trunk/fs/f2fs/gc.c | 3 ++- trunk/fs/f2fs/gc.h | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index 3d1b0c268345..2d72e71fd25b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 48600e44c18e4eb0f7c02ec8633c4c56aef292f0 +refs/heads/master: ec7b1f2dd180afb1ce23aa44a7451e59bf2f3eb3 diff --git a/trunk/fs/f2fs/gc.c b/trunk/fs/f2fs/gc.c index 8d293cb685ba..b1e498503e59 100644 --- a/trunk/fs/f2fs/gc.c +++ b/trunk/fs/f2fs/gc.c @@ -90,6 +90,7 @@ static int gc_thread_func(void *data) int start_gc_thread(struct f2fs_sb_info *sbi) { struct f2fs_gc_kthread *gc_th; + dev_t dev = sbi->sb->s_bdev->bd_dev; if (!test_opt(sbi, BG_GC)) return 0; @@ -100,7 +101,7 @@ int start_gc_thread(struct f2fs_sb_info *sbi) sbi->gc_thread = gc_th; init_waitqueue_head(&sbi->gc_thread->gc_wait_queue_head); sbi->gc_thread->f2fs_gc_task = kthread_run(gc_thread_func, sbi, - GC_THREAD_NAME); + "f2fs_gc-%u:%u", MAJOR(dev), MINOR(dev)); if (IS_ERR(gc_th->f2fs_gc_task)) { kfree(gc_th); return -ENOMEM; diff --git a/trunk/fs/f2fs/gc.h b/trunk/fs/f2fs/gc.h index b026d9354ccd..3abdf83b5c16 100644 --- a/trunk/fs/f2fs/gc.h +++ b/trunk/fs/f2fs/gc.h @@ -8,7 +8,6 @@ * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ -#define GC_THREAD_NAME "f2fs_gc_task" #define GC_THREAD_MIN_WB_PAGES 1 /* * a threshold to determine * whether IO subsystem is idle