use MAP_PRIVATE instead of MAP_SHARED for uClinux systems (see Bug 550)
authorMike Frysinger <vapier@gentoo.org>
Wed, 4 Jan 2006 07:31:19 +0000 (07:31 -0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 4 Jan 2006 07:31:19 +0000 (07:31 -0000)
archival/rpm.c
util-linux/mdev.c

index 9d16567bc49ba3f19df8990df07657c625b7eafe..32d506de06705152ecf6de2a56a1b7f7d75dc8f2 100644 (file)
@@ -143,7 +143,7 @@ int rpm_main(int argc, char **argv)
                mytags = rpm_gettags(rpm_fd, (int *) &tagcount);
                offset = lseek(rpm_fd, 0, SEEK_CUR);
                if (!mytags) { printf("Error reading rpm header\n"); exit(-1); }
-               map = mmap(0, offset > getpagesize() ? (offset + offset % getpagesize()) : getpagesize(), PROT_READ, MAP_SHARED, rpm_fd, 0); // Mimimum is one page
+               map = mmap(0, offset > getpagesize() ? (offset + offset % getpagesize()) : getpagesize(), PROT_READ, MAP_PRIVATE, rpm_fd, 0); // Mimimum is one page
                if (func & rpm_install) {
                        loop_through_files(RPMTAG_BASENAMES, fileaction_dobackup); /* Backup any config files */
                        extract_cpio_gz(rpm_fd); // Extact the archive
index 830939b92d63f85724d1f396b28137c705453c15..d414c0c1033aa8651327a0d8cacb15281ea006f7 100644 (file)
@@ -68,7 +68,7 @@ static void make_device(char *path)
                /* mmap the config file */
                if (-1!=(fd=open("/etc/mdev.conf",O_RDONLY))) {
                        len=lseek(fd,0,SEEK_END);
-                       conf=mmap(NULL,len,PROT_READ,MAP_SHARED,fd,0);
+                       conf=mmap(NULL,len,PROT_READ,MAP_PRIVATE,fd,0);
                        if (conf) {
                                int line=0;