Index: uspace/app/bdsh/cmds/modules/cat/cat.c
===================================================================
--- uspace/app/bdsh/cmds/modules/cat/cat.c	(revision 1d6dd2a62370f8442aef510558ad86b6439e6653)
+++ uspace/app/bdsh/cmds/modules/cat/cat.c	(revision c718bdada0e16b36b6f0f68df54a3ee343f91e49)
@@ -215,5 +215,5 @@
 
 	if (tail != CAT_FULL_FILE) {
-		struct stat st;
+		vfs_stat_t st;
 
 		if (vfs_stat(fd, &st) != EOK) {
Index: uspace/app/bdsh/cmds/modules/cp/cp.c
===================================================================
--- uspace/app/bdsh/cmds/modules/cp/cp.c	(revision 1d6dd2a62370f8442aef510558ad86b6439e6653)
+++ uspace/app/bdsh/cmds/modules/cp/cp.c	(revision c718bdada0e16b36b6f0f68df54a3ee343f91e49)
@@ -80,5 +80,5 @@
 static dentry_type_t get_type(const char *path)
 {
-	struct stat s;
+	vfs_stat_t s;
 
 	errno_t r = vfs_stat_path(path, &s);
@@ -340,6 +340,6 @@
 		 */
 		while ((dp = readdir(dir))) {
-			struct stat src_s;
-			struct stat dest_s;
+			vfs_stat_t src_s;
+			vfs_stat_t dest_s;
 
 			char src_dent[PATH_MAX];
@@ -392,5 +392,5 @@
 	char *buff = NULL;
 	aoff64_t posr = 0, posw = 0;
-	struct stat st;
+	vfs_stat_t st;
 
 	if (vb)
Index: uspace/app/bdsh/cmds/modules/ls/ls.h
===================================================================
--- uspace/app/bdsh/cmds/modules/ls/ls.h	(revision 1d6dd2a62370f8442aef510558ad86b6439e6653)
+++ uspace/app/bdsh/cmds/modules/ls/ls.h	(revision c718bdada0e16b36b6f0f68df54a3ee343f91e49)
@@ -23,5 +23,5 @@
 struct dir_elem_t {
 	char *name;
-	struct stat s;
+	vfs_stat_t s;
 };
 
Index: uspace/app/bdsh/cmds/modules/touch/touch.c
===================================================================
--- uspace/app/bdsh/cmds/modules/touch/touch.c	(revision 1d6dd2a62370f8442aef510558ad86b6439e6653)
+++ uspace/app/bdsh/cmds/modules/touch/touch.c	(revision c718bdada0e16b36b6f0f68df54a3ee343f91e49)
@@ -82,5 +82,5 @@
 	int longind;
 	bool no_create = false;
-	struct stat file_stat;
+	vfs_stat_t file_stat;
 	int fd = -1;
 	char *buff = NULL;
