search for: fsv

Displaying 13 results from an estimated 13 matches for "fsv".

Did you mean: fs
2014 Jul 30
2
[PATCH 1/3] ext2: create a struct for the OCaml 't' type
...ic void @@ -78,18 +83,18 @@ ext2_handle_closed (void) caml_failwith ("ext2fs: function called on a closed handle"); } -#define Ext2fs_val(v) (*((ext2_filsys *)Data_custom_val(v))) +#define Ext2fs_val(v) (*((struct ext2_data *)Data_custom_val(v))) static void ext2_finalize (value fsv) { - ext2_filsys fs = Ext2fs_val (fsv); + struct ext2_data data = Ext2fs_val (fsv); - if (fs) { + if (data.fs) { #ifdef HAVE_EXT2FS_CLOSE2 - ext2fs_close2 (fs, EXT2_FLAG_FLUSH_NO_SYNC); + ext2fs_close2 (data.fs, EXT2_FLAG_FLUSH_NO_SYNC); #else - ext2fs_close (fs); + ext2fs_clos...
2007 Apr 28
8
Poor man's High Availability solution
Hi, I'm wondering what the best option to obtain a high availability asterisk server is. I currently use a TE410P (4 x E1) card. I'm thinking of 2 different solutions: - 2 servers configured with Heartbeat + DRBD (drbd mainly for voicemail....) and the E1 span plugged to the 2 servers (with a TE410P in each server). - 2 servers configures with Heartbeat + DRBD with the E1 span hooked
2015 Dec 02
4
[PATCH 0/3] supermin: add --include-packagelist
Hi, to ease debugging issues with appliances (e.g. when used in libguestfs), using --include-packagelist will add a file containing the list of all the packages used. Thanks, Pino Toscano (3): ext2: add ext2fs_chmod and ext2fs_chown chroot: factor out file copy code Add --include-packagelist src/build.ml | 42 +++++++++++++++++++++++++------ src/chroot.ml | 29
2007 Jul 18
3
Redundancy / Failover
I've been evaluating Asterisk for a while, and things seem to be going very well. The issue of redundancy and automatic fail-over is now on my mind. I searched the archives and googled for solutions, but didn't really come up with much. We'll be using queues (modified), which precludes some of the standard redundancy solutions, since the queue needs to know all the agents
2008 Mar 13
2
RedFone foneBRIDGE2 2e1 - anyone used it oranother TDMoE bridge?
For high-availability Asterisk when using PRI Lines, you might also want to check out our product (FSV-4PFS). It's available at www.failsafevoip.com Bill Also to add to the last post does this device have hardware echo cancelation? if it does it could be a great replacement, if not may not be what I'd really want to use. Thanks, tom I've been looking at the RedFone foneBRIDGE2 2e...
2004 Aug 26
1
"o" bty with different axes
Is it possible to create plot bty=o with different scale of left- and right x-axis? In my documents, by typesetting, bty=u looks disruptively. At 2nd: how to frame the whole box (including title and axes labels) and resize to landscape-oriented rectangle? Tomas Bayer
2004 Jul 09
1
Re: combined graph in R
Hello, I could not yet create combined graph in R. To avoid misunderstands, three examples (originally created in Quattro pro) have been attached. At first, I don't know how to create graph composed of bars and areas in the same picture as it is shown in the balance graph (h2plc02.gif). I am sendind the original data table from that I need make the same charts. First column (julian day)
2011 Mar 03
4
Future Tax Regression
...be a regression. It runs under wine 1.0.1, and loads OK under 1.3, but when I try to open an existing (known valid) file FT pops up a message box that says "An unsupported operation was attempted". A screen shot of the end result of the error chain may be seen at http://ubuntuone.com/p/fsv/ The AppDB listing indicates the same experience. I ran winedebug with the command > WINEDEBUG=+seh,+msgbox wine FutureTax.exe&>/home/alan/Desktop/FT022130.txt The resulting error file may be seen at http://ubuntuone.com/p/fsu/ I'm not sure if I have the correct debug controls,...
2016 Jul 06
0
[PATCH] ext2: Don't load whole files into memory when copying to the appliance (RHBZ#1113065).
...ext2fs-c.c | 127 +++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 78 insertions(+), 49 deletions(-) diff --git a/src/ext2fs-c.c b/src/ext2fs-c.c index cb9282b..96a3de0 100644 --- a/src/ext2fs-c.c +++ b/src/ext2fs-c.c @@ -185,6 +185,7 @@ supermin_ext2fs_read_bitmaps (value fsv) static void ext2_mkdir (ext2_filsys fs, ext2_ino_t dir_ino, const char *dirname, const char *basename, mode_t mode, uid_t uid, gid_t gid, time_t ctime, time_t atime, time_t mtime); static void ext2_empty_inode (ext2_filsys fs, ext2_ino_t dir_ino, const char *dirname, const char *basename, mode_t...
2017 Jul 13
3
[PATCH supermin v2] ext2: Create symlinks properly (RHBZ#1470157).
...ext2fs-c.c | 59 ++++++++++++---------------------------------------------- 1 file changed, 12 insertions(+), 47 deletions(-) diff --git a/src/ext2fs-c.c b/src/ext2fs-c.c index 2743da7..e8ab972 100644 --- a/src/ext2fs-c.c +++ b/src/ext2fs-c.c @@ -191,7 +191,6 @@ supermin_ext2fs_read_bitmaps (value fsv) static void ext2_mkdir (ext2_filsys fs, ext2_ino_t dir_ino, const char *dirname, const char *basename, mode_t mode, uid_t uid, gid_t gid, time_t ctime, time_t atime, time_t mtime); static void ext2_empty_inode (ext2_filsys fs, ext2_ino_t dir_ino, const char *dirname, const char *basename, mode...
2017 Jul 12
3
[PATCH supermin] ext2: Create symlinks properly (RHBZ#1470157).
...--- src/ext2fs-c.c | 50 +++++--------------------------------------------- 1 file changed, 5 insertions(+), 45 deletions(-) diff --git a/src/ext2fs-c.c b/src/ext2fs-c.c index 2743da7..0b3b29e 100644 --- a/src/ext2fs-c.c +++ b/src/ext2fs-c.c @@ -191,7 +191,6 @@ supermin_ext2fs_read_bitmaps (value fsv) static void ext2_mkdir (ext2_filsys fs, ext2_ino_t dir_ino, const char *dirname, const char *basename, mode_t mode, uid_t uid, gid_t gid, time_t ctime, time_t atime, time_t mtime); static void ext2_empty_inode (ext2_filsys fs, ext2_ino_t dir_ino, const char *dirname, const char *basename, mode...
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...fn); +} + +static void ext2_handle_closed (void) __attribute__((noreturn)); + +static void +ext2_handle_closed (void) +{ + caml_failwith ("ext2fs: function called on a closed handle"); +} + +#define Ext2fs_val(v) (*((ext2_filsys *)Data_custom_val(v))) + +static void +ext2_finalize (value fsv) +{ + ext2_filsys fs = Ext2fs_val (fsv); + + if (fs) { +#ifdef HAVE_EXT2FS_CLOSE2 + ext2fs_close2 (fs, EXT2_FLAG_FLUSH_NO_SYNC); +#else + ext2fs_close (fs); +#endif + } +} + +static struct custom_operations ext2_custom_operations = { + (char *) "ext2fs_custom_operations", + ext...
2019 Jan 15
2
getcifsacl does not work with CIFS mount versions 2 or 3
Hi When I mount CIFS share (mount -t cids) with vers=1.0 I can perform getcifsacl sucessfully. But when I mount with vers=2.0, or 2.1, or 3.0, ACL reading fails. getxattr error: 95 REVISION:0x0 CONTROL:0x0 Why getcifsacl depends on SMB protocol version? Can I read ACL via newer SMB protocol? A asked on Serverfault but without reply: