Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338200
b: refs/heads/master
c: 4aca284
h: refs/heads/master
v: v3
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Nov 27, 2012
1 parent ff546c8 commit 9681d02
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8a885ae80573430f1d3c31b6b33d078b1ed44aee
refs/heads/master: 4aca284f1a0d0b86a0105558a2599937ee32a5b7
6 changes: 3 additions & 3 deletions trunk/drivers/staging/bcm/HostMIBSInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ typedef struct _S_MIBS_HOST_INFO {
u32 aRxPktSizeHist[MIBS_MAX_HIST_ENTRIES];
} S_MIBS_HOST_INFO;

typedef struct _S_MIBS_CLASSIFIER_RULE {
struct bcm_mibs_classifier_rule {
unsigned long ulSFID;
unsigned char ucReserved[2];
u16 uiClassifierRuleIndex;
Expand Down Expand Up @@ -96,7 +96,7 @@ typedef struct _S_MIBS_CLASSIFIER_RULE {
unsigned char ucDirection;
bool bIpv6Protocol;
u32 u32PHSRuleID;
} S_MIBS_CLASSIFIER_RULE;
};

struct bcm_mibs_phs_rule {
unsigned long ulSFID;
Expand Down Expand Up @@ -183,7 +183,7 @@ struct bcm_mibs_dropped_cntrl_msg {

struct bcm_host_stats_mibs {
S_MIBS_HOST_INFO stHostInfo;
S_MIBS_CLASSIFIER_RULE astClassifierTable[MIBS_MAX_CLASSIFIERS];
struct bcm_mibs_classifier_rule astClassifierTable[MIBS_MAX_CLASSIFIERS];
struct bcm_mibs_table astSFtable[MIBS_MAX_SERVICEFLOWS];
struct bcm_mibs_phs_rule astPhsRulesTable[MIBS_MAX_PHSRULES];
struct bcm_mibs_dropped_cntrl_msg stDroppedAppCntrlMsgs;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/bcm/hostmibs.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ INT ProcessGetHostMibs(struct bcm_mini_adapter *Adapter, struct bcm_host_stats_m
astClassifierTable[nClassifierIndex],
(PVOID) & Adapter->
astClassifierTable[nClassifierIndex],
sizeof(S_MIBS_CLASSIFIER_RULE));
sizeof(struct bcm_mibs_classifier_rule));
}

/* Copy the SF Table */
Expand Down

0 comments on commit 9681d02

Please sign in to comment.