From: Jens Axboe <jens.axboe@oracle.com>
To: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: torvalds@linux-foundation.org, linux-kernel@vger.kernel.org,
mingo@elte.hu, Martin Schwidefsky <schwidefsky@de.ibm.com>,
linux-s390@vger.kernel.org
Subject: Re: [PATCH 02/10] [SG] Update block layer to use sg helpers
Date: Tue, 23 Oct 2007 07:16:40 +0200 [thread overview]
Message-ID: <20071023051640.GL16425@kernel.dk> (raw)
In-Reply-To: <20071023051316.GB10055@osiris.boeblingen.de.ibm.com>
On Tue, Oct 23 2007, Heiko Carstens wrote:
> On Mon, Oct 22, 2007 at 08:10:56PM +0200, Jens Axboe wrote:
> > Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
> > ---
> > block/ll_rw_blk.c | 8 ++++++--
> > 1 files changed, 6 insertions(+), 2 deletions(-)
> >
> > diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c
> > index 8025d64..61c2e39 100644
> > --- a/block/ll_rw_blk.c
> > +++ b/block/ll_rw_blk.c
> > @@ -1354,8 +1354,9 @@ new_segment:
> > else
> > sg = sg_next(sg);
> >
> > - memset(sg, 0, sizeof(*sg));
> > - sg->page = bvec->bv_page;
> > + sg_dma_len(sg) = 0;
> > + sg_dma_address(sg) = 0;
> > + sg_set_page(sg, bvec->bv_page);
> > sg->length = nbytes;
> > sg->offset = bvec->bv_offset;
> > nsegs++;
> > @@ -1363,6 +1364,9 @@ new_segment:
> > bvprv = bvec;
> > } /* segments in rq */
> >
> > + if (sg)
> > + __sg_mark_end(sg);
> > +
> > return nsegs;
> > }
>
> Hmm.... this breaks s390:
>
> CC block/ll_rw_blk.o
> block/ll_rw_blk.c: In function 'blk_rq_map_sg':
> block/ll_rw_blk.c:1357: error: implicit declaration of function 'sg_dma_len'
> block/ll_rw_blk.c:1357: error: lvalue required as left operand of assignment
> block/ll_rw_blk.c:1358: error: implicit declaration of function 'sg_dma_address'
> block/ll_rw_blk.c:1358: error: lvalue required as left operand of assignment
> make[1]: *** [block/ll_rw_blk.o] Error 1
>
> Missing macros and no appropriate members in struct scatterlist since we
> don't have DMA. How to fix?
Just remove the two lines here, there are actually not required.
--
Jens Axboe
next prev parent reply other threads:[~2007-10-23 5:16 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1193076664-13652-1-git-send-email-jens.axboe@oracle.com>
[not found] ` <1193076664-13652-3-git-send-email-jens.axboe@oracle.com>
2007-10-23 5:13 ` [PATCH 02/10] [SG] Update block layer to use sg helpers Heiko Carstens
2007-10-23 5:16 ` Jens Axboe [this message]
2007-10-23 5:42 ` [PATCH] fix ll_rw_blk.c build on s390 Heiko Carstens
2007-10-23 5:44 ` [PATCH] net: fix xfrm build - missing scatterlist.h include Heiko Carstens
2007-10-23 7:28 ` Jens Axboe
[not found] ` <1193076664-13652-5-git-send-email-jens.axboe@oracle.com>
2007-10-23 6:28 ` [PATCH 04/10] [SG] Update drivers to use sg helpers Heiko Carstens
2007-10-23 7:14 ` Jens Axboe
2007-10-23 7:16 ` Heiko Carstens
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=20071023051640.GL16425@kernel.dk \
--to=jens.axboe@oracle.com \
--cc=heiko.carstens@de.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=schwidefsky@de.ibm.com \
--cc=torvalds@linux-foundation.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