All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
@ 2018-04-02 10:24 ` Chao Yu
  0 siblings, 0 replies; 11+ messages in thread
From: Chao Yu @ 2018-04-02 10:24 UTC (permalink / raw)
  To: jaegeuk; +Cc: linux-f2fs-devel, linux-kernel, chao, Chao Yu

This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
---
 fs/f2fs/file.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 8068b015ece5..271fadadaa36 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
 {
 	struct inode *inode = file_inode(filp);
 	struct f2fs_inode_info *fi = F2FS_I(inode);
-	unsigned int flags = fi->i_flags &
-			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
+	unsigned int flags = fi->i_flags;
+
+	if (file_is_encrypt(inode))
+		flags |= FS_ENCRYPT_FL;
+
+	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
+
 	return put_user(flags, (int __user *)arg);
 }
 
-- 
2.15.0.55.gc2ece9dc4de6

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

* [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
@ 2018-04-02 10:24 ` Chao Yu
  0 siblings, 0 replies; 11+ messages in thread
From: Chao Yu @ 2018-04-02 10:24 UTC (permalink / raw)
  To: jaegeuk; +Cc: linux-f2fs-devel, linux-kernel, chao, Chao Yu

This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
---
 fs/f2fs/file.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 8068b015ece5..271fadadaa36 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
 {
 	struct inode *inode = file_inode(filp);
 	struct f2fs_inode_info *fi = F2FS_I(inode);
-	unsigned int flags = fi->i_flags &
-			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
+	unsigned int flags = fi->i_flags;
+
+	if (file_is_encrypt(inode))
+		flags |= FS_ENCRYPT_FL;
+
+	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
+
 	return put_user(flags, (int __user *)arg);
 }
 
-- 
2.15.0.55.gc2ece9dc4de6

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
  2018-04-02 10:24 ` Chao Yu
  (?)
@ 2018-04-02 20:21 ` Jaegeuk Kim
  2018-04-03  7:14     ` Chao Yu
  -1 siblings, 1 reply; 11+ messages in thread
From: Jaegeuk Kim @ 2018-04-02 20:21 UTC (permalink / raw)
  To: Chao Yu; +Cc: linux-f2fs-devel, linux-kernel, chao

On 04/02, Chao Yu wrote:
> This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.

Actually, we have to show internal flags owned by f2fs, not generic ones.
We may need to define all of them separately?

> 
> Signed-off-by: Chao Yu <yuchao0@huawei.com>
> ---
>  fs/f2fs/file.c | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
> index 8068b015ece5..271fadadaa36 100644
> --- a/fs/f2fs/file.c
> +++ b/fs/f2fs/file.c
> @@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
>  {
>  	struct inode *inode = file_inode(filp);
>  	struct f2fs_inode_info *fi = F2FS_I(inode);
> -	unsigned int flags = fi->i_flags &
> -			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
> +	unsigned int flags = fi->i_flags;
> +
> +	if (file_is_encrypt(inode))
> +		flags |= FS_ENCRYPT_FL;
> +
> +	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
> +
>  	return put_user(flags, (int __user *)arg);
>  }
>  
> -- 
> 2.15.0.55.gc2ece9dc4de6

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
  2018-04-02 20:21 ` Jaegeuk Kim
