Commit 37205819 authored by David Howells's avatar David Howells

rxrpc: Rename ar-error.c to peer-event.c

Rename ar-error.c to peer-event.c.  This will form the core of the peer
event handling code.
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parent 18d35a71
...@@ -9,7 +9,6 @@ af-rxrpc-y := \ ...@@ -9,7 +9,6 @@ af-rxrpc-y := \
ar-call.o \ ar-call.o \
ar-connection.o \ ar-connection.o \
ar-connevent.o \ ar-connevent.o \
ar-error.o \
ar-input.o \ ar-input.o \
ar-key.o \ ar-key.o \
ar-output.o \ ar-output.o \
...@@ -20,6 +19,7 @@ af-rxrpc-y := \ ...@@ -20,6 +19,7 @@ af-rxrpc-y := \
local-event.o \ local-event.o \
local-object.o \ local-object.o \
objcache.o \ objcache.o \
peer-event.o \
peer-object.o \ peer-object.o \
utils.o utils.o
......
...@@ -578,12 +578,6 @@ void rxrpc_process_connection(struct work_struct *); ...@@ -578,12 +578,6 @@ void rxrpc_process_connection(struct work_struct *);
void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *); void rxrpc_reject_packet(struct rxrpc_local *, struct sk_buff *);
void rxrpc_reject_packets(struct work_struct *); void rxrpc_reject_packets(struct work_struct *);
/*
* ar-error.c
*/
void rxrpc_UDP_error_report(struct sock *);
void rxrpc_UDP_error_handler(struct work_struct *);
/* /*
* ar-input.c * ar-input.c
*/ */
...@@ -684,6 +678,12 @@ static inline void rxrpc_put_local(struct rxrpc_local *local) ...@@ -684,6 +678,12 @@ static inline void rxrpc_put_local(struct rxrpc_local *local)
objcache_put(&rxrpc_local_cache, &local->obj); objcache_put(&rxrpc_local_cache, &local->obj);
} }
/*
* peer-event.c
*/
void rxrpc_UDP_error_report(struct sock *);
void rxrpc_UDP_error_handler(struct work_struct *);
/* /*
* peer-object.c * peer-object.c
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment