diff options
Diffstat (limited to 'fs/afs/dynroot.c')
| -rw-r--r-- | fs/afs/dynroot.c | 11 | 
1 files changed, 3 insertions, 8 deletions
diff --git a/fs/afs/dynroot.c b/fs/afs/dynroot.c index a9ba81ddf154..9b3b2f1f1fc0 100644 --- a/fs/afs/dynroot.c +++ b/fs/afs/dynroot.c @@ -1,12 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later  /* AFS dynamic root handling   *   * Copyright (C) 2018 Red Hat, Inc. All Rights Reserved.   * Written by David Howells ([email protected]) - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public Licence - * as published by the Free Software Foundation; either version - * 2 of the Licence, or (at your option) any later version.   */  #include <linux/fs.h> @@ -46,7 +42,7 @@ static int afs_probe_cell_name(struct dentry *dentry)  		return 0;  	} -	ret = dns_query("afsdb", name, len, "srv=1", NULL, NULL); +	ret = dns_query("afsdb", name, len, "srv=1", NULL, NULL, false);  	if (ret == -ENODATA)  		ret = -EDESTADDRREQ;  	return ret; @@ -261,8 +257,7 @@ int afs_dynroot_populate(struct super_block *sb)  	struct afs_net *net = afs_sb2net(sb);  	int ret; -	if (mutex_lock_interruptible(&net->proc_cells_lock) < 0) -		return -ERESTARTSYS; +	mutex_lock(&net->proc_cells_lock);  	net->dynroot_sb = sb;  	hlist_for_each_entry(cell, &net->proc_cells, proc_link) {  |