Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1679337 > unrolled thread

[PATCH] media: vb2 vmalloc: Constify dma_buf_ops structures.

Started byArvind Yadav <arvind.yadav.cs@gmail.com>
First post2017-07-01 13:40 +0200
Last post2017-07-01 13:40 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] media: vb2 vmalloc: Constify dma_buf_ops structures. Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-07-01 13:40 +0200

#1679337 — [PATCH] media: vb2 vmalloc: Constify dma_buf_ops structures.

FromArvind Yadav <arvind.yadav.cs@gmail.com>
Date2017-07-01 13:40 +0200
Subject[PATCH] media: vb2 vmalloc: Constify dma_buf_ops structures.
Message-ID<tYoUO-2x5-19@gated-at.bofh.it>
dma_buf_ops are not supposed to change at runtime. All functions
working with dma_buf_ops provided by <linux/dma-buf.h> work with
const dma_buf_ops. So mark the non-const structs as const.

File size before:
   text	   data	    bss	    dec	    hex	filename
   3171	    192	      0	   3363	    d23 drivers/media/v4l2-core/videobuf2-vmalloc.o

File size After adding 'const':
   text	   data	    bss	    dec	    hex	filename
   3291	     80	      0	   3371	    d2b drivers/media/v4l2-core/videobuf2-vmalloc.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/media/v4l2-core/videobuf2-vmalloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/v4l2-core/videobuf2-vmalloc.c b/drivers/media/v4l2-core/videobuf2-vmalloc.c
index b337d78..6bc130f 100644
--- a/drivers/media/v4l2-core/videobuf2-vmalloc.c
+++ b/drivers/media/v4l2-core/videobuf2-vmalloc.c
@@ -338,7 +338,7 @@ static int vb2_vmalloc_dmabuf_ops_mmap(struct dma_buf *dbuf,
 	return vb2_vmalloc_mmap(dbuf->priv, vma);
 }
 
-static struct dma_buf_ops vb2_vmalloc_dmabuf_ops = {
+static const struct dma_buf_ops vb2_vmalloc_dmabuf_ops = {
 	.attach = vb2_vmalloc_dmabuf_ops_attach,
 	.detach = vb2_vmalloc_dmabuf_ops_detach,
 	.map_dma_buf = vb2_vmalloc_dmabuf_ops_map,
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web