From 41dc1b8e0e2a63f9036844dd9027b62c5895e0df Mon Sep 17 00:00:00 2001 From: Arvydas Sidorenko Date: Fri, 13 Apr 2012 14:07:02 +0200 Subject: [PATCH] error fix: implicit declaration of function 'd_alloc_root' --- linux/filesystem.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/vmblock-only/linux/filesystem.c b/vmblock-only/linux/filesystem.c index b7c535e..105acba 100644 --- a/vmblock-only/linux/filesystem.c +++ b/vmblock-only/linux/filesystem.c @@ -525,7 +525,7 @@ FsOpReadSuper(struct super_block *sb, // OUT: Superblock object return -EINVAL; } - rootDentry = d_alloc_root(rootInode); + rootDentry = d_make_root(rootInode); if (!rootDentry) { iput(rootInode); return -ENOMEM; -- 1.7.8.5