linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Leon Romanovsky <leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
To: Jason Gunthorpe
	<jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
Cc: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>,
	Sean Hefty <sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Subject: Re: [PATCH rdma-core 0/8] More warning fixing
Date: Sat, 15 Oct 2016 12:46:59 +0300	[thread overview]
Message-ID: <20161015094659.GA25013@leon.nu> (raw)
In-Reply-To: <1476483257-16308-1-git-send-email-jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 2990 bytes --]

On Fri, Oct 14, 2016 at 04:14:09PM -0600, Jason Gunthorpe wrote:
> This batch is on top of the series from Christoph Hellwig, it turns on a few
> more useful gcc warnings and fixes the fall out.
>
> Whole batch is here now: https://github.com/linux-rdma/rdma-core/pull/19

Thanks, applied whole batch.

>
> Jason Gunthorpe (8):
>   rdmacm: constify rdma_getaddrinfo public function
>   Enable -Wwrite-strings
>   verbs: Use cmake to detect if net/if.h vs netling/route/link.h is
>     broken
>   Enable -Wredundant-decls
>   acm: Fix wrong format attributes for error
>   acm: Fix format string usage with acm_log
>   Enable -Wformat=2
>   Enable -Wshadow
>
>  CMakeLists.txt                      | 55 ++++++++++++++++++++++++++++++++
>  buildlib/config.h.in                |  2 ++
>  ibacm/include/infiniband/acm_prov.h |  7 +++--
>  ibacm/prov/acmp/src/acmp.c          | 38 ++++++++++++-----------
>  ibacm/src/acm.c                     | 25 ++++++++-------
>  ibacm/src/acm_util.h                |  6 ++--
>  ibacm/src/acme.c                    |  8 ++---
>  ibacm/src/parse.c                   |  2 +-
>  iwpmd/iwarp_pm.h                    |  2 +-
>  iwpmd/iwarp_pm_common.c             |  7 +++--
>  libibverbs/examples/srq_pingpong.c  |  1 -
>  libibverbs/examples/xsrq_pingpong.c |  6 ++--
>  libibverbs/neigh.c                  |  8 ++---
>  libibverbs/sysfs.c                  | 13 ++++----
>  libibverbs/verbs.h                  |  6 ++--
>  librdmacm/acm.c                     |  3 +-
>  librdmacm/addrinfo.c                | 14 +++++----
>  librdmacm/cma.h                     |  3 +-
>  librdmacm/examples/cmatose.c        |  2 +-
>  librdmacm/examples/cmtime.c         |  4 +--
>  librdmacm/examples/common.c         |  2 +-
>  librdmacm/examples/common.h         |  2 +-
>  librdmacm/examples/rcopy.c          |  2 +-
>  librdmacm/examples/rdma_client.c    |  4 +--
>  librdmacm/examples/rdma_server.c    |  2 +-
>  librdmacm/examples/rdma_xclient.c   |  2 +-
>  librdmacm/examples/rdma_xserver.c   |  2 +-
>  librdmacm/examples/riostream.c      | 36 ++++++++++-----------
>  librdmacm/examples/rping.c          |  2 +-
>  librdmacm/examples/rstream.c        | 52 +++++++++++++++----------------
>  librdmacm/examples/udaddy.c         |  2 +-
>  librdmacm/examples/udpong.c         | 62 ++++++++++++++++++-------------------
>  librdmacm/man/rdma_getaddrinfo.3    |  6 ++--
>  librdmacm/preload.c                 |  2 --
>  librdmacm/rdma_cma.h                |  4 +--
>  providers/mlx4/mlx4.h               |  6 ----
>  providers/mthca/cq.c                |  2 +-
>  srp_daemon/srp_daemon.c             | 29 ++++++++++-------
>  srp_daemon/srp_daemon.h             |  2 +-
>  39 files changed, 247 insertions(+), 186 deletions(-)
>
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

      parent reply	other threads:[~2016-10-15  9:46 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-14 22:14 [PATCH rdma-core 0/8] More warning fixing Jason Gunthorpe
     [not found] ` <1476483257-16308-1-git-send-email-jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-14 22:14   ` [PATCH rdma-core 1/8] rdmacm: constify rdma_getaddrinfo public function Jason Gunthorpe
     [not found]     ` <1476483257-16308-2-git-send-email-jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-14 22:18       ` Hefty, Sean
2016-10-14 22:14   ` [PATCH rdma-core 2/8] Enable -Wwrite-strings Jason Gunthorpe
2016-10-14 22:14   ` [PATCH rdma-core 3/8] verbs: Use cmake to detect if net/if.h vs netling/route/link.h is broken Jason Gunthorpe
     [not found]     ` <1476483257-16308-4-git-send-email-jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-17 14:48       ` Steve Wise
2016-10-14 22:14   ` [PATCH rdma-core 4/8] Enable -Wredundant-decls Jason Gunthorpe
2016-10-14 22:14   ` [PATCH rdma-core 5/8] acm: Fix wrong format attributes for error Jason Gunthorpe
     [not found]     ` <1476483257-16308-6-git-send-email-jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-14 22:18       ` Hefty, Sean
2016-10-14 22:14   ` [PATCH rdma-core 6/8] acm: Fix format string usage with acm_log Jason Gunthorpe
2016-10-14 22:14   ` [PATCH rdma-core 7/8] Enable -Wformat=2 Jason Gunthorpe
2016-10-14 22:14   ` [PATCH rdma-core 8/8] Enable -Wshadow Jason Gunthorpe
     [not found]     ` <1476483257-16308-9-git-send-email-jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-14 22:50       ` Hefty, Sean
2016-10-15  9:46   ` Leon Romanovsky [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=20161015094659.GA25013@leon.nu \
    --to=leon-dgejt+ai2ygdnm+yrofe0a@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=hch-jcswGhMUV9g@public.gmane.org \
    --cc=jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.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;
as well as URLs for NNTP newsgroup(s).