summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/eld.h
blob: b5de59d74a867a875ddff5691338817b18db6e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
// Copyright (c) 2010-2017 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
*/

#ifndef _ELD_H_
#define _ELD_H_

#define PACKET_QUEUE_BITS      14
#define PACKET_QUEUE_SIZE      (1 << PACKET_QUEUE_BITS)
#define PACKET_QUEUE_MASK      (PACKET_QUEUE_SIZE - 1)

#define QUEUE_ID_BITS		(32 - PACKET_QUEUE_BITS)
#define QUEUE_ID_SIZE		(1 << QUEUE_ID_BITS)
#define QUEUE_ID_MASK		(QUEUE_ID_SIZE - 1)

struct early_loss_detect {
	uint32_t entries[PACKET_QUEUE_SIZE];
	uint32_t last_pkt_idx;
};

static void early_loss_detect_reset(struct early_loss_detect *eld)
{
	for (size_t i = 0; i < PACKET_QUEUE_SIZE; i++) {
		eld->entries[i] = -1;
	}
}

static uint32_t early_loss_detect_count_remaining_loss(struct early_loss_detect *eld)
{
	uint32_t queue_id;
	uint32_t n_loss;
	uint32_t n_loss_total = 0;

	/* Need to check if we lost any packet before last packet
	   received Any packet lost AFTER the last packet received
	   cannot be counted.  Such a packet will be counted after both
	   lat and gen restarted */
	queue_id = eld->last_pkt_idx >> PACKET_QUEUE_BITS;
	for (uint32_t i = (eld->last_pkt_idx + 1) & PACKET_QUEUE_MASK; i < PACKET_QUEUE_SIZE; i++) {
		// We ** might ** have received OOO packets; do not count them as lost next time...
		if (queue_id - eld->entries[i] != 0) {
			n_loss = (queue_id - eld->entries[i] - 1) & QUEUE_ID_MASK;
			n_loss_total += n_loss;
		}
	}
	for (uint32_t i = 0; i < (eld->last_pkt_idx & PACKET_QUEUE_MASK); i++) {
		// We ** might ** have received OOO packets; do not count them as lost next time...
		if (eld->entries[i] - queue_id != 1) {
			n_loss = (queue_id - eld->entries[i]) & QUEUE_ID_MASK;
			n_loss_total += n_loss;
		}
	}

	eld->entries[eld->last_pkt_idx & PACKET_QUEUE_MASK] = -1;
	return n_loss_total;
}

static uint32_t early_loss_detect_add(struct early_loss_detect *eld, uint32_t packet_index)
{
	uint32_t old_queue_id, queue_pos, n_loss;

	eld->last_pkt_idx = packet_index;
	queue_pos = packet_index & PACKET_QUEUE_MASK;
	old_queue_id = eld->entries[queue_pos];
	eld->entries[queue_pos] = packet_index >> PACKET_QUEUE_BITS;

	return (eld->entries[queue_pos] - old_queue_id - 1) & QUEUE_ID_MASK;
}

#endif /* _ELD_H_ */
t;x-b" -o "x$1" == "x--black" ] ; then shift RED="" GREEN="" BLACK="" else RED="\e[31m" GREEN="\e[32m" BLACK="\e[0m" fi # check if pylint is available if ! which $PYLINT &>/dev/null ; then echo "$PYLINT is not available, thus check can't be executed" exit 1 fi # check if we were run within vsperf directory if [ ! -x ./vsperf 2> /dev/null ] ; then echo "`basename $0` must be run from vsperf root directory" exit 2 fi # get list of excluded modules EXCLUDED_MODULES=`grep "^ *EXCLUDE_MODULES" conf/00_common.conf | tr '"' "'"` # get list of files to be checked rm $FILE_LIST &> /dev/null if [ "x$1" == "x-m" -o "x$1" == "x--modified" ] ; then # check of modified files requested git status --porcelain | cut -b4- | egrep -i "${FILE_REGEX}" | sort > $FILE_LIST elif [ "x$*" == "x" ] ; then # list is empty, check all python files git ls-tree --name-only -r HEAD | egrep -i "${FILE_REGEX}" | sort > $FILE_LIST else for item in $* ; do if [ -d $item ] ; then git ls-tree --name-only -r HEAD $item | egrep -i "${FILE_REGEX}" | sort >> $FILE_LIST elif [ -f $item ] ; then echo $item >> $FILE_LIST else echo "$item doesn't exist, thus check was aborted" exit 3 fi done fi # check if there is anything to check echo "Execution of pylint checks:" if [ -s $FILE_LIST ] ; then for pyfile in `cat $FILE_LIST | sort` ; do # get base name pyfile_basename="'"`basename $pyfile .py`"'" # and check if it should be excluded or not if ( echo $EXCLUDED_MODULES | grep -w $pyfile_basename > /dev/null ) ; then printf " %-70s %-6s\n" $pyfile "EXCLUDED" continue fi # run pylint and extract final rating output=`$PYLINT --rcfile $PYLINT_RC $pyfile 2>/dev/null` rating=`echo -e $output | tail -n3 | grep rated | sed -e 's/^.*rated at \([0-9.]*\).*$/\1/'` # evaluate and display aquired rating if [ "x$rating" == "x" ] ; then # rating is not available for files without python statements printf " %-70s %-6s\n" $pyfile "NA" elif rating_is_ok $rating ; then printf " %-70s ${GREEN}%-6s${BLACK}\n" $pyfile "OK" else echo -e "$output" | awk '/^*+ Module|^[A-Z]\:/' printf " %-70s ${RED}%-6s${BLACK}\n" $pyfile $rating fi done else echo "Nothing to check." exit 4 fi # clean up rm $FILE_LIST &> /dev/null if [ "$PYLINT_RATING_MIN" != "$PYLINT_RATING_GATE" ] ; then echo -e "Pylint check has failed. All files must have score ${PYLINT_RATING_GATE}.\n" exit 1 else exit 0 fi ##### MAIN end #####