diff mbox

Btrfs: fix missing s_id setting

Message ID 201604050008.AA00001@WIN-5MHF4RKU941.jp.fujitsu.com (mailing list archive)
State New, archived
Headers show

Commit Message

Tsutomu Itoh April 5, 2016, 12:08 a.m. UTC
When fs_devices->latest_bdev is deleted or is replaced, sb->s_id has
not been updated.
As a result, the deleted device name is displayed by btrfs_printk.

[before fix]
 # btrfs dev del /dev/sdc4 /mnt2
 # btrfs dev add /dev/sdb6 /mnt2

 [  217.458249] BTRFS info (device sdc4): found 1 extents
 [  217.695798] BTRFS info (device sdc4): disk deleted /dev/sdc4
 [  217.941284] BTRFS info (device sdc4): disk added /dev/sdb6

[after fix]
 # btrfs dev del /dev/sdc4 /mnt2
 # btrfs dev add /dev/sdb6 /mnt2

 [   83.835072] BTRFS info (device sdc4): found 1 extents
 [   84.080617] BTRFS info (device sdc3): disk deleted /dev/sdc4
 [   84.401951] BTRFS info (device sdc3): disk added /dev/sdb6

Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
---
 fs/btrfs/dev-replace.c |  5 ++++-
 fs/btrfs/volumes.c     | 11 +++++++++--
 2 files changed, 13 insertions(+), 3 deletions(-)

Comments

Anand Jain April 5, 2016, 7:56 a.m. UTC | #1
On 04/05/2016 08:08 AM, Tsutomu Itoh wrote:
> When fs_devices->latest_bdev is deleted or is replaced, sb->s_id has
> not been updated.
> As a result, the deleted device name is displayed by btrfs_printk.
>
> [before fix]
>   # btrfs dev del /dev/sdc4 /mnt2
>   # btrfs dev add /dev/sdb6 /mnt2
>
>   [  217.458249] BTRFS info (device sdc4): found 1 extents
>   [  217.695798] BTRFS info (device sdc4): disk deleted /dev/sdc4
>   [  217.941284] BTRFS info (device sdc4): disk added /dev/sdb6
>
> [after fix]
>   # btrfs dev del /dev/sdc4 /mnt2
>   # btrfs dev add /dev/sdb6 /mnt2
>
>   [   83.835072] BTRFS info (device sdc4): found 1 extents
>   [   84.080617] BTRFS info (device sdc3): disk deleted /dev/sdc4
>   [   84.401951] BTRFS info (device sdc3): disk added /dev/sdb6


  [PATCH 05/13] Btrfs: fix fs logging for multi device

  any comments ?

  We would want to maintain the logging prefix as constant, so that
  troubleshooters with filters/scripts will find it helpful.

Thanks, Anand


> Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
> ---
>   fs/btrfs/dev-replace.c |  5 ++++-
>   fs/btrfs/volumes.c     | 11 +++++++++--
>   2 files changed, 13 insertions(+), 3 deletions(-)
>
> diff --git a/fs/btrfs/dev-replace.c b/fs/btrfs/dev-replace.c
> index a1d6652..11c4198 100644
> --- a/fs/btrfs/dev-replace.c
> +++ b/fs/btrfs/dev-replace.c
> @@ -560,8 +560,11 @@ static int btrfs_dev_replace_finishing(struct btrfs_fs_info *fs_info,
>   	tgt_device->commit_bytes_used = src_device->bytes_used;
>   	if (fs_info->sb->s_bdev == src_device->bdev)
>   		fs_info->sb->s_bdev = tgt_device->bdev;
> -	if (fs_info->fs_devices->latest_bdev == src_device->bdev)
> +	if (fs_info->fs_devices->latest_bdev == src_device->bdev) {
>   		fs_info->fs_devices->latest_bdev = tgt_device->bdev;
> +		snprintf(fs_info->sb->s_id, sizeof(fs_info->sb->s_id), "%pg",
> +			 tgt_device->bdev);
> +	}
>   	list_add(&tgt_device->dev_alloc_list, &fs_info->fs_devices->alloc_list);
>   	fs_info->fs_devices->rw_devices++;
>
> diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
> index e2b54d5..a471385 100644
> --- a/fs/btrfs/volumes.c
> +++ b/fs/btrfs/volumes.c
> @@ -1846,8 +1846,12 @@ int btrfs_rm_device(struct btrfs_root *root, char *device_path)
>   				 struct btrfs_device, dev_list);
>   	if (device->bdev == root->fs_info->sb->s_bdev)
>   		root->fs_info->sb->s_bdev = next_device->bdev;
> -	if (device->bdev == root->fs_info->fs_devices->latest_bdev)
> +	if (device->bdev == root->fs_info->fs_devices->latest_bdev) {
>   		root->fs_info->fs_devices->latest_bdev = next_device->bdev;
> +		snprintf(root->fs_info->sb->s_id,
> +			 sizeof(root->fs_info->sb->s_id), "%pg",
> +			 next_device->bdev);
> +	}
>
>   	if (device->bdev) {
>   		device->fs_devices->open_devices--;
> @@ -2034,8 +2038,11 @@ void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
>   				 struct btrfs_device, dev_list);
>   	if (tgtdev->bdev == fs_info->sb->s_bdev)
>   		fs_info->sb->s_bdev = next_device->bdev;
> -	if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
> +	if (tgtdev->bdev == fs_info->fs_devices->latest_bdev) {
>   		fs_info->fs_devices->latest_bdev = next_device->bdev;
> +		snprintf(fs_info->sb->s_id, sizeof(fs_info->sb->s_id), "%pg",
> +			 next_device->bdev);
> +	}
>   	list_del_rcu(&tgtdev->dev_list);
>
>   	call_rcu(&tgtdev->rcu, free_device);
>
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Tsutomu Itoh April 5, 2016, 8:52 a.m. UTC | #2
On 2016/04/05 16:56, Anand Jain wrote:
> On 04/05/2016 08:08 AM, Tsutomu Itoh wrote:
>> When fs_devices->latest_bdev is deleted or is replaced, sb->s_id has
>> not been updated.
>> As a result, the deleted device name is displayed by btrfs_printk.
>>
>> [before fix]
>>   # btrfs dev del /dev/sdc4 /mnt2
>>   # btrfs dev add /dev/sdb6 /mnt2
>>
>>   [  217.458249] BTRFS info (device sdc4): found 1 extents
>>   [  217.695798] BTRFS info (device sdc4): disk deleted /dev/sdc4
>>   [  217.941284] BTRFS info (device sdc4): disk added /dev/sdb6
>>
>> [after fix]
>>   # btrfs dev del /dev/sdc4 /mnt2
>>   # btrfs dev add /dev/sdb6 /mnt2
>>
>>   [   83.835072] BTRFS info (device sdc4): found 1 extents
>>   [   84.080617] BTRFS info (device sdc3): disk deleted /dev/sdc4
>>   [   84.401951] BTRFS info (device sdc3): disk added /dev/sdb6
>
>
>   [PATCH 05/13] Btrfs: fix fs logging for multi device
>
>   any comments ?
>
>   We would want to maintain the logging prefix as constant, so that
>   troubleshooters with filters/scripts will find it helpful.

