Re: [Zaurus-devel] [PATCH] hwmon: (max1111) Avoid extra memory allocations

2011-07-12 Thread Stanislav Brabec
Jean Delvare wrote:

> Can anyone with a MAX device try and report please?

MAX on spitz seems to work properly.

Tested-by: Stanislav Brabec 

-- 
Stanislav Brabec
http://www.penguin.cz/~utx


___
Zaurus-devel mailing list
Zaurus-devel@lists.linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/zaurus-devel


[Zaurus-devel] [PATCH] hwmon: (max1111) Avoid extra memory allocations

2011-07-12 Thread Jean Delvare
We can allocate the tx and rx buffers as part of our data structure.
Doing so is faster and spares memory.

Signed-off-by: Jean Delvare 
---
Can anyone with a MAX device try and report please?

 drivers/hwmon/max.c |   27 ++-
 1 file changed, 6 insertions(+), 21 deletions(-)

--- linux-3.0-rc6.orig/drivers/hwmon/max.c  2011-07-12 08:50:02.0 
+0200
+++ linux-3.0-rc6/drivers/hwmon/max.c   2011-07-12 09:36:51.0 
+0200
@@ -38,8 +38,8 @@ struct max_data {
struct device   *hwmon_dev;
struct spi_message  msg;
struct spi_transfer xfer[2];
-   uint8_t *tx_buf;
-   uint8_t *rx_buf;
+   uint8_t tx_buf[MAX_TX_BUF_SIZE];
+   uint8_t rx_buf[MAX_RX_BUF_SIZE];
struct mutexdrvdata_lock;
/* protect msg, xfer and buffers from multiple access */
 };
@@ -131,33 +131,23 @@ static const struct attribute_group max1
.attrs  = max_attributes,
 };
 
-static int setup_transfer(struct max_data *data)
+static int __devinit setup_transfer(struct max_data *data)
 {
struct spi_message *m;
struct spi_transfer *x;
 
-   data->tx_buf = kmalloc(MAX_TX_BUF_SIZE, GFP_KERNEL);
-   if (!data->tx_buf)
-   return -ENOMEM;
-
-   data->rx_buf = kmalloc(MAX_RX_BUF_SIZE, GFP_KERNEL);
-   if (!data->rx_buf) {
-   kfree(data->tx_buf);
-   return -ENOMEM;
-   }
-
m = &data->msg;
x = &data->xfer[0];
 
spi_message_init(m);
 
x->tx_buf = &data->tx_buf[0];
-   x->len = 1;
+   x->len = MAX_TX_BUF_SIZE;
spi_message_add_tail(x, m);
 
x++;
x->rx_buf = &data->rx_buf[0];
-   x->len = 2;
+   x->len = MAX_RX_BUF_SIZE;
spi_message_add_tail(x, m);
 
return 0;
@@ -192,7 +182,7 @@ static int __devinit max_probe(struc
err = sysfs_create_group(&spi->dev.kobj, &max_attr_group);
if (err) {
dev_err(&spi->dev, "failed to create attribute group\n");
-   goto err_free_all;
+   goto err_free_data;
}
 
data->hwmon_dev = hwmon_device_register(&spi->dev);
@@ -209,9 +199,6 @@ static int __devinit max_probe(struc
 
 err_remove:
sysfs_remove_group(&spi->dev.kobj, &max_attr_group);
-err_free_all:
-   kfree(data->rx_buf);
-   kfree(data->tx_buf);
 err_free_data:
kfree(data);
return err;
@@ -224,8 +211,6 @@ static int __devexit max_remove(stru
hwmon_device_unregister(data->hwmon_dev);
sysfs_remove_group(&spi->dev.kobj, &max_attr_group);
mutex_destroy(data->drvdata_lock);
-   kfree(data->rx_buf);
-   kfree(data->tx_buf);
kfree(data);
return 0;
 }


-- 
Jean Delvare

___
Zaurus-devel mailing list
Zaurus-devel@lists.linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/zaurus-devel