@ 2018-04-03  7:14     ` Chao Yu
  0 siblings, 0 replies; 11+ messages in thread
From: Chao Yu @ 2018-04-03  7:14 UTC (permalink / raw)
  To: Jaegeuk Kim; +Cc: linux-f2fs-devel, linux-kernel, chao

On 2018/4/3 4:21, Jaegeuk Kim wrote:
> On 04/02, Chao Yu wrote:
>> This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.
> 
> Actually, we have to show internal flags owned by f2fs, not generic ones.
> We may need to define all of them separately?

Agreed, I wrote a patch, could check that? and in that patch, do we need to
delete flag definition f2fs don't use?

Thanks,

> 
>>
>> Signed-off-by: Chao Yu <yuchao0@huawei.com>
>> ---
>>  fs/f2fs/file.c | 9 +++++++--
>>  1 file changed, 7 insertions(+), 2 deletions(-)
>>
>> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
>> index 8068b015ece5..271fadadaa36 100644
>> --- a/fs/f2fs/file.c
>> +++ b/fs/f2fs/file.c
>> @@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
>>  {
>>  	struct inode *inode = file_inode(filp);
>>  	struct f2fs_inode_info *fi = F2FS_I(inode);
>> -	unsigned int flags = fi->i_flags &
>> -			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
>> +	unsigned int flags = fi->i_flags;
>> +
>> +	if (file_is_encrypt(inode))
>> +		flags |= FS_ENCRYPT_FL;
>> +
>> +	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
>> +
>>  	return put_user(flags, (int __user *)arg);
>>  }
>>  
>> -- 
>> 2.15.0.55.gc2ece9dc4de6
> 
> .
> 

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
@ 2018-04-03  7:14     ` Chao Yu
  0 siblings, 0 replies; 11+ messages in thread
From: Chao Yu @ 2018-04-03  7:14 UTC (permalink / raw)
  To: Jaegeuk Kim; +Cc: linux-f2fs-devel, linux-kernel, chao

On 2018/4/3 4:21, Jaegeuk Kim wrote:
> On 04/02, Chao Yu wrote:
>> This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.
> 
> Actually, we have to show internal flags owned by f2fs, not generic ones.
> We may need to define all of them separately?

Agreed, I wrote a patch, could check that? and in that patch, do we need to
delete flag definition f2fs don't use?

Thanks,

> 
>>
>> Signed-off-by: Chao Yu <yuchao0@huawei.com>
>> ---
>>  fs/f2fs/file.c | 9 +++++++--
>>  1 file changed, 7 insertions(+), 2 deletions(-)
>>
>> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
>> index 8068b015ece5..271fadadaa36 100644
>> --- a/fs/f2fs/file.c
>> +++ b/fs/f2fs/file.c
>> @@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
>>  {
>>  	struct inode *inode = file_inode(filp);
>>  	struct f2fs_inode_info *fi = F2FS_I(inode);
>> -	unsigned int flags = fi->i_flags &
>> -			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
>> +	unsigned int flags = fi->i_flags;
>> +
>> +	if (file_is_encrypt(inode))
>> +		flags |= FS_ENCRYPT_FL;
>> +
>> +	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
>> +
>>  	return put_user(flags, (int __user *)arg);
>>  }
>>  
>> -- 
>> 2.15.0.55.gc2ece9dc4de6
> 
> .
> 

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
  2018-04-02 10:24 ` Chao Yu
@ 2018-04-05  1:34   ` Sasha Levin
  -1 siblings, 0 replies; 11+ messages in thread
From: Sasha Levin @ 2018-04-05  1:34 UTC (permalink / raw)
  To: Sasha Levin, Chao Yu, jaegeuk; +Cc: linux-f2fs-devel, stable

Hi Chao Yu.

[This is an automated email]

This commit has been processed by the -stable helper bot and determined
to be a high probability candidate for -stable trees. (score: 11.4088)

The bot has tested the following trees: v4.15.15, v4.14.32, v4.9.92, v4.4.126, 

v4.15.15: Build OK!
v4.14.32: Build OK!
v4.9.92: Failed to apply! Possible dependencies:
    2c1d03056991: ("f2fs: support F2FS_IOC_FS{GET,SET}XATTR")
    34dc77ad7436: ("f2fs: add ioctl to do gc with target block address")
    e066b83c9b40: ("f2fs: add ioctl to flush data from faster device to cold area")
    cac5a3d8f517: ("f2fs: fix 446 coding style warnings in f2fs.h")
    7c45729a4d6d: ("f2fs: keep dirty inodes selectively for checkpoint")
    15d04354555f: ("f2fs: call f2fs_balance_fs for setattr")

