ipoib_main.c 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316
  1. /*
  2. * Copyright (c) 2004 Topspin Communications. All rights reserved.
  3. * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
  4. * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
  5. *
  6. * This software is available to you under a choice of one of two
  7. * licenses. You may choose to be licensed under the terms of the GNU
  8. * General Public License (GPL) Version 2, available from the file
  9. * COPYING in the main directory of this source tree, or the
  10. * OpenIB.org BSD license below:
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above
  17. * copyright notice, this list of conditions and the following
  18. * disclaimer.
  19. *
  20. * - Redistributions in binary form must reproduce the above
  21. * copyright notice, this list of conditions and the following
  22. * disclaimer in the documentation and/or other materials
  23. * provided with the distribution.
  24. *
  25. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  26. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  28. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  29. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  30. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  31. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  32. * SOFTWARE.
  33. *
  34. * $Id: ipoib_main.c 1377 2004-12-23 19:57:12Z roland $
  35. */
  36. #include "ipoib.h"
  37. #include <linux/module.h>
  38. #include <linux/init.h>
  39. #include <linux/slab.h>
  40. #include <linux/kernel.h>
  41. #include <linux/if_arp.h> /* For ARPHRD_xxx */
  42. #include <linux/ip.h>
  43. #include <linux/in.h>
  44. #include <net/dst.h>
  45. MODULE_AUTHOR("Roland Dreier");
  46. MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
  47. MODULE_LICENSE("Dual BSD/GPL");
  48. int ipoib_sendq_size __read_mostly = IPOIB_TX_RING_SIZE;
  49. int ipoib_recvq_size __read_mostly = IPOIB_RX_RING_SIZE;
  50. module_param_named(send_queue_size, ipoib_sendq_size, int, 0444);
  51. MODULE_PARM_DESC(send_queue_size, "Number of descriptors in send queue");
  52. module_param_named(recv_queue_size, ipoib_recvq_size, int, 0444);
  53. MODULE_PARM_DESC(recv_queue_size, "Number of descriptors in receive queue");
  54. #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
  55. int ipoib_debug_level;
  56. module_param_named(debug_level, ipoib_debug_level, int, 0644);
  57. MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
  58. #endif
  59. struct ipoib_path_iter {
  60. struct net_device *dev;
  61. struct ipoib_path path;
  62. };
  63. static const u8 ipv4_bcast_addr[] = {
  64. 0x00, 0xff, 0xff, 0xff,
  65. 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
  66. 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
  67. };
  68. struct workqueue_struct *ipoib_workqueue;
  69. struct ib_sa_client ipoib_sa_client;
  70. static void ipoib_add_one(struct ib_device *device);
  71. static void ipoib_remove_one(struct ib_device *device);
  72. static struct ib_client ipoib_client = {
  73. .name = "ipoib",
  74. .add = ipoib_add_one,
  75. .remove = ipoib_remove_one
  76. };
  77. int ipoib_open(struct net_device *dev)
  78. {
  79. struct ipoib_dev_priv *priv = netdev_priv(dev);
  80. ipoib_dbg(priv, "bringing up interface\n");
  81. napi_enable(&priv->napi);
  82. set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
  83. if (ipoib_pkey_dev_delay_open(dev))
  84. return 0;
  85. if (ipoib_ib_dev_open(dev)) {
  86. napi_disable(&priv->napi);
  87. return -EINVAL;
  88. }
  89. if (ipoib_ib_dev_up(dev)) {
  90. ipoib_ib_dev_stop(dev, 1);
  91. napi_disable(&priv->napi);
  92. return -EINVAL;
  93. }
  94. if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
  95. struct ipoib_dev_priv *cpriv;
  96. /* Bring up any child interfaces too */
  97. mutex_lock(&priv->vlan_mutex);
  98. list_for_each_entry(cpriv, &priv->child_intfs, list) {
  99. int flags;
  100. flags = cpriv->dev->flags;
  101. if (flags & IFF_UP)
  102. continue;
  103. dev_change_flags(cpriv->dev, flags | IFF_UP);
  104. }
  105. mutex_unlock(&priv->vlan_mutex);
  106. }
  107. netif_start_queue(dev);
  108. return 0;
  109. }
  110. static int ipoib_stop(struct net_device *dev)
  111. {
  112. struct ipoib_dev_priv *priv = netdev_priv(dev);
  113. ipoib_dbg(priv, "stopping interface\n");
  114. clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
  115. napi_disable(&priv->napi);
  116. netif_stop_queue(dev);
  117. clear_bit(IPOIB_FLAG_NETIF_STOPPED, &priv->flags);
  118. /*
  119. * Now flush workqueue to make sure a scheduled task doesn't
  120. * bring our internal state back up.
  121. */
  122. flush_workqueue(ipoib_workqueue);
  123. ipoib_ib_dev_down(dev, 1);
  124. ipoib_ib_dev_stop(dev, 1);
  125. if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
  126. struct ipoib_dev_priv *cpriv;
  127. /* Bring down any child interfaces too */
  128. mutex_lock(&priv->vlan_mutex);
  129. list_for_each_entry(cpriv, &priv->child_intfs, list) {
  130. int flags;
  131. flags = cpriv->dev->flags;
  132. if (!(flags & IFF_UP))
  133. continue;
  134. dev_change_flags(cpriv->dev, flags & ~IFF_UP);
  135. }
  136. mutex_unlock(&priv->vlan_mutex);
  137. }
  138. return 0;
  139. }
  140. static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
  141. {
  142. struct ipoib_dev_priv *priv = netdev_priv(dev);
  143. /* dev->mtu > 2K ==> connected mode */
  144. if (ipoib_cm_admin_enabled(dev) && new_mtu <= IPOIB_CM_MTU) {
  145. if (new_mtu > priv->mcast_mtu)
  146. ipoib_warn(priv, "mtu > %d will cause multicast packet drops.\n",
  147. priv->mcast_mtu);
  148. dev->mtu = new_mtu;
  149. return 0;
  150. }
  151. if (new_mtu > IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN) {
  152. return -EINVAL;
  153. }
  154. priv->admin_mtu = new_mtu;
  155. dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
  156. return 0;
  157. }
  158. static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
  159. {
  160. struct ipoib_dev_priv *priv = netdev_priv(dev);
  161. struct rb_node *n = priv->path_tree.rb_node;
  162. struct ipoib_path *path;
  163. int ret;
  164. while (n) {
  165. path = rb_entry(n, struct ipoib_path, rb_node);
  166. ret = memcmp(gid, path->pathrec.dgid.raw,
  167. sizeof (union ib_gid));
  168. if (ret < 0)
  169. n = n->rb_left;
  170. else if (ret > 0)
  171. n = n->rb_right;
  172. else
  173. return path;
  174. }
  175. return NULL;
  176. }
  177. static int __path_add(struct net_device *dev, struct ipoib_path *path)
  178. {
  179. struct ipoib_dev_priv *priv = netdev_priv(dev);
  180. struct rb_node **n = &priv->path_tree.rb_node;
  181. struct rb_node *pn = NULL;
  182. struct ipoib_path *tpath;
  183. int ret;
  184. while (*n) {
  185. pn = *n;
  186. tpath = rb_entry(pn, struct ipoib_path, rb_node);
  187. ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
  188. sizeof (union ib_gid));
  189. if (ret < 0)
  190. n = &pn->rb_left;
  191. else if (ret > 0)
  192. n = &pn->rb_right;
  193. else
  194. return -EEXIST;
  195. }
  196. rb_link_node(&path->rb_node, pn, n);
  197. rb_insert_color(&path->rb_node, &priv->path_tree);
  198. list_add_tail(&path->list, &priv->path_list);
  199. return 0;
  200. }
  201. static void path_free(struct net_device *dev, struct ipoib_path *path)
  202. {
  203. struct ipoib_dev_priv *priv = netdev_priv(dev);
  204. struct ipoib_neigh *neigh, *tn;
  205. struct sk_buff *skb;
  206. unsigned long flags;
  207. while ((skb = __skb_dequeue(&path->queue)))
  208. dev_kfree_skb_irq(skb);
  209. spin_lock_irqsave(&priv->lock, flags);
  210. list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
  211. /*
  212. * It's safe to call ipoib_put_ah() inside priv->lock
  213. * here, because we know that path->ah will always
  214. * hold one more reference, so ipoib_put_ah() will
  215. * never do more than decrement the ref count.
  216. */
  217. if (neigh->ah)
  218. ipoib_put_ah(neigh->ah);
  219. ipoib_neigh_free(dev, neigh);
  220. }
  221. spin_unlock_irqrestore(&priv->lock, flags);
  222. if (path->ah)
  223. ipoib_put_ah(path->ah);
  224. kfree(path);
  225. }
  226. #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
  227. struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
  228. {
  229. struct ipoib_path_iter *iter;
  230. iter = kmalloc(sizeof *iter, GFP_KERNEL);
  231. if (!iter)
  232. return NULL;
  233. iter->dev = dev;
  234. memset(iter->path.pathrec.dgid.raw, 0, 16);
  235. if (ipoib_path_iter_next(iter)) {
  236. kfree(iter);
  237. return NULL;
  238. }
  239. return iter;
  240. }
  241. int ipoib_path_iter_next(struct ipoib_path_iter *iter)
  242. {
  243. struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
  244. struct rb_node *n;
  245. struct ipoib_path *path;
  246. int ret = 1;
  247. spin_lock_irq(&priv->lock);
  248. n = rb_first(&priv->path_tree);
  249. while (n) {
  250. path = rb_entry(n, struct ipoib_path, rb_node);
  251. if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
  252. sizeof (union ib_gid)) < 0) {
  253. iter->path = *path;
  254. ret = 0;
  255. break;
  256. }
  257. n = rb_next(n);
  258. }
  259. spin_unlock_irq(&priv->lock);
  260. return ret;
  261. }
  262. void ipoib_path_iter_read(struct ipoib_path_iter *iter,
  263. struct ipoib_path *path)
  264. {
  265. *path = iter->path;
  266. }
  267. #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
  268. void ipoib_flush_paths(struct net_device *dev)
  269. {
  270. struct ipoib_dev_priv *priv = netdev_priv(dev);
  271. struct ipoib_path *path, *tp;
  272. LIST_HEAD(remove_list);
  273. spin_lock_irq(&priv->tx_lock);
  274. spin_lock(&priv->lock);
  275. list_splice(&priv->path_list, &remove_list);
  276. INIT_LIST_HEAD(&priv->path_list);
  277. list_for_each_entry(path, &remove_list, list)
  278. rb_erase(&path->rb_node, &priv->path_tree);
  279. list_for_each_entry_safe(path, tp, &remove_list, list) {
  280. if (path->query)
  281. ib_sa_cancel_query(path->query_id, path->query);
  282. spin_unlock(&priv->lock);
  283. spin_unlock_irq(&priv->tx_lock);
  284. wait_for_completion(&path->done);
  285. path_free(dev, path);
  286. spin_lock_irq(&priv->tx_lock);
  287. spin_lock(&priv->lock);
  288. }
  289. spin_unlock(&priv->lock);
  290. spin_unlock_irq(&priv->tx_lock);
  291. }
  292. static void path_rec_completion(int status,
  293. struct ib_sa_path_rec *pathrec,
  294. void *path_ptr)
  295. {
  296. struct ipoib_path *path = path_ptr;
  297. struct net_device *dev = path->dev;
  298. struct ipoib_dev_priv *priv = netdev_priv(dev);
  299. struct ipoib_ah *ah = NULL;
  300. struct ipoib_neigh *neigh, *tn;
  301. struct sk_buff_head skqueue;
  302. struct sk_buff *skb;
  303. unsigned long flags;
  304. if (!status)
  305. ipoib_dbg(priv, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT "\n",
  306. be16_to_cpu(pathrec->dlid), IPOIB_GID_ARG(pathrec->dgid));
  307. else
  308. ipoib_dbg(priv, "PathRec status %d for GID " IPOIB_GID_FMT "\n",
  309. status, IPOIB_GID_ARG(path->pathrec.dgid));
  310. skb_queue_head_init(&skqueue);
  311. if (!status) {
  312. struct ib_ah_attr av;
  313. if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av))
  314. ah = ipoib_create_ah(dev, priv->pd, &av);
  315. }
  316. spin_lock_irqsave(&priv->lock, flags);
  317. path->ah = ah;
  318. if (ah) {
  319. path->pathrec = *pathrec;
  320. ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
  321. ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
  322. while ((skb = __skb_dequeue(&path->queue)))
  323. __skb_queue_tail(&skqueue, skb);
  324. list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
  325. kref_get(&path->ah->ref);
  326. neigh->ah = path->ah;
  327. memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
  328. sizeof(union ib_gid));
  329. if (ipoib_cm_enabled(dev, neigh->neighbour)) {
  330. if (!ipoib_cm_get(neigh))
  331. ipoib_cm_set(neigh, ipoib_cm_create_tx(dev,
  332. path,
  333. neigh));
  334. if (!ipoib_cm_get(neigh)) {
  335. list_del(&neigh->list);
  336. if (neigh->ah)
  337. ipoib_put_ah(neigh->ah);
  338. ipoib_neigh_free(dev, neigh);
  339. continue;
  340. }
  341. }
  342. while ((skb = __skb_dequeue(&neigh->queue)))
  343. __skb_queue_tail(&skqueue, skb);
  344. }
  345. }
  346. path->query = NULL;
  347. complete(&path->done);
  348. spin_unlock_irqrestore(&priv->lock, flags);
  349. while ((skb = __skb_dequeue(&skqueue))) {
  350. skb->dev = dev;
  351. if (dev_queue_xmit(skb))
  352. ipoib_warn(priv, "dev_queue_xmit failed "
  353. "to requeue packet\n");
  354. }
  355. }
  356. static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
  357. {
  358. struct ipoib_dev_priv *priv = netdev_priv(dev);
  359. struct ipoib_path *path;
  360. path = kzalloc(sizeof *path, GFP_ATOMIC);
  361. if (!path)
  362. return NULL;
  363. path->dev = dev;
  364. skb_queue_head_init(&path->queue);
  365. INIT_LIST_HEAD(&path->neigh_list);
  366. memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
  367. path->pathrec.sgid = priv->local_gid;
  368. path->pathrec.pkey = cpu_to_be16(priv->pkey);
  369. path->pathrec.numb_path = 1;
  370. path->pathrec.traffic_class = priv->broadcast->mcmember.traffic_class;
  371. return path;
  372. }
  373. static int path_rec_start(struct net_device *dev,
  374. struct ipoib_path *path)
  375. {
  376. struct ipoib_dev_priv *priv = netdev_priv(dev);
  377. ipoib_dbg(priv, "Start path record lookup for " IPOIB_GID_FMT "\n",
  378. IPOIB_GID_ARG(path->pathrec.dgid));
  379. init_completion(&path->done);
  380. path->query_id =
  381. ib_sa_path_rec_get(&ipoib_sa_client, priv->ca, priv->port,
  382. &path->pathrec,
  383. IB_SA_PATH_REC_DGID |
  384. IB_SA_PATH_REC_SGID |
  385. IB_SA_PATH_REC_NUMB_PATH |
  386. IB_SA_PATH_REC_TRAFFIC_CLASS |
  387. IB_SA_PATH_REC_PKEY,
  388. 1000, GFP_ATOMIC,
  389. path_rec_completion,
  390. path, &path->query);
  391. if (path->query_id < 0) {
  392. ipoib_warn(priv, "ib_sa_path_rec_get failed\n");
  393. path->query = NULL;
  394. return path->query_id;
  395. }
  396. return 0;
  397. }
  398. static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
  399. {
  400. struct ipoib_dev_priv *priv = netdev_priv(dev);
  401. struct ipoib_path *path;
  402. struct ipoib_neigh *neigh;
  403. neigh = ipoib_neigh_alloc(skb->dst->neighbour, skb->dev);
  404. if (!neigh) {
  405. ++dev->stats.tx_dropped;
  406. dev_kfree_skb_any(skb);
  407. return;
  408. }
  409. /*
  410. * We can only be called from ipoib_start_xmit, so we're
  411. * inside tx_lock -- no need to save/restore flags.
  412. */
  413. spin_lock(&priv->lock);
  414. path = __path_find(dev, skb->dst->neighbour->ha + 4);
  415. if (!path) {
  416. path = path_rec_create(dev, skb->dst->neighbour->ha + 4);
  417. if (!path)
  418. goto err_path;
  419. __path_add(dev, path);
  420. }
  421. list_add_tail(&neigh->list, &path->neigh_list);
  422. if (path->ah) {
  423. kref_get(&path->ah->ref);
  424. neigh->ah = path->ah;
  425. memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
  426. sizeof(union ib_gid));
  427. if (ipoib_cm_enabled(dev, neigh->neighbour)) {
  428. if (!ipoib_cm_get(neigh))
  429. ipoib_cm_set(neigh, ipoib_cm_create_tx(dev, path, neigh));
  430. if (!ipoib_cm_get(neigh)) {
  431. list_del(&neigh->list);
  432. if (neigh->ah)
  433. ipoib_put_ah(neigh->ah);
  434. ipoib_neigh_free(dev, neigh);
  435. goto err_drop;
  436. }
  437. if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
  438. __skb_queue_tail(&neigh->queue, skb);
  439. else {
  440. ipoib_warn(priv, "queue length limit %d. Packet drop.\n",
  441. skb_queue_len(&neigh->queue));
  442. goto err_drop;
  443. }
  444. } else
  445. ipoib_send(dev, skb, path->ah, IPOIB_QPN(skb->dst->neighbour->ha));
  446. } else {
  447. neigh->ah = NULL;
  448. if (!path->query && path_rec_start(dev, path))
  449. goto err_list;
  450. __skb_queue_tail(&neigh->queue, skb);
  451. }
  452. spin_unlock(&priv->lock);
  453. return;
  454. err_list:
  455. list_del(&neigh->list);
  456. err_path:
  457. ipoib_neigh_free(dev, neigh);
  458. err_drop:
  459. ++dev->stats.tx_dropped;
  460. dev_kfree_skb_any(skb);
  461. spin_unlock(&priv->lock);
  462. }
  463. static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
  464. {
  465. struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
  466. /* Look up path record for unicasts */
  467. if (skb->dst->neighbour->ha[4] != 0xff) {
  468. neigh_add_path(skb, dev);
  469. return;
  470. }
  471. /* Add in the P_Key for multicasts */
  472. skb->dst->neighbour->ha[8] = (priv->pkey >> 8) & 0xff;
  473. skb->dst->neighbour->ha[9] = priv->pkey & 0xff;
  474. ipoib_mcast_send(dev, skb->dst->neighbour->ha + 4, skb);
  475. }
  476. static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
  477. struct ipoib_pseudoheader *phdr)
  478. {
  479. struct ipoib_dev_priv *priv = netdev_priv(dev);
  480. struct ipoib_path *path;
  481. /*
  482. * We can only be called from ipoib_start_xmit, so we're
  483. * inside tx_lock -- no need to save/restore flags.
  484. */
  485. spin_lock(&priv->lock);
  486. path = __path_find(dev, phdr->hwaddr + 4);
  487. if (!path) {
  488. path = path_rec_create(dev, phdr->hwaddr + 4);
  489. if (path) {
  490. /* put pseudoheader back on for next time */
  491. skb_push(skb, sizeof *phdr);
  492. __skb_queue_tail(&path->queue, skb);
  493. if (path_rec_start(dev, path)) {
  494. spin_unlock(&priv->lock);
  495. path_free(dev, path);
  496. return;
  497. } else
  498. __path_add(dev, path);
  499. } else {
  500. ++dev->stats.tx_dropped;
  501. dev_kfree_skb_any(skb);
  502. }
  503. spin_unlock(&priv->lock);
  504. return;
  505. }
  506. if (path->ah) {
  507. ipoib_dbg(priv, "Send unicast ARP to %04x\n",
  508. be16_to_cpu(path->pathrec.dlid));
  509. ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr));
  510. } else if ((path->query || !path_rec_start(dev, path)) &&
  511. skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
  512. /* put pseudoheader back on for next time */
  513. skb_push(skb, sizeof *phdr);
  514. __skb_queue_tail(&path->queue, skb);
  515. } else {
  516. ++dev->stats.tx_dropped;
  517. dev_kfree_skb_any(skb);
  518. }
  519. spin_unlock(&priv->lock);
  520. }
  521. static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
  522. {
  523. struct ipoib_dev_priv *priv = netdev_priv(dev);
  524. struct ipoib_neigh *neigh;
  525. unsigned long flags;
  526. if (unlikely(!spin_trylock_irqsave(&priv->tx_lock, flags)))
  527. return NETDEV_TX_LOCKED;
  528. /*
  529. * Check if our queue is stopped. Since we have the LLTX bit
  530. * set, we can't rely on netif_stop_queue() preventing our
  531. * xmit function from being called with a full queue.
  532. */
  533. if (unlikely(netif_queue_stopped(dev))) {
  534. spin_unlock_irqrestore(&priv->tx_lock, flags);
  535. return NETDEV_TX_BUSY;
  536. }
  537. if (likely(skb->dst && skb->dst->neighbour)) {
  538. if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) {
  539. ipoib_path_lookup(skb, dev);
  540. goto out;
  541. }
  542. neigh = *to_ipoib_neigh(skb->dst->neighbour);
  543. if (ipoib_cm_get(neigh)) {
  544. if (ipoib_cm_up(neigh)) {
  545. ipoib_cm_send(dev, skb, ipoib_cm_get(neigh));
  546. goto out;
  547. }
  548. } else if (neigh->ah) {
  549. if (unlikely((memcmp(&neigh->dgid.raw,
  550. skb->dst->neighbour->ha + 4,
  551. sizeof(union ib_gid))) ||
  552. (neigh->dev != dev))) {
  553. spin_lock(&priv->lock);
  554. /*
  555. * It's safe to call ipoib_put_ah() inside
  556. * priv->lock here, because we know that
  557. * path->ah will always hold one more reference,
  558. * so ipoib_put_ah() will never do more than
  559. * decrement the ref count.
  560. */
  561. ipoib_put_ah(neigh->ah);
  562. list_del(&neigh->list);
  563. ipoib_neigh_free(dev, neigh);
  564. spin_unlock(&priv->lock);
  565. ipoib_path_lookup(skb, dev);
  566. goto out;
  567. }
  568. ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(skb->dst->neighbour->ha));
  569. goto out;
  570. }
  571. if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
  572. spin_lock(&priv->lock);
  573. __skb_queue_tail(&neigh->queue, skb);
  574. spin_unlock(&priv->lock);
  575. } else {
  576. ++dev->stats.tx_dropped;
  577. dev_kfree_skb_any(skb);
  578. }
  579. } else {
  580. struct ipoib_pseudoheader *phdr =
  581. (struct ipoib_pseudoheader *) skb->data;
  582. skb_pull(skb, sizeof *phdr);
  583. if (phdr->hwaddr[4] == 0xff) {
  584. /* Add in the P_Key for multicast*/
  585. phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
  586. phdr->hwaddr[9] = priv->pkey & 0xff;
  587. ipoib_mcast_send(dev, phdr->hwaddr + 4, skb);
  588. } else {
  589. /* unicast GID -- should be ARP or RARP reply */
  590. if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
  591. (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
  592. ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x "
  593. IPOIB_GID_FMT "\n",
  594. skb->dst ? "neigh" : "dst",
  595. be16_to_cpup((__be16 *) skb->data),
  596. IPOIB_QPN(phdr->hwaddr),
  597. IPOIB_GID_RAW_ARG(phdr->hwaddr + 4));
  598. dev_kfree_skb_any(skb);
  599. ++dev->stats.tx_dropped;
  600. goto out;
  601. }
  602. unicast_arp_send(skb, dev, phdr);
  603. }
  604. }
  605. out:
  606. spin_unlock_irqrestore(&priv->tx_lock, flags);
  607. return NETDEV_TX_OK;
  608. }
  609. static void ipoib_timeout(struct net_device *dev)
  610. {
  611. struct ipoib_dev_priv *priv = netdev_priv(dev);
  612. ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
  613. jiffies_to_msecs(jiffies - dev->trans_start));
  614. ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
  615. netif_queue_stopped(dev),
  616. priv->tx_head, priv->tx_tail);
  617. /* XXX reset QP, etc. */
  618. }
  619. static int ipoib_hard_header(struct sk_buff *skb,
  620. struct net_device *dev,
  621. unsigned short type,
  622. const void *daddr, const void *saddr, unsigned len)
  623. {
  624. struct ipoib_header *header;
  625. header = (struct ipoib_header *) skb_push(skb, sizeof *header);
  626. header->proto = htons(type);
  627. header->reserved = 0;
  628. /*
  629. * If we don't have a neighbour structure, stuff the
  630. * destination address onto the front of the skb so we can
  631. * figure out where to send the packet later.
  632. */
  633. if ((!skb->dst || !skb->dst->neighbour) && daddr) {
  634. struct ipoib_pseudoheader *phdr =
  635. (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
  636. memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
  637. }
  638. return 0;
  639. }
  640. static void ipoib_set_mcast_list(struct net_device *dev)
  641. {
  642. struct ipoib_dev_priv *priv = netdev_priv(dev);
  643. if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
  644. ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
  645. return;
  646. }
  647. queue_work(ipoib_workqueue, &priv->restart_task);
  648. }
  649. static void ipoib_neigh_cleanup(struct neighbour *n)
  650. {
  651. struct ipoib_neigh *neigh;
  652. struct ipoib_dev_priv *priv = netdev_priv(n->dev);
  653. unsigned long flags;
  654. struct ipoib_ah *ah = NULL;
  655. neigh = *to_ipoib_neigh(n);
  656. if (neigh) {
  657. priv = netdev_priv(neigh->dev);
  658. ipoib_dbg(priv, "neigh_destructor for bonding device: %s\n",
  659. n->dev->name);
  660. } else
  661. return;
  662. ipoib_dbg(priv,
  663. "neigh_cleanup for %06x " IPOIB_GID_FMT "\n",
  664. IPOIB_QPN(n->ha),
  665. IPOIB_GID_RAW_ARG(n->ha + 4));
  666. spin_lock_irqsave(&priv->lock, flags);
  667. if (neigh->ah)
  668. ah = neigh->ah;
  669. list_del(&neigh->list);
  670. ipoib_neigh_free(n->dev, neigh);
  671. spin_unlock_irqrestore(&priv->lock, flags);
  672. if (ah)
  673. ipoib_put_ah(ah);
  674. }
  675. struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour,
  676. struct net_device *dev)
  677. {
  678. struct ipoib_neigh *neigh;
  679. neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
  680. if (!neigh)
  681. return NULL;
  682. neigh->neighbour = neighbour;
  683. neigh->dev = dev;
  684. *to_ipoib_neigh(neighbour) = neigh;
  685. skb_queue_head_init(&neigh->queue);
  686. ipoib_cm_set(neigh, NULL);
  687. return neigh;
  688. }
  689. void ipoib_neigh_free(struct net_device *dev, struct ipoib_neigh *neigh)
  690. {
  691. struct sk_buff *skb;
  692. *to_ipoib_neigh(neigh->neighbour) = NULL;
  693. while ((skb = __skb_dequeue(&neigh->queue))) {
  694. ++dev->stats.tx_dropped;
  695. dev_kfree_skb_any(skb);
  696. }
  697. if (ipoib_cm_get(neigh))
  698. ipoib_cm_destroy_tx(ipoib_cm_get(neigh));
  699. kfree(neigh);
  700. }
  701. static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
  702. {
  703. parms->neigh_cleanup = ipoib_neigh_cleanup;
  704. return 0;
  705. }
  706. int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
  707. {
  708. struct ipoib_dev_priv *priv = netdev_priv(dev);
  709. /* Allocate RX/TX "rings" to hold queued skbs */
  710. priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
  711. GFP_KERNEL);
  712. if (!priv->rx_ring) {
  713. printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
  714. ca->name, ipoib_recvq_size);
  715. goto out;
  716. }
  717. priv->tx_ring = kzalloc(ipoib_sendq_size * sizeof *priv->tx_ring,
  718. GFP_KERNEL);
  719. if (!priv->tx_ring) {
  720. printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
  721. ca->name, ipoib_sendq_size);
  722. goto out_rx_ring_cleanup;
  723. }
  724. /* priv->tx_head & tx_tail are already 0 */
  725. if (ipoib_ib_dev_init(dev, ca, port))
  726. goto out_tx_ring_cleanup;
  727. return 0;
  728. out_tx_ring_cleanup:
  729. kfree(priv->tx_ring);
  730. out_rx_ring_cleanup:
  731. kfree(priv->rx_ring);
  732. out:
  733. return -ENOMEM;
  734. }
  735. void ipoib_dev_cleanup(struct net_device *dev)
  736. {
  737. struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
  738. ipoib_delete_debug_files(dev);
  739. /* Delete any child interfaces first */
  740. list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
  741. unregister_netdev(cpriv->dev);
  742. ipoib_dev_cleanup(cpriv->dev);
  743. free_netdev(cpriv->dev);
  744. }
  745. ipoib_ib_dev_cleanup(dev);
  746. kfree(priv->rx_ring);
  747. kfree(priv->tx_ring);
  748. priv->rx_ring = NULL;
  749. priv->tx_ring = NULL;
  750. }
  751. static const struct header_ops ipoib_header_ops = {
  752. .create = ipoib_hard_header,
  753. };
  754. static void ipoib_setup(struct net_device *dev)
  755. {
  756. struct ipoib_dev_priv *priv = netdev_priv(dev);
  757. dev->open = ipoib_open;
  758. dev->stop = ipoib_stop;
  759. dev->change_mtu = ipoib_change_mtu;
  760. dev->hard_start_xmit = ipoib_start_xmit;
  761. dev->tx_timeout = ipoib_timeout;
  762. dev->header_ops = &ipoib_header_ops;
  763. dev->set_multicast_list = ipoib_set_mcast_list;
  764. dev->neigh_setup = ipoib_neigh_setup_dev;
  765. netif_napi_add(dev, &priv->napi, ipoib_poll, 100);
  766. dev->watchdog_timeo = HZ;
  767. dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
  768. /*
  769. * We add in INFINIBAND_ALEN to allow for the destination
  770. * address "pseudoheader" for skbs without neighbour struct.
  771. */
  772. dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
  773. dev->addr_len = INFINIBAND_ALEN;
  774. dev->type = ARPHRD_INFINIBAND;
  775. dev->tx_queue_len = ipoib_sendq_size * 2;
  776. dev->features = NETIF_F_VLAN_CHALLENGED | NETIF_F_LLTX;
  777. /* MTU will be reset when mcast join happens */
  778. dev->mtu = IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN;
  779. priv->mcast_mtu = priv->admin_mtu = dev->mtu;
  780. memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
  781. netif_carrier_off(dev);
  782. priv->dev = dev;
  783. spin_lock_init(&priv->lock);
  784. spin_lock_init(&priv->tx_lock);
  785. mutex_init(&priv->mcast_mutex);
  786. mutex_init(&priv->vlan_mutex);
  787. INIT_LIST_HEAD(&priv->path_list);
  788. INIT_LIST_HEAD(&priv->child_intfs);
  789. INIT_LIST_HEAD(&priv->dead_ahs);
  790. INIT_LIST_HEAD(&priv->multicast_list);
  791. INIT_DELAYED_WORK(&priv->pkey_poll_task, ipoib_pkey_poll);
  792. INIT_WORK(&priv->pkey_event_task, ipoib_pkey_event);
  793. INIT_DELAYED_WORK(&priv->mcast_task, ipoib_mcast_join_task);
  794. INIT_WORK(&priv->flush_task, ipoib_ib_dev_flush);
  795. INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task);
  796. INIT_DELAYED_WORK(&priv->ah_reap_task, ipoib_reap_ah);
  797. }
  798. struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
  799. {
  800. struct net_device *dev;
  801. dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
  802. ipoib_setup);
  803. if (!dev)
  804. return NULL;
  805. return netdev_priv(dev);
  806. }
  807. static ssize_t show_pkey(struct device *dev,
  808. struct device_attribute *attr, char *buf)
  809. {
  810. struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
  811. return sprintf(buf, "0x%04x\n", priv->pkey);
  812. }
  813. static DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
  814. static ssize_t show_umcast(struct device *dev,
  815. struct device_attribute *attr, char *buf)
  816. {
  817. struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
  818. return sprintf(buf, "%d\n", test_bit(IPOIB_FLAG_UMCAST, &priv->flags));
  819. }
  820. static ssize_t set_umcast(struct device *dev,
  821. struct device_attribute *attr,
  822. const char *buf, size_t count)
  823. {
  824. struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
  825. unsigned long umcast_val = simple_strtoul(buf, NULL, 0);
  826. if (umcast_val > 0) {
  827. set_bit(IPOIB_FLAG_UMCAST, &priv->flags);
  828. ipoib_warn(priv, "ignoring multicast groups joined directly "
  829. "by userspace\n");
  830. } else
  831. clear_bit(IPOIB_FLAG_UMCAST, &priv->flags);
  832. return count;
  833. }
  834. static DEVICE_ATTR(umcast, S_IWUSR | S_IRUGO, show_umcast, set_umcast);
  835. int ipoib_add_umcast_attr(struct net_device *dev)
  836. {
  837. return device_create_file(&dev->dev, &dev_attr_umcast);
  838. }
  839. static ssize_t create_child(struct device *dev,
  840. struct device_attribute *attr,
  841. const char *buf, size_t count)
  842. {
  843. int pkey;
  844. int ret;
  845. if (sscanf(buf, "%i", &pkey) != 1)
  846. return -EINVAL;
  847. if (pkey < 0 || pkey > 0xffff)
  848. return -EINVAL;
  849. /*
  850. * Set the full membership bit, so that we join the right
  851. * broadcast group, etc.
  852. */
  853. pkey |= 0x8000;
  854. ret = ipoib_vlan_add(to_net_dev(dev), pkey);
  855. return ret ? ret : count;
  856. }
  857. static DEVICE_ATTR(create_child, S_IWUGO, NULL, create_child);
  858. static ssize_t delete_child(struct device *dev,
  859. struct device_attribute *attr,
  860. const char *buf, size_t count)
  861. {
  862. int pkey;
  863. int ret;
  864. if (sscanf(buf, "%i", &pkey) != 1)
  865. return -EINVAL;
  866. if (pkey < 0 || pkey > 0xffff)
  867. return -EINVAL;
  868. ret = ipoib_vlan_delete(to_net_dev(dev), pkey);
  869. return ret ? ret : count;
  870. }
  871. static DEVICE_ATTR(delete_child, S_IWUGO, NULL, delete_child);
  872. int ipoib_add_pkey_attr(struct net_device *dev)
  873. {
  874. return device_create_file(&dev->dev, &dev_attr_pkey);
  875. }
  876. static struct net_device *ipoib_add_port(const char *format,
  877. struct ib_device *hca, u8 port)
  878. {
  879. struct ipoib_dev_priv *priv;
  880. int result = -ENOMEM;
  881. priv = ipoib_intf_alloc(format);
  882. if (!priv)
  883. goto alloc_mem_failed;
  884. SET_NETDEV_DEV(priv->dev, hca->dma_device);
  885. result = ib_query_pkey(hca, port, 0, &priv->pkey);
  886. if (result) {
  887. printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
  888. hca->name, port, result);
  889. goto device_init_failed;
  890. }
  891. /*
  892. * Set the full membership bit, so that we join the right
  893. * broadcast group, etc.
  894. */
  895. priv->pkey |= 0x8000;
  896. priv->dev->broadcast[8] = priv->pkey >> 8;
  897. priv->dev->broadcast[9] = priv->pkey & 0xff;
  898. result = ib_query_gid(hca, port, 0, &priv->local_gid);
  899. if (result) {
  900. printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
  901. hca->name, port, result);
  902. goto device_init_failed;
  903. } else
  904. memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
  905. result = ipoib_dev_init(priv->dev, hca, port);
  906. if (result < 0) {
  907. printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
  908. hca->name, port, result);
  909. goto device_init_failed;
  910. }
  911. INIT_IB_EVENT_HANDLER(&priv->event_handler,
  912. priv->ca, ipoib_event);
  913. result = ib_register_event_handler(&priv->event_handler);
  914. if (result < 0) {
  915. printk(KERN_WARNING "%s: ib_register_event_handler failed for "
  916. "port %d (ret = %d)\n",
  917. hca->name, port, result);
  918. goto event_failed;
  919. }
  920. result = register_netdev(priv->dev);
  921. if (result) {
  922. printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
  923. hca->name, port, result);
  924. goto register_failed;
  925. }
  926. ipoib_create_debug_files(priv->dev);
  927. if (ipoib_cm_add_mode_attr(priv->dev))
  928. goto sysfs_failed;
  929. if (ipoib_add_pkey_attr(priv->dev))
  930. goto sysfs_failed;
  931. if (ipoib_add_umcast_attr(priv->dev))
  932. goto sysfs_failed;
  933. if (device_create_file(&priv->dev->dev, &dev_attr_create_child))
  934. goto sysfs_failed;
  935. if (device_create_file(&priv->dev->dev, &dev_attr_delete_child))
  936. goto sysfs_failed;
  937. return priv->dev;
  938. sysfs_failed:
  939. ipoib_delete_debug_files(priv->dev);
  940. unregister_netdev(priv->dev);
  941. register_failed:
  942. ib_unregister_event_handler(&priv->event_handler);
  943. flush_scheduled_work();
  944. event_failed:
  945. ipoib_dev_cleanup(priv->dev);
  946. device_init_failed:
  947. free_netdev(priv->dev);
  948. alloc_mem_failed:
  949. return ERR_PTR(result);
  950. }
  951. static void ipoib_add_one(struct ib_device *device)
  952. {
  953. struct list_head *dev_list;
  954. struct net_device *dev;
  955. struct ipoib_dev_priv *priv;
  956. int s, e, p;
  957. if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
  958. return;
  959. dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
  960. if (!dev_list)
  961. return;
  962. INIT_LIST_HEAD(dev_list);
  963. if (device->node_type == RDMA_NODE_IB_SWITCH) {
  964. s = 0;
  965. e = 0;
  966. } else {
  967. s = 1;
  968. e = device->phys_port_cnt;
  969. }
  970. for (p = s; p <= e; ++p) {
  971. dev = ipoib_add_port("ib%d", device, p);
  972. if (!IS_ERR(dev)) {
  973. priv = netdev_priv(dev);
  974. list_add_tail(&priv->list, dev_list);
  975. }
  976. }
  977. ib_set_client_data(device, &ipoib_client, dev_list);
  978. }
  979. static void ipoib_remove_one(struct ib_device *device)
  980. {
  981. struct ipoib_dev_priv *priv, *tmp;
  982. struct list_head *dev_list;
  983. if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
  984. return;
  985. dev_list = ib_get_client_data(device, &ipoib_client);
  986. list_for_each_entry_safe(priv, tmp, dev_list, list) {
  987. ib_unregister_event_handler(&priv->event_handler);
  988. flush_scheduled_work();
  989. unregister_netdev(priv->dev);
  990. ipoib_dev_cleanup(priv->dev);
  991. free_netdev(priv->dev);
  992. }
  993. kfree(dev_list);
  994. }
  995. static int __init ipoib_init_module(void)
  996. {
  997. int ret;
  998. ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
  999. ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
  1000. ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
  1001. ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
  1002. ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
  1003. ipoib_sendq_size = max(ipoib_sendq_size, IPOIB_MIN_QUEUE_SIZE);
  1004. ret = ipoib_register_debugfs();
  1005. if (ret)
  1006. return ret;
  1007. /*
  1008. * We create our own workqueue mainly because we want to be
  1009. * able to flush it when devices are being removed. We can't
  1010. * use schedule_work()/flush_scheduled_work() because both
  1011. * unregister_netdev() and linkwatch_event take the rtnl lock,
  1012. * so flush_scheduled_work() can deadlock during device
  1013. * removal.
  1014. */
  1015. ipoib_workqueue = create_singlethread_workqueue("ipoib");
  1016. if (!ipoib_workqueue) {
  1017. ret = -ENOMEM;
  1018. goto err_fs;
  1019. }
  1020. ib_sa_register_client(&ipoib_sa_client);
  1021. ret = ib_register_client(&ipoib_client);
  1022. if (ret)
  1023. goto err_sa;
  1024. return 0;
  1025. err_sa:
  1026. ib_sa_unregister_client(&ipoib_sa_client);
  1027. destroy_workqueue(ipoib_workqueue);
  1028. err_fs:
  1029. ipoib_unregister_debugfs();
  1030. return ret;
  1031. }
  1032. static void __exit ipoib_cleanup_module(void)
  1033. {
  1034. ib_unregister_client(&ipoib_client);
  1035. ib_sa_unregister_client(&ipoib_sa_client);
  1036. ipoib_unregister_debugfs();
  1037. destroy_workqueue(ipoib_workqueue);
  1038. }
  1039. module_init(ipoib_init_module);
  1040. module_exit(ipoib_cleanup_module);