diff options
| author | Russ White <russ@riw.us> | 2022-03-15 19:58:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-15 19:58:16 -0400 |
| commit | 5d97021ba36666884c7caed69e3565e01f73eaf5 (patch) | |
| tree | d27dc8e34ceee6c63b333c91f8c57a7a95ecbe67 /zebra/zebra_errors.c | |
| parent | b975463458958856a94c4763dbf00fb582353c11 (diff) | |
| parent | 47c1d76a6c79fb0460a7079f9e24228bc9052877 (diff) | |
Merge pull request #10427 from sworleys/Protodown-Reason-Upstream
Add Support for Setting Protodown Reason Code
Diffstat (limited to 'zebra/zebra_errors.c')
| -rw-r--r-- | zebra/zebra_errors.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/zebra/zebra_errors.c b/zebra/zebra_errors.c index c3890f7220..7549a3d5c0 100644 --- a/zebra/zebra_errors.c +++ b/zebra/zebra_errors.c @@ -792,6 +792,15 @@ static struct log_ref ferr_zebra_err[] = { .suggestion = "Ignore this error.", }, { + .code = EC_ZEBRA_INTF_UPDATE_FAILURE, + .title = + "Zebra failed to update interface in the kernel", + .description = + "Zebra made an attempt to update an interfce in the kernel, but it was not successful.", + .suggestion = + "Wait for Zebra to reattempt update.", + }, + { .code = END_FERR, } }; |
