Displaying 16 results from an estimated 16 matches for "fd_ptr".
Did you mean:
f_ptr
1999 Apr 20
0
Samba 2.0.3 and lotus notes client (PR#15717)
..../source/smbd/open.c:(784)
open_file_shared: fname = notes/data, share_mode = 42, ofun = 1, mode = 640, oplock request = 3
[1999/04/20 14:52:23, 4] ../source/smbd/open.c:(954)
calling open_file with flags=0x2 flags2=0x0 mode=0640
[1999/04/20 14:52:23, 5] ../source/smbd/files.c:(173)
allocated fd_ptr structure (4 used)
[1999/04/20 14:52:23, 3] ../source/smbd/open.c:(502)
Error opening file notes/data (Is a directory) (flags=2)
[1999/04/20 14:52:23, 3] ../source/smbd/open.c:(155)
fd_attempt_close fd = -1, dev = ffffffff, inode = 4294967295, open_flags = 2, ref_count = 1.
[1999/04/20 14:52:23...
1999 Jun 29
0
Help. Unable to print from NT
...ecome_user - already user
[1999/06/29 15:26:28, 3] smbd/reply.c:reply_close(2739)
close fd=11 fnum=4328 (numopen=1)
[1999/06/29 15:26:28, 3] smbd/open.c:fd_attempt_close(158)
fd_attempt_close fd = 11, dev = 306, inode = 15695, open_flags = 2, ref_count = 1.
[1999/06/29 15:26:28, 5] smbd/files.c:fd_ptr_free(353)
freed fd_ptr structure (1 used)
[1999/06/29 15:26:28, 3] printing/printing.c:print_file(124)
Running the command `lp -c -dlp JCHI.xekrSE; rm JCHI.xekrSE' gave 0
[1999/06/29 15:26:28, 2] smbd/close.c:close_normal_file(165)
jchi closed file JCHI.xekrSE (numopen=0)
[1999/06/29 15:...
1999 Apr 16
2
Problems compiling Samba 2.0.3
Hi,
I have a problem when I compile Samba 2.0.3, the next error message is
generated doing "make":
Using LIBS =
Compiling locking/shmem.c
locking/shmem.c: In function `smb_shm_open':
locking/shmem.c:921: `PROT_READ' undeclared (first use this function)
locking/shmem.c:921: (Each undeclared identifier is reported only once
locking/shmem.c:921: for each function it appears in.)
2015 Jul 15
1
[PATCH 1/2] actions: tar_out: add xattrs and selinux optargs
Add additional arguments for tar, so extended attributes and/or SELinux
contexts can be saved in output tars.
---
daemon/tar.c | 18 +++++++++++++-----
generator/actions.ml | 10 +++++++++-
2 files changed, 22 insertions(+), 6 deletions(-)
diff --git a/daemon/tar.c b/daemon/tar.c
index d6f8f2f..68af749 100644
--- a/daemon/tar.c
+++ b/daemon/tar.c
@@ -311,7 +311,7 @@
2012 Feb 27
4
[PATCH 0/4] Add various ntfs* tools and unify label setting.
This miscellaneous patch adds bindings for:
- ntfsfix
- ntfsclone
- ntfslabel
and unifies filesystem label setting through a single API 'set-label'
which replaces 'set-e2label' and is also able to set labels on NTFS
using the ntfslabel program.
'ntfsfix' has been added as a possible way to fix RHBZ#797760.
However I have not found a way to fully fix this bug. See
1999 May 27
0
Diagnosis Test Pass, But...
...ture 74, fnum = 4170 (1 used)
[1999/05/27 13:17:01, 3] lib/util.c:unix_clean_name(609)
unix_clean_name [desktop.ini]
[1999/05/27 13:17:01, 4] smbd/open.c:open_file_shared(970)
calling open_file with flags=0x0 flags2=0x0 mode=0744
[1999/05/27 13:17:01, 5] smbd/files.c:fd_get_new(173)
allocated fd_ptr structure (1 used)
[1999/05/27 13:17:01, 3] smbd/open.c:open_file(503)
Error opening file desktop.ini (No such file or directory) (flags=0)
[1999/05/27 13:17:01, 3] smbd/open.c:fd_attempt_close(158)
fd_attempt_close fd = -1, dev = ffff, inode = 4294967295, open_flags = 2, ref_count = 1.
[1999/0...
2012 Aug 14
7
[PATCH 0/7] Add tar compress, numericowner, excludes flags.
https://bugzilla.redhat.com/show_bug.cgi?id=847880
https://bugzilla.redhat.com/show_bug.cgi?id=847881
This patch series adds various optional arguments to the tar-in and
tar-out commands.
Firstly (1/7) an optional "compress" flag is added to select
compression. This makes the calls tgz-in/tgz-out/txz-in/txz-out
deprecated, and expands the range of compression types available.
2012 Mar 13
2
[PATCH 0/2] 'int' to 'size_t' changes
These two patches are probably not completely independent, but
separating them is a lot of work.
With *both* patches applied, all the tests and extra-tests pass.
That's no guarantee however that there isn't a mistake, so I don't
think this patch is a candidate for the 1.16 branch, until it's had a
lot more testing in development.
Rich.
2012 Aug 30
2
[PATCH v2] daemon: collect list of called external commands
...ystem is available. Note
diff --git a/daemon/base64.c b/daemon/base64.c
index 215812a..fcbeec8 100644
--- a/daemon/base64.c
+++ b/daemon/base64.c
@@ -27,6 +27,8 @@
#include "daemon.h"
#include "actions.h"
+GUESTFSD_EXT_CMD(str_base64, base64);
+
static int
write_cb (void *fd_ptr, const void *buf, size_t len)
{
@@ -42,7 +44,7 @@ do_base64_in (const char *file)
FILE *fp;
char *cmd;
- if (asprintf_nowarn (&cmd, "base64 -d -i > %R", file) == -1) {
+ if (asprintf_nowarn (&cmd, "%s -d -i > %R", str_base64, file) == -1) {
err = er...
2012 Aug 30
1
[PATCH] collect list of called external commands
...system is available. Note
diff --git a/daemon/base64.c b/daemon/base64.c
index 215812a..402313d 100644
--- a/daemon/base64.c
+++ b/daemon/base64.c
@@ -27,6 +27,8 @@
#include "daemon.h"
#include "actions.h"
+GUESTFS_EXT_CMD(str_base64, base64);
+
static int
write_cb (void *fd_ptr, const void *buf, size_t len)
{
@@ -42,7 +44,7 @@ do_base64_in (const char *file)
FILE *fp;
char *cmd;
- if (asprintf_nowarn (&cmd, "base64 -d -i > %R", file) == -1) {
+ if (asprintf_nowarn (&cmd, "%s -d -i > %R", str_base64, file) == -1) {
err = er...
2017 Jul 27
0
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
...m is available. Note
diff --git a/daemon/base64.c b/daemon/base64.c
index 3468c3342..badb95efa 100644
--- a/daemon/base64.c
+++ b/daemon/base64.c
@@ -30,8 +30,6 @@
#include "daemon.h"
#include "actions.h"
-GUESTFSD_EXT_CMD(str_base64, base64);
-
static int
write_cb (void *fd_ptr, const void *buf, size_t len)
{
@@ -48,7 +46,7 @@ do_base64_in (const char *file)
CLEANUP_FREE char *cmd = NULL;
int fd;
- if (asprintf_nowarn (&cmd, "%s -d -i > %R", str_base64, file) == -1) {
+ if (asprintf_nowarn (&cmd, "%s -d -i > %R", "base64&q...
2017 Jul 24
0
[PATCH 2/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
....c b/daemon/base64.c
index 3468c3342..79b31a805 100644
--- a/daemon/base64.c
+++ b/daemon/base64.c
@@ -30,7 +30,7 @@
#include "daemon.h"
#include "actions.h"
-GUESTFSD_EXT_CMD(str_base64, base64);
+DECLARE_EXTERNAL_COMMANDS ("base64")
static int
write_cb (void *fd_ptr, const void *buf, size_t len)
@@ -48,7 +48,7 @@ do_base64_in (const char *file)
CLEANUP_FREE char *cmd = NULL;
int fd;
- if (asprintf_nowarn (&cmd, "%s -d -i > %R", str_base64, file) == -1) {
+ if (asprintf_nowarn (&cmd, "%s -d -i > %R", "base64"...
2017 Jul 27
3
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
This is a simpler patch that removes GUESTFSD_EXT_CMD completely.
2017 Jul 24
6
[PATCH 0/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
Replace GUESTFSD_EXT_CMD with a command line option
‘./guestfsd --print-external-commands’
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change.
I'll get back to that series shortly ;-)
It turned into a factorization and constification exercise
during which I got a taste of ocaml. Thanks to Rich Jones
for help with a few snippets in generator.ml.
The overall result is that many previously-manually-maintained
bits from daemon/*.c functions are now hoisted into the automatically-
2003 Dec 01
0
No subject
...38, 5] locking/locking_shm.c:shm_get_share_modes(144)
get_share_modes no entry for file dev = 800086 ino = 411782
[2001/07/02 17:04:38, 4] smbd/open.c:open_file_shared(1025)
calling open_file with flags=0x2 flags2=0x100 mode=0700
[2001/07/02 17:04:38, 5] smbd/files.c:fd_get_new(173)
allocated fd_ptr structure (1 used)
[2001/07/02 17:04:38, 2] smbd/open.c:open_file(602)
ar12 opened file ^A read=Yes write=Yes (numopen=2)
[2001/07/02 17:04:38, 6] locking/shmem_sysv.c:shm_alloc(253)
shm_alloc : allocated 67 bytes at offset 7000
[2001/07/02 17:04:38, 3] locking/locking_shm.c:shm_set_share_mode(...