[PATCH] fs/btrfs: Correct use after free
From: Julia Lawall <julia(a)diku.dk> If the kfree is executed, the dereference of range afterwards will represent a use after free. Added goto out, as done in the other nearby error handling code. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) /... 28 Mar 2010 12:21
video/sn9c102: improve error handling
Hi, this patch seems incomplete. You had an opening { wityhout the corresponding }. Best regards, Christophe Jaillet. "Dan Carpenter" <error27(a)gmail.com> a �crit dans le message de news:20100328115005.GW5069(a)bicker... Return an error if the controller is not found. Signed-off-by: Dan Carpenter <... 28 Mar 2010 12:21
video/et61x251: improve error handling
Hi, this patch seems incomplet. You had an opening { whitout the corresponding }. Best regards, Christophe Jaillet "Dan Carpenter" <error27(a)gmail.com> a �crit dans le message de news:20100328114945.GV5069(a)bicker... The original code doesn't handle the situation where the controller is not found. ... 28 Mar 2010 11:15
staging: winbond: wb35rx.c Coding style fixes v2.
On Sun 2010-03-28 08:38:57, Lars Lindley wrote: New patch that fixes an unclear comment too. I fixed checkpatch issues except for long lines and printk:s. I also removed version comments and the () in a return statement. Generated .o is identical to master and i checked the code with Dan Carpenters s... 28 Mar 2010 08:59
[PATCH] add random binaries to .gitignore
This patch adds random binaries to .gitignore -- Jan III Sobieski Signed-off-by: Jan III Sobieski <jan3sobi3ski(a)gmail.com> diff --git a/.gitignore b/.gitignore index a2939fc..b9b624b 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,14 @@ GTAGS *.orig *~ \#*# + +# random binary files +Docume... 28 Mar 2010 08:59
staging: winbond: wb35tx_f.h Coding style fixes.
On Sun 2010-03-28 08:57:55, Lars Lindley wrote: I fixed the checkpatch.pl problems and converted the function arguments away from CamelCase and hungarian notation. Signed-off-by: Lars Lindley <lindley(a)coyote.org> ack. --- drivers/staging/winbond/wb35tx_f.h | 18 ++++++++++-------- 1 files ... 28 Mar 2010 08:59
[patch] iwlwifi: range checking issue
IWL_RATE_COUNT is 13 and IWL_RATE_COUNT_LEGACY is 12. IWL_RATE_COUNT_LEGACY is the right one here because iwl3945_rates doesn't support 60M and also that's how "rates" is defined in iwlcore_init_geos() from drivers/net/wireless/iwlwifi/iwl-core.c. rates = kzalloc((sizeof(struct ieee80211_rate) * IWL_RAT... 28 Mar 2010 08:59
[patch] video/sn9c102: improve error handling
Return an error if the controller is not found. Signed-off-by: Dan Carpenter <error27(a)gmail.com> diff --git a/drivers/media/video/sn9c102/sn9c102_core.c b/drivers/media/video/sn9c102/sn9c102_core.c index cbf8087..28e19da 100644 --- a/drivers/media/video/sn9c102/sn9c102_core.c +++ b/drivers/media/video/sn9c102/... 28 Mar 2010 08:59
Hardware performance events are not counted by "perf" in a 2.6.31.12 KVM guest
On Fri, Mar 26, 2010 at 10:03:10PM -0400, Naresh Rapolu wrote: "perf" tool does not count hardware performance events ( cache misses etc) in a KVM guest ( Ubuntu 9.10 karmic, 2.6.31-14-generic kernel) on Xeon 5530 quad-core. The host is 2.6.28 kernel , Ubuntu 8.04 LTS, Hardy. The KVM gues... 28 Mar 2010 08:58
[patch] hpani: using the wrong variable
We're updating the "HpPriv->ani" array here so we should use that to determine the end of the for loop. "HpPriv->ani" has 50 elements and "wd->regulationTable.allowChannel" has 59 elements. Signed-off-by: Dan Carpenter <error27(a)gmail.com> diff --git a/drivers/staging/otus/hal/hpani.c b/drivers/staging/otus/ha... 28 Mar 2010 07:53