afs: Fix cell specification to permit an empty address list
authorDavid Howells <dhowells@redhat.com>
Fri, 7 Sep 2018 22:55:17 +0000 (23:55 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 7 Sep 2018 23:39:44 +0000 (16:39 -0700)
commitecfe951f0c1b169ea4b7dd6f3a404dfedd795bc2
tree32ccd2ea3d2ca5833c7181123d4d878068ff22d5
parent3d0e7a9e00fd8f0de499ac3f57331d0d378304c4
afs: Fix cell specification to permit an empty address list

Fix the cell specification mechanism to allow cells to be pre-created
without having to specify at least one address (the addresses will be
upcalled for).

This allows the cell information preload service to avoid the need to issue
loads of DNS lookups during boot to get the addresses for each cell (500+
lookups for the 'standard' cell list[*]).  The lookups can be done later as
each cell is accessed through the filesystem.

Also remove the print statement that prints a line every time a new cell is
added.

[*] There are 144 cells in the list.  Each cell is first looked up for an
    SRV record, and if that fails, for an AFSDB record.  These get a list
    of server names, each of which then has to be looked up to get the
    addresses for that server.  E.g.:

dig srv _afs3-vlserver._udp.grand.central.org

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/afs/proc.c