Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1][denzil] udev: don't mount with -o sync
@ 2012-09-21 18:21 tom.zanussi
  2012-09-21 18:21 ` [PATCH 1/1] " tom.zanussi
  0 siblings, 1 reply; 2+ messages in thread
From: tom.zanussi @ 2012-09-21 18:21 UTC (permalink / raw)
  To: scott.a.garman, openembedded-core

From: Tom Zanussi <tom.zanussi@intel.com>

This is the same patch that exists in master and that fixes a problem
with slow writes still seen in denzil; the only change I made was to
match the PR bump to denzil.

Fixes [YOCTO #3049]

The following changes since commit 65ffa7395055f7e012cb973f63f92380828eed0d:

  yocto-bsp: use base branches for qemu 'newbranch' case (2012-08-21 11:35:22 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib.git tzanussi/denzil-mount-nosync
  http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/denzil-mount-nosync

Jesse Zhang (1):
  udev: don't mount with -o sync

 meta/recipes-core/udev/udev/mount.sh | 2 +-
 meta/recipes-core/udev/udev_164.bb   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
1.7.11.4




^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] udev: don't mount with -o sync
  2012-09-21 18:21 [PATCH 0/1][denzil] udev: don't mount with -o sync tom.zanussi
@ 2012-09-21 18:21 ` tom.zanussi
  0 siblings, 0 replies; 2+ messages in thread
From: tom.zanussi @ 2012-09-21 18:21 UTC (permalink / raw)
  To: scott.a.garman, openembedded-core

From: Jesse Zhang <sen.zhang@windriver.com>

mount.sh mounts all partitions with -o sync, which is bad for system
performance.

(From OE-Core rev: d49cf73754150b50a911d326aaa666f5da78855c)

Signed-off-by: Jesse Zhang <sen.zhang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/recipes-core/udev/udev/mount.sh | 2 +-
 meta/recipes-core/udev/udev_164.bb   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/udev/udev/mount.sh b/meta/recipes-core/udev/udev/mount.sh
index 53fefa3..c13b8bb 100644
--- a/meta/recipes-core/udev/udev/mount.sh
+++ b/meta/recipes-core/udev/udev/mount.sh
@@ -23,7 +23,7 @@ automount() {
 
 	! test -d "/media/$name" && mkdir -p "/media/$name"
 	
-	if ! $MOUNT -t auto -o sync $DEVNAME "/media/$name"
+	if ! $MOUNT -t auto $DEVNAME "/media/$name"
 	then
 		#logger "mount.sh/automount" "$MOUNT -t auto $DEVNAME \"/media/$name\" failed!"
 		rm_dir "/media/$name"
diff --git a/meta/recipes-core/udev/udev_164.bb b/meta/recipes-core/udev/udev_164.bb
index c5813ec..0462ff2 100644
--- a/meta/recipes-core/udev/udev_164.bb
+++ b/meta/recipes-core/udev/udev_164.bb
@@ -1,6 +1,6 @@
 include udev.inc
 
-PR = "r13"
+PR = "r14"
 
 SRC_URI += "file://udev-166-v4l1-1.patch"
 
-- 
1.7.11.4




^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-09-21 18:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-21 18:21 [PATCH 0/1][denzil] udev: don't mount with -o sync tom.zanussi
2012-09-21 18:21 ` [PATCH 1/1] " tom.zanussi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox