All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
@ 2014-10-01 19:15 Anna Schumaker
       [not found] ` <1412190907-30307-1-git-send-email-Anna.Schumaker-ZwjVKphTwtPQT0dZR+AlfA@public.gmane.org>
  2014-10-01 21:04 ` Christoph Hellwig
  0 siblings, 2 replies; 10+ messages in thread
From: Anna Schumaker @ 2014-10-01 19:15 UTC (permalink / raw)
  To: viro; +Cc: linux-fsdevel, linux-nfs, hch, bfields, Trond.Myklebust

From: Anna Schumaker <Anna.Schumaker@netapp.com>

This function needs to be exported so it can be used by the NFSD module
when responding to the new ALLOCATE and DEALLOCATE operations in NFS
v4.2.  Christoph Hellwig suggested renaming the function to stay
consistent with how other vfs functions are named.

Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
---
 drivers/staging/android/ashmem.c | 2 +-
 fs/ioctl.c                       | 2 +-
 fs/open.c                        | 5 +++--
 include/linux/fs.h               | 2 +-
 mm/madvise.c                     | 2 +-
 5 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/android/ashmem.c b/drivers/staging/android/ashmem.c
index 713a972..9c799987 100644
--- a/drivers/staging/android/ashmem.c
+++ b/drivers/staging/android/ashmem.c
@@ -446,7 +446,7 @@ ashmem_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
 		loff_t start = range->pgstart * PAGE_SIZE;
 		loff_t end = (range->pgend + 1) * PAGE_SIZE;
 
-		do_fallocate(range->asma->file,
+		vfs_fallocate(range->asma->file,
 				FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
 				start, end - start);
 		range->purged = ASHMEM_WAS_PURGED;
diff --git a/fs/ioctl.c b/fs/ioctl.c
index 8ac3fad..0bd61421 100644
--- a/fs/ioctl.c
+++ b/fs/ioctl.c
@@ -443,7 +443,7 @@ int ioctl_preallocate(struct file *filp, void __user *argp)
 		return -EINVAL;
 	}
 
