From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Nicholas Krause <xerofoify@gmail.com>, linux-kernel@vger.kernel.org
Cc: linux-usb@vger.kernel.org
Subject: Re: [PATCH] scatterlist.h: Change CONFIG_DEBUG_SG for ifdef statement in sg_set_bf
Date: Sun, 03 Aug 2014 16:28:31 +0400 [thread overview]
Message-ID: <53DE2AEF.6080904@cogentembedded.com> (raw)
In-Reply-To: <1407034573-14358-1-git-send-email-xerofoify@gmail.com>
Hello.
On 03-08-2014 6:56, Nicholas Krause wrote:
> This changes the ifdef statement in sg_set_bg to !CONFIG_DEBUG_SG in order
> to avoid a bug with xhci dequence/enquence functions.
dequeue/enqueue?
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> ---
> include/linux/scatterlist.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
> index adae88f..62de7b3 100644
> --- a/include/linux/scatterlist.h
> +++ b/include/linux/scatterlist.h
> @@ -111,7 +111,7 @@ static inline struct page *sg_page(struct scatterlist *sg)
> static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
> unsigned int buflen)
> {
> -#ifdef CONFIG_DEBUG_SG
> +#ifdef !CONFIG_DEBUG_SG
Didn't you mean #ifndef instead? I guess you didn't even try to build-test
this.
> BUG_ON(!virt_addr_valid(buf));
> #endif
> sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
WBR, Sergei
next prev parent reply other threads:[~2014-08-03 12:28 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-03 2:56 [PATCH] scatterlist.h: Change CONFIG_DEBUG_SG for ifdef statement in sg_set_bf Nicholas Krause
2014-08-03 3:59 ` Mateusz Guzik
2014-08-03 4:31 ` Nick Krause
2014-08-03 5:02 ` Mateusz Guzik
2014-08-03 5:18 ` Nick Krause
2014-08-03 5:27 ` Nick Krause
2014-08-03 11:48 ` Mateusz Guzik
2014-08-04 10:04 ` Hugo Mills
2014-08-03 12:28 ` Sergei Shtylyov [this message]
2014-08-03 12:51 ` New follower Stefano Martinallo
2014-08-03 17:30 ` [PATCH] scatterlist.h: Change CONFIG_DEBUG_SG for ifdef statement in sg_set_bf Nick Krause
2014-08-04 10:07 ` Hugo Mills
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=53DE2AEF.6080904@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=xerofoify@gmail.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.