diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-06 14:37:32 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 16:08:14 -0700 |
commit | 4e1eb88305135248ad0e927449e457df95d8d9b3 (patch) | |
tree | 5751bb25a6bec21e9863d8f554cb2ae55e99160c /fs/cachefiles/bind.c | |
parent | ef74885353e0ee4d884604148628df3369c76719 (diff) | |
download | op-kernel-dev-4e1eb88305135248ad0e927449e457df95d8d9b3.zip op-kernel-dev-4e1eb88305135248ad0e927449e457df95d8d9b3.tar.gz |
FS/CACHEFILES: convert printk to pr_foo()
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/cachefiles/bind.c')
-rw-r--r-- | fs/cachefiles/bind.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/fs/cachefiles/bind.c b/fs/cachefiles/bind.c index 5b99baf..c7f3dd2 100644 --- a/fs/cachefiles/bind.c +++ b/fs/cachefiles/bind.c @@ -228,9 +228,8 @@ static int cachefiles_daemon_add_cache(struct cachefiles_cache *cache) set_bit(CACHEFILES_READY, &cache->flags); dput(root); - printk(KERN_INFO "CacheFiles:" - " File cache on %s registered\n", - cache->cache.identifier); + pr_info("CacheFiles: File cache on %s registered\n", + cache->cache.identifier); /* check how much space the cache has */ cachefiles_has_space(cache, 0, 0); @@ -262,9 +261,8 @@ void cachefiles_daemon_unbind(struct cachefiles_cache *cache) _enter(""); if (test_bit(CACHEFILES_READY, &cache->flags)) { - printk(KERN_INFO "CacheFiles:" - " File cache on %s unregistering\n", - cache->cache.identifier); + pr_info("CacheFiles: File cache on %s unregistering\n", + cache->cache.identifier); fscache_withdraw_cache(&cache->cache); } |