blob: 86778b86496ecbabbe070d44dbd5465ca338e482 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * class.c - basic device class management
3 *
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
6 * Copyright (c) 2003-2004 Greg Kroah-Hartman
7 * Copyright (c) 2003-2004 IBM Corp.
8 *
9 * This file is released under the GPLv2
10 *
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/device.h>
14#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/string.h>
17#include <linux/kdev_t.h>
gregkh@suse.dee9ba6362005-03-15 11:54:21 -080018#include <linux/err.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080019#include <linux/slab.h>
Kay Sieversedfaa7c2007-05-21 22:08:01 +020020#include <linux/genhd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "base.h"
22
23#define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080025static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr,
26 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080028 struct class_attribute *class_attr = to_class_attr(attr);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050029 struct class_private *cp = to_class(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050030 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32 if (class_attr->show)
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050033 ret = class_attr->show(cp->class, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 return ret;
35}
36
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080037static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr,
38 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080040 struct class_attribute *class_attr = to_class_attr(attr);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050041 struct class_private *cp = to_class(kobj);
Dmitry Torokhov4a0c20b2005-04-29 01:23:47 -050042 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 if (class_attr->store)
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050045 ret = class_attr->store(cp->class, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return ret;
47}
48
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080049static void class_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050051 struct class_private *cp = to_class(kobj);
52 struct class *class = cp->class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 pr_debug("class '%s': release.\n", class->name);
55
56 if (class->class_release)
57 class->class_release(class);
58 else
59 pr_debug("class '%s' does not have a release() function, "
60 "be careful\n", class->name);
61}
62
63static struct sysfs_ops class_sysfs_ops = {
64 .show = class_attr_show,
65 .store = class_attr_store,
66};
67
Greg Kroah-Hartmanadc56802007-10-11 10:47:49 -060068static struct kobj_type class_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .sysfs_ops = &class_sysfs_ops,
70 .release = class_release,
71};
72
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -070073/* Hotplug events for classes go to the class class_subsys */
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -050074static struct kset *class_kset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080077int class_create_file(struct class *cls, const struct class_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 int error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080080 if (cls)
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -070081 error = sysfs_create_file(&cls->p->class_subsys.kobj,
82 &attr->attr);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080083 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 error = -EINVAL;
85 return error;
86}
87
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080088void class_remove_file(struct class *cls, const struct class_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 if (cls)
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -070091 sysfs_remove_file(&cls->p->class_subsys.kobj, &attr->attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Greg Kroah-Hartman17407572006-05-02 16:59:59 +020094static struct class *class_get(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 if (cls)
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -070097 kset_get(&cls->p->class_subsys);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -050098 return cls;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800101static void class_put(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Greg Kroah-Hartman51d172d2005-10-27 22:25:43 -0700103 if (cls)
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700104 kset_put(&cls->p->class_subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800107static int add_class_attrs(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 int i;
110 int error = 0;
111
112 if (cls->class_attrs) {
113 for (i = 0; attr_name(cls->class_attrs[i]); i++) {
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800114 error = class_create_file(cls, &cls->class_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (error)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800116 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 }
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800119done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return error;
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800121error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 while (--i >= 0)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800123 class_remove_file(cls, &cls->class_attrs[i]);
124 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800127static void remove_class_attrs(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 int i;
130
131 if (cls->class_attrs) {
132 for (i = 0; attr_name(cls->class_attrs[i]); i++)
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800133 class_remove_file(cls, &cls->class_attrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135}
136
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800137int class_register(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500139 struct class_private *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int error;
141
142 pr_debug("device class '%s': registering\n", cls->name);
143
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500144 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
145 if (!cp)
146 return -ENOMEM;
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700147 INIT_LIST_HEAD(&cp->class_devices);
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -0700148 INIT_LIST_HEAD(&cp->class_interfaces);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500149 kset_init(&cp->class_dirs);
150 init_MUTEX(&cp->sem);
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700151 error = kobject_set_name(&cp->class_subsys.kobj, "%s", cls->name);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500152 if (error) {
153 kfree(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return error;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Dan Williamse105b8b2008-04-21 10:51:07 -0700157 /* set the default /sys/dev directory for devices of this class */
158 if (!cls->dev_kobj)
159 cls->dev_kobj = sysfs_dev_char_kobj;
160
Greg Kroah-Hartman4e886c22008-01-27 12:12:43 -0800161#if defined(CONFIG_SYSFS_DEPRECATED) && defined(CONFIG_BLOCK)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200162 /* let the block class directory show up in the root of sysfs */
163 if (cls != &block_class)
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700164 cp->class_subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200165#else
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700166 cp->class_subsys.kobj.kset = class_kset;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200167#endif
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700168 cp->class_subsys.kobj.ktype = &class_ktype;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500169 cp->class = cls;
170 cls->p = cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700172 error = kset_register(&cp->class_subsys);
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500173 if (error) {
174 kfree(cp);
175 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500177 error = add_class_attrs(class_get(cls));
178 class_put(cls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return error;
180}
181
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800182void class_unregister(struct class *cls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 pr_debug("device class '%s': unregistering\n", cls->name);
185 remove_class_attrs(cls);
Greg Kroah-Hartman1fbfee62008-05-28 09:28:39 -0700186 kset_unregister(&cls->p->class_subsys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800189static void class_create_release(struct class *cls)
190{
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800191 pr_debug("%s called for %s\n", __func__, cls->name);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800192 kfree(cls);
193}
194
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800195/**
196 * class_create - create a struct class structure
197 * @owner: pointer to the module that is to "own" this struct class
198 * @name: pointer to a string for the name of this class.
199 *
200 * This is used to create a struct class pointer that can then be used
Kay Sieversc3b19ff2008-03-12 20:47:35 +0100201 * in calls to device_create().
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800202 *
203 * Note, the pointer created here is to be destroyed when finished by
204 * making a call to class_destroy().
205 */
Miguel Ojeda Sandonisab7d7372006-09-13 15:34:05 +0200206struct class *class_create(struct module *owner, const char *name)
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800207{
208 struct class *cls;
209 int retval;
210
Jiri Slaby4aed0642005-09-13 01:25:01 -0700211 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800212 if (!cls) {
213 retval = -ENOMEM;
214 goto error;
215 }
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800216
217 cls->name = name;
218 cls->owner = owner;
219 cls->class_release = class_create_release;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800220
221 retval = class_register(cls);
222 if (retval)
223 goto error;
224
225 return cls;
226
227error:
228 kfree(cls);
229 return ERR_PTR(retval);
230}
231
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800232/**
233 * class_destroy - destroys a struct class structure
Rolf Eike Beer92a0f862006-09-29 01:59:13 -0700234 * @cls: pointer to the struct class that is to be destroyed
gregkh@suse.de2fc68442005-03-23 10:02:56 -0800235 *
236 * Note, the pointer to be destroyed must have been created with a call
237 * to class_create().
238 */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800239void class_destroy(struct class *cls)
240{
241 if ((cls == NULL) || (IS_ERR(cls)))
242 return;
243
244 class_unregister(cls);
245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Kay Sievers805fab42006-09-14 11:23:28 +0200247#ifdef CONFIG_SYSFS_DEPRECATED
248char *make_class_name(const char *name, struct kobject *kobj)
249{
250 char *class_name;
251 int size;
252
253 size = strlen(name) + strlen(kobject_name(kobj)) + 2;
254
255 class_name = kmalloc(size, GFP_KERNEL);
256 if (!class_name)
Cornelia Huckcb360bb2006-11-27 10:35:05 +0100257 return NULL;
Kay Sievers805fab42006-09-14 11:23:28 +0200258
259 strcpy(class_name, name);
260 strcat(class_name, ":");
261 strcat(class_name, kobject_name(kobj));
262 return class_name;
263}
Kay Sievers805fab42006-09-14 11:23:28 +0200264#endif
265
Dave Youngfd048972008-01-22 15:27:08 +0800266/**
267 * class_for_each_device - device iterator
268 * @class: the class we're iterating
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400269 * @start: the device to start with in the list, if any.
Dave Youngfd048972008-01-22 15:27:08 +0800270 * @data: data for the callback
271 * @fn: function to be called for each device
272 *
273 * Iterate over @class's list of devices, and call @fn for each,
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400274 * passing it @data. If @start is set, the list iteration will start
275 * there, otherwise if it is NULL, the iteration starts at the
276 * beginning of the list.
Dave Youngfd048972008-01-22 15:27:08 +0800277 *
278 * We check the return of @fn each time. If it returns anything
279 * other than 0, we break out and return that value.
280 *
281 * Note, we hold class->sem in this function, so it can not be
282 * re-acquired in @fn, otherwise it will self-deadlocking. For
283 * example, calls to add or remove class members would be verboten.
284 */
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400285int class_for_each_device(struct class *class, struct device *start,
286 void *data, int (*fn)(struct device *, void *))
Dave Youngfd048972008-01-22 15:27:08 +0800287{
288 struct device *dev;
289 int error = 0;
290
291 if (!class)
292 return -EINVAL;
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500293 down(&class->p->sem);
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700294 list_for_each_entry(dev, &class->p->class_devices, node) {
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400295 if (start) {
296 if (start == dev)
297 start = NULL;
298 continue;
299 }
Dave Youngfd048972008-01-22 15:27:08 +0800300 dev = get_device(dev);
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400301 error = fn(dev, data);
302 put_device(dev);
Dave Youngfd048972008-01-22 15:27:08 +0800303 if (error)
304 break;
305 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500306 up(&class->p->sem);
Dave Youngfd048972008-01-22 15:27:08 +0800307
308 return error;
309}
310EXPORT_SYMBOL_GPL(class_for_each_device);
311
312/**
313 * class_find_device - device iterator for locating a particular device
314 * @class: the class we're iterating
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400315 * @start: Device to begin with
Dave Youngfd048972008-01-22 15:27:08 +0800316 * @data: data for the match function
317 * @match: function to check device
318 *
319 * This is similar to the class_for_each_dev() function above, but it
320 * returns a reference to a device that is 'found' for later use, as
321 * determined by the @match callback.
322 *
323 * The callback should return 0 if the device doesn't match and non-zero
324 * if it does. If the callback returns non-zero, this function will
325 * return to the caller and not iterate over any more devices.
Randy Dunlapa63ca8f2008-01-30 11:51:08 -0800326 *
Dave Youngfd048972008-01-22 15:27:08 +0800327 * Note, you will need to drop the reference with put_device() after use.
328 *
329 * We hold class->sem in this function, so it can not be
330 * re-acquired in @match, otherwise it will self-deadlocking. For
331 * example, calls to add or remove class members would be verboten.
332 */
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400333struct device *class_find_device(struct class *class, struct device *start,
334 void *data,
335 int (*match)(struct device *, void *))
Dave Youngfd048972008-01-22 15:27:08 +0800336{
337 struct device *dev;
338 int found = 0;
339
340 if (!class)
341 return NULL;
342
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500343 down(&class->p->sem);
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700344 list_for_each_entry(dev, &class->p->class_devices, node) {
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400345 if (start) {
346 if (start == dev)
347 start = NULL;
348 continue;
349 }
Dave Youngfd048972008-01-22 15:27:08 +0800350 dev = get_device(dev);
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400351 if (match(dev, data)) {
352 found = 1;
Dave Youngfd048972008-01-22 15:27:08 +0800353 break;
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400354 } else
355 put_device(dev);
Dave Youngfd048972008-01-22 15:27:08 +0800356 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500357 up(&class->p->sem);
Dave Youngfd048972008-01-22 15:27:08 +0800358
359 return found ? dev : NULL;
360}
361EXPORT_SYMBOL_GPL(class_find_device);
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363int class_interface_register(struct class_interface *class_intf)
364{
365 struct class *parent;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200366 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (!class_intf || !class_intf->class)
369 return -ENODEV;
370
371 parent = class_get(class_intf->class);
372 if (!parent)
373 return -EINVAL;
374
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500375 down(&parent->p->sem);
Greg Kroah-Hartman184f1f72008-05-28 09:28:39 -0700376 list_add_tail(&class_intf->node, &parent->p->class_interfaces);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200377 if (class_intf->add_dev) {
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700378 list_for_each_entry(dev, &parent->p->class_devices, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200379 class_intf->add_dev(dev, class_intf);
380 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500381 up(&parent->p->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 return 0;
384}
385
386void class_interface_unregister(struct class_interface *class_intf)
387{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800388 struct class *parent = class_intf->class;
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200389 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 if (!parent)
392 return;
393
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500394 down(&parent->p->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 list_del_init(&class_intf->node);
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200396 if (class_intf->remove_dev) {
Greg Kroah-Hartman97ae69f2008-05-28 09:28:39 -0700397 list_for_each_entry(dev, &parent->p->class_devices, node)
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200398 class_intf->remove_dev(dev, class_intf);
399 }
Greg Kroah-Hartman7c714482008-01-22 18:17:41 -0500400 up(&parent->p->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 class_put(parent);
403}
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405int __init classes_init(void)
406{
Greg Kroah-Hartman443dbf92007-10-29 23:22:26 -0500407 class_kset = kset_create_and_add("class", NULL, NULL);
408 if (!class_kset)
409 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return 0;
411}
412
413EXPORT_SYMBOL_GPL(class_create_file);
414EXPORT_SYMBOL_GPL(class_remove_file);
415EXPORT_SYMBOL_GPL(class_register);
416EXPORT_SYMBOL_GPL(class_unregister);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800417EXPORT_SYMBOL_GPL(class_create);
418EXPORT_SYMBOL_GPL(class_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420EXPORT_SYMBOL_GPL(class_interface_register);
421EXPORT_SYMBOL_GPL(class_interface_unregister);