diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2016-06-08 11:59:37 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2016-06-08 21:23:21 +0200 |
commit | 3fc661a98c8046a27dcf45a63049ee6605ebd364 (patch) | |
tree | 0468b8f3c8d4aa13ecce333ab3ad84146263cbc4 /target/linux/brcm2708/patches-4.4/0288-drm-vc4-Fix-a-framebuffer-reference-leak-on-async-fl.patch | |
parent | c17f02d2f272c6d74b20c2df050437f761d013a6 (diff) | |
download | upstream-3fc661a98c8046a27dcf45a63049ee6605ebd364.tar.gz upstream-3fc661a98c8046a27dcf45a63049ee6605ebd364.tar.bz2 upstream-3fc661a98c8046a27dcf45a63049ee6605ebd364.zip |
brcm2708: update linux 4.4 patches to latest version
As usual these patches were extracted from the raspberry pi repo:
https://github.com/raspberrypi/linux/tree/rpi-4.4.y
Also alphabetically order sound-soc kernel packages.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/patches-4.4/0288-drm-vc4-Fix-a-framebuffer-reference-leak-on-async-fl.patch')
-rw-r--r-- | target/linux/brcm2708/patches-4.4/0288-drm-vc4-Fix-a-framebuffer-reference-leak-on-async-fl.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/target/linux/brcm2708/patches-4.4/0288-drm-vc4-Fix-a-framebuffer-reference-leak-on-async-fl.patch b/target/linux/brcm2708/patches-4.4/0288-drm-vc4-Fix-a-framebuffer-reference-leak-on-async-fl.patch deleted file mode 100644 index 01e1fda0c5..0000000000 --- a/target/linux/brcm2708/patches-4.4/0288-drm-vc4-Fix-a-framebuffer-reference-leak-on-async-fl.patch +++ /dev/null @@ -1,26 +0,0 @@ -From af6fb397532633e85bb101801d8156b2263aa54f Mon Sep 17 00:00:00 2001 -From: Eric Anholt <eric@anholt.net> -Date: Fri, 5 Feb 2016 15:06:15 -0800 -Subject: [PATCH 288/304] drm/vc4: Fix a framebuffer reference leak on async - flip interrupt. - -We'd need X to queue up an async pageflip while another is -outstanding, and then take a SIGIO. I think X actually avoids sending -out the next pageflip while one's already queued, but I'm not sure. - -Signed-off-by: Eric Anholt <eric@anholt.net> -(cherry picked from commit 48627eb8dc55c60d35794105f6f79fb627347dbd) ---- - drivers/gpu/drm/vc4/vc4_crtc.c | 1 + - 1 file changed, 1 insertion(+) - ---- a/drivers/gpu/drm/vc4/vc4_crtc.c -+++ b/drivers/gpu/drm/vc4/vc4_crtc.c -@@ -527,6 +527,7 @@ static int vc4_async_page_flip(struct dr - /* Make sure all other async modesetes have landed. */ - ret = down_interruptible(&vc4->async_modeset); - if (ret) { -+ drm_framebuffer_unreference(fb); - kfree(flip_state); - return ret; - } |