Linux SCSI subsystem development
 help / color / mirror / Atom feed
From: Douglas Gilbert <dgilbert@interlog.com>
To: Andi Kleen <andi@firstfloor.org>
Cc: James.Bottomley@HansenPartnership.com, axboe@kernel.dk,
	linux-scsi@vger.kernel.org
Subject: Re: [PATCH] [13/21] Use blk_q_mask/get_pages_mask in sg driver
Date: Sat, 15 Nov 2008 21:11:20 -0500	[thread overview]
Message-ID: <491F8148.9000003@interlog.com> (raw)
In-Reply-To: <20081115231113.8F2AF3E6618@basil.firstfloor.org>

Andi Kleen wrote:
> Instead of using GFP_DMA directly.
> 
> Also I stubbed SG_SET_FORCE_LOW_DMA ioctls which don't make any sense
> because the kernel should always use the correct values on its own.

You propose removing a define from a public interface and thereby
might break existing code. A comment in sg.h might be appropriate.
Something that might trip:
   find <kernel_src_tree> -name '*.[hc]' -exec \
      grep SG_SET_FORCE_LOW_DMA {} \; -print

when the compiler gets upset.

Doug Gilbert


> Signed-off-by: Andi Kleen <ak@suse.de>
> Signed-off-by: Andi Kleen <andi@firstfloor.org>
> Signed-off-by: Andi Kleen <ak@linux.intel.com>
> 
> ---
>  drivers/scsi/sg.c |   36 ++++++++----------------------------
>  include/scsi/sg.h |    1 -
>  2 files changed, 8 insertions(+), 29 deletions(-)
> 
> Index: linux/drivers/scsi/sg.c
> ===================================================================
> --- linux.orig/drivers/scsi/sg.c	2008-11-15 22:37:09.000000000 +0100
> +++ linux/drivers/scsi/sg.c	2008-11-15 22:37:12.000000000 +0100
> @@ -49,6 +49,7 @@
>  #include <linux/delay.h>
>  #include <linux/blktrace_api.h>
>  #include <linux/smp_lock.h>
> +#include <linux/gfp.h>
>  
>  #include "scsi.h"
>  #include <scsi/scsi_dbg.h>
> @@ -151,7 +152,6 @@
>  	Sg_request *headrp;	/* head of request slist, NULL->empty */
>  	struct fasync_struct *async_qp;	/* used by asynchronous notification */
>  	Sg_request req_arr[SG_MAX_QUEUE];	/* used as singly-linked list */
> -	char low_dma;		/* as in parent but possibly overridden to 1 */
>  	char force_packid;	/* 1 -> pack_id input to read(), 0 -> ignored */
>  	volatile char closed;	/* 1 -> fd closed but request(s) outstanding */
>  	char cmd_q;		/* 1 -> allow command queuing, 0 -> don't */
> @@ -844,24 +844,9 @@
>  				/* strange ..., for backward compatibility */
>  		return sfp->timeout_user;
>  	case SG_SET_FORCE_LOW_DMA:
> -		result = get_user(val, ip);
> -		if (result)
> -			return result;
> -		if (val) {
> -			sfp->low_dma = 1;
> -			if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
> -				val = (int) sfp->reserve.bufflen;
> -				sg_remove_scat(&sfp->reserve);
> -				sg_build_reserve(sfp, val);
> -			}
> -		} else {
> -			if (sdp->detached)
> -				return -ENODEV;
> -			sfp->low_dma = sdp->device->host->unchecked_isa_dma;
> -		}
> -		return 0;
> +		return -EINVAL;
>  	case SG_GET_LOW_DMA:
> -		return put_user((int) sfp->low_dma, ip);
> +		return put_user(0, ip);
>  	case SG_GET_SCSI_ID:
>  		if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
>  			return -EFAULT;
> @@ -1651,7 +1636,6 @@
>  
>  	if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
>  	    dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
> -	    !sfp->parentdp->device->host->unchecked_isa_dma &&
>  	    blk_rq_aligned(q, hp->dxferp, dxfer_len))
>  		md = NULL;
>  	else
> @@ -1727,6 +1711,7 @@
>  static int
>  sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
>  {
> +	struct scsi_device *dev = sfp->parentdp->device;
>  	int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
>  	int sg_tablesize = sfp->parentdp->sg_tablesize;
>  	int blk_size = buff_size, order;
> @@ -1755,9 +1740,6 @@
>  			scatter_elem_sz_prev = num;
>  	}
>  
> -	if (sfp->low_dma)
> -		gfp_mask |= GFP_DMA;
> -
>  	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
>  		gfp_mask |= __GFP_ZERO;
>  
> @@ -1771,7 +1753,8 @@
>  		num = (rem_sz > scatter_elem_sz_prev) ?
>  			scatter_elem_sz_prev : rem_sz;
>  
> -		schp->pages[k] = alloc_pages(gfp_mask, order);
> +		schp->pages[k] = alloc_pages_mask(gfp_mask, num,
> +						  blk_q_mask(dev->request_queue));
>  		if (!schp->pages[k])
>  			goto out;
>  
> @@ -2063,8 +2046,6 @@
>  	sfp->timeout = SG_DEFAULT_TIMEOUT;
>  	sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
>  	sfp->force_packid = SG_DEF_FORCE_PACK_ID;
> -	sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
> -	    sdp->device->host->unchecked_isa_dma : 1;
>  	sfp->cmd_q = SG_DEF_COMMAND_Q;
>  	sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
>  	sfp->parentdp = sdp;
> @@ -2512,11 +2493,10 @@
>  
>  	for (k = 0; (fp = sg_get_nth_sfp(sdp, k)); ++k) {
>  		seq_printf(s, "   FD(%d): timeout=%dms bufflen=%d "
> -			   "(res)sgat=%d low_dma=%d\n", k + 1,
> +			   "(res)sgat=%d\n", k + 1,
>  			   jiffies_to_msecs(fp->timeout),
>  			   fp->reserve.bufflen,
> -			   (int) fp->reserve.k_use_sg,
> -			   (int) fp->low_dma);
> +			   (int) fp->reserve.k_use_sg);
>  		seq_printf(s, "   cmd_q=%d f_packid=%d k_orphan=%d closed=%d\n",
>  			   (int) fp->cmd_q, (int) fp->force_packid,
>  			   (int) fp->keep_orphan, (int) fp->closed);
> Index: linux/include/scsi/sg.h
> ===================================================================
> --- linux.orig/include/scsi/sg.h	2008-11-15 22:37:09.000000000 +0100
> +++ linux/include/scsi/sg.h	2008-11-15 22:37:12.000000000 +0100
> @@ -231,7 +231,6 @@
>  #define SG_DEFAULT_RETRIES 0
>  
>  /* Defaults, commented if they differ from original sg driver */
> -#define SG_DEF_FORCE_LOW_DMA 0  /* was 1 -> memory below 16MB on i386 */
>  #define SG_DEF_FORCE_PACK_ID 0
>  #define SG_DEF_KEEP_ORPHAN 0
>  #define SG_DEF_RESERVED_SIZE SG_SCATTER_SZ /* load time option */
> --
> 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
> 


  reply	other threads:[~2008-11-16  2:11 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-15 23:11 [PATCH] [0/21] Remove isa_unchecked_dma and some more GFP_DMAs in the mid layer v5 Andi Kleen
2008-11-15 23:11 ` [PATCH] [1/21] Add the alloc/get_pages_mask calls Andi Kleen
2008-11-15 23:11 ` [PATCH] [2/21] Add blk_q_mask Andi Kleen
2008-11-16 14:21   ` James Bottomley
2008-11-16 17:40     ` Theodore Tso
2008-11-16 22:19     ` Andi Kleen
2008-11-15 23:11 ` [PATCH] [3/21] Pass gfp to scsi_allocate_command Andi Kleen
2008-11-16 15:29   ` James Bottomley
2008-11-16 22:21     ` Andi Kleen
2008-11-15 23:11 ` [PATCH] [4/21] Add sense_buffer_isa to host template Andi Kleen
2008-11-15 23:11 ` [PATCH] [5/21] Remove unchecked_isa in BusLogic Andi Kleen
2008-11-16 15:46   ` James Bottomley
2008-11-16 22:31     ` Andi Kleen
2008-11-17 11:03       ` James Bottomley
2008-11-15 23:11 ` [PATCH] [6/21] Remove unchecked_isa_dma in advansys.c Andi Kleen
2008-11-16 16:56   ` James Bottomley
2008-11-16 22:33     ` Andi Kleen
2008-11-17 11:32       ` James Bottomley
2008-11-15 23:11 ` [PATCH] [7/21] Remove unchecked_isa_dma in gdth Andi Kleen
2008-11-15 23:11 ` [PATCH] [8/21] Remove unchecked_isa_dma in eata.c Andi Kleen
2008-11-15 23:11 ` [PATCH] [9/21] Remove unchecked_isa_dma in aha1542 Andi Kleen
2008-11-15 23:11 ` [PATCH] [10/21] Remove unchecked_isa_dma in aha152x/wd7000/sym53c416/u14-34f/NCR53c406a Andi Kleen
2008-11-15 23:11 ` [PATCH] [11/21] Remove GFP_DMA uses in st/osst Andi Kleen
2008-11-15 23:11 ` [PATCH] [12/21] Remove unchecked_isa_dma support for hostdata Andi Kleen
2008-11-15 23:11 ` [PATCH] [13/21] Use blk_q_mask/get_pages_mask in sg driver Andi Kleen
2008-11-16  2:11   ` Douglas Gilbert [this message]
2008-11-16 22:17     ` Andi Kleen
2008-11-17  5:11       ` FUJITA Tomonori
2008-11-17 10:22         ` Andi Kleen
2008-11-17 11:07           ` FUJITA Tomonori
2008-11-17 11:23             ` Andi Kleen
2008-11-17 11:22               ` FUJITA Tomonori
2008-11-17 11:43                 ` Andi Kleen
2008-11-17 11:47                   ` FUJITA Tomonori
2008-11-15 23:11 ` [PATCH] [14/21] Rely on block layer bouncing for ISA DMA devices scanning Andi Kleen
2008-11-15 23:11 ` [PATCH] [15/21] Don't disable direct_io for unchecked_isa_dma in st.c Andi Kleen
2008-11-15 23:11 ` [PATCH] [16/21] Remove automatic block layer bouncing for unchecked_isa_dma Andi Kleen
2008-11-15 23:11 ` [PATCH] [17/21] Remove GFP_DMA use in sr.c Andi Kleen
2008-11-15 23:11 ` [PATCH] [18/21] Remove unchecked_isa_dma from sysfs Andi Kleen
2008-11-15 23:11 ` [PATCH] [19/21] Switch to a single SCSI command pool Andi Kleen
2008-11-15 23:11 ` [PATCH] [20/21] Finally kill unchecked_isa_dma Andi Kleen
2008-11-15 23:11 ` [PATCH] [21/21] Convert DMA buffers in ch.c to allocate via the block layer Andi Kleen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=491F8148.9000003@interlog.com \
    --to=dgilbert@interlog.com \
    --cc=James.Bottomley@HansenPartnership.com \
    --cc=andi@firstfloor.org \
    --cc=axboe@kernel.dk \
    --cc=linux-scsi@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox