mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
Merge tag 'firewire-updates' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394
Pull firewure updates from Stefan Richter: - fix controller removal when controller is in suspended state - fix video reception on VIA VT6306 with gstreamer, MythTV, and maybe dv4l - fix a startup issue with Agere/LSI FW643-e2 - error logging improvements and other small updates * tag 'firewire-updates' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394: firewire: ohci: dump_stack() for PHY regs read/write failures firewire: ohci: Improve bus reset error messages firewire: ohci: Alias dev_* log functions firewire: ohci: Fix 'failed to read phy reg' on FW643 rev8 firewire: ohci: fix VIA VT6306 video reception firewire: ohci: Check LPS before register access on pci removal firewire: ohci: Fix double free_irq() firewire: remove unnecessary alloc/OOM messages firewire: sbp2: replace BUG_ON by WARN_ON firewire: core: remove an always false test firewire: Remove two unneeded checks for macros
This commit is contained in:
@@ -389,10 +389,8 @@ static void queue_bus_reset_event(struct client *client)
|
||||
struct bus_reset_event *e;
|
||||
|
||||
e = kzalloc(sizeof(*e), GFP_KERNEL);
|
||||
if (e == NULL) {
|
||||
fw_notice(client->device->card, "out of memory when allocating event\n");
|
||||
if (e == NULL)
|
||||
return;
|
||||
}
|
||||
|
||||
fill_bus_reset_event(&e->reset, client);
|
||||
|
||||
@@ -693,10 +691,9 @@ static void handle_request(struct fw_card *card, struct fw_request *request,
|
||||
|
||||
r = kmalloc(sizeof(*r), GFP_ATOMIC);
|
||||
e = kmalloc(sizeof(*e), GFP_ATOMIC);
|
||||
if (r == NULL || e == NULL) {
|
||||
fw_notice(card, "out of memory when allocating event\n");
|
||||
if (r == NULL || e == NULL)
|
||||
goto failed;
|
||||
}
|
||||
|
||||
r->card = card;
|
||||
r->request = request;
|
||||
r->data = payload;
|
||||
@@ -930,10 +927,9 @@ static void iso_callback(struct fw_iso_context *context, u32 cycle,
|
||||
struct iso_interrupt_event *e;
|
||||
|
||||
e = kmalloc(sizeof(*e) + header_length, GFP_ATOMIC);
|
||||
if (e == NULL) {
|
||||
fw_notice(context->card, "out of memory when allocating event\n");
|
||||
if (e == NULL)
|
||||
return;
|
||||
}
|
||||
|
||||
e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
|
||||
e->interrupt.closure = client->iso_closure;
|
||||
e->interrupt.cycle = cycle;
|
||||
@@ -950,10 +946,9 @@ static void iso_mc_callback(struct fw_iso_context *context,
|
||||
struct iso_interrupt_mc_event *e;
|
||||
|
||||
e = kmalloc(sizeof(*e), GFP_ATOMIC);
|
||||
if (e == NULL) {
|
||||
fw_notice(context->card, "out of memory when allocating event\n");
|
||||
if (e == NULL)
|
||||
return;
|
||||
}
|
||||
|
||||
e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT_MULTICHANNEL;
|
||||
e->interrupt.closure = client->iso_closure;
|
||||
e->interrupt.completed = fw_iso_buffer_lookup(&client->buffer,
|
||||
@@ -1366,8 +1361,7 @@ static int init_iso_resource(struct client *client,
|
||||
int ret;
|
||||
|
||||
if ((request->channels == 0 && request->bandwidth == 0) ||
|
||||
request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL ||
|
||||
request->bandwidth < 0)
|
||||
request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL)
|
||||
return -EINVAL;
|
||||
|
||||
r = kmalloc(sizeof(*r), GFP_KERNEL);
|
||||
@@ -1582,10 +1576,9 @@ void fw_cdev_handle_phy_packet(struct fw_card *card, struct fw_packet *p)
|
||||
|
||||
list_for_each_entry(client, &card->phy_receiver_list, phy_receiver_link) {
|
||||
e = kmalloc(sizeof(*e) + 8, GFP_ATOMIC);
|
||||
if (e == NULL) {
|
||||
fw_notice(card, "out of memory when allocating event\n");
|
||||
if (e == NULL)
|
||||
break;
|
||||
}
|
||||
|
||||
e->phy_packet.closure = client->phy_receiver_closure;
|
||||
e->phy_packet.type = FW_CDEV_EVENT_PHY_PACKET_RECEIVED;
|
||||
e->phy_packet.rcode = RCODE_COMPLETE;
|
||||
|
||||
@@ -692,10 +692,8 @@ static void create_units(struct fw_device *device)
|
||||
* match the drivers id_tables against it.
|
||||
*/
|
||||
unit = kzalloc(sizeof(*unit), GFP_KERNEL);
|
||||
if (unit == NULL) {
|
||||
fw_err(device->card, "out of memory for unit\n");
|
||||
if (unit == NULL)
|
||||
continue;
|
||||
}
|
||||
|
||||
unit->directory = ci.p + value - 1;
|
||||
unit->device.bus = &fw_bus_type;
|
||||
|
||||
@@ -356,10 +356,8 @@ static struct fwnet_fragment_info *fwnet_frag_new(
|
||||
}
|
||||
|
||||
new = kmalloc(sizeof(*new), GFP_ATOMIC);
|
||||
if (!new) {
|
||||
dev_err(&pd->skb->dev->dev, "out of memory\n");
|
||||
if (!new)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
new->offset = offset;
|
||||
new->len = len;
|
||||
@@ -402,8 +400,6 @@ fail_w_fi:
|
||||
fail_w_new:
|
||||
kfree(new);
|
||||
fail:
|
||||
dev_err(&net->dev, "out of memory\n");
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -609,7 +605,6 @@ static int fwnet_incoming_packet(struct fwnet_device *dev, __be32 *buf, int len,
|
||||
|
||||
skb = dev_alloc_skb(len + LL_RESERVED_SPACE(net));
|
||||
if (unlikely(!skb)) {
|
||||
dev_err(&net->dev, "out of memory\n");
|
||||
net->stats.rx_dropped++;
|
||||
|
||||
return -ENOMEM;
|
||||
|
||||
+151
-119
File diff suppressed because it is too large
Load Diff
@@ -1144,8 +1144,8 @@ static int sbp2_probe(struct device *dev)
|
||||
return -ENODEV;
|
||||
|
||||
if (dma_get_max_seg_size(device->card->device) > SBP2_MAX_SEG_SIZE)
|
||||
BUG_ON(dma_set_max_seg_size(device->card->device,
|
||||
SBP2_MAX_SEG_SIZE));
|
||||
WARN_ON(dma_set_max_seg_size(device->card->device,
|
||||
SBP2_MAX_SEG_SIZE));
|
||||
|
||||
shost = scsi_host_alloc(&scsi_driver_template, sizeof(*tgt));
|
||||
if (shost == NULL)
|
||||
@@ -1475,10 +1475,8 @@ static int sbp2_scsi_queuecommand(struct Scsi_Host *shost,
|
||||
}
|
||||
|
||||
orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
|
||||
if (orb == NULL) {
|
||||
dev_notice(lu_dev(lu), "failed to alloc ORB\n");
|
||||
if (orb == NULL)
|
||||
return SCSI_MLQUEUE_HOST_BUSY;
|
||||
}
|
||||
|
||||
/* Initialize rcode to something not RCODE_COMPLETE. */
|
||||
orb->base.rcode = -1;
|
||||
@@ -1636,9 +1634,7 @@ MODULE_LICENSE("GPL");
|
||||
MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
|
||||
|
||||
/* Provide a module alias so root-on-sbp2 initrds don't break. */
|
||||
#ifndef CONFIG_IEEE1394_SBP2_MODULE
|
||||
MODULE_ALIAS("sbp2");
|
||||
#endif
|
||||
|
||||
static int __init sbp2_init(void)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user