[PATCH 05/21] omfs: drop vmtruncate

2012-12-15 Thread Marco Stornelli
Removed vmtruncate

Signed-off-by: Marco Stornelli 
Acked-by: Bob Copeland 
---
 fs/omfs/file.c |   22 +++---
 1 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 77e3cb2..e0d9b3e 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -306,6 +306,16 @@ omfs_writepages(struct address_space *mapping, struct 
writeback_control *wbc)
return mpage_writepages(mapping, wbc, omfs_get_block);
 }
 
+static void omfs_write_failed(struct address_space *mapping, loff_t to)
+{
+   struct inode *inode = mapping->host;
+
+   if (to > inode->i_size) {
+   truncate_pagecache(inode, to, inode->i_size);
+   omfs_truncate(inode);
+   }
+}
+
 static int omfs_write_begin(struct file *file, struct address_space *mapping,
loff_t pos, unsigned len, unsigned flags,
struct page **pagep, void **fsdata)
@@ -314,11 +324,8 @@ static int omfs_write_begin(struct file *file, struct 
address_space *mapping,
 
ret = block_write_begin(mapping, pos, len, flags, pagep,
omfs_get_block);
-   if (unlikely(ret)) {
-   loff_t isize = mapping->host->i_size;
-   if (pos + len > isize)
-   vmtruncate(mapping->host, isize);
-   }
+   if (unlikely(ret))
+   omfs_write_failed(mapping, pos + len);
 
return ret;
 }
@@ -350,9 +357,11 @@ static int omfs_setattr(struct dentry *dentry, struct 
iattr *attr)
 
if ((attr->ia_valid & ATTR_SIZE) &&
attr->ia_size != i_size_read(inode)) {
-   error = vmtruncate(inode, attr->ia_size);
+   error = inode_newsize_ok(inode, attr->ia_size);
if (error)
return error;
+   truncate_setsize(inode, attr->ia_size);
+   omfs_truncate(inode);
}
 
setattr_copy(inode, attr);
@@ -362,7 +371,6 @@ static int omfs_setattr(struct dentry *dentry, struct iattr 
*attr)
 
 const struct inode_operations omfs_file_inops = {
.setattr = omfs_setattr,
-   .truncate = omfs_truncate
 };
 
 const struct address_space_operations omfs_aops = {
-- 
1.7.3.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 05/21] omfs: drop vmtruncate

2012-12-15 Thread Marco Stornelli
Removed vmtruncate

Signed-off-by: Marco Stornelli marco.storne...@gmail.com
Acked-by: Bob Copeland m...@bobcopeland.com
---
 fs/omfs/file.c |   22 +++---
 1 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 77e3cb2..e0d9b3e 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -306,6 +306,16 @@ omfs_writepages(struct address_space *mapping, struct 
writeback_control *wbc)
return mpage_writepages(mapping, wbc, omfs_get_block);
 }
 
+static void omfs_write_failed(struct address_space *mapping, loff_t to)
+{
+   struct inode *inode = mapping-host;
+
+   if (to  inode-i_size) {
+   truncate_pagecache(inode, to, inode-i_size);
+   omfs_truncate(inode);
+   }
+}
+
 static int omfs_write_begin(struct file *file, struct address_space *mapping,
loff_t pos, unsigned len, unsigned flags,
struct page **pagep, void **fsdata)
@@ -314,11 +324,8 @@ static int omfs_write_begin(struct file *file, struct 
address_space *mapping,
 
ret = block_write_begin(mapping, pos, len, flags, pagep,
omfs_get_block);
-   if (unlikely(ret)) {
-   loff_t isize = mapping-host-i_size;
-   if (pos + len  isize)
-   vmtruncate(mapping-host, isize);
-   }
+   if (unlikely(ret))
+   omfs_write_failed(mapping, pos + len);
 
return ret;
 }
@@ -350,9 +357,11 @@ static int omfs_setattr(struct dentry *dentry, struct 
iattr *attr)
 
if ((attr-ia_valid  ATTR_SIZE) 
attr-ia_size != i_size_read(inode)) {
-   error = vmtruncate(inode, attr-ia_size);
+   error = inode_newsize_ok(inode, attr-ia_size);
if (error)
return error;
+   truncate_setsize(inode, attr-ia_size);
+   omfs_truncate(inode);
}
 
setattr_copy(inode, attr);
@@ -362,7 +371,6 @@ static int omfs_setattr(struct dentry *dentry, struct iattr 
*attr)
 
 const struct inode_operations omfs_file_inops = {
.setattr = omfs_setattr,
-   .truncate = omfs_truncate
 };
 
 const struct address_space_operations omfs_aops = {
-- 
1.7.3.4
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 05/21] omfs: drop vmtruncate

