Commit 7d351035 authored by Rusty Russell's avatar Rusty Russell

param: lock myri10ge_fw_name against sysfs changes.

Since it can be changed via sysfs, we need to make a copy.  This most
generic way of doing this is to keep a flag so we know when to free it.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
Reviewed-by: default avatarTakashi Iwai <tiwai@suse.de>
Cc: Andrew Gallatin <gallatin@myri.com>
Cc: Brice Goglin <brice@myri.com>
Cc: netdev@vger.kernel.org
parent d6d1b650
...@@ -239,6 +239,7 @@ struct myri10ge_priv { ...@@ -239,6 +239,7 @@ struct myri10ge_priv {
int watchdog_resets; int watchdog_resets;
int watchdog_pause; int watchdog_pause;
int pause; int pause;
bool fw_name_allocated;
char *fw_name; char *fw_name;
char eeprom_strings[MYRI10GE_EEPROM_STRINGS_SIZE]; char eeprom_strings[MYRI10GE_EEPROM_STRINGS_SIZE];
char *product_code_string; char *product_code_string;
...@@ -271,6 +272,7 @@ MODULE_FIRMWARE("myri10ge_eth_z8e.dat"); ...@@ -271,6 +272,7 @@ MODULE_FIRMWARE("myri10ge_eth_z8e.dat");
MODULE_FIRMWARE("myri10ge_rss_ethp_z8e.dat"); MODULE_FIRMWARE("myri10ge_rss_ethp_z8e.dat");
MODULE_FIRMWARE("myri10ge_rss_eth_z8e.dat"); MODULE_FIRMWARE("myri10ge_rss_eth_z8e.dat");
/* Careful: must be accessed under kparam_block_sysfs_write */
static char *myri10ge_fw_name = NULL; static char *myri10ge_fw_name = NULL;
module_param(myri10ge_fw_name, charp, S_IRUGO | S_IWUSR); module_param(myri10ge_fw_name, charp, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(myri10ge_fw_name, "Firmware image name"); MODULE_PARM_DESC(myri10ge_fw_name, "Firmware image name");
...@@ -376,6 +378,14 @@ static inline void put_be32(__be32 val, __be32 __iomem * p) ...@@ -376,6 +378,14 @@ static inline void put_be32(__be32 val, __be32 __iomem * p)
static struct net_device_stats *myri10ge_get_stats(struct net_device *dev); static struct net_device_stats *myri10ge_get_stats(struct net_device *dev);
static void set_fw_name(struct myri10ge_priv *mgp, char *name, bool allocated)
{
if (mgp->fw_name_allocated)
kfree(mgp->fw_name);
mgp->fw_name = name;
mgp->fw_name_allocated = allocated;
}
static int static int
myri10ge_send_cmd(struct myri10ge_priv *mgp, u32 cmd, myri10ge_send_cmd(struct myri10ge_priv *mgp, u32 cmd,
struct myri10ge_cmd *data, int atomic) struct myri10ge_cmd *data, int atomic)
...@@ -747,7 +757,7 @@ static int myri10ge_load_firmware(struct myri10ge_priv *mgp, int adopt) ...@@ -747,7 +757,7 @@ static int myri10ge_load_firmware(struct myri10ge_priv *mgp, int adopt)
dev_warn(&mgp->pdev->dev, "via hotplug\n"); dev_warn(&mgp->pdev->dev, "via hotplug\n");
} }
mgp->fw_name = "adopted"; set_fw_name(mgp, "adopted", false);
mgp->tx_boundary = 2048; mgp->tx_boundary = 2048;
myri10ge_dummy_rdma(mgp, 1); myri10ge_dummy_rdma(mgp, 1);
status = myri10ge_get_firmware_capabilities(mgp); status = myri10ge_get_firmware_capabilities(mgp);
...@@ -3233,7 +3243,7 @@ static void myri10ge_firmware_probe(struct myri10ge_priv *mgp) ...@@ -3233,7 +3243,7 @@ static void myri10ge_firmware_probe(struct myri10ge_priv *mgp)
* load the optimized firmware (which assumes aligned PCIe * load the optimized firmware (which assumes aligned PCIe
* completions) in order to see if it works on this host. * completions) in order to see if it works on this host.
*/ */
mgp->fw_name = myri10ge_fw_aligned; set_fw_name(mgp, myri10ge_fw_aligned, false);
status = myri10ge_load_firmware(mgp, 1); status = myri10ge_load_firmware(mgp, 1);
if (status != 0) { if (status != 0) {
goto abort; goto abort;
...@@ -3261,7 +3271,7 @@ static void myri10ge_firmware_probe(struct myri10ge_priv *mgp) ...@@ -3261,7 +3271,7 @@ static void myri10ge_firmware_probe(struct myri10ge_priv *mgp)
abort: abort:
/* fall back to using the unaligned firmware */ /* fall back to using the unaligned firmware */
mgp->tx_boundary = 2048; mgp->tx_boundary = 2048;
mgp->fw_name = myri10ge_fw_unaligned; set_fw_name(mgp, myri10ge_fw_unaligned, false);
} }
...@@ -3284,7 +3294,7 @@ static void myri10ge_select_firmware(struct myri10ge_priv *mgp) ...@@ -3284,7 +3294,7 @@ static void myri10ge_select_firmware(struct myri10ge_priv *mgp)
dev_info(&mgp->pdev->dev, "PCIE x%d Link\n", dev_info(&mgp->pdev->dev, "PCIE x%d Link\n",
link_width); link_width);
mgp->tx_boundary = 4096; mgp->tx_boundary = 4096;
mgp->fw_name = myri10ge_fw_aligned; set_fw_name(mgp, myri10ge_fw_aligned, false);
} else { } else {
myri10ge_firmware_probe(mgp); myri10ge_firmware_probe(mgp);
} }
...@@ -3293,22 +3303,29 @@ static void myri10ge_select_firmware(struct myri10ge_priv *mgp) ...@@ -3293,22 +3303,29 @@ static void myri10ge_select_firmware(struct myri10ge_priv *mgp)
dev_info(&mgp->pdev->dev, dev_info(&mgp->pdev->dev,
"Assuming aligned completions (forced)\n"); "Assuming aligned completions (forced)\n");
mgp->tx_boundary = 4096; mgp->tx_boundary = 4096;
mgp->fw_name = myri10ge_fw_aligned; set_fw_name(mgp, myri10ge_fw_aligned, false);
} else { } else {
dev_info(&mgp->pdev->dev, dev_info(&mgp->pdev->dev,
"Assuming unaligned completions (forced)\n"); "Assuming unaligned completions (forced)\n");
mgp->tx_boundary = 2048; mgp->tx_boundary = 2048;
mgp->fw_name = myri10ge_fw_unaligned; set_fw_name(mgp, myri10ge_fw_unaligned, false);
} }
} }
kparam_block_sysfs_write(myri10ge_fw_name);
if (myri10ge_fw_name != NULL) { if (myri10ge_fw_name != NULL) {
overridden = 1; char *fw_name = kstrdup(myri10ge_fw_name, GFP_KERNEL);
mgp->fw_name = myri10ge_fw_name; if (fw_name) {
overridden = 1;
set_fw_name(mgp, fw_name, true);
}
} }
kparam_unblock_sysfs_write(myri10ge_fw_name);
if (mgp->board_number < MYRI10GE_MAX_BOARDS && if (mgp->board_number < MYRI10GE_MAX_BOARDS &&
myri10ge_fw_names[mgp->board_number] != NULL && myri10ge_fw_names[mgp->board_number] != NULL &&
strlen(myri10ge_fw_names[mgp->board_number])) { strlen(myri10ge_fw_names[mgp->board_number])) {
mgp->fw_name = myri10ge_fw_names[mgp->board_number]; set_fw_name(mgp, myri10ge_fw_names[mgp->board_number], false);
overridden = 1; overridden = 1;
} }
if (overridden) if (overridden)
...@@ -3660,6 +3677,7 @@ static void myri10ge_probe_slices(struct myri10ge_priv *mgp) ...@@ -3660,6 +3677,7 @@ static void myri10ge_probe_slices(struct myri10ge_priv *mgp)
struct myri10ge_cmd cmd; struct myri10ge_cmd cmd;
struct pci_dev *pdev = mgp->pdev; struct pci_dev *pdev = mgp->pdev;
char *old_fw; char *old_fw;
bool old_allocated;
int i, status, ncpus, msix_cap; int i, status, ncpus, msix_cap;
mgp->num_slices = 1; mgp->num_slices = 1;
...@@ -3672,17 +3690,23 @@ static void myri10ge_probe_slices(struct myri10ge_priv *mgp) ...@@ -3672,17 +3690,23 @@ static void myri10ge_probe_slices(struct myri10ge_priv *mgp)
/* try to load the slice aware rss firmware */ /* try to load the slice aware rss firmware */
old_fw = mgp->fw_name; old_fw = mgp->fw_name;
old_allocated = mgp->fw_name_allocated;
/* don't free old_fw if we override it. */
mgp->fw_name_allocated = false;
if (myri10ge_fw_name != NULL) { if (myri10ge_fw_name != NULL) {
dev_info(&mgp->pdev->dev, "overriding rss firmware to %s\n", dev_info(&mgp->pdev->dev, "overriding rss firmware to %s\n",
myri10ge_fw_name); myri10ge_fw_name);
mgp->fw_name = myri10ge_fw_name; set_fw_name(mgp, myri10ge_fw_name, false);
} else if (old_fw == myri10ge_fw_aligned) } else if (old_fw == myri10ge_fw_aligned)
mgp->fw_name = myri10ge_fw_rss_aligned; set_fw_name(mgp, myri10ge_fw_rss_aligned, false);
else else
mgp->fw_name = myri10ge_fw_rss_unaligned; set_fw_name(mgp, myri10ge_fw_rss_unaligned, false);
status = myri10ge_load_firmware(mgp, 0); status = myri10ge_load_firmware(mgp, 0);
if (status != 0) { if (status != 0) {
dev_info(&pdev->dev, "Rss firmware not found\n"); dev_info(&pdev->dev, "Rss firmware not found\n");
if (old_allocated)
kfree(old_fw);
return; return;
} }
...@@ -3747,6 +3771,8 @@ static void myri10ge_probe_slices(struct myri10ge_priv *mgp) ...@@ -3747,6 +3771,8 @@ static void myri10ge_probe_slices(struct myri10ge_priv *mgp)
mgp->num_slices); mgp->num_slices);
if (status == 0) { if (status == 0) {
pci_disable_msix(pdev); pci_disable_msix(pdev);
if (old_allocated)
kfree(old_fw);
return; return;
} }
if (status > 0) if (status > 0)
...@@ -3763,7 +3789,7 @@ static void myri10ge_probe_slices(struct myri10ge_priv *mgp) ...@@ -3763,7 +3789,7 @@ static void myri10ge_probe_slices(struct myri10ge_priv *mgp)
abort_with_fw: abort_with_fw:
mgp->num_slices = 1; mgp->num_slices = 1;
mgp->fw_name = old_fw; set_fw_name(mgp, old_fw, old_allocated);
myri10ge_load_firmware(mgp, 0); myri10ge_load_firmware(mgp, 0);
} }
...@@ -3993,6 +4019,7 @@ static int myri10ge_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -3993,6 +4019,7 @@ static int myri10ge_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
pci_disable_device(pdev); pci_disable_device(pdev);
abort_with_netdev: abort_with_netdev:
set_fw_name(mgp, NULL, false);
free_netdev(netdev); free_netdev(netdev);
return status; return status;
} }
...@@ -4037,6 +4064,7 @@ static void myri10ge_remove(struct pci_dev *pdev) ...@@ -4037,6 +4064,7 @@ static void myri10ge_remove(struct pci_dev *pdev)
dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd), dma_free_coherent(&pdev->dev, sizeof(*mgp->cmd),
mgp->cmd, mgp->cmd_bus); mgp->cmd, mgp->cmd_bus);
set_fw_name(mgp, NULL, false);
free_netdev(netdev); free_netdev(netdev);
pci_disable_device(pdev); pci_disable_device(pdev);
pci_set_drvdata(pdev, NULL); pci_set_drvdata(pdev, NULL);
......
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