Skip to content

Commit

Permalink
teamd: add "extern" to global runner structs
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
  • Loading branch information
jpirko committed May 10, 2013
1 parent e335c5c commit e43094e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions teamd/teamd.h
Expand Up @@ -213,12 +213,12 @@ int teamd_loop_callback_disable(struct teamd_context *ctx, const char *cb_name,
void teamd_run_loop_restart(struct teamd_context *ctx);

/* Runner structures */
const struct teamd_runner teamd_runner_broadcast;
const struct teamd_runner teamd_runner_roundrobin;
const struct teamd_runner teamd_runner_random;
const struct teamd_runner teamd_runner_activebackup;
const struct teamd_runner teamd_runner_loadbalance;
const struct teamd_runner teamd_runner_lacp;
extern const struct teamd_runner teamd_runner_broadcast;
extern const struct teamd_runner teamd_runner_roundrobin;
extern const struct teamd_runner teamd_runner_random;
extern const struct teamd_runner teamd_runner_activebackup;
extern const struct teamd_runner teamd_runner_loadbalance;
extern const struct teamd_runner teamd_runner_lacp;

struct teamd_port_priv {
int (*init)(struct teamd_context *ctx, struct teamd_port *tdport,
Expand Down

0 comments on commit e43094e

Please sign in to comment.