kernel-janitors.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [for-next PATCH] IB/IPoIB: correct typo errors
@ 2012-07-30  9:44 Shlomo Pongratz
       [not found] ` <1343641441-11942-1-git-send-email-shlomop-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Shlomo Pongratz @ 2012-07-30  9:44 UTC (permalink / raw)
  To: linux-rdma-u79uwXL29TY76Z2rM5mHXA
  Cc: ogerlitz-VPRAkNaXOzVWk0Htik3J/w,
	kernel-janitors-u79uwXL29TY76Z2rM5mHXA,
	wfg-VuQAYsv1563Yd54FQh9/CA, roland-DgEjT+Ai2ygdnm+yROfE0A,
	Shlomo Pongratz

used 'ntbl->lock' instead of 'ntbl->rwlock'.
wrong pointer type in non CM stub 'ipoib_cm_enabled' in function prototype.

Reported-by: Fengguang Wu <wfg@linux.intel.com>

Signed-off-by: Shlomo Pongratz <shlomop@mellanox.com>
---
 drivers/infiniband/ulp/ipoib/ipoib.h      |    2 +-
 drivers/infiniband/ulp/ipoib/ipoib_main.c |   10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/infiniband/ulp/ipoib/ipoib.h b/drivers/infiniband/ulp/ipoib/ipoib.h
index 4965f90..ca43901 100644
--- a/drivers/infiniband/ulp/ipoib/ipoib.h
+++ b/drivers/infiniband/ulp/ipoib/ipoib.h
@@ -591,7 +591,7 @@ static inline int ipoib_cm_admin_enabled(struct net_device *dev)
 {
 	return 0;
 }
-static inline int ipoib_cm_enabled(struct net_device *dev, struct neighbour *n)
+static inline int ipoib_cm_enabled(struct net_device *dev, u8 *hwaddr)
 
 {
 	return 0;
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c b/drivers/infiniband/ulp/ipoib/ipoib_main.c
index a68ce4e..61318a7 100644
--- a/drivers/infiniband/ulp/ipoib/ipoib_main.c
+++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c
@@ -882,7 +882,7 @@ static void __ipoib_reap_neigh(struct ipoib_dev_priv *priv)
 		struct ipoib_neigh __rcu **np = &htbl->buckets[i];
 
 		while ((neigh = rcu_dereference_protected(*np,
-				lockdep_is_held(&ntbl->lock))) != NULL) {
+				is_held(&ntbl->rwlock))) != NULL) {
 			/* was the neigh idle for two GC periods */
 			if (time_after(neigh_obsolete, neigh->alive)) {
 				rcu_assign_pointer(*np,
@@ -962,7 +962,7 @@ struct ipoib_neigh *ipoib_neigh_alloc(u8 *daddr,
 					    lockdep_is_held(&ntbl->rwlock));
 	     neigh != NULL;
 	     neigh = rcu_dereference_protected(neigh->hnext,
-					lockdep_is_held(&ntbl->lock))) {
+					lockdep_is_held(&ntbl->rwlock))) {
 		if (memcmp(daddr, neigh->daddr, INFINIBAND_ALEN) = 0) {
 			/* found, take one ref on behalf of the caller */
 			if (!atomic_inc_not_zero(&neigh->refcnt)) {
@@ -1051,7 +1051,7 @@ void ipoib_neigh_free(struct ipoib_neigh *neigh)
 					    lockdep_is_held(&ntbl->rwlock));
 	     n != NULL;
 	     n = rcu_dereference_protected(neigh->hnext,
-					lockdep_is_held(&ntbl->lock))) {
+					lockdep_is_held(&ntbl->rwlock))) {
 		if (n = neigh) {
 			/* found */
 			rcu_assign_pointer(*np,
@@ -1135,7 +1135,7 @@ void ipoib_del_neighs_by_gid(struct net_device *dev, u8 *gid)
 		struct ipoib_neigh __rcu **np = &htbl->buckets[i];
 
 		while ((neigh = rcu_dereference_protected(*np,
-				lockdep_is_held(&ntbl->lock))) != NULL) {
+				lockdep_is_held(&ntbl->rwlock))) != NULL) {
 			/* delete neighs belong to this parent */
 			if (!memcmp(gid, neigh->daddr + 4, sizeof (union ib_gid))) {
 				rcu_assign_pointer(*np,
@@ -1175,7 +1175,7 @@ static void ipoib_flush_neighs(struct ipoib_dev_priv *priv)
 		struct ipoib_neigh __rcu **np = &htbl->buckets[i];
 
 		while ((neigh = rcu_dereference_protected(*np,
-				lockdep_is_held(&ntbl->lock))) != NULL) {
+				lockdep_is_held(&ntbl->rwlock))) != NULL) {
 			rcu_assign_pointer(*np,
 				   rcu_dereference_protected(neigh->hnext,
 					lockdep_is_held(&ntbl->rwlock)));
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [for-next PATCH] IB/IPoIB: correct typo errors
       [not found] ` <1343641441-11942-1-git-send-email-shlomop-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2012-07-30 14:48   ` Roland Dreier
  2012-07-30 14:50   ` Roland Dreier
  1 sibling, 0 replies; 4+ messages in thread
