All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 13143] New: scsi_debug doesn't manage more than 1Tb
@ 2009-04-21 16:07 bugzilla-daemon
  2009-04-23  0:42 ` FUJITA Tomonori
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-04-21 16:07 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143

           Summary: scsi_debug doesn't manage more than 1Tb
           Product: SCSI Drivers
           Version: 2.5
          Platform: All
        OS/Version: Linux
              Tree: Mainline
            Status: NEW
          Severity: normal
          Priority: P1
         Component: Other
        AssignedTo: scsi_drivers-other@kernel-bugs.osdl.org
        ReportedBy: tvignaud@mandriva.com
        Regression: No


While debugging a partitionner software that has issues with disks bigger than
1Tb, I found out that scsi_debug doesn't manage more than 1Tb:

# modprobe scsi_debug virtual_gb=1000
# cat /proc/partitions |fgrep sdc
   8       32 1048576000 sdc
# rmmod scsi_debug
# modprobe scsi_debug virtual_gb=1100
# cat /proc/partitions |fgrep sdc
   8       32 9223372035860725760 sdc


dmesg shows that the additionnal 100Gb makes it loose sight:
sd 16:0:0:0: [sdc] 2097152000 512-byte hardware sectors: (1.07 TB/1000 GiB)
versus:
sd 15:0:0:0: [sdc] 18446744071721451520 512-byte hardware sectors: (18.4
EB/15.9 EiB)

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

* Re: [Bug 13143] New: scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
@ 2009-04-23  0:42 ` FUJITA Tomonori
  2009-04-23  2:35   ` Douglas Gilbert
  2009-04-24 11:09 ` [Bug 13143] " bugzilla-daemon
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 12+ messages in thread
From: FUJITA Tomonori @ 2009-04-23  0:42 UTC (permalink / raw)
  To: bugzilla-daemon; +Cc: linux-scsi, dgilbert

On Tue, 21 Apr 2009 16:07:08 GMT
bugzilla-daemon@bugzilla.kernel.org wrote:

> http://bugzilla.kernel.org/show_bug.cgi?id=13143
> 
>            Summary: scsi_debug doesn't manage more than 1Tb
>            Product: SCSI Drivers
>            Version: 2.5
>           Platform: All
>         OS/Version: Linux
>               Tree: Mainline
>             Status: NEW
>           Severity: normal
>           Priority: P1
>          Component: Other
>         AssignedTo: scsi_drivers-other@kernel-bugs.osdl.org
>         ReportedBy: tvignaud@mandriva.com
>         Regression: No
> 
> 
> While debugging a partitionner software that has issues with disks bigger than
> 1Tb, I found out that scsi_debug doesn't manage more than 1Tb:
> 
> # modprobe scsi_debug virtual_gb=1000
> # cat /proc/partitions |fgrep sdc
>    8       32 1048576000 sdc
> # rmmod scsi_debug
> # modprobe scsi_debug virtual_gb=1100
> # cat /proc/partitions |fgrep sdc
>    8       32 9223372035860725760 sdc
> 
> 
> dmesg shows that the additionnal 100Gb makes it loose sight:
> sd 16:0:0:0: [sdc] 2097152000 512-byte hardware sectors: (1.07 TB/1000 GiB)
> versus:
> sd 15:0:0:0: [sdc] 18446744071721451520 512-byte hardware sectors: (18.4
> EB/15.9 EiB)


=
From: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Subject: [PATCH] scsi_debug: fix virtual disk larger than 1TB 

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
---
 drivers/scsi/scsi_debug.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c
