···256256/* The actual cpus in "network_cpus". */257257static struct cpumask network_cpus_map;258258259259-/* If "loopify=LINK" was specified, this is "LINK". */259259+/* If "tile_net.loopify=LINK" was specified, this is "LINK". */260260static char *loopify_link_name;261261262262-/* If "tile_net.custom" was specified, this is non-NULL. */263263-static char *custom_str;262262+/* If "tile_net.custom" was specified, this is true. */263263+static bool custom_flag;264264265265/* If "tile_net.jumbo=NUM" was specified, this is "NUM". */266266static uint jumbo_num;···323323/* The "tile_net.custom" argument causes us to ignore the "conventional"324324 * classifier metadata, in particular, the "l2_offset".325325 */326326-module_param_named(custom, custom_str, charp, 0444);326326+module_param_named(custom, custom_flag, bool, 0444);327327MODULE_PARM_DESC(custom, "indicates a (heavily) customized classifier");328328329329/* The "tile_net.jumbo" argument causes us to support "jumbo" packets,···501501 }502502503503 /* Get the "l2_offset", if allowed. */504504- l2_offset = custom_str ? 0 : gxio_mpipe_idesc_get_l2_offset(idesc);504504+ l2_offset = custom_flag ? 0 : gxio_mpipe_idesc_get_l2_offset(idesc);505505506506 /* Get the VA (including NET_IP_ALIGN bytes of "headroom"). */507507 va = tile_io_addr_to_va((unsigned long)idesc->va);