From: Andrew Morton <akpm@linux-foundation.org>
To: James Bottomley <James.Bottomley@SteelEye.com>
Cc: pj@sgi.com, willy@linux.intel.com, linux-kernel@vger.kernel.org,
andrew.vasquez@qlogic.com, linux-scsi@vger.kernel.org
Subject: Re: [PATCH] git scsi misc include fix
Date: Mon, 15 Oct 2007 16:55:04 -0700 [thread overview]
Message-ID: <20071015165504.987e9dac.akpm@linux-foundation.org> (raw)
In-Reply-To: <1192491330.14524.16.camel@localhost.localdomain>
On Mon, 15 Oct 2007 19:35:30 -0400
James Bottomley <James.Bottomley@SteelEye.com> wrote:
> On Sat, 2007-10-13 at 22:35 -0700, Paul Jackson wrote:
> > From: Paul Jackson <pj@sgi.com>
> >
> > The added line in scsi_eh.h:
> > struct scatterlist sense_sgl;
> > fails to compile, with the error:
> > field 'sense_sgl' has incomplete type
> > unless scatterlist.h happens to be included
> > somehow already ... which it isn't always.
> >
> > So include scatterlist.h in scsi_eh.h directly.
> >
> > Signed-off-by: Paul Jackson <pj@sgi.com>
> >
> > ---
> >
> > This patch goes after the patch 'git-scsi-misc.patch'
> >
> > include/scsi/scsi_eh.h | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > --- 2.6.23-mm1.orig/include/scsi/scsi_eh.h 2007-10-13 01:13:26.568876534 -0700
> > +++ 2.6.23-mm1/include/scsi/scsi_eh.h 2007-10-13 01:31:32.911855338 -0700
> > @@ -2,6 +2,7 @@
> > #define _SCSI_SCSI_EH_H
> >
> > #include <scsi/scsi_cmnd.h>
> > +#include <linux/scatterlist.h>
> > struct scsi_device;
> > struct Scsi_Host;
>
>
> I've added linux-scsi which should be cc'd on all SCSI issues.
>
> I don't quite believe this, though. The requirement for struct
> scatterlist is the same before and after the gid scsi-misc patch. If
> the compile fails with git-scsi-misc because of a missing scatterlist
> include, it should also fail with vanilla 2.6.23 without the git
> patch ... could you see if you can find out why it doesn't?
>
git-scsi-misc adds this:
struct scsi_eh_save {
int result;
enum dma_data_direction data_direction;
unsigned char cmd_len;
unsigned char cmnd[MAX_COMMAND_SIZE];
void *buffer;
unsigned bufflen;
unsigned short use_sg;
int resid;
struct scatterlist sense_sgl;
};
which will not compile unless the includer has earlier included
scatterlist.h.
next prev parent reply other threads:[~2007-10-15 23:56 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-14 5:35 [PATCH] git scsi misc include fix Paul Jackson
2007-10-15 23:35 ` James Bottomley
2007-10-15 23:55 ` Andrew Morton [this message]
2007-10-16 0:08 ` Paul Jackson
2007-10-16 1:07 ` James Bottomley
2007-10-16 1:24 ` Paul Jackson
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=20071015165504.987e9dac.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=James.Bottomley@SteelEye.com \
--cc=andrew.vasquez@qlogic.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=pj@sgi.com \
--cc=willy@linux.intel.com \
/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 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.