Changes in uspace/lib/drv/generic/remote_nic.c [acdb5bac:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_nic.c
racdb5bac r9d58539 104 104 105 105 nic_address_t address; 106 memset(&address, 0, sizeof(nic_address_t));106 bzero(&address, sizeof(nic_address_t)); 107 107 108 108 int rc = nic_iface->get_address(dev, &address); … … 173 173 174 174 nic_device_stats_t stats; 175 memset(&stats, 0, sizeof(nic_device_stats_t));175 bzero(&stats, sizeof(nic_device_stats_t)); 176 176 177 177 int rc = nic_iface->get_stats(dev, &stats); … … 208 208 209 209 nic_device_info_t info; 210 memset(&info, 0, sizeof(nic_device_info_t));210 bzero(&info, sizeof(nic_device_info_t)); 211 211 212 212 int rc = nic_iface->get_device_info(dev, &info); … … 399 399 } 400 400 401 memset(address_list, 0, max_count * sizeof(nic_address_t));401 bzero(address_list, max_count * sizeof(nic_address_t)); 402 402 nic_unicast_mode_t mode = NIC_UNICAST_DEFAULT; 403 403 size_t address_count = 0; … … 503 503 } 504 504 505 memset(address_list, 0, max_count * sizeof(nic_address_t));505 bzero(address_list, max_count * sizeof(nic_address_t)); 506 506 nic_multicast_mode_t mode = NIC_MULTICAST_BLOCKED; 507 507 size_t address_count = 0; … … 667 667 } 668 668 669 memset(address_list, 0, max_count * sizeof(nic_address_t));669 bzero(address_list, max_count * sizeof(nic_address_t)); 670 670 size_t address_count = 0; 671 671 … … 759 759 760 760 nic_vlan_mask_t vlan_mask; 761 memset(&vlan_mask, 0, sizeof(nic_vlan_mask_t));761 bzero(&vlan_mask, sizeof(nic_vlan_mask_t)); 762 762 763 763 int rc = nic_iface->vlan_get_mask(dev, &vlan_mask); … … 932 932 } 933 933 934 memset(data, 0, max_length);934 bzero(data, max_length); 935 935 936 936 int rc = nic_iface->wol_virtue_probe(dev, id, &type, max_length, … … 982 982 } 983 983 984 memset(id_list, 0, max_count * sizeof (nic_wv_id_t));984 bzero(id_list, max_count * sizeof (nic_wv_id_t)); 985 985 986 986 int rc = nic_iface->wol_virtue_list(dev, type, max_count, id_list, … … 1047 1047 } 1048 1048 1049 memset(data, 0, max_length);1049 bzero(data, max_length); 1050 1050 1051 1051 int rc = nic_iface->wol_load_info(dev, &type, max_length, data,
Note:
See TracChangeset
for help on using the changeset viewer.