Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=625fcaf97340b9409e41fcefbbd18e02e3a9e9dd
Commit:     625fcaf97340b9409e41fcefbbd18e02e3a9e9dd
Parent:     5eb03a4ab239d8769fa13df6c894d618ecae1b50
Author:     Julia Lawall <[EMAIL PROTECTED]>
AuthorDate: Wed Feb 6 01:39:23 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Wed Feb 6 10:41:16 2008 -0800

    drivers/video: add missing pci_dev_get
    
    pci_get_device does a pci_dev_get, so pci_dev_put needs to be called in an
    error case
    
    The problem was fixed using the following semantic patch.
    (http://www.emn.fr/x-info/coccinelle/)
    
    // <smpl>
    @exists@
    type T1,T2;
    identifier E;
    statement S,S1;
    expression x1,x2,x3;
    expression test;
    int ret != 0;
    @@
    
      struct pci_dev *E;
      ...
    (
      E = \(pci_get_slot\|pci_get_device\|pci_get_bus_and_slot\)(...);
      if (E == NULL) S
    |
      if ((E = \(pci_get_slot\|pci_get_device\|pci_get_bus_and_slot\)(...)) == 
NULL) S
    )
      ... when != pci_dev_put(...,(T1)E,...)
          when != if (E != NULL) { ... pci_dev_put(...,(T1)E,...); ...}
          when != x1 = (T1)E
          when != E = x3;
          when any
    (
      if (E == NULL) S1
    |
      if (test)
    +   {
    (
    +   pci_dev_put(E);
        return;
    |
    +   pci_dev_put(E);
        return ret;
    )
    +   }
    |
      if (test) {
        ... when != pci_dev_put(...,(T2)E,...)
            when != if (E != NULL) { ... pci_dev_put(...,(T2)E,...); ...}
            when != x2 = (T2)E
    (
    +   pci_dev_put(E);
        return;
    |
    +   pci_dev_put(E);
        return ret;
    )
      }
    )
    // </smpl>
    
    Signed-off-by: Julia Lawall <[EMAIL PROTECTED]>
    Cc: "David S. Miller" <[EMAIL PROTECTED]>
    Cc: "Antonino A. Daplas" <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/video/igafb.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/drivers/video/igafb.c b/drivers/video/igafb.c
index b87ea21..3a81060 100644
--- a/drivers/video/igafb.c
+++ b/drivers/video/igafb.c
@@ -400,6 +400,7 @@ int __init igafb_init(void)
         info = kzalloc(size, GFP_ATOMIC);
         if (!info) {
                 printk("igafb_init: can't alloc fb_info\n");
+                pci_dev_put(pdev);
                 return -ENOMEM;
         }
 
@@ -409,12 +410,14 @@ int __init igafb_init(void)
        if ((addr = pdev->resource[0].start) == 0) {
                 printk("igafb_init: no memory start\n");
                kfree(info);
+               pci_dev_put(pdev);
                return -ENXIO;
        }
 
        if ((info->screen_base = ioremap(addr, 1024*1024*2)) == 0) {
                 printk("igafb_init: can't remap %lx[2M]\n", addr);
                kfree(info);
+               pci_dev_put(pdev);
                return -ENXIO;
        }
 
@@ -449,6 +452,7 @@ int __init igafb_init(void)
                 printk("igafb_init: can't remap %lx[4K]\n", 
igafb_fix.mmio_start);
                iounmap((void *)info->screen_base);
                kfree(info);
+               pci_dev_put(pdev);
                return -ENXIO;
        }
 
@@ -466,6 +470,7 @@ int __init igafb_init(void)
                iounmap((void *)par->io_base);
                iounmap(info->screen_base);
                kfree(info);
+               pci_dev_put(pdev);
                return -ENOMEM;
        }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to