From: Jiri Slaby <jslaby@suse.cz>
To: stable@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, Peter Zubaj <pzubaj@marticonet.sk>,
Takashi Iwai <tiwai@suse.de>, Jiri Slaby <jslaby@suse.cz>
Subject: [PATCH 3.12 089/142] ALSA: emu10k1: Emu10k2 32 bit DMA mode
Date: Sat, 16 May 2015 09:37:29 +0200 [thread overview]
Message-ID: <f10cdffde1c8d4ca09ea045742e4092006230163.1431761807.git.jslaby@suse.cz> (raw)
In-Reply-To: <70c3d4ae1322b9e9bd7443ef574af5635234a0fa.1431761807.git.jslaby@suse.cz>
In-Reply-To: <cover.1431761806.git.jslaby@suse.cz>
From: Peter Zubaj <pzubaj@marticonet.sk>
3.12-stable review patch. If anyone has any objections, please let me know.
===============
commit 7241ea558c6715501e777396b5fc312c372e11d9 upstream.
Looks like audigy emu10k2 (probably emu10k1 - sb live too) support two
modes for DMA. Second mode is useful for 64 bit os with more then 2 GB
of ram (fixes problems with big soundfont loading)
1) 32MB from 2 GB address space using 8192 pages (used now as default)
2) 16MB from 4 GB address space using 4096 pages
Mode is set using HCFG_EXPANDED_MEM flag in HCFG register.
Also format of emu10k2 page table is then different.
Signed-off-by: Peter Zubaj <pzubaj@marticonet.sk>
Tested-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
---
include/sound/emu10k1.h | 14 +++++++++-----
sound/pci/emu10k1/emu10k1_callback.c | 4 ++--
sound/pci/emu10k1/emu10k1_main.c | 17 ++++++++++++-----
sound/pci/emu10k1/emupcm.c | 2 +-
sound/pci/emu10k1/memory.c | 11 ++++++-----
5 files changed, 30 insertions(+), 18 deletions(-)
diff --git a/include/sound/emu10k1.h b/include/sound/emu10k1.h
index dfb42ca6d043..8898cdeb42a4 100644
--- a/include/sound/emu10k1.h
+++ b/include/sound/emu10k1.h
@@ -41,7 +41,8 @@
#define EMUPAGESIZE 4096
#define MAXREQVOICES 8
-#define MAXPAGES 8192
+#define MAXPAGES0 4096 /* 32 bit mode */
+#define MAXPAGES1 8192 /* 31 bit mode */
#define RESERVED 0
#define NUM_MIDI 16
#define NUM_G 64 /* use all channels */
@@ -50,8 +51,7 @@
/* FIXME? - according to the OSS driver the EMU10K1 needs a 29 bit DMA mask */
#define EMU10K1_DMA_MASK 0x7fffffffUL /* 31bit */
-#define AUDIGY_DMA_MASK 0x7fffffffUL /* 31bit FIXME - 32 should work? */
- /* See ALSA bug #1276 - rlrevell */
+#define AUDIGY_DMA_MASK 0xffffffffUL /* 32bit mode */
#define TMEMSIZE 256*1024
#define TMEMSIZEREG 4
@@ -468,8 +468,11 @@
#define MAPB 0x0d /* Cache map B */
-#define MAP_PTE_MASK 0xffffe000 /* The 19 MSBs of the PTE indexed by the PTI */
-#define MAP_PTI_MASK 0x00001fff /* The 13 bit index to one of the 8192 PTE dwords */
+#define MAP_PTE_MASK0 0xfffff000 /* The 20 MSBs of the PTE indexed by the PTI */
+#define MAP_PTI_MASK0 0x00000fff /* The 12 bit index to one of the 4096 PTE dwords */
+
+#define MAP_PTE_MASK1 0xffffe000 /* The 19 MSBs of the PTE indexed by the PTI */
+#define MAP_PTI_MASK1 0x00001fff /* The 13 bit index to one of the 8192 PTE dwords */
/* 0x0e, 0x0f: Not used */
@@ -1706,6 +1709,7 @@ struct snd_emu10k1 {
unsigned short model; /* subsystem id */
unsigned int card_type; /* EMU10K1_CARD_* */
unsigned int ecard_ctrl; /* ecard control bits */
+ unsigned int address_mode; /* address mode */
unsigned long dma_mask; /* PCI DMA mask */
unsigned int delay_pcm_irq; /* in samples */
int max_cache_pages; /* max memory size / PAGE_SIZE */
diff --git a/sound/pci/emu10k1/emu10k1_callback.c b/sound/pci/emu10k1/emu10k1_callback.c
index 0a34b5f1c475..f8a6549f00e5 100644
--- a/sound/pci/emu10k1/emu10k1_callback.c
+++ b/sound/pci/emu10k1/emu10k1_callback.c
@@ -415,7 +415,7 @@ start_voice(struct snd_emux_voice *vp)
snd_emu10k1_ptr_write(hw, Z2, ch, 0);
/* invalidate maps */
- temp = (hw->silent_page.addr << 1) | MAP_PTI_MASK;
+ temp = (hw->silent_page.addr << hw->address_mode) | (hw->address_mode ? MAP_PTI_MASK1 : MAP_PTI_MASK0);
snd_emu10k1_ptr_write(hw, MAPA, ch, temp);
snd_emu10k1_ptr_write(hw, MAPB, ch, temp);
#if 0
@@ -436,7 +436,7 @@ start_voice(struct snd_emux_voice *vp)
snd_emu10k1_ptr_write(hw, CDF, ch, sample);
/* invalidate maps */
- temp = ((unsigned int)hw->silent_page.addr << 1) | MAP_PTI_MASK;
+ temp = ((unsigned int)hw->silent_page.addr << hw_address_mode) | (hw->address_mode ? MAP_PTI_MASK1 : MAP_PTI_MASK0);
snd_emu10k1_ptr_write(hw, MAPA, ch, temp);
snd_emu10k1_ptr_write(hw, MAPB, ch, temp);
diff --git a/sound/pci/emu10k1/emu10k1_main.c b/sound/pci/emu10k1/emu10k1_main.c
index 134b7cf95ad4..a131092572e6 100644
--- a/sound/pci/emu10k1/emu10k1_main.c
+++ b/sound/pci/emu10k1/emu10k1_main.c
@@ -282,7 +282,7 @@ static int snd_emu10k1_init(struct snd_emu10k1 *emu, int enable_ir, int resume)
snd_emu10k1_ptr_write(emu, TCB, 0, 0); /* taken from original driver */
snd_emu10k1_ptr_write(emu, TCBS, 0, 4); /* taken from original driver */
- silent_page = (emu->silent_page.addr << 1) | MAP_PTI_MASK;
+ silent_page = (emu->silent_page.addr << emu->address_mode) | (emu->address_mode ? MAP_PTI_MASK1 : MAP_PTI_MASK0);
for (ch = 0; ch < NUM_G; ch++) {
snd_emu10k1_ptr_write(emu, MAPA, ch, silent_page);
snd_emu10k1_ptr_write(emu, MAPB, ch, silent_page);
@@ -348,6 +348,11 @@ static int snd_emu10k1_init(struct snd_emu10k1 *emu, int enable_ir, int resume)
outl(reg | A_IOCFG_GPOUT0, emu->port + A_IOCFG);
}
+ if (emu->address_mode == 0) {
+ /* use 16M in 4G */
+ outl(inl(emu->port + HCFG) | HCFG_EXPANDED_MEM, emu->port + HCFG);
+ }
+
return 0;
}
@@ -1865,8 +1870,10 @@ int snd_emu10k1_create(struct snd_card *card,
is_audigy = emu->audigy = c->emu10k2_chip;
+ /* set addressing mode */
+ emu->address_mode = is_audigy ? 0 : 1;
/* set the DMA transfer mask */
- emu->dma_mask = is_audigy ? AUDIGY_DMA_MASK : EMU10K1_DMA_MASK;
+ emu->dma_mask = emu->address_mode ? EMU10K1_DMA_MASK : AUDIGY_DMA_MASK;
if (pci_set_dma_mask(pci, emu->dma_mask) < 0 ||
pci_set_consistent_dma_mask(pci, emu->dma_mask) < 0) {
snd_printk(KERN_ERR "architecture does not support PCI busmaster DMA with mask 0x%lx\n", emu->dma_mask);
@@ -1889,7 +1896,7 @@ int snd_emu10k1_create(struct snd_card *card,
emu->max_cache_pages = max_cache_bytes >> PAGE_SHIFT;
if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
- 32 * 1024, &emu->ptb_pages) < 0) {
+ (emu->address_mode ? 32 : 16) * 1024, &emu->ptb_pages) < 0) {
err = -ENOMEM;
goto error;
}
@@ -1988,8 +1995,8 @@ int snd_emu10k1_create(struct snd_card *card,
/* Clear silent pages and set up pointers */
memset(emu->silent_page.area, 0, PAGE_SIZE);
- silent_page = emu->silent_page.addr << 1;
- for (idx = 0; idx < MAXPAGES; idx++)
+ silent_page = emu->silent_page.addr << emu->address_mode;
+ for (idx = 0; idx < (emu->address_mode ? MAXPAGES1 : MAXPAGES0); idx++)
((u32 *)emu->ptb_pages.area)[idx] = cpu_to_le32(silent_page | idx);
/* set up voice indices */
diff --git a/sound/pci/emu10k1/emupcm.c b/sound/pci/emu10k1/emupcm.c
index 5ae1d045bdcb..7581019d7c84 100644
--- a/sound/pci/emu10k1/emupcm.c
+++ b/sound/pci/emu10k1/emupcm.c
@@ -379,7 +379,7 @@ static void snd_emu10k1_pcm_init_voice(struct snd_emu10k1 *emu,
snd_emu10k1_ptr_write(emu, Z1, voice, 0);
snd_emu10k1_ptr_write(emu, Z2, voice, 0);
/* invalidate maps */
- silent_page = ((unsigned int)emu->silent_page.addr << 1) | MAP_PTI_MASK;
+ silent_page = ((unsigned int)emu->silent_page.addr << emu->address_mode) | (emu->address_mode ? MAP_PTI_MASK1 : MAP_PTI_MASK0);
snd_emu10k1_ptr_write(emu, MAPA, voice, silent_page);
snd_emu10k1_ptr_write(emu, MAPB, voice, silent_page);
/* modulation envelope */
diff --git a/sound/pci/emu10k1/memory.c b/sound/pci/emu10k1/memory.c
index ae709c1ab3a8..d514458efe3d 100644
--- a/sound/pci/emu10k1/memory.c
+++ b/sound/pci/emu10k1/memory.c
@@ -34,10 +34,11 @@
* aligned pages in others
*/
#define __set_ptb_entry(emu,page,addr) \
- (((u32 *)(emu)->ptb_pages.area)[page] = cpu_to_le32(((addr) << 1) | (page)))
+ (((u32 *)(emu)->ptb_pages.area)[page] = cpu_to_le32(((addr) << (emu->address_mode)) | (page)))
#define UNIT_PAGES (PAGE_SIZE / EMUPAGESIZE)
-#define MAX_ALIGN_PAGES (MAXPAGES / UNIT_PAGES)
+#define MAX_ALIGN_PAGES0 (MAXPAGES0 / UNIT_PAGES)
+#define MAX_ALIGN_PAGES1 (MAXPAGES1 / UNIT_PAGES)
/* get aligned page from offset address */
#define get_aligned_page(offset) ((offset) >> PAGE_SHIFT)
/* get offset address from aligned page */
@@ -124,7 +125,7 @@ static int search_empty_map_area(struct snd_emu10k1 *emu, int npages, struct lis
}
page = blk->mapped_page + blk->pages;
}
- size = MAX_ALIGN_PAGES - page;
+ size = (emu->address_mode ? MAX_ALIGN_PAGES1 : MAX_ALIGN_PAGES0) - page;
if (size >= max_size) {
*nextp = pos;
return page;
@@ -181,7 +182,7 @@ static int unmap_memblk(struct snd_emu10k1 *emu, struct snd_emu10k1_memblk *blk)
q = get_emu10k1_memblk(p, mapped_link);
end_page = q->mapped_page;
} else
- end_page = MAX_ALIGN_PAGES;
+ end_page = (emu->address_mode ? MAX_ALIGN_PAGES1 : MAX_ALIGN_PAGES0);
/* remove links */
list_del(&blk->mapped_link);
@@ -305,7 +306,7 @@ snd_emu10k1_alloc_pages(struct snd_emu10k1 *emu, struct snd_pcm_substream *subst
if (snd_BUG_ON(!emu))
return NULL;
if (snd_BUG_ON(runtime->dma_bytes <= 0 ||
- runtime->dma_bytes >= MAXPAGES * EMUPAGESIZE))
+ runtime->dma_bytes >= (emu->address_mode ? MAXPAGES1 : MAXPAGES0) * EMUPAGESIZE))
return NULL;
hdr = emu->memhdr;
if (snd_BUG_ON(!hdr))
--
2.3.7
next prev parent reply other threads:[~2015-05-16 8:48 UTC|newest]
Thread overview: 153+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-16 7:37 [PATCH 3.12 000/142] 3.12.43-stable review Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 001/142] ip_forward: Drop frames with attached skb->sk Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 002/142] tcp: fix possible deadlock in tcp_send_fin() Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 003/142] tcp: avoid looping " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 004/142] net: do not deplete pfmemalloc reserve Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 005/142] net: fix crash in build_skb() Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 006/142] Btrfs: fix log tree corruption when fs mounted with -o discard Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 007/142] btrfs: don't accept bare namespace as a valid xattr Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 008/142] Btrfs: fix inode eviction infinite loop after cloning into it Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 009/142] Btrfs: fix inode eviction infinite loop after extent_same ioctl Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 010/142] sched/idle/x86: Restore mwait_idle() to fix boot hangs, to improve power savings and to improve performance Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 011/142] mm/hugetlb: use pmd_page() in follow_huge_pmd() Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 012/142] drivers: parport: Kconfig: exclude arm64 for PARPORT_PC Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 013/142] usb: gadget: composite: enable BESL support Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 014/142] nosave: consolidate __nosave_{begin,end} in <asm/sections.h> Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 015/142] KVM: s390: Zero out current VMDB of STSI before including level3 data Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 016/142] s390/hibernate: fix save and restore of kernel text section Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 017/142] KVM: use slowpath for cross page cached accesses Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 018/142] MIPS: Hibernate: flush TLB entries earlier Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 019/142] cdc-wdm: fix endianness bug in debug statements Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 020/142] spi: spidev: fix possible arithmetic overflow for multi-transfer message Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 021/142] compal-laptop: Check return value of power_supply_register Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 022/142] ring-buffer: Replace this_cpu_*() with __this_cpu_*() Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 023/142] power_supply: twl4030_madc: Check return value of power_supply_register Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 024/142] power_supply: lp8788-charger: Fix leaked power supply on probe fail Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 025/142] ARM: 8320/1: fix integer overflow in ELF_ET_DYN_BASE Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 026/142] ARM: S3C64XX: Use fixed IRQ bases to avoid conflicts on Cragganmore Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 027/142] ARM: dts: dove: Fix uart[23] reg property Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 028/142] usb: phy: Find the right match in devm_usb_phy_match Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 029/142] usb: define a generic USB_RESUME_TIMEOUT macro Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 030/142] usb: host: fusbh200: use new USB_RESUME_TIMEOUT Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 031/142] usb: host: uhci: " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 032/142] usb: host: fotg210: " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 033/142] usb: host: r8a66597: " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 034/142] usb: host: isp116x: " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 035/142] usb: host: xhci: " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 036/142] usb: host: sl811: " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 037/142] usb: dwc2: hcd: " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 038/142] usb: core: hub: " Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 039/142] ALSA: emu10k1: don't deadlock in proc-functions Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 040/142] Input: elantech - fix absolute mode setting on some ASUS laptops Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 041/142] fs/binfmt_elf.c: fix bug in loading of PIE binaries Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 042/142] ptrace: fix race between ptrace_resume() and wait_task_stopped() Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 043/142] rtlwifi: rtl8192cu: Add new USB ID Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 044/142] rtlwifi: rtl8192cu: Add new device ID Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 045/142] arm64: vdso: fix build error when switching from LE to BE Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 046/142] ext4: make fsync to sync parent dir in no-journal for real this time Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 047/142] powerpc/perf: Cap 64bit userspace backtraces to PERF_MAX_STACK_DEPTH Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 048/142] tools lib traceevent kbuffer: Remove extra update to data pointer in PADDING Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 049/142] tools/power turbostat: Use $(CURDIR) instead of $(PWD) and add support for O= option in Makefile Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 050/142] UBI: account for bitflips in both the VID header and data Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 051/142] UBI: fix out of bounds write Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 052/142] UBI: initialize LEB number variable Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 053/142] UBI: fix check for "too many bytes" Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 054/142] scsi: storvsc: Fix a bug in copy_from_bounce_buffer() Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 055/142] target: Fix COMPARE_AND_WRITE with SG_TO_MEM_NOALLOC handling Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 056/142] Bluetooth: ath3k: Add support Atheros AR5B195 combo Mini PCIe card Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 057/142] powerpc: Fix missing L2 cache size in /sys/devices/system/cpu Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 058/142] ACPICA: Utilities: split IO address types from data type models Jiri Slaby
2015-05-16 7:36 ` [PATCH 3.12 059/142] xtensa: xtfpga: fix hardware lockup caused by LCD driver Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 060/142] xtensa: provide __NR_sync_file_range2 instead of __NR_sync_file_range Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 061/142] xtensa: ISS: fix locking in TAP network adapter Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 062/142] gpio: mvebu: Fix mask/unmask managment per irq chip type Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 063/142] Drivers: hv: vmbus: Fix a bug in the error path in vmbus_open() Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 064/142] mvsas: fix panic on expander attached SATA devices Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 065/142] stk1160: Make sure current buffer is released Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 066/142] IB/core: disallow registering 0-sized memory region Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 067/142] IB/core: don't disallow registering region starting at 0x0 Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 068/142] IB/mlx4: Fix WQE LSO segment calculation Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 069/142] i2c: core: Export bus recovery functions Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 070/142] drm/radeon: fix doublescan modes (v2) Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 071/142] drm/i915: cope with large i2c transfers Jiri Slaby
2015-05-18 9:56 ` Luis Henriques
2015-05-18 10:57 ` Jani Nikula
2015-05-18 11:00 ` Jani Nikula
2015-05-18 11:03 ` Luis Henriques
2015-05-16 7:37 ` [PATCH 3.12 072/142] RCU pathwalk breakage when running into a symlink overmounting something Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 073/142] ksoftirqd: Enable IRQs and call cond_resched() before poking RCU Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 074/142] e1000: add dummy allocator to fix race condition between mtu change and netpoll Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 075/142] lib: memzero_explicit: use barrier instead of OPTIMIZER_HIDE_VAR Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 076/142] wl18xx: show rx_frames_per_rates as an array as it really is Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 077/142] crypto: omap-aes - Fix support for unequal lengths Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 078/142] C6x: time: Ensure consistency in __init Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 079/142] memstick: mspro_block: add missing curly braces Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 080/142] driver core: bus: Goto appropriate labels on failure in bus_add_device Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 081/142] fs: take i_mutex during prepare_binprm for set[ug]id executables Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 082/142] mm: Fix NULL pointer dereference in madvise(MADV_WILLNEED) support Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 083/142] staging: panel: fix lcd type Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 084/142] ipv4: Missing sk_nulls_node_init() in ping_unhash() Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 085/142] UBI: fix soft lockup in ubi_check_volume() Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 086/142] ALSA: emux: Fix mutex deadlock at unloading Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 087/142] ALSA: emux: Fix mutex deadlock in OSS emulation Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 088/142] ALSA: emu10k1: Fix card shortname string buffer overflow Jiri Slaby
2015-05-16 7:37 ` Jiri Slaby [this message]
2015-05-16 7:37 ` [PATCH 3.12 090/142] ALSA: hda - Fix mute-LED fixed mode Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 091/142] serial: of-serial: Remove device_type = "serial" registration Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 092/142] ASoC: dapm: Enable autodisable on SOC_DAPM_SINGLE_TLV_AUTODISABLE Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 093/142] tty/serial: at91: maxburst was missing for dma transfers Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 094/142] rbd: end I/O the entire obj_request on error Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 095/142] ext4: fix data corruption caused by unwritten and delayed extents Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 096/142] 3w-xxxx: fix command completion race Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 097/142] 3w-9xxx: " Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 098/142] 3w-sas: " Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 099/142] drm/radeon: add SI DPM quirk for Sapphire R9 270 Dual-X 2G GDDR5 Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 100/142] usb: musb: use new USB_RESUME_TIMEOUT Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 101/142] usb: host: oxu210hp: " Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 102/142] usb: host: ehci: " Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 103/142] usb: gadget: printer: enqueue printer's response for setup request Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 104/142] Drivers: hv: vmbus: Don't wait after requesting offers Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 105/142] ARC: signal handling robustify Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 106/142] /proc/stat: convert to single_open_size() Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 107/142] seq_file: always clear m->count when we free m->buf Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 108/142] fs/seq_file: fallback to vmalloc allocation Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 109/142] mm: prevent endless growth of anon_vma hierarchy Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 110/142] mm: fix corner case in anon_vma endless growing prevention Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 111/142] mm: fix anon_vma->degree underflow " Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 112/142] ocfs2: dlm: fix race between purge and get lock resource Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 113/142] nilfs2: fix sanity check of btree level in nilfs_btree_root_broken() Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 114/142] RDMA/CMA: Canonize IPv4 on IPV6 sockets properly Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 115/142] gpio: unregister gpiochip device before removing it Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 116/142] gpio: sysfs: fix memory leaks and device hotplug Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 117/142] mnt: Fix fs_fully_visible to verify the root directory is visible Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 118/142] mm/memory-failure: call shake_page() when error hits thp tail page Jiri Slaby
2015-05-16 7:37 ` [PATCH 3.12 119/142] writeback: use |1 instead of +1 to protect against div by zero Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 120/142] mm: soft-offline: fix num_poisoned_pages counting on concurrent events Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 121/142] xen/console: Update console event channel on resume Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 122/142] ARM: dts: imx25: Add #pwm-cells to pwm4 Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 123/142] ARM: dts: imx28: Fix AUART4 TX-DMA interrupt name Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 124/142] ARM: dts: imx23-olinuxino: Fix dr_mode of usb0 Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 125/142] ARM: dts: imx23-olinuxino: Fix polarity of LED GPIO Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 126/142] ARM: mvebu: armada-xp-openblocks-ax3-4: Disable internal RTC Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 127/142] ARM: ux500: Move GPIO regulator for SD-card into board DTSs Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 128/142] ARM: ux500: Enable GPIO regulator for SD-card for HREF boards Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 129/142] ARM: ux500: Enable GPIO regulator for SD-card for snowball Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 130/142] drm/i915: Add missing MacBook Pro models with dual channel LVDS Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 131/142] drm/radeon: disable semaphores for UVD V1 (v2) Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 132/142] drm/radeon: make UVD handle checking more strict Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 133/142] drm/radeon: more strictly validate the UVD codec Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 134/142] pinctrl: Don't just pretend to protect pinctrl_maps, do it for real Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 135/142] mmc: card: Don't access RPMB partitions for normal read/write Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 136/142] mmc: core: add missing pm event in mmc_pm_notify to fix hib restore Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 137/142] mmc: sh_mmcif: Fix timeout value for command request Jiri Slaby
2015-05-16 11:05 ` Albino Biasutti Neto
2015-05-16 11:23 ` Jiri Slaby
2015-05-18 0:37 ` Simon Horman
2015-05-18 13:15 ` Albino Biasutti Neto
2015-05-16 7:38 ` [PATCH 3.12 138/142] sound/oss: fix deadlock in sequencer_ioctl(SNDCTL_SEQ_OUTOFBAND) Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 139/142] ACPICA: Tables: Change acpi_find_root_pointer() to use acpi_physical_address Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 140/142] ACPICA: Utilities: Cleanup to enforce ACPI_PHYSADDR_TO_PTR()/ACPI_PTR_TO_PHYSADDR() Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 141/142] ACPICA: Utilities: Cleanup to convert physical address printing formats Jiri Slaby
2015-05-16 7:38 ` [PATCH 3.12 142/142] ACPICA: Utilities: Cleanup to remove useless ACPI_PRINTF/FORMAT_xxx helpers Jiri Slaby
2015-05-16 16:55 ` [PATCH 3.12 000/142] 3.12.43-stable review Guenter Roeck
2015-05-17 11:31 ` Jiri Slaby
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f10cdffde1c8d4ca09ea045742e4092006230163.1431761807.git.jslaby@suse.cz \
--to=jslaby@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=pzubaj@marticonet.sk \
--cc=stable@vger.kernel.org \
--cc=tiwai@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®