From: Julia Lawall <julia.lawall@inria.fr>
To: Sidraya <sidraya.bj@pathpartnertech.com>,
Praneeth Bajjuri <praneeth@ti.com>,
Angela Stegmaier <angelabaker@ti.com>
Cc: linux-kernel@vger.kernel.org, kbuild-all@lists.01.org
Subject: [PATCH] media: platform: vxd: Kconfig: fix noderef.cocci warnings
Date: Sat, 20 Nov 2021 10:45:02 +0100 (CET) [thread overview]
Message-ID: <alpine.DEB.2.22.394.2111201042540.3043@hadrien> (raw)
From: kernel test robot <lkp@intel.com>
sizeof when applied to a pointer typed expression gives the size of
the pointer
Generated by: scripts/coccinelle/misc/noderef.cocci
CC: Sidraya <sidraya.bj@pathpartnertech.com>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: kernel test robot <lkp@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@inria.fr>
---
tree: git://git.ti.com/ti-linux-kernel/ti-linux-kernel.git ti-rt-linux-5.10.y
head: 0c67d996db8f3c9149598bc98657ae28fee22208
commit: 97dfdd999ba7266785579c99c40a3c65e63e864a [10173/10206] media: platform: vxd: Kconfig: Add Video decoder Kconfig and Makefile
:::::: branch date: 2 days ago
:::::: commit date: 9 days ago
work_queue.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/drivers/media/platform/vxe-vxd/common/work_queue.c
+++ b/drivers/media/platform/vxe-vxd/common/work_queue.c
@@ -39,7 +39,7 @@ void init_work(void **work_args, void *w
//create a link
struct node *link = kmalloc(sizeof(*link), GFP_KERNEL);
- *work = kzalloc(sizeof(*work), GFP_KERNEL);
+ *work = kzalloc(sizeof(**work), GFP_KERNEL);
if (!(*work)) {
pr_err("Memory allocation failed for work_queue\n");
return;
@@ -62,7 +62,7 @@ void init_delayed_work(void **work_args,
//create a link
struct node *link = kmalloc(sizeof(*link), GFP_KERNEL);
- *work = kzalloc(sizeof(*work), GFP_KERNEL);
+ *work = kzalloc(sizeof(**work), GFP_KERNEL);
if (!(*work)) {
pr_err("Memory allocation failed for delayed_work_queue\n");
return;
reply other threads:[~2021-11-20 9:51 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=alpine.DEB.2.22.394.2111201042540.3043@hadrien \
--to=julia.lawall@inria.fr \
--cc=angelabaker@ti.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=praneeth@ti.com \
--cc=sidraya.bj@pathpartnertech.com \
/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®