|
perf symbols: fixup kernel_maps__fixup_end end map
|
| |
...We better call this routine after both the kernel and modules are loaded, because as it was if there weren't modules it would be called, resulting in kernel_map->end remaining at zero, so no map would be found and consequently the kernel symtab wouldn't get loaded, i.e. no kernel symbols would be resolved.... more »
|
|
perf symbols: Old versions of elf.h don't have NT_GNU_BUILD_ID
|
| |
...Cc: Frédéric Weisbecker <fweis...@gmail.com> Cc: Mike Galbraith <efa...@gmx.de> Cc: Peter Zijlstra <a.p.zijls...@chello.nl> Cc: Paul Mackerras <pau...@samba.org> Signed-off-by: Arnaldo Carvalho de Melo <a...@redhat.com> --- tools/perf/util/symbol.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)... more »
|
|
fs/ceph: Move a dereference below a NULL test
|
| |
...If the NULL test is necessary, then the dereference should be moved below the NULL test. The semantic patch that makes this change is as follows: ([link]). // <smpl> @@ type T; expression E; identifier i,fld; statement S; @@ - T i = E->fld; + T i; ... when != E when != i... more »
|
|
JFFS2: min/max confusion?
|
| |
MAX_SUMMARY_SIZE was meant as a limit, not as a minimum Signed-off-by: Roel Kluin <roel.kl...@gmail.com> --- fs/jffs2/summary.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) unless I am mistaken? diff --git a/fs/jffs2/summary.c b/fs/jffs2/summary.c index 6caf1e1..800171d 100644 --- a/fs/jffs2/summary.c... more »
|
|
cxacru: return an empty value for modulation if there is no connection
|
| |
When there is no connection, return an empty string instead of "0" for the connection modulation. Signed-off-by: Simon Arlott <si...@fire.lp0.eu> --- Documentation/networking/cxacr u.txt | 1 + drivers/usb/atm/cxacru.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Documentation/networking/cxa cru.txt b/Documentation/networking/cxa cru.txt... more »
|
|
2.6.32-rc8-git1: Reported regressions 2.6.30 -> 2.6.31
|
| |
This message contains a list of some regressions introduced between 2.6.30 and 2.6.31, for which there are no fixes in the mainline I know of. If any of them have been fixed already, please let me know. If you know of any other unresolved regressions introduced between 2.6.30 and 2.6.31, please let me know either and I'll add them to the list.... more »
|
|
drivers/usb/wusbcore: introduce missing usb_free_urb
|
| |
...Error handling code following a usb_alloc_urb should free the allocated data. The semantic match that finds this problem is as follows: ([link]) // <smpl> @r exists@ local idexpression x; statement S; expression E; identifier f,f1,l; position p1,p2; expression *ptr != NULL;... more »
|
|
imx: bit &/| confusion
|
| |
since UCR1_UARTEN is defined 1, the port was always treated as enabled. Signed-off-by: Roel Kluin <roel.kl...@gmail.com> --- diff --git a/drivers/serial/imx.c b/drivers/serial/imx.c index 18130f1..60d665a 100644 --- a/drivers/serial/imx.c +++ b/drivers/serial/imx.c @@ -1088,7 +1088,7 @@ imx_console_get_options(struct imx_port *sport, int *baud,... more »
|
|
2.6.32-rc8-git1: Reported regressions from 2.6.31
|
| |
This message contains a list of some regressions from 2.6.31, for which there are no fixes in the mainline I know of. If any of them have been fixed already, please let me know. If you know of any other unresolved regressions from 2.6.31, please let me know either and I'll add them to the list. Also, please let me know if any of the... more »
|
|
|