Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63219
b: refs/heads/master
c: a561564
h: refs/heads/master
i:
  63217: c8fde75
  63215: 6bc09d6
v: v3
  • Loading branch information
Randy Dunlap authored and Greg Kroah-Hartman committed Jul 30, 2007
1 parent 45e9823 commit d2b41ff
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 27907689eedd799a6a0c1a2f18a3563c6e9e9767
refs/heads/master: a56156489dbdc60ac39a77b8a988d375b2f273a0
23 changes: 11 additions & 12 deletions trunk/include/linux/kobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,15 @@ struct kobj_type {
struct attribute ** default_attrs;
};

struct kset_uevent_ops {
int (*filter)(struct kset *kset, struct kobject *kobj);
const char *(*name)(struct kset *kset, struct kobject *kobj);
int (*uevent)(struct kset *kset, struct kobject *kobj, char **envp,
int num_envp, char *buffer, int buffer_size);
};

/**
* kset - a set of kobjects of a specific type, belonging
/*
* struct kset - a set of kobjects of a specific type, belonging
* to a specific subsystem.
*
* All kobjects of a kset should be embedded in an identical
Expand All @@ -129,13 +135,6 @@ struct kobj_type {
* supress the event generation or add subsystem specific
* variables carried with the event.
*/
struct kset_uevent_ops {
int (*filter)(struct kset *kset, struct kobject *kobj);
const char *(*name)(struct kset *kset, struct kobject *kobj);
int (*uevent)(struct kset *kset, struct kobject *kobj, char **envp,
int num_envp, char *buffer, int buffer_size);
};

struct kset {
struct kobj_type * ktype;
struct list_head list;
Expand Down Expand Up @@ -176,7 +175,7 @@ static inline struct kobj_type * get_ktype(struct kobject * k)
extern struct kobject * kset_find_obj(struct kset *, const char *);


/**
/*
* Use this when initializing an embedded kset with no other
* fields to initialize.
*/
Expand All @@ -201,7 +200,7 @@ extern struct kset kernel_subsys;
/* The global /sys/hypervisor/ subsystem */
extern struct kset hypervisor_subsys;

/**
/*
* Helpers for setting the kset of registered objects.
* Often, a registered object belongs to a kset embedded in a
* subsystem. These do no magic, just make the resulting code
Expand Down Expand Up @@ -236,7 +235,7 @@ extern struct kset hypervisor_subsys;
/**
* subsys_set_kset(obj,subsys) - set kset for subsystem
* @obj: ptr to some object type.
* @subsys: a subsystem object (not a ptr).
* @_subsys: a subsystem object (not a ptr).
*
* Can be used for any object type with an embedded ->subsys.
* Sets the kset of @obj's kobject to @subsys.kset. This makes
Expand Down

0 comments on commit d2b41ff

Please sign in to comment.