From: Rusty Russell <rusty@rustcorp.com.au> To: torvalds@transmeta.com Cc: linux-kernel@vger.kernel.org Subject: [PATCH] Module rewrite 10/20: Parameter Support for Modules Date: Wed, 25 Sep 2002 13:02:38 +1000 [thread overview] Message-ID: <20020925032201.DFD9B2C157@lists.samba.org> (raw) Name: Parameter Implementation for modules Author: Rusty Russell Status: Tested on 2.5.38 Depends: Module/modbase-try-i386.patch.gz D: This activates parameter parsing for PARAM() declarations in modules. diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal .29380-linux-2.5.36/kernel/module.c .29380-linux-2.5.36.updated/kernel/module.c --- .29380-linux-2.5.36/kernel/module.c 2002-09-20 17:20:40.000000000 +1000 +++ .29380-linux-2.5.36.updated/kernel/module.c 2002-09-20 17:21:25.000000000 +1000 @@ -809,8 +809,7 @@ static struct module *load_module(void * if (err < 0) goto cleanup; -#if 0 /* Needs param support */ - /* Size of section 0 is 0, so this works well */ + /* Size of section 0 is 0, so this works well if no params */ err = parse_args(mod->args, (struct kernel_param *) sechdrs[setupindex].sh_offset, @@ -819,7 +818,6 @@ static struct module *load_module(void * NULL); if (err < 0) goto cleanup; -#endif /* Get rid of temporary copy */ vfree(hdr); -- Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
reply other threads:[~2002-09-25 3:27 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20020925032201.DFD9B2C157@lists.samba.org \ --to=rusty@rustcorp.com.au \ --cc=linux-kernel@vger.kernel.org \ --cc=torvalds@transmeta.com \ --subject='Re: [PATCH] Module rewrite 10/20: Parameter Support for Modules' \ /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
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).