2012-11-07 Thread Bob Copeland
On Sat, Nov 03, 2012 at 10:24:58AM +0100, Marco Stornelli wrote:
> Removed vmtruncate
> 
> Signed-off-by: Marco Stornelli 

Thanks!

Acked-by: Bob Copeland 

> ---
>  fs/omfs/file.c |   22 +++---
>  1 files changed, 15 insertions(+), 7 deletions(-)

-- 
Bob Copeland %% www.bobcopeland.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 05/21] omfs: drop vmtruncate

2012-11-07 Thread Bob Copeland
On Sat, Nov 03, 2012 at 10:24:58AM +0100, Marco Stornelli wrote:
 Removed vmtruncate
 
 Signed-off-by: Marco Stornelli marco.storne...@gmail.com

Thanks!

Acked-by: Bob Copeland m...@bobcopeland.com

 ---
  fs/omfs/file.c |   22 +++---
  1 files changed, 15 insertions(+), 7 deletions(-)

-- 
Bob Copeland %% www.bobcopeland.com
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 05/21] omfs: drop vmtruncate

2012-11-03 Thread Marco Stornelli
Removed vmtruncate

Signed-off-by: Marco Stornelli 
---
 fs/omfs/file.c |   22 +++---
 1 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 77e3cb2..e0d9b3e 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -306,6 +306,16 @@ omfs_writepages(struct address_space *mapping, struct 
writeback_control *wbc)
return mpage_writepages(mapping, wbc, omfs_get_block);
 }
 
+static void omfs_write_failed(struct address_space *mapping, loff_t to)
+{
+   struct inode *inode = mapping->host;
+
+   if (to > inode->i_size) {
+   truncate_pagecache(inode, to, inode->i_size);
+   omfs_truncate(inode);
+   }
+}
+
 static int omfs_write_begin(struct file *file, struct address_space *mapping,
loff_t pos, unsigned len, unsigned flags,
struct page **pagep, void **fsdata)
@@ -314,11 +324,8 @@ static int omfs_write_begin(struct file *file, struct 
address_space *mapping,
 
ret = block_write_begin(mapping, pos, len, flags, pagep,
omfs_get_block);
-   if (unlikely(ret)) {
-   loff_t isize = mapping->host->i_size;
-   if (pos + len > isize)
-   vmtruncate(mapping->host, isize);
-   }
+   if (unlikely(ret))
+   omfs_write_failed(mapping, pos + len);
 
return ret;
 }
@@ -350,9 +357,11 @@ static int omfs_setattr(struct dentry *dentry, struct 
iattr *attr)
 
if ((attr->ia_valid & ATTR_SIZE) &&
attr->ia_size != i_size_read(inode)) {
-   error = vmtruncate(inode, attr->ia_size);
+   error = inode_newsize_ok(inode, attr->ia_size);
if (error)
return error;
+   truncate_setsize(inode, attr->ia_size);
+   omfs_truncate(inode);
}
 
setattr_copy(inode, attr);
@@ -362,7 +371,6 @@ static int omfs_setattr(struct dentry *dentry, struct iattr 
*attr)
 
 const struct inode_operations omfs_file_inops = {
.setattr = omfs_setattr,
-   .truncate = omfs_truncate
 };
 
 const struct address_space_operations omfs_aops = {
-- 
1.7.3.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 05/21] omfs: drop vmtruncate

2012-11-03 Thread Marco Stornelli
Removed vmtruncate

Signed-off-by: Marco Stornelli marco.storne...@gmail.com
---
 fs/omfs/file.c |   22 +++---
 1 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 77e3cb2..e0d9b3e 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -306,6 +306,16 @@ omfs_writepages(struct address_space *mapping, struct 
writeback_control *wbc)
return mpage_writepages(mapping, wbc, omfs_get_block);
 }
 
+static void omfs_write_failed(struct address_space *mapping, loff_t to)
+{
+   struct inode *inode = mapping-host;
+
+   if (to  inode-i_size) {
+   truncate_pagecache(inode, to, inode-i_size);
+   omfs_truncate(inode);
+   }
+}
+
 static int omfs_write_begin(struct file *file, struct address_space *mapping,
loff_t pos, unsigned len, unsigned flags,
struct page **pagep, void **fsdata)
@@ -314,11 +324,8 @@ static int omfs_write_begin(struct file *file, struct 
address_space *mapping,
 
ret = block_write_begin(mapping, pos, len, flags, pagep,
omfs_get_block);
-   if (unlikely(ret)) {
-   loff_t isize = mapping-host-i_size;
-   if (pos + len  isize)
-   vmtruncate(mapping-host, isize);
-   }
+   if (unlikely(ret))
+   omfs_write_failed(mapping, pos + len);
 
return ret;
 }
@@ -350,9 +357,11 @@ static int omfs_setattr(struct dentry *dentry, struct 
iattr *attr)
 
if ((attr-ia_valid  ATTR_SIZE) 
attr-ia_size != i_size_read(inode)) {
-   error = vmtruncate(inode, attr-ia_size);
+   error = inode_newsize_ok(inode, attr-ia_size);
if (error)
return error;
+   truncate_setsize(inode, attr-ia_size);
+   omfs_truncate(inode);
}
 
setattr_copy(inode, attr);
@@ -362,7 +371,6 @@ static int omfs_setattr(struct dentry *dentry, struct iattr 
*attr)
 
 const struct inode_operations omfs_file_inops = {
.setattr = omfs_setattr,
-   .truncate = omfs_truncate
 };
 
 const struct address_space_operations omfs_aops = {
-- 
1.7.3.4
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 05/21] omfs: drop vmtruncate

2012-10-20 Thread Marco Stornelli
Removed vmtruncate

Signed-off-by: Marco Stornelli 
---
 fs/omfs/file.c |   22 +++---
 1 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 77e3cb2..e0d9b3e 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -306,6 +306,16 @@ omfs_writepages(struct address_space *mapping, struct 
writeback_control *wbc)
return mpage_writepages(mapping, wbc, omfs_get_block);
 }
 
+static void omfs_write_failed(struct address_space *mapping, loff_t to)
+{
+   struct inode *inode = mapping->host;
+
+   if (to > inode->i_size) {
+   truncate_pagecache(inode, to, inode->i_size);
+   omfs_truncate(inode);
+   }
+}
+
 static int omfs_write_begin(struct file *file, struct address_space *mapping,
loff_t pos, unsigned len, unsigned flags,
struct page **pagep, void **fsdata)
@@ -314,11 +324,8 @@ static int omfs_write_begin(struct file *file, struct 
address_space *mapping,
 
ret = block_write_begin(mapping, pos, len, flags, pagep,
omfs_get_block);
-   if (unlikely(ret)) {
-   loff_t isize = mapping->host->i_size;
-   if (pos + len > isize)
-   vmtruncate(mapping->host, isize);
-   }
+   if (unlikely(ret))
+   omfs_write_failed(mapping, pos + len);
 
return ret;
 }
@@ -350,9 +357,11 @@ static int omfs_setattr(struct dentry *dentry, struct 
iattr *attr)
 
if ((attr->ia_valid & ATTR_SIZE) &&
attr->ia_size != i_size_read(inode)) {
-   error = vmtruncate(inode, attr->ia_size);
+   error = inode_newsize_ok(inode, attr->ia_size);
if (error)
return error;
+   truncate_setsize(inode, attr->ia_size);
+   omfs_truncate(inode);
}
 
setattr_copy(inode, attr);
@@ -362,7 +371,6 @@ static int omfs_setattr(struct dentry *dentry, struct iattr 
*attr)
 
 const struct inode_operations omfs_file_inops = {
.setattr = omfs_setattr,
-   .truncate = omfs_truncate
 };
 
 const struct address_space_operations omfs_aops = {
-- 
1.7.3.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 05/21] omfs: drop vmtruncate

2012-10-20 Thread Marco Stornelli
Removed vmtruncate

Signed-off-by: Marco Stornelli marco.storne...@gmail.com
---
 fs/omfs/file.c |   22 +++---
 1 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 77e3cb2..e0d9b3e 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -306,6 +306,16 @@ omfs_writepages(struct address_space *mapping, struct 
writeback_control *wbc)
return mpage_writepages(mapping, wbc, omfs_get_block);
 }
 
+static void omfs_write_failed(struct address_space *mapping, loff_t to)
+{
+   struct inode *inode = mapping-host;
+
+   if (to  inode-i_size) {
+   truncate_pagecache(inode, to, inode-i_size);
+   omfs_truncate(inode);
+   }
+}
+
 static int omfs_write_begin(struct file *file, struct address_space *mapping,
loff_t pos, unsigned len, unsigned flags,
struct page **pagep, void **fsdata)
@@ -314,11 +324,8 @@ static int omfs_write_begin(struct file *file, struct 
address_space *mapping,
 
ret = block_write_begin(mapping, pos, len, flags, pagep,
omfs_get_block);
-   if (unlikely(ret)) {
-   loff_t isize = mapping-host-i_size;
-   if (pos + len  isize)
-   vmtruncate(mapping-host, isize);
-   }
+   if (unlikely(ret))
+   omfs_write_failed(mapping, pos + len);
 
return ret;
 }
