|
@@ -29,7 +29,6 @@
|
|
|
#include <linux/slab.h>
|
|
|
#include <linux/statfs.h>
|
|
|
#include <linux/writeback.h>
|
|
|
-#include <linux/quotaops.h>
|
|
|
|
|
|
#include "netfs.h"
|
|
|
|
|
@@ -969,13 +968,6 @@ int pohmelfs_setattr_raw(struct inode *inode, struct iattr *attr)
|
|
|
goto err_out_exit;
|
|
|
}
|
|
|
|
|
|
- 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);
|
|
|
- if (err)
|
|
|
- goto err_out_exit;
|
|
|
- }
|
|
|
-
|
|
|
err = inode_setattr(inode, attr);
|
|
|
if (err) {
|
|
|
dprintk("%s: ino: %llu, failed to set the attributes.\n", __func__, POHMELFS_I(inode)->ino);
|