All of lore.kernel.org
 help / color / mirror / Atom feed
From: Leon Romanovsky <leon@kernel.org>
To: Bob Pearson <rpearsonhpe@gmail.com>
Cc: linux-rdma@vger.kernel.org, zyjzyj2000@gmail.com,
	Bob Pearson <rpearson@hpe.com>
Subject: Re: [PATCH v3 01/17] rdma_rxe: Added SPDX headers to rxe source files
Date: Mon, 24 Aug 2020 13:03:06 +0300	[thread overview]
Message-ID: <20200824100306.GK571722@unreal> (raw)
In-Reply-To: <20200820224638.3212-2-rpearson@hpe.com>

On Thu, Aug 20, 2020 at 05:46:22PM -0500, Bob Pearson wrote:
> Added SPDX header to all tracked .c and .h files.
>
> Signed-off-by: Bob Pearson <rpearson@hpe.com>
> ---
>  drivers/infiniband/sw/rxe/rxe.c             | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe.h             | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_av.c          | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_comp.c        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_cq.c          | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_hdr.h         | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_hw_counters.c | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_hw_counters.h | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_icrc.c        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_loc.h         | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_mcast.c       | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_mmap.c        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_mr.c          | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_net.c         | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_net.h         | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_opcode.c      | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_opcode.h      | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_param.h       | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_pool.c        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_pool.h        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_qp.c          | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_queue.c       | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_queue.h       | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_recv.c        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_req.c         | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_resp.c        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_srq.c         | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_sysfs.c       | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_task.c        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_task.h        | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_verbs.c       | 31 ++-------------------
>  drivers/infiniband/sw/rxe/rxe_verbs.h       | 31 ++-------------------
>  32 files changed, 96 insertions(+), 896 deletions(-)
>
> diff --git a/drivers/infiniband/sw/rxe/rxe.c b/drivers/infiniband/sw/rxe/rxe.c
> index 907203afbd99..6c2100c71874 100644
> --- a/drivers/infiniband/sw/rxe/rxe.c
> +++ b/drivers/infiniband/sw/rxe/rxe.c
> @@ -1,34 +1,9 @@
> +// SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
>  /*
> + * linux/drivers/infiniband/sw/rxe/rxe.c

This line is not needed.

Thanks

  reply	other threads:[~2020-08-24 10:03 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-20 22:46 [PATCH v3 00/17] Memory window support for rdma_rxe Bob Pearson
2020-08-20 22:46 ` [PATCH v3 01/17] rdma_rxe: Added SPDX headers to rxe source files Bob Pearson
2020-08-24 10:03   ` Leon Romanovsky [this message]
2020-08-20 22:46 ` [PATCH v3 02/17] rdma_rxe: Fixed style warnings Bob Pearson
2020-08-27 12:52   ` Jason Gunthorpe
2020-08-20 22:46 ` [PATCH v3 03/17] ib_user_verbs.h: Added ib_uverbs_wc_opcode Bob Pearson
2020-08-27 12:53   ` Jason Gunthorpe
2020-08-20 22:46 ` [PATCH v3 04/17] ib_verbs.h: Added missing IB_WR_BIND_MW opcode Bob Pearson
2020-08-27 12:54   ` Jason Gunthorpe
2020-08-20 22:46 ` [PATCH v3 05/17] rdma_rxe: Added bind_mw parameters to rxe_send_wr Bob Pearson
2020-08-27 12:56   ` Jason Gunthorpe
2020-08-20 22:46 ` [PATCH v3 06/17] rdma_rxe: Added stubs for alloc_mw and dealloc_mw verbs Bob Pearson
2020-08-27 12:56   ` Jason Gunthorpe
2020-08-20 22:46 ` [PATCH v3 07/17] rdma_rxe: Separated MR and MW objects Bob Pearson
2020-08-20 22:46 ` [PATCH v3 08/17] rdma_rxe: Added mw object Bob Pearson
2020-08-22  3:39   ` Zhu Yanjun
2020-08-20 22:46 ` [PATCH v3 09/17] rdma_rxe: Extended pools to support both keys and indices Bob Pearson
2020-08-20 22:46 ` [PATCH v3 10/17] rdma_rxe: Implemented functional alloc_mw and dealloc_mw APIs Bob Pearson
2020-08-20 22:46 ` [PATCH v3 11/17] rdma_rxe: Address an issue with hardened user copy Bob Pearson
2020-08-22  3:32   ` Zhu Yanjun
2020-08-22  4:16     ` Bob Pearson
2020-08-24  8:47       ` Leon Romanovsky
2020-08-24  8:52       ` Leon Romanovsky
2020-08-24 23:52         ` Bob Pearson
2020-08-25  5:04           ` Leon Romanovsky
2020-08-20 22:46 ` [PATCH v3 12/17] rdma_rxe: Added bind mw API stub Bob Pearson
2020-08-20 22:46 ` [PATCH v3 13/17] rdma_rxe: Give MR and MW objects indices and keys Bob Pearson
2020-08-20 22:46 ` [PATCH v3 14/17] rdma_rxe: Added stub for invalidate mw Bob Pearson
2020-08-20 22:46 ` [PATCH v3 15/17] rdma_rxe: Added functional bind and invalidate MW ops Bob Pearson
2020-08-20 22:46 ` [PATCH v3 16/17] rdma_rxe: Implemented read/write/atomic access to MW Bob Pearson
2020-08-20 22:46 ` [PATCH v3 17/17] rdma_rxe: minor cleanups Bob Pearson
     [not found]   ` <a153a775-9b53-3ccc-4c2a-ec76f863d1a1@gmail.com>
2020-08-22  4:05     ` Bob Pearson
2020-08-24  9:02       ` Leon Romanovsky
2020-08-27 13:00   ` Jason Gunthorpe

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=20200824100306.GK571722@unreal \
    --to=leon@kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=rpearson@hpe.com \
    --cc=rpearsonhpe@gmail.com \
    --cc=zyjzyj2000@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.