Lines Matching refs:entries
49 * @entries: entries to validate
50 * @num_entries: number of entries to validate
53 valid_module_entries(struct ice_hw *hw, struct ice_fwlog_module_entry *entries,
58 if (!entries) {
69 struct ice_fwlog_module_entry *entry = &entries[i];
138 * @entries: entries to configure
139 * @num_entries: number of @entries
144 ice_aq_fwlog_set(struct ice_hw *hw, struct ice_fwlog_module_entry *entries,
160 CPU_TO_LE16(entries[i].module_id);
161 fw_modules[i].log_level = entries[i].log_level;
233 * update_cached_entries - Update module entries in cached FW logging config
235 * @entries: entries to cache
236 * @num_entries: number of @entries
239 update_cached_entries(struct ice_hw *hw, struct ice_fwlog_module_entry *entries,
245 struct ice_fwlog_module_entry *updated = &entries[i];
263 * @entries: array of ice_fwlog_module_entry(s)
264 * @num_entries: number of entries
269 * Only the entries passed in will be affected. All other firmware logging
274 struct ice_fwlog_module_entry *entries,
283 if (!valid_module_entries(hw, entries, num_entries))
294 status = ice_aq_fwlog_set(hw, entries, num_entries, cfg->options,
297 update_cached_entries(hw, entries, num_entries);