Remove memcache verbose print

This commit is contained in:
Bahadir Balban
2009-10-18 16:23:53 +03:00
parent a3a90530df
commit c5d2bedc7f

View File

@@ -23,7 +23,7 @@ void *mem_cache_alloc(struct mem_cache *cache)
{
int bit;
int err;
printk("%s Called\n", __FUNCTION__);
if (cache->free > 0) {
if ((err = mutex_lock(&cache->mutex)) < 0)
return PTR_ERR(err); /* Interruptible mutex */