search for: extra_info

Displaying 8 results from an estimated 8 matches for "extra_info".

2007 May 01
1
R CMD Rdconv drops sections: arguments, seealso, examples (PR#9649)
...ed ones, hence report error. + if ($complete_text =~ /([{}])/s) { + # Would like to tell which which line has unmatched { or }, + # but lines starting with % have already been removed. + # Hence the 'on or after' in the message. + my $badlineno=0 ; + my $extra_info = "(\'$1\')" ; + if ($complete_text =~ /(\\\w+{)/) { + $extra_info = "(\'$1\')" ; + } + foreach my $line (split /\n/, $complete_text) { + $badlineno++; + last if ($line =~ /[{}]/) ; + } + die "Rdconv...
2008 Mar 08
2
question on large send offload
...ore considering offload (a windows variable) to 2, then I seem to get hangs. If I set it to 4 then everything appears to be okay. If the mss is 1460 (normal for Ethernet), then 2 * 1460 = 2920, which will often fit into one page, in which case the ring looks like: 0: tx_request - flags |= NETTXF_extra_info 1: extra_info If the 2920 bytes were on more than one page, then the ring would look like: 0: tx_request - flags |= NETTXF_extra_info | NETTXF_more_data 1: extra_info 2: tx_request - no change to flags The behaviour I''m seeing is that I''ll get a bunch of packets working just fi...
2013 Mar 07
1
HELP:Custom function didn't work
...tions newfunction(:hosttype, :type => :rvalue, :doc => "Gets host type from db.") do |args| dbh = Mysql.real_connect("mysql_server_ip", "username", "password", "puppet") res = dbh.query("SELECT host_type FROM host_extra_info where name=''" + args[0] + "''") # return res.fetch_row puts res.fetch_row res.free dbh.close if dbh end end - Also I wrote a .pp file to test it: #/tmp/1.pp $extraaaaa = hosttype("my_hostname") notify...
2007 Apr 30
1
R CMD Rdconv drops sections: arguments, seealso, examples (PR#9645)
On Tue, 10 Apr 2007 timh at insightful.com wrote: > I've created a .Rd file (below), then converted that to .sgml using > R CMD Rdconv --type=Ssgm combn.Rd > combn.sgml > The output (shown below) is missing some of the sections: > arguments > seealso > examples > If instead I convert to .d (below), the same sections are missing, > and the "note"
2001 Oct 17
1
save cpu !
Hello everybody ! I have just installed Wine. I have test it with several programs and I find it is wonderfull ! When I am running MSWLogo (a Logo environment) on Wine, it eats all my CPU. The problem is not very important if I start one session, but if I start several sessions, it becomes a real problem. In our school we have a big Linux server and 24 x-terms ... Is it possible to introduce a
2013 Jul 02
3
[PATCH RFC] xen-netback: remove guest RX path dependence on MAX_SKB_FRAGS
...k) wake_up(&netbk->wq); } -static int max_required_rx_slots(struct xenvif *vif) -{ - int max = DIV_ROUND_UP(vif->dev->mtu, PAGE_SIZE); - - /* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */ - if (vif->can_sg || vif->gso || vif->gso_prefix) - max += MAX_SKB_FRAGS + 1; /* extra_info + frags */ - - return max; -} - int xen_netbk_rx_ring_full(struct xenvif *vif) { - RING_IDX peek = vif->rx_req_cons_peek; - RING_IDX needed = max_required_rx_slots(vif); + RING_IDX peek = vif->rx_req_cons_peek; - return ((vif->rx.sring->req_prod - peek) < needed) || - ((...
2013 Oct 10
3
[PATCH net-next v3 5/5] xen-netback: enable IPv6 TCP GSO to the guest
...slots(struct xenvif *vif) int max = DIV_ROUND_UP(vif->dev->mtu, PAGE_SIZE); /* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */ - if (vif->can_sg || vif->gso || vif->gso_prefix) + if (vif->can_sg || vif->gso_mask || vif->gso_prefix_mask) max += MAX_SKB_FRAGS + 1; /* extra_info + frags */ return max; @@ -312,6 +312,7 @@ static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif *vif, req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++); meta = npo->meta + npo->meta_prod++; + meta->gso_type = 0; meta->gso_size = 0; meta->size = 0;...
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all, this is the long awaited patch series to add xen device model support in qemu; the main author is Anthony Perard. Developing this series we tried to come up with the cleanest possible solution from the qemu point of view, limiting the amount of changes to common code as much as possible. The end result still requires a couple of hooks in piix_pci but overall the impact should be very