All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn
@ 2015-11-15 11:48 Geert Uytterhoeven
  2015-11-17 15:01 ` Ewan Milne
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Geert Uytterhoeven @ 2015-11-15 11:48 UTC (permalink / raw)
  To: Kai Mäkisara, James E.J. Bottomley
  Cc: linux-scsi, linux-kernel, Geert Uytterhoeven

Its last user was removed 10 years ago, in commit
8b05b773b6030de5 ("[SCSI] convert st to use scsi_execute_async").

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
 drivers/scsi/st.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/scsi/st.h b/drivers/scsi/st.h
index b6486b5d86811227..8c732c8de0153eb1 100644
--- a/drivers/scsi/st.h
+++ b/drivers/scsi/st.h
@@ -148,8 +148,6 @@ struct scsi_tape {
 	int tape_type;
 	int long_timeout;	/* timeout for commands known to take long time */
 
-	unsigned long max_pfn;	/* the maximum page number reachable by the HBA */
-
 	/* Mode characteristics */
 	struct st_modedef modes[ST_NBR_MODES];
 	int current_mode;
-- 
1.9.1


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

* Re: [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn
  2015-11-15 11:48 [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn Geert Uytterhoeven
@ 2015-11-17 15:01 ` Ewan Milne
  2015-11-17 19:59   ` "Kai Mäkisara (Kolumbus)"
  2015-11-18 17:00 ` Martin K. Petersen
  2 siblings, 0 replies; 7+ messages in thread
From: Ewan Milne @ 2015-11-17 15:01 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Kai Mäkisara, James E.J. Bottomley, linux-scsi, linux-kernel

