diff options
Diffstat (limited to 'net/tipc')
| -rw-r--r-- | net/tipc/port.h | 5 | ||||
| -rw-r--r-- | net/tipc/socket.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/net/tipc/port.h b/net/tipc/port.h index 3f93454592b6..3087da39ee47 100644 --- a/net/tipc/port.h +++ b/net/tipc/port.h | |||
| @@ -179,9 +179,12 @@ static inline int tipc_port_importance(struct tipc_port *port) | |||
| 179 | return msg_importance(&port->phdr); | 179 | return msg_importance(&port->phdr); |
| 180 | } | 180 | } |
| 181 | 181 | ||
| 182 | static inline void tipc_port_set_importance(struct tipc_port *port, int imp) | 182 | static inline int tipc_port_set_importance(struct tipc_port *port, int imp) |
| 183 | { | 183 | { |
| 184 | if (imp > TIPC_CRITICAL_IMPORTANCE) | ||
| 185 | return -EINVAL; | ||
| 184 | msg_set_importance(&port->phdr, (u32)imp); | 186 | msg_set_importance(&port->phdr, (u32)imp); |
| 187 | return 0; | ||
| 185 | } | 188 | } |
| 186 | 189 | ||
| 187 | #endif | 190 | #endif |
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 7d423ee10897..ff8c8118d56e 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c | |||
| @@ -1973,7 +1973,7 @@ static int tipc_setsockopt(struct socket *sock, int lvl, int opt, | |||
| 1973 | 1973 | ||
| 1974 | switch (opt) { | 1974 | switch (opt) { |
| 1975 | case TIPC_IMPORTANCE: | 1975 | case TIPC_IMPORTANCE: |
| 1976 | tipc_port_set_importance(port, value); | 1976 | res = tipc_port_set_importance(port, value); |
| 1977 | break; | 1977 | break; |
| 1978 | case TIPC_SRC_DROPPABLE: | 1978 | case TIPC_SRC_DROPPABLE: |
| 1979 | if (sock->type != SOCK_STREAM) | 1979 | if (sock->type != SOCK_STREAM) |
