Re: [PATCH] SUNRPC: Add a check for gss_release_msg

2021-04-08 Thread Olga Kornievskaia
On Thu, Apr 8, 2021 at 11:01 AM Trond Myklebust wrote: > > On Tue, 2021-04-06 at 19:16 -0500, Aditya Pakki wrote: > > In gss_pipe_destroy_msg(), in case of error in msg, gss_release_msg > > deletes gss_msg. The patch adds a check to avoid a potential double > > free. > > > > Signed-off-by: Aditya

Re: [PATCH v8] vfs: fix copy_file_range regression in cross-fs copies

2021-02-23 Thread Olga Kornievskaia
On Mon, Feb 22, 2021 at 5:25 AM Luis Henriques wrote: > > A regression has been reported by Nicolas Boichat, found while using the > copy_file_range syscall to copy a tracefs file. Before commit > 5dae222a5ff0 ("vfs: allow copy_file_range to copy across devices") the > kernel would return -EXDEV

Re: [PATCH v8] vfs: fix copy_file_range regression in cross-fs copies

2021-02-23 Thread Olga Kornievskaia
On Tue, Feb 23, 2021 at 11:03 AM wrote: > > > On 2/23/21 7:29 AM, dai@oracle.com wrote: > > > > On 2/23/21 2:32 AM, Luis Henriques wrote: > >> On Mon, Feb 22, 2021 at 08:25:27AM -0800, dai@oracle.com wrote: > >>> On 2/22/21 2:24 AM, Luis Henriques wrote: > A regression has been

Re: [PATCH v6] vfs: fix copy_file_range regression in cross-fs copies

2021-02-19 Thread Olga Kornievskaia
On Thu, Feb 18, 2021 at 12:33 PM Luis Henriques wrote: > > A regression has been reported by Nicolas Boichat, found while using the > copy_file_range syscall to copy a tracefs file. Before commit > 5dae222a5ff0 ("vfs: allow copy_file_range to copy across devices") the > kernel would return

Re: [PATCH v3] vfs: fix copy_file_range regression in cross-fs copies

2021-02-18 Thread Olga Kornievskaia
On Thu, Feb 18, 2021 at 1:48 AM Amir Goldstein wrote: > > On Thu, Feb 18, 2021 at 7:33 AM Olga Kornievskaia wrote: > > > > On Wed, Feb 17, 2021 at 3:30 PM Luis Henriques wrote: > > > > > > A regression has been reported by Nicolas Boichat, found while usi

Re: [PATCH v3] vfs: fix copy_file_range regression in cross-fs copies

2021-02-17 Thread Olga Kornievskaia
On Wed, Feb 17, 2021 at 3:30 PM Luis Henriques wrote: > > A regression has been reported by Nicolas Boichat, found while using the > copy_file_range syscall to copy a tracefs file. Before commit > 5dae222a5ff0 ("vfs: allow copy_file_range to copy across devices") the > kernel would return -EXDEV

Re: [PATCH 2/2] NFS: Limit the number of retries

2020-11-04 Thread Olga Kornievskaia
On Wed, Nov 4, 2020 at 6:36 AM Wenle Chen wrote: > > > > Trond Myklebust 於 2020/11/3 上午1:45 寫道: > > On Tue, 2020-11-03 at 00:24 +0800, Wenle Chen wrote: > >>We can't wait forever, even if the state > >> is always delayed. > >> > >> Signed-off-by: Wenle Chen > >> --- > >> fs/nfs/nfs4proc.c

Re: PROBLEM: oops spew with Linux 5.1.5 (NFS regression?)

2019-05-29 Thread Olga Kornievskaia
se() in > order to free task->tk_rqstp, which is needed by rpc_check_timeout() > to check whether or not we should exit due to a soft timeout. > > The fix is to move the call to xprt_release() into call_decode() so > we can perform it after rpc_check_timeout(). > > Reporte