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
| ||
|
Message-Id: <20120811.181642.1587792778007257202.davem@davemloft.net> Date: Sat, 11 Aug 2012 18:16:42 -0700 (PDT) From: David Miller <davem@...emloft.net> To: yefremov.denis@...il.com Cc: mst@...hat.com, jasowang@...hat.com, ebiederm@...ssion.com, ian.campbell@...rix.com, netdev@...r.kernel.org, linux-kernel@...r.kernel.org, ldv-project@...ras.ru Subject: Re: [PATCH] macvtap: rcu_dereference outside read-lock section From: Denis Efremov <yefremov.denis@...il.com> Date: Sat, 11 Aug 2012 14:05:27 +0400 > - if (rcu_dereference(vlan->taps[i]) == q) > + if (rcu_dereference_protected(vlan->taps[i], > + lockdep_is_held(&macvtap_lock)) == q) You must use the proper combination of TAB character and spaces to line up the lockdep_is_held() argument with the first column after openning "(" on the previous line. Never be lazy and use only TABs. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists