]> git.ipfire.org Git - thirdparty/linux.git/blame - lib/kobject.c
kobject: add kobject_add_ng function
[thirdparty/linux.git] / lib / kobject.c
CommitLineData
1da177e4
LT
1/*
2 * kobject.c - library routines for handling generic kernel objects
3 *
4 * Copyright (c) 2002-2003 Patrick Mochel <mochel@osdl.org>
f0e7e1bd
GKH
5 * Copyright (c) 2006-2007 Greg Kroah-Hartman <greg@kroah.com>
6 * Copyright (c) 2006-2007 Novell Inc.
1da177e4
LT
7 *
8 * This file is released under the GPLv2.
9 *
10 *
11 * Please see the file Documentation/kobject.txt for critical information
12 * about using the kobject interface.
13 */
14
15#include <linux/kobject.h>
16#include <linux/string.h>
17#include <linux/module.h>
18#include <linux/stat.h>
4e57b681 19#include <linux/slab.h>
1da177e4
LT
20
21/**
22 * populate_dir - populate directory with attributes.
23 * @kobj: object we're working on.
24 *
25 * Most subsystems have a set of default attributes that
26 * are associated with an object that registers with them.
27 * This is a helper called during object registration that
28 * loops through the default attributes of the subsystem
29 * and creates attributes files for them in sysfs.
30 *
31 */
32
33static int populate_dir(struct kobject * kobj)
34{
35 struct kobj_type * t = get_ktype(kobj);
36 struct attribute * attr;
37 int error = 0;
38 int i;
39
40 if (t && t->default_attrs) {
41 for (i = 0; (attr = t->default_attrs[i]) != NULL; i++) {
42 if ((error = sysfs_create_file(kobj,attr)))
43 break;
44 }
45 }
46 return error;
47}
48
90bc6135 49static int create_dir(struct kobject * kobj)
1da177e4
LT
50{
51 int error = 0;
52 if (kobject_name(kobj)) {
90bc6135 53 error = sysfs_create_dir(kobj);
1da177e4
LT
54 if (!error) {
55 if ((error = populate_dir(kobj)))
56 sysfs_remove_dir(kobj);
57 }
58 }
59 return error;
60}
61
62static inline struct kobject * to_kobj(struct list_head * entry)
63{
64 return container_of(entry,struct kobject,entry);
65}
66
67static int get_kobj_path_length(struct kobject *kobj)
68{
69 int length = 1;
70 struct kobject * parent = kobj;
71
72 /* walk up the ancestors until we hit the one pointing to the
73 * root.
74 * Add 1 to strlen for leading '/' of each level.
75 */
76 do {
b365b3da
CE
77 if (kobject_name(parent) == NULL)
78 return 0;
1da177e4
LT
79 length += strlen(kobject_name(parent)) + 1;
80 parent = parent->parent;
81 } while (parent);
82 return length;
83}
84
85static void fill_kobj_path(struct kobject *kobj, char *path, int length)
86{
87 struct kobject * parent;
88
89 --length;
90 for (parent = kobj; parent; parent = parent->parent) {
91 int cur = strlen(kobject_name(parent));
92 /* back up enough to print this name with '/' */
93 length -= cur;
94 strncpy (path + length, kobject_name(parent), cur);
95 *(path + --length) = '/';
96 }
97
98 pr_debug("%s: path = '%s'\n",__FUNCTION__,path);
99}
100
101/**
72fd4a35 102 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
1da177e4
LT
103 *
104 * @kobj: kobject in question, with which to build the path
105 * @gfp_mask: the allocation type used to allocate the path
72fd4a35
RD
106 *
107 * The result must be freed by the caller with kfree().
1da177e4 108 */
fd4f2df2 109char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
1da177e4
LT
110{
111 char *path;
112 int len;
113
114 len = get_kobj_path_length(kobj);
b365b3da
CE
115 if (len == 0)
116 return NULL;
4668edc3 117 path = kzalloc(len, gfp_mask);
1da177e4
LT
118 if (!path)
119 return NULL;
1da177e4
LT
120 fill_kobj_path(kobj, path, len);
121
122 return path;
123}
80fc9f53 124EXPORT_SYMBOL_GPL(kobject_get_path);
1da177e4
LT
125
126/**
127 * kobject_init - initialize object.
128 * @kobj: object in question.
129 */
130void kobject_init(struct kobject * kobj)
131{
31b9025a
GKH
132 if (!kobj)
133 return;
1da177e4
LT
134 kref_init(&kobj->kref);
135 INIT_LIST_HEAD(&kobj->entry);
136 kobj->kset = kset_get(kobj->kset);
137}
138
139
140/**
141 * unlink - remove kobject from kset list.
142 * @kobj: kobject.
143 *
144 * Remove the kobject from the kset list and decrement
145 * its parent's refcount.
146 * This is separated out, so we can use it in both
147 * kobject_del() and kobject_add() on error.
148 */
149
150static void unlink(struct kobject * kobj)
151{
152 if (kobj->kset) {
153 spin_lock(&kobj->kset->list_lock);
154 list_del_init(&kobj->entry);
155 spin_unlock(&kobj->kset->list_lock);
156 }
157 kobject_put(kobj);
158}
159
160/**
90bc6135 161 * kobject_add - add an object to the hierarchy.
1da177e4
LT
162 * @kobj: object.
163 */
164
90bc6135 165int kobject_add(struct kobject * kobj)
1da177e4
LT
166{
167 int error = 0;
168 struct kobject * parent;
169
170 if (!(kobj = kobject_get(kobj)))
171 return -ENOENT;
172 if (!kobj->k_name)
ce2c9cb0 173 kobject_set_name(kobj, "NO_NAME");
13507701 174 if (!*kobj->k_name) {
c171fef5
GKH
175 pr_debug("kobject attempted to be registered with no name!\n");
176 WARN_ON(1);
88db4721 177 kobject_put(kobj);
c171fef5
GKH
178 return -EINVAL;
179 }
1da177e4
LT
180 parent = kobject_get(kobj->parent);
181
182 pr_debug("kobject %s: registering. parent: %s, set: %s\n",
183 kobject_name(kobj), parent ? kobject_name(parent) : "<NULL>",
ce2c9cb0 184 kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>" );
1da177e4
LT
185
186 if (kobj->kset) {
187 spin_lock(&kobj->kset->list_lock);
188
189 if (!parent)
190 parent = kobject_get(&kobj->kset->kobj);
191
192 list_add_tail(&kobj->entry,&kobj->kset->list);
193 spin_unlock(&kobj->kset->list_lock);
460f7e9a 194 kobj->parent = parent;
1da177e4 195 }
1da177e4 196
90bc6135 197 error = create_dir(kobj);
1da177e4
LT
198 if (error) {
199 /* unlink does the kobject_put() for us */
200 unlink(kobj);
b067db49 201 kobject_put(parent);
dcd0da00
GKH
202
203 /* be noisy on error issues */
204 if (error == -EEXIST)
5c73a3fb
GKH
205 printk(KERN_ERR "kobject_add failed for %s with "
206 "-EEXIST, don't try to register things with "
207 "the same name in the same directory.\n",
dcd0da00
GKH
208 kobject_name(kobj));
209 else
5c73a3fb 210 printk(KERN_ERR "kobject_add failed for %s (%d)\n",
dcd0da00 211 kobject_name(kobj), error);
5c73a3fb 212 dump_stack();
1da177e4
LT
213 }
214
215 return error;
216}
217
1da177e4
LT
218/**
219 * kobject_register - initialize and add an object.
220 * @kobj: object in question.
221 */
222
223int kobject_register(struct kobject * kobj)
224{
dcd0da00 225 int error = -EINVAL;
1da177e4
LT
226 if (kobj) {
227 kobject_init(kobj);
228 error = kobject_add(kobj);
dcd0da00 229 if (!error)
312c004d 230 kobject_uevent(kobj, KOBJ_ADD);
dcd0da00 231 }
1da177e4
LT
232 return error;
233}
234
663a4743
GKH
235/**
236 * kobject_set_name_vargs - Set the name of an kobject
237 * @kobj: struct kobject to set the name of
238 * @fmt: format string used to build the name
239 * @vargs: vargs to format the string.
240 */
241static int kobject_set_name_vargs(struct kobject *kobj, const char *fmt,
242 va_list vargs)
243{
244 va_list aq;
245 char *name;
246
247 va_copy(aq, vargs);
248 name = kvasprintf(GFP_KERNEL, fmt, vargs);
249 va_end(aq);
250
251 if (!name)
252 return -ENOMEM;
253
254 /* Free the old name, if necessary. */
255 kfree(kobj->k_name);
256
257 /* Now, set the new name */
258 kobj->k_name = name;
259
260 return 0;
261}
1da177e4
LT
262
263/**
8c4606b1 264 * kobject_set_name - Set the name of a kobject
663a4743 265 * @kobj: struct kobject to set the name of
8c4606b1 266 * @fmt: format string used to build the name
1da177e4 267 *
8c4606b1
GKH
268 * This sets the name of the kobject. If you have already added the
269 * kobject to the system, you must call kobject_rename() in order to
270 * change the name of the kobject.
1da177e4 271 */
663a4743 272int kobject_set_name(struct kobject *kobj, const char *fmt, ...)
1da177e4 273{
1da177e4 274 va_list args;
663a4743 275 int retval;
1da177e4 276
ce2c9cb0 277 va_start(args, fmt);
663a4743 278 retval = kobject_set_name_vargs(kobj, fmt, args);
1da177e4 279 va_end(args);
1da177e4 280
663a4743 281 return retval;
1da177e4 282}
1da177e4
LT
283EXPORT_SYMBOL(kobject_set_name);
284
e86000d0
GKH
285/**
286 * kobject_init_ng - initialize a kobject structure
287 * @kobj: pointer to the kobject to initialize
288 * @ktype: pointer to the ktype for this kobject.
289 *
290 * This function will properly initialize a kobject such that it can then
291 * be passed to the kobject_add() call.
292 *
293 * After this function is called, the kobject MUST be cleaned up by a call
294 * to kobject_put(), not by a call to kfree directly to ensure that all of
295 * the memory is cleaned up properly.
296 */
297void kobject_init_ng(struct kobject *kobj, struct kobj_type *ktype)
298{
299 char *err_str;
300
301 if (!kobj) {
302 err_str = "invalid kobject pointer!";
303 goto error;
304 }
305 if (!ktype) {
306 err_str = "must have a ktype to be initialized properly!\n";
307 goto error;
308 }
309 if (atomic_read(&kobj->kref.refcount)) {
310 /* do not error out as sometimes we can recover */
311 printk(KERN_ERR "kobject: reference count is already set, "
312 "something is seriously wrong.\n");
313 dump_stack();
314 }
315
316 kref_init(&kobj->kref);
317 INIT_LIST_HEAD(&kobj->entry);
318 kobj->ktype = ktype;
319 return;
320
321error:
322 printk(KERN_ERR "kobject: %s\n", err_str);
323 dump_stack();
324}
325EXPORT_SYMBOL(kobject_init_ng);
326
244f6cee
GKH
327static int kobject_add_varg(struct kobject *kobj, struct kobject *parent,
328 const char *fmt, va_list vargs)
329{
330 va_list aq;
331 int retval;
332
333 va_copy(aq, vargs);
334 retval = kobject_set_name_vargs(kobj, fmt, aq);
335 va_end(aq);
336 if (retval) {
337 printk(KERN_ERR "kobject: can not set name properly!\n");
338 return retval;
339 }
340 kobj->parent = parent;
341 return kobject_add(kobj);
342}
343
344/**
345 * kobject_add_ng - the main kobject add function
346 * @kobj: the kobject to add
347 * @parent: pointer to the parent of the kobject.
348 * @fmt: format to name the kobject with.
349 *
350 * The kobject name is set and added to the kobject hierarchy in this
351 * function.
352 *
353 * If @parent is set, then the parent of the @kobj will be set to it.
354 * If @parent is NULL, then the parent of the @kobj will be set to the
355 * kobject associted with the kset assigned to this kobject. If no kset
356 * is assigned to the kobject, then the kobject will be located in the
357 * root of the sysfs tree.
358 *
359 * If this function returns an error, kobject_put() must be called to
360 * properly clean up the memory associated with the object.
361 *
362 * If the function is successful, the only way to properly clean up the
363 * memory is with a call to kobject_del(), in which case, a call to
364 * kobject_put() is not necessary (kobject_del() does the final
365 * kobject_put() to call the release function in the ktype's release
366 * pointer.)
367 *
368 * Under no instance should the kobject that is passed to this function
369 * be directly freed with a call to kfree(), that can leak memory.
370 *
371 * Note, no uevent will be created with this call, the caller should set
372 * up all of the necessary sysfs files for the object and then call
373 * kobject_uevent() with the UEVENT_ADD parameter to ensure that
374 * userspace is properly notified of this kobject's creation.
375 */
376int kobject_add_ng(struct kobject *kobj, struct kobject *parent,
377 const char *fmt, ...)
378{
379 va_list args;
380 int retval;
381
382 if (!kobj)
383 return -EINVAL;
384
385 va_start(args, fmt);
386 retval = kobject_add_varg(kobj, parent, fmt, args);
387 va_end(args);
388
389 return retval;
390}
391EXPORT_SYMBOL(kobject_add_ng);
392
1da177e4
LT
393/**
394 * kobject_rename - change the name of an object
395 * @kobj: object in question.
396 * @new_name: object's new name
397 */
398
f3b4f3c6 399int kobject_rename(struct kobject * kobj, const char *new_name)
1da177e4
LT
400{
401 int error = 0;
ca2f37db
JT
402 const char *devpath = NULL;
403 char *devpath_string = NULL;
404 char *envp[2];
1da177e4
LT
405
406 kobj = kobject_get(kobj);
407 if (!kobj)
408 return -EINVAL;
b592fcfe
EB
409 if (!kobj->parent)
410 return -EINVAL;
ca2f37db 411
34358c26
GKH
412 /* see if this name is already in use */
413 if (kobj->kset) {
414 struct kobject *temp_kobj;
415 temp_kobj = kset_find_obj(kobj->kset, new_name);
416 if (temp_kobj) {
71409a49
JB
417 printk(KERN_WARNING "kobject '%s' cannot be renamed "
418 "to '%s' as '%s' is already in existence.\n",
34358c26
GKH
419 kobject_name(kobj), new_name, new_name);
420 kobject_put(temp_kobj);
421 return -EINVAL;
422 }
423 }
424
ca2f37db
JT
425 devpath = kobject_get_path(kobj, GFP_KERNEL);
426 if (!devpath) {
427 error = -ENOMEM;
428 goto out;
429 }
430 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
431 if (!devpath_string) {
432 error = -ENOMEM;
433 goto out;
434 }
435 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
436 envp[0] = devpath_string;
437 envp[1] = NULL;
ca2f37db 438
90bc6135 439 error = sysfs_rename_dir(kobj, new_name);
ca2f37db
JT
440
441 /* This function is mostly/only used for network interface.
442 * Some hotplug package track interfaces by their name and
443 * therefore want to know when the name is changed by the user. */
444 if (!error)
445 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
446
447out:
448 kfree(devpath_string);
449 kfree(devpath);
b592fcfe
EB
450 kobject_put(kobj);
451
452 return error;
453}
454
8a82472f
CH
455/**
456 * kobject_move - move object to another parent
457 * @kobj: object in question.
c744aeae 458 * @new_parent: object's new parent (can be NULL)
8a82472f
CH
459 */
460
461int kobject_move(struct kobject *kobj, struct kobject *new_parent)
462{
463 int error;
464 struct kobject *old_parent;
465 const char *devpath = NULL;
466 char *devpath_string = NULL;
467 char *envp[2];
468
469 kobj = kobject_get(kobj);
470 if (!kobj)
471 return -EINVAL;
472 new_parent = kobject_get(new_parent);
473 if (!new_parent) {
c744aeae
CH
474 if (kobj->kset)
475 new_parent = kobject_get(&kobj->kset->kobj);
8a82472f
CH
476 }
477 /* old object path */
478 devpath = kobject_get_path(kobj, GFP_KERNEL);
479 if (!devpath) {
480 error = -ENOMEM;
481 goto out;
482 }
483 devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL);
484 if (!devpath_string) {
485 error = -ENOMEM;
486 goto out;
487 }
488 sprintf(devpath_string, "DEVPATH_OLD=%s", devpath);
489 envp[0] = devpath_string;
490 envp[1] = NULL;
491 error = sysfs_move_dir(kobj, new_parent);
492 if (error)
493 goto out;
494 old_parent = kobj->parent;
495 kobj->parent = new_parent;
9e993efb 496 new_parent = NULL;
8a82472f
CH
497 kobject_put(old_parent);
498 kobject_uevent_env(kobj, KOBJ_MOVE, envp);
499out:
9e993efb 500 kobject_put(new_parent);
8a82472f
CH
501 kobject_put(kobj);
502 kfree(devpath_string);
503 kfree(devpath);
504 return error;
505}
506
1da177e4
LT
507/**
508 * kobject_del - unlink kobject from hierarchy.
509 * @kobj: object.
510 */
511
512void kobject_del(struct kobject * kobj)
513{
31b9025a
GKH
514 if (!kobj)
515 return;
1da177e4
LT
516 sysfs_remove_dir(kobj);
517 unlink(kobj);
518}
519
520/**
521 * kobject_unregister - remove object from hierarchy and decrement refcount.
522 * @kobj: object going away.
523 */
524
525void kobject_unregister(struct kobject * kobj)
526{
31b9025a
GKH
527 if (!kobj)
528 return;
1da177e4 529 pr_debug("kobject %s: unregistering\n",kobject_name(kobj));
312c004d 530 kobject_uevent(kobj, KOBJ_REMOVE);
1da177e4
LT
531 kobject_del(kobj);
532 kobject_put(kobj);
533}
534
535/**
536 * kobject_get - increment refcount for object.
537 * @kobj: object.
538 */
539
540struct kobject * kobject_get(struct kobject * kobj)
541{
542 if (kobj)
543 kref_get(&kobj->kref);
544 return kobj;
545}
546
18041f47
GKH
547/*
548 * kobject_cleanup - free kobject resources.
549 * @kobj: object to cleanup
1da177e4 550 */
18041f47 551static void kobject_cleanup(struct kobject *kobj)
1da177e4
LT
552{
553 struct kobj_type * t = get_ktype(kobj);
554 struct kset * s = kobj->kset;
555 struct kobject * parent = kobj->parent;
ce2c9cb0 556 const char *name = kobj->k_name;
1da177e4
LT
557
558 pr_debug("kobject %s: cleaning up\n",kobject_name(kobj));
ce2c9cb0 559 if (t && t->release) {
1da177e4 560 t->release(kobj);
ce2c9cb0
GKH
561 /* If we have a release function, we can guess that this was
562 * not a statically allocated kobject, so we should be safe to
563 * free the name */
564 kfree(name);
565 }
1da177e4
LT
566 if (s)
567 kset_put(s);
b067db49 568 kobject_put(parent);
1da177e4
LT
569}
570
571static void kobject_release(struct kref *kref)
572{
573 kobject_cleanup(container_of(kref, struct kobject, kref));
574}
575
576/**
577 * kobject_put - decrement refcount for object.
578 * @kobj: object.
579 *
580 * Decrement the refcount, and if 0, call kobject_cleanup().
581 */
582void kobject_put(struct kobject * kobj)
583{
584 if (kobj)
585 kref_put(&kobj->kref, kobject_release);
586}
587
588
7423172a
JN
589static void dir_release(struct kobject *kobj)
590{
591 kfree(kobj);
592}
593
594static struct kobj_type dir_ktype = {
595 .release = dir_release,
596 .sysfs_ops = NULL,
597 .default_attrs = NULL,
598};
599
600/**
2753133e 601 * kobject_kset_add_dir - add sub directory of object.
86406245 602 * @kset: kset the directory is belongs to.
7423172a
JN
603 * @parent: object in which a directory is created.
604 * @name: directory name.
605 *
606 * Add a plain directory object as child of given object.
607 */
86406245
KS
608struct kobject *kobject_kset_add_dir(struct kset *kset,
609 struct kobject *parent, const char *name)
7423172a
JN
610{
611 struct kobject *k;
10188012 612 int ret;
7423172a
JN
613
614 if (!parent)
615 return NULL;
616
617 k = kzalloc(sizeof(*k), GFP_KERNEL);
618 if (!k)
619 return NULL;
620
86406245 621 k->kset = kset;
7423172a
JN
622 k->parent = parent;
623 k->ktype = &dir_ktype;
624 kobject_set_name(k, name);
10188012
RD
625 ret = kobject_register(k);
626 if (ret < 0) {
2753133e
EB
627 printk(KERN_WARNING "%s: kobject_register error: %d\n",
628 __func__, ret);
10188012
RD
629 kobject_del(k);
630 return NULL;
631 }
7423172a
JN
632
633 return k;
634}
7423172a 635
2753133e
EB
636/**
637 * kobject_add_dir - add sub directory of object.
638 * @parent: object in which a directory is created.
639 * @name: directory name.
640 *
641 * Add a plain directory object as child of given object.
642 */
86406245
KS
643struct kobject *kobject_add_dir(struct kobject *parent, const char *name)
644{
645 return kobject_kset_add_dir(NULL, parent, name);
646}
647
1da177e4
LT
648/**
649 * kset_init - initialize a kset for use
650 * @k: kset
651 */
652
653void kset_init(struct kset * k)
654{
655 kobject_init(&k->kobj);
656 INIT_LIST_HEAD(&k->list);
657 spin_lock_init(&k->list_lock);
658}
659
660
661/**
662 * kset_add - add a kset object to the hierarchy.
663 * @k: kset.
1da177e4
LT
664 */
665
666int kset_add(struct kset * k)
667{
1da177e4
LT
668 return kobject_add(&k->kobj);
669}
670
671
672/**
673 * kset_register - initialize and add a kset.
674 * @k: kset.
675 */
676
677int kset_register(struct kset * k)
678{
80f03e34
KS
679 int err;
680
31b9025a
GKH
681 if (!k)
682 return -EINVAL;
80f03e34 683
1da177e4 684 kset_init(k);
80f03e34
KS
685 err = kset_add(k);
686 if (err)
687 return err;
688 kobject_uevent(&k->kobj, KOBJ_ADD);
689 return 0;
1da177e4
LT
690}
691
692
693/**
694 * kset_unregister - remove a kset.
695 * @k: kset.
696 */
697
698void kset_unregister(struct kset * k)
699{
31b9025a
GKH
700 if (!k)
701 return;
1da177e4
LT
702 kobject_unregister(&k->kobj);
703}
704
705
706/**
707 * kset_find_obj - search for object in kset.
708 * @kset: kset we're looking in.
709 * @name: object's name.
710 *
711 * Lock kset via @kset->subsys, and iterate over @kset->list,
712 * looking for a matching kobject. If matching object is found
713 * take a reference and return the object.
714 */
715
716struct kobject * kset_find_obj(struct kset * kset, const char * name)
717{
718 struct list_head * entry;
719 struct kobject * ret = NULL;
720
721 spin_lock(&kset->list_lock);
722 list_for_each(entry,&kset->list) {
723 struct kobject * k = to_kobj(entry);
724 if (kobject_name(k) && !strcmp(kobject_name(k),name)) {
725 ret = kobject_get(k);
726 break;
727 }
728 }
729 spin_unlock(&kset->list_lock);
730 return ret;
731}
732
823bccfc 733int subsystem_register(struct kset *s)
1da177e4 734{
823bccfc 735 return kset_register(s);
1da177e4
LT
736}
737
823bccfc 738void subsystem_unregister(struct kset *s)
1da177e4 739{
823bccfc 740 kset_unregister(s);
1da177e4
LT
741}
742
1da177e4
LT
743/**
744 * subsystem_create_file - export sysfs attribute file.
745 * @s: subsystem.
746 * @a: subsystem attribute descriptor.
747 */
748
823bccfc 749int subsys_create_file(struct kset *s, struct subsys_attribute *a)
1da177e4
LT
750{
751 int error = 0;
31b9025a
GKH
752
753 if (!s || !a)
754 return -EINVAL;
755
1ef4cfac 756 if (kset_get(s)) {
823bccfc 757 error = sysfs_create_file(&s->kobj, &a->attr);
6e9d930d 758 kset_put(s);
1da177e4
LT
759 }
760 return error;
761}
762
1da177e4
LT
763EXPORT_SYMBOL(kobject_init);
764EXPORT_SYMBOL(kobject_register);
765EXPORT_SYMBOL(kobject_unregister);
766EXPORT_SYMBOL(kobject_get);
767EXPORT_SYMBOL(kobject_put);
768EXPORT_SYMBOL(kobject_add);
769EXPORT_SYMBOL(kobject_del);
770
771EXPORT_SYMBOL(kset_register);
772EXPORT_SYMBOL(kset_unregister);
1da177e4 773
1da177e4
LT
774EXPORT_SYMBOL(subsystem_register);
775EXPORT_SYMBOL(subsystem_unregister);
776EXPORT_SYMBOL(subsys_create_file);