ns2: Ignore NSVC with data_weight 0 for data

Change-Id: If0c2bee285f85110771326e07b513fc3e3f9d3f0
Fixes: OS#5189
diff --git a/src/gb/gprs_ns2.c b/src/gb/gprs_ns2.c
index 3bf31a3..720e836 100644
--- a/src/gb/gprs_ns2.c
+++ b/src/gb/gprs_ns2.c
@@ -414,6 +414,8 @@
 
 	mod = (bvci + load_selector) % nse->sum_data_weight;
 	llist_for_each_entry(tmp, &nse->nsvc, list) {
+		if (tmp->data_weight == 0)
+			continue;
 		if (!ns2_vc_is_unblocked(tmp))
 			continue;
 		if (i == mod || mod < i + tmp->data_weight)