id
stringlengths
40
40
instruction
stringlengths
68
308
input
stringlengths
17
33.4k
output
stringlengths
100
30k
2f7055c5932ecc02159be375ebda1eee64665d17
Analyze and fix the following issue in the Linux kernel code: [MIPS] MIPSsim: Fix booting from NFS root
Problem Details: MIPSsim probably doesn't have any sort of environment, but writing a zero in it kills even the compiled in command line. This prevents booting via NFS root. Signed-Off-By: Thiemo Seufer <ths@networkno.de> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
```diff diff --git a/arch/mips/mipssim/sim_cmdline.c b/arch/mips/mipssim/sim_cmdline.c index c63021a5dc6c..74240e1ce5a5 100644 --- a/arch/mips/mipssim/sim_cmdline.c +++ b/arch/mips/mipssim/sim_cmdline.c @@ -28,8 +28,5 @@ char * __init prom_getcmdline(void) void __init prom_init_cmdline(void) { - char *cp; - cp = a...
a5ccfe5c1a48bff1e47788d470ee50974f7dd33d
Analyze and fix the following issue in the Linux kernel code: [MIPS] Lasat: Fix build by conversion to irq_cpu.c.
Problem Details: Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
```diff diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index f921235239f9..235d4514e0a9 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -133,6 +133,7 @@ config LASAT select DMA_NONCOHERENT select SYS_HAS_EARLY_PRINTK select HW_HAS_PCI + select IRQ_CPU select PCI_GT64XXX_PCI0 select MIPS_NILE4 ...
eae23f2c2ac1e44f84a5f932eaad6a0dacd179d5
Analyze and fix the following issue in the Linux kernel code: [MIPS] IP22: Fix warning.
Problem Details: CC arch/mips/sgi-ip22/ip22-berr.o arch/mips/sgi-ip22/ip22-berr.c: In function 'ip22_be_interrupt': arch/mips/sgi-ip22/ip22-berr.c:100: warning: passing argument 2 of 'die_if_kernel' discards qualifiers from pointer target type Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
```diff diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index 632bce1bf420..9c0c478d71ac 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c @@ -104,7 +104,7 @@ static int __init set_raw_show_trace(char *str) __setup("raw_show_trace", set_raw_show_trace); #endif -static void show_b...
754d0f239ddb35682aa322b57b7fa4a8efd2fb54
Analyze and fix the following issue in the Linux kernel code: [MIPS] IP22: Complain if requesting the front panel irq failed.
Problem Details: This fixes the warning: CC arch/mips/sgi-ip22/ip22-reset.o arch/mips/sgi-ip22/ip22-reset.c: In function 'reboot_setup': arch/mips/sgi-ip22/ip22-reset.c:239: warning: ignoring return value of 'request_irq', declared with attribute warn_unused_result Signed-off-by: Ralf Baechle <ralf@linux-mips....
```diff diff --git a/arch/mips/sgi-ip22/ip22-reset.c b/arch/mips/sgi-ip22/ip22-reset.c index 63afd7e44428..a435b31cf031 100644 --- a/arch/mips/sgi-ip22/ip22-reset.c +++ b/arch/mips/sgi-ip22/ip22-reset.c @@ -232,11 +232,18 @@ static struct notifier_block panic_block = { static int __init reboot_setup(void) { + int r...
603bb99c8bca114fcd586271b19fa9fe65877b62
Analyze and fix the following issue in the Linux kernel code: [MIPS] vmlinux.lds.S: Fix handling of .notes in final link.
Problem Details: Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
```diff diff --git a/arch/mips/kernel/vmlinux.lds.S b/arch/mips/kernel/vmlinux.lds.S index 03ad46e24563..33581387d662 100644 --- a/arch/mips/kernel/vmlinux.lds.S +++ b/arch/mips/kernel/vmlinux.lds.S @@ -5,6 +5,10 @@ #define mips mips OUTPUT_ARCH(mips) ENTRY(kernel_entry) +PHDRS { + text PT_LOAD FLAGS(7); /* RWX */ +...
dd67b1556ebea118b40986cdb8e70874b5454442
Analyze and fix the following issue in the Linux kernel code: [MIPS] IP32: Fix build by conversion to irq_cpu.c.
Problem Details: Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
```diff diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index f943736541cb..f921235239f9 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -410,6 +410,7 @@ config SGI_IP32 select BOOT_ELF32 select DMA_NONCOHERENT select HW_HAS_PCI + select IRQ_CPU select R5000_CPU_SCACHE select RM7000_CPU_SCACHE ...
e744fdea546abf7a794898a99a26f85c63a83648
Analyze and fix the following issue in the Linux kernel code: scsi_mac.h: Define AUTOSENSE before include of NCR5380.h
Problem Details: - Previese patch to NCR5380 broke scsi_mac because AUTOSENSE was defined after the inclusion of NCR5380.h. Fix it Signed-off-by: Boaz Harrosh <bharrosh@panasas.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/drivers/scsi/mac_scsi.c b/drivers/scsi/mac_scsi.c index cdbcaa5ad6cf..abe2bda6ac37 100644 --- a/drivers/scsi/mac_scsi.c +++ b/drivers/scsi/mac_scsi.c @@ -53,6 +53,11 @@ #include "scsi.h" #include <scsi/scsi_host.h> #include "mac_scsi.h" + +/* These control the behaviour of the generic 5380 core ...
7111d2144f17155b66e89b3655fcddbedefcf8a6
Analyze and fix the following issue in the Linux kernel code: [CIFS]
Problem Details: [CIFS] fix error message about packet signing When packet signing is disabled and the server requires it, cifs prints an error message. The current message refers to a file in /proc that no longer exists. Fix it to refer to the correct file. Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-...
```diff diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index b17983633a1c..9eef72492504 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -661,8 +661,8 @@ signing_check: cFYI(1, ("Signing disabled")); if (server->secMode & SECMODE_SIGN_REQUIRED) cERROR(1, ("Server requires " - "/proc/fs/cifs...
a56daeb7d5c9a05b1cb52ae4bcca05fb6545656e
Analyze and fix the following issue in the Linux kernel code: net/sunrpc/xprtrdma/verbs.c printk warning fix
Problem Details: sparc64: net/sunrpc/xprtrdma/verbs.c:1264: warning: long long unsigned int format, u64 arg (arg 3) net/sunrpc/xprtrdma/verbs.c:1264: warning: long long unsigned int format, u64 arg (arg 4) Cc: Trond Myklebust <trond.myklebust@fys.uio.no> Cc: "David S. Miller" <davem@davemloft.net> Cc: "J. Bruce Field...
```diff diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c index 9ec8ca4f6028..44b0fb942e8d 100644 --- a/net/sunrpc/xprtrdma/verbs.c +++ b/net/sunrpc/xprtrdma/verbs.c @@ -1263,7 +1263,8 @@ rpcrdma_register_internal(struct rpcrdma_ia *ia, void *va, int len, dprintk("RPC: %s: phys convert: 0...
b738b990468d2acd5be7fe177fb750448bfa0b37
Analyze and fix the following issue in the Linux kernel code: tgafb: fix an out-of-range shift in mono imageblit
Problem Details: The pixel mask calculation in tgafb_mono_imageblit() uses a variable left-shift on a 32-bit data type by up to 32. Shifting by the width of a data type or more produces an unpredictable result according to the C standard. Rather than widening the data type this fix makes sure the count is between 0 a...
```diff diff --git a/drivers/video/tgafb.c b/drivers/video/tgafb.c index d292a37ec7d6..5539f4d9cb74 100644 --- a/drivers/video/tgafb.c +++ b/drivers/video/tgafb.c @@ -5,7 +5,7 @@ * Copyright (C) 1997 Geert Uytterhoeven * Copyright (C) 1999,2000 Martin Lucina, Tom Zerucha * Copyright (C) 2002 Richard Henderson - *...
4d8a2d986d3ee3ece9c3cefbb23425a22132492c
Analyze and fix the following issue in the Linux kernel code: fbcon: delay the start of the cursor timer until a con_switch()
Problem Details: As reported in Bugzilla Bug 9093, upon switching to X, a small rectangular cursor can still be seen blinking in the upper left part of the screen. It is fbcon's text cursor. This is caused by a strange ioctl(..., KDSETMODE, KD_TEXT) call done by something in userspace, perhaps by X itself, while the ...
```diff diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index 97a0224a0cf0..0f32f4a00b2d 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c @@ -2405,7 +2405,7 @@ static int fbcon_blank(struct vc_data *vc, int blank, int mode_switch) update_screen(vc); } - i...
15afdd433610c4ba0edf1f8a59915b3755af7365
Analyze and fix the following issue in the Linux kernel code: fbdev: copyarea function taught to fully support swapped pixel order in byte
Problem Details: This correct case, when source and destination X coordinates difference is n multiple of pixels in byte. This is probably rare case, but this case should supported for completeness. Reorganization of FB_READL and FB_WRITEL calls results in code size decrease for normal build without swapping support ...
```diff diff --git a/drivers/video/cfbcopyarea.c b/drivers/video/cfbcopyarea.c index 1c67885a1f4f..b07e419b12d2 100644 --- a/drivers/video/cfbcopyarea.c +++ b/drivers/video/cfbcopyarea.c @@ -94,29 +94,34 @@ bitcpy(unsigned long __iomem *dst, int dst_idx, const unsigned long __iomem *src FB_WRITEL( comp( FB_READL(s...
d4b766a0bdab8d07b720c8d0a84292949a7d58bd
Analyze and fix the following issue in the Linux kernel code: svgalib: mode selection updates
Problem Details: This patch changes mode selection matching algorithm. It allows to choose mode with matching depth even when requested color lengths are greater than color lengths of every mode with requested color depth. It also fixes bug in s3fb - wrong error value returned when format is not supported by chip. S...
```diff diff --git a/drivers/video/s3fb.c b/drivers/video/s3fb.c index d11735895a01..a96ac4392173 100644 --- a/drivers/video/s3fb.c +++ b/drivers/video/s3fb.c @@ -403,8 +403,13 @@ static int s3fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) /* Find appropriate format */ rv = svga_match_format (s...
2ce32e15a16312d2c29c8bb188bf95bc821fdab6
Analyze and fix the following issue in the Linux kernel code: ps3fb: fix possible overlap of GPU command buffer and frame buffer
Problem Details: ps3fb: In the case of non-fullscreen video modes, there was a partial overlap of the GPU command buffer and the frame buffer. Fix and cleanup various issues with overlap and alignment: - Move the GPU command buffer from the beginning to the end of video memory - Exclude the GPU command buffer from ...
```diff diff --git a/drivers/video/ps3fb.c b/drivers/video/ps3fb.c index 4885978dd5be..8bbe479f73f7 100644 --- a/drivers/video/ps3fb.c +++ b/drivers/video/ps3fb.c @@ -52,7 +52,7 @@ #define L1GPU_DISPLAY_SYNC_VSYNC 2 #define DDR_SIZE (0) /* used no ddr */ -#define GPU_OFFSET (64 * 1024) +#define GPU_CMD_BUF_S...
eea820ab0b189d74620dca376817a2e599eb1ab1
Analyze and fix the following issue in the Linux kernel code: ps3av: eliminate PS3AV_DEBUG
Problem Details: ps3av: eliminate PS3AV_DEBUG - Move ps3av_cmd_av_monitor_info_dump from ps3av_cmd.c to ps3av.c, as it's used there only - Integrate ps3av_cmd_av_hw_conf_dump() into its sole user - Use pr_debug() for printing debug info Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> Signe...
```diff diff --git a/drivers/ps3/ps3av.c b/drivers/ps3/ps3av.c index a1f63cb849d2..c1bcad66ce75 100644 --- a/drivers/ps3/ps3av.c +++ b/drivers/ps3/ps3av.c @@ -656,6 +656,64 @@ static int ps3av_hdmi_get_vid(struct ps3av_info_monitor *info) return vid; } +static void ps3av_monitor_info_dump(const struct ps3av_pkt_av...
e9fa7c43aa74fae3a1db04092d2a51005f5b8a21
Analyze and fix the following issue in the Linux kernel code: bf54x-lq043fb: framebuffer driver for Blackfin BF54x framebuffer device driver
Problem Details: Blackfin BF54x framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD [adaplas] Add 'fb' suffix to driver name. Move Makefile entry under platform device section Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com> Signed-off-by: Antonino Da...
```diff diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 25c3903f598f..54db0991991c 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -544,6 +544,15 @@ config FB_VGA16 To compile this driver as a module, choose M here: the module will be called vga16fb. +config FB_BF54X_LQ043 +...
accaa24c492f1aa3b9c37226d868dc59c3007531
Analyze and fix the following issue in the Linux kernel code: fbcon: logo: disable logo at boot
Problem Details: Add logo.nologo kernel boot option to disable the logo in order to provide more screen space for kernel messages; especially useful when debugging and screen space is more critical. newport_con driver changes are untested. [akpm@linux-foundation.org: cleanups, coding-style fixes] Signed-off-by: Randy...
```diff diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 760ed5776174..eb247997f679 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt @@ -911,6 +911,11 @@ and is between 256 and 4096 characters. It is defined in the file n must be ...
e400b6ec4ede4dc0aa8e5640425df5b29796fe0e
Analyze and fix the following issue in the Linux kernel code: vt/vgacon: Check if screen resize request comes from userspace
Problem Details: Various console drivers are able to resize the screen via the con_resize() hook. This hook is also visible in userspace via the TIOCWINSZ, VT_RESIZE and VT_RESIZEX ioctl's. One particular utility, SVGATextMode, expects that con_resize() of the VGA console will always return success even if the result...
```diff diff --git a/drivers/char/vt.c b/drivers/char/vt.c index edb7002a3216..0d56f8fc105c 100644 --- a/drivers/char/vt.c +++ b/drivers/char/vt.c @@ -750,13 +750,15 @@ int vc_allocate(unsigned int currcons) /* return 0 on success */ return 0; } -static inline int resize_screen(struct vc_data *vc, int width, int h...
0058f479e52d0c0718c843cb34223bc1bfce36e1
Analyze and fix the following issue in the Linux kernel code: video gfx: fix menu ordering
Problem Details: Move video graphics driver configs to fix menus: Fix FB_PMAGB_B to depend on FB so that the FB menus remain listed in order and indented correctly. Fix FB_IBM_GXT4500 to depend on FB so that the FB menus remain listed in order and indented correctly. The OMAP FB drivers still muck up the FB menu a...
```diff diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 2cf6147aefc2..25c3903f598f 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -1820,7 +1820,7 @@ config FB_PNX4008_DUM_RGB config FB_IBM_GXT4500 tristate "Framebuffer support for IBM GXT4500P adaptor" - depends on PPC + depends...
28ea28a6be33dd7ce00f0d599bd245e5ce37ca1c
Analyze and fix the following issue in the Linux kernel code: drivers/video/Kconfig: Fix FB_PMAGB_B dependencies
Problem Details: Add a missing FB dependency to FB_PMAGB_B. Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 5c1ef0938006..2cf6147aefc2 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -1652,7 +1652,7 @@ config FB_PMAG_BA config FB_PMAGB_B tristate "PMAGB-B TURBOchannel framebuffer support" - depends on TC + depends on FB && TC s...
3cbe9cff92a52a2c2dd4767292b97884b67afe36
Analyze and fix the following issue in the Linux kernel code: tdfxfb: checkpatch fixes
Problem Details: This patch fixes all errors pointed by the checkpatch.pl script. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/drivers/video/tdfxfb.c b/drivers/video/tdfxfb.c index faac9b469ea9..057bdd593800 100644 --- a/drivers/video/tdfxfb.c +++ b/drivers/video/tdfxfb.c @@ -4,7 +4,7 @@ * * Author: Hannu Mallat <hmallat@cc.hut.fi> * - * Copyright 1999 Hannu Mallat + * Copyright © 1999 Hannu Mallat * All rights re...
c95344a557099f4e4a9fd05b6145a72541b2158a
Analyze and fix the following issue in the Linux kernel code: ps3fb: Fix spurious mode change failures
Problem Details: ps3fb: Add a `mode' parameter to ps3fb_get_res_table(), as in some cases it should check the full-screen flag of the _new_ video mode instead of the current video mode. This bug caused spurious mode change failures when switching between fullscreen and non-fullscreen modes using fbset, while ps3-video...
```diff diff --git a/drivers/video/ps3fb.c b/drivers/video/ps3fb.c index e0beb979cecb..c9037e984f8b 100644 --- a/drivers/video/ps3fb.c +++ b/drivers/video/ps3fb.c @@ -303,13 +303,13 @@ module_param(ps3fb_mode, int, 0); static char *mode_option __devinitdata; -static int ps3fb_get_res_table(u32 xres, u32 yres) +sta...
8ca0bf750b7d9b7e859f2f40516b914827e7afd8
Analyze and fix the following issue in the Linux kernel code: ps3: Fix black and white stripes
Problem Details: Fix the black and white stripes issue with WUXGA monitor via HDMI. It seems that when we use a VESA resolution from boot up, the AV settings driver could not be initialized correctly. In that case we need a dummy packet before VESA setting. [Geert] Refactored to reduce code duplication. Signed-off-...
```diff diff --git a/drivers/ps3/ps3av.c b/drivers/ps3/ps3av.c index 85e21614f868..a1f63cb849d2 100644 --- a/drivers/ps3/ps3av.c +++ b/drivers/ps3/ps3av.c @@ -491,10 +491,10 @@ static int ps3av_set_videomode(void) return 0; } -static void ps3av_set_videomode_cont(u32 id, u32 old_id) +static void ps3av_set_videomod...
3c03ec209af1dd8223888630482f1b2353dc6284
Analyze and fix the following issue in the Linux kernel code: nvidiafb: Add boot option to reverse i2c port assignment
Problem Details: There are a few nvidia hardware where the i2c port assignments are reversed, i.e., the 1st i2c port is assigned to the secondary display and the 2nd i2c port to the primary display. In most cases, if only 1 display is attached, or if only 1 flatpanel and 1 analog display is attached, the port reversal...
```diff diff --git a/drivers/video/nvidia/nv_i2c.c b/drivers/video/nvidia/nv_i2c.c index afe4567e1ff4..0cbcb3d833fb 100644 --- a/drivers/video/nvidia/nv_i2c.c +++ b/drivers/video/nvidia/nv_i2c.c @@ -125,11 +125,11 @@ void nvidia_create_i2c_busses(struct nvidia_par *par) par->chan[1].par = par; par->chan[2].par = pa...
68e5e9d734503695915734e50e9427624cf8f3b2
Analyze and fix the following issue in the Linux kernel code: vfb: make virtual framebuffer mmapable
Problem Details: Changed things: 1. vmalloc()/vfree() replaced with rvmalloc()/rvfree() (taken from drivers/media/video/se401.c) 2. mmap method implemented (mostly taken from drivers/media/video/se401.c) 3. smem_start and smem_len fields of struct fb_fix_screeninfo initialized. (smem_start initialized with vi...
```diff diff --git a/drivers/video/vfb.c b/drivers/video/vfb.c index 02cfc6a45b0d..072638a9528a 100644 --- a/drivers/video/vfb.c +++ b/drivers/video/vfb.c @@ -37,6 +37,48 @@ static void *videomemory; static u_long videomemorysize = VIDEOMEMSIZE; module_param(videomemorysize, ulong, 0); +/***************************...
1ddc28d7e7cb5f501e224a5868d34442c6203eb1
Analyze and fix the following issue in the Linux kernel code: pm2fb: panning and hardware cursor fixes
Problem Details: This patch: - disallows setting of virtual height above 2048 as it does not work for accelerated copyarea and imageblit - fixes blinking of pm2v cursor by pushing cursor outside the display (x=2047) - fixes hardware cursor position on Permedia 2 chips with panning enabled - enables hardware curso...
```diff diff --git a/drivers/video/pm2fb.c b/drivers/video/pm2fb.c index 20476f4c43ae..9db1f2e1dadf 100644 --- a/drivers/video/pm2fb.c +++ b/drivers/video/pm2fb.c @@ -66,7 +66,7 @@ /* * Driver data */ -static int hwcursor; +static int hwcursor = 1; static char *mode __devinitdata; /* @@ -587,6 +587,11 @@ stati...
0ff1edeef222ebed71499135a8cc259b107d85fd
Analyze and fix the following issue in the Linux kernel code: cirrusfb: code improvement 2nd part
Problem Details: This patch removes: - redundant fields from the cirrusfb_regs structure - one redundant header - fixes two includes ("" to <>) Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: L...
```diff diff --git a/drivers/video/cirrusfb.c b/drivers/video/cirrusfb.c index 56306658c01e..ce22bf5de350 100644 --- a/drivers/video/cirrusfb.c +++ b/drivers/video/cirrusfb.c @@ -45,7 +45,6 @@ #include <linux/delay.h> #include <linux/fb.h> #include <linux/init.h> -#include <linux/selection.h> #include <asm/pgtable....
69816699fa019145dd163949d65a07093af73b67
Analyze and fix the following issue in the Linux kernel code: s3c2410fb: adds pixclock to s3c2410fb_display
Problem Details: This patch adds pixelclock field to the s3c2410fb_display structure and make use of it in the driver. The Bast machine defined 9 modes but pixclock and margin values are defined only for the 640x480 modes so I removed other modes. This patch also fixes wrong display type constant for the SMDK2440 boa...
```diff diff --git a/arch/arm/mach-s3c2410/mach-amlm5900.c b/arch/arm/mach-s3c2410/mach-amlm5900.c index c4754226874d..a86d68d22a72 100644 --- a/arch/arm/mach-s3c2410/mach-amlm5900.c +++ b/arch/arm/mach-s3c2410/mach-amlm5900.c @@ -174,6 +174,7 @@ static struct s3c2410fb_display __initdata amlm5900_lcd_info = { .typ...
9fa7bc016a688630386378c205f9ee0f7b2cc834
Analyze and fix the following issue in the Linux kernel code: s3c2410fb: source code improvements
Problem Details: This patch: - moves more display mode preparations to s3c2410fb_check_var() - reduces number of fields in s3c2410fb_info - removes redundant values setting in s3c2410fb_probe() - removes static mach_info pointer - releases fb_info structure in s3c2410fb_remove() - changes s3c2410fb_init to __init from ...
```diff diff --git a/drivers/video/s3c2410fb.c b/drivers/video/s3c2410fb.c index 2ecf7717491f..09d19633d3bc 100644 --- a/drivers/video/s3c2410fb.c +++ b/drivers/video/s3c2410fb.c @@ -20,7 +20,7 @@ * * 2004-12-04: Arnaud Patard <arnaud.patard@rtp-net.org> * - Added the possibility to set on or off the - * ...
120c0b6d57257b2a3508d96bdaf54781935439f6
Analyze and fix the following issue in the Linux kernel code: vt: Fix warnings in selection.h
Problem Details: <linux/selection.h> assumes that struct tty_struct has previously been included. If not, this pile of warnings will result: CC [M] drivers/video/console/newport_con.o In file included from drivers/video/console/newport_con.c:18: include/linux/selection.h:16: warning: 'struct tty_struct' declared i...
```diff diff --git a/include/linux/selection.h b/include/linux/selection.h index f9457861937c..8cdaa1151d2e 100644 --- a/include/linux/selection.h +++ b/include/linux/selection.h @@ -13,6 +13,7 @@ struct tty_struct; extern struct vc_data *sel_cons; +struct tty_struct; extern void clear_selection(void); extern i...
908633f3ec8b3e10ef23de28ae6a5b1770118cfd
Analyze and fix the following issue in the Linux kernel code: fbcon: Convert struct font_desc to use ISO C initializers
Problem Details: Akpm's patch "newport_con warning fix" got me to look at the console drivers again and one thing that I noticed was that none of the fonts was using ISO initializers for it's fonts. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andr...
```diff diff --git a/drivers/video/console/font_10x18.c b/drivers/video/console/font_10x18.c index e6aa0eab5bb6..6be72bb218ee 100644 --- a/drivers/video/console/font_10x18.c +++ b/drivers/video/console/font_10x18.c @@ -5133,14 +5133,14 @@ static const unsigned char fontdata_10x18[FONTDATAMAX] = { const struct font...
93613b9fbea6e636d3af51c71fc1b9b2e7d4fb0c
Analyze and fix the following issue in the Linux kernel code: s3c2410fb: byte ordering fixes
Problem Details: This patch sets correct bits related to the byte ordering of the framebuffer. This was tested on little endian kernel only. The big endian kernel may require different settings. The patch also adds 32 bpp mode which is called 24 bpp by Samsung. One pixel takes 32 bits but only 24 bits are used in t...
```diff diff --git a/drivers/video/s3c2410fb.c b/drivers/video/s3c2410fb.c index 108d49e6884e..2ecf7717491f 100644 --- a/drivers/video/s3c2410fb.c +++ b/drivers/video/s3c2410fb.c @@ -265,8 +265,8 @@ static int s3c2410fb_check_var(struct fb_var_screeninfo *var, var->blue.length = 5; } break; - case 24: - /* 2...
7ee0fe41c3c4670ccea8ea180d178d2de3a46445
Analyze and fix the following issue in the Linux kernel code: s3c2410fb: fix missing registers offset
Problem Details: This patch adds missing virtual register offsets where appropriate. This fixes crashes in the driver. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@li...
```diff diff --git a/drivers/video/s3c2410fb.c b/drivers/video/s3c2410fb.c index e850f11488e1..108d49e6884e 100644 --- a/drivers/video/s3c2410fb.c +++ b/drivers/video/s3c2410fb.c @@ -123,6 +123,8 @@ static void s3c2410fb_set_lcdaddr(struct fb_info *info) { unsigned long saddr1, saddr2, saddr3; int line_length = in...
b0831941d59a80896c9b2a63a13ea063e31054a5
Analyze and fix the following issue in the Linux kernel code: s3c2410fb: code cleanup
Problem Details: This patch cleans up the driver a bit. It contains coding style fixes (pointed by Lindent and checkpatch), white space clean ups and few minor code improvements. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@lin...
```diff diff --git a/drivers/video/s3c2410fb.c b/drivers/video/s3c2410fb.c index 8a4c6470d799..f10310178e3e 100644 --- a/drivers/video/s3c2410fb.c +++ b/drivers/video/s3c2410fb.c @@ -31,8 +31,8 @@ * - add pixel clock divisor control * * 2004-11-11: Arnaud Patard <arnaud.patard@rtp-net.org> - * - Removed the use ...
42b558d51cb0c8a83a17f22b3ec4325176d1797e
Analyze and fix the following issue in the Linux kernel code: drivers/video/geode/lxfb_core.c: fix lxfb_setup warning
Problem Details: drivers/video/geode/lxfb_core.c: In function 'lxfb_setup': drivers/video/geode/lxfb_core.c:564: warning: unused variable 'opt' Signed-off-by: Eugene Teo <eugeneteo@kernel.sg> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torval...
```diff diff --git a/drivers/video/geode/lxfb_core.c b/drivers/video/geode/lxfb_core.c index 5e30b40c8c0f..583185fd7c94 100644 --- a/drivers/video/geode/lxfb_core.c +++ b/drivers/video/geode/lxfb_core.c @@ -566,12 +566,7 @@ static int __init lxfb_setup(char *options) if (!options || !*options) return 0; - while ...
57bac0f08a8b47a9d8e2ea60b2435dfc82dc3468
Analyze and fix the following issue in the Linux kernel code: pm3fb: checkpatch fixes
Problem Details: This patch fixes all errors detected by checkpatch.pl script in the pm3fb.c file. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/drivers/video/pm3fb.c b/drivers/video/pm3fb.c index 195bcdbc66b5..1c41a4e5bc99 100644 --- a/drivers/video/pm3fb.c +++ b/drivers/video/pm3fb.c @@ -44,9 +44,10 @@ #undef PM3FB_MASTER_DEBUG #ifdef PM3FB_MASTER_DEBUG -#define DPRINTK(a,b...) printk(KERN_DEBUG "pm3fb: %s: " a, __FUNCTION__ , ## b) +...
3843faa2caa463ec3738cb30fb03dc5be8ef3250
Analyze and fix the following issue in the Linux kernel code: pm2fb: checkpatch fixes
Problem Details: This patch fixes all errors detected by checkpatch.pl script in the pm2fb.c file. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/drivers/video/pm2fb.c b/drivers/video/pm2fb.c index 4b54e2776ca1..19cbde192956 100644 --- a/drivers/video/pm2fb.c +++ b/drivers/video/pm2fb.c @@ -55,9 +55,10 @@ #undef PM2FB_MASTER_DEBUG #ifdef PM2FB_MASTER_DEBUG -#define DPRINTK(a,b...) printk(KERN_DEBUG "pm2fb: %s: " a, __FUNCTION__ , ## b) +...
9d775e17b5b9a204a0cb746f1f7f6ef11f4d869d
Analyze and fix the following issue in the Linux kernel code: fbdev: Fix incorrect timings in some modedb entries
Problem Details: Reported by: John Lumby <johnlumby@hotmail.com> Some of the entries in the mode database does not match the comments and/or the refresh field. Adjust the timings so they match with both the comments and the refresh rate. Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton...
```diff diff --git a/drivers/video/modedb.c b/drivers/video/modedb.c index d351eed795b4..f7f9c087ad70 100644 --- a/drivers/video/modedb.c +++ b/drivers/video/modedb.c @@ -72,7 +72,7 @@ static const struct fb_videomode modedb[] = { 0, FB_VMODE_NONINTERLACED }, { /* 1152x864 @ 89 Hz interlaced, 44 kHz hsync */ -...
254c94710754127631a4e05d3131cef38c9996c7
Analyze and fix the following issue in the Linux kernel code: tdfxfb: palette fixes
Problem Details: This patch fixes: - palette setting in 8-bit mode (aka 'funky penguin') - grayscale handling - adds proper barriers in xxx_inb/outb functions Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> S...
```diff diff --git a/drivers/video/tdfxfb.c b/drivers/video/tdfxfb.c index 2566683cbfef..c032f6feb13e 100644 --- a/drivers/video/tdfxfb.c +++ b/drivers/video/tdfxfb.c @@ -35,7 +35,6 @@ * driver by Ilario Nardinocchi, which in turn is based on skeletonfb. * * TODO: - * - support for 16/32 bpp needs fixing (funky b...
92744dd517258181af0637105eed5f72d95e05e7
Analyze and fix the following issue in the Linux kernel code: tdfxfb: 3 fixes
Problem Details: This patch fixes 3 issues: - transparency handling in tdfxfb - panning with more than 4096 virtual height and acceleration (acceleration with x & y > 4096) - exit paths on errors in tdfxfb_probe() Additionally it sets a FBINFO_READS_FAST flag to use smart blitter scrolling (speed up on tdfxfb). Signe...
```diff diff --git a/drivers/video/tdfxfb.c b/drivers/video/tdfxfb.c index e6aced9df52d..2566683cbfef 100644 --- a/drivers/video/tdfxfb.c +++ b/drivers/video/tdfxfb.c @@ -502,6 +502,8 @@ static int tdfxfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) return -EINVAL; } + var->transp.offset = 0; +...
c1f303bb21a63ed11edfb790e5701ab0ded62eff
Analyze and fix the following issue in the Linux kernel code: sm501fb: update suspend and resume code
Problem Details: The suspend and resume code is failing to restore the CRT control register, thus causing the CRT data-path to get changed if the SM501 experiences a reset over suspend. Also move some of the debug messages to dev_dbg() level and ensure that the suspend code does not try and restore anything it did not...
```diff diff --git a/drivers/video/sm501fb.c b/drivers/video/sm501fb.c index c86df126f93a..fc0cdc830360 100644 --- a/drivers/video/sm501fb.c +++ b/drivers/video/sm501fb.c @@ -62,6 +62,8 @@ struct sm501fb_info { struct resource *regs_res; /* registers resource */ struct sm501_platdata_fb *pdata; /* our platform dat...
138a451cce3a48792b4c785557578138dc8a5cc3
Analyze and fix the following issue in the Linux kernel code: pm2fb: Permedia 2V initialization fixes
Problem Details: This patch: - initializes correctly the Permedia2V chip if it is not initialized by BIOS - puts back clock frequency for the ELSA WINNER board to 100kHz - fixes returned error values from setcolreg() function - uses more general classes for PCI ids Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Si...
```diff diff --git a/drivers/video/pm2fb.c b/drivers/video/pm2fb.c index 25431257e286..a5ccddc141a0 100644 --- a/drivers/video/pm2fb.c +++ b/drivers/video/pm2fb.c @@ -343,7 +343,7 @@ static void reset_card(struct pm2fb_par* p) static void reset_config(struct pm2fb_par* p) { - WAIT_FIFO(p, 52); + WAIT_FIFO(p, 53); ...
c79ba28cc0c55d1539a4b29d32c3620460a5ee52
Analyze and fix the following issue in the Linux kernel code: pm3fb: 3 small fixes
Problem Details: This patch contains 3 small improvements: - it corrects scan line width calculation in pm3fb_imageblit() - it corrects mmio mapping for big endian machines - it enables panning acceleration constants Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Antonino Daplas <adaplas@gmail.com> ...
```diff diff --git a/drivers/video/pm3fb.c b/drivers/video/pm3fb.c index 280d108f18d1..fb91b641aefe 100644 --- a/drivers/video/pm3fb.c +++ b/drivers/video/pm3fb.c @@ -558,7 +558,8 @@ static void pm3fb_imageblit(struct fb_info *info, const struct fb_image *image) while (height--) { - int width = ((image->width + ...
65faaeb359b4ed1991b32b381bf155fa9b85293f
Analyze and fix the following issue in the Linux kernel code: skeletonfb: wrong field name fix
Problem Details: This patch corrects name of the field. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Antonino Daplas <adaplas@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/drivers/video/skeletonfb.c b/drivers/video/skeletonfb.c index 64779e70408f..62321458f71a 100644 --- a/drivers/video/skeletonfb.c +++ b/drivers/video/skeletonfb.c @@ -780,7 +780,7 @@ static int __devinit xxxfb_probe(struct pci_dev *dev, * * NOTE: This field is currently unused. */ ...
05440dfcfcabde6fcf7297dfa5a29f0355b78ffb
Analyze and fix the following issue in the Linux kernel code: rtc-cmos probe() cleanup
Problem Details: Some cleanups for the rtc-cmos probe logic: - Claim i/o ports with request_region() not request_resource(), for better coexistence betwen platform and pnp bus glues. - Claim those ports earlier, to help work around procfs bugs (it allows duplicate names, like /proc/driver/rtc). - Fix some g...
```diff diff --git a/drivers/rtc/rtc-cmos.c b/drivers/rtc/rtc-cmos.c index 6d0c35397b49..e3fe83a23cf7 100644 --- a/drivers/rtc/rtc-cmos.c +++ b/drivers/rtc/rtc-cmos.c @@ -433,6 +433,19 @@ cmos_do_probe(struct device *dev, struct resource *ports, int rtc_irq) if (!ports) return -ENODEV; + /* Claim I/O ports ASAP,...
0e36a9a4a788e4e92407774df76c545910810d35
Analyze and fix the following issue in the Linux kernel code: rtc: fix readback from /sys/class/rtc/rtc?/wakealarm
Problem Details: Fix readback of RTC alarms on platforms which return -1 in non-hardware-supported RTC alarm fields. To fill in the missing (-1) values, we grab an RTC timestamp along with the RTC alarm value, and use the timestamp fields to populate the missing alarm fields. To counter field-wrap races (since the ti...
```diff diff --git a/drivers/rtc/interface.c b/drivers/rtc/interface.c index 8adcab3c3653..de0da545c7a1 100644 --- a/drivers/rtc/interface.c +++ b/drivers/rtc/interface.c @@ -100,7 +100,7 @@ int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs) } EXPORT_SYMBOL_GPL(rtc_set_mmss); -int rtc_read_alarm(struct rt...
d691eb901e044065de10756ea78a5758d457c7fd
Analyze and fix the following issue in the Linux kernel code: RTC: periodic irq fix
Problem Details: Add kernel/kernel and kernel/user locking for the periodic irq feature of the rtc class. PIE ioctls are also supported. Signed-off-by: Alessandro Zummo <a.zummo@towertech.it> Cc: David Brownell <david-b@pacbell.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvald...
```diff diff --git a/drivers/rtc/class.c b/drivers/rtc/class.c index 10ab3b71ffc6..4dfdf019fccc 100644 --- a/drivers/rtc/class.c +++ b/drivers/rtc/class.c @@ -153,6 +153,7 @@ struct rtc_device *rtc_device_register(const char *name, struct device *dev, mutex_init(&rtc->ops_lock); spin_lock_init(&rtc->irq_lock); sp...
d6a13c17164fccab8aa96ca435ddacbf428335ca
Analyze and fix the following issue in the Linux kernel code: eCryptfs: fix data types
Problem Details: Update data types and add casts in order to avoid potential overflow issues. Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 26070d69e59a..9408ea484164 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -149,7 +149,7 @@ out: * ecryptfs_derive_iv * @iv: destination for the derived iv vale * @crypt_stat: Pointer to crypt_stat struct for the current inode ...
cf81f89d9a85b1825d8c8cf1f8f0e2c98cc72823
Analyze and fix the following issue in the Linux kernel code: ecryptfs: fix error handling
Problem Details: The error paths and the module exit code need work. sysfs unregistration is not the right place to tear down the crypto subsystem, and the code to undo subsystem initializations on various error paths is unnecessarily duplicated. This patch addresses those issues. Signed-off-by: Michael Halcrow <mhalc...
```diff diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c index 00686f1c5997..49545951912f 100644 --- a/fs/ecryptfs/main.c +++ b/fs/ecryptfs/main.c @@ -799,13 +799,6 @@ out: static void do_sysfs_unregistration(void) { - int rc; - - rc = ecryptfs_destroy_crypto(); - if (rc) { - printk(KERN_ERR "Failure whilst at...
45eaab79678b9e27e08f0cf250eb2df9d6a48df0
Analyze and fix the following issue in the Linux kernel code: eCryptfs: remove header_extent_size
Problem Details: There is no point to keeping a separate header_extent_size and an extent_size. The total size of the header can always be represented as some multiple of the regular data extent size. [randy.dunlap@oracle.com: ecryptfs: fix printk format warning] Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com> S...
```diff diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 8e9b36df7881..9127b809044d 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -366,8 +366,8 @@ ecryptfs_extent_to_lwr_pg_idx_and_offset(unsigned long *lower_page_idx, int extents_per_page; bytes_occupied_by_headers_at_front = - (...
22e78fafbdf84883f70eb4944cf658fc23c4a1f4
Analyze and fix the following issue in the Linux kernel code: eCryptfs: kerneldoc fixes for crypto.c and keystore.c
Problem Details: Andrew Morton wrote: From: mhalcrow@us.ibm.com <mhalcrow@halcrow.austin.ibm.com> > > +/** > > + * decrypt_passphrase_encrypted_session_key - Decrypt the session key > > + * with the given auth_tok. > > * > > * Returns Zero on success; non-zero error otherwise. > > */ > > That comment purports to ...
```diff diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 6051dbfad0d3..7aa2f48978de 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -722,6 +722,11 @@ out: /** * decrypt_scatterlist + * @crypt_stat: Cryptographic context + * @dest_sg: The destination scatterlist to decrypt into + * @sr...
fcd12835666b059b95613778819eb3ae9bc73642
Analyze and fix the following issue in the Linux kernel code: eCryptfs: grammatical fix (destruct to destroy)
Problem Details: Andrew Morton wrote: > > +int ecryptfs_destruct_crypto(void) > > ecryptfs_destroy_crypto would be more grammatically correct ;) Grammatical fix for some function names. Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus T...
```diff diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 76bba7384d51..6051dbfad0d3 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -213,12 +213,12 @@ ecryptfs_init_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat) } /** - * ecryptfs_destruct_crypt_stat + * ecryptfs_destroy_crypt_stat...
c59c2eb53f002de96f48dbc51e4f3bd946cf2458
Analyze and fix the following issue in the Linux kernel code: eCryptfs: remove unnecessary BUG_ON
Problem Details: Andrew Morton wrote: > > + mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex); > > + BUG_ON(mount_crypt_stat->num_global_auth_toks == 0); > > + mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex); > > That's odd-looking. If it was a bug for num_global_auth_toks to be > zero,...
```diff diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 129ed13f8253..14cc1f57e7b0 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -1029,9 +1029,6 @@ int ecryptfs_new_file_context(struct dentry *ecryptfs_dentry) int rc = 0; ecryptfs_set_default_crypt_stat_vals(crypt_stat, mount_cryp...
81acbcd6c54c89a9eb09c1b9ca3bd952f6989c10
Analyze and fix the following issue in the Linux kernel code: ecryptfs: printk warning fixes
Problem Details: fs/ecryptfs/keystore.c: In function 'parse_tag_1_packet': fs/ecryptfs/keystore.c:557: warning: format '%d' expects type 'int', but argument 2 has type 'size_t' fs/ecryptfs/keystore.c: In function 'parse_tag_3_packet': fs/ecryptfs/keystore.c:690: warning: format '%d' expects type 'int', but argument 2 h...
```diff diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index 190e2a01d8bd..778bdf9e0502 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c @@ -554,7 +554,7 @@ parse_tag_1_packet(struct ecryptfs_crypt_stat *crypt_stat, goto out_free; } if (unlikely(body_size < (ECRYPTFS_SIG_SIZE + 2)))...
ca939e79e395ce2b9ffb8e97763024b61b1e2ad8
Analyze and fix the following issue in the Linux kernel code: eCryptfs: update comment and debug statement
Problem Details: Trivial updates to comment and debug statement. Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 4f7d89591970..129ed13f8253 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -1267,8 +1267,6 @@ static int ecryptfs_read_header_region(char *data, struct dentry *dentry, lower_file->f_pos = 0; oldfs = get_fs(); set_fs(get_ds()); ...
146a46063b282375015d4b2dad4a94f206bbea4e
Analyze and fix the following issue in the Linux kernel code: eCryptfs: fix Tag 11 writing code
Problem Details: Fix up the Tag 11 writing code to handle size limits and boundaries more explicitly. It looks like the packet length was 1 shorter than it should have been, chopping off the last byte of the key identifier. This is largely inconsequential, since it is not much more likely that a key identifier collis...
```diff diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index aedff506899e..190e2a01d8bd 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c @@ -1449,47 +1449,52 @@ out: * Returns zero on success; non-zero on error. */ static int -write_tag_11_packet(char *dest, int max, char *contents, s...
f648104a0d44d7c551f8025ad7e50c4815d3b6eb
Analyze and fix the following issue in the Linux kernel code: eCryptfs: fix Tag 11 parsing code
Problem Details: Fix up the Tag 11 parsing code to handle size limits and boundaries more explicitly. Pay attention to *8* bytes for the key identifier (literal data), no more, no less. Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus T...
```diff diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index 72086141a6e8..aedff506899e 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c @@ -803,82 +803,60 @@ parse_tag_11_packet(unsigned char *data, unsigned char *contents, (*packet_size) = 0; (*tag_11_contents_size) = 0; - - /* che...
c59becfceea8de57c35a3de5ee45a7bb883cf90a
Analyze and fix the following issue in the Linux kernel code: eCryptfs: fix Tag 3 parsing code
Problem Details: Fix up the Tag 3 parsing code to handle size limits and boundaries more explicitly. Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index f7debe6961d1..72086141a6e8 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c @@ -643,22 +643,30 @@ parse_tag_3_packet(struct ecryptfs_crypt_stat *crypt_stat, (*packet_size) = 0; (*new_auth_tok) = NULL; - - /* we check that: ...
132181796af08273ab9fa835420b9f5f78d70234
Analyze and fix the following issue in the Linux kernel code: eCryptfs: fix Tag 1 parsing code
Problem Details: Fix up the Tag 1 parsing code to handle size limits and boundaries more explicitly. Initialize the new auth_tok's flags. Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com> Cc: Josef Sipek <jsipek@fsl.cs.sunysb.edu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torval...
```diff diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index 8eb0746313d0..f7debe6961d1 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c @@ -512,72 +512,64 @@ parse_tag_1_packet(struct ecryptfs_crypt_stat *crypt_stat, (*packet_size) = 0; (*new_auth_tok) = NULL; - - /* we check that: ...
e8a285b7b10029c3da7e9bbaa1659e7e08178912
Analyze and fix the following issue in the Linux kernel code: isdn: guard against a potential NULL pointer dereference in old_capi_manufacturer()
Problem Details: In drivers/isdn/capi/kcapi.c::old_capi_manufacturer(), if the call to get_capi_ctr_by_nr(ldef.contr); in line 823 returns NULL, then we'll be dereferencing a NULL pointer in the very next line. (Found by Coverity checker as bug #402) Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Acked-by: Karste...
```diff diff --git a/drivers/isdn/capi/kcapi.c b/drivers/isdn/capi/kcapi.c index 9f73bc2727c2..f55531869313 100644 --- a/drivers/isdn/capi/kcapi.c +++ b/drivers/isdn/capi/kcapi.c @@ -821,6 +821,8 @@ static int old_capi_manufacturer(unsigned int cmd, void __user *data) return -EFAULT; } card = get_capi_ctr_by...
b1b2e7cf4a9742f61d76fcb419b1fd13159876a5
Analyze and fix the following issue in the Linux kernel code: fix possible NULL deref on low memory condition in capidrv.c::send_message()
Problem Details: If we fail to allocate an skb in drivers/isdn/capi/capidrv.c::send_message(), then we'll end up dereferencing a NULL pointer. Since out of memory conditions are not unheard of, I believe it is better to print a error message and just return rather than bring down the whole kernel. Sure, doing this may ...
```diff diff --git a/drivers/isdn/capi/capidrv.c b/drivers/isdn/capi/capidrv.c index 23b6f7bc16b7..476012b6dfac 100644 --- a/drivers/isdn/capi/capidrv.c +++ b/drivers/isdn/capi/capidrv.c @@ -506,9 +506,14 @@ static void send_message(capidrv_contr * card, _cmsg * cmsg) { struct sk_buff *skb; size_t len; + capi_cm...
d1e44d9ce8589cc4ca0596989fe17130817ebec5
Analyze and fix the following issue in the Linux kernel code: SPI driver runtime footprint shrinkage
Problem Details: Shrink the runtime footprint of various SPI drivers: - Move the probe() routine into the init section where practical, using platform_driver_probe() to make that safe. This often saves around 1KB. Using platform_driver_probe() can also be a correctness fix, if the probe routine is alre...
```diff diff --git a/drivers/spi/omap_uwire.c b/drivers/spi/omap_uwire.c index d275c615a73e..8245b5153f30 100644 --- a/drivers/spi/omap_uwire.c +++ b/drivers/spi/omap_uwire.c @@ -481,7 +481,7 @@ static void uwire_off(struct uwire_spi *uwire) spi_master_put(uwire->bitbang.master); } -static int uwire_probe(struct p...
2ed6dc34f9ed39bb8e4c81ea1056f0ba56315841
Analyze and fix the following issue in the Linux kernel code: I/OAT: Add DCA services
Problem Details: Add code to connect to the DCA driver and provide cpu tags for use by drivers that would like to use Direct Cache Access hints. [Adrian Bunk] Several Kconfig cleanup items [Andrew Morten, Chris Leech] Fix for using cpu_physical_id() even when built for uni-processor ...
```diff diff --git a/drivers/dca/Kconfig b/drivers/dca/Kconfig index e2f7436da051..94f0364a0efb 100644 --- a/drivers/dca/Kconfig +++ b/drivers/dca/Kconfig @@ -3,9 +3,5 @@ # config DCA - tristate "DCA support for clients and providers" - default m - help - This is a server to help modules that want to use Direct C...
a24864a1d52a97e345a6bd4862a057f98364d098
Analyze and fix the following issue in the Linux kernel code: uml: definitively kill subprocesses on panic
Problem Details: In a stock 2.6.22.6 kernel, poweroff a user mode linux guest (2.6.22.6 running in skas0 mode) will halt the host linux. I think the reason is the kernel thread abort because of a bug. Then the sys_reboot in process of user mode linux guest is not trapped by the user mode linux kernel and is executed ...
```diff diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c index e60d6e6c5a58..d77c81d7068a 100644 --- a/arch/um/os-Linux/skas/process.c +++ b/arch/um/os-Linux/skas/process.c @@ -177,7 +177,7 @@ static int userspace_tramp(void *stack) ptrace(PTRACE_TRACEME, 0, 0, 0); - init_new_thread_...
54ae36f24b103e521dd683f66fe72b0584ccb7e2
Analyze and fix the following issue in the Linux kernel code: uml: fix stub address calculations
Problem Details: The calculation of CONFIG_STUB_CODE and CONFIG_STUB_DATA didn't take into account anything but 3G/1G and 2G/2G, leaving the other vmsplits out in the cold. I'd rather not duplicate the four known host vmsplit cases for each of these symbols. I'd also like to calculate them based on the highest usersp...
```diff diff --git a/arch/um/Kconfig.i386 b/arch/um/Kconfig.i386 index d6cffb27fff8..9876d80d85dd 100644 --- a/arch/um/Kconfig.i386 +++ b/arch/um/Kconfig.i386 @@ -65,20 +65,6 @@ config 3_LEVEL_PGTABLES However, this it experimental on 32-bit architectures, so if unsure say N (on x86-64 it's automatically enabled, i...
5f734614fc6218db352d26571ab4d1604620199c
Analyze and fix the following issue in the Linux kernel code: uml: time build fix
Problem Details: Put back an implementation of timeval_to_ns in arch/um/os-Linux/time.c. tglx pointed out in his review of tickless support that there was a perfectly good implementation of it in linux/time.h. The problem is that this is userspace code which can't pull in kernel headers and there doesn't seem to be a ...
```diff diff --git a/arch/um/include/os.h b/arch/um/include/os.h index 91642e4137d7..a1b0804ee57b 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h @@ -254,9 +254,9 @@ extern void os_dump_core(void); extern void idle_sleep(unsigned long long nsecs); extern int set_interval(void); extern int timer_one_shot...
181bde801afae4304843ce95c868d4419ae87310
Analyze and fix the following issue in the Linux kernel code: uml: fix timer switching
Problem Details: Fix up the switching between virtual and real timers. The idle loop sleeps, so the timer at that point must be real time. At all other times, the timer must be virtual. Even when userspace is running, and the kernel is asleep, the virtual timer is correct because the process timer will be running an...
```diff diff --git a/arch/um/include/os.h b/arch/um/include/os.h index e861c8adb44f..12de1ea68370 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h @@ -250,7 +250,7 @@ extern void os_dump_core(void); /* time.c */ #define BILLION (1000 * 1000 * 1000) -extern void switch_timers(int to_real); +extern int sw...
f0c4cad99c12f08cb2a6cd0255911b2a93c57707
Analyze and fix the following issue in the Linux kernel code: uml: style fixes in FP code
Problem Details: Tidy the code affected by the floating point fixes. A bunch of unused stuff is gone, including two sigcontext.c files, which turned out to be entirely unneeded. There are the usual fixes - whitespace and style cleanups copyright updates emacs formatting comments gone include cleanups adding seve...
```diff diff --git a/arch/um/include/sysdep-i386/sigcontext.h b/arch/um/include/sysdep-i386/sigcontext.h index 3050a6aaed7a..67e77122aa45 100644 --- a/arch/um/include/sysdep-i386/sigcontext.h +++ b/arch/um/include/sysdep-i386/sigcontext.h @@ -6,15 +6,10 @@ #ifndef __SYS_SIGCONTEXT_I386_H #define __SYS_SIGCONTEXT_I386...
54fa0ba40698af6d6735ade024293bb51cc4d4b3
Analyze and fix the following issue in the Linux kernel code: uml: sysrq and mconsole fixes
Problem Details: Fix the passing of printk output back to the mconsole client. The existing code was somewhat confused, accumulating output in a buffer, but writing it out entirely whenever a new chunk was added. This is fixed. The earlier include cleanups caused linux/sysrq.h to not be included - this is fixed by a...
```diff diff --git a/arch/um/defconfig b/arch/um/defconfig index ed3196d8c908..658f65446c56 100644 --- a/arch/um/defconfig +++ b/arch/um/defconfig @@ -80,7 +80,7 @@ CONFIG_BINFMT_MISC=m # CONFIG_HOSTFS is not set # CONFIG_HPPFS is not set CONFIG_MCONSOLE=y -# CONFIG_MAGIC_SYSRQ is not set +CONFIG_MAGIC_SYSRQ=y CONF...
058ac308f3dd34ce4e2dbf938258975ced14b809
Analyze and fix the following issue in the Linux kernel code: uml: coredumping floating point fixes
Problem Details: Fix core dumping of floating point state. ELF_CORE_COPY_FPREGS gets a definitions, and as a result, dump_fpu no longer needs to exist. Also, elf_fpregset_t needed a real definition. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-b...
```diff diff --git a/arch/um/sys-i386/ptrace.c b/arch/um/sys-i386/ptrace.c index 659011df1e9a..9657c89fdf31 100644 --- a/arch/um/sys-i386/ptrace.c +++ b/arch/um/sys-i386/ptrace.c @@ -205,28 +205,6 @@ int set_fpxregs(struct user_fxsr_struct __user *buf, struct task_struct *child) return restore_fpx_registers(userspace...
e8012b584fac3a1bb70cd896612c12086d28e9ff
Analyze and fix the following issue in the Linux kernel code: uml: ptrace floating point fixes
Problem Details: Handle floating point state better in ptrace. The code now correctly distinguishes between PTRACE_[GS]ETFPREGS and PTRACE_[GS]ETFPXREGS. The FPX requests get handed off to arch-specific code because that's not generic. get_fpregs, set_fpregs, set_fpregs, and set_fpxregs needed real implementations. ...
```diff diff --git a/arch/um/kernel/ptrace.c b/arch/um/kernel/ptrace.c index db55a017e9b9..2511f9199417 100644 --- a/arch/um/kernel/ptrace.c +++ b/arch/um/kernel/ptrace.c @@ -143,22 +143,14 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) #endif #ifdef PTRACE_GETFPREGS case PTRACE_...
a5f6096c805e6d2fa03ee932f8c70af34cee41a0
Analyze and fix the following issue in the Linux kernel code: uml: floating point signal delivery fixes
Problem Details: Handle floating point state in across signals correctly. UML/i386 needs to know whether the host does PTRACE_[GS]ETFPXREGS, so an arch_init_registers hook is added, which on x86_64 does nothing. UML doesn't save and restore floating point registers on kernel entry and exit, so they need to be copied ...
```diff diff --git a/arch/um/include/registers.h b/arch/um/include/registers.h index 8e8ea9651189..0e27406a43a4 100644 --- a/arch/um/include/registers.h +++ b/arch/um/include/registers.h @@ -12,6 +12,8 @@ extern void init_thread_registers(struct uml_pt_regs *to); extern int save_fp_registers(int pid, unsigned long *f...
84b3db04ca15a90273745e391462faf658b1e825
Analyze and fix the following issue in the Linux kernel code: uml: fix hostfs style
Problem Details: Style fixes in hostfs. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/fs/hostfs/hostfs.h b/fs/hostfs/hostfs.h index 06e5930515fe..6ae9011b95eb 100644 --- a/fs/hostfs/hostfs.h +++ b/fs/hostfs/hostfs.h @@ -3,7 +3,8 @@ #include "os.h" -/* These are exactly the same definitions as in fs.h, but the names are +/* + * These are exactly the same definitions as in fs.h, ...
baabd156e243e513873417b62e51346ece609934
Analyze and fix the following issue in the Linux kernel code: uml: remove unneeded if from hostfs
Problem Details: Get rid of an empty if statement which might look like a bug to a casual reader. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/fs/hostfs/hostfs_user.c b/fs/hostfs/hostfs_user.c index 5625e2481dd3..d8d54af1b497 100644 --- a/fs/hostfs/hostfs_user.c +++ b/fs/hostfs/hostfs_user.c @@ -283,7 +283,7 @@ int set_attr(const char *file, struct hostfs_iattr *attrs, int fd) } } - if(attrs->ia_valid & HOSTFS_ATTR_CTIME) ; + /* No...
512b6fb1c14d4c34f23a3419b0789ad01914a899
Analyze and fix the following issue in the Linux kernel code: uml: userspace files should call libc directly
Problem Details: A number of files that were changed in the recent removal of tt mode are userspace files which call the os_* wrappers instead of calling libc directly. A few other files were affected by this, through This patch makes these call glibc directly. There are also style fixes in the affected areas. os_p...
```diff diff --git a/arch/um/include/os.h b/arch/um/include/os.h index 76048ba10875..e861c8adb44f 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h @@ -128,9 +128,8 @@ static inline struct openflags of_cloexec(struct openflags flags) extern int os_stat_file(const char *file_name, struct uml_stat *buf); ext...
b21d4b08b6686fa13bf9d4cae1ae08cb23ea3d53
Analyze and fix the following issue in the Linux kernel code: uml: fix inlines
Problem Details: "extern inline" will have different semantics with gcc 4.3. Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/include/asm-um/pgalloc.h b/include/asm-um/pgalloc.h index 34ab268ef40e..14904876e8fb 100644 --- a/include/asm-um/pgalloc.h +++ b/include/asm-um/pgalloc.h @@ -42,7 +42,7 @@ static inline void pte_free(struct page *pte) #ifdef CONFIG_3_LEVEL_PGTABLES -extern __inline__ void pmd_free(pmd_t *pmd) ...
8ca842c4b5cbc70b9180617e9f26b6ac9f40dbb9
Analyze and fix the following issue in the Linux kernel code: uml: remove os_* usage from userspace files
Problem Details: This patch fixes some userspace files which were calling libc through the os_* wrappers. It turns out that there was only one user of os_new_tty_pgrp, so it can be deleted. There are also some style and whitespace fixes in here. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew ...
```diff diff --git a/arch/um/drivers/chan_user.c b/arch/um/drivers/chan_user.c index 74f22d27327d..8443d372f67c 100644 --- a/arch/um/drivers/chan_user.c +++ b/arch/um/drivers/chan_user.c @@ -134,12 +134,12 @@ static int winch_thread(void *arg) struct winch_data *data = arg; sigset_t sigs; int pty_fd, pipe_fd; - i...
ae2587e41254e48e670346aefa332d7469d86352
Analyze and fix the following issue in the Linux kernel code: uml: style fixes pass 2
Problem Details: Formatting changes in the files which have been changed in the course of removing CHOOSE_MODE. These include: copyright updates header file trimming style fixes adding severity to printks These changes should be entirely non-functional. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off...
```diff diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index 3591c3806670..5f6dbb148218 100644 --- a/arch/um/drivers/mconsole_kern.c +++ b/arch/um/drivers/mconsole_kern.c @@ -1,43 +1,35 @@ /* * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) - * Copyright (C) 2001 - 2003 Jeff D...
6d536e4b59f77c34a0e5a414dfa934db373c85c2
Analyze and fix the following issue in the Linux kernel code: uml: physmem code tidying
Problem Details: Tidying of the UML physical memory system. These are mostly style fixes, however the includes were cleaned as well. This uncovered a need for mem_user.h to be included in mode_kern_skas.h. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signe...
```diff diff --git a/arch/um/include/skas/mode_kern_skas.h b/arch/um/include/skas/mode_kern_skas.h index 8ee6285dfacc..c29485109a9a 100644 --- a/arch/um/include/skas/mode_kern_skas.h +++ b/arch/um/include/skas/mode_kern_skas.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) + * Copyright (C) 200...
42daba316557e597a90a730f61c762602b7f0e0c
Analyze and fix the following issue in the Linux kernel code: uml: stop saving process FP state
Problem Details: Throw out a lot of code dealing with saving and restoring floating-point state. In skas mode, where processes run in a restoring floating-point state on kernel entry and exit is pointless. This eliminates most of arch/um/os-Linux/sys-{i386,x86_64}/registers.c. Most of what remained is now arch-indpe...
```diff diff --git a/arch/um/include/os.h b/arch/um/include/os.h index bb6b7d9e1888..c0803e67fc67 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h @@ -307,6 +307,8 @@ extern int protect(struct mm_id * mm_idp, unsigned long addr, extern int is_skas_winch(int pid, int fd, void *data); extern int start_users...
8d82076080d909f18dea859a6767df7e3ff69241
Analyze and fix the following issue in the Linux kernel code: uml: fix nonremovability of watchdog
Problem Details: The UML watchdog driver was using the wrong config variable to control whether it can be unloaded once active. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/arch/um/drivers/harddog_kern.c b/arch/um/drivers/harddog_kern.c index 55601687b3bc..a9ad4bd6d953 100644 --- a/arch/um/drivers/harddog_kern.c +++ b/arch/um/drivers/harddog_kern.c @@ -69,7 +69,7 @@ static int harddog_open(struct inode *inode, struct file *file) spin_lock(&lock); if(timer_alive) ...
818f6ef407b448cef63294b9d0f6f8a2af9cb817
Analyze and fix the following issue in the Linux kernel code: uml: fix an IPV6 libc vs kernel symbol clash
Problem Details: On some systems, with IPV6 configured, there is a clash between the kernel's in6addr_any and the one in libc. This is handled in the usual (gross) way of defining the kernel symbol out of the way on the gcc command line. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <a...
```diff diff --git a/arch/um/Makefile b/arch/um/Makefile index 0666729eb976..3efc4ffb32a4 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile @@ -60,7 +60,8 @@ SYS_DIR := $(ARCH_DIR)/include/sysdep-$(SUBARCH) CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \ $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=ke...
2f8a2dc2cf8012179e35c1f01a1eef45de18f1a7
Analyze and fix the following issue in the Linux kernel code: uml: console tidying
Problem Details: Tidy line.c: The includes are more minimal Lots of style fixes All the printks have severities Removed some commented-out code Deleted a useless printk when ioctl is called Fixed some whitespace damage Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foun...
```diff diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c index b4538dfb4820..76fe0b0da996 100644 --- a/arch/um/drivers/line.c +++ b/arch/um/drivers/line.c @@ -1,22 +1,14 @@ /* - * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com) + * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)...
c59dbcadd5d125ba40595612dc91ab18924164d3
Analyze and fix the following issue in the Linux kernel code: uml: fix console writing bugs
Problem Details: The previous console cleanup patch switched generic_read and generic_write from calling os_{read,write}_file to calling read and write directly. Because the calling convention is different, they now need to get any error from errno rather than the return value. I did this for generic_read, but forgot...
```diff diff --git a/arch/um/drivers/chan_kern.c b/arch/um/drivers/chan_kern.c index c09dbdfa298a..db3082b4da46 100644 --- a/arch/um/drivers/chan_kern.c +++ b/arch/um/drivers/chan_kern.c @@ -291,6 +291,9 @@ int write_chan(struct list_head *chans, const char *buf, int len, struct chan *chan = NULL; int n, ret = 0; ...
79f662334fefa2dd3fdf66c44a4d2dca5e378ab4
Analyze and fix the following issue in the Linux kernel code: uml: fix error cleanup ordering
Problem Details: I messed up the error cleanup ordering in the console port driver. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
```diff diff --git a/arch/um/drivers/port_kern.c b/arch/um/drivers/port_kern.c index 1c8efd95c421..d8acf7470e70 100644 --- a/arch/um/drivers/port_kern.c +++ b/arch/um/drivers/port_kern.c @@ -216,10 +216,10 @@ void *port_data(int port_num) .telnetd_pid = -1 }); goto out; - out_free: - kfree(port); out_c...
0ac15559150a20d39d381a6be44cdea373584222
Analyze and fix the following issue in the Linux kernel code: m32r: convert to generic sys_ptrace
Problem Details: Convert m32r to the generic sys_ptrace. The conversion requires an architecture hook after ptrace_attach which this patch adds. The hook will also be needed for a conersion of ia64 to the generic ptrace code. Thanks to Hirokazu Takata for fixing a bug in the first version of this code. Signed-off-b...
```diff diff --git a/arch/m32r/kernel/ptrace.c b/arch/m32r/kernel/ptrace.c index abbeaf8f6d0a..ed4d0756c5db 100644 --- a/arch/m32r/kernel/ptrace.c +++ b/arch/m32r/kernel/ptrace.c @@ -570,7 +570,7 @@ withdraw_debug_trap(struct pt_regs *regs) } } -static void +void init_debug_traps(struct task_struct *child) { s...
b2b5d37d7ee1592046ef75986c6d37ee9d55a61b
Analyze and fix the following issue in the Linux kernel code: alpha: beautify vmlinux.lds
Problem Details: Introduced a consistent style in vmlinux.lds and it now matches the soon-to-be common style for all arch's vmlinux.lds files. In addition: - Replaced hardcoded constant with PAGE_SIZE - Fix page.h so PAGE_SIZE can be used from assembler and in lds files - Move a few labels inside brackets so linker al...
```diff diff --git a/arch/alpha/kernel/vmlinux.lds.S b/arch/alpha/kernel/vmlinux.lds.S index 7af07d3ad5f0..55c05b511f4c 100644 --- a/arch/alpha/kernel/vmlinux.lds.S +++ b/arch/alpha/kernel/vmlinux.lds.S @@ -1,4 +1,5 @@ #include <asm-generic/vmlinux.lds.h> +#include <asm/page.h> OUTPUT_FORMAT("elf64-alpha") OUTPUT_...
dbcb0f19c877df9026b8c1227758d38bd561e9c4
Analyze and fix the following issue in the Linux kernel code: mm/mempolicy.c: cleanups
Problem Details: This patch contains the following cleanups: - every file should include the headers containing the prototypes for its global functions - make the follosing needlessly global functions static: - migrate_to_node() - do_mbind() - sp_alloc() - mpol_rebind_policy() [akpm@linux-foundation.org: fix...
```diff diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 7e9698ec839b..38c04d61ee06 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h @@ -144,7 +144,6 @@ struct mempolicy *mpol_shared_policy_lookup(struct shared_policy *sp, extern void numa_default_policy(void); extern v...
af767cbdd78f293485c294113885d95e7f1da123
Analyze and fix the following issue in the Linux kernel code: hugetlb: fix dynamic pool resize failure case
Problem Details: When gather_surplus_pages() fails to allocate enough huge pages to satisfy the requested reservation, it frees what it did allocate back to the buddy allocator. put_page() should be called instead of update_and_free_page() to ensure that pool counters are updated as appropriate and the page's refcount...
```diff diff --git a/mm/hugetlb.c b/mm/hugetlb.c index 82efecbab96f..ae2959bb59cb 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c @@ -302,8 +302,17 @@ free: list_del(&page->lru); if ((--needed) >= 0) enqueue_huge_page(page); - else - update_and_free_page(page); + else { + /* + * Decrement the refcount a...
63b4613c3f0d4b724ba259dc6c201bb68b884e1a
Analyze and fix the following issue in the Linux kernel code: hugetlb: fix hugepage allocation with memoryless nodes
Problem Details: Anton found a problem with the hugetlb pool allocation when some nodes have no memory (http://marc.info/?l=linux-mm&m=118133042025995&w=2). Lee worked on versions that tried to fix it, but none were accepted. Christoph has created a set of patches which allow for GFP_THISNODE allocations to fail if t...
```diff diff --git a/mm/hugetlb.c b/mm/hugetlb.c index 8fb86ba452b0..82efecbab96f 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c @@ -32,6 +32,7 @@ static unsigned int surplus_huge_pages_node[MAX_NUMNODES]; static gfp_t htlb_alloc_mask = GFP_HIGHUSER; unsigned long hugepages_treat_as_movable; int hugetlb_dynamic_pool; ...
6b0c880dfefecedb9ad353014ed41505c32aca82
Analyze and fix the following issue in the Linux kernel code: hugetlb: fix pool resizing corner case
Problem Details: When shrinking the size of the hugetlb pool via the nr_hugepages sysctl, we are careful to keep enough pages around to satisfy reservations. But the calculation is flawed for the following scenario: Action Pool Counters (Total, Free, Resv) ====== ====...
```diff diff --git a/mm/hugetlb.c b/mm/hugetlb.c index efd78527ad1e..8fb86ba452b0 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c @@ -403,14 +403,14 @@ static void try_to_free_low(unsigned long count) for (i = 0; i < MAX_NUMNODES; ++i) { struct page *page, *next; list_for_each_entry_safe(page, next, &hugepage_free...
e63e1e5a6b75416ab758025fd80e247c4f103b1b
Analyze and fix the following issue in the Linux kernel code: hugetlbfs read() support
Problem Details: Support for reading from hugetlbfs files. libhugetlbfs lets application text/data to be placed in large pages. When we do that, oprofile doesn't work - since libbfd tries to read from it. This code is very similar to what do_generic_mapping_read() does, but I can't use it since it has PAGE_CACHE_SIZ...
```diff diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c index 8f8e13385e96..04598e12c489 100644 --- a/fs/hugetlbfs/inode.c +++ b/fs/hugetlbfs/inode.c @@ -179,6 +179,130 @@ full_search: } #endif +static int +hugetlbfs_read_actor(struct page *page, unsigned long offset, + char __user *buf, unsigned long co...
48e94196a533dbee17c252bf80d0310fb8c8c2eb
Analyze and fix the following issue in the Linux kernel code: fix memory hot remove not configured case.
Problem Details: Now, arch dependent code around CONFIG_MEMORY_HOTREMOVE is a mess. This patch cleans up them. This is against 2.6.23-rc6-mm1. - fix compile failure on ia64/ CONFIG_MEMORY_HOTPLUG && !CONFIG_MEMORY_HOTREMOVE case. - For !CONFIG_MEMORY_HOTREMOVE, add generic no-op remove_memory(), which returns -EI...
```diff diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c index 947ec0c73234..3e10152abbf0 100644 --- a/arch/ia64/mm/init.c +++ b/arch/ia64/mm/init.c @@ -718,7 +718,7 @@ int arch_add_memory(int nid, u64 start, u64 size) return ret; } - +#ifdef CONFIG_MEMORY_HOTREMOVE int remove_memory(u64 start, u64 size) {...
42a9fdbb12ac6c027b4b91ab9b5a60aa3a834489
Analyze and fix the following issue in the Linux kernel code: SLUB: Optimize cacheline use for zeroing
Problem Details: We touch a cacheline in the kmem_cache structure for zeroing to get the size. However, the hot paths in slab_alloc and slab_free do not reference any other fields in kmem_cache, so we may have to just bring in the cacheline for this one access. Add a new field to kmem_cache_cpu that contains the objec...
```diff diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index f74716b59ce2..d65159d1d4f5 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h @@ -16,6 +16,7 @@ struct kmem_cache_cpu { struct page *page; int node; unsigned int offset; + unsigned int objsize; }; struct kmem_cach...
4c93c355d5d563f300df7e61ef753d7a064411e9
Analyze and fix the following issue in the Linux kernel code: SLUB: Place kmem_cache_cpu structures in a NUMA aware way
Problem Details: The kmem_cache_cpu structures introduced are currently an array placed in the kmem_cache struct. Meaning the kmem_cache_cpu structures are overwhelmingly on the wrong node for systems with a higher amount of nodes. These are performance critical structures since the per node information has to be touch...
```diff diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index 92e10cf6d0e8..f74716b59ce2 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h @@ -16,8 +16,7 @@ struct kmem_cache_cpu { struct page *page; int node; unsigned int offset; - /* Lots of wasted space */ -} ____cacheline_a...
ee3c72a14bfecdf783738032ff3c73ef6412f5b3
Analyze and fix the following issue in the Linux kernel code: SLUB: Avoid touching page struct when freeing to per cpu slab
Problem Details: Set c->node to -1 if we allocate from a debug slab instead for SlabDebug which requires access the page struct cacheline. Signed-off-by: Christoph Lameter <clameter@sgi.com> Tested-by: Alexey Dobriyan <adobriyan@sw.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torva...
```diff diff --git a/mm/slub.c b/mm/slub.c index 5d895d44c327..ea9fd72093d8 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -1537,6 +1537,7 @@ debug: c->page->inuse++; c->page->freelist = object[c->offset]; + c->node = -1; slab_unlock(c->page); return object; } @@ -1560,8 +1561,7 @@ static void __always_inline *sl...
b3fba8da653999c67d7517050f196e92da6f8d3b
Analyze and fix the following issue in the Linux kernel code: SLUB: Move page->offset to kmem_cache_cpu->offset
Problem Details: We need the offset from the page struct during slab_alloc and slab_free. In both cases we also reference the cacheline of the kmem_cache_cpu structure. We can therefore move the offset field into the kmem_cache_cpu structure freeing up 16 bits in the page struct. Moving the offset allows an allocation...
```diff diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 0cdc8fbf6431..877667918452 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -37,10 +37,7 @@ struct page { * to show when page is mapped * & limit reverse map searches. */ - struct { /* SLUB uses *...
d100313fd615cc30374ff92e0b3facb053838330
Analyze and fix the following issue in the Linux kernel code: Fix calculation in move_freepages_block for counting pages
Problem Details: move_freepages_block() returns the number of blocks moved. This value is used to determine if a block of pages should be stolen for the exclusive use of a migrate type or not. However, the value returned is being used correctly. This patch fixes the calculation to return the number of base pages that...
```diff diff --git a/mm/page_alloc.c b/mm/page_alloc.c index ac8fc51825bb..942498fba942 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -718,7 +718,7 @@ int move_freepages(struct zone *zone, { struct page *page; unsigned long order; - int blocks_moved = 0; + int pages_moved = 0; #ifndef CONFIG_HOLES_IN_ZO...
64c5e135bf5a2a7f0ededb3435a31adbe0202f0c
Analyze and fix the following issue in the Linux kernel code: don't group high order atomic allocations
Problem Details: Grouping high-order atomic allocations together was intended to allow bursty users of atomic allocations to work such as e1000 in situations where their preallocated buffers were depleted. This did not work in at least one case with a wireless network adapter needing order-1 allocations frequently. T...
```diff diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 09b2c4f50e38..fef08c6cf75e 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -36,9 +36,8 @@ #define MIGRATE_UNMOVABLE 0 #define MIGRATE_RECLAIMABLE 1 #define MIGRATE_MOVABLE 2 -#define MIGRATE_HIGHATOMIC 3 -#d...
5c0e3066474b57c56ff0d88ca31d95bd14232fee
Analyze and fix the following issue in the Linux kernel code: Fix corruption of memmap on IA64 SPARSEMEM when mem_section is not a power of 2
Problem Details: There are problems in the use of SPARSEMEM and pageblock flags that causes problems on ia64. The first part of the problem is that units are incorrect in SECTION_BLOCKFLAGS_BITS computation. This results in a map_section's section_mem_map being treated as part of a bitmap which isn't good. This was ...
```diff diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index a8140a9a65e8..9a5d5590bd39 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -748,7 +748,7 @@ extern struct zone *next_zone(struct zone *zone); #define PAGE_SECTION_MASK (~(PAGES_PER_SECTION-1)) #define SECTION_BLOCKFLAGS_B...