* Msync Invalid Arg
@ 2009-12-29 11:52 darshan.ghumare
2009-12-29 14:30 ` Michal Nazarewicz
0 siblings, 1 reply; 2+ messages in thread
From: darshan.ghumare @ 2009-12-29 11:52 UTC (permalink / raw)
To: linux-c-programming
Whne I try to execute following code then get an erro message that "Invalid Argumemt" in msync.
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/errno.h>
#include <sys/time.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <pthread.h>
#include <linux/types.h>
int main()
{
int fd;
char data[20];
__u8 *start_addr,*end_addr;
int PageSize;
if ( (PageSize = sysconf(_SC_PAGE_SIZE)) < 0) {
perror("sysconf() Error=");
return -1;
}
printf("PageSize = %d\n",PageSize);
if((fd = open("/dev/mem", O_RDWR | O_SYNC)) == -1)
{
printf("Error opening /dev/mem\n");
return -1;
}
start_addr = mmap(0, PageSize, PROT_READ | PROT_WRITE, MAP_SHARED, fd,
0);
if(start_addr == MAP_FAILED)
{
printf("enc_status map failed %s\n", strerror(errno));
return -1;
}
end_addr = start_addr + (4096 - 1);
strcpy(data, "Test Msg");
printf("\n%s:Writing NVRAM.......\n", __FUNCTION__);
if(write(fd, data, strlen(data)) <= 0)
{
printf("%s: Not able to write on NVRAM. %s.\n", __FUNCTION__,
strerror(errno));
return -1;
}
printf("\n%s:Synching NVRAM.......\n", __FUNCTION__);
if(msync(start_addr, PageSize, MS_SYNC) <= 0)
{
printf("%s: Not able to sync to NVRAM. %s.\n", __FUNCTION__,
strerror(errno));
return -1;
}
printf("\n%s:reading NVRAM.......\n", __FUNCTION__);
strcpy(data, "");
if(read(fd, data, sizeof(data)) <= 0)
{
printf("%s: Not able to read on NVRAM. %s.\n", __FUNCTION__,
strerror(errno));
return -1;
}
printf("%s: data %s.\n", __FUNCTION__, data);
return 0;
}
--
This message was sent on behalf of darshan.ghumare@gmail.com at openSubscriber.com
http://www.opensubscriber.com/messages/linux-c-programming@vger.kernel.org/topic.html
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: Msync Invalid Arg
2009-12-29 11:52 Msync Invalid Arg darshan.ghumare
@ 2009-12-29 14:30 ` Michal Nazarewicz
0 siblings, 0 replies; 2+ messages in thread
From: Michal Nazarewicz @ 2009-12-29 14:30 UTC (permalink / raw)
To: darshan.ghumare; +Cc: linux-c-programming, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1838 bytes --]
darshan.ghumare@gmail.com writes:
> Whne I try to execute following code I get "Invalid Argumemt" error
> message in msync.
/* Code rewritten to be shorter */
> #include <fcntl.h>
> #include <stdio.h>
> #include <stdlib.h>
> #include <string.h>
> #include <sys/mman.h>
> #include <unistd.h>
>
> #define DIE_IF(cnd, msg) do{ if (cnd) { perror(msg); return 1; } }while(0)
>
> int main(void)
> {
> char data[20];
> void *addr;
> int fd, ret;
>
> fd = open("/dev/mem", O_RDWR | O_SYNC);
> DIE_IF(fd < 0, "open");
>
> addr = mmap(0, 4096, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
> DIE_IF(addr == MAP_FAILED, "mmap");
>
> strcpy(data, "Test Msg");
> ret = write(fd, data, strlen(data));
> DIE_IF(ret < 0, "write");
>
> ret = msync(addr, 4096, MS_SYNC);
> DIE_IF(ret < 0, "msync");
>
> ret = lseek(fd, 0, SEEK_SET);
> DIE_IF(ret < 0, "lseek");
>
> memset(data, 0, sizeof data);
> ret = read(fd, data, sizeof data);
> DIE_IF(ret < 0, "read");
> printf("Read: %s.\n", data);
>
> return 0;
> }
The msync(2) fails because /dev/mem driver (drivers/char/mem.c) does not
implement fsync file operation which is used by msync(2) system call.
This sort of makes sense since there is no need to sync the /dev/mem
file -- there is no backing storage on hard drive or anywhere, when you
write data there you write directly to the memory and same goes for
reading.
Anyhow, I'm Ccing this to linux-kernel as maybe we need a dummy fsync
operation for /dev/mem which would do nothing and return zero?
--
Best regards, _ _
.o. | Liege of Serenly Enlightened Majesty of o' \,=./ `o
..o | Computer Science, Michal "mina86" Nazarewicz (o o)
ooo +--<mina86*tlen.pl>--<jid:mina86*jabber.org>--ooO--(_)--Ooo--
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-29 14:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-29 11:52 Msync Invalid Arg darshan.ghumare
2009-12-29 14:30 ` Michal Nazarewicz
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).