@@ -350,9 +357,11 @@ static int omfs_setattr(struct dentry *dentry, struct 
iattr *attr)
 
if ((attr-ia_valid  ATTR_SIZE) 
attr-ia_size != i_size_read(inode)) {
-   error = vmtruncate(inode, attr-ia_size);
+   error = inode_newsize_ok(inode, attr-ia_size);
if (error)
return error;
+   truncate_setsize(inode, attr-ia_size);
+   omfs_truncate(inode);
}
 
setattr_copy(inode, attr);
@@ -362,7 +371,6 @@ static int omfs_setattr(struct dentry *dentry, struct iattr 
*attr)
 
 const struct inode_operations omfs_file_inops = {
.setattr = omfs_setattr,
-   .truncate = omfs_truncate
 };
 
 const struct address_space_operations omfs_aops = {
-- 
1.7.3.4
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 05/21] omfs: drop vmtruncate

2012-08-31 Thread Marco Stornelli
Removed vmtruncate.

Signed-off-by: Marco Stornelli 
---
 fs/omfs/file.c |   12 
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 2c6d952..2139ee9 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -317,8 +317,11 @@ static int omfs_write_begin(struct file *file, struct 
address_space *mapping,
omfs_get_block);
if (unlikely(ret)) {
loff_t isize = mapping->host->i_size;
-   if (pos + len > isize)
-   vmtruncate(mapping->host, isize);
+   if ((pos + len > isize) &&
+   inode_newsize_ok(mapping->host, isize) == 0) {
+   truncate_setsize(mapping->host, isize);
+   omfs_truncate(mapping->host);
+   }
}
 
return ret;
@@ -351,9 +354,11 @@ static int omfs_setattr(struct dentry *dentry, struct 
iattr *attr)
 
if ((attr->ia_valid & ATTR_SIZE) &&
attr->ia_size != i_size_read(inode)) {
-   error = vmtruncate(inode, attr->ia_size);
+   error = inode_newsize_ok(inode, attr->ia_size);
if (error)
return error;
+   truncate_setsize(inode, attr->ia_size);
+   omfs_truncate(inode);
}
 
setattr_copy(inode, attr);
@@ -363,7 +368,6 @@ static int omfs_setattr(struct dentry *dentry, struct iattr 
*attr)
 
 const struct inode_operations omfs_file_inops = {
.setattr = omfs_setattr,
-   .truncate = omfs_truncate
 };
 
 const struct address_space_operations omfs_aops = {
-- 
1.7.3.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 05/21] omfs: drop vmtruncate

2012-08-31 Thread Marco Stornelli
Removed vmtruncate.

Signed-off-by: Marco Stornelli marco.storne...@gmail.com
---
 fs/omfs/file.c |   12 
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 2c6d952..2139ee9 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -317,8 +317,11 @@ static int omfs_write_begin(struct file *file, struct 
address_space *mapping,
omfs_get_block);
if (unlikely(ret)) {
loff_t isize = mapping-host-i_size;
-   if (pos + len  isize)
-   vmtruncate(mapping-host, isize);
+   if ((pos + len  isize) 
+   inode_newsize_ok(mapping-host, isize) == 0) {
+   truncate_setsize(mapping-host, isize);
+   omfs_truncate(mapping-host);
+   }
}
 
return ret;
@@ -351,9 +354,11 @@ static int omfs_setattr(struct dentry *dentry, struct 
iattr *attr)
 
if ((attr-ia_valid  ATTR_SIZE) 
attr-ia_size != i_size_read(inode)) {
-   error = vmtruncate(inode, attr-ia_size);
+   error = inode_newsize_ok(inode, attr-ia_size);
if (error)
return error;
+   truncate_setsize(inode, attr-ia_size);
+   omfs_truncate(inode);
}
 
setattr_copy(inode, attr);
@@ -363,7 +368,6 @@ static int omfs_setattr(struct dentry *dentry, struct iattr 
*attr)
 
 const struct inode_operations omfs_file_inops = {
.setattr = omfs_setattr,
-   .truncate = omfs_truncate
 };
 
 const struct address_space_operations omfs_aops = {
-- 
1.7.3.4
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/