#define PCI_BAR_COUNT  6
 
 #include <linux/pci.h>
+#include <linux/mutex.h>
 #include <asm-generic/pci.h>
 #include <asm-generic/pci-dma-compat.h>
 #include <asm/pci_clp.h>
        u8              pft;            /* pci function type */
        u16             domain;
 
+       struct mutex lock;
        u8 pfip[CLP_PFIP_NR_SEGMENTS];  /* pci function internal path */
        u32 uid;                        /* user defined id */
        u8 util_str[CLP_UTIL_STR_LEN];  /* utility string */
 
 
        if (!zdev)
                return 0;
-       if (!zdev->fmb)
+
+       mutex_lock(&zdev->lock);
+       if (!zdev->fmb) {
+               mutex_unlock(&zdev->lock);
                return seq_printf(m, "FMB statistics disabled\n");
+       }
 
        /* header */
        seq_printf(m, "FMB @ %p\n", zdev->fmb);
                                   pci_perf_names[i], *(stat + i));
 
        pci_sw_counter_show(m);
+       mutex_unlock(&zdev->lock);
        return 0;
 }
 
        if (rc)
                return rc;
 
+       mutex_lock(&zdev->lock);
        switch (val) {
        case 0:
                rc = zpci_fmb_disable_device(zdev);
-               if (rc)
-                       return rc;
                break;
        case 1:
                rc = zpci_fmb_enable_device(zdev);
-               if (rc)
-                       return rc;
                break;
        }
-       return count;
+       mutex_unlock(&zdev->lock);
+       return rc ? rc : count;
 }
 
 static int pci_perf_seq_open(struct inode *inode, struct file *filp)