mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-10-31 21:29:00 +00:00 
			
		
		
		
	 927e3cfb52
			
		
	
	
		927e3cfb52
		
	
	
	
	
		
			
			This patch adapts the tc command line interface to allow bandwidth limits to be specified as a percentage of the interface's capacity. Adding this functionality requires passing the specified device string to each class/qdisc which changes the prototype for a couple of functions: the .parse_qopt and .parse_copt interfaces. The device string is a required parameter for tc-qdisc and tc-class, and when not specified, the kernel returns ENODEV. In this patch, if the user tries to specify a bandwidth percentage without naming the device, we return an error from userspace. Signed-off-by: Nishanth Devarajan<ndev2021@gmail.com>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * q_ingress.c             INGRESS.
 | |
|  *
 | |
|  *              This program is free software; you can redistribute it and/or
 | |
|  *              modify it under the terms of the GNU General Public License
 | |
|  *              as published by the Free Software Foundation; either version
 | |
|  *              2 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * Authors:    J Hadi Salim
 | |
|  */
 | |
| 
 | |
| #include <stdio.h>
 | |
| #include <string.h>
 | |
| 
 | |
| #include "utils.h"
 | |
| #include "tc_util.h"
 | |
| 
 | |
| static void explain(void)
 | |
| {
 | |
| 	fprintf(stderr, "Usage: ... ingress\n");
 | |
| }
 | |
| 
 | |
| static int ingress_parse_opt(struct qdisc_util *qu, int argc, char **argv,
 | |
| 			     struct nlmsghdr *n, const char *dev)
 | |
| {
 | |
| 	while (argc > 0) {
 | |
| 		if (strcmp(*argv, "handle") == 0) {
 | |
| 			NEXT_ARG();
 | |
| 			argc--; argv++;
 | |
| 		} else {
 | |
| 			fprintf(stderr, "What is \"%s\"?\n", *argv);
 | |
| 			explain();
 | |
| 			return -1;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| static int ingress_print_opt(struct qdisc_util *qu, FILE *f,
 | |
| 			     struct rtattr *opt)
 | |
| {
 | |
| 	fprintf(f, "---------------- ");
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| struct qdisc_util ingress_qdisc_util = {
 | |
| 	.id		= "ingress",
 | |
| 	.parse_qopt	= ingress_parse_opt,
 | |
| 	.print_qopt	= ingress_print_opt,
 | |
| };
 |