v4.4.126: Failed to apply! Possible dependencies:
    2c1d03056991: ("f2fs: support F2FS_IOC_FS{GET,SET}XATTR")
    34dc77ad7436: ("f2fs: add ioctl to do gc with target block address")
    e066b83c9b40: ("f2fs: add ioctl to flush data from faster device to cold area")
    4dd6f977fc77: ("f2fs: support an ioctl to move a range of data blocks")
    d323d005ac4a: ("f2fs: support file defragment")
    8da4b8c48e7b: ("lib/uuid.c: move generate_random_uuid() to uuid.c")
    9b7365fc1c82: ("ext4: add FS_IOC_FSSETXATTR/FS_IOC_FSGETXATTR interface support")


Please let us know if you'd like to have this patch included in a stable tree.

--
Thanks.
Sasha

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
@ 2018-04-05  1:34   ` Sasha Levin
  0 siblings, 0 replies; 11+ messages in thread
From: Sasha Levin @ 2018-04-05  1:34 UTC (permalink / raw)
  To: Sasha Levin, Chao Yu, jaegeuk; +Cc: linux-f2fs-devel, stable

Hi Chao Yu.

[This is an automated email]

This commit has been processed by the -stable helper bot and determined
to be a high probability candidate for -stable trees. (score: 11.4088)

The bot has tested the following trees: v4.15.15, v4.14.32, v4.9.92, v4.4.126, 

v4.15.15: Build OK!
v4.14.32: Build OK!
v4.9.92: Failed to apply! Possible dependencies:
    2c1d03056991: ("f2fs: support F2FS_IOC_FS{GET,SET}XATTR")
    34dc77ad7436: ("f2fs: add ioctl to do gc with target block address")
    e066b83c9b40: ("f2fs: add ioctl to flush data from faster device to cold area")
    cac5a3d8f517: ("f2fs: fix 446 coding style warnings in f2fs.h")
    7c45729a4d6d: ("f2fs: keep dirty inodes selectively for checkpoint")
    15d04354555f: ("f2fs: call f2fs_balance_fs for setattr")

v4.4.126: Failed to apply! Possible dependencies:
    2c1d03056991: ("f2fs: support F2FS_IOC_FS{GET,SET}XATTR")
    34dc77ad7436: ("f2fs: add ioctl to do gc with target block address")
    e066b83c9b40: ("f2fs: add ioctl to flush data from faster device to cold area")
    4dd6f977fc77: ("f2fs: support an ioctl to move a range of data blocks")
    d323d005ac4a: ("f2fs: support file defragment")
    8da4b8c48e7b: ("lib/uuid.c: move generate_random_uuid() to uuid.c")
    9b7365fc1c82: ("ext4: add FS_IOC_FSSETXATTR/FS_IOC_FSGETXATTR interface support")


Please let us know if you'd like to have this patch included in a stable tree.

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
  2018-04-03  7:14     ` Chao Yu
@ 2018-04-05  3:46       ` Jaegeuk Kim
  -1 siblings, 0 replies; 11+ messages in thread
From: Jaegeuk Kim @ 2018-04-05  3:46 UTC (permalink / raw)
  To: Chao Yu; +Cc: linux-f2fs-devel, linux-kernel, chao

On 04/03, Chao Yu wrote:
> On 2018/4/3 4:21, Jaegeuk Kim wrote:
> > On 04/02, Chao Yu wrote:
> >> This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.
> > 
> > Actually, we have to show internal flags owned by f2fs, not generic ones.
> > We may need to define all of them separately?
> 
> Agreed, I wrote a patch, could check that? and in that patch, do we need to
> delete flag definition f2fs don't use?

IMO, we'd better keep the flags. I merged it and could you add encryption part
on top of it?

Thanks,

> 
> Thanks,
> 
> > 
> >>
> >> Signed-off-by: Chao Yu <yuchao0@huawei.com>
> >> ---
> >>  fs/f2fs/file.c | 9 +++++++--
> >>  1 file changed, 7 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
> >> index 8068b015ece5..271fadadaa36 100644
> >> --- a/fs/f2fs/file.c
> >> +++ b/fs/f2fs/file.c
> >> @@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
> >>  {
> >>  	struct inode *inode = file_inode(filp);
> >>  	struct f2fs_inode_info *fi = F2FS_I(inode);
> >> -	unsigned int flags = fi->i_flags &
> >> -			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
> >> +	unsigned int flags = fi->i_flags;
> >> +
> >> +	if (file_is_encrypt(inode))
> >> +		flags |= FS_ENCRYPT_FL;
> >> +
> >> +	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
> >> +
> >>  	return put_user(flags, (int __user *)arg);
> >>  }
> >>  
> >> -- 
> >> 2.15.0.55.gc2ece9dc4de6
> > 
> > .
> > 

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
@ 2018-04-05  3:46       ` Jaegeuk Kim
  0 siblings, 0 replies; 11+ messages in thread