On Sun, 2015-11-15 at 12:48 +0100, Geert Uytterhoeven wrote:
> Its last user was removed 10 years ago, in commit
> 8b05b773b6030de5 ("[SCSI] convert st to use scsi_execute_async").
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> ---
>  drivers/scsi/st.h | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/scsi/st.h b/drivers/scsi/st.h
> index b6486b5d86811227..8c732c8de0153eb1 100644
> --- a/drivers/scsi/st.h
> +++ b/drivers/scsi/st.h
> @@ -148,8 +148,6 @@ struct scsi_tape {
>  	int tape_type;
>  	int long_timeout;	/* timeout for commands known to take long time */
>  
> -	unsigned long max_pfn;	/* the maximum page number reachable by the HBA */
> -
>  	/* Mode characteristics */
>  	struct st_modedef modes[ST_NBR_MODES];
>  	int current_mode;

Reviewed-by: Ewan D. Milne <emilne@redhat.com>



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

* Re: [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn
  2015-11-15 11:48 [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn Geert Uytterhoeven
@ 2015-11-17 19:59   ` "Kai Mäkisara (Kolumbus)"
  2015-11-17 19:59   ` "Kai Mäkisara (Kolumbus)"
  2015-11-18 17:00 ` Martin K. Petersen
  2 siblings, 0 replies; 7+ messages in thread
From: "Kai Mäkisara (Kolumbus)" @ 2015-11-17 19:59 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: James E.J. Bottomley, linux-scsi, linux-kernel


> On 15.11.2015, at 13.48, Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> 
> Its last user was removed 10 years ago, in commit
> 8b05b773b6030de5 ("[SCSI] convert st to use scsi_execute_async").
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>

Acked-by: Kai Mäkisara <kai.makisara@kolumbus.fi>

Thanks,
Kai


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

* Re: [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn
@ 2015-11-17 19:59   ` "Kai Mäkisara (Kolumbus)"
  0 siblings, 0 replies; 7+ messages in thread
From: "Kai Mäkisara (Kolumbus)" @ 2015-11-17 19:59 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: James E.J. Bottomley, linux-scsi, linux-kernel


> On 15.11.2015, at 13.48, Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> 
> Its last user was removed 10 years ago, in commit
> 8b05b773b6030de5 ("[SCSI] convert st to use scsi_execute_async").
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>

Acked-by: Kai Mäkisara <kai.makisara@kolumbus.fi>

Thanks,
Kai

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn
  2015-11-15 11:48 [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn Geert Uytterhoeven
  2015-11-17 15:01 ` Ewan Milne
  2015-11-17 19:59   ` "Kai Mäkisara (Kolumbus)"
@ 2015-11-18 17:00 ` Martin K. Petersen
  2 siblings, 0 replies; 7+ messages in thread
From: Martin K. Petersen @ 2015-11-18 17:00 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Kai Mäkisara, James E.J. Bottomley, linux-scsi,
	linux-kernel, Ewan D. Milne

>>>>> "Geert" == Geert Uytterhoeven <geert@linux-m68k.org> writes:

Geert> Its last user was removed 10 years ago, in commit
Geert> 8b05b773b6030de5 ("[SCSI] convert st to use scsi_execute_async").

Applied to the 4.5 queue.

-- 
Martin K. Petersen	Oracle Linux Engineering

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

* [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn
@ 2015-11-15 11:48 ` Geert Uytterhoeven
  0 siblings, 0 replies; 7+ messages in thread
From: Geert Uytterhoeven @ 2015-11-15 11:48 UTC (permalink / raw)
  To: linux-m68k, Greg Ungerer; +Cc: linux-kernel, Geert Uytterhoeven

Its last user was removed 10 years ago, in commit
8b05b773b6030de5 ("[SCSI] convert st to use scsi_execute_async").

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
 drivers/scsi/st.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/scsi/st.h b/drivers/scsi/st.h
index b6486b5d86811227..8c732c8de0153eb1 100644
--- a/drivers/scsi/st.h
+++ b/drivers/scsi/st.h
@@ -148,8 +148,6 @@ struct scsi_tape {
 	int tape_type;
 	int long_timeout;	/* timeout for commands known to take long time */
 
-	unsigned long max_pfn;	/* the maximum page number reachable by the HBA */
-
 	/* Mode characteristics */
 	struct st_modedef modes[ST_NBR_MODES];
 	int current_mode;
-- 
1.9.1


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

* [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn
@ 2015-11-15 11:48 ` Geert Uytterhoeven
  0 siblings, 0 replies; 7+ messages in thread
From: Geert Uytterhoeven @ 2015-11-15 11:48 UTC (permalink / raw)
  To: linux-m68k, Greg Ungerer; +Cc: linux-kernel, Geert Uytterhoeven

Its last user was removed 10 years ago, in commit
8b05b773b6030de5 ("[SCSI] convert st to use scsi_execute_async").

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
 drivers/scsi/st.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/scsi/st.h b/drivers/scsi/st.h
index b6486b5d86811227..8c732c8de0153eb1 100644
--- a/drivers/scsi/st.h
+++ b/drivers/scsi/st.h
@@ -148,8 +148,6 @@ struct scsi_tape {
 	int tape_type;
 	int long_timeout;	/* timeout for commands known to take long time */
 
-	unsigned long max_pfn;	/* the maximum page number reachable by the HBA */
-
 	/* Mode characteristics */
 	struct st_modedef modes[ST_NBR_MODES];
 	int current_mode;
-- 
1.9.1

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

end of thread, other threads:[~2015-11-18 17:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-15 11:48 [PATCH] [SCSI] st: Remove obsolete scsi_tape.max_pfn Geert Uytterhoeven
2015-11-17 15:01 ` Ewan Milne
2015-11-17 19:59 ` "Kai Mäkisara (Kolumbus)"
2015-11-17 19:59   ` "Kai Mäkisara (Kolumbus)"
2015-11-18 17:00 ` Martin K. Petersen
  -- strict thread matches above, loose matches on Subject: below --
2015-11-15 11:48 Geert Uytterhoeven
2015-11-15 11:48 ` Geert Uytterhoeven

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.