[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20081001124543.GD970@ghostprotocols.net>
Date: Wed, 1 Oct 2008 09:45:43 -0300
From: Arnaldo Carvalho de Melo <acme@...hat.com>
To: Remi Denis-Courmont <remi.denis-courmont@...ia.com>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH 1/6] Phonet: transport protocol auto-loading
Em Wed, Oct 01, 2008 at 01:13:00PM +0300, Remi Denis-Courmont escreveu:
> Signed-off-by: RĂ©mi Denis-Courmont <remi.denis-courmont@...ia.com>
> ---
> net/phonet/af_phonet.c | 5 +++++
> 1 files changed, 5 insertions(+), 0 deletions(-)
>
> diff --git a/net/phonet/af_phonet.c b/net/phonet/af_phonet.c
> index 1d8df6b..06627d3 100644
> --- a/net/phonet/af_phonet.c
> +++ b/net/phonet/af_phonet.c
> @@ -64,6 +64,11 @@ static int pn_socket_create(struct net *net, struct socket *sock, int protocol)
> }
>
> pnp = phonet_proto_get(protocol);
> +#ifdef CONFIG_KMOD
> + if (pnp == NULL
> + && request_module("net-pf-%d-proto-%d", PF_PHONET, protocol) == 0)
&& at the end of previous line, please.
I wonder if we shouldn't have:
net_pf_request_module(PF_PHONET, protocol)
[acme@...pio linux-2.6]$ grep "net-pf-%d-proto-%d" net/*/*.c
net/ipv4/af_inet.c: request_module("net-pf-%d-proto-%d-type-%d",
net/ipv4/af_inet.c: request_module("net-pf-%d-proto-%d",
net/ipv4/inet_diag.c: request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK,
net/ipv6/af_inet6.c: request_module("net-pf-%d-proto-%d-type-%d",
net/ipv6/af_inet6.c: request_module("net-pf-%d-proto-%d",
net/netlink/af_netlink.c: request_module("net-pf-%d-proto-%d", PF_NETLINK, protocol);
[acme@...pio linux-2.6]$
Nah, perhaps not...
> + pnp = phonet_proto_get(protocol);
> +#endif
> if (pnp == NULL)
> return -EPROTONOSUPPORT;
> if (sock->type != pnp->sock_type) {
> --
> 1.5.4.3
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists