Message ID | 1686679943-17117-1-git-send-email-selvin.xavier@broadcom.com (mailing list archive) |
---|---|
Headers | show |
Series | RDMA/bnxt_re: driver update for supporting low latency push | expand |
On Tue, Jun 13, 2023 at 11:12:16AM -0700, Selvin Xavier wrote: > The series aims to add support for Low latency push path in > some of the bnxt devices. The low latency implementation is > supported only for the user applications. Also, the code > is modified to use common mmap helper functions exported > by IB core. > > User library changes are in the pull request > https://github.com/linux-rdma/rdma-core/pull/1321 > > Please review and apply It gets compile warnings: ../drivers/infiniband/hw/bnxt_re/qplib_rcfw.c:322:18: warning: variable 'opcode' is uninitialized when used here [-Wuninitialized] crsqe->opcode = opcode; ^~~~~~ ../drivers/infiniband/hw/bnxt_re/qplib_rcfw.c:288:11: note: initialize the variable 'opcode' to silence this warning u8 opcode; ^ = '\0' Jason
On Wed, Jun 21, 2023 at 10:28 PM Jason Gunthorpe <jgg@nvidia.com> wrote: > > On Tue, Jun 13, 2023 at 11:12:16AM -0700, Selvin Xavier wrote: > > The series aims to add support for Low latency push path in > > some of the bnxt devices. The low latency implementation is > > supported only for the user applications. Also, the code > > is modified to use common mmap helper functions exported > > by IB core. > > > > User library changes are in the pull request > > https://github.com/linux-rdma/rdma-core/pull/1321 > > > > Please review and apply > > It gets compile warnings: > > ../drivers/infiniband/hw/bnxt_re/qplib_rcfw.c:322:18: warning: variable 'opcode' is uninitialized when used here [-Wuninitialized] > crsqe->opcode = opcode; > ^~~~~~ > ../drivers/infiniband/hw/bnxt_re/qplib_rcfw.c:288:11: note: initialize the variable 'opcode' to silence this warning > u8 opcode; > ^ > = '\0' > Hi Jason, Leon already fixed this. This was introduced by the last series that got merged. https://lore.kernel.org/r/6ad1e44be2b560986da6fdc6b68da606413e9026.1686644105.git.leonro@nvidia.com thanks, Selvin > Jason
On Wed, Jun 21, 2023 at 10:33:45PM +0530, Selvin Xavier wrote: > On Wed, Jun 21, 2023 at 10:28 PM Jason Gunthorpe <jgg@nvidia.com> wrote: > > > > On Tue, Jun 13, 2023 at 11:12:16AM -0700, Selvin Xavier wrote: > > > The series aims to add support for Low latency push path in > > > some of the bnxt devices. The low latency implementation is > > > supported only for the user applications. Also, the code > > > is modified to use common mmap helper functions exported > > > by IB core. > > > > > > User library changes are in the pull request > > > https://github.com/linux-rdma/rdma-core/pull/1321 > > > > > > Please review and apply > > > > It gets compile warnings: > > > > ../drivers/infiniband/hw/bnxt_re/qplib_rcfw.c:322:18: warning: variable 'opcode' is uninitialized when used here [-Wuninitialized] > > crsqe->opcode = opcode; > > ^~~~~~ > > ../drivers/infiniband/hw/bnxt_re/qplib_rcfw.c:288:11: note: initialize the variable 'opcode' to silence this warning > > u8 opcode; > > ^ > > = '\0' > > > Hi Jason, > Leon already fixed this. This was introduced by the last series that > got merged. > https://lore.kernel.org/r/6ad1e44be2b560986da6fdc6b68da606413e9026.1686644105.git.leonro@nvidia.com Oh, some patches got misplaced, I fixed it up.. Okay, applied to for-next Thanks, Jason
On Wed, Jun 21, 2023 at 10:42 PM Jason Gunthorpe <jgg@nvidia.com> wrote: > > On Wed, Jun 21, 2023 at 10:33:45PM +0530, Selvin Xavier wrote: > > On Wed, Jun 21, 2023 at 10:28 PM Jason Gunthorpe <jgg@nvidia.com> wrote: > > > > > > On Tue, Jun 13, 2023 at 11:12:16AM -0700, Selvin Xavier wrote: > > > > The series aims to add support for Low latency push path in > > > > some of the bnxt devices. The low latency implementation is > > > > supported only for the user applications. Also, the code > > > > is modified to use common mmap helper functions exported > > > > by IB core. > > > > > > > > User library changes are in the pull request > > > > https://github.com/linux-rdma/rdma-core/pull/1321 > > > > > > > > Please review and apply > > > > > > It gets compile warnings: > > > > > > ../drivers/infiniband/hw/bnxt_re/qplib_rcfw.c:322:18: warning: variable 'opcode' is uninitialized when used here [-Wuninitialized] > > > crsqe->opcode = opcode; > > > ^~~~~~ > > > ../drivers/infiniband/hw/bnxt_re/qplib_rcfw.c:288:11: note: initialize the variable 'opcode' to silence this warning > > > u8 opcode; > > > ^ > > > = '\0' > > > > > Hi Jason, > > Leon already fixed this. This was introduced by the last series that > > got merged. > > https://lore.kernel.org/r/6ad1e44be2b560986da6fdc6b68da606413e9026.1686644105.git.leonro@nvidia.com > > Oh, some patches got misplaced, I fixed it up.. > > Okay, applied to for-next Thank you. > > Thanks, > Jason