Lines Matching defs:mac
724 "OBT=%d, PASS_BLOCKED=%d, REPRIO_EN=%d, PRIO=%d\n", entry->mac,
728 /* Add mac address */
729 hellcreek_write(hellcreek, entry->mac[1] | (entry->mac[0] << 8), HR_FDBWDH);
730 hellcreek_write(hellcreek, entry->mac[3] | (entry->mac[2] << 8), HR_FDBWDM);
731 hellcreek_write(hellcreek, entry->mac[5] | (entry->mac[4] << 8), HR_FDBWDL);
755 dev_dbg(hellcreek->dev, "Delete FDB entry: MAC=%pM!\n", entry->mac);
769 u16 meta, mac;
773 mac = hellcreek_read(hellcreek, HR_FDBRDL);
774 addr[5] = mac & 0xff;
775 addr[4] = (mac & 0xff00) >> 8;
776 mac = hellcreek_read(hellcreek, HR_FDBRDM);
777 addr[3] = mac & 0xff;
778 addr[2] = (mac & 0xff00) >> 8;
779 mac = hellcreek_read(hellcreek, HR_FDBRDH);
780 addr[1] = mac & 0xff;
781 addr[0] = (mac & 0xff00) >> 8;
784 memcpy(entry->mac, addr, sizeof(addr));
798 /* Retrieve the index of a FDB entry by mac address. Currently we search through
827 if (memcmp(tmp.mac, dest, ETH_ALEN))
854 memcpy(entry.mac, addr, sizeof(entry.mac));
956 if (is_zero_ether_addr(entry.mac))
963 ret = cb(entry.mac, 0, entry.is_static, data);
1070 .mac = { 0x01, 0x1b, 0x19, 0x00, 0x00, 0x00 },
1081 .mac = { 0x01, 0x00, 0x5e, 0x00, 0x01, 0x81 },
1092 .mac = { 0x33, 0x33, 0x00, 0x00, 0x01, 0x81 },
1103 .mac = { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x0e },
1114 .mac = { 0x01, 0x00, 0x5e, 0x00, 0x00, 0x6b },
1125 .mac = { 0x33, 0x33, 0x00, 0x00, 0x00, 0x6b },
1136 .mac = { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x00 },