mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 07:08:07 +00:00
bpf_dbg: do not initialise statics to 0
This patch fixes the checkpatch.pl error to bpf_dbg.c: ERROR: do not initialise statics to 0 Signed-off-by: Wei Tang <tangwei@cmss.chinamobile.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
dc599f76c2
commit
1490d2bd1b
1 changed files with 5 additions and 5 deletions
|
@ -129,16 +129,16 @@ struct bpf_regs {
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct sock_filter bpf_image[BPF_MAXINSNS + 1];
|
static struct sock_filter bpf_image[BPF_MAXINSNS + 1];
|
||||||
static unsigned int bpf_prog_len = 0;
|
static unsigned int bpf_prog_len;
|
||||||
|
|
||||||
static int bpf_breakpoints[64];
|
static int bpf_breakpoints[64];
|
||||||
static struct bpf_regs bpf_regs[BPF_MAXINSNS + 1];
|
static struct bpf_regs bpf_regs[BPF_MAXINSNS + 1];
|
||||||
static struct bpf_regs bpf_curr;
|
static struct bpf_regs bpf_curr;
|
||||||
static unsigned int bpf_regs_len = 0;
|
static unsigned int bpf_regs_len;
|
||||||
|
|
||||||
static int pcap_fd = -1;
|
static int pcap_fd = -1;
|
||||||
static unsigned int pcap_packet = 0;
|
static unsigned int pcap_packet;
|
||||||
static size_t pcap_map_size = 0;
|
static size_t pcap_map_size;
|
||||||
static char *pcap_ptr_va_start, *pcap_ptr_va_curr;
|
static char *pcap_ptr_va_start, *pcap_ptr_va_curr;
|
||||||
|
|
||||||
static const char * const op_table[] = {
|
static const char * const op_table[] = {
|
||||||
|
@ -1172,7 +1172,7 @@ static int cmd_breakpoint(char *subcmd)
|
||||||
|
|
||||||
static int cmd_run(char *num)
|
static int cmd_run(char *num)
|
||||||
{
|
{
|
||||||
static uint32_t pass = 0, fail = 0;
|
static uint32_t pass, fail;
|
||||||
bool has_limit = true;
|
bool has_limit = true;
|
||||||
int pkts = 0, i = 0;
|
int pkts = 0, i = 0;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue