1. 04 1月, 2020 2 次提交
  2. 10 12月, 2019 1 次提交
  3. 23 11月, 2019 1 次提交
  4. 14 11月, 2019 1 次提交
  5. 07 11月, 2019 1 次提交
  6. 29 10月, 2019 1 次提交
    • B
      RDMA/srpt: Fix TPG creation · 79d81ef4
      Bart Van Assche 提交于
      Unlike the iSCSI target driver, for the SRP target driver it is sufficient
      if a single TPG can be associated with each RDMA port name. However, users
      started associating multiple TPGs with RDMA port names. Support this by
      converting the single TPG in struct srpt_port_id into a list. This patch
      fixes the following list corruption issue:
      
       list_add corruption. prev->next should be next (ffffffffc0a080c0), but was ffffa08a994ce6f0. (prev=ffffa08a994ce6f0).
       WARNING: CPU: 2 PID: 2597 at lib/list_debug.c:28 __list_add_valid+0x6a/0x70
       CPU: 2 PID: 2597 Comm: targetcli Not tainted 5.4.0-rc1.3bfa3c9602a7 #1
       RIP: 0010:__list_add_valid+0x6a/0x70
       Call Trace:
        core_tpg_register+0x116/0x200 [target_core_mod]
        srpt_make_tpg+0x3f/0x60 [ib_srpt]
        target_fabric_make_tpg+0x41/0x290 [target_core_mod]
        configfs_mkdir+0x158/0x3e0
        vfs_mkdir+0x108/0x1a0
        do_mkdirat+0x77/0xe0
        do_syscall_64+0x55/0x1d0
        entry_SYSCALL_64_after_hwframe+0x44/0xa9
      
      Link: https://lore.kernel.org/r/20191023204106.23326-1-bvanassche@acm.orgReported-by: NHonggang LI <honli@redhat.com>
      Fixes: a42d985b ("ib_srpt: Initial SRP Target merge for v3.3-rc1")
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Acked-by: NHonggang Li <honli@redhat.com>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      79d81ef4
  7. 23 10月, 2019 6 次提交
    • R
      infiniband: fix ulp/iser/iser_initiator.c kernel-doc warnings · b24da1a0
      rd.dunlab@gmail.com 提交于
      Add kernel-doc notation for missing function parameters:
      
      ../drivers/infiniband/ulp/iser/iser_initiator.c:365: warning: Function parameter or member 'conn' not described in 'iser_send_command'
      ../drivers/infiniband/ulp/iser/iser_initiator.c:365: warning: Function parameter or member 'task' not described in 'iser_send_command'
      ../drivers/infiniband/ulp/iser/iser_initiator.c:437: warning: Function parameter or member 'conn' not described in 'iser_send_data_out'
      ../drivers/infiniband/ulp/iser/iser_initiator.c:437: warning: Function parameter or member 'task' not described in 'iser_send_data_out'
      ../drivers/infiniband/ulp/iser/iser_initiator.c:437: warning: Function parameter or member 'hdr' not described in 'iser_send_data_out'
      
      Link: https://lore.kernel.org/r/20191010035240.132033937@gmail.comSigned-off-by: NRandy Dunlap <rd.dunlab@gmail.com>
      Reviewed-by: NJason Gunthorpe <jgg@mellanox.com>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      b24da1a0
    • R
      infiniband: fix ulp/iser/iser_verbs.c kernel-doc notation · 134a42a6
      rd.dunlab@gmail.com 提交于
      Various kernel-doc fixes:
      
      - fix typos
      - don't use /** for internal structs or functions
      - fix Return: kernel-doc formatting
      - add kernel-doc notation for missing function parameters
      
      ../drivers/infiniband/ulp/iser/iser_verbs.c:159: warning: Function parameter or member 'ib_conn' not described in 'iser_alloc_fmr_pool'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:159: warning: Function parameter or member 'cmds_max' not described in 'iser_alloc_fmr_pool'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:159: warning: Function parameter or member 'size' not described in 'iser_alloc_fmr_pool'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:221: warning: Function parameter or member 'ib_conn' not described in 'iser_free_fmr_pool'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:304: warning: Function parameter or member 'ib_conn' not described in 'iser_alloc_fastreg_pool'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:304: warning: Function parameter or member 'cmds_max' not described in 'iser_alloc_fastreg_pool'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:304: warning: Function parameter or member 'size' not described in 'iser_alloc_fastreg_pool'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:338: warning: Function parameter or member 'ib_conn' not described in 'iser_free_fastreg_pool'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:568: warning: Function parameter or member 'iser_conn' not described in 'iser_conn_release'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:603: warning: Function parameter or member 'iser_conn' not described in 'iser_conn_terminate'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:1040: warning: Function parameter or member 'signal' not described in 'iser_post_send'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:1040: warning: Function parameter or member 'ib_conn' not described in 'iser_post_send'
      ../drivers/infiniband/ulp/iser/iser_verbs.c:1040: warning: Function parameter or member 'tx_desc' not described in 'iser_post_send'
      
      Link: https://lore.kernel.org/r/20191010035240.070520193@gmail.comSigned-off-by: NRandy Dunlap <rd.dunlab@gmail.com>
      Reviewed-by: NJason Gunthorpe <jgg@mellanox.com>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      134a42a6
    • R
      infiniband: fix ulp/srpt/ib_srpt.h kernel-doc notation · 96f4b0b6
      rd.dunlab@gmail.com 提交于
      Fix kernel-doc warnings (typos or renames) in ib_srpt.h:
      
      ../drivers/infiniband/ulp/srpt/ib_srpt.h:419: warning: Function parameter or member 'port_guid_id' not described in 'srpt_port'
      ../drivers/infiniband/ulp/srpt/ib_srpt.h:419: warning: Function parameter or member 'port_gid_id' not described in 'srpt_port'
      
      Link: https://lore.kernel.org/r/20191010035239.950150496@gmail.comSigned-off-by: NRandy Dunlap <rd.dunlab@gmail.com>
      Reviewed-by: NJason Gunthorpe <jgg@mellanox.com>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      96f4b0b6
    • R
      infiniband: fix ulp/opa_vnic/opa_vnic_internal.h kernel-doc notation · dfa4344d
      rd.dunlab@gmail.com 提交于
      Remove kernel-doc notation on 4 structs since they are internal and
      none of the struct fields/members are described.
      This removes 45 kernel-doc warnings.
      
      Link: https://lore.kernel.org/r/20191010035239.818405496@gmail.comSigned-off-by: NRandy Dunlap <rd.dunlab@gmail.com>
      Reviewed-by: NJason Gunthorpe <jgg@mellanox.com>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      dfa4344d
    • R
      infiniband: fix ulp/iser/iscsi_iser.h kernel-doc warnings · 28f2a6ae
      rd.dunlab@gmail.com 提交于
      Fix kernel-doc warnings and typos/spellos.
      
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:254: warning: Function parameter or member 'dma_addr' not described in 'iser_tx_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:254: warning: Function parameter or member 'cqe' not described in 'iser_tx_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:254: warning: Function parameter or member 'reg_wr' not described in 'iser_tx_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:254: warning: Function parameter or member 'send_wr' not described in 'iser_tx_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:254: warning: Function parameter or member 'inv_wr' not described in 'iser_tx_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:277: warning: Function parameter or member 'cqe' not described in 'iser_rx_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:296: warning: Function parameter or member 'rsp' not described in 'iser_login_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:339: warning: Function parameter or member 'reg_mem' not described in 'iser_reg_ops'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:399: warning: Function parameter or member 'all_list' not described in 'iser_fr_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:413: warning: Function parameter or member 'all_list' not described in 'iser_fr_pool'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:439: warning: Function parameter or member 'reg_cqe' not described in 'ib_conn'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:491: warning: Function parameter or member 'snd_w_inv' not described in 'iser_conn'
      
      This leaves 2 "member not described" warnings that I don't know how to fix:
      
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:401: warning: Function parameter or member 'all_list' not described in 'iser_fr_desc'
      ../drivers/infiniband/ulp/iser/iscsi_iser.h:415: warning: Function parameter or member 'all_list' not described in 'iser_fr_pool'
      
      Link: https://lore.kernel.org/r/20191010035239.756365352@gmail.comSigned-off-by: NRandy Dunlap <rd.dunlab@gmail.com>
      Reviewed-by: NJason Gunthorpe <jgg@mellanox.com>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      28f2a6ae
    • R
      infiniband: fix ulp/iser/iscsi_iser.[hc] kernel-doc notation · df130f87
      rd.dunlab@gmail.com 提交于
      Fix struct name in kernel-doc notation to match the struct name below it.
      Fix one typo (spello).
      Fix formatting as expected for kernel-doc notation.
      Fix parameter name to match the function's parameter name to eliminate a
      kernel-doc warning.
      
      ../drivers/infiniband/ulp/iser/iscsi_iser.c:815: warning: Function parameter or member 'non_blocking' not described in 'iscsi_iser_ep_connect'
      
      Link: https://lore.kernel.org/r/20191010035239.623888112@gmail.comSigned-off-by: NRandy Dunlap <rd.dunlab@gmail.com>
      Reviewed-by: NJason Gunthorpe <jgg@mellanox.com>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      df130f87
  8. 22 10月, 2019 1 次提交
  9. 09 10月, 2019 3 次提交
  10. 05 10月, 2019 10 次提交
    • B
      RDMA/srpt: Postpone HCA removal until after configfs directory removal · 9b64f7d0
      Bart Van Assche 提交于
      A shortcoming of the SCSI target core is that it does not have an API
      for removing tpg or wwn objects. Wait until these directories have been
      removed before allowing HCA removal to finish.
      
      See also Bart Van Assche, "Re: Why using configfs as the only interface is
      wrong for a storage target", 2011-02-07
      (https://www.spinics.net/lists/linux-scsi/msg50248.html).
      
      This patch fixes the following kernel crash:
      
      ==================================================================
      BUG: KASAN: use-after-free in __configfs_open_file.isra.4+0x1a8/0x400
      Read of size 8 at addr ffff88811880b690 by task restart-lio-srp/1215
      
      CPU: 1 PID: 1215 Comm: restart-lio-srp Not tainted 5.3.0-dbg+ #3
      Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.12.0-1 04/01/2014
      Call Trace:
       dump_stack+0x86/0xca
       print_address_description+0x74/0x32d
       __kasan_report.cold.6+0x1b/0x36
       kasan_report+0x12/0x17
       __asan_load8+0x54/0x90
       __configfs_open_file.isra.4+0x1a8/0x400
       configfs_open_file+0x13/0x20
       do_dentry_open+0x2b1/0x770
       vfs_open+0x58/0x60
       path_openat+0x5fa/0x14b0
       do_filp_open+0x115/0x180
       do_sys_open+0x1d4/0x2a0
       __x64_sys_openat+0x59/0x70
       do_syscall_64+0x6b/0x2d0
       entry_SYSCALL_64_after_hwframe+0x49/0xbe
      RIP: 0033:0x7f2f2bd3fcce
      Code: 25 00 00 41 00 3d 00 00 41 00 74 48 48 8d 05 19 d7 0d 00 8b 00 85 c0 75 69 89 f2 b8 01 01 00 00 48 89 fe bf 9c ff ff ff 0f 05 <48> 3d 00 f0 ff ff 0f 87 a6 00 00 00 48 8b 4c 24 28 64 48 33 0c 25
      RSP: 002b:00007ffd155f7850 EFLAGS: 00000246 ORIG_RAX: 0000000000000101
      RAX: ffffffffffffffda RBX: 0000564609ba88e0 RCX: 00007f2f2bd3fcce
      RDX: 0000000000000241 RSI: 0000564609ba8cf0 RDI: 00000000ffffff9c
      RBP: 00007ffd155f7950 R08: 0000000000000000 R09: 0000000000000020
      R10: 00000000000001b6 R11: 0000000000000246 R12: 0000000000000000
      R13: 0000000000000003 R14: 0000000000000001 R15: 0000564609ba8cf0
      
      Allocated by task 995:
       save_stack+0x21/0x90
       __kasan_kmalloc.constprop.9+0xc7/0xd0
       kasan_kmalloc+0x9/0x10
       __kmalloc+0x153/0x370
       srpt_add_one+0x4f/0x561 [ib_srpt]
       add_client_context+0x251/0x290 [ib_core]
       ib_register_client+0x1da/0x220 [ib_core]
       iblock_get_alignment_offset_lbas+0x6b/0x100 [target_core_iblock]
       do_one_initcall+0xcd/0x43a
       do_init_module+0x103/0x380
       load_module+0x3b77/0x3eb0
       __do_sys_finit_module+0x12d/0x1b0
       __x64_sys_finit_module+0x43/0x50
       do_syscall_64+0x6b/0x2d0
       entry_SYSCALL_64_after_hwframe+0x49/0xbe
      
      Freed by task 1221:
       save_stack+0x21/0x90
       __kasan_slab_free+0x139/0x190
       kasan_slab_free+0xe/0x10
       slab_free_freelist_hook+0x67/0x1e0
       kfree+0xcb/0x2a0
       srpt_remove_one+0x596/0x670 [ib_srpt]
       remove_client_context+0x9a/0xe0 [ib_core]
       disable_device+0x106/0x1b0 [ib_core]
       __ib_unregister_device+0x5f/0xf0 [ib_core]
       ib_unregister_driver+0x11a/0x170 [ib_core]
       0xffffffffa087f666
       __x64_sys_delete_module+0x1f8/0x2c0
       do_syscall_64+0x6b/0x2d0
       entry_SYSCALL_64_after_hwframe+0x49/0xbe
      
      The buggy address belongs to the object at ffff88811880b300
       which belongs to the cache kmalloc-4k of size 4096
      The buggy address is located 912 bytes inside of
       4096-byte region [ffff88811880b300, ffff88811880c300)
      The buggy address belongs to the page:
      page:ffffea0004620200 refcount:1 mapcount:0 mapping:ffff88811ac0de00 index:0x0 compound_mapcount: 0
      flags: 0x2fff000000010200(slab|head)
      raw: 2fff000000010200 dead000000000100 dead000000000122 ffff88811ac0de00
      raw: 0000000000000000 0000000000070007 00000001ffffffff 0000000000000000
      page dumped because: kasan: bad access detected
      
      Memory state around the buggy address:
       ffff88811880b580: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
       ffff88811880b600: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
      >ffff88811880b680: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
                               ^
       ffff88811880b700: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
       ffff88811880b780: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
      ==================================================================
      
      Link: https://lore.kernel.org/r/20190930231707.48259-16-bvanassche@acm.orgSigned-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      9b64f7d0
    • B
      RDMA/srpt: Make the code for handling port identities more systematic · 3236fd61
      Bart Van Assche 提交于
      Introduce a new data structure for the information about an RDMA port
      name. This patch does not change any functionality.
      
      Link: https://lore.kernel.org/r/20190930231707.48259-15-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      3236fd61
    • B
      RDMA/srpt: Rework the code that waits until an RDMA port is no longer in use · be408e65
      Bart Van Assche 提交于
      The current implementation does not wait until srpt_release_channel()
      has finished and hence can trigger a use-after-free. Rework
      srpt_release_sport() such that it waits until srpt_release_channel()
      has finished. This patch fixes the following KASAN complaint:
      
      ==================================================================
      BUG: KASAN: use-after-free in srpt_free_ioctx.part.23+0x42/0x100 [ib_srpt]
      Read of size 8 at addr ffff888115c71100 by task kworker/4:3/807
      
      CPU: 4 PID: 807 Comm: kworker/4:3 Not tainted 5.3.0-dbg+ #1
      Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.12.0-1 04/01/2014
      Workqueue: events srpt_release_channel_work [ib_srpt]
      Call Trace:
       dump_stack+0x86/0xca
       print_address_description+0x74/0x32d
       __kasan_report.cold.6+0x1b/0x36
       kasan_report+0x12/0x17
       __asan_load8+0x54/0x90
       srpt_free_ioctx.part.23+0x42/0x100 [ib_srpt]
       srpt_free_ioctx_ring.part.24+0x50/0x80 [ib_srpt]
       srpt_release_channel_work+0x2ad/0x390 [ib_srpt]
       process_one_work+0x51a/0xa60
       worker_thread+0x67/0x5b0
       kthread+0x1dc/0x200
       ret_from_fork+0x24/0x30
      
      Allocated by task 984:
       save_stack+0x21/0x90
       __kasan_kmalloc.constprop.9+0xc7/0xd0
       kasan_kmalloc+0x9/0x10
       __kmalloc+0x153/0x370
       srpt_add_one+0x4f/0x570 [ib_srpt]
       add_client_context+0x251/0x290 [ib_core]
       ib_register_client+0x1da/0x220 [ib_core]
       iblock_get_alignment_offset_lbas+0x6b/0x100 [target_core_iblock]
       do_one_initcall+0xcd/0x43a
       do_init_module+0x103/0x380
       load_module+0x3b77/0x3eb0
       __do_sys_finit_module+0x12d/0x1b0
       __x64_sys_finit_module+0x43/0x50
       do_syscall_64+0x6b/0x2d0
       entry_SYSCALL_64_after_hwframe+0x49/0xbe
      
      Freed by task 1128:
       save_stack+0x21/0x90
       __kasan_slab_free+0x139/0x190
       kasan_slab_free+0xe/0x10
       slab_free_freelist_hook+0x67/0x1e0
       kfree+0xcb/0x2a0
       srpt_remove_one+0x569/0x5b0 [ib_srpt]
       remove_client_context+0x9a/0xe0 [ib_core]
       disable_device+0x106/0x1b0 [ib_core]
       __ib_unregister_device+0x5f/0xf0 [ib_core]
       ib_unregister_device_and_put+0x48/0x60 [ib_core]
       nldev_dellink+0x120/0x180 [ib_core]
       rdma_nl_rcv+0x287/0x480 [ib_core]
       netlink_unicast+0x2cc/0x370
       netlink_sendmsg+0x3b1/0x630
       __sys_sendto+0x1db/0x290
       __x64_sys_sendto+0x80/0xa0
       do_syscall_64+0x6b/0x2d0
       entry_SYSCALL_64_after_hwframe+0x49/0xbe
      
      The buggy address belongs to the object at ffff888115c71100
       which belongs to the cache kmalloc-4k of size 4096
      The buggy address is located 0 bytes inside of
       4096-byte region [ffff888115c71100, ffff888115c72100)
      The buggy address belongs to the page:
      page:ffffea0004571c00 refcount:1 mapcount:0 mapping:ffff88811ac0de00 index:0xffff888115c70000 compound_mapcount: 0
      flags: 0x2fff000000010200(slab|head)
      raw: 2fff000000010200 ffffea00045ac408 ffffea0004593208 ffff88811ac0de00
      raw: ffff888115c70000 0000000000070002 00000001ffffffff 0000000000000000
      page dumped because: kasan: bad access detected
      
      Memory state around the buggy address:
       ffff888115c71000: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
       ffff888115c71080: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc
      >ffff888115c71100: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
                         ^
       ffff888115c71180: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
       ffff888115c71200: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
      ==================================================================
      
      Link: https://lore.kernel.org/r/20190930231707.48259-14-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      be408e65
    • B
      RDMA/srpt: Rework the approach for closing an RDMA channel · 6eaed91c
      Bart Van Assche 提交于
      Instead of relying on a waitqueue, report when the identity of an RDMA
      channel can be reused through a completion.
      
      Link: https://lore.kernel.org/r/20190930231707.48259-13-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      6eaed91c
    • B
      RDMA/srpt: Improve a debug message · b5948cfd
      Bart Van Assche 提交于
      The ib_srpt driver uses two different identifiers while registering a
      session with the LIO core. Report both identifiers if the modified
      pr_debug() statement is enabled.
      
      Link: https://lore.kernel.org/r/20190930231707.48259-12-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      b5948cfd
    • B
      RDMA/srpt: Fix handling of iWARP logins · cbca2442
      Bart Van Assche 提交于
      The path_rec pointer is NULL set for IB and RoCE logins but not for iWARP
      logins. Hence check the path_rec pointer before dereferencing it.
      
      Link: https://lore.kernel.org/r/20190930231707.48259-11-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      cbca2442
    • B
      RDMA/srpt: Fix handling of SR-IOV and iWARP ports · 09f8a148
      Bart Van Assche 提交于
      Management datagrams (MADs) are not supported by SR-IOV VFs nor by iWARP
      ports. Support SR-IOV VFs and iWARP ports by only logging an error message
      if MAD handler registration fails.
      
      Link: https://lore.kernel.org/r/20190930231707.48259-10-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      09f8a148
    • B
      RDMA/srp: Make route resolving error messages more informative · fdbcf5c0
      Bart Van Assche 提交于
      The IPv6 scope ID is essential when setting up an iWARP connection
      between IPv6 link-local addresses. Report the scope ID in error messages.
      
      Link: https://lore.kernel.org/r/20190930231707.48259-9-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      fdbcf5c0
    • B
      RDMA/srp: Honor the max_send_sge device attribute · bf583470
      Bart Van Assche 提交于
      Instead of assuming that max_send_sge >= 3, restrict the number of scatter
      gather elements to what is supported by the RDMA adapter.
      
      Link: https://lore.kernel.org/r/20190930231707.48259-8-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      bf583470
    • B
      RDMA/srp: Remove two casts · 14673778
      Bart Van Assche 提交于
      This patch does not change any functionality.
      
      Link: https://lore.kernel.org/r/20190930231707.48259-7-bvanassche@acm.org
      Cc: Honggang LI <honli@redhat.com>
      Cc: Laurence Oberman <loberman@redhat.com>
      Signed-off-by: NBart Van Assche <bvanassche@acm.org>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      14673778
  11. 01 10月, 2019 3 次提交
  12. 14 9月, 2019 1 次提交
  13. 05 8月, 2019 1 次提交
  14. 31 7月, 2019 1 次提交
  15. 17 7月, 2019 2 次提交
  16. 05 7月, 2019 1 次提交
  17. 04 7月, 2019 1 次提交
  18. 25 6月, 2019 1 次提交
  19. 24 6月, 2019 2 次提交
    • I
      RDMA/rw: Use IB_WR_REG_MR_INTEGRITY for PI handover · e9a53e73
      Israel Rukshin 提交于
      Replace the old signature handover API with the new one. The new API
      simplifes PI handover code complexity for ULPs and improve performance.
      For RW API it will reduce the maximum number of work requests per task
      and the need of dealing with multiple MRs (and their registrations and
      invalidations) per task. All the mappings and registration of the data
      and the protection buffers is done by the LLD using a single WR and a
      special MR type (IB_MR_TYPE_INTEGRITY) for the PI handover operation.
      
      The setup of the tested benchmark (using iSER ULP):
       - 2 servers with 24 cores (1 initiator and 1 target)
       - ConnectX-4/ConnectX-5 adapters
       - 24 target sessions with 1 LUN each
       - ramdisk backstore
       - PI active
      
      Performance results running fio (24 jobs, 128 iodepth) using
      write_generate=1 and read_verify=1 (w/w.o patch):
      
      bs      IOPS(read)        IOPS(write)
      ----    ----------        ----------
      512   1243.3K/1182.3K    1725.1K/1680.2K
      4k    571233/528835      743293/748259
      32k   72388/71086        71789/93573
      
      Using write_generate=0 and read_verify=0 (w/w.o patch):
      bs      IOPS(read)        IOPS(write)
      ----    ----------        ----------
      512   1572.1K/1427.2K    1823.5K/1724.3K
      4k    921992/916194      753772/768267
      32k   75052/73960        73180/95484
      
      There is a performance degradation when writing big block sizes.
      Degradation is caused by the complexity of combining multiple
      indirections and perform RDMA READ operation from it. This will be
      fixed in the following patches by reducing the indirections if
      possible.
      Signed-off-by: NIsrael Rukshin <israelr@mellanox.com>
      Reviewed-by: NMax Gurtovoy <maxg@mellanox.com>
      Reviewed-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      e9a53e73
    • I
      RDMA/core: Rename signature qp create flag and signature device capability · c0a6cbb9
      Israel Rukshin 提交于
      Rename IB_QP_CREATE_SIGNATURE_EN to IB_QP_CREATE_INTEGRITY_EN
      and IB_DEVICE_SIGNATURE_HANDOVER to IB_DEVICE_INTEGRITY_HANDOVER.
      Signed-off-by: NIsrael Rukshin <israelr@mellanox.com>
      Reviewed-by: NMax Gurtovoy <maxg@mellanox.com>
      Reviewed-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
      c0a6cbb9