Changeset c8751452 in mainline
- Timestamp:
- 2011-12-16T21:14:59Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c4be33a
- Parents:
- c6ae4c2
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/mm/mapping1.c
rc6ae4c2 rc8751452 71 71 int i; 72 72 for (i = 0; i < page_count; i++) { 73 void *page_start = ((char *) area) + PAGE_SIZE * i;73 void *page_start = ((char *) area) + PAGE_SIZE * i; 74 74 int rc = as_get_physical_mapping(page_start, NULL); 75 75 if (rc != expected_rc) { -
uspace/lib/net/generic/packet_client.c
rc6ae4c2 rc8751452 39 39 #include <unistd.h> 40 40 #include <sys/mman.h> 41 42 41 #include <packet_client.h> 43 42 #include <packet_remote.h> -
uspace/lib/nic/src/nic_rx_control.c
rc6ae4c2 rc8751452 438 438 } 439 439 } 440 440 441 /* Blocked source addresses */ 441 442 if (rxc->block_sources) { … … 443 444 return false; 444 445 } 446 445 447 /* VLAN filtering */ 446 448 if (!rxc->vlan_exact && rxc->vlan_mask != NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.