-	return do_fallocate(filp, FALLOC_FL_KEEP_SIZE, sr.l_start, sr.l_len);
+	return vfs_fallocate(filp, FALLOC_FL_KEEP_SIZE, sr.l_start, sr.l_len);
 }
 
 static int file_ioctl(struct file *filp, unsigned int cmd,
diff --git a/fs/open.c b/fs/open.c
index d6fd3ac..c94449b 100644
--- a/fs/open.c
+++ b/fs/open.c
@@ -222,7 +222,7 @@ SYSCALL_DEFINE2(ftruncate64, unsigned int, fd, loff_t, length)
 #endif /* BITS_PER_LONG == 32 */
 
 
-int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
+int vfs_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
 {
 	struct inode *inode = file_inode(file);
 	long ret;
@@ -298,6 +298,7 @@ int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
 	sb_end_write(inode->i_sb);
 	return ret;
 }
+EXPORT_SYMBOL_GPL(vfs_fallocate);
 
 SYSCALL_DEFINE4(fallocate, int, fd, int, mode, loff_t, offset, loff_t, len)
 {
@@ -305,7 +306,7 @@ SYSCALL_DEFINE4(fallocate, int, fd, int, mode, loff_t, offset, loff_t, len)
 	int error = -EBADF;
 
 	if (f.file) {
-		error = do_fallocate(f.file, mode, offset, len);
+		error = vfs_fallocate(f.file, mode, offset, len);
 		fdput(f);
 	}
 	return error;
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 9418772..476f555 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2049,7 +2049,7 @@ struct filename {
 extern long vfs_truncate(struct path *, loff_t);
 extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs,
 		       struct file *filp);
-extern int do_fallocate(struct file *file, int mode, loff_t offset,
+extern int vfs_fallocate(struct file *file, int mode, loff_t offset,
 			loff_t len);
 extern long do_sys_open(int dfd, const char __user *filename, int flags,
 			umode_t mode);
diff --git a/mm/madvise.c b/mm/madvise.c
index 0938b30..a271adc 100644
--- a/mm/madvise.c
+++ b/mm/madvise.c
@@ -326,7 +326,7 @@ static long madvise_remove(struct vm_area_struct *vma,
 	 */
 	get_file(f);
 	up_read(&current->mm->mmap_sem);
-	error = do_fallocate(f,
+	error = vfs_fallocate(f,
 				FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
 				offset, end - start);
 	fput(f);
-- 
2.1.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
  2014-10-01 19:15 [PATCH] VFS: Rename do_fallocate() to vfs_fallocate() Anna Schumaker
@ 2014-10-01 19:27     ` J. Bruce Fields
  2014-10-01 21:04 ` Christoph Hellwig
  1 sibling, 0 replies; 10+ messages in thread
From: J. Bruce Fields @ 2014-10-01 19:27 UTC (permalink / raw)
  To: Anna Schumaker
  Cc: viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA,
	linux-nfs-u79uwXL29TY76Z2rM5mHXA, hch-jcswGhMUV9g,
	Trond.Myklebust-7I+n7zu2hftEKMMhf/gKZA

On Wed, Oct 01, 2014 at 03:15:07PM -0400, Anna Schumaker wrote:
> From: Anna Schumaker <Anna.Schumaker-HgOvQuBEEgTQT0dZR+AlfA@public.gmane.org>
> 
> This function needs to be exported so it can be used by the NFSD module
> when responding to the new ALLOCATE and DEALLOCATE operations in NFS
> v4.2.  Christoph Hellwig suggested renaming the function to stay
> consistent with how other vfs functions are named.

ALLOCATE/DEALLOCATE have already gotten some review and look close to
done, so will probably be in 3.19, and having this in now would simplify
merging--ACK.

--b.

> 
> Signed-off-by: Anna Schumaker <Anna.Schumaker-ZwjVKphTwtPQT0dZR+AlfA@public.gmane.org>
> ---
>  drivers/staging/android/ashmem.c | 2 +-
>  fs/ioctl.c                       | 2 +-
>  fs/open.c                        | 5 +++--
>  include/linux/fs.h               | 2 +-
>  mm/madvise.c                     | 2 +-
>  5 files changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/staging/android/ashmem.c b/drivers/staging/android/ashmem.c
> index 713a972..9c799987 100644
> --- a/drivers/staging/android/ashmem.c
> +++ b/drivers/staging/android/ashmem.c
> @@ -446,7 +446,7 @@ ashmem_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
>  		loff_t start = range->pgstart * PAGE_SIZE;
>  		loff_t end = (range->pgend + 1) * PAGE_SIZE;
>  
> -		do_fallocate(range->asma->file,
> +		vfs_fallocate(range->asma->file,
>  				FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
>  				start, end - start);
>  		range->purged = ASHMEM_WAS_PURGED;
> diff --git a/fs/ioctl.c b/fs/ioctl.c
> index 8ac3fad..0bd61421 100644
> --- a/fs/ioctl.c
> +++ b/fs/ioctl.c
> @@ -443,7 +443,7 @@ int ioctl_preallocate(struct file *filp, void __user *argp)
>  		return -EINVAL;
>  	}
>  
> -	return do_fallocate(filp, FALLOC_FL_KEEP_SIZE, sr.l_start, sr.l_len);
> +	return vfs_fallocate(filp, FALLOC_FL_KEEP_SIZE, sr.l_start, sr.l_len);
>  }
>  
>  static int file_ioctl(struct file *filp, unsigned int cmd,
> diff --git a/fs/open.c b/fs/open.c
> index d6fd3ac..c94449b 100644
> --- a/fs/open.c
> +++ b/fs/open.c
> @@ -222,7 +222,7 @@ SYSCALL_DEFINE2(ftruncate64, unsigned int, fd, loff_t, length)
>  #endif /* BITS_PER_LONG == 32 */
>  
>  
> -int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
> +int vfs_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
>  {
>  	struct inode *inode = file_inode(file);
>  	long ret;
> @@ -298,6 +298,7 @@ int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
>  	sb_end_write(inode->i_sb);
>  	return ret;
>  }
> +EXPORT_SYMBOL_GPL(vfs_fallocate);
>  
>  SYSCALL_DEFINE4(fallocate, int, fd, int, mode, loff_t, offset, loff_t, len)
>  {
> @@ -305,7 +306,7 @@ SYSCALL_DEFINE4(fallocate, int, fd, int, mode, loff_t, offset, loff_t, len)
>  	int error = -EBADF;
>  
>  	if (f.file) {
> -		error = do_fallocate(f.file, mode, offset, len);
> +		error = vfs_fallocate(f.file, mode, offset, len);
>  		fdput(f);
>  	}
>  	return error;
> diff --git a/include/linux/fs.h b/include/linux/fs.h
> index 9418772..476f555 100644
> --- a/include/linux/fs.h
> +++ b/include/linux/fs.h
> @@ -2049,7 +2049,7 @@ struct filename {
>  extern long vfs_truncate(struct path *, loff_t);
>  extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs,
>  		       struct file *filp);
> -extern int do_fallocate(struct file *file, int mode, loff_t offset,
> +extern int vfs_fallocate(struct file *file, int mode, loff_t offset,
>  			loff_t len);
>  extern long do_sys_open(int dfd, const char __user *filename, int flags,
>  			umode_t mode);
> diff --git a/mm/madvise.c b/mm/madvise.c
> index 0938b30..a271adc 100644
> --- a/mm/madvise.c
> +++ b/mm/madvise.c
> @@ -326,7 +326,7 @@ static long madvise_remove(struct vm_area_struct *vma,
>  	 */
>  	get_file(f);
>  	up_read(&current->mm->mmap_sem);
> -	error = do_fallocate(f,
> +	error = vfs_fallocate(f,
>  				FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
>  				offset, end - start);
>  	fput(f);
> -- 
> 2.1.1
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
@ 2014-10-01 19:27     ` J. Bruce Fields
  0 siblings, 0 replies; 10+ messages in thread
From: J. Bruce Fields @ 2014-10-01 19:27 UTC (permalink / raw)
  To: Anna Schumaker; +Cc: viro, linux-fsdevel, linux-nfs, hch, Trond.Myklebust

On Wed, Oct 01, 2014 at 03:15:07PM -0400, Anna Schumaker wrote:
> From: Anna Schumaker <Anna.Schumaker@netapp.com>
> 
> This function needs to be exported so it can be used by the NFSD module
> when responding to the new ALLOCATE and DEALLOCATE operations in NFS
> v4.2.  Christoph Hellwig suggested renaming the function to stay
> consistent with how other vfs functions are named.

ALLOCATE/DEALLOCATE have already gotten some review and look close to
done, so will probably be in 3.19, and having this in now would simplify
merging--ACK.

--b.

> 
> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
> ---
>  drivers/staging/android/ashmem.c | 2 +-
>  fs/ioctl.c                       | 2 +-
>  fs/open.c                        | 5 +++--
>  include/linux/fs.h               | 2 +-
>  mm/madvise.c                     | 2 +-
>  5 files changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/staging/android/ashmem.c b/drivers/staging/android/ashmem.c
> index 713a972..9c799987 100644
> --- a/drivers/staging/android/ashmem.c
> +++ b/drivers/staging/android/ashmem.c
> @@ -446,7 +446,7 @@ ashmem_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
>  		loff_t start = range->pgstart * PAGE_SIZE;
>  		loff_t end = (range->pgend + 1) * PAGE_SIZE;
>  
> -		do_fallocate(range->asma->file,
> +		vfs_fallocate(range->asma->file,
>  				FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
>  				start, end - start);
>  		range->purged = ASHMEM_WAS_PURGED;
> diff --git a/fs/ioctl.c b/fs/ioctl.c
> index 8ac3fad..0bd61421 100644
> --- a/fs/ioctl.c
> +++ b/fs/ioctl.c
> @@ -443,7 +443,7 @@ int ioctl_preallocate(struct file *filp, void __user *argp)
>  		return -EINVAL;
>  	}
>  
> -	return do_fallocate(filp, FALLOC_FL_KEEP_SIZE, sr.l_start, sr.l_len);
> +	return vfs_fallocate(filp, FALLOC_FL_KEEP_SIZE, sr.l_start, sr.l_len);
>  }
>  
>  static int file_ioctl(struct file *filp, unsigned int cmd,
> diff --git a/fs/open.c b/fs/open.c
> index d6fd3ac..c94449b 100644
> --- a/fs/open.c
> +++ b/fs/open.c
> @@ -222,7 +222,7 @@ SYSCALL_DEFINE2(ftruncate64, unsigned int, fd, loff_t, length)
>  #endif /* BITS_PER_LONG == 32 */
>  
>  
> -int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
> +int vfs_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
>  {
>  	struct inode *inode = file_inode(file);
>  	long ret;
> @@ -298,6 +298,7 @@ int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
>  	sb_end_write(inode->i_sb);
>  	return ret;
>  }
> +EXPORT_SYMBOL_GPL(vfs_fallocate);
>  
>  SYSCALL_DEFINE4(fallocate, int, fd, int, mode, loff_t, offset, loff_t, len)
>  {
> @@ -305,7 +306,7 @@ SYSCALL_DEFINE4(fallocate, int, fd, int, mode, loff_t, offset, loff_t, len)
>  	int error = -EBADF;
>  
>  	if (f.file) {
> -		error = do_fallocate(f.file, mode, offset, len);
> +		error = vfs_fallocate(f.file, mode, offset, len);
>  		fdput(f);
>  	}
>  	return error;
> diff --git a/include/linux/fs.h b/include/linux/fs.h
> index 9418772..476f555 100644
> --- a/include/linux/fs.h
> +++ b/include/linux/fs.h
> @@ -2049,7 +2049,7 @@ struct filename {
>  extern long vfs_truncate(struct path *, loff_t);
>  extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs,
>  		       struct file *filp);
> -extern int do_fallocate(struct file *file, int mode, loff_t offset,
> +extern int vfs_fallocate(struct file *file, int mode, loff_t offset,
>  			loff_t len);
>  extern long do_sys_open(int dfd, const char __user *filename, int flags,
>  			umode_t mode);
> diff --git a/mm/madvise.c b/mm/madvise.c
> index 0938b30..a271adc 100644
> --- a/mm/madvise.c
> +++ b/mm/madvise.c
> @@ -326,7 +326,7 @@ static long madvise_remove(struct vm_area_struct *vma,
>  	 */
>  	get_file(f);
>  	up_read(&current->mm->mmap_sem);
> -	error = do_fallocate(f,
> +	error = vfs_fallocate(f,
>  				FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
>  				offset, end - start);
>  	fput(f);
> -- 
> 2.1.1
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
  2014-10-01 19:15 [PATCH] VFS: Rename do_fallocate() to vfs_fallocate() Anna Schumaker
       [not found] ` <1412190907-30307-1-git-send-email-Anna.Schumaker-ZwjVKphTwtPQT0dZR+AlfA@public.gmane.org>
@ 2014-10-01 21:04 ` Christoph Hellwig
       [not found]   ` <20141001210451.GB6680-jcswGhMUV9g@public.gmane.org>
  1 sibling, 1 reply; 10+ messages in thread
From: Christoph Hellwig @ 2014-10-01 21:04 UTC (permalink / raw)
  To: Anna Schumaker
  Cc: viro, linux-fsdevel, linux-nfs, hch, bfields, Trond.Myklebust

On Wed, Oct 01, 2014 at 03:15:07PM -0400, Anna Schumaker wrote:
> From: Anna Schumaker <Anna.Schumaker@netapp.com>
> 
> This function needs to be exported so it can be used by the NFSD module
> when responding to the new ALLOCATE and DEALLOCATE operations in NFS
> v4.2.  Christoph Hellwig suggested renaming the function to stay
> consistent with how other vfs functions are named.
> 
> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>

Acked-by: Christoph Hellwig <hch@lst.de>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
  2014-10-01 21:04 ` Christoph Hellwig
@ 2014-10-23 21:23       ` Anna Schumaker
  0 siblings, 0 replies; 10+ messages in thread
From: Anna Schumaker @ 2014-10-23 21:23 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA,
	linux-nfs-u79uwXL29TY76Z2rM5mHXA, bfields-uC3wQj2KruNg9hUCZPvPmw,
	Trond.Myklebust-7I+n7zu2hftEKMMhf/gKZA

I'm curious what the status of this patch is?

Thanks,
Anna

On 10/01/2014 05:04 PM, Christoph Hellwig wrote:
> On Wed, Oct 01, 2014 at 03:15:07PM -0400, Anna Schumaker wrote:
>> From: Anna Schumaker <Anna.Schumaker-HgOvQuBEEgTQT0dZR+AlfA@public.gmane.org>
>>
>> This function needs to be exported so it can be used by the NFSD module
>> when responding to the new ALLOCATE and DEALLOCATE operations in NFS
>> v4.2.  Christoph Hellwig suggested renaming the function to stay
>> consistent with how other vfs functions are named.
>>
>> Signed-off-by: Anna Schumaker <Anna.Schumaker-ZwjVKphTwtPQT0dZR+AlfA@public.gmane.org>
> 
> Acked-by: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
@ 2014-10-23 21:23       ` Anna Schumaker
  0 siblings, 0 replies; 10+ messages in thread
From: Anna Schumaker @ 2014-10-23 21:23 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: viro, linux-fsdevel, linux-nfs, bfields, Trond.Myklebust

I'm curious what the status of this patch is?

Thanks,
Anna

On 10/01/2014 05:04 PM, Christoph Hellwig wrote:
> On Wed, Oct 01, 2014 at 03:15:07PM -0400, Anna Schumaker wrote:
>> From: Anna Schumaker <Anna.Schumaker@netapp.com>
>>
>> This function needs to be exported so it can be used by the NFSD module
>> when responding to the new ALLOCATE and DEALLOCATE operations in NFS
>> v4.2.  Christoph Hellwig suggested renaming the function to stay
>> consistent with how other vfs functions are named.
>>
>> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
> 
> Acked-by: Christoph Hellwig <hch@lst.de>
> 


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
  2014-10-23 21:23       ` Anna Schumaker
@ 2014-10-24  6:48           ` Christoph Hellwig
  -1 siblings, 0 replies; 10+ messages in thread
From: Christoph Hellwig @ 2014-10-24  6:48 UTC (permalink / raw)
  To: Anna Schumaker
  Cc: Christoph Hellwig, viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA,
	linux-nfs-u79uwXL29TY76Z2rM5mHXA, bfields-uC3wQj2KruNg9hUCZPvPmw,
	Trond.Myklebust-7I+n7zu2hftEKMMhf/gKZA

On Thu, Oct 23, 2014 at 05:23:26PM -0400, Anna Schumaker wrote:
> I'm curious what the status of this patch is?

Looks like nothing :)

Al, are you ok with Anna just submitting this via the nfsd tree for
the NFS fallocate support?

--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
@ 2014-10-24  6:48           ` Christoph Hellwig
  0 siblings, 0 replies; 10+ messages in thread
From: Christoph Hellwig @ 2014-10-24  6:48 UTC (permalink / raw)
  To: Anna Schumaker
  Cc: Christoph Hellwig, viro, linux-fsdevel, linux-nfs, bfields,
	Trond.Myklebust

On Thu, Oct 23, 2014 at 05:23:26PM -0400, Anna Schumaker wrote:
> I'm curious what the status of this patch is?

Looks like nothing :)

Al, are you ok with Anna just submitting this via the nfsd tree for
the NFS fallocate support?


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
  2014-10-24  6:48           ` Christoph Hellwig
@ 2014-10-31 10:36               ` Al Viro
  -1 siblings, 0 replies; 10+ messages in thread
From: Al Viro @ 2014-10-31 10:36 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Anna Schumaker, Christoph Hellwig,
	linux-fsdevel-u79uwXL29TY76Z2rM5mHXA,
	linux-nfs-u79uwXL29TY76Z2rM5mHXA, bfields-uC3wQj2KruNg9hUCZPvPmw,
	Trond.Myklebust-7I+n7zu2hftEKMMhf/gKZA

On Thu, Oct 23, 2014 at 11:48:00PM -0700, Christoph Hellwig wrote:
> On Thu, Oct 23, 2014 at 05:23:26PM -0400, Anna Schumaker wrote:
> > I'm curious what the status of this patch is?
> 
> Looks like nothing :)
> 
> Al, are you ok with Anna just submitting this via the nfsd tree for
> the NFS fallocate support?

Fine by me.
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] VFS: Rename do_fallocate() to vfs_fallocate()
@ 2014-10-31 10:36               ` Al Viro
  0 siblings, 0 replies; 10+ messages in thread
From: Al Viro @ 2014-10-31 10:36 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Anna Schumaker, Christoph Hellwig, linux-fsdevel, linux-nfs,
	bfields, Trond.Myklebust

On Thu, Oct 23, 2014 at 11:48:00PM -0700, Christoph Hellwig wrote:
> On Thu, Oct 23, 2014 at 05:23:26PM -0400, Anna Schumaker wrote:
> > I'm curious what the status of this patch is?
> 
> Looks like nothing :)
> 
> Al, are you ok with Anna just submitting this via the nfsd tree for
> the NFS fallocate support?

Fine by me.

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-10-31 10:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-01 19:15 [PATCH] VFS: Rename do_fallocate() to vfs_fallocate() Anna Schumaker
     [not found] ` <1412190907-30307-1-git-send-email-Anna.Schumaker-ZwjVKphTwtPQT0dZR+AlfA@public.gmane.org>
2014-10-01 19:27   ` J. Bruce Fields
2014-10-01 19:27     ` J. Bruce Fields
2014-10-01 21:04 ` Christoph Hellwig
     [not found]   ` <20141001210451.GB6680-jcswGhMUV9g@public.gmane.org>
2014-10-23 21:23     ` Anna Schumaker
2014-10-23 21:23       ` Anna Schumaker
     [not found]       ` <544971CE.9090808-ZwjVKphTwtPQT0dZR+AlfA@public.gmane.org>
2014-10-24  6:48         ` Christoph Hellwig
2014-10-24  6:48           ` Christoph Hellwig
     [not found]           ` <20141024064800.GA10811-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2014-10-31 10:36             ` Al Viro
2014-10-31 10:36               ` Al Viro

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.