From: Jaegeuk Kim @ 2018-04-05  3:46 UTC (permalink / raw)
  To: Chao Yu; +Cc: linux-kernel, linux-f2fs-devel

On 04/03, Chao Yu wrote:
> On 2018/4/3 4:21, Jaegeuk Kim wrote:
> > On 04/02, Chao Yu wrote:
> >> This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.
> > 
> > Actually, we have to show internal flags owned by f2fs, not generic ones.
> > We may need to define all of them separately?
> 
> Agreed, I wrote a patch, could check that? and in that patch, do we need to
> delete flag definition f2fs don't use?

IMO, we'd better keep the flags. I merged it and could you add encryption part
on top of it?

Thanks,

> 
> Thanks,
> 
> > 
> >>
> >> Signed-off-by: Chao Yu <yuchao0@huawei.com>
> >> ---
> >>  fs/f2fs/file.c | 9 +++++++--
> >>  1 file changed, 7 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
> >> index 8068b015ece5..271fadadaa36 100644
> >> --- a/fs/f2fs/file.c
> >> +++ b/fs/f2fs/file.c
> >> @@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
> >>  {
> >>  	struct inode *inode = file_inode(filp);
> >>  	struct f2fs_inode_info *fi = F2FS_I(inode);
> >> -	unsigned int flags = fi->i_flags &
> >> -			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
> >> +	unsigned int flags = fi->i_flags;
> >> +
> >> +	if (file_is_encrypt(inode))
> >> +		flags |= FS_ENCRYPT_FL;
> >> +
> >> +	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
> >> +
> >>  	return put_user(flags, (int __user *)arg);
> >>  }
> >>  
> >> -- 
> >> 2.15.0.55.gc2ece9dc4de6
> > 
> > .
> > 

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
  2018-04-05  3:46       ` Jaegeuk Kim
@ 2018-04-08  1:15         ` Chao Yu
  -1 siblings, 0 replies; 11+ messages in thread
From: Chao Yu @ 2018-04-08  1:15 UTC (permalink / raw)
  To: Jaegeuk Kim; +Cc: linux-f2fs-devel, linux-kernel, chao

On 2018/4/5 11:46, Jaegeuk Kim wrote:
> On 04/03, Chao Yu wrote:
>> On 2018/4/3 4:21, Jaegeuk Kim wrote:
>>> On 04/02, Chao Yu wrote:
>>>> This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.
>>>
>>> Actually, we have to show internal flags owned by f2fs, not generic ones.
>>> We may need to define all of them separately?
>>
>> Agreed, I wrote a patch, could check that? and in that patch, do we need to
>> delete flag definition f2fs don't use?
> 
> IMO, we'd better keep the flags. I merged it and could you add encryption part

Agreed.

> on top of it?

No problem. ;)

Thanks,

