lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Mon, 18 Aug 2008 09:43:44 -0700
From:	Cordelia <cordsam@...ux.vnet.ibm.com>
To:	linux-kernel@...r.kernel.org
Subject: [PATCH] pci: Changed list_for_each to list_for_each_entry

Signed-off-by: Cordelia Sam <cordesam@...il.com>
---
 drivers/pci/probe.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index a04498d..6a7ba36 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -1245,13 +1245,11 @@ static int __init pci_sort_bf_cmp(const struct pci_dev *a, const struct pci_dev
  */
 static void __init pci_insertion_sort_klist(struct pci_dev *a, struct list_head *list)
 {
-	struct list_head *pos;
 	struct klist_node *n;
 	struct device *dev;
 	struct pci_dev *b;
 
-	list_for_each(pos, list) {
-		n = container_of(pos, struct klist_node, n_node);
+	list_for_each_entry(n, list, n_node) {
 		dev = container_of(n, struct device, knode_bus);
 		b = to_pci_dev(dev);
 		if (pci_sort_bf_cmp(a, b) <= 0) {
-- 
1.5.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