1 The gpiommc configfs context structure needs locking, as configfs
2 does not lock access between files.
4 --- a/drivers/mmc/host/gpiommc.c
5 +++ b/drivers/mmc/host/gpiommc.c
6 @@ -140,6 +140,8 @@ struct gpiommc_configfs_device {
7 struct platform_device *pdev;
8 /* The configuration */
9 struct gpiommc_platform_data pdata;
10 + /* Mutex to protect this structure */
14 #define GPIO_INVALID -1
15 @@ -230,6 +232,8 @@ static ssize_t gpiommc_config_attr_show(
19 + mutex_lock(&dev->mutex);
21 if (attr == &gpiommc_attr_DI) {
22 gpio = dev->pdata.pins.gpio_di;
23 if (gpio == GPIO_INVALID)
24 @@ -290,6 +294,8 @@ static ssize_t gpiommc_config_attr_show(
28 + mutex_unlock(&dev->mutex);
30 return err ? err : count;
33 @@ -349,6 +355,8 @@ static ssize_t gpiommc_config_attr_store
37 + mutex_lock(&dev->mutex);
39 if (attr == &gpiommc_attr_register) {
40 err = strict_strtoul(page, 10, &data);
42 @@ -474,6 +482,8 @@ static ssize_t gpiommc_config_attr_store
46 + mutex_unlock(&dev->mutex);
48 return err ? err : count;
51 @@ -510,6 +520,7 @@ static struct config_item *gpiommc_make_
55 + mutex_init(&dev->mutex);
56 config_item_init_type_name(&dev->item, name,
57 &gpiommc_dev_ci_type);