]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
s390/qeth: add wrapper for IP table access
authorJulian Wiedmann <jwi@linux.ibm.com>
Thu, 28 Mar 2019 15:39:21 +0000 (16:39 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 28 Mar 2019 19:57:24 +0000 (12:57 -0700)
Extract a little helper, so that high-level callers can manipulate the
IP table without worrying about the locking. This will make it easier
to convert the code to a different locking primitive later on.

Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/s390/net/qeth_l3_main.c

index 7e32edac627bf22b561044e2a2db9284286b83fe..509871b78313af63f2f12caa3d603dc78d4891ad 100644 (file)
@@ -268,6 +268,18 @@ static int qeth_l3_add_ip(struct qeth_card *card, struct qeth_ipaddr *tmp_addr)
        return rc;
 }
 
+static int qeth_l3_modify_ip(struct qeth_card *card, struct qeth_ipaddr *addr,
+                            bool add)
+{
+       int rc;
+
+       spin_lock_bh(&card->ip_lock);
+       rc = add ? qeth_l3_add_ip(card, addr) : qeth_l3_delete_ip(card, addr);
+       spin_unlock_bh(&card->ip_lock);
+
+       return rc;
+}
+
 static void qeth_l3_drain_rx_mode_cache(struct qeth_card *card)
 {
        struct qeth_ipaddr *addr;
@@ -636,7 +648,6 @@ int qeth_l3_modify_rxip_vipa(struct qeth_card *card, bool add, const u8 *ip,
                             enum qeth_prot_versions proto)
 {
        struct qeth_ipaddr addr;
-       int rc;
 
        qeth_l3_init_ipaddr(&addr, type, proto);
        if (proto == QETH_PROT_IPV4)
@@ -644,16 +655,13 @@ int qeth_l3_modify_rxip_vipa(struct qeth_card *card, bool add, const u8 *ip,
        else
                memcpy(&addr.u.a6.addr, ip, 16);
 
-       spin_lock_bh(&card->ip_lock);
-       rc = add ? qeth_l3_add_ip(card, &addr) : qeth_l3_delete_ip(card, &addr);
-       spin_unlock_bh(&card->ip_lock);
-       return rc;
+       return qeth_l3_modify_ip(card, &addr, add);
 }
 
 int qeth_l3_modify_hsuid(struct qeth_card *card, bool add)
 {
        struct qeth_ipaddr addr;
-       int rc, i;
+       unsigned int i;
 
        qeth_l3_init_ipaddr(&addr, QETH_IP_TYPE_NORMAL, QETH_PROT_IPV6);
        addr.u.a6.addr.s6_addr[0] = 0xfe;
@@ -661,10 +669,7 @@ int qeth_l3_modify_hsuid(struct qeth_card *card, bool add)
        for (i = 0; i < 8; i++)
                addr.u.a6.addr.s6_addr[8+i] = card->options.hsuid[i];
 
-       spin_lock_bh(&card->ip_lock);
-       rc = add ? qeth_l3_add_ip(card, &addr) : qeth_l3_delete_ip(card, &addr);
-       spin_unlock_bh(&card->ip_lock);
-       return rc;
+       return qeth_l3_modify_ip(card, &addr, add);
 }
 
 static int qeth_l3_register_addr_entry(struct qeth_card *card,
@@ -2527,14 +2532,10 @@ static int qeth_l3_handle_ip_event(struct qeth_card *card,
 {
        switch (event) {
        case NETDEV_UP:
-               spin_lock_bh(&card->ip_lock);
-               qeth_l3_add_ip(card, addr);
-               spin_unlock_bh(&card->ip_lock);
+               qeth_l3_modify_ip(card, addr, true);
                return NOTIFY_OK;
        case NETDEV_DOWN:
-               spin_lock_bh(&card->ip_lock);
-               qeth_l3_delete_ip(card, addr);
-               spin_unlock_bh(&card->ip_lock);
+               qeth_l3_modify_ip(card, addr, false);
                return NOTIFY_OK;
        default:
                return NOTIFY_DONE;