diff options
author | David Howells <dhowells@redhat.com> | 2016-04-04 15:00:32 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-06-15 11:14:37 +0200 |
commit | abe89ef0ed1a50ef6186d9aee433b995641a1293 (patch) | |
tree | 2f352ccd254938b8488b2f2c529a4ec9a4884c4e /net/rxrpc/local_object.c | |
parent | rxrpc: Rework peer object handling to use hash table and RCU (diff) | |
download | linux-abe89ef0ed1a50ef6186d9aee433b995641a1293.tar.xz linux-abe89ef0ed1a50ef6186d9aee433b995641a1293.zip |
rxrpc: Rename rxrpc_UDP_error_report() to rxrpc_error_report()
Rename rxrpc_UDP_error_report() to rxrpc_error_report() as it might get
called for something other than UDP.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/local_object.c')
-rw-r--r-- | net/rxrpc/local_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/local_object.c b/net/rxrpc/local_object.c index 111f250b045f..28f9efb3118f 100644 --- a/net/rxrpc/local_object.c +++ b/net/rxrpc/local_object.c @@ -120,7 +120,7 @@ static int rxrpc_create_local(struct rxrpc_local *local) sock = local->socket->sk; sock->sk_user_data = local; sock->sk_data_ready = rxrpc_data_ready; - sock->sk_error_report = rxrpc_UDP_error_report; + sock->sk_error_report = rxrpc_error_report; _leave(" = 0"); return 0; |