search for: 145,10

Displaying 20 results from an estimated 27 matches for "145,10".

2013 Oct 22
1
[PATCH 2/2] Discard unwritten ranges
...index 9bcdc36..55ccfc0 100644 --- a/pxzcat.c +++ b/pxzcat.c @@ -44,10 +44,11 @@ #include <sys/types.h> #include <error.h> #include <errno.h> #include <getopt.h> #include <pthread.h> +#include <linux/falloc.h> #include <lzma.h> #define DEBUG 0 @@ -145,10 +146,11 @@ usage (int exitcode) static void xzfile_uncompress (const char *filename, const char *outputfile, unsigned nr_threads) { int fd, ofd; + off_t hole_start, data_start; uint64_t size; lzma_index *idx; /* Open the file. */ fd = open (filename, O_RDO...
2003 Apr 20
0
How I got Samba 2.2.8a to run on OpenBSD 3.2 i386
...YMMV. I might have forgotten a newline. As a little easter egg, check the 'message command' setting. Message echoing :) - Samuel "Wolf on Air" Ljungkvist -------------- next part -------------- --- sec_ctx.c Sun Apr 20 03:10:59 2003 +++ sec_ctx.c~ Sun Apr 20 03:09:00 2003 @@ -145,10 +145,10 @@ /* this looks a little strange, but is needed to cope with systems that put the current egid in the group list - returned from getgroups() (tridge) + returned from getgroups() (tridge) */ save_re_gid(); set_effective_gid(gid); - setgid(gid);*/ + setgid(gid); ng...
2004 Feb 27
0
PAM patch for openssh 3.7.1p2
...2/27 00:26:00 @@ -124,7 +124,10 @@ int pam_csock; int pam_done; }; +static struct pam_ctxt *sshpam_ctxt; /* hack for pam library not passing back + ctxt */ + static void sshpam_free_ctx(void *); /* @@ -142,6 +145,10 @@ *resp = NULL; ctxt = data; + if ( ctxt == NULL ) + { + ctxt = sshpam_ctxt; + } if (n <= 0 || n > PAM_MAX_NUM_MSG) return (PAM_CONV_ERR); @@ -221,6 +228,7 @@ sshpam_conv.conv = sshpam_thread_conv;...
2017 Apr 15
0
[PATCH RFC (resend) net-next 3/6] virtio_net: Add basic skeleton for handling vnet header extensions.
...+ include/linux/virtio_net.h | 12 ++++++++++++ include/uapi/linux/virtio_net.h | 11 +++++++++++ 3 files changed, 44 insertions(+) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index 5ad6ee6..08e2709 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -145,6 +145,10 @@ struct virtnet_info { /* Packet virtio header size */ u8 hdr_len; + /* Header extensions were negotiated */ + bool hdr_ext; + u32 ext_mask; + /* Active statistics */ struct virtnet_stats __percpu *stats; @@ -174,6 +178,11 @@ struct virtnet_info { u32 speed; }; +struct...
2011 Feb 18
1
[PATCH] core: Allow pasting from a VMware host by typing Ctrl-P
...-125,6 +125,8 @@ not_ascii: je print_version cmp al,'X' & 1Fh ; <Ctrl-X> je force_text_mode + cmp al,'P' & 1Fh ; <Ctrl-P> + je paste cmp al,08h ; Backspace jne get_char backspace: cmp di,command_line ; Make sure there is anything @@ -143,6 +145,10 @@ force_text_mode: call vgaclearmode jmp enter_command +paste: + call vmware_paste + jmp get_char + set_func_flag: mov byte [FuncFlag],1 jmp short get_char_2 @@ -568,6 +574,72 @@ getchar_timeout: call vgahidecursor ret +; Copy data from VMware's clipboard to the com...
2010 Sep 03
1
[PATCH] New '-o' option to configure server or hosts from command line
...VALUE Set global/host configuration value.\n" " -R, --chroot chroot to NET dir at startup.\n" " -U, --user=USER setuid to given USER at startup.\n" " --help Display this help and exit.\n" @@ -145,10 +146,14 @@ static void usage(bool status) { } static bool parse_options(int argc, char **argv) { + config_t *cfg; int r; int option_index = 0; + int lineno = 0; - while((r = getopt_long(argc, argv, "c:DLd::k::n:K::RU:", long_options, &option_index)) != EOF) { + cmdlin...
2013 Jun 04
2
[PATCH / RFC] Handle --packager-config in zypp_rpm
...\ --non-interactive \ install \ --auto-agree-with-licenses \ @@ -92,6 +107,7 @@ time zypper \ (match packager_config with None -> "" | Some filename -> sprintf "--config %s" filename) tmp_root + repos_dir in run_shell sh names; @@ -129,9 +145,10 @@ unset LANG ${!LC_*} zypper \ %s \ %s \ - --root %S --reposd-dir /etc/zypp/repos.d \ + --root %S --reposd-dir %S \ --cache-dir %S \ --gpg-auto-import-keys \ + --no-gpg-checks \ --non-interactive \ --xml \ install \ @@ -146,7 +163,7 @@ zypper \ (if verbose then "--verbo...
2010 Sep 13
3
[PATCH 1/4] Check that we're not overwriting an existing Libvirt domain
...([^@]*))?@)?(.*)$/ or die(user_message(__x("Unable to parse URI authority: {auth}", diff --git a/lib/Sys/VirtV2V/Target/LibVirt.pm b/lib/Sys/VirtV2V/Target/LibVirt.pm index 574590c..279e93d 100644 --- a/lib/Sys/VirtV2V/Target/LibVirt.pm +++ b/lib/Sys/VirtV2V/Target/LibVirt.pm @@ -145,8 +145,10 @@ sub close package Sys::VirtV2V::Target::LibVirt; -use Sys::VirtV2V::Util qw(user_message); +use Sys::Virt; +use Sys::Virt::Error; +use Sys::VirtV2V::Util qw(user_message); use Locale::TextDomain 'virt-v2v'; =head1 NAME @@ -288,6 +290,33 @@ sub get_volume return...
2012 Feb 12
0
PATCH: multiple BindAddress
...3004:aaaa::beef and if it fails, +# uses default bind strategy, bind on any address diff -rupN orig/openssh-5.9p1/ssh_config.5 openssh-5.9p1/ssh_config.5 --- orig/openssh-5.9p1/ssh_config.5 2011-08-05 23:17:32.000000000 +0300 +++ openssh-5.9p1/ssh_config.5 2012-02-12 16:40:31.502160322 +0200 @@ -145,8 +145,10 @@ or The default is .Dq no . .It Cm BindAddress -Use the specified address on the local machine as the source address of -the connection. +Use the specified address (or addresses seperated by space) on the local machine as the source address of +the connection. This list can be interr...
2003 Mar 11
0
PATCH: rsyncd.conf permission options
...OCAL_INTEGER(lp_force_directory_mode, force_directory_mode) /* local prototypes */ static int strwicmp( char *psz1, char *psz2 ); diff -ur rsync-2.5.5/proto.h rsync-2.5.5-umask/proto.h --- rsync-2.5.5/proto.h Mon Mar 25 04:51:17 2002 +++ rsync-2.5.5-umask/proto.h Sun Mar 2 21:59:03 2003 @@ -145,6 +145,10 @@ char *lp_dont_compress(int ); int lp_timeout(int ); int lp_max_connections(int ); +int lp_create_mask(int ); +int lp_force_create_mode(int ); +int lp_directory_mask(int ); +int lp_force_directory_mode(int ); BOOL lp_load(char *pszFname, int globals_only); int lp_numservices(void);...
2010 Jul 16
0
[LLVMdev] Win32 COFF Support - Patch 3
...n, MCSymbol *Symbol, > - unsigned Size,unsigned ByteAlignment) { > + unsigned Size,unsigned ByteAlignment) { > MCSectionCOFF const *SectionCOFF = > static_cast<MCSectionCOFF const *>(Section); > > @@ -145,10 +344,35 @@ void WinCOFFStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, > } > > void WinCOFFStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) { > + MCDataFragment *Fragment = new MCDataFragment(getSectionData()); > + This really shouldn't be creat...
2010 Jul 14
2
[LLVMdev] Win32 COFF Support - Patch 3
On Sun, Jul 11, 2010 at 6:10 PM, Chris Lattner <clattner at apple.com> wrote: > This probably needs to be slightly tweaked to work with mainline.  I don't see anything objectionable, but I think Daniel needs to review this one. Updated patch to work with mainline. http://github.com/Bigcheese/llvm-mirror/commit/d19a4c82c18afc4830c09b70f02d162292231c94 - Michael Spencer
2017 Apr 15
11
[PATCH RFC (resend) net-next 0/6] virtio-net: Add support for virtio-net header extensions
Curreclty virtion net header is fixed size and adding things to it is rather difficult to do. This series attempt to add the infrastructure as well as some extensions that try to resolve some deficiencies we currently have. First, vnet header only has space for 16 flags. This may not be enough in the future. The extensions will provide space for 32 possbile extension flags and 32 possible
2017 Apr 15
11
[PATCH RFC (resend) net-next 0/6] virtio-net: Add support for virtio-net header extensions
Curreclty virtion net header is fixed size and adding things to it is rather difficult to do. This series attempt to add the infrastructure as well as some extensions that try to resolve some deficiencies we currently have. First, vnet header only has space for 16 flags. This may not be enough in the future. The extensions will provide space for 32 possbile extension flags and 32 possible
2007 Aug 17
0
Branch 'vivi' - 13 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_debugger.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_script_function.c test/trace vivified/core vivified/ui
...+ + g_signal_emit (debugger, signals[SET_VARIABLE], 0, object, variable, value, &retval); + + if (retval) + vivi_debugger_break (VIVI_DEBUGGER (debugger)); +} + +static void vivi_debugger_class_init (ViviDebuggerClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); @@ -145,10 +158,14 @@ vivi_debugger_class_init (ViviDebuggerCl signals[FINISH_FRAME] = g_signal_new ("finish-frame", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, 0, vivi_accumulate_or, NULL, vivi_marshal_BOOLEAN__OBJECT_POINTER, G_TYPE_BOOLEAN, 2, SWFDEC_TYPE_AS_FRAME, G_TYPE_PO...
2007 Apr 18
8
[patch 0/8] Basic infrastructure patches for a paravirtualized kernel
Hi Andrew, This series of patches lays the basic ground work for the paravirtualized kernel patches coming later on. I think this lot is ready for the rough-and-tumble world of the -mm tree. The main change from the last posting is that all the page-table related patches have been moved out, and will be posted separately. Also, the off-by-one in reserving the top of address space has been
2007 Apr 18
8
[patch 0/8] Basic infrastructure patches for a paravirtualized kernel
Hi Andrew, This series of patches lays the basic ground work for the paravirtualized kernel patches coming later on. I think this lot is ready for the rough-and-tumble world of the -mm tree. The main change from the last posting is that all the page-table related patches have been moved out, and will be posted separately. Also, the off-by-one in reserving the top of address space has been
2017 Sep 08
2
[PATCH] RFC: v2v: add and use libvirt connection objects
...l_libvirtconn (virConnectPtr conn) +{ + CAMLparam0 (); + CAMLlocal1 (rv); + + rv = caml_alloc_custom (&custom_operations, sizeof (virConnectPtr), 0, 1); + Libvirtconn_val (rv) = conn; + + CAMLreturn (rv); +} + + static void ignore_errors (void *ignore, virErrorPtr ignore2) { @@ -111,11 +145,10 @@ libvirt_auth_default_wrapper (virConnectCredentialPtr cred, } } -virStoragePoolPtr +static virStoragePoolPtr connect_and_load_pool (value connv, value poolnamev) { CAMLparam2 (connv, poolnamev); - const char *conn_uri = NULL; const char *poolname; /* We have to assemble the...
2011 Mar 10
1
[PATCH for discussion only] New event API (RHBZ#664558).
...t_bitmask; + guestfs_event_callback cb; + void *opaque; + + /* opaque2 is not exposed through the API, but is used internally to + * emulate the old-style callback API. + */ + void *opaque2; +}; + struct guestfs_h { struct guestfs_h *next; /* Linked list of open handles. */ @@ -133,16 +145,10 @@ struct guestfs_h guestfs_abort_cb abort_cb; guestfs_error_handler_cb error_cb; void * error_cb_data; - guestfs_log_message_cb log_message_cb; - void * log_message_cb_data; - guestfs_subprocess_quit_cb subprocess_quit_cb; - v...
2007 Apr 18
15
[PATCH 0 of 13] Basic infrastructure patches for a paravirtualized kernel
[ REPOST: Apologies to anyone who has seen this before. It didn't make it onto any of the lists it should have. -J ] Hi Andrew, This series of patches lays the basic ground work for the paravirtualized kernel patches coming later on. I think this lot is ready for the rough-and-tumble world of the -mm tree. For the most part, these patches do nothing or very little. The patches should