index 213123b..41a2177 100644
--- a/drivers/scsi/scsi_debug.c
+++ b/drivers/scsi/scsi_debug.c
@@ -887,7 +887,7 @@ static int resp_start_stop(struct scsi_cmnd * scp,
 static sector_t get_sdebug_capacity(void)
 {
 	if (scsi_debug_virtual_gb > 0)
-		return 2048 * 1024 * scsi_debug_virtual_gb;
+		return 2048 * 1024 * (sector_t)scsi_debug_virtual_gb;
 	else
 		return sdebug_store_sectors;
 }
-- 
1.5.6.5


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

* Re: [Bug 13143] New: scsi_debug doesn't manage more than 1Tb
  2009-04-23  0:42 ` FUJITA Tomonori
@ 2009-04-23  2:35   ` Douglas Gilbert
  0 siblings, 0 replies; 12+ messages in thread
From: Douglas Gilbert @ 2009-04-23  2:35 UTC (permalink / raw)
  To: FUJITA Tomonori; +Cc: bugzilla-daemon, linux-scsi

FUJITA Tomonori wrote:
> On Tue, 21 Apr 2009 16:07:08 GMT
> bugzilla-daemon@bugzilla.kernel.org wrote:
> 
>> http://bugzilla.kernel.org/show_bug.cgi?id=13143
>>
>>            Summary: scsi_debug doesn't manage more than 1Tb
>>            Product: SCSI Drivers
>>            Version: 2.5
>>           Platform: All
>>         OS/Version: Linux
>>               Tree: Mainline
>>             Status: NEW
>>           Severity: normal
>>           Priority: P1
>>          Component: Other
>>         AssignedTo: scsi_drivers-other@kernel-bugs.osdl.org
>>         ReportedBy: tvignaud@mandriva.com
>>         Regression: No
>>
>>
>> While debugging a partitionner software that has issues with disks bigger than
>> 1Tb, I found out that scsi_debug doesn't manage more than 1Tb:
>>
>> # modprobe scsi_debug virtual_gb=1000
>> # cat /proc/partitions |fgrep sdc
>>    8       32 1048576000 sdc
>> # rmmod scsi_debug
>> # modprobe scsi_debug virtual_gb=1100
>> # cat /proc/partitions |fgrep sdc
>>    8       32 9223372035860725760 sdc
>>
>>
>> dmesg shows that the additionnal 100Gb makes it loose sight:
>> sd 16:0:0:0: [sdc] 2097152000 512-byte hardware sectors: (1.07 TB/1000 GiB)
>> versus:
>> sd 15:0:0:0: [sdc] 18446744071721451520 512-byte hardware sectors: (18.4
>> EB/15.9 EiB)
> 
> 
> =
> From: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
> Subject: [PATCH] scsi_debug: fix virtual disk larger than 1TB 
> 
> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>

Signed-off-by: Douglas Gilbert <dgilbert@interlog.com>

Wow, a 1 TB ram disk!

> ---
>  drivers/scsi/scsi_debug.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c
> index 213123b..41a2177 100644
> --- a/drivers/scsi/scsi_debug.c
> +++ b/drivers/scsi/scsi_debug.c
> @@ -887,7 +887,7 @@ static int resp_start_stop(struct scsi_cmnd * scp,
>  static sector_t get_sdebug_capacity(void)
>  {
>  	if (scsi_debug_virtual_gb > 0)
> -		return 2048 * 1024 * scsi_debug_virtual_gb;
> +		return 2048 * 1024 * (sector_t)scsi_debug_virtual_gb;
>  	else
>  		return sdebug_store_sectors;
>  }


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

* [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
  2009-04-23  0:42 ` FUJITA Tomonori
@ 2009-04-24 11:09 ` bugzilla-daemon
  2009-04-24 18:27 ` bugzilla-daemon
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-04-24 11:09 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143


Cheng Renquan <crquan@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |crquan@gmail.com




--- Comment #1 from Cheng Renquan <crquan@gmail.com>  2009-04-24 11:07:32 ---
it seems invalid that you tested linux 2.5 ?

And could you describe it more detailed as in REPORTING-BUGS ?

I have also ITB disks and it cannot reproduce. Thanks.

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

* [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
  2009-04-23  0:42 ` FUJITA Tomonori
  2009-04-24 11:09 ` [Bug 13143] " bugzilla-daemon
@ 2009-04-24 18:27 ` bugzilla-daemon
  2009-04-25  4:43 ` bugzilla-daemon
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-04-24 18:27 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143





--- Comment #2 from Anonymous Emailer <anonymous@kernel-bugs.osdl.org>  2009-04-24 18:25:45 ---
Reply-To: dgilbert@interlog.com

FUJITA Tomonori wrote:
> On Tue, 21 Apr 2009 16:07:08 GMT
> bugzilla-daemon@bugzilla.kernel.org wrote:
> 
>> http://bugzilla.kernel.org/show_bug.cgi?id=13143
>>
>>            Summary: scsi_debug doesn't manage more than 1Tb
>>            Product: SCSI Drivers
>>            Version: 2.5
>>           Platform: All
>>         OS/Version: Linux
>>               Tree: Mainline
>>             Status: NEW
>>           Severity: normal
>>           Priority: P1
>>          Component: Other
>>         AssignedTo: scsi_drivers-other@kernel-bugs.osdl.org
>>         ReportedBy: tvignaud@mandriva.com
>>         Regression: No
>>
>>
>> While debugging a partitionner software that has issues with disks bigger than
>> 1Tb, I found out that scsi_debug doesn't manage more than 1Tb:
>>
>> # modprobe scsi_debug virtual_gb=1000
>> # cat /proc/partitions |fgrep sdc
>>    8       32 1048576000 sdc
>> # rmmod scsi_debug
>> # modprobe scsi_debug virtual_gb=1100
>> # cat /proc/partitions |fgrep sdc
>>    8       32 9223372035860725760 sdc
>>
>>
>> dmesg shows that the additionnal 100Gb makes it loose sight:
>> sd 16:0:0:0: [sdc] 2097152000 512-byte hardware sectors: (1.07 TB/1000 GiB)
>> versus:
>> sd 15:0:0:0: [sdc] 18446744071721451520 512-byte hardware sectors: (18.4
>> EB/15.9 EiB)
> 
> 
> =
> From: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
> Subject: [PATCH] scsi_debug: fix virtual disk larger than 1TB 
> 
> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>

Signed-off-by: Douglas Gilbert <dgilbert@interlog.com>

Wow, a 1 TB ram disk!

> ---
>  drivers/scsi/scsi_debug.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c
> index 213123b..41a2177 100644
> --- a/drivers/scsi/scsi_debug.c
> +++ b/drivers/scsi/scsi_debug.c
> @@ -887,7 +887,7 @@ static int resp_start_stop(struct scsi_cmnd * scp,
>  static sector_t get_sdebug_capacity(void)
>  {
>  	if (scsi_debug_virtual_gb > 0)
> -		return 2048 * 1024 * scsi_debug_virtual_gb;
> +		return 2048 * 1024 * (sector_t)scsi_debug_virtual_gb;
>  	else
>  		return sdebug_store_sectors;
>  }

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

* [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
                   ` (2 preceding siblings ...)
  2009-04-24 18:27 ` bugzilla-daemon
@ 2009-04-25  4:43 ` bugzilla-daemon
  2009-04-27 10:41 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-04-25  4:43 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143





--- Comment #3 from Anonymous Emailer <anonymous@kernel-bugs.osdl.org>  2009-04-25 04:41:58 ---
Reply-To: fujita.tomonori@lab.ntt.co.jp

On Tue, 21 Apr 2009 16:07:08 GMT
bugzilla-daemon@bugzilla.kernel.org wrote:

> http://bugzilla.kernel.org/show_bug.cgi?id=13143
> 
>            Summary: scsi_debug doesn't manage more than 1Tb
>            Product: SCSI Drivers
>            Version: 2.5
>           Platform: All
>         OS/Version: Linux
>               Tree: Mainline
>             Status: NEW
>           Severity: normal
>           Priority: P1
>          Component: Other
>         AssignedTo: scsi_drivers-other@kernel-bugs.osdl.org
>         ReportedBy: tvignaud@mandriva.com
>         Regression: No
> 
> 
> While debugging a partitionner software that has issues with disks bigger than
> 1Tb, I found out that scsi_debug doesn't manage more than 1Tb:
> 
> # modprobe scsi_debug virtual_gb=1000
> # cat /proc/partitions |fgrep sdc
>    8       32 1048576000 sdc
> # rmmod scsi_debug
> # modprobe scsi_debug virtual_gb=1100
> # cat /proc/partitions |fgrep sdc
>    8       32 9223372035860725760 sdc
> 
> 
> dmesg shows that the additionnal 100Gb makes it loose sight:
> sd 16:0:0:0: [sdc] 2097152000 512-byte hardware sectors: (1.07 TB/1000 GiB)
> versus:
> sd 15:0:0:0: [sdc] 18446744071721451520 512-byte hardware sectors: (18.4
> EB/15.9 EiB)


=
From: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Subject: [PATCH] scsi_debug: fix virtual disk larger than 1TB 

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
---
 drivers/scsi/scsi_debug.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c
index 213123b..41a2177 100644
--- a/drivers/scsi/scsi_debug.c
+++ b/drivers/scsi/scsi_debug.c
@@ -887,7 +887,7 @@ static int resp_start_stop(struct scsi_cmnd * scp,
 static sector_t get_sdebug_capacity(void)
 {
     if (scsi_debug_virtual_gb > 0)
-        return 2048 * 1024 * scsi_debug_virtual_gb;
+        return 2048 * 1024 * (sector_t)scsi_debug_virtual_gb;
     else
         return sdebug_store_sectors;
 }

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

* [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
                   ` (3 preceding siblings ...)
  2009-04-25  4:43 ` bugzilla-daemon
@ 2009-04-27 10:41 ` bugzilla-daemon
  2009-04-28  8:31   ` FUJITA Tomonori
  2009-04-27 12:59 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  8 siblings, 1 reply; 12+ messages in thread
From: bugzilla-daemon @ 2009-04-27 10:41 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143





--- Comment #4 from Thierry Vignaud <tvignaud@mandriva.com>  2009-04-27 10:39:15 ---
(In reply to comment #1)
> it seems invalid that you tested linux 2.5 ?

Version was auto filled by bugzilla. Really was 2.6.29.1

> And could you describe it more detailed as in REPORTING-BUGS ?

All needed data was provided in initial comment. And it was enough in order to
provide a fix.

> I have also ITB disks and it cannot reproduce. Thanks.

It's not about 1Tb disks but about the scsi_debug driver.

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

* [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
                   ` (4 preceding siblings ...)
  2009-04-27 10:41 ` bugzilla-daemon
@ 2009-04-27 12:59 ` bugzilla-daemon
  2009-04-28  8:33 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-04-27 12:59 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143


Alan <alan@lxorguk.ukuu.org.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |alan@lxorguk.ukuu.org.uk
     Kernel Version|                            |2.6.29.1




-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

* Re: [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-27 10:41 ` bugzilla-daemon
@ 2009-04-28  8:31   ` FUJITA Tomonori
  0 siblings, 0 replies; 12+ messages in thread
From: FUJITA Tomonori @ 2009-04-28  8:31 UTC (permalink / raw)
  To: bugzilla-daemon; +Cc: linux-scsi

On Mon, 27 Apr 2009 10:41:00 GMT
bugzilla-daemon@bugzilla.kernel.org wrote:

> http://bugzilla.kernel.org/show_bug.cgi?id=13143
> 
> 
> 
> 
> 
> --- Comment #4 from Thierry Vignaud <tvignaud@mandriva.com>  2009-04-27 10:39:15 ---
> (In reply to comment #1)
> > it seems invalid that you tested linux 2.5 ?
> 
> Version was auto filled by bugzilla. Really was 2.6.29.1
> 
> > And could you describe it more detailed as in REPORTING-BUGS ?
> 
> All needed data was provided in initial comment. And it was enough in order to
> provide a fix.

The patch is available:

http://marc.info/?l=linux-scsi&m=124063464410711&w=2


Can you confirm that it fixes the problem?

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

* [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
                   ` (5 preceding siblings ...)
  2009-04-27 12:59 ` bugzilla-daemon
@ 2009-04-28  8:33 ` bugzilla-daemon
  2009-04-29  6:33 ` bugzilla-daemon
  2009-10-06 20:51 ` bugzilla-daemon
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-04-28  8:33 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143





--- Comment #5 from Anonymous Emailer <anonymous@kernel-bugs.osdl.org>  2009-04-28 08:32:02 ---
Reply-To: fujita.tomonori@lab.ntt.co.jp

On Mon, 27 Apr 2009 10:41:00 GMT
bugzilla-daemon@bugzilla.kernel.org wrote:

> http://bugzilla.kernel.org/show_bug.cgi?id=13143
> 
> 
> 
> 
> 
> --- Comment #4 from Thierry Vignaud <tvignaud@mandriva.com>  2009-04-27 10:39:15 ---
> (In reply to comment #1)
> > it seems invalid that you tested linux 2.5 ?
> 
> Version was auto filled by bugzilla. Really was 2.6.29.1
> 
> > And could you describe it more detailed as in REPORTING-BUGS ?
> 
> All needed data was provided in initial comment. And it was enough in order to
> provide a fix.

The patch is available:

http://marc.info/?l=linux-scsi&m=124063464410711&w=2


Can you confirm that it fixes the problem?

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

* [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
                   ` (6 preceding siblings ...)
  2009-04-28  8:33 ` bugzilla-daemon
@ 2009-04-29  6:33 ` bugzilla-daemon
  2009-10-06 20:51 ` bugzilla-daemon
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-04-29  6:33 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143





--- Comment #6 from Thierry Vignaud <tvignaud@mandriva.com>  2009-04-29 06:31:39 ---
It fixes it indeed.
You can queue it for upstream :-)

    Reported-and-tested-by: Thierry Vignaud <tvignaud@mandriva.com>

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

* [Bug 13143] scsi_debug doesn't manage more than 1Tb
  2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
                   ` (7 preceding siblings ...)
  2009-04-29  6:33 ` bugzilla-daemon
@ 2009-10-06 20:51 ` bugzilla-daemon
  8 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2009-10-06 20:51 UTC (permalink / raw)
  To: linux-scsi

http://bugzilla.kernel.org/show_bug.cgi?id=13143


Thierry Vignaud <tvignaud@mandriva.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |CODE_FIX




--- Comment #7 from Thierry Vignaud <tvignaud@mandriva.com>  2009-10-06 20:51:11 ---
Fix merged upstream quite a long time ago...

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.

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

end of thread, other threads:[~2009-10-06 20:51 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-21 16:07 [Bug 13143] New: scsi_debug doesn't manage more than 1Tb bugzilla-daemon
2009-04-23  0:42 ` FUJITA Tomonori
2009-04-23  2:35   ` Douglas Gilbert
2009-04-24 11:09 ` [Bug 13143] " bugzilla-daemon
2009-04-24 18:27 ` bugzilla-daemon
2009-04-25  4:43 ` bugzilla-daemon
2009-04-27 10:41 ` bugzilla-daemon
2009-04-28  8:31   ` FUJITA Tomonori
2009-04-27 12:59 ` bugzilla-daemon
2009-04-28  8:33 ` bugzilla-daemon
2009-04-29  6:33 ` bugzilla-daemon
2009-10-06 20:51 ` bugzilla-daemon

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.