> 
> Thanks,
> 
>>
>> Thanks,
>>
>>>
>>>>
>>>> Signed-off-by: Chao Yu <yuchao0@huawei.com>
>>>> ---
>>>>  fs/f2fs/file.c | 9 +++++++--
>>>>  1 file changed, 7 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
>>>> index 8068b015ece5..271fadadaa36 100644
>>>> --- a/fs/f2fs/file.c
>>>> +++ b/fs/f2fs/file.c
>>>> @@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
>>>>  {
>>>>  	struct inode *inode = file_inode(filp);
>>>>  	struct f2fs_inode_info *fi = F2FS_I(inode);
>>>> -	unsigned int flags = fi->i_flags &
>>>> -			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
>>>> +	unsigned int flags = fi->i_flags;
>>>> +
>>>> +	if (file_is_encrypt(inode))
>>>> +		flags |= FS_ENCRYPT_FL;
>>>> +
>>>> +	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
>>>> +
>>>>  	return put_user(flags, (int __user *)arg);
>>>>  }
>>>>  
>>>> -- 
>>>> 2.15.0.55.gc2ece9dc4de6
>>>
>>> .
>>>
> 
> .
> 

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

* Re: [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS
@ 2018-04-08  1:15         ` Chao Yu
  0 siblings, 0 replies; 11+ messages in thread
From: Chao Yu @ 2018-04-08  1:15 UTC (permalink / raw)
  To: Jaegeuk Kim; +Cc: linux-kernel, linux-f2fs-devel

On 2018/4/5 11:46, Jaegeuk Kim wrote:
> On 04/03, Chao Yu wrote:
>> On 2018/4/3 4:21, Jaegeuk Kim wrote:
>>> On 04/02, Chao Yu wrote:
>>>> This patch fixes to show encrypt flag in FS_IOC_GETFLAGS like ext4 does.
>>>
>>> Actually, we have to show internal flags owned by f2fs, not generic ones.
>>> We may need to define all of them separately?
>>
>> Agreed, I wrote a patch, could check that? and in that patch, do we need to
>> delete flag definition f2fs don't use?
> 
> IMO, we'd better keep the flags. I merged it and could you add encryption part

Agreed.

> on top of it?

No problem. ;)

Thanks,

> 
> Thanks,
> 
>>
>> Thanks,
>>
>>>
>>>>
>>>> Signed-off-by: Chao Yu <yuchao0@huawei.com>
>>>> ---
>>>>  fs/f2fs/file.c | 9 +++++++--
>>>>  1 file changed, 7 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
>>>> index 8068b015ece5..271fadadaa36 100644
>>>> --- a/fs/f2fs/file.c
>>>> +++ b/fs/f2fs/file.c
>>>> @@ -1584,8 +1584,13 @@ static int f2fs_ioc_getflags(struct file *filp, unsigned long arg)
>>>>  {
>>>>  	struct inode *inode = file_inode(filp);
>>>>  	struct f2fs_inode_info *fi = F2FS_I(inode);
>>>> -	unsigned int flags = fi->i_flags &
>>>> -			(FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL);
>>>> +	unsigned int flags = fi->i_flags;
>>>> +
>>>> +	if (file_is_encrypt(inode))
>>>> +		flags |= FS_ENCRYPT_FL;
>>>> +
>>>> +	flags &= FS_FL_USER_VISIBLE | FS_PROJINHERIT_FL;
>>>> +
>>>>  	return put_user(flags, (int __user *)arg);
>>>>  }
>>>>  
>>>> -- 
>>>> 2.15.0.55.gc2ece9dc4de6
>>>
>>> .
>>>
> 
> .
> 


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot

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

end of thread, other threads:[~2018-04-08  1:16 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-02 10:24 [PATCH] f2fs: fix to show encrypt flag in FS_IOC_GETFLAGS Chao Yu
2018-04-02 10:24 ` Chao Yu
2018-04-02 20:21 ` Jaegeuk Kim
2018-04-03  7:14   ` Chao Yu
2018-04-03  7:14     ` Chao Yu
2018-04-05  3:46     ` Jaegeuk Kim
2018-04-05  3:46       ` Jaegeuk Kim
2018-04-08  1:15       ` Chao Yu
2018-04-08  1:15         ` Chao Yu
2018-04-05  1:34 ` Sasha Levin
2018-04-05  1:34   ` Sasha Levin

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.