seq_ports.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681
  1. /*
  2. * ALSA sequencer Ports
  3. * Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
  4. * Jaroslav Kysela <perex@perex.cz>
  5. *
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. #include <sound/core.h>
  23. #include <linux/slab.h>
  24. #include <linux/module.h>
  25. #include "seq_system.h"
  26. #include "seq_ports.h"
  27. #include "seq_clientmgr.h"
  28. /*
  29. registration of client ports
  30. */
  31. /*
  32. NOTE: the current implementation of the port structure as a linked list is
  33. not optimal for clients that have many ports. For sending messages to all
  34. subscribers of a port we first need to find the address of the port
  35. structure, which means we have to traverse the list. A direct access table
  36. (array) would be better, but big preallocated arrays waste memory.
  37. Possible actions:
  38. 1) leave it this way, a client does normaly does not have more than a few
  39. ports
  40. 2) replace the linked list of ports by a array of pointers which is
  41. dynamicly kmalloced. When a port is added or deleted we can simply allocate
  42. a new array, copy the corresponding pointers, and delete the old one. We
  43. then only need a pointer to this array, and an integer that tells us how
  44. much elements are in array.
  45. */
  46. /* return pointer to port structure - port is locked if found */
  47. struct snd_seq_client_port *snd_seq_port_use_ptr(struct snd_seq_client *client,
  48. int num)
  49. {
  50. struct snd_seq_client_port *port;
  51. if (client == NULL)
  52. return NULL;
  53. read_lock(&client->ports_lock);
  54. list_for_each_entry(port, &client->ports_list_head, list) {
  55. if (port->addr.port == num) {
  56. if (port->closing)
  57. break; /* deleting now */
  58. snd_use_lock_use(&port->use_lock);
  59. read_unlock(&client->ports_lock);
  60. return port;
  61. }
  62. }
  63. read_unlock(&client->ports_lock);
  64. return NULL; /* not found */
  65. }
  66. /* search for the next port - port is locked if found */
  67. struct snd_seq_client_port *snd_seq_port_query_nearest(struct snd_seq_client *client,
  68. struct snd_seq_port_info *pinfo)
  69. {
  70. int num;
  71. struct snd_seq_client_port *port, *found;
  72. num = pinfo->addr.port;
  73. found = NULL;
  74. read_lock(&client->ports_lock);
  75. list_for_each_entry(port, &client->ports_list_head, list) {
  76. if (port->addr.port < num)
  77. continue;
  78. if (port->addr.port == num) {
  79. found = port;
  80. break;
  81. }
  82. if (found == NULL || port->addr.port < found->addr.port)
  83. found = port;
  84. }
  85. if (found) {
  86. if (found->closing)
  87. found = NULL;
  88. else
  89. snd_use_lock_use(&found->use_lock);
  90. }
  91. read_unlock(&client->ports_lock);
  92. return found;
  93. }
  94. /* initialize snd_seq_port_subs_info */
  95. static void port_subs_info_init(struct snd_seq_port_subs_info *grp)
  96. {
  97. INIT_LIST_HEAD(&grp->list_head);
  98. grp->count = 0;
  99. grp->exclusive = 0;
  100. rwlock_init(&grp->list_lock);
  101. init_rwsem(&grp->list_mutex);
  102. grp->open = NULL;
  103. grp->close = NULL;
  104. }
  105. /* create a port, port number is returned (-1 on failure) */
  106. struct snd_seq_client_port *snd_seq_create_port(struct snd_seq_client *client,
  107. int port)
  108. {
  109. unsigned long flags;
  110. struct snd_seq_client_port *new_port, *p;
  111. int num = -1;
  112. /* sanity check */
  113. if (snd_BUG_ON(!client))
  114. return NULL;
  115. if (client->num_ports >= SNDRV_SEQ_MAX_PORTS) {
  116. pr_warn("ALSA: seq: too many ports for client %d\n", client->number);
  117. return NULL;
  118. }
  119. /* create a new port */
  120. new_port = kzalloc(sizeof(*new_port), GFP_KERNEL);
  121. if (!new_port)
  122. return NULL; /* failure, out of memory */
  123. /* init port data */
  124. new_port->addr.client = client->number;
  125. new_port->addr.port = -1;
  126. new_port->owner = THIS_MODULE;
  127. sprintf(new_port->name, "port-%d", num);
  128. snd_use_lock_init(&new_port->use_lock);
  129. port_subs_info_init(&new_port->c_src);
  130. port_subs_info_init(&new_port->c_dest);
  131. num = port >= 0 ? port : 0;
  132. mutex_lock(&client->ports_mutex);
  133. write_lock_irqsave(&client->ports_lock, flags);
  134. list_for_each_entry(p, &client->ports_list_head, list) {
  135. if (p->addr.port > num)
  136. break;
  137. if (port < 0) /* auto-probe mode */
  138. num = p->addr.port + 1;
  139. }
  140. /* insert the new port */
  141. list_add_tail(&new_port->list, &p->list);
  142. client->num_ports++;
  143. new_port->addr.port = num; /* store the port number in the port */
  144. write_unlock_irqrestore(&client->ports_lock, flags);
  145. mutex_unlock(&client->ports_mutex);
  146. sprintf(new_port->name, "port-%d", num);
  147. return new_port;
  148. }
  149. /* */
  150. enum group_type {
  151. SRC_LIST, DEST_LIST
  152. };
  153. static int subscribe_port(struct snd_seq_client *client,
  154. struct snd_seq_client_port *port,
  155. struct snd_seq_port_subs_info *grp,
  156. struct snd_seq_port_subscribe *info, int send_ack);
  157. static int unsubscribe_port(struct snd_seq_client *client,
  158. struct snd_seq_client_port *port,
  159. struct snd_seq_port_subs_info *grp,
  160. struct snd_seq_port_subscribe *info, int send_ack);
  161. static struct snd_seq_client_port *get_client_port(struct snd_seq_addr *addr,
  162. struct snd_seq_client **cp)
  163. {
  164. struct snd_seq_client_port *p;
  165. *cp = snd_seq_client_use_ptr(addr->client);
  166. if (*cp) {
  167. p = snd_seq_port_use_ptr(*cp, addr->port);
  168. if (! p) {
  169. snd_seq_client_unlock(*cp);
  170. *cp = NULL;
  171. }
  172. return p;
  173. }
  174. return NULL;
  175. }
  176. /*
  177. * remove all subscribers on the list
  178. * this is called from port_delete, for each src and dest list.
  179. */
  180. static void clear_subscriber_list(struct snd_seq_client *client,
  181. struct snd_seq_client_port *port,
  182. struct snd_seq_port_subs_info *grp,
  183. int grptype)
  184. {
  185. struct list_head *p, *n;
  186. list_for_each_safe(p, n, &grp->list_head) {
  187. struct snd_seq_subscribers *subs;
  188. struct snd_seq_client *c;
  189. struct snd_seq_client_port *aport;
  190. if (grptype == SRC_LIST) {
  191. subs = list_entry(p, struct snd_seq_subscribers, src_list);
  192. aport = get_client_port(&subs->info.dest, &c);
  193. } else {
  194. subs = list_entry(p, struct snd_seq_subscribers, dest_list);
  195. aport = get_client_port(&subs->info.sender, &c);
  196. }
  197. list_del(p);
  198. unsubscribe_port(client, port, grp, &subs->info, 0);
  199. if (!aport) {
  200. /* looks like the connected port is being deleted.
  201. * we decrease the counter, and when both ports are deleted
  202. * remove the subscriber info
  203. */
  204. if (atomic_dec_and_test(&subs->ref_count))
  205. kfree(subs);
  206. } else {
  207. /* ok we got the connected port */
  208. struct snd_seq_port_subs_info *agrp;
  209. agrp = (grptype == SRC_LIST) ? &aport->c_dest : &aport->c_src;
  210. down_write(&agrp->list_mutex);
  211. if (grptype == SRC_LIST)
  212. list_del(&subs->dest_list);
  213. else
  214. list_del(&subs->src_list);
  215. up_write(&agrp->list_mutex);
  216. unsubscribe_port(c, aport, agrp, &subs->info, 1);
  217. kfree(subs);
  218. snd_seq_port_unlock(aport);
  219. snd_seq_client_unlock(c);
  220. }
  221. }
  222. }
  223. /* delete port data */
  224. static int port_delete(struct snd_seq_client *client,
  225. struct snd_seq_client_port *port)
  226. {
  227. /* set closing flag and wait for all port access are gone */
  228. port->closing = 1;
  229. snd_use_lock_sync(&port->use_lock);
  230. /* clear subscribers info */
  231. clear_subscriber_list(client, port, &port->c_src, SRC_LIST);
  232. clear_subscriber_list(client, port, &port->c_dest, DEST_LIST);
  233. if (port->private_free)
  234. port->private_free(port->private_data);
  235. snd_BUG_ON(port->c_src.count != 0);
  236. snd_BUG_ON(port->c_dest.count != 0);
  237. kfree(port);
  238. return 0;
  239. }
  240. /* delete a port with the given port id */
  241. int snd_seq_delete_port(struct snd_seq_client *client, int port)
  242. {
  243. unsigned long flags;
  244. struct snd_seq_client_port *found = NULL, *p;
  245. mutex_lock(&client->ports_mutex);
  246. write_lock_irqsave(&client->ports_lock, flags);
  247. list_for_each_entry(p, &client->ports_list_head, list) {
  248. if (p->addr.port == port) {
  249. /* ok found. delete from the list at first */
  250. list_del(&p->list);
  251. client->num_ports--;
  252. found = p;
  253. break;
  254. }
  255. }
  256. write_unlock_irqrestore(&client->ports_lock, flags);
  257. mutex_unlock(&client->ports_mutex);
  258. if (found)
  259. return port_delete(client, found);
  260. else
  261. return -ENOENT;
  262. }
  263. /* delete the all ports belonging to the given client */
  264. int snd_seq_delete_all_ports(struct snd_seq_client *client)
  265. {
  266. unsigned long flags;
  267. struct list_head deleted_list;
  268. struct snd_seq_client_port *port, *tmp;
  269. /* move the port list to deleted_list, and
  270. * clear the port list in the client data.
  271. */
  272. mutex_lock(&client->ports_mutex);
  273. write_lock_irqsave(&client->ports_lock, flags);
  274. if (! list_empty(&client->ports_list_head)) {
  275. list_add(&deleted_list, &client->ports_list_head);
  276. list_del_init(&client->ports_list_head);
  277. } else {
  278. INIT_LIST_HEAD(&deleted_list);
  279. }
  280. client->num_ports = 0;
  281. write_unlock_irqrestore(&client->ports_lock, flags);
  282. /* remove each port in deleted_list */
  283. list_for_each_entry_safe(port, tmp, &deleted_list, list) {
  284. list_del(&port->list);
  285. snd_seq_system_client_ev_port_exit(port->addr.client, port->addr.port);
  286. port_delete(client, port);
  287. }
  288. mutex_unlock(&client->ports_mutex);
  289. return 0;
  290. }
  291. /* set port info fields */
  292. int snd_seq_set_port_info(struct snd_seq_client_port * port,
  293. struct snd_seq_port_info * info)
  294. {
  295. if (snd_BUG_ON(!port || !info))
  296. return -EINVAL;
  297. /* set port name */
  298. if (info->name[0])
  299. strlcpy(port->name, info->name, sizeof(port->name));
  300. /* set capabilities */
  301. port->capability = info->capability;
  302. /* get port type */
  303. port->type = info->type;
  304. /* information about supported channels/voices */
  305. port->midi_channels = info->midi_channels;
  306. port->midi_voices = info->midi_voices;
  307. port->synth_voices = info->synth_voices;
  308. /* timestamping */
  309. port->timestamping = (info->flags & SNDRV_SEQ_PORT_FLG_TIMESTAMP) ? 1 : 0;
  310. port->time_real = (info->flags & SNDRV_SEQ_PORT_FLG_TIME_REAL) ? 1 : 0;
  311. port->time_queue = info->time_queue;
  312. return 0;
  313. }
  314. /* get port info fields */
  315. int snd_seq_get_port_info(struct snd_seq_client_port * port,
  316. struct snd_seq_port_info * info)
  317. {
  318. if (snd_BUG_ON(!port || !info))
  319. return -EINVAL;
  320. /* get port name */
  321. strlcpy(info->name, port->name, sizeof(info->name));
  322. /* get capabilities */
  323. info->capability = port->capability;
  324. /* get port type */
  325. info->type = port->type;
  326. /* information about supported channels/voices */
  327. info->midi_channels = port->midi_channels;
  328. info->midi_voices = port->midi_voices;
  329. info->synth_voices = port->synth_voices;
  330. /* get subscriber counts */
  331. info->read_use = port->c_src.count;
  332. info->write_use = port->c_dest.count;
  333. /* timestamping */
  334. info->flags = 0;
  335. if (port->timestamping) {
  336. info->flags |= SNDRV_SEQ_PORT_FLG_TIMESTAMP;
  337. if (port->time_real)
  338. info->flags |= SNDRV_SEQ_PORT_FLG_TIME_REAL;
  339. info->time_queue = port->time_queue;
  340. }
  341. return 0;
  342. }
  343. /*
  344. * call callback functions (if any):
  345. * the callbacks are invoked only when the first (for connection) or
  346. * the last subscription (for disconnection) is done. Second or later
  347. * subscription results in increment of counter, but no callback is
  348. * invoked.
  349. * This feature is useful if these callbacks are associated with
  350. * initialization or termination of devices (see seq_midi.c).
  351. */
  352. static int subscribe_port(struct snd_seq_client *client,
  353. struct snd_seq_client_port *port,
  354. struct snd_seq_port_subs_info *grp,
  355. struct snd_seq_port_subscribe *info,
  356. int send_ack)
  357. {
  358. int err = 0;
  359. if (!try_module_get(port->owner))
  360. return -EFAULT;
  361. grp->count++;
  362. if (grp->open && grp->count == 1) {
  363. err = grp->open(port->private_data, info);
  364. if (err < 0) {
  365. module_put(port->owner);
  366. grp->count--;
  367. }
  368. }
  369. if (err >= 0 && send_ack && client->type == USER_CLIENT)
  370. snd_seq_client_notify_subscription(port->addr.client, port->addr.port,
  371. info, SNDRV_SEQ_EVENT_PORT_SUBSCRIBED);
  372. return err;
  373. }
  374. static int unsubscribe_port(struct snd_seq_client *client,
  375. struct snd_seq_client_port *port,
  376. struct snd_seq_port_subs_info *grp,
  377. struct snd_seq_port_subscribe *info,
  378. int send_ack)
  379. {
  380. int err = 0;
  381. if (! grp->count)
  382. return -EINVAL;
  383. grp->count--;
  384. if (grp->close && grp->count == 0)
  385. err = grp->close(port->private_data, info);
  386. if (send_ack && client->type == USER_CLIENT)
  387. snd_seq_client_notify_subscription(port->addr.client, port->addr.port,
  388. info, SNDRV_SEQ_EVENT_PORT_UNSUBSCRIBED);
  389. module_put(port->owner);
  390. return err;
  391. }
  392. /* check if both addresses are identical */
  393. static inline int addr_match(struct snd_seq_addr *r, struct snd_seq_addr *s)
  394. {
  395. return (r->client == s->client) && (r->port == s->port);
  396. }
  397. /* check the two subscribe info match */
  398. /* if flags is zero, checks only sender and destination addresses */
  399. static int match_subs_info(struct snd_seq_port_subscribe *r,
  400. struct snd_seq_port_subscribe *s)
  401. {
  402. if (addr_match(&r->sender, &s->sender) &&
  403. addr_match(&r->dest, &s->dest)) {
  404. if (r->flags && r->flags == s->flags)
  405. return r->queue == s->queue;
  406. else if (! r->flags)
  407. return 1;
  408. }
  409. return 0;
  410. }
  411. /* connect two ports */
  412. int snd_seq_port_connect(struct snd_seq_client *connector,
  413. struct snd_seq_client *src_client,
  414. struct snd_seq_client_port *src_port,
  415. struct snd_seq_client *dest_client,
  416. struct snd_seq_client_port *dest_port,
  417. struct snd_seq_port_subscribe *info)
  418. {
  419. struct snd_seq_port_subs_info *src = &src_port->c_src;
  420. struct snd_seq_port_subs_info *dest = &dest_port->c_dest;
  421. struct snd_seq_subscribers *subs, *s;
  422. int err, src_called = 0;
  423. unsigned long flags;
  424. int exclusive;
  425. subs = kzalloc(sizeof(*subs), GFP_KERNEL);
  426. if (! subs)
  427. return -ENOMEM;
  428. subs->info = *info;
  429. atomic_set(&subs->ref_count, 2);
  430. down_write(&src->list_mutex);
  431. down_write_nested(&dest->list_mutex, SINGLE_DEPTH_NESTING);
  432. exclusive = info->flags & SNDRV_SEQ_PORT_SUBS_EXCLUSIVE ? 1 : 0;
  433. err = -EBUSY;
  434. if (exclusive) {
  435. if (! list_empty(&src->list_head) || ! list_empty(&dest->list_head))
  436. goto __error;
  437. } else {
  438. if (src->exclusive || dest->exclusive)
  439. goto __error;
  440. /* check whether already exists */
  441. list_for_each_entry(s, &src->list_head, src_list) {
  442. if (match_subs_info(info, &s->info))
  443. goto __error;
  444. }
  445. list_for_each_entry(s, &dest->list_head, dest_list) {
  446. if (match_subs_info(info, &s->info))
  447. goto __error;
  448. }
  449. }
  450. if ((err = subscribe_port(src_client, src_port, src, info,
  451. connector->number != src_client->number)) < 0)
  452. goto __error;
  453. src_called = 1;
  454. if ((err = subscribe_port(dest_client, dest_port, dest, info,
  455. connector->number != dest_client->number)) < 0)
  456. goto __error;
  457. /* add to list */
  458. write_lock_irqsave(&src->list_lock, flags);
  459. // write_lock(&dest->list_lock); // no other lock yet
  460. list_add_tail(&subs->src_list, &src->list_head);
  461. list_add_tail(&subs->dest_list, &dest->list_head);
  462. // write_unlock(&dest->list_lock); // no other lock yet
  463. write_unlock_irqrestore(&src->list_lock, flags);
  464. src->exclusive = dest->exclusive = exclusive;
  465. up_write(&dest->list_mutex);
  466. up_write(&src->list_mutex);
  467. return 0;
  468. __error:
  469. if (src_called)
  470. unsubscribe_port(src_client, src_port, src, info,
  471. connector->number != src_client->number);
  472. kfree(subs);
  473. up_write(&dest->list_mutex);
  474. up_write(&src->list_mutex);
  475. return err;
  476. }
  477. /* remove the connection */
  478. int snd_seq_port_disconnect(struct snd_seq_client *connector,
  479. struct snd_seq_client *src_client,
  480. struct snd_seq_client_port *src_port,
  481. struct snd_seq_client *dest_client,
  482. struct snd_seq_client_port *dest_port,
  483. struct snd_seq_port_subscribe *info)
  484. {
  485. struct snd_seq_port_subs_info *src = &src_port->c_src;
  486. struct snd_seq_port_subs_info *dest = &dest_port->c_dest;
  487. struct snd_seq_subscribers *subs;
  488. int err = -ENOENT;
  489. unsigned long flags;
  490. down_write(&src->list_mutex);
  491. down_write_nested(&dest->list_mutex, SINGLE_DEPTH_NESTING);
  492. /* look for the connection */
  493. list_for_each_entry(subs, &src->list_head, src_list) {
  494. if (match_subs_info(info, &subs->info)) {
  495. write_lock_irqsave(&src->list_lock, flags);
  496. // write_lock(&dest->list_lock); // no lock yet
  497. list_del(&subs->src_list);
  498. list_del(&subs->dest_list);
  499. // write_unlock(&dest->list_lock);
  500. write_unlock_irqrestore(&src->list_lock, flags);
  501. src->exclusive = dest->exclusive = 0;
  502. unsubscribe_port(src_client, src_port, src, info,
  503. connector->number != src_client->number);
  504. unsubscribe_port(dest_client, dest_port, dest, info,
  505. connector->number != dest_client->number);
  506. kfree(subs);
  507. err = 0;
  508. break;
  509. }
  510. }
  511. up_write(&dest->list_mutex);
  512. up_write(&src->list_mutex);
  513. return err;
  514. }
  515. /* get matched subscriber */
  516. struct snd_seq_subscribers *snd_seq_port_get_subscription(struct snd_seq_port_subs_info *src_grp,
  517. struct snd_seq_addr *dest_addr)
  518. {
  519. struct snd_seq_subscribers *s, *found = NULL;
  520. down_read(&src_grp->list_mutex);
  521. list_for_each_entry(s, &src_grp->list_head, src_list) {
  522. if (addr_match(dest_addr, &s->info.dest)) {
  523. found = s;
  524. break;
  525. }
  526. }
  527. up_read(&src_grp->list_mutex);
  528. return found;
  529. }
  530. /*
  531. * Attach a device driver that wants to receive events from the
  532. * sequencer. Returns the new port number on success.
  533. * A driver that wants to receive the events converted to midi, will
  534. * use snd_seq_midisynth_register_port().
  535. */
  536. /* exported */
  537. int snd_seq_event_port_attach(int client,
  538. struct snd_seq_port_callback *pcbp,
  539. int cap, int type, int midi_channels,
  540. int midi_voices, char *portname)
  541. {
  542. struct snd_seq_port_info portinfo;
  543. int ret;
  544. /* Set up the port */
  545. memset(&portinfo, 0, sizeof(portinfo));
  546. portinfo.addr.client = client;
  547. strlcpy(portinfo.name, portname ? portname : "Unamed port",
  548. sizeof(portinfo.name));
  549. portinfo.capability = cap;
  550. portinfo.type = type;
  551. portinfo.kernel = pcbp;
  552. portinfo.midi_channels = midi_channels;
  553. portinfo.midi_voices = midi_voices;
  554. /* Create it */
  555. ret = snd_seq_kernel_client_ctl(client,
  556. SNDRV_SEQ_IOCTL_CREATE_PORT,
  557. &portinfo);
  558. if (ret >= 0)
  559. ret = portinfo.addr.port;
  560. return ret;
  561. }
  562. EXPORT_SYMBOL(snd_seq_event_port_attach);
  563. /*
  564. * Detach the driver from a port.
  565. */
  566. /* exported */
  567. int snd_seq_event_port_detach(int client, int port)
  568. {
  569. struct snd_seq_port_info portinfo;
  570. int err;
  571. memset(&portinfo, 0, sizeof(portinfo));
  572. portinfo.addr.client = client;
  573. portinfo.addr.port = port;
  574. err = snd_seq_kernel_client_ctl(client,
  575. SNDRV_SEQ_IOCTL_DELETE_PORT,
  576. &portinfo);
  577. return err;
  578. }
  579. EXPORT_SYMBOL(snd_seq_event_port_detach);