From: Roland Dreier @ 2012-07-30 14:48 UTC (permalink / raw)
  To: Shlomo Pongratz
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	ogerlitz-VPRAkNaXOzVWk0Htik3J/w,
	kernel-janitors-u79uwXL29TY76Z2rM5mHXA,
	wfg-VuQAYsv1563Yd54FQh9/CA

thanks, rolled these fixes into the main patch.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [for-next PATCH] IB/IPoIB: correct typo errors
       [not found] ` <1343641441-11942-1-git-send-email-shlomop-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  2012-07-30 14:48   ` Roland Dreier
@ 2012-07-30 14:50   ` Roland Dreier
       [not found]     ` <CAL1RGDUGo+VGumt4R9UPhFCK20q+YRb3OU05CoxbBxk=tDAupw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  1 sibling, 1 reply; 4+ messages in thread
From: Roland Dreier @ 2012-07-30 14:50 UTC (permalink / raw)
  To: Shlomo Pongratz
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	ogerlitz-VPRAkNaXOzVWk0Htik3J/w,
	kernel-janitors-u79uwXL29TY76Z2rM5mHXA,
	wfg-VuQAYsv1563Yd54FQh9/CA

On Mon, Jul 30, 2012 at 2:44 AM, Shlomo Pongratz <shlomop@mellanox.com> wrote:
> -                               lockdep_is_held(&ntbl->lock))) != NULL) {
> +                               is_held(&ntbl->rwlock))) != NULL) {

By the way, I assume this is a typo -- there is no plain "is_held()," is there?

 - R.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [for-next PATCH] IB/IPoIB: correct typo errors
       [not found]     ` <CAL1RGDUGo+VGumt4R9UPhFCK20q+YRb3OU05CoxbBxk=tDAupw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2012-07-30 14:58       ` Shlomo Pongartz
  0 siblings, 0 replies; 4+ messages in thread
From: Shlomo Pongartz @ 2012-07-30 14:58 UTC (permalink / raw)
  To: Roland Dreier
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	ogerlitz-VPRAkNaXOzVWk0Htik3J/w,
	kernel-janitors-u79uwXL29TY76Z2rM5mHXA,
	wfg-VuQAYsv1563Yd54FQh9/CA

On 7/30/2012 5:50 PM, Roland Dreier wrote:
> On Mon, Jul 30, 2012 at 2:44 AM, Shlomo Pongratz <shlomop@mellanox.com> wrote:
>> -                               lockdep_is_held(&ntbl->lock))) != NULL) {
>> +                               is_held(&ntbl->rwlock))) != NULL) {
> By the way, I assume this is a typo -- there is no plain "is_held()," is there?
>
>   - R.
>
You are absolutely right.
Sorry.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-07-30 14:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-30  9:44 [for-next PATCH] IB/IPoIB: correct typo errors Shlomo Pongratz
     [not found] ` <1343641441-11942-1-git-send-email-shlomop-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2012-07-30 14:48   ` Roland Dreier
2012-07-30 14:50   ` Roland Dreier
     [not found]     ` <CAL1RGDUGo+VGumt4R9UPhFCK20q+YRb3OU05CoxbBxk=tDAupw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-07-30 14:58       ` Shlomo Pongartz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).