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


Groups > linux.kernel > #1566641

[PATCH -next] eeprom: idt_89hpesx: Drop kfree for memory allocated with devm_kzalloc

Path csiph.com!news.redatomik.org!aioe.org!bofh.it!news.nic.it!robomod
From Wei Yongjun <weiyj.lk@gmail.com>
Newsgroups linux.kernel
Subject [PATCH -next] eeprom: idt_89hpesx: Drop kfree for memory allocated with devm_kzalloc
Date Wed, 25 Jan 2017 15:20:01 +0100
Message-ID <t3wAx-2Oh-11@gated-at.bofh.it> (permalink)
X-Original-To Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Serge Semin <fancer.lancer@gmail.com>
Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=MIg8Z2l+/5M3B8uvF0+8dWKjCawEmq5Vk40Kl3iC8/A=; b=PW4gpopUT22pYB2jQkhSGlOYgDMbjDyjS+YlCFC7B3xfsr76hLUkPtLLIqJubyy9ZC 2AXCd1ArS0yk8gOLu+S8uDrEaSAKYDck7mA4ke5gQAulcwYvfU/FIZmDTlT3nYeuWSqu NNJ3CjubwqNhL+wqGcxzRgCSmKlRyqqcpfDKJq7YK4UvAThL6l5504DrF7wjHTn7XvID 14iC6yUEGyORUI6+/G/NPqsVEc1aAnN4Nz3mjkuS0diUoBI186Zk2l5ExD01ELnuVsCM rV0qX/12ybSVsEyjUUAE1DLjcWehnLrv5qd90pw8L4T5z1gjpQsVExVSvXzp8s9W78w2 CRLw==
X-Google-Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=MIg8Z2l+/5M3B8uvF0+8dWKjCawEmq5Vk40Kl3iC8/A=; b=Zyu7WaW7KwhPE49meQPk70xuAwbzveTWRZrGNd0Mij/lD49W5wv1QyFF/DwLJAabav TGBor5cj7L25epO/ol4WQJ9jEveYWiZIrwEmil7VYKQo1i0z5j++ddg/66ullMNfY0KE ytuyNegxTwm1/kh083LgAQVH7lJ7JWOWvuCCmZtJFTR2lCRDK/CgT03GjEui6CHiens6 Endl/kkuES8sc3AxtS8mZfIk2sHMtD1VMVUxLFOVWsR+POXKiOesG0IrxSJb2/d9TuPF QGFx7ajBiFpyHsofy9zI6NFvR6nPDuvxWQKH202okZmOSJxwBOxS/+V6ECc5VcEyom0B 9jJw==
X-Gm-Message-State AIkVDXJ2nR4mhMPAHbOY2RgmjV6nrHi2wRME/MiPINlBjSMcnE9Q1LAwe7szJReC/S5ZDg==
X-Received by 10.84.217.216 with SMTP id d24mr3964265plj.101.1485353399359; Wed, 25 Jan 2017 06:09:59 -0800 (PST)
X-Mailer git-send-email 2.9.3
MIME-Version 1.0
Content-Type text/plain; charset=ISO-8859-1
Content-Transfer-Encoding 7bit
Sender robomod@news.nic.it
List-ID <linux-kernel.vger.kernel.org>
X-Mailing-List linux-kernel@vger.kernel.org
Approved robomod@news.nic.it
Lines 33
Organization linux.* mail to news gateway
X-Original-Cc Wei Yongjun <weiyongjun1@huawei.com>, linux-kernel@vger.kernel.org
X-Original-Date Wed, 25 Jan 2017 14:09:52 +0000
X-Original-Message-ID <20170125140952.25764-1-weiyj.lk@gmail.com>
X-Original-Sender linux-kernel-owner@vger.kernel.org
Xref csiph.com linux.kernel:1566641

Show key headers only | View raw


From: Wei Yongjun <weiyongjun1@huawei.com>

It's not necessary to free memory allocated with devm_kzalloc
and using kfree leads to a double free.

Fixes: cfad6425382e ("eeprom: Add IDT 89HPESx EEPROM/CSR driver")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 drivers/misc/eeprom/idt_89hpesx.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/misc/eeprom/idt_89hpesx.c b/drivers/misc/eeprom/idt_89hpesx.c
index 25d47d0..f5f2c5a 100644
--- a/drivers/misc/eeprom/idt_89hpesx.c
+++ b/drivers/misc/eeprom/idt_89hpesx.c
@@ -1359,7 +1359,6 @@ static int idt_create_sysfs_files(struct idt_89hpesx_dev *pdev)
 	pdev->ee_file->size = pdev->eesize;
 	ret = sysfs_create_bin_file(&dev->kobj, pdev->ee_file);
 	if (ret != 0) {
-		kfree(pdev->ee_file);
 		dev_err(dev, "Failed to create EEPROM sysfs-node");
 		return ret;
 	}
@@ -1381,9 +1380,6 @@ static void idt_remove_sysfs_files(struct idt_89hpesx_dev *pdev)
 
 	/* Remove EEPROM sysfs file */
 	sysfs_remove_bin_file(&dev->kobj, pdev->ee_file);
-
-	/* Free memory allocated for bin_attribute structure */
-	kfree(pdev->ee_file);
 }
 
 /*

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH -next] eeprom: idt_89hpesx: Drop kfree for memory allocated with devm_kzalloc Wei Yongjun <weiyj.lk@gmail.com> - 2017-01-25 15:20 +0100
  Re: [PATCH -next] eeprom: idt_89hpesx: Drop kfree for memory  allocated with devm_kzalloc Serge Semin <fancer.lancer@gmail.com> - 2017-01-26 13:50 +0100

csiph-web