Changes in uspace/lib/net/generic/packet_remote.c [c5b59ce:14f1db0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/generic/packet_remote.c
rc5b59ce r14f1db0 38 38 #include <async.h> 39 39 #include <errno.h> 40 #include <err.h>41 40 #include <ipc/ipc.h> 42 41 #include <sys/mman.h> 43 42 43 #include <net_err.h> 44 44 #include <net_messages.h> 45 45 #include <packet/packet.h> … … 64 64 * 65 65 */ 66 static int 67 packet_return(int phone, packet_ref packet, packet_id_t packet_id, size_t size) 68 { 66 static int packet_return(int phone, packet_ref packet, packet_id_t packet_id, size_t size){ 69 67 ERROR_DECLARE; 70 68 71 69 ipc_call_t answer; 72 70 aid_t message = async_send_1(phone, NET_PACKET_GET, packet_id, &answer); 73 74 71 *packet = (packet_t) as_get_mappable_page(size); 75 if (ERROR_OCCURRED(async_share_in_start_0_0(phone, *packet, size)) ||76 ERROR_OCCURRED(pm_add(*packet))) {72 if (ERROR_OCCURRED(async_share_in_start_0_0(phone, *packet, size)) 73 || ERROR_OCCURRED(pm_add(*packet))) { 77 74 munmap(*packet, size); 78 75 async_wait_for(message, NULL); … … 94 91 95 92 *packet = pm_find(packet_id); 96 if (! *packet) {93 if (!(*packet)) { 97 94 ipcarg_t size; 98 95 99 ERROR_PROPAGATE(async_req_1_1(phone, NET_PACKET_GET_SIZE, 100 packet_id, &size)); 96 ERROR_PROPAGATE(async_req_1_1(phone, NET_PACKET_GET_SIZE, packet_id, &size)); 101 97 ERROR_PROPAGATE(packet_return(phone, packet, packet_id, size)); 102 98 } 103 if ((* packet)->next) {99 if ((** packet).next) { 104 100 packet_t next; 105 101 106 return packet_translate_remote(phone, &next, (* packet)->next);102 return packet_translate_remote(phone, &next, (** packet).next); 107 103 } 108 104 … … 118 114 ipcarg_t size; 119 115 120 if (ERROR_OCCURRED(async_req_4_2(phone, NET_PACKET_CREATE_4, 121 max_content,addr_len, max_prefix, max_suffix, &packet_id, &size)))116 if (ERROR_OCCURRED(async_req_4_2(phone, NET_PACKET_CREATE_4, max_content, 117 addr_len, max_prefix, max_suffix, &packet_id, &size))) 122 118 return NULL; 123 119 … … 125 121 packet_t packet = pm_find(packet_id); 126 122 if (!packet) { 127 if (ERROR_OCCURRED(packet_return(phone, &packet, packet_id, 128 size))) 123 if (ERROR_OCCURRED(packet_return(phone, &packet, packet_id, size))) 129 124 return NULL; 130 125 } … … 146 141 packet_t packet = pm_find(packet_id); 147 142 if (!packet) { 148 if (ERROR_OCCURRED(packet_return(phone, &packet, packet_id, 149 size))) 143 if (ERROR_OCCURRED(packet_return(phone, &packet, packet_id, size))) 150 144 return NULL; 151 145 }
Note:
See TracChangeset
for help on using the changeset viewer.