On Tue, Oct 16, 2012 at 01:31:18AM +0200, Roland Stigge wrote:
> +int gpio_block_export(struct gpio_block *block)
> +{
> +     int             status;
> +     struct device   *dev;
> +
> +     /* can't export until sysfs is available ... */
> +     if (!gpio_class.p) {
> +             pr_debug("%s: called too early!\n", __func__);
> +             return -ENOENT;
> +     }
> +
> +     mutex_lock(&sysfs_lock);
> +     dev = device_create(&gpio_class, NULL, MKDEV(0, 0), block,
> +                         block->name);
> +     if (!IS_ERR(dev))
> +             status = sysfs_create_group(&dev->kobj, &gpio_block_attr_group);
> +     else
> +             status = PTR_ERR(dev);
> +     mutex_unlock(&sysfs_lock);

You just raced with userspace telling it that the device was present,
yet the attributes are not there.  Don't do that, use the default class
attributes for the class and then the driver core will create them
automagically without needing to this "by hand" at all.

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to