public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Tim Gardner <tim.gardner@canonical.com>
To: Trond Myklebust <trond.myklebust@primarydata.com>
Cc: Linux NFS Mailing List <linux-nfs@vger.kernel.org>,
	"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
	Linux Kernel mailing list <linux-kernel@vger.kernel.org>,
	"J. Bruce Fields" <bfields@fieldses.org>,
	"David S. Miller" <davem@davemloft.net>
Subject: Re: [PATCH net-next] xprtrdma: rpcrdma_register_default_external: Silence frame size warning
Date: Fri, 18 Apr 2014 13:56:00 -0600	[thread overview]
Message-ID: <53518350.8010605@canonical.com> (raw)
In-Reply-To: <CAHQdGtQyntscf5kwgWW-v0hWvdT0djKHhibhKNRtwGrcPu-e-Q@mail.gmail.com>

On 04/18/2014 01:52 PM, Trond Myklebust wrote:
>
> On Fri, Apr 18, 2014 at 3:50 PM, Tim Gardner <tim.gardner@canonical.com
> <mailto:tim.gardner@canonical.com>> wrote:
>
>     net/sunrpc/xprtrdma/verbs.c: In function
>     'rpcrdma_register_default_external':
>     net/sunrpc/xprtrdma/verbs.c:1774:1: warning: the frame size of 1048
>     bytes is larger than 1024 bytes [-Wframe-larger-than=]
>
>     gcc version 4.8.2, x86_64-linux-gnu
>
>     Cc: Trond Myklebust <trond.myklebust@primarydata.com
>     <mailto:trond.myklebust@primarydata.com>>
>     Cc: "J. Bruce Fields" <bfields@fieldses.org
>     <mailto:bfields@fieldses.org>>
>     Cc: "David S. Miller" <davem@davemloft.net <mailto:davem@davemloft.net>>
>     Signed-off-by: Tim Gardner <tim.gardner@canonical.com
>     <mailto:tim.gardner@canonical.com>>
>     ---
>       net/sunrpc/xprtrdma/verbs.c |    8 +++++++-
>       1 file changed, 7 insertions(+), 1 deletion(-)
>
>     diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c
>     index 93726560..8130349 100644
>     --- a/net/sunrpc/xprtrdma/verbs.c
>     +++ b/net/sunrpc/xprtrdma/verbs.c
>     @@ -1736,9 +1736,13 @@ rpcrdma_register_default_external(struct
>     rpcrdma_mr_seg *seg,
>              int mem_priv = (writing ? IB_ACCESS_REMOTE_WRITE :
>                                        IB_ACCESS_REMOTE_READ);
>              struct rpcrdma_mr_seg *seg1 = seg;
>     -       struct ib_phys_buf ipb[RPCRDMA_MAX_DATA_SEGS];
>     +       struct ib_phys_buf *ipb;
>              int len, i, rc = 0;
>
>     +       ipb = kmalloc(sizeof(*ipb) * RPCRDMA_MAX_DATA_SEGS, GFP_ATOMIC);
>     +       if (!ipb)
>     +               return -ENOMEM;
>     +
>              if (*nsegs > RPCRDMA_MAX_DATA_SEGS)
>                      *nsegs = RPCRDMA_MAX_DATA_SEGS;
>              for (len = 0, i = 0; i < *nsegs;) {
>     @@ -1770,6 +1774,8 @@ rpcrdma_register_default_external(struct
>     rpcrdma_mr_seg *seg,
>                      seg1->mr_len = len;
>              }
>              *nsegs = i;
>     +
>     +       kfree(ipb);
>              return rc;
>       }
>
>     --
>     1.7.9.5
>
> What has this got to do with net-next? It is RPC related...
>
> --
>
> Trond Myklebust
>
> Linux NFS client maintainer, PrimaryData
>
> trond.myklebust@primarydata.com <mailto:trond.myklebust@primarydata.com>
>

I guess I naively thought that anything under the net directory went 
through Dave's tree.

rtg
-- 
Tim Gardner tim.gardner@canonical.com

      parent reply	other threads:[~2014-04-18 19:56 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-18 19:50 [PATCH net-next] xprtrdma: rpcrdma_register_default_external: Silence frame size warning Tim Gardner
     [not found] ` <CAHQdGtQyntscf5kwgWW-v0hWvdT0djKHhibhKNRtwGrcPu-e-Q@mail.gmail.com>
2014-04-18 19:56   ` Tim Gardner [this message]

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=53518350.8010605@canonical.com \
    --to=tim.gardner@canonical.com \
    --cc=bfields@fieldses.org \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-nfs@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=trond.myklebust@primarydata.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox