Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 368635
b: refs/heads/master
c: d9d2b48
h: refs/heads/master
i:
  368633: 687e8b2
  368631: 02ac103
v: v3
  • Loading branch information
YOSHIFUJI Hideaki authored and Stefan Richter committed Mar 13, 2013
1 parent b0af84d commit 304cfb5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f2090594dd28c033e0a9a267240ffca6d5afbd84
refs/heads/master: d9d2b484e0006d51591c3b9594e9d5f73b1a8d08
7 changes: 7 additions & 0 deletions trunk/drivers/firewire/net.c
Original file line number Diff line number Diff line change
Expand Up @@ -1228,6 +1228,8 @@ static int fwnet_broadcast_start(struct fwnet_device *dev)
failed_rcv_queue:
kfree(dev->broadcast_rcv_buffer_ptrs);
dev->broadcast_rcv_buffer_ptrs = NULL;
for (u = 0; u < FWNET_ISO_PAGE_COUNT; u++)
kunmap(dev->broadcast_rcv_buffer.pages[u]);
failed_ptrs_alloc:
fw_iso_buffer_destroy(&dev->broadcast_rcv_buffer, dev->card);
failed_buffer_init:
Expand Down Expand Up @@ -1620,10 +1622,15 @@ static int fwnet_remove(struct device *_dev)

fwnet_fifo_stop(dev);
if (dev->broadcast_rcv_context) {
unsigned u;

fw_iso_context_stop(dev->broadcast_rcv_context);

kfree(dev->broadcast_rcv_buffer_ptrs);
dev->broadcast_rcv_buffer_ptrs = NULL;
for (u = 0; u < FWNET_ISO_PAGE_COUNT; u++)
kunmap(dev->broadcast_rcv_buffer.pages[u]);

fw_iso_buffer_destroy(&dev->broadcast_rcv_buffer,
dev->card);
fw_iso_context_destroy(dev->broadcast_rcv_context);
Expand Down

0 comments on commit 304cfb5

Please sign in to comment.