All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kevin Hilman <khilman@deeprootsystems.com>
To: David Brownell <david-b@pacbell.net>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] memory_accessor: new interface for reading/writing persistent memory
Date: Mon, 16 Mar 2009 14:03:10 -0700	[thread overview]
Message-ID: <87zlflgoz5.fsf@deeprootsystems.com> (raw)
In-Reply-To: <200903161227.01938.david-b@pacbell.net> (David Brownell's message of "Mon\, 16 Mar 2009 12\:27\:01 -0700")

David Brownell <david-b@pacbell.net> writes:

> I was kind of hoping you'd address the locking and chunking 
> comments I made ... I'll ack if it includes something like
> the appended patch.

Sorry, somehow I missed those comments on the first round, I will
incorporate and resubmit.

Kevin

> ---
>  drivers/misc/eeprom/at24.c |   43 ++++++++++++++++++++++++++++---------------
>  1 file changed, 28 insertions(+), 15 deletions(-)
>
> --- a/drivers/misc/eeprom/at24.c
> +++ b/drivers/misc/eeprom/at24.c
> @@ -226,14 +226,11 @@ static ssize_t at24_eeprom_read(struct a
>  		return status;
>  }
>  
> -static ssize_t at24_bin_read(struct kobject *kobj, struct bin_attribute *attr,
> +static ssize_t at24_read(struct at24_data *at24,
>  		char *buf, loff_t off, size_t count)
>  {
> -	struct at24_data *at24;
>  	ssize_t retval = 0;
>  
> -	at24 = dev_get_drvdata(container_of(kobj, struct device, kobj));
> -
>  	if (unlikely(!count))
>  		return count;
>  
> @@ -263,6 +260,15 @@ static ssize_t at24_bin_read(struct kobj
>  	return retval;
>  }
>  
> +static ssize_t at24_bin_read(struct kobject *kobj, struct bin_attribute *attr,
> +		char *buf, loff_t off, size_t count)
> +{
> +	struct at24_data *at24;
> +
> +	at24 = dev_get_drvdata(container_of(kobj, struct device, kobj));
> +	return at24_read(at24, buf, off, count);
> +}
> +
>  
>  /*
>   * Note that if the hardware write-protect pin is pulled high, the whole
> @@ -341,14 +347,11 @@ static ssize_t at24_eeprom_write(struct 
>  	return -ETIMEDOUT;
>  }
>  
> -static ssize_t at24_bin_write(struct kobject *kobj, struct bin_attribute *attr,
> +static ssize_t at24_write(struct at24_data *at24,
>  		char *buf, loff_t off, size_t count)
>  {
> -	struct at24_data *at24;
>  	ssize_t retval = 0;
>  
> -	at24 = dev_get_drvdata(container_of(kobj, struct device, kobj));
> -
>  	if (unlikely(!count))
>  		return count;
>  
> @@ -378,6 +381,15 @@ static ssize_t at24_bin_write(struct kob
>  	return retval;
>  }
>  
> +static ssize_t at24_bin_write(struct kobject *kobj, struct bin_attribute *attr,
> +		char *buf, loff_t off, size_t count)
> +{
> +	struct at24_data *at24;
> +
> +	at24 = dev_get_drvdata(container_of(kobj, struct device, kobj));
> +	return at24_write(at24, buf, off, count);
> +}
> +
>  /*-------------------------------------------------------------------------*/
>  
>  /*
> @@ -386,20 +398,20 @@ static ssize_t at24_bin_write(struct kob
>   * data generated on the manufacturing floor.
>   */
>  
> -static ssize_t at24_read(struct memory_accessor *macc, char *buf,
> +static ssize_t at24_macc_read(struct memory_accessor *macc, char *buf,
>  			 off_t offset, size_t count)
>  {
>  	struct at24_data *at24 = container_of(macc, struct at24_data, macc);
>  
> -	return at24_eeprom_read(at24, buf, offset, count);
> +	return at24_read(at24, buf, offset, count);
>  }
>  
> -static ssize_t at24_write(struct memory_accessor *macc, char *buf,
> +static ssize_t at24_macc_write(struct memory_accessor *macc, char *buf,
>  			  off_t offset, size_t count)
>  {
>  	struct at24_data *at24 = container_of(macc, struct at24_data, macc);
>  
> -	return at24_eeprom_write(at24, buf, offset, count);
> +	return at24_write(at24, buf, offset, count);
>  }
>  
>  /*-------------------------------------------------------------------------*/
> @@ -470,9 +482,6 @@ static int at24_probe(struct i2c_client 
>  		goto err_out;
>  	}
>  
> -	at24->macc.read = at24_read;
> -	at24->macc.write = at24_write;
> -
>  	mutex_init(&at24->lock);
>  	at24->use_smbus = use_smbus;
>  	at24->chip = chip;
> @@ -487,6 +496,8 @@ static int at24_probe(struct i2c_client 
>  	at24->bin.read = at24_bin_read;
>  	at24->bin.size = chip.byte_len;
>  
> +	at24->macc.read = at24_macc_read;
> +
>  	writable = !(chip.flags & AT24_FLAG_READONLY);
>  	if (writable) {
>  		if (!use_smbus || i2c_check_functionality(client->adapter,
> @@ -494,6 +505,8 @@ static int at24_probe(struct i2c_client 
>  
>  			unsigned write_max = chip.page_size;
>  
> +			at24->macc.write = at24_macc_write;
> +
>  			at24->bin.write = at24_bin_write;
>  			at24->bin.attr.mode |= S_IWUSR;
>  

      reply	other threads:[~2009-03-16 21:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-08  2:07 [PATCH v2] memory_accessor: new interface for reading/writing persistent memory Kevin Hilman
2009-03-16 19:27 ` David Brownell
2009-03-16 21:03   ` Kevin Hilman [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87zlflgoz5.fsf@deeprootsystems.com \
    --to=khilman@deeprootsystems.com \
    --cc=david-b@pacbell.net \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.