From: vikashskumar@gmail.com (Vikash Kumar)
To: kernelnewbies@lists.kernelnewbies.org
Subject: char driver error
Date: Mon, 9 May 2011 17:36:30 +0530 [thread overview]
Message-ID: <BANLkTimQiVXLAxgFF_4EFz+XACUg7WEz7Q@mail.gmail.com> (raw)
In-Reply-To: <BANLkTi=iRcg7Ba2ZBM76W2Eg-BHj38x5eQ@mail.gmail.com>
Following are my observations from the code:
1) The driver is maintaining a 1 byte buffer.
memory_buffer = kmalloc(1, GFP_KERNEL);
2) Write operation always copies the last byte of user buffer to driver
buffer.
tmp=buf+count-1;
copy_from_user(memory_buffer,tmp,1)
3) Read operation always returns the copied character from driver buffer on
every read ignoring the count.
copy_to_user(buf,memory_buffer,1);
So, to me it seems everything is working fine.. what's the error here ? what
am I missing something?
Regards,
Vikash Kumar
On Mon, May 9, 2011 at 4:56 PM, Aravind Vijayan <aravind1123@gmail.com>wrote:
> Hi all,
> Let me begin this post with thanx all to whom help me on
> previous problem.I have completed jobs such as
> writing,making,inserting the module.
>
> i create a character special file using mknod in /dev directory.
>
> i try to write data to my file by" echo -n "abcd" > /dev/memory "
>
> and when i try to read from that file i get the last char was written
> to that file that is "d"
>
> here is my code:http://pastebin.com/9YsJetek
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies at kernelnewbies.org
> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20110509/bb14720f/attachment.html
prev parent reply other threads:[~2011-05-09 12:06 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-09 11:26 char driver error Aravind Vijayan
2011-05-09 11:33 ` Manohar Vanga
[not found] ` <BANLkTimiQg3WmVRC1rOVK0+S_W095r_3Jg@mail.gmail.com>
2011-05-09 12:04 ` Manohar Vanga
2011-05-09 11:35 ` Daniel Baluta
[not found] ` <BANLkTimAH6msz3YAt99RWPF=hOqWk6LkfQ@mail.gmail.com>
2011-05-09 12:08 ` Daniel Baluta
2011-05-09 12:06 ` Vikash Kumar [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=BANLkTimQiVXLAxgFF_4EFz+XACUg7WEz7Q@mail.gmail.com \
--to=vikashskumar@gmail.com \
--cc=kernelnewbies@lists.kernelnewbies.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).