You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
776 B

  1. From c27232c954cdbe0207252ad88fddad4fd6ac0fbc Mon Sep 17 00:00:00 2001
  2. From: Helmut Schaa <helmut.schaa@googlemail.com>
  3. Date: Wed, 8 Jan 2014 13:48:33 +0100
  4. Subject: [PATCH 100/104] netdev-linux: Use unsigned int for ifi_flags
  5. ifi_flags is unsigned, the local equivalents should do the same.
  6. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
  7. ---
  8. lib/netdev-linux.c | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10. --- a/lib/netdev-linux.c
  11. +++ b/lib/netdev-linux.c
  12. @@ -2810,7 +2810,7 @@ update_flags(struct netdev_linux *netdev
  13. enum netdev_flags on, enum netdev_flags *old_flagsp)
  14. OVS_REQUIRES(netdev->mutex)
  15. {
  16. - int old_flags, new_flags;
  17. + unsigned int old_flags, new_flags;
  18. int error = 0;
  19. old_flags = netdev->ifi_flags;