urn;
> }
>
> static void mlx4_ib_handle_catas_error(struct mlx4_ib_dev *ibdev)
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
-if (err) {
> +if (err)
>goto err_notif;
> -}
>}
>}
>
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
> +qp = kzalloc(sizeof(*qp), gfp);
>if (!qp)
>return -ENOMEM;
>qp->pri.vid = 0x;
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
MEM;
>for (i = 0; i < qp->rq.wqe_cnt; i++) {
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
> On Feb 18, 2017, at 11:10 PM, SF Markus Elfring
> wrote:
>
> From: Markus Elfring
> Date: Sat, 18 Feb 2017 16:15:20 +0100
>
> Omit an extra message for a memory allocation failure in this function.
>
> Link:
> http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Stri
_transport_port(i, dev)
>num_ports++;
>
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
GFP_KERNEL);
>if (!new_counter_index)
>goto err_counter;
>new_counter_index->index = counter_index;
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> th
GFP_KERNEL);
>if (!new_counter_index)
>goto err_counter;
>new_counter_index->index = counter_index;
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> th
sizeof(long),
> + GFP_KERNEL);
>if (!ibdev->ib_uc_qpns_bitmap)
>goto err_steer_qp_release;
>
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
t;out_mad = kmalloc(sizeof(*out_mad), GFP_KERNEL);
> -if (!in_mad || !out_mad)
> -goto out;
> +if (!out_mad) {
> +err = -ENOMEM;
> +goto free_in_mad;
> +}
>
>init_query_mad(in_mad);
>in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
> @@ -2114,8 +2141,9 @@ static int init_node_data(struct mlx4_ib_dev *dev)
>memcpy(&dev->ib_dev.node_guid, out_mad->data + 12, 8);
>
> out:
> -kfree(in_mad);
>kfree(out_mad);
> +free_in_mad:
> +kfree(in_mad);
>return err;
> }
>
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
;
>
>INIT_WORK(&ew->work, handle_port_mgmt_change_event);
> -memcpy(&ew->ib_eqe, eqe, sizeof *eqe);
> +memcpy(&ew->ib_eqe, eqe, sizeof(*eqe));
>ew->ib_dev = ibdev;
>/* need to queue only for port owner, which uses GEN_EQE */
>if (mlx4_is_master(dev))
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
quot;, port);
> +snprintf(name, sizeof(name), "mlx4_ibt%d", port);
>ctx->wq = alloc_ordered_workqueue(name, WQ_MEM_RECLAIM);
>if (!ctx->wq) {
>pr_err("Failed to create tunnelling WQ for port %d\n", port);
> @@ -2192,7 +2192,7 @@ static int mlx4_ib_alloc_demux_ctx(struct mlx4_ib_dev
> *dev,
>goto err_wq;
>}
>
> -snprintf(name, sizeof name, "mlx4_ibud%d", port);
> +snprintf(name, sizeof(name), "mlx4_ibud%d", port);
>ctx->ud_wq = alloc_ordered_workqueue(name, WQ_MEM_RECLAIM);
>if (!ctx->ud_wq) {
>pr_err("Failed to create up/down WQ for port %d\n", port);
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
else
>ret = -EINVAL;
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
> On Feb 18, 2017, at 11:28 PM, SF Markus Elfring
> wrote:
>
> From: Markus Elfring
> Date: Fri, 17 Feb 2017 22:06:24 +0100
>
> The script "checkpatch.pl" pointed information out like the following.
>
> WARNING: kfree(NULL) is safe and this check is probably not required
>
> Thus fix the af
t;
> void handle_port_mgmt_change_event(struct work_struct *work)
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
t; 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
;
>ah.ibah.device = ctx->ib_dev;
>
> --
> 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
st: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
; 2.11.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majord...@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Thanks,
Reviewed-by: Majd Dibbiny
We have message sniffer that checks for unwanted prints after each test..
Sent from my iPhone
> On Jan 28, 2017, at 8:59 AM, Dan Carpenter wrote:
>
> On Fri, Jan 27, 2017 at 07:05:52PM -0500, Doug Ledford wrote:
>>> Do you think this patch needs "Fixes:" and "Cc: stable" tags?
>>
>> It does no
> On Jan 28, 2017, at 2:47 PM, Majd Dibbiny wrote:
>
Please ignore the previous email.
It was part of an internal discussion..
> We have message sniffer that checks for unwanted prints after each test..
>
> Sent from my iPhone
>
>> On Jan 28, 2017, at 8:59 AM, Dan Car
Acked-by: Majd Dibbiny
> On Aug 26, 2016, at 8:25 AM, Christophe JAILLET
> wrote:
>
> The 2nd parameter of 'find_first_bit' is the number of bits to search.
> In this case, we are passing 'sizeof(tmp)' which is likely to be 4 or 8
> because 'tmp
24 matches
Mail list logo