All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] Helper to abstract vma handling in media layer
@ 2015-06-10  9:20 Mauro Carvalho Chehab
  2015-06-10  9:20   ` Mauro Carvalho Chehab
                   ` (11 more replies)
  0 siblings, 12 replies; 35+ messages in thread
From: Mauro Carvalho Chehab @ 2015-06-10  9:20 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Mauro Carvalho Chehab, Linux Media Mailing List, Mauro Carvalho Chehab

Hi Andrew,

I received this patch series with a new set of helper functions for
mm, together with changes for media and DRM drivers.

As this stuff is actually mm code, I prefer if this got merged via
your tree.

Could you please handle it? Please notice that patch 8 actually changes
the exynos DRM driver, but it misses ack from DRM people.

Regards,
Mauro

Jan Kara (9):
  mm: Provide new get_vaddr_frames() helper
  [media] media: omap_vout: Convert omap_vout_uservirt_to_phys() to use
    get_vaddr_pfns()
  [media] vb2: Provide helpers for mapping virtual addresses
  [media] media: vb2: Convert vb2_dma_sg_get_userptr() to use frame
    vector
  [media] media: vb2: Convert vb2_vmalloc_get_userptr() to use frame
    vector
  [media] media: vb2: Convert vb2_dc_get_userptr() to use frame vector
  [media] media: vb2: Remove unused functions
  [media] drm/exynos: Convert g2d_userptr_get_dma_addr() to use
    get_vaddr_frames()
  [media] mm: Move get_vaddr_frames() behind a config option

 drivers/gpu/drm/exynos/Kconfig                 |   1 +
 drivers/gpu/drm/exynos/exynos_drm_g2d.c        |  95 ++++------
 drivers/gpu/drm/exynos/exynos_drm_gem.c        |  97 -----------
 drivers/media/platform/omap/Kconfig            |   1 +
 drivers/media/platform/omap/omap_vout.c        |  69 ++++----
 drivers/media/v4l2-core/Kconfig                |   1 +
 drivers/media/v4l2-core/videobuf2-dma-contig.c | 214 ++++-------------------
 drivers/media/v4l2-core/videobuf2-dma-sg.c     |  99 ++---------
 drivers/media/v4l2-core/videobuf2-memops.c     | 156 ++++++-----------
 drivers/media/v4l2-core/videobuf2-vmalloc.c    |  92 ++++------
 include/linux/mm.h                             |  44 +++++
 include/media/videobuf2-memops.h               |  11 +-
 mm/Kconfig                                     |   3 +
 mm/Makefile                                    |   1 +
 mm/frame_vector.c                              | 232 +++++++++++++++++++++++++
 mm/gup.c                                       |   1 +
 16 files changed, 486 insertions(+), 631 deletions(-)
 create mode 100644 mm/frame_vector.c

-- 
2.4.2


^ permalink raw reply	[flat|nested] 35+ messages in thread

end of thread, other threads:[~2015-06-22 22:04 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-10  9:20 [PATCH 0/9] Helper to abstract vma handling in media layer Mauro Carvalho Chehab
2015-06-10  9:20 ` [PATCH 1/9] mm: Provide new get_vaddr_frames() helper Mauro Carvalho Chehab
2015-06-10  9:20   ` Mauro Carvalho Chehab
2015-06-11  8:01   ` Sergey Senozhatsky
2015-06-11  8:01     ` Sergey Senozhatsky
2015-06-10  9:20 ` [PATCH 2/9] [media] media: omap_vout: Convert omap_vout_uservirt_to_phys() to use get_vaddr_pfns() Mauro Carvalho Chehab
2015-06-11  4:21   ` Laurent Pinchart
2015-06-11 17:23     ` Hans Verkuil
2015-06-12  9:21     ` Tomi Valkeinen
2015-06-12  9:26       ` Laurent Pinchart
2015-06-12  9:44         ` Tomi Valkeinen
2015-06-10  9:20 ` [PATCH 3/9] [media] vb2: Provide helpers for mapping virtual addresses Mauro Carvalho Chehab
2015-06-10  9:20 ` [PATCH 4/9] [media] media: vb2: Convert vb2_dma_sg_get_userptr() to use frame vector Mauro Carvalho Chehab
2015-06-10  9:20 ` [PATCH 5/9] [media] media: vb2: Convert vb2_vmalloc_get_userptr() " Mauro Carvalho Chehab
2015-06-10  9:20 ` [PATCH 6/9] [media] media: vb2: Convert vb2_dc_get_userptr() " Mauro Carvalho Chehab
2015-06-10  9:20 ` [PATCH 7/9] [media] media: vb2: Remove unused functions Mauro Carvalho Chehab
2015-06-10  9:20 ` [PATCH 8/9] [media] drm/exynos: Convert g2d_userptr_get_dma_addr() to use get_vaddr_frames() Mauro Carvalho Chehab
2015-06-10  9:20   ` Mauro Carvalho Chehab
2015-06-10  9:20 ` [PATCH 9/9] [media] mm: Move get_vaddr_frames() behind a config option Mauro Carvalho Chehab
2015-06-10  9:20   ` Mauro Carvalho Chehab
2015-06-10  9:20   ` Mauro Carvalho Chehab
2015-06-10  9:20   ` Mauro Carvalho Chehab
2015-06-10 16:37   ` Josh Triplett
2015-06-10 16:37     ` Josh Triplett
2015-06-10 16:37     ` Josh Triplett
2015-06-10 16:37     ` Josh Triplett
2015-06-18 13:44     ` Jan Kara
2015-06-18 13:44       ` Jan Kara
2015-06-18 13:44       ` Jan Kara
2015-06-18 13:44       ` Jan Kara
2015-06-11  9:08 ` [PATCH 0/9] Helper to abstract vma handling in media layer Hans Verkuil
2015-06-11 18:54   ` Andrew Morton
2015-06-11 19:51     ` Hans Verkuil
2015-06-15  7:41 ` Hans Verkuil
2015-06-22 22:04 ` Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.