/* send the ramrod on all the queues of the PF */
        for_each_eth_queue(bp, i) {
                struct bnx2x_fastpath *fp = &bp->fp[i];
+               int tx_idx;
 
                /* Set the appropriate Queue object */
                q_params.q_obj = &bnx2x_sp_obj(bp, fp).q_obj;
 
-               /* Update the Queue state */
-               rc = bnx2x_queue_state_change(bp, &q_params);
-               if (rc) {
-                       BNX2X_ERR("Failed to configure Tx switching\n");
-                       return rc;
+               for (tx_idx = FIRST_TX_COS_INDEX;
+                    tx_idx < fp->max_cos; tx_idx++) {
+                       q_params.params.update.cid_index = tx_idx;
+
+                       /* Update the Queue state */
+                       rc = bnx2x_queue_state_change(bp, &q_params);
+                       if (rc) {
+                               BNX2X_ERR("Failed to configure Tx switching\n");
+                               return rc;
+                       }
                }
        }