From: viro@parcelfarce.linux.theplanet.co.uk
To: Michael Brown <mebrown@michaels-house.net>
Cc: linux-kernel@vger.kernel.org, marcelo.tosatti@cyclades.com,
michael_e_brown@dell.com
Subject: Re: [PATCH 2.4] add SMBIOS information to /proc/smbios/
Date: Thu, 29 Apr 2004 06:50:28 +0100 [thread overview]
Message-ID: <20040429055028.GH17014@parcelfarce.linux.theplanet.co.uk> (raw)
In-Reply-To: <1083217173.1198.2876.camel@debian>
On Thu, Apr 29, 2004 at 12:39:33AM -0500, Michael Brown wrote:
> +smbios_read_table_entry_point(char *page, char **start,
> + off_t off, int count,
> + int *eof, void *data)
> +{
> + unsigned int max_off = sizeof(the_smbios_device.table_eps);
> + MOD_INC_USE_COUNT;
> +
> + memcpy(page, &the_smbios_device.table_eps, max_off);
> +
> + MOD_DEC_USE_COUNT;
> + return max_off;
> +}
*LART*
Use ->owner instead of (racy) messing with MOD_{INC,DEC}_USE_COUNT.
> +/* Use the more flexible procfs style. We tell the core that we can handle
> + * >4k transactions by setting *start. When doing this we also have to handle
> + * our own *eof and make sure not to overrun the page or count given.
> + */
> +static ssize_t
> +smbios_read_table(char *page, char **start,
> + off_t offset, int count,
> + int *eof, void *data)
> +{
> + u8 *buf;
> + int i = 0;
> + int max_off = the_smbios_device.smbios_table_real_length;
> + MOD_INC_USE_COUNT;
> +
> + if (offset > max_off)
> + return 0;
> +
> + if (count > (max_off - offset))
> + count = max_off - offset;
> +
> + buf = ioremap(the_smbios_device.table_eps.table_address, max_off);
> + if (buf == NULL)
> + return -ENXIO;
> +
> + /* memcpy( buffer, buf+pos, count ); */
> + for (i = 0; i < count; ++i) {
> + page[i] = readb( buf+offset+i );
> + }
> +
> + iounmap(buf);
> +
> + *start = page; /* tells procfs that we handle >1 page */
> + MOD_DEC_USE_COUNT;
> + return count;
> +}
... and the reason why you need to go through procfs default ->read()
instead of providing an obvious one of your own would be...? Note that
it would be smaller and simpler than your callback above.
next prev parent reply other threads:[~2004-04-29 5:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-04-29 5:39 Michael Brown
2004-04-29 5:50 ` viro [this message]
2004-04-29 12:58 ` Michael Brown
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=20040429055028.GH17014@parcelfarce.linux.theplanet.co.uk \
--to=viro@parcelfarce.linux.theplanet.co.uk \
--cc=linux-kernel@vger.kernel.org \
--cc=marcelo.tosatti@cyclades.com \
--cc=mebrown@michaels-house.net \
--cc=michael_e_brown@dell.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome