Skip to content

Commit

Permalink
af_unix: remove 0 assignment on static
Browse files Browse the repository at this point in the history
static values are automatically initialized to 0

Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Fabian Frederick authored and davem330 committed Oct 7, 2014
1 parent ea85a0a commit 505e907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/unix/garbage.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ static void inc_inflight_move_tail(struct unix_sock *u)
list_move_tail(&u->link, &gc_candidates);
}

static bool gc_in_progress = false;
static bool gc_in_progress;
#define UNIX_INFLIGHT_TRIGGER_GC 16000

void wait_for_unix_gc(void)
Expand Down

0 comments on commit 505e907

Please sign in to comment.