ctcm: netdev->priv vs. netdev->ml_priv
Use netdev->ml_priv instead of netdev->priv Signed-off-by: Peter Tiedemann <ptiedem@de.ibm.com> Signed-off-by: Ursula Braun <ursula.braun@de.ibm.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
committed by
Jeff Garzik
parent
6951df34d5
commit
261893d30b
@@ -313,10 +313,10 @@ static struct net_device *ctcmpc_get_dev(int port_num)
|
||||
CTCM_FUNTAIL, device);
|
||||
return NULL;
|
||||
}
|
||||
priv = dev->priv;
|
||||
priv = dev->ml_priv;
|
||||
if (priv == NULL) {
|
||||
CTCM_DBF_TEXT_(MPC_ERROR, CTC_DBF_ERROR,
|
||||
"%s(%s): dev->priv is NULL",
|
||||
"%s(%s): dev->ml_priv is NULL",
|
||||
CTCM_FUNTAIL, device);
|
||||
return NULL;
|
||||
}
|
||||
@@ -345,7 +345,7 @@ int ctc_mpc_alloc_channel(int port_num, void (*callback)(int, int))
|
||||
dev = ctcmpc_get_dev(port_num);
|
||||
if (dev == NULL)
|
||||
return 1;
|
||||
priv = dev->priv;
|
||||
priv = dev->ml_priv;
|
||||
grp = priv->mpcg;
|
||||
|
||||
grp->allochanfunc = callback;
|
||||
@@ -417,7 +417,7 @@ void ctc_mpc_establish_connectivity(int port_num,
|
||||
dev = ctcmpc_get_dev(port_num);
|
||||
if (dev == NULL)
|
||||
return;
|
||||
priv = dev->priv;
|
||||
priv = dev->ml_priv;
|
||||
grp = priv->mpcg;
|
||||
rch = priv->channel[READ];
|
||||
wch = priv->channel[WRITE];
|
||||
@@ -535,7 +535,7 @@ void ctc_mpc_dealloc_ch(int port_num)
|
||||
dev = ctcmpc_get_dev(port_num);
|
||||
if (dev == NULL)
|
||||
return;
|
||||
priv = dev->priv;
|
||||
priv = dev->ml_priv;
|
||||
grp = priv->mpcg;
|
||||
|
||||
CTCM_DBF_TEXT_(MPC_SETUP, CTC_DBF_DEBUG,
|
||||
@@ -571,7 +571,7 @@ void ctc_mpc_flow_control(int port_num, int flowc)
|
||||
dev = ctcmpc_get_dev(port_num);
|
||||
if (dev == NULL)
|
||||
return;
|
||||
priv = dev->priv;
|
||||
priv = dev->ml_priv;
|
||||
grp = priv->mpcg;
|
||||
|
||||
CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_DEBUG,
|
||||
@@ -620,7 +620,7 @@ static void mpc_rcvd_sweep_resp(struct mpcg_info *mpcginfo)
|
||||
{
|
||||
struct channel *rch = mpcginfo->ch;
|
||||
struct net_device *dev = rch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
struct channel *ch = priv->channel[WRITE];
|
||||
|
||||
@@ -651,7 +651,7 @@ static void mpc_rcvd_sweep_resp(struct mpcg_info *mpcginfo)
|
||||
static void ctcmpc_send_sweep_resp(struct channel *rch)
|
||||
{
|
||||
struct net_device *dev = rch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
int rc = 0;
|
||||
struct th_sweep *header;
|
||||
@@ -713,7 +713,7 @@ static void mpc_rcvd_sweep_req(struct mpcg_info *mpcginfo)
|
||||
{
|
||||
struct channel *rch = mpcginfo->ch;
|
||||
struct net_device *dev = rch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
struct channel *ch = priv->channel[WRITE];
|
||||
|
||||
@@ -847,7 +847,7 @@ static int mpcg_fsm_len = ARRAY_SIZE(mpcg_fsm);
|
||||
static void mpc_action_go_ready(fsm_instance *fsm, int event, void *arg)
|
||||
{
|
||||
struct net_device *dev = arg;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
|
||||
if (grp == NULL) {
|
||||
@@ -891,7 +891,7 @@ static void mpc_action_go_ready(fsm_instance *fsm, int event, void *arg)
|
||||
void mpc_group_ready(unsigned long adev)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *)adev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
struct channel *ch = NULL;
|
||||
|
||||
@@ -947,7 +947,7 @@ void mpc_group_ready(unsigned long adev)
|
||||
void mpc_channel_action(struct channel *ch, int direction, int action)
|
||||
{
|
||||
struct net_device *dev = ch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
|
||||
if (grp == NULL) {
|
||||
@@ -1057,7 +1057,7 @@ done:
|
||||
static void ctcmpc_unpack_skb(struct channel *ch, struct sk_buff *pskb)
|
||||
{
|
||||
struct net_device *dev = ch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
struct pdu *curr_pdu;
|
||||
struct mpcg_info *mpcginfo;
|
||||
@@ -1255,7 +1255,7 @@ void ctcmpc_bh(unsigned long thischan)
|
||||
struct channel *ch = (struct channel *)thischan;
|
||||
struct sk_buff *skb;
|
||||
struct net_device *dev = ch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
|
||||
CTCM_PR_DEBUG("%s cp:%i enter: %s() %s\n",
|
||||
@@ -1377,7 +1377,7 @@ static void mpc_action_go_inop(fsm_instance *fi, int event, void *arg)
|
||||
BUG_ON(dev == NULL);
|
||||
CTCM_PR_DEBUG("Enter %s: %s\n", __func__, dev->name);
|
||||
|
||||
priv = dev->priv;
|
||||
priv = dev->ml_priv;
|
||||
grp = priv->mpcg;
|
||||
grp->flow_off_called = 0;
|
||||
fsm_deltimer(&grp->timer);
|
||||
@@ -1483,7 +1483,7 @@ static void mpc_action_timeout(fsm_instance *fi, int event, void *arg)
|
||||
|
||||
BUG_ON(dev == NULL);
|
||||
|
||||
priv = dev->priv;
|
||||
priv = dev->ml_priv;
|
||||
grp = priv->mpcg;
|
||||
wch = priv->channel[WRITE];
|
||||
rch = priv->channel[READ];
|
||||
@@ -1521,7 +1521,7 @@ void mpc_action_discontact(fsm_instance *fi, int event, void *arg)
|
||||
if (ch) {
|
||||
dev = ch->netdev;
|
||||
if (dev) {
|
||||
priv = dev->priv;
|
||||
priv = dev->ml_priv;
|
||||
if (priv) {
|
||||
CTCM_DBF_TEXT_(MPC_TRACE, CTC_DBF_NOTICE,
|
||||
"%s: %s: %s\n",
|
||||
@@ -1569,7 +1569,7 @@ static int mpc_validate_xid(struct mpcg_info *mpcginfo)
|
||||
{
|
||||
struct channel *ch = mpcginfo->ch;
|
||||
struct net_device *dev = ch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
struct xid2 *xid = mpcginfo->xid;
|
||||
int rc = 0;
|
||||
@@ -1866,7 +1866,7 @@ static void mpc_action_doxid0(fsm_instance *fsm, int event, void *arg)
|
||||
{
|
||||
struct channel *ch = arg;
|
||||
struct net_device *dev = ch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
|
||||
CTCM_PR_DEBUG("Enter %s: cp=%i ch=0x%p id=%s\n",
|
||||
@@ -1906,7 +1906,7 @@ static void mpc_action_doxid0(fsm_instance *fsm, int event, void *arg)
|
||||
static void mpc_action_doxid7(fsm_instance *fsm, int event, void *arg)
|
||||
{
|
||||
struct net_device *dev = arg;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = NULL;
|
||||
int direction;
|
||||
int send = 0;
|
||||
@@ -1983,7 +1983,7 @@ static void mpc_action_rcvd_xid0(fsm_instance *fsm, int event, void *arg)
|
||||
struct mpcg_info *mpcginfo = arg;
|
||||
struct channel *ch = mpcginfo->ch;
|
||||
struct net_device *dev = ch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
|
||||
CTCM_PR_DEBUG("%s: ch-id:%s xid2:%i xid7:%i xidt_p2:%i \n",
|
||||
@@ -2045,7 +2045,7 @@ static void mpc_action_rcvd_xid7(fsm_instance *fsm, int event, void *arg)
|
||||
struct mpcg_info *mpcginfo = arg;
|
||||
struct channel *ch = mpcginfo->ch;
|
||||
struct net_device *dev = ch->netdev;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
|
||||
CTCM_PR_DEBUG("Enter %s: cp=%i ch=0x%p id=%s\n",
|
||||
@@ -2097,7 +2097,7 @@ static int mpc_send_qllc_discontact(struct net_device *dev)
|
||||
__u32 new_len = 0;
|
||||
struct sk_buff *skb;
|
||||
struct qllc *qllcptr;
|
||||
struct ctcm_priv *priv = dev->priv;
|
||||
struct ctcm_priv *priv = dev->ml_priv;
|
||||
struct mpc_group *grp = priv->mpcg;
|
||||
|
||||
CTCM_PR_DEBUG("%s: GROUP STATE: %s\n",
|
||||
|
Reference in New Issue
Block a user