I think it is good to make the identifier constant for the troubleshooting.
However, fsid(uuid) is a little long for the print purpose, I think.
(But an appropriate value isn't found...)

Thanks,
Tsutomu

>
> Thanks, Anand
>
>
>> Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
>> ---
>>   fs/btrfs/dev-replace.c |  5 ++++-
>>   fs/btrfs/volumes.c     | 11 +++++++++--
>>   2 files changed, 13 insertions(+), 3 deletions(-)
>>
>> diff --git a/fs/btrfs/dev-replace.c b/fs/btrfs/dev-replace.c
>> index a1d6652..11c4198 100644
>> --- a/fs/btrfs/dev-replace.c
>> +++ b/fs/btrfs/dev-replace.c
>> @@ -560,8 +560,11 @@ static int btrfs_dev_replace_finishing(struct btrfs_fs_info *fs_info,
>>       tgt_device->commit_bytes_used = src_device->bytes_used;
>>       if (fs_info->sb->s_bdev == src_device->bdev)
>>           fs_info->sb->s_bdev = tgt_device->bdev;
>> -    if (fs_info->fs_devices->latest_bdev == src_device->bdev)
>> +    if (fs_info->fs_devices->latest_bdev == src_device->bdev) {
>>           fs_info->fs_devices->latest_bdev = tgt_device->bdev;
>> +        snprintf(fs_info->sb->s_id, sizeof(fs_info->sb->s_id), "%pg",
>> +             tgt_device->bdev);
>> +    }
>>       list_add(&tgt_device->dev_alloc_list, &fs_info->fs_devices->alloc_list);
>>       fs_info->fs_devices->rw_devices++;
>>
>> diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
>> index e2b54d5..a471385 100644
>> --- a/fs/btrfs/volumes.c
>> +++ b/fs/btrfs/volumes.c
>> @@ -1846,8 +1846,12 @@ int btrfs_rm_device(struct btrfs_root *root, char *device_path)
>>                    struct btrfs_device, dev_list);
>>       if (device->bdev == root->fs_info->sb->s_bdev)
>>           root->fs_info->sb->s_bdev = next_device->bdev;
>> -    if (device->bdev == root->fs_info->fs_devices->latest_bdev)
>> +    if (device->bdev == root->fs_info->fs_devices->latest_bdev) {
>>           root->fs_info->fs_devices->latest_bdev = next_device->bdev;
>> +        snprintf(root->fs_info->sb->s_id,
>> +             sizeof(root->fs_info->sb->s_id), "%pg",
>> +             next_device->bdev);
>> +    }
>>
>>       if (device->bdev) {
>>           device->fs_devices->open_devices--;
>> @@ -2034,8 +2038,11 @@ void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
>>                    struct btrfs_device, dev_list);
>>       if (tgtdev->bdev == fs_info->sb->s_bdev)
>>           fs_info->sb->s_bdev = next_device->bdev;
>> -    if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
>> +    if (tgtdev->bdev == fs_info->fs_devices->latest_bdev) {
>>           fs_info->fs_devices->latest_bdev = next_device->bdev;
>> +        snprintf(fs_info->sb->s_id, sizeof(fs_info->sb->s_id), "%pg",
>> +             next_device->bdev);
>> +    }
>>       list_del_rcu(&tgtdev->dev_list);
>>
>>       call_rcu(&tgtdev->rcu, free_device);
>>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Tsutomu Itoh April 5, 2016, 11:56 p.m. UTC | #3
On 2016/04/05 17:52, Tsutomu Itoh wrote:
> On 2016/04/05 16:56, Anand Jain wrote:
>> On 04/05/2016 08:08 AM, Tsutomu Itoh wrote:
>>> When fs_devices->latest_bdev is deleted or is replaced, sb->s_id has
>>> not been updated.
>>> As a result, the deleted device name is displayed by btrfs_printk.
>>>
>>> [before fix]
>>>   # btrfs dev del /dev/sdc4 /mnt2
>>>   # btrfs dev add /dev/sdb6 /mnt2
>>>
>>>   [  217.458249] BTRFS info (device sdc4): found 1 extents
>>>   [  217.695798] BTRFS info (device sdc4): disk deleted /dev/sdc4
>>>   [  217.941284] BTRFS info (device sdc4): disk added /dev/sdb6
>>>
>>> [after fix]
>>>   # btrfs dev del /dev/sdc4 /mnt2
>>>   # btrfs dev add /dev/sdb6 /mnt2
>>>
>>>   [   83.835072] BTRFS info (device sdc4): found 1 extents
>>>   [   84.080617] BTRFS info (device sdc3): disk deleted /dev/sdc4
>>>   [   84.401951] BTRFS info (device sdc3): disk added /dev/sdb6
>>
>>
>>   [PATCH 05/13] Btrfs: fix fs logging for multi device
>>
>>   any comments ?
>>
>>   We would want to maintain the logging prefix as constant, so that
>>   troubleshooters with filters/scripts will find it helpful.
>
> I think it is good to make the identifier constant for the troubleshooting.
> However, fsid(uuid) is a little long for the print purpose, I think.
> (But an appropriate value isn't found...)

BTW, the state that the deleted device name is set to sb->s_id
is not good.

Thanks,
Tsutomu

>
> Thanks,
> Tsutomu
>
>>
>> Thanks, Anand
>>
>>
>>> Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
>>> ---
>>>   fs/btrfs/dev-replace.c |  5 ++++-
>>>   fs/btrfs/volumes.c     | 11 +++++++++--
>>>   2 files changed, 13 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/fs/btrfs/dev-replace.c b/fs/btrfs/dev-replace.c
>>> index a1d6652..11c4198 100644
>>> --- a/fs/btrfs/dev-replace.c
>>> +++ b/fs/btrfs/dev-replace.c
>>> @@ -560,8 +560,11 @@ static int btrfs_dev_replace_finishing(struct btrfs_fs_info *fs_info,
>>>       tgt_device->commit_bytes_used = src_device->bytes_used;
>>>       if (fs_info->sb->s_bdev == src_device->bdev)
>>>           fs_info->sb->s_bdev = tgt_device->bdev;
>>> -    if (fs_info->fs_devices->latest_bdev == src_device->bdev)
>>> +    if (fs_info->fs_devices->latest_bdev == src_device->bdev) {
>>>           fs_info->fs_devices->latest_bdev = tgt_device->bdev;
>>> +        snprintf(fs_info->sb->s_id, sizeof(fs_info->sb->s_id), "%pg",
>>> +             tgt_device->bdev);
>>> +    }
>>>       list_add(&tgt_device->dev_alloc_list, &fs_info->fs_devices->alloc_list);
>>>       fs_info->fs_devices->rw_devices++;
>>>
>>> diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
>>> index e2b54d5..a471385 100644
>>> --- a/fs/btrfs/volumes.c
>>> +++ b/fs/btrfs/volumes.c
>>> @@ -1846,8 +1846,12 @@ int btrfs_rm_device(struct btrfs_root *root, char *device_path)
>>>                    struct btrfs_device, dev_list);
>>>       if (device->bdev == root->fs_info->sb->s_bdev)
>>>           root->fs_info->sb->s_bdev = next_device->bdev;
>>> -    if (device->bdev == root->fs_info->fs_devices->latest_bdev)
>>> +    if (device->bdev == root->fs_info->fs_devices->latest_bdev) {
>>>           root->fs_info->fs_devices->latest_bdev = next_device->bdev;
>>> +        snprintf(root->fs_info->sb->s_id,
>>> +             sizeof(root->fs_info->sb->s_id), "%pg",
>>> +             next_device->bdev);
>>> +    }
>>>
>>>       if (device->bdev) {
>>>           device->fs_devices->open_devices--;
>>> @@ -2034,8 +2038,11 @@ void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
>>>                    struct btrfs_device, dev_list);
>>>       if (tgtdev->bdev == fs_info->sb->s_bdev)
>>>           fs_info->sb->s_bdev = next_device->bdev;
>>> -    if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
>>> +    if (tgtdev->bdev == fs_info->fs_devices->latest_bdev) {
>>>           fs_info->fs_devices->latest_bdev = next_device->bdev;
>>> +        snprintf(fs_info->sb->s_id, sizeof(fs_info->sb->s_id), "%pg",
>>> +             next_device->bdev);
>>> +    }
>>>       list_del_rcu(&tgtdev->dev_list);
>>>
>>>       call_rcu(&tgtdev->rcu, free_device);
>>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Kai Krakow April 6, 2016, 7:26 a.m. UTC | #4
Am Tue, 5 Apr 2016 17:52:40 +0900
schrieb Tsutomu Itoh <t-itoh@jp.fujitsu.com>:

> On 2016/04/05 16:56, Anand Jain wrote:
> > On 04/05/2016 08:08 AM, Tsutomu Itoh wrote:  
> >> When fs_devices->latest_bdev is deleted or is replaced, sb->s_id
> >> has not been updated.
> >> As a result, the deleted device name is displayed by btrfs_printk.
> >>
> >> [before fix]
> >>   # btrfs dev del /dev/sdc4 /mnt2
> >>   # btrfs dev add /dev/sdb6 /mnt2
> >>
> >>   [  217.458249] BTRFS info (device sdc4): found 1 extents
> >>   [  217.695798] BTRFS info (device sdc4): disk deleted /dev/sdc4
> >>   [  217.941284] BTRFS info (device sdc4): disk added /dev/sdb6
> >>
> >> [after fix]
> >>   # btrfs dev del /dev/sdc4 /mnt2
> >>   # btrfs dev add /dev/sdb6 /mnt2
> >>
> >>   [   83.835072] BTRFS info (device sdc4): found 1 extents
> >>   [   84.080617] BTRFS info (device sdc3): disk deleted /dev/sdc4
> >>   [   84.401951] BTRFS info (device sdc3): disk added /dev/sdb6  
> >
> >
> >   [PATCH 05/13] Btrfs: fix fs logging for multi device
> >
> >   any comments ?
> >
> >   We would want to maintain the logging prefix as constant, so that
> >   troubleshooters with filters/scripts will find it helpful.  
> 
> I think it is good to make the identifier constant for the
> troubleshooting. However, fsid(uuid) is a little long for the print
> purpose, I think. (But an appropriate value isn't found...)

How about setting this to a CRC16 of the fsid(uuid)?

Or a value which is increased at every new mount, then logging which
devices belong to this value if the devices change?

Like:

BTRFS info: pool id 1 has (/dev/sdc4, /dev/sdb6)
BTRFS info (pool 1): found 1 extents
...
 
I think the way btrfs magically assigns any member device to the pool
somehow feels uncomfortable anyways. Btrfs better should expose the
compound devices as single device nodes like maybe /dev/btrfs/pool0
etc.

Every time I boot my multi-device btrfs, according to mount, the
associated device changes (sometimes mount says /dev/sda1 is mounted,
the next time it's /dev/sdb1). This is not deterministic - and that is
almost always bad some way or another.
diff mbox

Patch

diff --git a/fs/btrfs/dev-replace.c b/fs/btrfs/dev-replace.c
index a1d6652..11c4198 100644
--- a/fs/btrfs/dev-replace.c
+++ b/fs/btrfs/dev-replace.c
@@ -560,8 +560,11 @@  static int btrfs_dev_replace_finishing(struct btrfs_fs_info *fs_info,
 	tgt_device->commit_bytes_used = src_device->bytes_used;
 	if (fs_info->sb->s_bdev == src_device->bdev)
 		fs_info->sb->s_bdev = tgt_device->bdev;
-	if (fs_info->fs_devices->latest_bdev == src_device->bdev)
+	if (fs_info->fs_devices->latest_bdev == src_device->bdev) {
 		fs_info->fs_devices->latest_bdev = tgt_device->bdev;
+		snprintf(fs_info->sb->s_id, sizeof(fs_info->sb->s_id), "%pg",
+			 tgt_device->bdev);
+	}
 	list_add(&tgt_device->dev_alloc_list, &fs_info->fs_devices->alloc_list);
 	fs_info->fs_devices->rw_devices++;
 
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index e2b54d5..a471385 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -1846,8 +1846,12 @@  int btrfs_rm_device(struct btrfs_root *root, char *device_path)
 				 struct btrfs_device, dev_list);
 	if (device->bdev == root->fs_info->sb->s_bdev)
 		root->fs_info->sb->s_bdev = next_device->bdev;
-	if (device->bdev == root->fs_info->fs_devices->latest_bdev)
+	if (device->bdev == root->fs_info->fs_devices->latest_bdev) {
 		root->fs_info->fs_devices->latest_bdev = next_device->bdev;
+		snprintf(root->fs_info->sb->s_id,
+			 sizeof(root->fs_info->sb->s_id), "%pg",
+			 next_device->bdev);
+	}
 
 	if (device->bdev) {
 		device->fs_devices->open_devices--;
@@ -2034,8 +2038,11 @@  void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
 				 struct btrfs_device, dev_list);
 	if (tgtdev->bdev == fs_info->sb->s_bdev)
 		fs_info->sb->s_bdev = next_device->bdev;
-	if (tgtdev->bdev == fs_info->fs_devices->latest_bdev)
+	if (tgtdev->bdev == fs_info->fs_devices->latest_bdev) {
 		fs_info->fs_devices->latest_bdev = next_device->bdev;
+		snprintf(fs_info->sb->s_id, sizeof(fs_info->sb->s_id), "%pg",
+			 next_device->bdev);
+	}
 	list_del_rcu(&tgtdev->dev_list);
 
 	call_rcu(&tgtdev->rcu, free_device);