/* * Copyright (C) 2017 Rafał Miłecki * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include "core.h" static bool wiphy_freq_limits_valid_chan(struct wiphy *wiphy, struct ieee80211_freq_range *freq_limits, unsigned int n_freq_limits, struct ieee80211_channel *chan) { u32 bw = MHZ_TO_KHZ(20); int i; for (i = 0; i < n_freq_limits; i++) { struct ieee80211_freq_range *limit = &freq_limits[i]; if (cfg80211_does_bw_fit_range(limit, MHZ_TO_KHZ(chan->center_freq), bw)) return true; } return false; } static void wiphy_freq_limits_apply(struct wiphy *wiphy, struct ieee80211_freq_range *freq_limits, unsigned int n_freq_limits) { enum nl80211_band band; int i; if (WARN_ON(!n_freq_limits)) return; for (band = 0; band < NUM_NL80211_BANDS; band++) { struct ieee80211_supported_band *sband = wiphy->bands[band]; if (!sband) continue; for (i = 0; i < sband->n_channels; i++) { struct ieee80211_channel *chan = &sband->channels[i]; if (chan->flags & IEEE80211_CHAN_DISABLED) continue; if (!wiphy_freq_limits_valid_chan(wiphy, freq_limits, n_freq_limits, chan)) { pr_debug("Disabling freq %d MHz as it's out of OF limits\n", chan->center_freq); chan->flags |= IEEE80211_CHAN_DISABLED; } } } } void wiphy_read_of_freq_limits(struct wiphy *wiphy) { struct device *dev = wiphy_dev(wiphy); struct device_node *np; struct property *prop; struct ieee80211_freq_range *freq_limits; unsigned int n_freq_limits; const __be32 *p; int len, i; int err = 0; if (!dev) return; np = dev_of_node(dev); if (!np) return; prop = of_find_property(np, "ieee80211-freq-limit", &len); if (!prop) return; if (!len || len % sizeof(u32) || len / sizeof(u32) % 2) { dev_err(dev, "ieee80211-freq-limit wrong format"); return; } n_freq_limits = len / sizeof(u32) / 2; freq_limits = kcalloc(n_freq_limits, sizeof(*freq_limits), GFP_KERNEL); if (!freq_limits) { err = -ENOMEM; goto out_kfree; } p = NULL; for (i = 0; i < n_freq_limits; i++) { struct ieee80211_freq_range *limit = &freq_limits[i]; p = of_prop_next_u32(prop, p, &limit->start_freq_khz); if (!p) { err = -EINVAL; goto out_kfree; } p = of_prop_next_u32(prop, p, &limit->end_freq_khz); if (!p) { err = -EINVAL; goto out_kfree; } if (!limit->start_freq_khz || !limit->end_freq_khz || limit->start_freq_khz >= limit->end_freq_khz) { err = -EINVAL; goto out_kfree; } } wiphy_freq_limits_apply(wiphy, freq_limits, n_freq_limits); out_kfree: kfree(freq_limits); if (err) dev_err(dev, "Failed to get limits: %d\n", err); } EXPORT_SYMBOL(wiphy_read_of_freq_limits); '10'>10space:mode:
authorDexuan Cui <decui@microsoft.com>2017-01-28 11:46:02 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-01-31 10:59:48 +0100
commit433e19cf33d34bb6751c874a9c00980552fe508c (patch)
treece6547ef2987fbb289fa28f03536328a42781651 /net/ax25
parent191e885a2e130e639bb0c8ee350d7047294f2ce6 (diff)
Drivers: hv: vmbus: finally fix hv_need_to_signal_on_read()
Commit a389fcfd2cb5 ("Drivers: hv: vmbus: Fix signaling logic in hv_need_to_signal_on_read()") added the proper mb(), but removed the test "prev_write_sz < pending_sz" when making the signal decision. As a result, the guest can signal the host unnecessarily, and then the host can throttle the guest because the host thinks the guest is buggy or malicious; finally the user running stress test can perceive intermittent freeze of the guest. This patch brings back the test, and properly handles the in-place consumption APIs used by NetVSC (see get_next_pkt_raw(), put_pkt_raw() and commit_rd_index()). Fixes: a389fcfd2cb5 ("Drivers: hv: vmbus: Fix signaling logic in hv_need_to_signal_on_read()") Signed-off-by: Dexuan Cui <decui@microsoft.com> Reported-by: Rolf Neugebauer <rolf.neugebauer@docker.com> Tested-by: Rolf Neugebauer <rolf.neugebauer@docker.com> Cc: "K. Y. Srinivasan" <kys@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Cc: Stephen Hemminger <sthemmin@microsoft.com> Cc: <stable@vger.kernel.org> Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net/ax25')