Attn:

2011-06-08 Thread western union
You have a transfer of $1.800,000.00 United States Dollars Send Details Full Name,Age,Occupation,Country,Phone Number To Mr.Steven William. EMAIL:western_union_101...@hotmail.com PHONE NUMBER:+2347038311959 ___ devel mailing list devel@linuxdriverproje

Re: [PATCH] usbip: handle length at sysfs show() functions

2011-06-08 Thread Greg KH
On Wed, Jun 08, 2011 at 11:27:20PM +0200, Németh Márton wrote: > > Ick, I doubt it as there are lots of tools that parse that file already. > > usbip is still part of the staging directory. In dmesg the following appear: > > | usbip_common_mod: module is from the staging directory, the quality is

Re: [PATCH] usbip: handle length at sysfs show() functions

2011-06-08 Thread Németh Márton
Greg KH wrote: > On Wed, Jun 08, 2011 at 07:26:58AM +0200, Németh Márton wrote: >> Greg KH wrote: >>> On Wed, Jun 01, 2011 at 07:14:07AM +0200, Németh Márton wrote: The sysfs show() functions shall return the actual content length of the result buffer. According to Documentation/filesyste

Re: [PATCH 5/5] ath6kl: fix crash when interface is closed but scan is ongoing

2011-06-08 Thread Dan Carpenter
On Wed, Jun 08, 2011 at 11:03:32PM +0300, Dan Carpenter wrote: > On Wed, Jun 08, 2011 at 02:55:01PM +0300, Kalle Valo wrote: > > -/* Translate data to cfg80211 mgmt format */ > > - if (ar->arWmi) > ^ > You removed this check on purpose? Is this only NULL when >

Re: [PATCH 5/5] ath6kl: fix crash when interface is closed but scan is ongoing

2011-06-08 Thread Dan Carpenter
On Wed, Jun 08, 2011 at 02:55:01PM +0300, Kalle Valo wrote: > -/* Translate data to cfg80211 mgmt format */ > - if (ar->arWmi) ^ You removed this check on purpose? Is this only NULL when the scan is canceled? > - wmi_iterate_nodes(ar->ar

Re: [PATCH 2/5] ath6kl: testmode support

2011-06-08 Thread Dan Carpenter
On Wed, Jun 08, 2011 at 02:54:30PM +0300, Kalle Valo wrote: > Add testmode support for running low level hardware tests. The testmode > is enabled by setting testmode module parameter to 1. > > For now only a simple command passing is supported. More advanced > support will be implemented later. >

Re: [PATCH 3/5] ath6kl: cache firmware

2011-06-08 Thread Dan Carpenter
On Wed, Jun 08, 2011 at 02:54:40PM +0300, Kalle Valo wrote: > From: Kalle Valo > > Drivers should not request firmware during resume. Fix ath6kl to > cache the firmware instead. > > Signed-off-by: Kalle Valo > --- > drivers/staging/ath6kl/os/linux/ar6000_drv.c | 53 > ++---

Re: [PATCH 12/49] Staging: hv: storvsc: Add a DMI signature to support auto-loading

2011-06-08 Thread Greg KH
On Wed, Jun 08, 2011 at 02:44:35AM +, KY Srinivasan wrote: > > On Tue, Jun 07, 2011 at 10:19:06PM +, KY Srinivasan wrote: > > > Thanks Greg. Can you give me some pointers here as to what needs to be > > > done here. Looking at the code for virtio, it looks like I would need to > > > add st

Re: [PATCH] usbip: handle length at sysfs show() functions

2011-06-08 Thread Greg KH
On Wed, Jun 08, 2011 at 07:26:58AM +0200, Németh Márton wrote: > Greg KH wrote: > > On Wed, Jun 01, 2011 at 07:14:07AM +0200, Németh Márton wrote: > >> The sysfs show() functions shall return the actual content length of > >> the result buffer. According to Documentation/filesystems/sysfs.txt:215 >

Animated Movie/TV Series - Cartoon Movie/TV Series - 3D/2D Animation Services

2011-06-08 Thread Louis
You are receiving this email because we wish you to use our 3D/2D Animated Movie/TV Series Services. We are a China based Animated Movie/TV Series Studio. with the technical, our studio is a animation studio with the technical, creative and production capabilities to create a new generation of

Your Mail Id has won 500,000.00 GBP in BMW promo send your: Name... Sex... Home Address.....

2011-06-08 Thread Roxanne Guarino
body {height: 100%; color:#00; font-size:12pt; font-family:Times New Roman;} ___ devel mailing list devel@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Re: [PATCH 44/83] staging: brcm80211: replaced typedef si_t with struct si_pub

2011-06-08 Thread Roland Vossen
Hi Julian, The reason I was pointing this out was that while foo() doesn't need to know what's in struct bar, it will help type safety and general code cleanliness to have some declaration of struct bar in the headers. Mostly agree with you. It is cleaner to define all forward declarations in

[PATCH 5/5] ath6kl: fix crash when interface is closed but scan is ongoing

2011-06-08 Thread Kalle Valo
When ath6kl module was resumed while a scan was ongoing, for example during suspend, the driver would crash in ar6k_cfg80211_scanComplete_event(): [26581.586440] Call Trace: [26581.586440] [] ? ar6k_cfg80211_scanComplete_event+0xaa/0xaa [ath6kl] [26581.586440] [] wmi_iterate_nodes+0xb/0xd [ath6

[PATCH 3/5] ath6kl: cache firmware

2011-06-08 Thread Kalle Valo
From: Kalle Valo Drivers should not request firmware during resume. Fix ath6kl to cache the firmware instead. Signed-off-by: Kalle Valo --- drivers/staging/ath6kl/os/linux/ar6000_drv.c | 53 ++-- .../staging/ath6kl/os/linux/include/ar6000_drv.h |9 +++ 2 files cha

[PATCH 4/5] ath6kl: Fix a kernel panic furing suspend/resume

2011-06-08 Thread Kalle Valo
From: Vasanthakumar Thiagarajan The kernel panic happens when we try to complete a pending scan request while going to suspend state. The cause for this kernel panic is accessing a freed memory (ar->arWmin). This is freed before ar6k_cfg80211_scanComplete_event() getting called where it is derefe

[PATCH 2/5] ath6kl: testmode support

2011-06-08 Thread Kalle Valo
Add testmode support for running low level hardware tests. The testmode is enabled by setting testmode module parameter to 1. For now only a simple command passing is supported. More advanced support will be implemented later. Signed-off-by: Kalle Valo --- drivers/staging/ath6kl/os/linux/cfg802

[PATCH 1/5] ath6kl: export firmware version to user space

2011-06-08 Thread Kalle Valo
From: Kalle Valo cfg80211 exports wiphy->fw_version to user space via ethtool interface. The obligatory screenshot: $ sudo ethtool -i wlan0 driver: ath6kl_hifdev version: 2.6.39-rc4+ firmware-version: 3:1:1:149 bus-info: mmc0:0001:1 $ Signed-off-by: Kalle Valo --- drivers/staging/ath6kl/os/l

[PATCH 0/5] ath6kl: staging fixes

2011-06-08 Thread Kalle Valo
Hi Greg, here are few pending fixes and two new ones which haven't been sent before. The new patches are: ath6kl: cache firmware ath6kl: fix crash when interface is closed but scan is ongoing Please take a look at them and if they are ok consider applying them to your staging tree. Thanks. ---