search for: notifications

Displaying 20 results from an estimated 5862 matches for "notifications".

2018 Jul 02
2
[PATCH vhost] vhost_net: Fix too many vring kick on busypoll
On 2018?06?30? 00:38, Michael S. Tsirkin wrote: > On Fri, Jun 29, 2018 at 05:09:50PM +0900, Toshiaki Makita wrote: >> Under heavy load vhost busypoll may run without suppressing >> notification. For example tx zerocopy callback can push tx work while >> handle_tx() is running, then busyloop exits due to vhost_has_work() >> condition and enables notification but
2018 Jul 02
2
[PATCH vhost] vhost_net: Fix too many vring kick on busypoll
On 2018?06?30? 00:38, Michael S. Tsirkin wrote: > On Fri, Jun 29, 2018 at 05:09:50PM +0900, Toshiaki Makita wrote: >> Under heavy load vhost busypoll may run without suppressing >> notification. For example tx zerocopy callback can push tx work while >> handle_tx() is running, then busyloop exits due to vhost_has_work() >> condition and enables notification but
2019 May 09
2
Push Notification clarification (MessageNew w/o LMTP or LDA)
Hello, Both the examples on the Push Notification wiki page and the XAPS plugin docs seem to suggest or state that LMTP/LDA is required. However IMAP IDLE notifications work without either of these (please no religious discussion of why Dovecot LMTP is the best thing since sliced bread and that everybody should use it). The LUA part of the push notification docs however states that events other than MessageNew are supported. So my question is, when not using LMT...
2020 Mar 17
4
[cfe-dev] RFC: Switching from Bugzilla to Github Issues
...his on Monday >> as well. > > Does this include sending emails for new bugs to llvm-bugs like bugzilla does? I am not sure how many people use llvm-bugs, but at least for me it is how I keep up with new bug reports. > Sending email to llvm-bugs was not planned. Can you use GitHub notifications instead? -Tom > Cheers, > Florian
2010 Nov 30
4
Cucumber+Capybara rails 3 issue (Don't know where exactly)
...User Load (1.1ms) SELECT "users".* FROM "users" WHERE ("users"."login" IS NULL) LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE ("users"."login" IS NULL) LIMIT 1 Notification Load (1.0ms) SELECT "notifications".* FROM "notifications" WHERE ("notifications"."user_id" = 1061) AND ("notifications"."deleted_at" IS NULL) AND ("notifications"."region" = ''top'') ORDER BY type DESC, created_at DESC Rendered partials/_noti...
2019 May 09
1
Push Notification clarification (MessageNew w/o LMTP or LDA)
..., but unwelcome reply. There's a number of things that would simply break (in the sense of not working as people expect) if we were to change to LMTP. Not sure if that's worth it to make IOS users happy who willingly bought into a restrictive environment. > > > However IMAP IDLE notifications work without either of these (please no > > religious discussion of why Dovecot LMTP is the best thing since sliced > > bread and that everybody should use it). > > Without any religion, the IMAP IDLE notifications work because they > notify about different thing. The IDLE n...
2016 May 05
2
Is there a way to override Sieve's "not sending notification for auto-submitted message" behavior?
...n earlier message thread on this list that led me to believe that the default behavior is likely chosen as some sort of safety net to prevent common issues from occurring. What I would like to do is override this behavior at some level (per rule, per user, system-wide, whatever) to allow for Sieve notifications when emails matching a specific pattern are detected regardless of whether they are auto-generated or not. I already found mention in the documentation[1] that the editheader extension refuses to remove the Auto-Submitted header, so setting up a per user or global rule to do just that wouldn't...
2006 Feb 04
6
Best practice: "reaching" through many tables?
...b is designed right now is: table "users" contains the users of the system; their logins, emails, etc. table "titles" contains magazine titles ("Celebrity Spoon Collectors") table "covers" contains individual covers ("Issue 2006.12.A3") table "notifications" describes which users get warnings for a title, and which users get notified when all verifications are complete. It contains user IDs, title IDs, and booleans for "warning" and "verification." table "users" has_many :notifications table "titles" h...
2018 Dec 13
2
kernel vhost demands an interrupt from guest when the ring is full in order to enable guest to submit new packets to the queue
Folks, We came across a memory race condition between VPP vhost driver and the kernel vhost. VPP is running a tap interface over vhost backend. In this case, VPP is acting as the vhost driver mode and the kernel vhost is acting as the vhost device mode. In the kernel vhost?s TX traffic direction which is VPP?s RX traffic direction, kernel vhost is the producer and VPP is the consumer. Kernel
2018 Dec 13
2
kernel vhost demands an interrupt from guest when the ring is full in order to enable guest to submit new packets to the queue
Folks, We came across a memory race condition between VPP vhost driver and the kernel vhost. VPP is running a tap interface over vhost backend. In this case, VPP is acting as the vhost driver mode and the kernel vhost is acting as the vhost device mode. In the kernel vhost?s TX traffic direction which is VPP?s RX traffic direction, kernel vhost is the producer and VPP is the consumer. Kernel
2016 May 05
2
Is there a way to override Sieve's "not sending notification for auto-submitted message" behavior?
...onsider doing something in the MTA like removing the Auto-Submitted header before delivery Thank you for taking the time to read my email and offer suggestions! I was starting to think the same thing. I've been thinking about using a local alias to pipe to a script to handle generating my own notifications for Google Calendar emails. I also thought about creating some sort of filter/milter to just strip out the header for those emails before letting the Sieve filter handle the rest, but I've not yet had a chance to research just how to go about that. > or of course you can just send your noti...
2019 Apr 11
3
Lua Push Notification Plugin
Thanks AKI! I'm a step closer to achieving my goals. However, I'm getting a new error as indicated from below: Apr 11 01:45:34 lmtp(user at mydomain.com)<20801><pVlIEJ7wrlxBUQAAUdwEFQ>:*Debug: push-notification-ox: Skipped because not active (/private/vendor/vendor.dovecot/pvt/server/vendor/vendor.dovecot/http-notify METADATA not set)* Apr 11 01:45:34 lmtp(user at
2016 Jan 25
0
Notification of file modification in subdirectories not working
Hi Volker Thanks for reply. managed to capture Samba logs 4.2.7 in debug 10 Subsribed to events on path /watchfolder recursively. First notification is renaming a folder in a subfolder, path /watchfolder/test/renamed - that works OK. Second notification is on path /watchfolder/test/subfile.txt and editing that in Notepad on another Windows 7 machine via UNC path That does not show
2011 May 11
3
Constructing an array of stuff (to send multiple apple push notifications)
I''m using this gem https://github.com/justintv/APNS to send push notifications to an iPhone app and amazingly it works for single notifications, such that I can do... APNS.send_notification(Device.first.device_token,''test message'') Works great... Now it should be a simple task (as per the docs to send multiple notifications) Gem says like this... device...
2006 Nov 15
1
Tripp Lite OMNI900LCD
...ject UPS.PowerSummary.PresentStatus.TLDischarging Can't find object UPS.PowerSummary.PresentStatus.TLCharging Can't find object UPS.PowerSummary.PresentStatus.TLNeedReplacement upsdrv_updateinfo... dstate_init: sock /var/state/ups/newhidups-auto open on fd 5 upsdrv_updateinfo... Waiting for notifications... =>Got 1 HID Objects... battery.charge = 83 upsdrv_updateinfo... Waiting for notifications... =>Got 8 HID Objects... ups.status = !shutdownimm ups.status = online ups.status = chrg ups.status = !dischrg ups.status = !replacebatt find_hid_info: unknown variable: UPS.PowerSummary.PresentSta...
2023 Mar 05
1
[PATCH net] virtio-net: unify notifications coalescing structs
Unify virtio_net_ctrl_coal_tx and virtio_net_ctrl_coal_rx structs into a single struct, virtio_net_ctrl_coal, as they are identical. This patch follows the VirtIO spec patch: https://lists.oasis-open.org/archives/virtio-comment/202302/msg00431.html Signed-off-by: Alvaro Karsz <alvaro.karsz at solid-run.com> --- drivers/net/virtio_net.c | 15 +++++++--------
2007 Mar 08
4
ocfs2 cluster becomes unresponsive
We are running OCFS2 on SLES9 machines using a FC SAN. Without warning both nodes will become unresponsive. Can not access either machine via ssh or terminal (hangs after typing in username). However the machine still responds to pings. This continues until one node is rebooted, at which time the second node resumes normal operations. I am not entirely sure that this is an OCFS2 problem at all
2016 Jan 22
2
Notification of file modification in subdirectories not working
On Thu, Jan 21, 2016 at 04:57:34AM -0800, ivenhov wrote: > Hi > > Does anyone had similar issues in the past? > I still cannot find reason why notification of file modification of files in > subdirs is not visible on client machines Someone needs to send network traces and debug level 10 logs for this. And try to reproduce the same against a Windows server. Volker -- SerNet
2018 Jun 29
5
[PATCH vhost] vhost_net: Fix too many vring kick on busypoll
Under heavy load vhost busypoll may run without suppressing notification. For example tx zerocopy callback can push tx work while handle_tx() is running, then busyloop exits due to vhost_has_work() condition and enables notification but immediately reenters handle_tx() because the pushed work was tx. In this case handle_tx() tries to disable notification again, but when using event_idx it by
2018 Jun 29
5
[PATCH vhost] vhost_net: Fix too many vring kick on busypoll
Under heavy load vhost busypoll may run without suppressing notification. For example tx zerocopy callback can push tx work while handle_tx() is running, then busyloop exits due to vhost_has_work() condition and enables notification but immediately reenters handle_tx() because the pushed work was tx. In this case handle_tx() tries to disable notification again, but when using event_idx it by