Merge branch 'upstream-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6 into upstream-fixes
This commit is contained in:
commit
c1cb0b77f9
7 changed files with 26 additions and 28 deletions
|
@ -64,7 +64,7 @@ struct cck_plcp_header {
|
||||||
u8 service;
|
u8 service;
|
||||||
__le16 length;
|
__le16 length;
|
||||||
__le16 crc16;
|
__le16 crc16;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
static inline u8 zd_cck_plcp_header_rate(const struct cck_plcp_header *header)
|
static inline u8 zd_cck_plcp_header_rate(const struct cck_plcp_header *header)
|
||||||
{
|
{
|
||||||
|
|
|
@ -721,7 +721,7 @@ struct zd_rt_hdr {
|
||||||
u8 rt_rate;
|
u8 rt_rate;
|
||||||
u16 rt_channel;
|
u16 rt_channel;
|
||||||
u16 rt_chbitmask;
|
u16 rt_chbitmask;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
static void fill_rt_header(void *buffer, struct zd_mac *mac,
|
static void fill_rt_header(void *buffer, struct zd_mac *mac,
|
||||||
const struct ieee80211_rx_stats *stats,
|
const struct ieee80211_rx_stats *stats,
|
||||||
|
|
|
@ -82,7 +82,7 @@ struct zd_ctrlset {
|
||||||
struct rx_length_info {
|
struct rx_length_info {
|
||||||
__le16 length[3];
|
__le16 length[3];
|
||||||
__le16 tag;
|
__le16 tag;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
#define RX_LENGTH_INFO_TAG 0x697e
|
#define RX_LENGTH_INFO_TAG 0x697e
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ struct rx_status {
|
||||||
u8 signal_quality_ofdm;
|
u8 signal_quality_ofdm;
|
||||||
u8 decryption_type;
|
u8 decryption_type;
|
||||||
u8 frame_status;
|
u8 frame_status;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
/* rx_status field decryption_type */
|
/* rx_status field decryption_type */
|
||||||
#define ZD_RX_NO_WEP 0
|
#define ZD_RX_NO_WEP 0
|
||||||
|
|
|
@ -366,15 +366,6 @@ error:
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void disable_read_regs_int(struct zd_usb *usb)
|
|
||||||
{
|
|
||||||
struct zd_usb_interrupt *intr = &usb->intr;
|
|
||||||
|
|
||||||
spin_lock(&intr->lock);
|
|
||||||
intr->read_regs_enabled = 0;
|
|
||||||
spin_unlock(&intr->lock);
|
|
||||||
}
|
|
||||||
|
|
||||||
#define urb_dev(urb) (&(urb)->dev->dev)
|
#define urb_dev(urb) (&(urb)->dev->dev)
|
||||||
|
|
||||||
static inline void handle_regs_int(struct urb *urb)
|
static inline void handle_regs_int(struct urb *urb)
|
||||||
|
@ -1156,10 +1147,19 @@ static void prepare_read_regs_int(struct zd_usb *usb)
|
||||||
{
|
{
|
||||||
struct zd_usb_interrupt *intr = &usb->intr;
|
struct zd_usb_interrupt *intr = &usb->intr;
|
||||||
|
|
||||||
spin_lock(&intr->lock);
|
spin_lock_irq(&intr->lock);
|
||||||
intr->read_regs_enabled = 1;
|
intr->read_regs_enabled = 1;
|
||||||
INIT_COMPLETION(intr->read_regs.completion);
|
INIT_COMPLETION(intr->read_regs.completion);
|
||||||
spin_unlock(&intr->lock);
|
spin_unlock_irq(&intr->lock);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void disable_read_regs_int(struct zd_usb *usb)
|
||||||
|
{
|
||||||
|
struct zd_usb_interrupt *intr = &usb->intr;
|
||||||
|
|
||||||
|
spin_lock_irq(&intr->lock);
|
||||||
|
intr->read_regs_enabled = 0;
|
||||||
|
spin_unlock_irq(&intr->lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int get_results(struct zd_usb *usb, u16 *values,
|
static int get_results(struct zd_usb *usb, u16 *values,
|
||||||
|
@ -1171,7 +1171,7 @@ static int get_results(struct zd_usb *usb, u16 *values,
|
||||||
struct read_regs_int *rr = &intr->read_regs;
|
struct read_regs_int *rr = &intr->read_regs;
|
||||||
struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer;
|
struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer;
|
||||||
|
|
||||||
spin_lock(&intr->lock);
|
spin_lock_irq(&intr->lock);
|
||||||
|
|
||||||
r = -EIO;
|
r = -EIO;
|
||||||
/* The created block size seems to be larger than expected.
|
/* The created block size seems to be larger than expected.
|
||||||
|
@ -1204,7 +1204,7 @@ static int get_results(struct zd_usb *usb, u16 *values,
|
||||||
|
|
||||||
r = 0;
|
r = 0;
|
||||||
error_unlock:
|
error_unlock:
|
||||||
spin_unlock(&intr->lock);
|
spin_unlock_irq(&intr->lock);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -74,17 +74,17 @@ enum control_requests {
|
||||||
struct usb_req_read_regs {
|
struct usb_req_read_regs {
|
||||||
__le16 id;
|
__le16 id;
|
||||||
__le16 addr[0];
|
__le16 addr[0];
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct reg_data {
|
struct reg_data {
|
||||||
__le16 addr;
|
__le16 addr;
|
||||||
__le16 value;
|
__le16 value;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct usb_req_write_regs {
|
struct usb_req_write_regs {
|
||||||
__le16 id;
|
__le16 id;
|
||||||
struct reg_data reg_writes[0];
|
struct reg_data reg_writes[0];
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
RF_IF_LE = 0x02,
|
RF_IF_LE = 0x02,
|
||||||
|
@ -101,7 +101,7 @@ struct usb_req_rfwrite {
|
||||||
/* RF2595: 24 */
|
/* RF2595: 24 */
|
||||||
__le16 bit_values[0];
|
__le16 bit_values[0];
|
||||||
/* (CR203 & ~(RF_IF_LE | RF_CLK | RF_DATA)) | (bit ? RF_DATA : 0) */
|
/* (CR203 & ~(RF_IF_LE | RF_CLK | RF_DATA)) | (bit ? RF_DATA : 0) */
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
/* USB interrupt */
|
/* USB interrupt */
|
||||||
|
|
||||||
|
@ -118,12 +118,12 @@ enum usb_int_flags {
|
||||||
struct usb_int_header {
|
struct usb_int_header {
|
||||||
u8 type; /* must always be 1 */
|
u8 type; /* must always be 1 */
|
||||||
u8 id;
|
u8 id;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct usb_int_regs {
|
struct usb_int_regs {
|
||||||
struct usb_int_header hdr;
|
struct usb_int_header hdr;
|
||||||
struct reg_data regs[0];
|
struct reg_data regs[0];
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct usb_int_retry_fail {
|
struct usb_int_retry_fail {
|
||||||
struct usb_int_header hdr;
|
struct usb_int_header hdr;
|
||||||
|
@ -131,7 +131,7 @@ struct usb_int_retry_fail {
|
||||||
u8 _dummy;
|
u8 _dummy;
|
||||||
u8 addr[ETH_ALEN];
|
u8 addr[ETH_ALEN];
|
||||||
u8 ibss_wakeup_dest;
|
u8 ibss_wakeup_dest;
|
||||||
};
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct read_regs_int {
|
struct read_regs_int {
|
||||||
struct completion completion;
|
struct completion completion;
|
||||||
|
|
|
@ -390,7 +390,7 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||||
* this stack is providing the full 802.11 header, one will
|
* this stack is providing the full 802.11 header, one will
|
||||||
* eventually be affixed to this fragment -- so we must account
|
* eventually be affixed to this fragment -- so we must account
|
||||||
* for it when determining the amount of payload space. */
|
* for it when determining the amount of payload space. */
|
||||||
bytes_per_frag = frag_size - IEEE80211_3ADDR_LEN;
|
bytes_per_frag = frag_size - hdr_len;
|
||||||
if (ieee->config &
|
if (ieee->config &
|
||||||
(CFG_IEEE80211_COMPUTE_FCS | CFG_IEEE80211_RESERVE_FCS))
|
(CFG_IEEE80211_COMPUTE_FCS | CFG_IEEE80211_RESERVE_FCS))
|
||||||
bytes_per_frag -= IEEE80211_FCS_LEN;
|
bytes_per_frag -= IEEE80211_FCS_LEN;
|
||||||
|
@ -412,7 +412,7 @@ int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||||
} else {
|
} else {
|
||||||
nr_frags = 1;
|
nr_frags = 1;
|
||||||
bytes_per_frag = bytes_last_frag = bytes;
|
bytes_per_frag = bytes_last_frag = bytes;
|
||||||
frag_size = bytes + IEEE80211_3ADDR_LEN;
|
frag_size = bytes + hdr_len;
|
||||||
}
|
}
|
||||||
|
|
||||||
rts_required = (frag_size > ieee->rts
|
rts_required = (frag_size > ieee->rts
|
||||||
|
|
|
@ -47,7 +47,6 @@ ieee80211softmac_start_scan(struct ieee80211softmac_device *sm)
|
||||||
sm->scanning = 1;
|
sm->scanning = 1;
|
||||||
spin_unlock_irqrestore(&sm->lock, flags);
|
spin_unlock_irqrestore(&sm->lock, flags);
|
||||||
|
|
||||||
netif_tx_disable(sm->ieee->dev);
|
|
||||||
ret = sm->start_scan(sm->dev);
|
ret = sm->start_scan(sm->dev);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
spin_lock_irqsave(&sm->lock, flags);
|
spin_lock_irqsave(&sm->lock, flags);
|
||||||
|
@ -248,7 +247,6 @@ void ieee80211softmac_scan_finished(struct ieee80211softmac_device *sm)
|
||||||
if (net)
|
if (net)
|
||||||
sm->set_channel(sm->dev, net->channel);
|
sm->set_channel(sm->dev, net->channel);
|
||||||
}
|
}
|
||||||
netif_wake_queue(sm->ieee->dev);
|
|
||||||
ieee80211softmac_call_events(sm, IEEE80211SOFTMAC_EVENT_SCAN_FINISHED, NULL);
|
ieee80211softmac_call_events(sm, IEEE80211SOFTMAC_EVENT_SCAN_FINISHED, NULL);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(ieee80211softmac_scan_finished);
|
EXPORT_SYMBOL_GPL(ieee80211softmac_scan_finished);
|
||||||
|
|
Loading…
Add table
Reference in a new issue