[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20090213125357.GA7003@orion>
Date: Fri, 13 Feb 2009 15:53:57 +0300
From: Alexander Beregalov <a.beregalov@...il.com>
To: zbr@...emap.net, gregkh@...e.de, linux-next@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH next 1/2] pohmelfs: fix build breakage
drivers/staging/pohmelfs/inode.c:982: error: implicit declaration of
function 'DQUOT_TRANSFER'
Signed-off-by: Alexander Beregalov <a.beregalov@...il.com>
---
drivers/staging/pohmelfs/inode.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/pohmelfs/inode.c b/drivers/staging/pohmelfs/inode.c
index 0980c3c..908fc64 100644
--- a/drivers/staging/pohmelfs/inode.c
+++ b/drivers/staging/pohmelfs/inode.c
@@ -979,7 +979,7 @@ int pohmelfs_setattr_raw(struct inode *inode, struct iattr *attr)
if ((attr->ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
(attr->ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
- err = DQUOT_TRANSFER(inode, attr) ? -EDQUOT : 0;
+ err = vfs_dq_transfer(inode, attr) ? -EDQUOT : 0;
if (err)
goto err_out_exit;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists