]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commitc4b3e33d27ea5e8075e57ebc556fc1b079cb2192
tree32ccd2ea3d2ca5833c7181123d4d878068ff22d5
parent5b3955ceb1e033ddc322a216b09b09c0a3c6c609
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