rxrpc: Rename files matching ar-*.c to git rid of the "ar-" prefix
authorDavid Howells <dhowells@redhat.com>
Mon, 13 Jun 2016 11:16:05 +0000 (12:16 +0100)
committerDavid Howells <dhowells@redhat.com>
Mon, 13 Jun 2016 11:16:05 +0000 (12:16 +0100)
commit8c3e34a4ff85142ca5dba3f18cbc2061899e2612
tree7e8098488c22da71b6a93296b182e29fe797ac3c
parent99860208bc62d8ebd5c57495b84856506fe075bc
rxrpc: Rename files matching ar-*.c to git rid of the "ar-" prefix

Rename files matching net/rxrpc/ar-*.c to get rid of the "ar-" prefix.
This will aid splitting those files by making easier to come up with new
names.

Note that the not all files are simply renamed from ar-X.c to X.c.  The
following exceptions are made:

 (*) ar-call.c -> call_object.c
     ar-ack.c -> call_event.c

     call_object.c is going to contain the core of the call object
     handling.  Call event handling is all going to be in call_event.c.

 (*) ar-accept.c -> call_accept.c

     Incoming call handling is going to be here.

 (*) ar-connection.c -> conn_object.c
     ar-connevent.c -> conn_event.c

     The former file is going to have the basic connection object handling,
     but there will likely be some differentiation between client
     connections and service connections in additional files later.  The
     latter file will have all the connection-level event handling.

 (*) ar-local.c -> local_object.c

     This will have the local endpoint object handling code.  The local
     endpoint event handling code will later be split out into
     local_event.c.

 (*) ar-peer.c -> peer_object.c

     This will have the peer endpoint object handling code.  Peer event
     handling code will be placed in peer_event.c (for the moment, there is
     none).

 (*) ar-error.c -> peer_event.c

     This will become the peer event handling code, though for the moment
     it's actually driven from the local endpoint's perspective.

Note that I haven't renamed ar-transport.c to transport_object.c as the
intention is to delete it when the rxrpc_transport struct is excised.

The only file that actually has its contents changed is net/rxrpc/Makefile.

net/rxrpc/ar-internal.h will need its section marker comments updating, but
I'll do that in a separate patch to make it easier for git to follow the
history across the rename.  I may also want to rename ar-internal.h at some
point - but that would mean updating all the #includes and I'd rather do
that in a separate step.

Signed-off-by: David Howells <dhowells@redhat.com.
33 files changed:
net/rxrpc/Makefile
net/rxrpc/ar-accept.c [deleted file]
net/rxrpc/ar-ack.c [deleted file]
net/rxrpc/ar-call.c [deleted file]
net/rxrpc/ar-connection.c [deleted file]
net/rxrpc/ar-connevent.c [deleted file]
net/rxrpc/ar-error.c [deleted file]
net/rxrpc/ar-input.c [deleted file]
net/rxrpc/ar-key.c [deleted file]
net/rxrpc/ar-local.c [deleted file]
net/rxrpc/ar-output.c [deleted file]
net/rxrpc/ar-peer.c [deleted file]
net/rxrpc/ar-proc.c [deleted file]
net/rxrpc/ar-recvmsg.c [deleted file]
net/rxrpc/ar-security.c [deleted file]
net/rxrpc/ar-skbuff.c [deleted file]
net/rxrpc/ar-transport.c [deleted file]
net/rxrpc/call_accept.c [new file with mode: 0644]
net/rxrpc/call_event.c [new file with mode: 0644]
net/rxrpc/call_object.c [new file with mode: 0644]
net/rxrpc/conn_event.c [new file with mode: 0644]
net/rxrpc/conn_object.c [new file with mode: 0644]
net/rxrpc/input.c [new file with mode: 0644]
net/rxrpc/key.c [new file with mode: 0644]
net/rxrpc/local_object.c [new file with mode: 0644]
net/rxrpc/output.c [new file with mode: 0644]
net/rxrpc/peer_event.c [new file with mode: 0644]
net/rxrpc/peer_object.c [new file with mode: 0644]
net/rxrpc/proc.c [new file with mode: 0644]
net/rxrpc/recvmsg.c [new file with mode: 0644]
net/rxrpc/security.c [new file with mode: 0644]
net/rxrpc/skbuff.c [new file with mode: 0644]
net/rxrpc/transport.c [new file with mode: 0644]