From: Rusty Russell <rusty@rustcorp.com.au>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Brandon Philips <brandon@ifup.org>,
Andrew Morton <akpm@linux-foundation.org>,
"Rafael J. Wysocki" <rjw@sisk.pl>,
LKML <linux-kernel@vger.kernel.org>,
Jon Masters <jonathan@jonmasters.org>,
Tejun Heo <htejun@gmail.com>,
Masami Hiramatsu <mhiramat@redhat.com>,
Kay Sievers <kay.sievers@vrfy.org>
Subject: Re: [PATCH 2/2] module: fix bne2 "gave up waiting for init of module libcrc32c"
Date: Thu, 3 Jun 2010 14:50:52 +0930 [thread overview]
Message-ID: <201006031450.53576.rusty@rustcorp.com.au> (raw)
In-Reply-To: <alpine.LFD.2.00.1006021038200.8175@i5.linux-foundation.org>
On Thu, 3 Jun 2010 03:31:06 am Linus Torvalds wrote:
>
> On Wed, 2 Jun 2010, Rusty Russell wrote:
> >
> > And load_module is down to 259 lines. The label chain at the end is no
> > shorter tho :( I'll leave those cleanups until next merge window.
>
> Btw, here's a patch that _looks_ large, but it really pretty trivial, and
> sets things up so that it would be way easier to split off pieces of the
> module loading.
>
> The reason it looks large is that it creates a "module_info" structure
> that contains all the module state that we're building up while loading,
> instead of having individual variables for all the indices etc.
>
> So the patch ends up being large, because every "symindex" access instead
> becomes "info.index.sym" etc. That may be a few characters longer, but it
> then means that we can just pass a pointer to that "info" structure
> around. and let all the pieces fill it in very naturally.
>
> As an example of that, the patch also moves the initialization of all
> those convenience variables into a "setup_module_info()" function. And at
> this point it really does become very natural to start to peel off some of
> the error labels and move them into the helper functions - now the
> "truncated" case is gone, and is handled inside that setup function
> instead.
>
> So maybe you don't like this approach, and it does make the variable
> accesses a bit longer, but I don't think unreadably so. And the patch
> really does look big and scary, but there really should be absolutely no
> semantic changes - most of it was a trivial and mindless rename.
>
> In fact, it was so mindless that I on purpose kept the existing helper
> functions looking like this:
>
> - err = check_modinfo(mod, sechdrs, infoindex, versindex);
> + err = check_modinfo(mod, info.sechdrs, info.index.info, info.index.vers);
>
> rather than changing them to just take the "info" pointer. IOW, a second
> phase (if you think the approach is ok) would change that calling
> convention to just do
>
> err = check_modinfo(mod, &info);
>
> (and same for "layout_sections()", "layout_symtabs()" etc.) Similarly,
> while right now it makes things _look_ bigger, with things like this:
>
> versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
>
> becoming
>
> info->index.vers = find_sec(info->hdr, info->sechdrs, info->secstrings, "__versions");
>
> in the new "setup_module_info()" function, that's again just a result of
> it being a search-and-replace patch. By using the 'info' pointer, we could
> just change the 'find_sec()' interface so that it ends up being
>
> info->index.vers = find_sec(info, "__versions");
>
> instead, and then we'd actually have a shorter and more readable line. So
> for a lot of those mindless variable name expansions there's would be room
> for separate cleanups.
>
> I didn't move quite everything in there - if we do this to layout_symtabs,
> for example, we'd want to move the percpu, symoffs, stroffs, *strmap
> variables to be fields in that module_info structure too. But that's a
> much smaller patch, I moved just the really core stuff that is currently
> being set up and used in various parts.
>
> But even in this rough form, it removes close to 70 lines from that
> function (but adds 22 lines overall, of course - the structure definition,
> the helper function declarations and call-sites etc etc).
Applied. I thought about the same thing but had the same doubts as you.
However, you're right that it has potential. I'll rename module_info to
load_info if you don't mind tho: contains more semantic punch IMHO.
On top of this, I'm right now closing on another ideal of mine: encapsulate
all the "before we move module" into one function. That before vs. after
always made me nervous...
Thanks!
Rusty.
next prev parent reply other threads:[~2010-06-03 5:21 UTC|newest]
Thread overview: 71+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-25 21:00 [Regression] Crash in load_module() while freeing args Rafael J. Wysocki
2010-05-25 22:54 ` Rafael J. Wysocki
2010-05-25 23:47 ` Linus Torvalds
2010-05-26 8:00 ` Rusty Russell
2010-05-26 11:57 ` Rusty Russell
2010-05-26 22:56 ` Rafael J. Wysocki
2010-05-26 23:07 ` Linus Torvalds
2010-05-27 5:26 ` Rusty Russell
2010-05-27 18:46 ` Brandon Philips
2010-05-31 9:40 ` Rusty Russell
2010-05-31 12:00 ` [PATCH 0/2] kernel/module.c locking changes Rusty Russell
2010-05-31 12:01 ` [PATCH 1/2] module: make locking more fine-grained Rusty Russell
2010-05-31 12:02 ` [PATCH 2/2] module: fix bne2 "gave up waiting for init of module libcrc32c" Rusty Russell
2010-05-31 16:48 ` Andrew Morton
2010-05-31 18:19 ` Linus Torvalds
2010-05-31 20:15 ` Linus Torvalds
2010-05-31 20:16 ` [PATCH 1/2] Make the module 'usage' lists be two-way Linus Torvalds
2010-05-31 20:17 ` [PATCH 2/2] module: wait for other modules after dropping the module_mutex Linus Torvalds
2010-06-01 1:37 ` [PATCH 1/2] Make the module 'usage' lists be two-way Rusty Russell
2010-06-01 3:42 ` Rusty Russell
2010-06-01 4:00 ` Linus Torvalds
2010-06-01 4:05 ` Linus Torvalds
2010-06-01 2:44 ` Américo Wang
2010-06-01 3:51 ` Linus Torvalds
2010-06-01 1:57 ` [PATCH 2/2] module: fix bne2 "gave up waiting for init of module libcrc32c" Rusty Russell
2010-06-01 3:40 ` Linus Torvalds
2010-06-01 4:27 ` Linus Torvalds
2010-06-01 5:19 ` Rusty Russell
2010-06-02 3:15 ` Rusty Russell
2010-06-01 1:21 ` Rusty Russell
2010-06-01 3:24 ` Linus Torvalds
2010-06-01 5:22 ` Rusty Russell
2010-06-01 14:58 ` Linus Torvalds
2010-06-01 17:53 ` Linus Torvalds
2010-06-01 23:24 ` Brandon Philips
2010-06-01 23:51 ` Linus Torvalds
2010-06-02 2:10 ` Brandon Philips
2010-06-02 3:03 ` Rusty Russell
2010-06-02 4:35 ` Linus Torvalds
2010-06-02 4:44 ` Linus Torvalds
2010-06-02 6:35 ` Rusty Russell
2010-06-02 7:45 ` Linus Torvalds
2010-06-02 8:12 ` Linus Torvalds
2010-06-02 9:07 ` Rusty Russell
2010-06-02 5:52 ` Rusty Russell
2010-06-02 7:21 ` Linus Torvalds
2010-06-02 14:06 ` Rusty Russell
2010-06-02 14:50 ` Linus Torvalds
2010-06-03 13:06 ` Rusty Russell
2010-06-02 16:53 ` Brandon Philips
2010-06-02 18:01 ` Linus Torvalds
2010-06-03 5:20 ` Rusty Russell [this message]
2010-06-03 16:24 ` Linus Torvalds
2010-06-04 1:02 ` Rusty Russell
2010-06-04 1:55 ` Linus Torvalds
2010-06-04 5:20 ` Rusty Russell
2010-06-04 22:48 ` Linus Torvalds
2010-06-05 1:49 ` Rusty Russell
2010-06-02 3:09 ` Rusty Russell
2010-06-02 4:32 ` Linus Torvalds
2010-06-02 4:56 ` Linus Torvalds
2010-06-02 5:52 ` Rusty Russell
2010-06-02 6:59 ` Linus Torvalds
2010-06-01 1:04 ` Rusty Russell
2010-06-01 5:38 ` [PATCH 1/2] module: make locking more fine-grained Américo Wang
2010-06-01 5:55 ` Rusty Russell
2010-05-27 21:57 ` [Regression] Crash in load_module() while freeing args Rafael J. Wysocki
2010-05-31 7:54 ` Rusty Russell
2010-05-31 10:23 ` [PATCH] module: fix reference to mod->percpu after freeing module Rusty Russell
2010-05-31 10:25 ` Tejun Heo
2010-05-26 15:41 ` [Regression] Crash in load_module() while freeing args Linus Torvalds
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201006031450.53576.rusty@rustcorp.com.au \
--to=rusty@rustcorp.com.au \
--cc=akpm@linux-foundation.org \
--cc=brandon@ifup.org \
--cc=htejun@gmail.com \
--cc=jonathan@jonmasters.org \
--cc=kay.sievers@vrfy.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mhiramat@redhat.com \
--cc=rjw@sisk.pl \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox