Re: [Devel] [PATCH] ext4: fix mkdir operations with overlayfs

2016-10-17 Thread Vladimir Meshkov
Konstantin, thank you!

On Mon, Oct 17, 2016 at 12:41 PM, Konstantin Khorenko <
khore...@virtuozzo.com> wrote:

> Hi Vladimir,
>
> On 10/17/2016 11:48 AM, Vladimir Meshkov wrote:
>
>> Could you please clarify why we cannot find the commit at
>> https://src.openvz.org/projects/OVZ/repos/vzkernel/browse/
>> fs/ext4/namei.c?at=refs/heads/branch-rh7-3.10.0-327.36.1.vz7.18.x-ovz ?
>> Thank you.
>>
>
> It will appear in the branch vz7.18.x a bit later.
>
> --
> Konstantin
>
>
>> On Fri, Oct 14, 2016 at 9:23 PM, Maxim Patlasov > > wrote:
>>
>> Thanks! You may be interested to search devel@openvz.org > devel@openvz.org> archives for:
>>
>> Subject: [PATCH rh7] ext4: ext4_mkdir must set S_IOPS_WRAPPER bit
>>
>> Date: Mon, 25 Jul 2016 14:01:16 -0700
>>
>>
>> On 10/14/2016 09:47 AM, Vladimir Meshkov wrote:
>>
>>> ext4 supports an extended operations like rename2, but
>>> inode isn't correctly marked after mkdir.
>>>
>>> Signed-off-by: Alexey Lyashkov >> https://e.mail.ru/compose?To=u...@cloudlinux.com>>
>>> ---
>>>  fs/ext4/namei.c | 1 +
>>>  1 file changed, 1 insertion(+)
>>>
>>> diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
>>> index 0adc6df..bebe698 100644
>>> --- a/fs/ext4/namei.c
>>> +++ b/fs/ext4/namei.c
>>> @@ -2413,6 +2413,7 @@ retry:
>>>
>>>   inode->i_op = &ext4_dir_inode_operations.ops;
>>>   inode->i_fop = &ext4_dir_operations;
>>> + inode->i_flags |= S_IOPS_WRAPPER;
>>>   err = ext4_init_new_dir(handle, dir, inode);
>>>   if (err)
>>>   goto out_clear_inode;
>>> --
>>> 1.8.3.1
>>>
>>
___
Devel mailing list
Devel@openvz.org
https://lists.openvz.org/mailman/listinfo/devel


Re: [Devel] [PATCH] ext4: fix mkdir operations with overlayfs

2016-10-17 Thread Konstantin Khorenko

Hi Vladimir,

On 10/17/2016 11:48 AM, Vladimir Meshkov wrote:

Could you please clarify why we cannot find the commit at
https://src.openvz.org/projects/OVZ/repos/vzkernel/browse/fs/ext4/namei.c?at=refs/heads/branch-rh7-3.10.0-327.36.1.vz7.18.x-ovz
 ? Thank you.


It will appear in the branch vz7.18.x a bit later.

--
Konstantin



On Fri, Oct 14, 2016 at 9:23 PM, Maxim Patlasov mailto:mpatla...@virtuozzo.com>> wrote:

Thanks! You may be interested to search devel@openvz.org 
 archives for:

Subject: [PATCH rh7] ext4: ext4_mkdir must set S_IOPS_WRAPPER bit

Date: Mon, 25 Jul 2016 14:01:16 -0700


On 10/14/2016 09:47 AM, Vladimir Meshkov wrote:

ext4 supports an extended operations like rename2, but
inode isn't correctly marked after mkdir.

Signed-off-by: Alexey Lyashkov https://e.mail.ru/compose?To=u...@cloudlinux.com>>
---
 fs/ext4/namei.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 0adc6df..bebe698 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -2413,6 +2413,7 @@ retry:

  inode->i_op = &ext4_dir_inode_operations.ops;
  inode->i_fop = &ext4_dir_operations;
+ inode->i_flags |= S_IOPS_WRAPPER;
  err = ext4_init_new_dir(handle, dir, inode);
  if (err)
  goto out_clear_inode;
--
1.8.3.1

___
Devel mailing list
Devel@openvz.org
https://lists.openvz.org/mailman/listinfo/devel


Re: [Devel] [PATCH] ext4: fix mkdir operations with overlayfs

2016-10-17 Thread Vladimir Meshkov
and the commit exists at
https://src.openvz.org/projects/OVZ/repos/vzkernel/browse/fs/ext4/namei.c?at=refs%2Fheads%2Fbranch-rh7-3.10.0-327.28.2.vz7.17.x-ovz
.
Could it be lost?

On Mon, Oct 17, 2016 at 11:48 AM, Vladimir Meshkov 
wrote:

