Index: uspace/srv/bd/hr/hr.c
===================================================================
--- uspace/srv/bd/hr/hr.c	(revision 733564aabcdf520b4c2075050c32aba43293cbfd)
+++ uspace/srv/bd/hr/hr.c	(revision b235c674e609e25641c699d43521c045c825a247)
@@ -65,8 +65,8 @@
 
 	fibril_mutex_lock(&hr_volumes_lock);
-	list_foreach(hr_volumes, lvolumes, hr_volume_t, volume) {
-		if (volume->svc_id == svc_id) {
+	list_foreach(hr_volumes, lvolumes, hr_volume_t, vol) {
+		if (vol->svc_id == svc_id) {
 			fibril_mutex_unlock(&hr_volumes_lock);
-			return volume;
+			return vol;
 		}
 	}
@@ -81,9 +81,9 @@
 
 	fibril_mutex_lock(&hr_volumes_lock);
-	list_foreach(hr_volumes, lvolumes, hr_volume_t, volume) {
-		if (volume->svc_id == svc_id) {
-			hr_fini_devs(volume);
-			list_remove(&volume->lvolumes);
-			free(volume);
+	list_foreach(hr_volumes, lvolumes, hr_volume_t, vol) {
+		if (vol->svc_id == svc_id) {
+			hr_fini_devs(vol);
+			list_remove(&vol->lvolumes);
+			free(vol);
 			fibril_mutex_unlock(&hr_volumes_lock);
 			return EOK;
@@ -310,15 +310,15 @@
 		goto error;
 
-	list_foreach(hr_volumes, lvolumes, hr_volume_t, volume) {
-		memcpy(info.extents, volume->extents,
+	list_foreach(hr_volumes, lvolumes, hr_volume_t, vol) {
+		memcpy(info.extents, vol->extents,
 		    sizeof(hr_extent_t) * HR_MAXDEVS);
-		info.svc_id = volume->svc_id;
-		info.extent_no = volume->dev_no;
-		info.level = volume->level;
+		info.svc_id = vol->svc_id;
+		info.extent_no = vol->dev_no;
+		info.level = vol->level;
 		/* print usable number of blocks */
-		info.nblocks = volume->data_blkno;
-		info.strip_size = volume->strip_size;
-		info.bsize = volume->bsize;
-		info.status = volume->status;
+		info.nblocks = vol->data_blkno;
+		info.strip_size = vol->strip_size;
+		info.bsize = vol->bsize;
+		info.status = vol->status;
 
 		if (!async_data_read_receive(&call, &size)) {
