From: Maurizio Lombardi <mlombard@redhat.com>
To: Johannes Thumshirn <jthumshirn@suse.de>
Cc: linux-scsi@vger.kernel.org, sramars@cisco.com, jbottomley@parallels.com
Subject: Re: [PATCH V2] fnic: check pci_map_single() return value
Date: Wed, 12 Aug 2015 17:00:32 +0200 [thread overview]
Message-ID: <55CB5F90.2040806@redhat.com> (raw)
In-Reply-To: <mqdmvxwk4wl.fsf@c203.arch.suse.de>
Hi,
On 08/12/2015 03:33 PM, Johannes Thumshirn wrote:
> Hi Maurizio,
>
> Sorry but it looks like you've forgotten one change in fnic_eth_send().
Ok, I converted fnic_eth_send() to use gotos for error cleanup and sent V3.
Hopefully it'll be the final version.
Thanks for the review.
Regards,
Maurizio Lombardi
>
> Maurizio Lombardi <mlombard@redhat.com> writes:
>
>> the kernel prints some warnings when compiled with CONFIG_DMA_API_DEBUG.
>> This is because the fnic driver doesn't check the return value of
>> pci_map_single().
>>
>> [ 11.942770] scsi host12: fnic
>> }
>
> [..]
>>
>> void fnic_free_rq_buf(struct vnic_rq *rq, struct vnic_rq_buf *buf)
>> @@ -981,6 +993,7 @@ void fnic_eth_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
>> struct ethhdr *eth_hdr;
>> struct vlan_ethhdr *vlan_hdr;
>> unsigned long flags;
>> + int r;
>>
>> if (!fnic->vlan_hw_insert) {
>> eth_hdr = (struct ethhdr *)skb_mac_header(skb);
>> @@ -1003,6 +1016,13 @@ void fnic_eth_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
>>
>> pa = pci_map_single(fnic->pdev, skb->data, skb->len, PCI_DMA_TODEVICE);
>>
>> + r = pci_dma_mapping_error(fnic->pdev, pa);
>> + if (r) {
>> + printk(KERN_ERR "PCI mapping failed with error %d\n", r);
>> + kfree_skb(skb);
>> + return;
>> + }
>> +
>> spin_lock_irqsave(&fnic->wq_lock[0], flags);
>> if (!vnic_wq_desc_avail(wq)) {
>> pci_unmap_single(fnic->pdev, pa, skb->len, PCI_DMA_TODEVICE);
>> @@ -1071,6 +1091,12 @@ static int fnic_send_frame(struct fnic *fnic, struct fc_frame *fp)
>>
>> pa = pci_map_single(fnic->pdev, eth_hdr, tot_len, PCI_DMA_TODEVICE);
> [..]
>
> Otherwise:
>
> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
>
prev parent reply other threads:[~2015-08-12 15:00 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-12 13:26 [PATCH V2] fnic: check pci_map_single() return value Maurizio Lombardi
2015-08-12 13:33 ` Johannes Thumshirn
2015-08-12 15:00 ` Maurizio Lombardi [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=55CB5F90.2040806@redhat.com \
--to=mlombard@redhat.com \
--cc=jbottomley@parallels.com \
--cc=jthumshirn@suse.de \
--cc=linux-scsi@vger.kernel.org \
--cc=sramars@cisco.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 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).