Changeset ee830a52eeb6e78d497475d6666af666b2345fba
- Timestamp:
- 11/08/10 02:17:39 (3 years ago)
- Author:
- Nedko Arnaudov <nedko@…>
- Children:
- a608c373e62619c5c34e12fce9d611e4d397da8b
- Parents:
- bea7c694e008ff9095e18e746d1c6bdd9e0f5ec8
- git-committer:
- Nedko Arnaudov <nedko@arnaudov.name> / 2010-11-08T02:17:39Z+0200
- Message:
-
ladishd: actually remove app ports, simply logging does not make it happen
- Location:
- daemon
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r6c2201b
|
ree830a5
|
|
| 2202 | 2202 | void * client_context; |
| 2203 | 2203 | struct list_head * port_node_ptr; |
| | 2204 | struct list_head * port_temp_node_ptr; |
| 2204 | 2205 | struct ladish_graph_port * port_ptr; |
| 2205 | 2206 | |
| … |
… |
|
| 2230 | 2231 | } |
| 2231 | 2232 | |
| 2232 | | list_for_each(port_node_ptr, &client_ptr->ports) |
| | 2233 | list_for_each_safe(port_node_ptr, port_temp_node_ptr, &client_ptr->ports) |
| 2233 | 2234 | { |
| 2234 | 2235 | port_ptr = list_entry(port_node_ptr, struct ladish_graph_port, siblings_client); |
-
|
r6c2201b
|
ree830a5
|
|
| 1244 | 1244 | ladish_graph_get_description(vgraph)); |
| 1245 | 1245 | |
| | 1246 | ladish_graph_remove_port(graph_handle, port_handle); |
| | 1247 | ladish_graph_remove_port(vgraph, port_handle); |
| | 1248 | |
| 1246 | 1249 | return true; |
| 1247 | 1250 | } |