X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Fptlrpc%2Fconnection.c;h=d894b7311ea5c89c9507db81fa5617b9473ef589;hb=d821adb626e050206f1b4605f1159cf65ad22af5;hp=77b48ef42b7070f14d5e34454b3957d9e3c7823d;hpb=f95393b0d0a59cf3dc2f29cffc35dcc4cc9d7728;p=fs%2Flustre-release.git diff --git a/lustre/ptlrpc/connection.c b/lustre/ptlrpc/connection.c index 77b48ef..d894b73 100644 --- a/lustre/ptlrpc/connection.c +++ b/lustre/ptlrpc/connection.c @@ -1,6 +1,4 @@ -/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- - * vim:expandtab:shiftwidth=8:tabstop=8: - * +/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -28,6 +26,8 @@ /* * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. + * + * Copyright (c) 2011, Intel Corporation. */ /* * This file is part of Lustre, http://www.lustre.org/ @@ -76,6 +76,9 @@ ptlrpc_connection_get(lnet_process_id_t peer, lnet_nid_t self, * connection. The object which exists in the has will be * returned and may be compared against out object. */ + /* In the function below, .hs_keycmp resolves to + * conn_keycmp() */ + /* coverity[overrun-buffer-val] */ conn2 = cfs_hash_findadd_unique(conn_hash, &peer, &conn->c_hash); if (conn != conn2) { OBD_FREE_PTR(conn); @@ -88,6 +91,7 @@ out: libcfs_nid2str(conn->c_peer.nid)); return conn; } +EXPORT_SYMBOL(ptlrpc_connection_get); int ptlrpc_connection_put(struct ptlrpc_connection *conn) { @@ -97,7 +101,7 @@ int ptlrpc_connection_put(struct ptlrpc_connection *conn) if (!conn) RETURN(rc); - LASSERT(!cfs_hlist_unhashed(&conn->c_hash)); + LASSERT(cfs_atomic_read(&conn->c_refcount) > 1); /* * We do not remove connection from hashtable and @@ -124,6 +128,7 @@ int ptlrpc_connection_put(struct ptlrpc_connection *conn) RETURN(rc); } +EXPORT_SYMBOL(ptlrpc_connection_put); struct ptlrpc_connection * ptlrpc_connection_addref(struct ptlrpc_connection *conn) @@ -137,6 +142,7 @@ ptlrpc_connection_addref(struct ptlrpc_connection *conn) RETURN(conn); } +EXPORT_SYMBOL(ptlrpc_connection_addref); int ptlrpc_connection_init(void) { @@ -145,33 +151,38 @@ int ptlrpc_connection_init(void) conn_hash = cfs_hash_create("CONN_HASH", HASH_CONN_CUR_BITS, HASH_CONN_MAX_BITS, - &conn_hash_ops, CFS_HASH_REHASH); + HASH_CONN_BKT_BITS, 0, + CFS_HASH_MIN_THETA, + CFS_HASH_MAX_THETA, + &conn_hash_ops, CFS_HASH_DEFAULT); if (!conn_hash) RETURN(-ENOMEM); RETURN(0); } +EXPORT_SYMBOL(ptlrpc_connection_init); void ptlrpc_connection_fini(void) { ENTRY; cfs_hash_putref(conn_hash); EXIT; } +EXPORT_SYMBOL(ptlrpc_connection_fini); /* * Hash operations for net_peer<->connection */ static unsigned -conn_hashfn(cfs_hash_t *hs, void *key, unsigned mask) +conn_hashfn(cfs_hash_t *hs, const void *key, unsigned mask) { return cfs_hash_djb2_hash(key, sizeof(lnet_process_id_t), mask); } static int -conn_compare(void *key, cfs_hlist_node_t *hnode) +conn_keycmp(const void *key, cfs_hlist_node_t *hnode) { struct ptlrpc_connection *conn; - lnet_process_id_t *conn_key; + const lnet_process_id_t *conn_key; LASSERT(key != NULL); conn_key = (lnet_process_id_t*)key; @@ -190,29 +201,31 @@ conn_key(cfs_hlist_node_t *hnode) } static void * -conn_get(cfs_hlist_node_t *hnode) +conn_object(cfs_hlist_node_t *hnode) +{ + return cfs_hlist_entry(hnode, struct ptlrpc_connection, c_hash); +} + +static void +conn_get(cfs_hash_t *hs, cfs_hlist_node_t *hnode) { struct ptlrpc_connection *conn; conn = cfs_hlist_entry(hnode, struct ptlrpc_connection, c_hash); cfs_atomic_inc(&conn->c_refcount); - - return conn; } -static void * -conn_put(cfs_hlist_node_t *hnode) +static void +conn_put_locked(cfs_hash_t *hs, cfs_hlist_node_t *hnode) { struct ptlrpc_connection *conn; conn = cfs_hlist_entry(hnode, struct ptlrpc_connection, c_hash); cfs_atomic_dec(&conn->c_refcount); - - return conn; } static void -conn_exit(cfs_hlist_node_t *hnode) +conn_exit(cfs_hash_t *hs, cfs_hlist_node_t *hnode) { struct ptlrpc_connection *conn; @@ -229,10 +242,11 @@ conn_exit(cfs_hlist_node_t *hnode) } static cfs_hash_ops_t conn_hash_ops = { - .hs_hash = conn_hashfn, - .hs_compare = conn_compare, - .hs_key = conn_key, - .hs_get = conn_get, - .hs_put = conn_put, - .hs_exit = conn_exit, + .hs_hash = conn_hashfn, + .hs_keycmp = conn_keycmp, + .hs_key = conn_key, + .hs_object = conn_object, + .hs_get = conn_get, + .hs_put_locked = conn_put_locked, + .hs_exit = conn_exit, };