> Could you please clarify why we cannot find the commit at
> https://src.openvz.org/projects/OVZ/repos/vzkernel/
> browse/fs/ext4/namei.c?at=refs/heads/branch-rh7-3.10.0-
> 327.36.1.vz7.18.x-ovz ? Thank you.
>
> On Fri, Oct 14, 2016 at 9:23 PM, Maxim Patlasov 
> wrote:
>
>> Thanks! You may be interested to search devel@openvz.org archives for:
>>
>> Subject: [PATCH rh7] ext4: ext4_mkdir must set S_IOPS_WRAPPER bit
>>
>> Date: Mon, 25 Jul 2016 14:01:16 -0700
>>
>> On 10/14/2016 09:47 AM, Vladimir Meshkov wrote:
>>
>> ext4 supports an extended operations like rename2, but
>> inode isn't correctly marked after mkdir.
>>
>> Signed-off-by: Alexey Lyashkov > >
>> ---
>>  fs/ext4/namei.c | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
>> index 0adc6df..bebe698 100644
>> --- a/fs/ext4/namei.c
>> +++ b/fs/ext4/namei.c
>> @@ -2413,6 +2413,7 @@ retry:
>>
>>   inode->i_op = &ext4_dir_inode_operations.ops;
>>   inode->i_fop = &ext4_dir_operations;
>> + inode->i_flags |= S_IOPS_WRAPPER;
>>   err = ext4_init_new_dir(handle, dir, inode);
>>   if (err)
>>   goto out_clear_inode;
>> --
>> 1.8.3.1
>>
>>
>> ___
>> Devel mailing 
>> listDevel@openvz.orghttps://lists.openvz.org/mailman/listinfo/devel
>>
>>
>>
>
___
Devel mailing list
Devel@openvz.org
https://lists.openvz.org/mailman/listinfo/devel


Re: [Devel] [PATCH] ext4: fix mkdir operations with overlayfs

2016-10-17 Thread Vladimir Meshkov
Could you please clarify why we cannot find the commit at
https://src.openvz.org/projects/OVZ/repos/vzkernel/browse/fs/ext4/namei.c?at=refs/heads/branch-rh7-3.10.0-327.36.1.vz7.18.x-ovz
? Thank you.

On Fri, Oct 14, 2016 at 9:23 PM, Maxim Patlasov 
wrote:

> Thanks! You may be interested to search devel@openvz.org archives for:
>
> Subject: [PATCH rh7] ext4: ext4_mkdir must set S_IOPS_WRAPPER bit
>
> Date: Mon, 25 Jul 2016 14:01:16 -0700
>
> On 10/14/2016 09:47 AM, Vladimir Meshkov wrote:
>
> ext4 supports an extended operations like rename2, but
> inode isn't correctly marked after mkdir.
>
> Signed-off-by: Alexey Lyashkov  >
> ---
>  fs/ext4/namei.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
> index 0adc6df..bebe698 100644
> --- a/fs/ext4/namei.c
> +++ b/fs/ext4/namei.c
> @@ -2413,6 +2413,7 @@ retry:
>
>   inode->i_op = &ext4_dir_inode_operations.ops;
>   inode->i_fop = &ext4_dir_operations;
> + inode->i_flags |= S_IOPS_WRAPPER;
>   err = ext4_init_new_dir(handle, dir, inode);
>   if (err)
>   goto out_clear_inode;
> --
> 1.8.3.1
>
>
> ___
> Devel mailing 
> listDevel@openvz.orghttps://lists.openvz.org/mailman/listinfo/devel
>
>
>
___
Devel mailing list
Devel@openvz.org
https://lists.openvz.org/mailman/listinfo/devel


Re: [Devel] [PATCH] ext4: fix mkdir operations with overlayfs

2016-10-14 Thread Maxim Patlasov

Thanks! You may be interested to search devel@openvz.org archives for:

Subject: [PATCH rh7] ext4: ext4_mkdir must set S_IOPS_WRAPPER bit

Date: Mon, 25 Jul 2016 14:01:16 -0700


On 10/14/2016 09:47 AM, Vladimir Meshkov wrote:

ext4 supports an extended operations like rename2, but
inode isn't correctly marked after mkdir.

Signed-off-by: Alexey Lyashkov >

---
 fs/ext4/namei.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 0adc6df..bebe698 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -2413,6 +2413,7 @@ retry:

  inode->i_op = &ext4_dir_inode_operations.ops;
  inode->i_fop = &ext4_dir_operations;
+ inode->i_flags |= S_IOPS_WRAPPER;
  err = ext4_init_new_dir(handle, dir, inode);
  if (err)
  goto out_clear_inode;
--
1.8.3.1


___
Devel mailing list
Devel@openvz.org
https://lists.openvz.org/mailman/listinfo/devel


___
Devel mailing list
Devel@openvz.org
https://lists.openvz.org/mailman/listinfo/devel