https://github.com/torvalds/linux
Revision 1446e04c9b9b7d27437a5fefee37d9984afcd560 authored by Dave Airlie on 30 May 2014, 23:19:05 UTC, committed by Dave Airlie on 30 May 2014, 23:19:05 UTC
this is the next pull request for stashed up radeon fixes for 3.15. This is finally calming down with only four patches in this pull request.

* 'drm-fixes-3.15' of git://people.freedesktop.org/~deathsimple/linux:
  drm/radeon: only allocate necessary size for vm bo list
  drm/radeon: don't allow RADEON_GEM_DOMAIN_CPU for command submission
  drm/radeon: avoid crash if VM command submission isn't available
  drm/radeon: lower the ref * post PLL maximum once more
2 parent s efb27e7 + 7d95f6c
Raw File
Tip revision: 1446e04c9b9b7d27437a5fefee37d9984afcd560 authored by Dave Airlie on 30 May 2014, 23:19:05 UTC
Merge branch 'drm-fixes-3.15' of git://people.freedesktop.org/~deathsimple/linux into drm-fixes
Tip revision: 1446e04
event.c
/*
 * Copyright 2007	Johannes Berg <johannes@sipsolutions.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * mac80211 - events
 */
#include <net/cfg80211.h>
#include "ieee80211_i.h"

/*
 * Indicate a failed Michael MIC to userspace. If the caller knows the TSC of
 * the frame that generated the MIC failure (i.e., if it was provided by the
 * driver or is still in the frame), it should provide that information.
 */
void mac80211_ev_michael_mic_failure(struct ieee80211_sub_if_data *sdata, int keyidx,
				     struct ieee80211_hdr *hdr, const u8 *tsc,
				     gfp_t gfp)
{
	cfg80211_michael_mic_failure(sdata->dev, hdr->addr2,
				     (hdr->addr1[0] & 0x01) ?
				     NL80211_KEYTYPE_GROUP :
				     NL80211_KEYTYPE_PAIRWISE,
				     keyidx, tsc, gfp);
}
back to top