search for: replenish

Displaying 20 results from an estimated 40 matches for "replenish".

Did you mean: replenished
2013 Jun 24
3
[PATCH v2] xen-netback: add a pseudo pps rate limit
...igned long now = jiffies; + unsigned long next_credit = + vif->credit_timeout.expires + + msecs_to_jiffies(vif->credit_usec / 1000); + + /* Timer could already be pending in rare cases. */ + if (timer_pending(&vif->credit_timeout)) + return true; + + /* Passed the point where we can replenish credit? */ + if (time_after_eq(now, next_credit)) { + vif->credit_timeout.expires = now; + tx_add_packets(vif); + } + + /* Not enough slot to send right now? Set a callback. */ + if (vif->remaining_packets < 1) { + vif->credit_timeout.data = + (unsigned long)vif; + vif->cre...
2006 Jun 24
6
Few questions
...lements must go or how they would be layout out. 2- Once the form is created, user fills in the info, hits the submit button, I will have an additonal div where I want to display the post form data. Anything within prototype to help facilitate ? 3- Last tricky thing is I''d like a way to replenish the palette, so when a text field gets used another would appear. My apologies if this goes beyond the subject matter for the list. Any pointers / links, would be greatly appreciated. TIA Stuart
2013 Oct 28
3
[PATCH net V2] xen-netback: use jiffies_64 value to calculate credit timeout
time_after_eq() only works if the delta is < MAX_ULONG/2. For a 32bit Dom0, if netfront sends packets at a very low rate, the time between subsequent calls to tx_credit_exceeded() may exceed MAX_ULONG/2 and the test for timer_after_eq() will be incorrect. Credit will not be replenished and the guest may become unable to send packets (e.g., if prior to the long gap, all credit was exhausted). Use jiffies_64 variant to mitigate this problem for 32bit Dom0. Suggested-by: Jan Beulich <jbeulich@suse.com> Signed-off-by: Wei Liu <wei.liu2@citrix.com> Cc: Ian Campbell &lt...
2009 Mar 29
1
problems importing file
hi ladies and gentlemen of the R community. i'm federico an italian student of statistics and i've got an issue to submit to you: i've got a huge file.txt replenished of blank values (over a milion of them). by importing it into R the read.table() function higlights missing objects per row and declares an error. there's any way i can detail into the read.table() function to assign to the blank fields a logical NA, so that importing can be concluded succe...
2011 Mar 09
2
Complex sampling?
...e sample, where the distribution of variable DOW is random with respect to WEEK. To accomplish this I need to randomly sample without replacement two weekdays per week for each of 27 weeks (only 5 are shown). However, I need to sample from a sequence (3:7) that needs to be completely depleted and replenished until the final selection is made. Here is an example of what I want to do, beginning at WEEK 1. I would prefer to do this without using a loop, if possible. sample frame: [3,4,5,6,7] --> [4,5,6] --> [4],[1,2,3,(4),5,6] --> [1,2,4,5,6] --> for each WEEK in dataframe Randomly samp...
2017 Oct 10
2
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
..._balloon_ctrlq_cmd *cmd, > > > + bool inbuf) > > > +{ > > > + struct virtqueue *vq = vb->ctrl_vq; > > > + > > > + ctrlq_add_cmd(vq, cmd, inbuf); > > > + if (!inbuf) { > > > + /* > > > + * All the input cmd buffers are replenished here. > > > + * This is necessary because the input cmd buffers are lost > > > + * after live migration. The device needs to rewind all of > > > + * them from the ctrl_vq. > > > > Confused. Live migration somehow loses state? Why is that and why is it...
2017 Oct 10
2
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
..._balloon_ctrlq_cmd *cmd, > > > + bool inbuf) > > > +{ > > > + struct virtqueue *vq = vb->ctrl_vq; > > > + > > > + ctrlq_add_cmd(vq, cmd, inbuf); > > > + if (!inbuf) { > > > + /* > > > + * All the input cmd buffers are replenished here. > > > + * This is necessary because the input cmd buffers are lost > > > + * after live migration. The device needs to rewind all of > > > + * them from the ctrl_vq. > > > > Confused. Live migration somehow loses state? Why is that and why is it...
2013 May 10
1
Samba 3 member, winbind caching and DC availability
...y is critical. Is it recommended to just disable all Winbind caching entirely? Or do just the opposite and try to cache as much as ever possible? What are the practical effects of winbind cache time and idmap cache time smb.conf options in this situation? Also, are the caches for all accounts "replenished" every time the cache of any account expires, or in per-account basis? And do the idmap cache times even work in a predictable way with this old Samba, where bug 8658 still unfixed? Or should I just try to upgrade as soon as possible? I build a test box similar to the actual box receiving...
2005 Apr 04
1
need any advises for code optimization.
...;-sd(pv$c) #make a list of points to drop from current subset td<-subset(pv,abs(c-mean.c)>sd.c*mult.sigma) if(length(td$c)>0){ #check which of these point are already already in the list to drop td.index<-which(row.names(td) %in% row.names(to.drop)) #and replenish the list of points to drop to.drop<-rbind(to.drop,if(length(td.index)>0) td[-td.index,] else td) #print out the message showing, we're alive (these messages will #not appear regularly, that's OK) if(length(td.index)!=length(td$c)) print(c("i=",i,&...
2006 May 07
2
Need a Service that allows me to call Toll Free Outbound numbers
Simple as that please email me direct. voipviews@gmail.com Also looking for a U.S. DID provider as well as orig provider.
2017 Oct 11
2
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
...t; > > +{ > > > > > + struct virtqueue *vq = vb->ctrl_vq; > > > > > + > > > > > + ctrlq_add_cmd(vq, cmd, inbuf); > > > > > + if (!inbuf) { > > > > > + /* > > > > > + * All the input cmd buffers are replenished here. > > > > > + * This is necessary because the input cmd buffers are lost > > > > > + * after live migration. The device needs to rewind all of > > > > > + * them from the ctrl_vq. > > > > Confused. Live migration somehow loses sta...
2017 Oct 11
2
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
...t; > > +{ > > > > > + struct virtqueue *vq = vb->ctrl_vq; > > > > > + > > > > > + ctrlq_add_cmd(vq, cmd, inbuf); > > > > > + if (!inbuf) { > > > > > + /* > > > > > + * All the input cmd buffers are replenished here. > > > > > + * This is necessary because the input cmd buffers are lost > > > > > + * after live migration. The device needs to rewind all of > > > > > + * them from the ctrl_vq. > > > > Confused. Live migration somehow loses sta...
2017 Oct 11
0
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
...md *cmd, >>>> + bool inbuf) >>>> +{ >>>> + struct virtqueue *vq = vb->ctrl_vq; >>>> + >>>> + ctrlq_add_cmd(vq, cmd, inbuf); >>>> + if (!inbuf) { >>>> + /* >>>> + * All the input cmd buffers are replenished here. >>>> + * This is necessary because the input cmd buffers are lost >>>> + * after live migration. The device needs to rewind all of >>>> + * them from the ctrl_vq. >>> Confused. Live migration somehow loses state? Why is that and why is it a...
2005 Jun 27
0
Re: teliax [Was: LiveVoip is Bankrupt]
...rupt] > >For the pay as you go plan, there is no set up fee. The $10 they have >listed is the minimum increment you buy minutes with. When you first sign >up, you pay $10 and get $10 worth of minutes. Then you can manually pay >more to add to your account balance or use there auto replenish setup. The >only fees I've run across so far are for LNP's. > > >At 08:26 AM 6/27/2005, you wrote: > >I think the $10 is setup, as you will notice all the others mention > >the monthly next to the rate. > >I was confused also. (Hint Teliax) > > > >O...
2017 Oct 01
2
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
...+static void ctrlq_send_cmd(struct virtio_balloon *vb, > + struct virtio_balloon_ctrlq_cmd *cmd, > + bool inbuf) > +{ > + struct virtqueue *vq = vb->ctrl_vq; > + > + ctrlq_add_cmd(vq, cmd, inbuf); > + if (!inbuf) { > + /* > + * All the input cmd buffers are replenished here. > + * This is necessary because the input cmd buffers are lost > + * after live migration. The device needs to rewind all of > + * them from the ctrl_vq. Confused. Live migration somehow loses state? Why is that and why is it a good idea? And how do you know this is migratio...
2017 Oct 01
2
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
...+static void ctrlq_send_cmd(struct virtio_balloon *vb, > + struct virtio_balloon_ctrlq_cmd *cmd, > + bool inbuf) > +{ > + struct virtqueue *vq = vb->ctrl_vq; > + > + ctrlq_add_cmd(vq, cmd, inbuf); > + if (!inbuf) { > + /* > + * All the input cmd buffers are replenished here. > + * This is necessary because the input cmd buffers are lost > + * after live migration. The device needs to rewind all of > + * them from the ctrl_vq. Confused. Live migration somehow loses state? Why is that and why is it a good idea? And how do you know this is migratio...
2017 Oct 02
0
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
...lloon *vb, > > + struct virtio_balloon_ctrlq_cmd *cmd, > > + bool inbuf) > > +{ > > + struct virtqueue *vq = vb->ctrl_vq; > > + > > + ctrlq_add_cmd(vq, cmd, inbuf); > > + if (!inbuf) { > > + /* > > + * All the input cmd buffers are replenished here. > > + * This is necessary because the input cmd buffers are lost > > + * after live migration. The device needs to rewind all of > > + * them from the ctrl_vq. > > Confused. Live migration somehow loses state? Why is that and why is it a good > idea? And ho...
2005 May 11
5
IAX.CC/SixTel
Anyone have an opinion about these guys and their recent performance? I need some local DIDs and they provide for my area code.... Thanks, Wiley -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050511/365bc7b0/attachment.htm
2007 Apr 18
1
[Bridge] [BUG/PATCH/RFC] bridge: locally generated broadcast traffic may block sender
...to be delivered before handing it to the clone loop in br_flood_deliver(), calling br_flood(). skb_orphan() disassociates the sk_buff from its owning socket and runs the "destructor" attached to the sk_buff, which restores the wmem_alloc quota of the sending socket. If the wmem_alloc is replenished, the application won't block and keep sending the broadcast messages to all available bridge ports. The transmit queue of the link-down port will eventually fill up, but the same happens currently when the non-first port goes link-down, without obvious hazards. The sk_buff will be freed as pa...
2017 Oct 12
0
[PATCH v16 5/5] virtio-balloon: VIRTIO_BALLOON_F_CTRL_VQ
...>>> +{ >>>>>> + struct virtqueue *vq = vb->ctrl_vq; >>>>>> + >>>>>> + ctrlq_add_cmd(vq, cmd, inbuf); >>>>>> + if (!inbuf) { >>>>>> + /* >>>>>> + * All the input cmd buffers are replenished here. >>>>>> + * This is necessary because the input cmd buffers are lost >>>>>> + * after live migration. The device needs to rewind all of >>>>>> + * them from the ctrl_vq. >>>>> Confused. Live migration somehow loses st...