From b25a59a40834c8c3e00f75de255773321675ab66 Mon Sep 17 00:00:00 2001 From: pjd Date: Sat, 2 Oct 2004 16:58:33 +0000 Subject: [PATCH] Fix a deadlock in ggatel(8) simlar to one which was fixed some time ago in md(4). Submitted by: Ivan Voras --- ggatel/ggatel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggatel/ggatel.c b/ggatel/ggatel.c index 4aa19ea..5d14d3d 100644 --- a/ggatel/ggatel.c +++ b/ggatel/ggatel.c @@ -160,7 +160,7 @@ g_gatel_create(void) struct g_gate_ctl_create ggioc; int fd; - fd = open(path, g_gate_openflags(flags)); + fd = open(path, g_gate_openflags(flags) | O_DIRECT | O_FSYNC); if (fd == -1) err(EXIT_FAILURE, "Cannot open %s", path); ggioc.gctl_version = G_GATE_VERSION;