Commit edbcf872 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: seq: core: Use automatic cleanup of kfree()

There are common patterns where a temporary buffer is allocated and
freed at the exit, and those can be simplified with the recent cleanup
mechanism via __free(kfree).

No functional changes, only code refactoring.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Link: https://lore.kernel.org/r/20240222111509.28390-10-tiwai@suse.de
parent 316e38ef
...@@ -31,8 +31,8 @@ struct snd_seq_port_info32 { ...@@ -31,8 +31,8 @@ struct snd_seq_port_info32 {
static int snd_seq_call_port_info_ioctl(struct snd_seq_client *client, unsigned int cmd, static int snd_seq_call_port_info_ioctl(struct snd_seq_client *client, unsigned int cmd,
struct snd_seq_port_info32 __user *data32) struct snd_seq_port_info32 __user *data32)
{ {
int err = -EFAULT; struct snd_seq_port_info *data __free(kfree) = NULL;
struct snd_seq_port_info *data; int err;
data = kmalloc(sizeof(*data), GFP_KERNEL); data = kmalloc(sizeof(*data), GFP_KERNEL);
if (!data) if (!data)
...@@ -41,20 +41,18 @@ static int snd_seq_call_port_info_ioctl(struct snd_seq_client *client, unsigned ...@@ -41,20 +41,18 @@ static int snd_seq_call_port_info_ioctl(struct snd_seq_client *client, unsigned
if (copy_from_user(data, data32, sizeof(*data32)) || if (copy_from_user(data, data32, sizeof(*data32)) ||
get_user(data->flags, &data32->flags) || get_user(data->flags, &data32->flags) ||
get_user(data->time_queue, &data32->time_queue)) get_user(data->time_queue, &data32->time_queue))
goto error; return -EFAULT;
data->kernel = NULL; data->kernel = NULL;
err = snd_seq_kernel_client_ctl(client->number, cmd, data); err = snd_seq_kernel_client_ctl(client->number, cmd, data);
if (err < 0) if (err < 0)
goto error; return err;
if (copy_to_user(data32, data, sizeof(*data32)) || if (copy_to_user(data32, data, sizeof(*data32)) ||
put_user(data->flags, &data32->flags) || put_user(data->flags, &data32->flags) ||
put_user(data->time_queue, &data32->time_queue)) put_user(data->time_queue, &data32->time_queue))
err = -EFAULT; return -EFAULT;
error:
kfree(data);
return err; return err;
} }
......
...@@ -270,8 +270,8 @@ snd_seq_midisynth_probe(struct device *_dev) ...@@ -270,8 +270,8 @@ snd_seq_midisynth_probe(struct device *_dev)
struct snd_seq_device *dev = to_seq_dev(_dev); struct snd_seq_device *dev = to_seq_dev(_dev);
struct seq_midisynth_client *client; struct seq_midisynth_client *client;
struct seq_midisynth *msynth, *ms; struct seq_midisynth *msynth, *ms;
struct snd_seq_port_info *port; struct snd_seq_port_info *port __free(kfree) = NULL;
struct snd_rawmidi_info *info; struct snd_rawmidi_info *info __free(kfree) = NULL;
struct snd_rawmidi *rmidi = dev->private_data; struct snd_rawmidi *rmidi = dev->private_data;
int newclient = 0; int newclient = 0;
unsigned int p, ports; unsigned int p, ports;
...@@ -297,10 +297,8 @@ snd_seq_midisynth_probe(struct device *_dev) ...@@ -297,10 +297,8 @@ snd_seq_midisynth_probe(struct device *_dev)
ports = output_count; ports = output_count;
if (ports < input_count) if (ports < input_count)
ports = input_count; ports = input_count;
if (ports == 0) { if (ports == 0)
kfree(info);
return -ENODEV; return -ENODEV;
}
if (ports > (256 / SNDRV_RAWMIDI_DEVICES)) if (ports > (256 / SNDRV_RAWMIDI_DEVICES))
ports = 256 / SNDRV_RAWMIDI_DEVICES; ports = 256 / SNDRV_RAWMIDI_DEVICES;
...@@ -311,7 +309,6 @@ snd_seq_midisynth_probe(struct device *_dev) ...@@ -311,7 +309,6 @@ snd_seq_midisynth_probe(struct device *_dev)
client = kzalloc(sizeof(*client), GFP_KERNEL); client = kzalloc(sizeof(*client), GFP_KERNEL);
if (client == NULL) { if (client == NULL) {
mutex_unlock(&register_mutex); mutex_unlock(&register_mutex);
kfree(info);
return -ENOMEM; return -ENOMEM;
} }
client->seq_client = client->seq_client =
...@@ -321,7 +318,6 @@ snd_seq_midisynth_probe(struct device *_dev) ...@@ -321,7 +318,6 @@ snd_seq_midisynth_probe(struct device *_dev)
if (client->seq_client < 0) { if (client->seq_client < 0) {
kfree(client); kfree(client);
mutex_unlock(&register_mutex); mutex_unlock(&register_mutex);
kfree(info);
return -ENOMEM; return -ENOMEM;
} }
} }
...@@ -403,8 +399,6 @@ snd_seq_midisynth_probe(struct device *_dev) ...@@ -403,8 +399,6 @@ snd_seq_midisynth_probe(struct device *_dev)
if (newclient) if (newclient)
synths[card->number] = client; synths[card->number] = client;
mutex_unlock(&register_mutex); mutex_unlock(&register_mutex);
kfree(info);
kfree(port);
return 0; /* success */ return 0; /* success */
__nomem: __nomem:
...@@ -417,8 +411,6 @@ snd_seq_midisynth_probe(struct device *_dev) ...@@ -417,8 +411,6 @@ snd_seq_midisynth_probe(struct device *_dev)
snd_seq_delete_kernel_client(client->seq_client); snd_seq_delete_kernel_client(client->seq_client);
kfree(client); kfree(client);
} }
kfree(info);
kfree(port);
mutex_unlock(&register_mutex); mutex_unlock(&register_mutex);
return -ENOMEM; return -ENOMEM;
} }
......
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