[patch 1/2] [media] tvp5150: off by one
The ->input_ent[] array has TVP5150_INPUT_NUM elements so the > here should be >=. Fixes: f7b4b54e6364 ('[media] tvp5150: add HW input connectors sup
View Article[PATCH] x86/microcode: Change checksum to u32
Checksum should be unsigned 32-bit otherwise the calculation overflows resulting in undefined behaviour: [ 0.000000] =============================
View Article[PATCH 1/4] staging: dgnc: remove unneeded else
If pci_enable_device() fails then we can return directly. Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> --- I saw there is some p
View Article[PATCH 2/4] staging: dgnc: remove pci_unregister_driver
If pci_register_driver() fails then dgnc_NumBoards can never be more than zero. dgnc_NumBoards is incremented only at the end of a successful probe. A
View Article[PATCH 3/4] staging: dgnc: unregister pci driver
We may choose to load the module without the hardware present. That will register the pci driver but since probe will not succeed so dgnc_NumBoards wi
View Article[PATCH 4/4] staging: dgnc: cleanup properly
dgnc_cleanup_module() was called when the module unloaded to do a total cleanup and it was also called if pci_register_driver() fails. But dgnc_cleanu
View Article[BUG] Core2 cpu triggers hard lockup with perf test
hi, we are getting hard lockups on Core2 cpus (model 23) just by running 'perf test' PID: 10425 TASK: ffff880068562e00 CPU: 3 COMMAND: "perf" #0
View Article[PATCH] PKCS#7: fix unitialized boolean 'want'
From: Colin Ian King <colin.king@canonical.com> The boolean want is not initialized and hence garbage. The default should be false (later it is only
View Article[PATCH] power_supply: lp8788-charger: initialize boolean 'found'
From: Colin Ian King <colin.king@canonical.com> The boolean 'found' is not initialized and hence garbage. It should be initialized as false. Found w
View Article[PATCH v2 RESEND] tty: serial: Use GFP_ATOMIC instead of GFP_KERNEL in...
serial8250_em485_init() is supposed to be protected with p->port.lock spinlock. This may lead to issues when kmalloc sleeps, so it is better to use GF
View Article[PATCH v4 1/3 RESEND] USB: serial: cp210x: New 16-bit register access functions.
cp210x_get_config and cp210x_set_config are cumbersome to use. This change introduces new register access functions for 16-bit values, instead of the
View Article[PATCH v4 2/3 RESEND] USB: serial: cp210x: New 8-bit and 32-bit register...
cp210x_get_config and cp210x_set_config are cumbersome to use. This change introduces new register access functions for 8 and 32-bit values, instead o
View Article[PATCH v4 3/3 RESEND] USB: serial: cp210x: New access functions for large...
cp210x_get_config and cp210x_set_config are cumbersome to use. This change switches large register access to use new block functions. The old function
View Article[PATCH 2/2] fs: fixed trailing whitespaces in .c files
fixed all whitespaces in .c files in the fs folder (not in the sub-folders) Signed-off-by: amar-laksh <amarlakshya1@gmail.com> --- fs/aio.c
View Article[PATCH] pch_phub: return -ENODATA if ROM can't be mapped
From: Colin Ian King <colin.king@canonical.com> The error return err is not initialized for the case when pci_map_rom fails and no ROM can me mapped.
View Article[GIT PULL] PCI fixes for v4.5
Hi Linus, The big chunk here is the paravirtual front-end for Linux guests of a Microsoft Hyper-V VM. It's new, so no risk of regressions to pci-hyp
View Article[PATCH v6] arm: pxa: support ICP DAS LP-8x4x FPGA irq
ICP DAS LP-8x4x contains FPGA chip. The chip functions as an interrupt source providing 16 additional interrupts among other things. The interrupt lin
View Article[PATCH v6] serial: support for 16550A serial ports on LP-8x4x
The patch adds support for 3 additional LP-8x4x built-in serial ports. The device can also host up to 8 extension cards with 4 serial ports on each c
View Article[RFC][PATCH v4 1/2] tracing/syscalls: Rename a field 'nr' to...
Some syscalls tracepoint duplicated fields with the same name 'nr' i.e. # cat /sys/kernel/debug/tracing/events/syscalls/sys_enter_io_getevents/fo
View Article[PATCH v4 2/2] perf trace: Check and discard not only 'nr' but also...
Format fields of a syscall have the first variable '__syscall_nr' or 'nr' that mean the syscall number. But it isn't relevant here so drop it. 'nr' a
View Article