Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tegra' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/tas5086' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/spear' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/sn95031' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/simple' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/si476x' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/samsung' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/rt5640' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/rcar' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/pxa' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/pcm1792a' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/pcm1681' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/mxs' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/ml26124' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/mc13783' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/max9850' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/max98095' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/max98088' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/kirkwood' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/fsl' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/ep93xx' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/doc' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/devm' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/davinci' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/cs42l73' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/cs42l52' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/cs4271' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/cq93vc' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/core' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/component' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/bclk' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/atmel' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/arizona' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/ak4642' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/ak4104' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/adsp' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/adav80x' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/adau1373' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/ab8500' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/topic/88pm860x' into asoc-next | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/fix/fsl' into asoc-linus | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/fix/dma' into asoc-linus | Mark Brown | |
2013-11-08 | Merge remote-tracking branch 'asoc/fix/ak4642' into asoc-linus | Mark Brown | |
2013-11-08 | ASoC: fsl: imx-wm8962: remove an unneeded check | Dan Carpenter | |
"data->codec_clk" can't be an ERR_PTR here so I have removed the superflous check. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Mark Brown <broonie@linaro.org> | |||
2013-11-08 | ASoC: fsl: imx-pcm-fiq: Remove unused 'runtime' variable | Fabio Estevam | |
Commit 68f9672b (ASoC: fsl: imx-pcm-fiq: remove bogus period delta calculation) introduced the following build warning: sound/soc/fsl/imx-pcm-fiq.c:53:26: warning: unused variable 'runtime' [-Wunused-variable] Remove the unused 'runtime' variable. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Acked-by: Oskar Schirmer <oskar@scara.com> Signed-off-by: Mark Brown <broonie@linaro.org> | |||
2013-11-08 | inet: fix a UFO regression | Eric Dumazet | |
While testing virtio_net and skb_segment() changes, Hannes reported that UFO was sending wrong frames. It appears this was introduced by a recent commit : 8c3a897bfab1 ("inet: restore gso for vxlan") The old condition to perform IP frag was : tunnel = !!skb->encapsulation; ... if (!tunnel && proto == IPPROTO_UDP) { So the new one should be : udpfrag = !skb->encapsulation && proto == IPPROTO_UDP; ... if (udpfrag) { Initialization of udpfrag must be done before call to ops->callbacks.gso_segment(skb, features), as skb_udp_tunnel_segment() clears skb->encapsulation (We want udpfrag to be true for UFO, false for VXLAN) With help from Alexei Starovoitov Reported-by: Hannes Frederic Sowa <hannes@stressinduktion.org> Signed-off-by: Eric Dumazet <edumazet@google.com> Cc: Alexei Starovoitov <ast@plumgrid.com> Signed-off-by: David S. Miller <davem@davemloft.net> | |||
2013-11-08 | ALSA: hda/realtek - Make fixup regs persist after resume | Kailang Yang | |
Upon suspend / resume, the fixup register settings are lost because sending HDA_FIXUP_ACT_PRE_PROBE is not part of the resume path. Instead, write our registers in response to the HDA_FIXUP_ACT_INIT, which happens after initial probe and upon resume. Signed-off-by: Kailang Yang <kailang@realtek.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> | |||
2013-11-08 | f2fs: fix memory leak after kobject init failed in fill_super | Chao Yu | |
If we failed to init&add kobject when fill_super, stats info and proc object of f2fs will not be released. We should free them before we finish fill_super. Signed-off-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com> | |||
2013-11-08 | f2fs: cleanup waiting routine for writeback pages in cp | Changman Lee | |
use genernal method supported by kernel o changes from v1 If any waiter exists at end io, wake up it. Signed-off-by: Changman Lee <cm224.lee@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com> | |||
2013-11-07 | Merge branch 'pskb_put' | David S. Miller | |
Mathias Krause says: ==================== move pskb_put (was: IPsec improvements) This series moves pskb_put() to the core code, making the code duplication in caif obsolete (patches 1 and 2). Patch 3 fixes a few kernel-doc issues. v2 of this series does no longer contain the skb_cow_data() patch and therefore no performance improvements for IPsec. The change is still under discussion, but otherwise independent from the above changes. Please apply! v2: - kernel-doc fixes for pskb_put, as noticed by Ben - dropped skb_cow_data patch as it's still discussed - added a kernel-doc fixes patch (patch 3) ==================== Signed-off-by: David S. Miller <davem@davemloft.net> |