Re: [PATCH] [PS3] gelic wireless driver needs MAC80211 support

2008-02-25 Thread Sebastian Siewior
* Johannes Berg | 2008-02-25 11:13:56 [+0100]: >That seems completely wrong since it's a full-mac "chip" (implemented in >the HV or so maybe). What exactly does it need from mac80211? Nothing, please drop. I've sent another patch which enables WEXT what is the correct thing to do. Sorry for the no

Re: [PATCH] [PS3] gelic wireless driver needs MAC80211 support

2008-02-23 Thread Sebastian Siewior
* Jeff Garzik | 2008-02-23 15:26:07 [-0500]: > Given that this is straying clearly into wireless territory, I think the > linux-wireless folks and John Linville (wireless maintainer) are > appropriate patch targets. Okey, I'm going to forward the pach. > Jeff Sebastian -- To unsubscribe

[PATCH] [NET] [PS3] gelic wireless driver needs WIRELESS_EXT support

2008-02-23 Thread Sebastian Siewior
Error 2 | make[1]: *** Waiting for unfinished jobs.... | make: *** [sub-make] Error 2 Signed-off-by: Sebastian Siewior <[EMAIL PROTECTED]> --- drivers/net/Kconfig |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index f337800..e0

Re: [PATCH] [PS3] gelic wireless driver needs MAC80211 support

2008-02-23 Thread Sebastian Siewior
* Ivo van Doorn | 2008-02-23 20:44:59 [+0100]: >Is there any particular reason why this driver is in drivers/net instead >of drivers/net/wireless (along with all other wireless drivers? My understanding is/was that the wireless device and the eth device are exposed by the hypervisor to the system

Re: [PATCH] [PS3] gelic wireless driver needs MAC80211 support

2008-02-23 Thread Sebastian Siewior
* Sebastian Siewior | 2008-02-23 21:06:37 [+0100]: >I add this to the patch desctiption and post a depends on patach ARGH, this was CONFIG_WIRELESS_EXT and not MAC80211. You would like to see a select or depend statement on that one? >>Ivo > Sebastian -- To unsubscribe from this li

Re: [PATCH] [PS3] gelic wireless driver needs MAC80211 support

2008-02-23 Thread Sebastian Siewior
* Ivo van Doorn | 2008-02-23 20:50:34 [+0100]: >Additionally, what part of the driver actually uses mac80211? >I just browsed to the code, and it seems to work completely without >using mac80211. Instead it seems to work directly by registering a >net_device structure... CC drivers/net/ps3_

[PATCH] [PS3] gelic wireless driver needs MAC80211 support

2008-02-23 Thread Sebastian Siewior
so select it. Signed-off-by: Sebastian Siewior <[EMAIL PROTECTED]> --- drivers/net/Kconfig |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index f337800..a116056 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/K

[PATCH] [net] RxRPC session sockets depend on crypto

2007-12-01 Thread Sebastian Siewior
net/built-in.o: In function `rxrpc_destroy_s': ar-key.c:(.text+0x653cd): undefined reference to `crypto_free_tfm' net/built-in.o: In function `rxrpc_instantiate_s': ar-key.c:(.text+0x65496): undefined reference to `crypto_alloc_base' Signed-off-by: Sebastian Siewior <[EMA

[PATCH] [net] xrfm depends on crypto

2007-12-01 Thread Sebastian Siewior
net/built-in.o: In function `xfrm_find_algo': xfrm_algo.c:(.text+0x61c82): undefined reference to `crypto_has_alg' Signed-off-by: Sebastian Siewior <[EMAIL PROTECTED]> --- net/xfrm/Kconfig |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/xfrm/Kc

Re: Async crypto support in IPsec

2007-11-20 Thread Sebastian Siewior
* Jesper Bengtsson | 2007-11-20 08:22:29 [+0100]: >I've seen that async crypto support made it's way into the crypto API in >2.6.22. >From skimming the netdev-list I can see that some of you are working on >async crypto support in IPsec as well. Do you have any idea when it will >be available? Asy

[PATCH] [net] gianfar: remove orphan struct.

2007-10-17 Thread Sebastian Siewior
struct net_device_stats is no longer used in driver's private struct but in struct net_device. Cc: Li Yang <[EMAIL PROTECTED]> Signed-off-by: Sebastian Siewior <[EMAIL PROTECTED]> --- drivers/net/gianfar.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --

[PATCH] [net] fix gianfar (compile and warning)

2007-10-16 Thread Sebastian Siewior
Currently it does not compile because a not declared variable is used. struct net_device_stats in driver's private struct is also unsued. This patch uses (hopefully) the right stats. Cc: Li Yang <[EMAIL PROTECTED]> Signed-off-by: Sebastian Siewior <[EMAIL PROTECTED]> --- driv

Re: authenc compile warnings in current net-2.6.24

2007-10-11 Thread Sebastian Siewior
* David Miller | 2007-10-10 16:25:28 [-0700]: >From: Sebastian Siewior <[EMAIL PROTECTED]> >Date: Wed, 10 Oct 2007 21:53:37 +0200 > >> * Oliver Hartkopp | 2007-10-10 19:53:53 [+0200]: >> >> > CC [M] crypto/authenc.o >> > crypto/authenc.c: In function

Re: authenc compile warnings in current net-2.6.24

2007-10-10 Thread Sebastian Siewior
* Oliver Hartkopp | 2007-10-10 19:53:53 [+0200]: > CC [M] crypto/authenc.o > crypto/authenc.c: In function ?crypto_authenc_hash?: > crypto/authenc.c:88: warning: ?cryptlen? may be used uninitialized in this > function > crypto/authenc.c:87: warning: ?dst? may be used uninitialized in this > func

[PATCH] netdev: Network drivers should depend on Network

2007-07-20 Thread Sebastian Siewior
Got with randconfig: XXX: undefined reference to `netif_carrier_on' XXX: undefined reference to `dev_queue_xmit' ... Signed-off-by: Sebastian Siewior <[EMAIL PROTECTED]> Index: b/drivers/net/Kconfig === --- a/dri