/* Clears global counters, as the code below will sum it again */
        c->block_error.stat[0].uvalue = 0;
        c->block_count.stat[0].uvalue = 0;
+       c->block_error.stat[0].scale = FE_SCALE_COUNTER;
+       c->block_count.stat[0].scale = FE_SCALE_COUNTER;
        c->post_bit_error.stat[0].uvalue = 0;
        c->post_bit_count.stat[0].uvalue = 0;
+       c->post_bit_error.stat[0].scale = FE_SCALE_COUNTER;
+       c->post_bit_count.stat[0].scale = FE_SCALE_COUNTER;
 
        for (i = 0; i < n_layers; i++) {
                lr = &p->LayerInfo[i];
                c->layer[i].modulation = sms_to_modulation(lr->Constellation);
 
                /* TS PER */
-               c->block_error.stat[i].scale = FE_SCALE_COUNTER;
-               c->block_count.stat[i].scale = FE_SCALE_COUNTER;
-               c->block_error.stat[i].uvalue += lr->ErrorTSPackets;
-               c->block_count.stat[i].uvalue += lr->TotalTSPackets;
+               c->block_error.stat[i + 1].scale = FE_SCALE_COUNTER;
+               c->block_count.stat[i + 1].scale = FE_SCALE_COUNTER;
+               c->block_error.stat[i + 1].uvalue += lr->ErrorTSPackets;
+               c->block_count.stat[i + 1].uvalue += lr->TotalTSPackets;
 
                /* Update global PER counter */
                c->block_error.stat[0].uvalue += lr->ErrorTSPackets;
                c->block_count.stat[0].uvalue += lr->TotalTSPackets;
 
                /* BER */
-               c->post_bit_error.stat[i].scale = FE_SCALE_COUNTER;
-               c->post_bit_count.stat[i].scale = FE_SCALE_COUNTER;
-               c->post_bit_error.stat[i].uvalue += lr->BERErrorCount;
-               c->post_bit_count.stat[i].uvalue += lr->BERBitCount;
+               c->post_bit_error.stat[i + 1].scale = FE_SCALE_COUNTER;
+               c->post_bit_count.stat[i + 1].scale = FE_SCALE_COUNTER;
+               c->post_bit_error.stat[i + 1].uvalue += lr->BERErrorCount;
+               c->post_bit_count.stat[i + 1].uvalue += lr->BERBitCount;
 
                /* Update global BER counter */
                c->post_bit_error.stat[0].uvalue += lr->BERErrorCount;
        /* Clears global counters, as the code below will sum it again */
        c->block_error.stat[0].uvalue = 0;
        c->block_count.stat[0].uvalue = 0;
+       c->block_error.stat[0].scale = FE_SCALE_COUNTER;
+       c->block_count.stat[0].scale = FE_SCALE_COUNTER;
        c->post_bit_error.stat[0].uvalue = 0;
        c->post_bit_count.stat[0].uvalue = 0;
+       c->post_bit_error.stat[0].scale = FE_SCALE_COUNTER;
+       c->post_bit_count.stat[0].scale = FE_SCALE_COUNTER;
 
+       c->post_bit_error.len = n_layers + 1;
+       c->post_bit_count.len = n_layers + 1;
+       c->block_error.len = n_layers + 1;
+       c->block_count.len = n_layers + 1;
        for (i = 0; i < n_layers; i++) {
                lr = &p->LayerInfo[i];
 
                c->layer[i].modulation = sms_to_modulation(lr->Constellation);
 
                /* TS PER */
-               c->block_error.stat[i].scale = FE_SCALE_COUNTER;
-               c->block_count.stat[i].scale = FE_SCALE_COUNTER;
-               c->block_error.stat[i].uvalue += lr->ErrorTSPackets;
-               c->block_count.stat[i].uvalue += lr->TotalTSPackets;
+               c->block_error.stat[i + 1].scale = FE_SCALE_COUNTER;
+               c->block_count.stat[i + 1].scale = FE_SCALE_COUNTER;
+               c->block_error.stat[i + 1].uvalue += lr->ErrorTSPackets;
+               c->block_count.stat[i + 1].uvalue += lr->TotalTSPackets;
 
                /* Update global PER counter */
                c->block_error.stat[0].uvalue += lr->ErrorTSPackets;
                c->block_count.stat[0].uvalue += lr->TotalTSPackets;
 
                /* BER */
-               c->post_bit_error.stat[i].scale = FE_SCALE_COUNTER;
-               c->post_bit_count.stat[i].scale = FE_SCALE_COUNTER;
-               c->post_bit_error.stat[i].uvalue += lr->BERErrorCount;
-               c->post_bit_count.stat[i].uvalue += lr->BERBitCount;
+               c->post_bit_error.stat[i + 1].scale = FE_SCALE_COUNTER;
+               c->post_bit_count.stat[i + 1].scale = FE_SCALE_COUNTER;
+               c->post_bit_error.stat[i + 1].uvalue += lr->BERErrorCount;
+               c->post_bit_count.stat[i + 1].uvalue += lr->BERBitCount;
 
                /* Update global BER counter */
                c->post_bit_error.stat[0].uvalue += lr->BERErrorCount;
        smscore_putbuffer(client->coredev, cb);
 
        if (is_status_update) {
-               if (client->fe_status == FE_HAS_LOCK) {
+               if (client->fe_status & FE_HAS_LOCK) {
                        sms_board_dvb3_event(client, DVB3_EVENT_FE_LOCK);
                        if (client->last_per == c->block_error.stat[0].uvalue)
                                sms_board_dvb3_event(client, DVB3_EVENT_UNC_OK);