diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-04-23 18:35:35 -0400 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-05-29 19:06:16 +0000 | 
| commit | 21ccc0cf24f80b7b75815dba3da308f6bae70492 (patch) | |
| tree | 6bf49b5128524f5d7e1d5a39be34d44d70a5a211 /zebra/zebra_pw.c | |
| parent | f2efe6a3ebfd77524d47b592152199c5da922c13 (diff) | |
zebra: refactor zserv names, consolidate events
* Add centralized thread scheduling dispatchers for client threads and
  the main thread
* Rename everything in zserv.c to stop using a combination of:
  - zebra_server_*
  - zebra_*
  - zserv_*
  Everything in zserv.c now begins with zserv_*.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_pw.c')
| -rw-r--r-- | zebra/zebra_pw.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_pw.c b/zebra/zebra_pw.c index 28e09fe193..bf76f7e86b 100644 --- a/zebra/zebra_pw.c +++ b/zebra/zebra_pw.c @@ -292,7 +292,7 @@ void zebra_pw_init(struct zebra_vrf *zvrf)  	RB_INIT(zebra_pw_head, &zvrf->pseudowires);  	RB_INIT(zebra_static_pw_head, &zvrf->static_pseudowires); -	hook_register(zapi_client_close, zebra_pw_client_close); +	hook_register(zserv_client_close, zebra_pw_client_close);  }  void zebra_pw_exit(struct zebra_vrf *zvrf)  | 
