[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20170613.173148.122804103598927680.davem@davemloft.net>
Date: Tue, 13 Jun 2017 17:31:48 -0400 (EDT)
From: David Miller <davem@...emloft.net>
To: brakmo@...com
Cc: netdev@...r.kernel.org, kernel-team@...com, bmatheny@...com,
ast@...com, daniel@...earbox.net, dsa@...ulusnetworks.com
Subject: Re: [RFC PATCH net-next 13/15] bpf: Sample BPF program to set
initial cwnd
From: Lawrence Brakmo <brakmo@...com>
Date: Tue, 13 Jun 2017 11:00:02 -0700
> +SEC("sockops")
> +int bpf_iw(struct __sk_buff *skb)
> +{
> + struct bpf_socket_ops *skops = (struct bpf_socket_ops *) skb;
> + char fmt1[] = "BPF command: %d\n";
> + char fmt2[] = " Returning %d\n";
> + int op;
> + int rv = 0;
> + int rwnd_init = 40;
> + int iw = 40;
> + int bufsize = 1500000;
> +
> + // For testing purposes, only execute rest of BPF program
> + // if neither port numberis 55601
Local variable ordering and C++ comments.
Powered by blists - more mailing lists