Index: uspace/srv/logger/ctl.c
===================================================================
--- uspace/srv/logger/ctl.c	(revision 4b640a292460255303dbcc9d8d17bd898ed10c45)
+++ uspace/srv/logger/ctl.c	(revision 1dec7cb8fbe86612f2e9bc471a1c3f59c9a32efb)
@@ -51,5 +51,5 @@
 	}
 
-	logger_log_t *log = find_log_by_name_and_acquire(full_name);
+	logger_log_t *log = find_log_by_name_and_lock(full_name);
 	free(full_name);
 	if (log == NULL)
@@ -58,5 +58,5 @@
 	log->logged_level = new_level;
 
-	log_release(log);
+	log_unlock(log);
 
 	return EOK;
Index: uspace/srv/logger/initlvl.c
===================================================================
--- uspace/srv/logger/initlvl.c	(revision 4b640a292460255303dbcc9d8d17bd898ed10c45)
+++ uspace/srv/logger/initlvl.c	(revision 1dec7cb8fbe86612f2e9bc471a1c3f59c9a32efb)
@@ -62,5 +62,5 @@
 		return;
 
-	logger_log_t *log = find_or_create_log_and_acquire(key, 0);
+	logger_log_t *log = find_or_create_log_and_lock(key, 0);
 	if (log == NULL)
 		return;
@@ -68,5 +68,5 @@
 	log->logged_level = level;
 
-	log_release(log);
+	log_unlock(log);
 }
 
Index: uspace/srv/logger/logger.h
===================================================================
--- uspace/srv/logger/logger.h	(revision 4b640a292460255303dbcc9d8d17bd898ed10c45)
+++ uspace/srv/logger/logger.h	(revision 1dec7cb8fbe86612f2e9bc471a1c3f59c9a32efb)
@@ -68,9 +68,9 @@
 };
 
-logger_log_t *find_log_by_name_and_acquire(const char *name);
-logger_log_t *find_or_create_log_and_acquire(const char *, sysarg_t);
-logger_log_t *find_log_by_id_and_acquire(sysarg_t);
+logger_log_t *find_log_by_name_and_lock(const char *name);
+logger_log_t *find_or_create_log_and_lock(const char *, sysarg_t);
+logger_log_t *find_log_by_id_and_lock(sysarg_t);
 bool shall_log_message(logger_log_t *, log_level_t);
-void log_release(logger_log_t *);
+void log_unlock(logger_log_t *);
 void write_to_log(logger_log_t *, log_level_t, const char *);
 
Index: uspace/srv/logger/logs.c
===================================================================
--- uspace/srv/logger/logs.c	(revision 4b640a292460255303dbcc9d8d17bd898ed10c45)
+++ uspace/srv/logger/logs.c	(revision 1dec7cb8fbe86612f2e9bc471a1c3f59c9a32efb)
@@ -115,5 +115,5 @@
 }
 
-logger_log_t *find_or_create_log_and_acquire(const char *name, sysarg_t parent_id)
+logger_log_t *find_or_create_log_and_lock(const char *name, sysarg_t parent_id)
 {
 	logger_log_t *result = NULL;
@@ -139,5 +139,5 @@
 }
 
-logger_log_t *find_log_by_name_and_acquire(const char *name)
+logger_log_t *find_log_by_name_and_lock(const char *name)
 {
 	logger_log_t *result = NULL;
@@ -157,5 +157,5 @@
 }
 
-logger_log_t *find_log_by_id_and_acquire(sysarg_t id)
+logger_log_t *find_log_by_id_and_lock(sysarg_t id)
 {
 	logger_log_t *result = NULL;
@@ -195,5 +195,5 @@
 }
 
-void log_release(logger_log_t *log)
+void log_unlock(logger_log_t *log)
 {
 	assert(fibril_mutex_is_locked(&log->guard));
Index: uspace/srv/logger/writer.c
===================================================================
--- uspace/srv/logger/writer.c	(revision 4b640a292460255303dbcc9d8d17bd898ed10c45)
+++ uspace/srv/logger/writer.c	(revision 1dec7cb8fbe86612f2e9bc471a1c3f59c9a32efb)
@@ -56,5 +56,5 @@
 		return NULL;
 
-	logger_log_t *log = find_or_create_log_and_acquire(name, parent);
+	logger_log_t *log = find_or_create_log_and_lock(name, parent);
 
 	free(name);
@@ -65,5 +65,5 @@
 static int handle_receive_message(sysarg_t log_id, sysarg_t level)
 {
-	logger_log_t *log = find_log_by_id_and_acquire(log_id);
+	logger_log_t *log = find_log_by_id_and_lock(log_id);
 	if (log == NULL)
 		return ENOENT;
@@ -87,5 +87,5 @@
 
 leave:
-	log_release(log);
+	log_unlock(log);
 	free(message);
 
@@ -114,5 +114,5 @@
 				break;
 			}
-			log_release(log);
+			log_unlock(log);
 			async_answer_1(callid, EOK, (sysarg_t) log);
 			break;
