linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* static kset (and kobject)...
@ 2008-06-10 17:57 Arthur Jones
  2008-06-10 18:46 ` Zach Brown
  0 siblings, 1 reply; 2+ messages in thread
From: Arthur Jones @ 2008-06-10 17:57 UTC (permalink / raw)
  To: Zach Brown; +Cc: Mark Fasheh, Kurt Hackel, linux-kernel

Hi Zack,  FYI:  I just learned that static ksets and kobjects
are bad (see Documentation/kobject.txt for details).  The
following commit:

commit 52fd3d6fea441835fe3a35b7280e5e128bdeca9b
Author: Zach Brown <zach.brown@oracle.com>
Date:   Thu Dec 15 14:31:23 2005 -0800

    [PATCH] OCFS2: The Second Oracle Cluster Filesystem
    
    Very simple printk wrapper which adds the ability to enable various
    sets of debug messages at run-time.
    
    Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
    Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com>

Introduces:

+static struct kset mlog_kset = {
+       .kobj   = {.name = "logmask", .ktype = &mlog_ktype},
+};
+
+int mlog_sys_init(struct subsystem *o2cb_subsys)
+{
+       int i = 0;
+
+       while (mlog_attrs[i].attr.mode) {
+               mlog_attr_ptrs[i] = &mlog_attrs[i].attr;
+               i++;
+       }
+       mlog_attr_ptrs[i] = NULL;
+
+       mlog_kset.subsys = o2cb_subsys;
+       return kset_register(&mlog_kset);
+}
+
+void mlog_sys_shutdown(void)
+{
+       kset_unregister(&mlog_kset);
+}

which I've learned the hard way probably won't
work as expected.  I'm surprised that you don't
see some sort of issue w/ this on module reload...

Arthur

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: static kset (and kobject)...
  2008-06-10 17:57 static kset (and kobject) Arthur Jones
@ 2008-06-10 18:46 ` Zach Brown
  0 siblings, 0 replies; 2+ messages in thread
From: Zach Brown @ 2008-06-10 18:46 UTC (permalink / raw)
  To: Arthur Jones; +Cc: Mark Fasheh, linux-kernel

Arthur Jones wrote:
> Hi Zack,  FYI:  I just learned that static ksets and kobjects
> are bad (see Documentation/kobject.txt for details).

Hi!  Mark is the OCFS2 maintainer and I'll let him respond to your
observation.  (Note his @suse address that I've used in this reply.)

- z

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-06-10 18:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-10 17:57 static kset (and kobject) Arthur Jones
2008-06-10 18:46 ` Zach Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).