kobj_completion_init(9) initialize a kobj_completion object.

SYNOPSIS

void kobj_completion_init(struct kobj_completion * kc, struct kobj_type * ktype);

ARGUMENTS

kc

kobj_completion

ktype

type of kobject to initialize

DESCRIPTION

kobj_completion structures can be embedded within structures with different lifetime rules. During the release of the enclosing object, we can wait on the release of the kobject so that we don't free it while it's still busy.

COPYRIGHT