Re: [RFC v5 4/6] usb: gadget: configfs: Check USB configuration before adding

2020-08-31 Thread Wesley Cheng
On 8/30/2020 7:29 PM, Peter Chen wrote: > On 20-08-28 22:58:44, Wesley Cheng wrote: >> Ensure that the USB gadget is able to support the configuration being >> added based on the number of endpoints required from all interfaces. This >> is for accounting for any bandwidth

[RFC v5 6/6] usb: dwc3: gadget: Ensure enough TXFIFO space for USB configuration

2020-08-28 Thread Wesley Cheng
fifo requirements, a single fifo per endpoint, can be met, otherwise the configuration binding will fail. This will be based on the maximum number of eps existing in all configurations. Signed-off-by: Wesley Cheng --- drivers/usb/dwc3/core.h | 1 + drivers/usb/dwc3/gadget.c | 35

[RFC v5 4/6] usb: gadget: configfs: Check USB configuration before adding

2020-08-28 Thread Wesley Cheng
Ensure that the USB gadget is able to support the configuration being added based on the number of endpoints required from all interfaces. This is for accounting for any bandwidth or space limitations. Signed-off-by: Wesley Cheng --- drivers/usb/gadget/configfs.c | 22 ++ 1

[RFC v5 5/6] usb: gadget: udc: core: Introduce check_config to verify USB configuration

2020-08-28 Thread Wesley Cheng
: Wesley Cheng --- drivers/usb/gadget/udc/core.c | 9 + include/linux/usb/gadget.h| 2 ++ 2 files changed, 11 insertions(+) diff --git a/drivers/usb/gadget/udc/core.c b/drivers/usb/gadget/udc/core.c index c33ad8a333ad..e006d69dff9b 100644 --- a/drivers/usb/gadget/udc/core.c +++ b

[RFC v5 3/6] dt-bindings: usb: dwc3: Add entry for tx-fifo-resize

2020-08-28 Thread Wesley Cheng
Re-introduce the comment for the tx-fifo-resize setting for the DWC3 controller. This allows for vendors to control if they require the TX FIFO resizing logic on their HW, as the default FIFO size configurations may already be sufficient. Signed-off-by: Wesley Cheng Acked-by: Rob Herring

[RFC v5 2/6] arm64: boot: dts: qcom: sm8150: Enable dynamic TX FIFO resize logic

2020-08-28 Thread Wesley Cheng
Enable the flexible TX FIFO resize logic on SM8150. Using a larger TX FIFO SZ can help account for situations when system latency is greater than the USB bus transmission latency. Signed-off-by: Wesley Cheng --- arch/arm64/boot/dts/qcom/sm8150.dtsi | 1 + 1 file changed, 1 insertion(+) diff

[RFC v5 0/6] Re-introduce TX FIFO resize for larger EP bursting

2020-08-28 Thread Wesley Cheng
Data Size | AVG tput (in MB/s) --- Sequential|1 GB x | Read |9 loops| 287.35 | | 304.94 | | 289.64 | | 293.61 ------- Wesley Cheng (6): usb: dwc3:

[RFC v5 1/6] usb: dwc3: Resize TX FIFOs to meet EP bursting requirements

2020-08-28 Thread Wesley Cheng
bandwidth. With some higher bMaxBurst configurations, using a larger TX FIFO size results in better TX throughput. Ensure that one TX FIFO is reserved for every IN endpoint. This allows for the FIFO logic to prevent running out of FIFO space. Signed-off-by: Wesley Cheng --- drivers/usb/dwc3

[PATCH v2] usb: dwc3: Stop active transfers before halting the controller

2020-08-28 Thread Wesley Cheng
properly, there is a chance the controller will continue accessing stale or freed TRBs and buffers. Signed-off-by: Wesley Cheng --- Changes in v2: - Moved cleanup code to the pullup() API to differentiate between device disconnect and hibernation. - Added cleanup code to the bus reset case as

[squid-users] filter access.log

2020-08-28 Thread Wesley Mouedine Assaby
Hi, I have the following logs : 1598547651.549 120818 192.168.100.105 TCP_TUNNEL/200 3234 CONNECT dmp.re:443 ericf HIER_DIRECT/213.186.33.2 - 1598547651.549 120726 192.168.100.105 TCP_TUNNEL/200 3234 CONNECT www.dmp.re:443 ericf HIER_DIRECT/213.186.33.2 - 1598547652.325 0 192.168.100.109

[ovirt-users] Host has no default route

2020-08-26 Thread Wesley Stewart
I am trying to add a host to a single host cluster. Everything has gone pretty well so far, except when the host gets to the end of the installation process, I see an exclamation mark indicating "Host has no default route". The installation "finishes" and the host goes into a non-responsive state

How to read an element inside another element in json with UpdateRecord

2020-08-25 Thread Wesley C. Dias de Oliveira
vl.1.youtube", 0.387847], ["2020-08-25", "59.m.vl.1.youtube", 72.637692], ["2020-08-25", "62.b.vl.1.youtube", 1.397887] ] For example, I need to get the value '59.m.vl.1.youtube' or the date value '2020-08-25'. Here's my processor settings: [image: image.png] Can someone suggest something? Thank you. -- Grato, Wesley C. Dias de Oliveira. Linux User nº 576838.

Re: [google-appengine] "Google Cloud API" was not in in "Adding credentials to the project".

2020-08-22 Thread wesley chun
ree to ask here but paste any specific commands or screenshots showing where you may have an issue. Good luck! --Wesley On Sat, Aug 22, 2020 at 11:53 AM I snb wrote: > In the console of Google cloud platform, I created project name -> Google > cloud API -> Credentials. However, "Go

[rdo-dev] RDO packaging for CentOS-Stream

2020-08-21 Thread Wesley Hayutin
Greetings, Are there any public plans for building RDO packages on CentOS-Stream available for the community to review? Thanks 0/ ___ dev mailing list dev@lists.rdoproject.org http://lists.rdoproject.org/mailman/listinfo/dev To unsubscribe: dev-unsubsc

Re: [PATCH v8 4/4] arm64: boot: dts: qcom: pm8150b: Add DTS node for PMIC VBUS booster

2020-08-20 Thread Wesley Cheng
On 8/12/2020 2:34 AM, Sergei Shtylyov wrote: > Hello! > > On 12.08.2020 10:19, Wesley Cheng wrote: > >> Add the required DTS node for the USB VBUS output regulator, which is >> available on PM8150B.  This will provide the VBUS source to connected >> peripheral

Re: [PATCH] usb: dwc3: Stop active transfers before halting the controller

2020-08-19 Thread Wesley Cheng
On 8/19/2020 2:42 PM, Thinh Nguyen wrote: > Hi, > > Wesley Cheng wrote: >> In the DWC3 databook, for a device initiated disconnect, the driver is >> required to send dependxfer commands for any pending transfers. >> In addition, before the controller can move

Re: [PATCH] usb: dwc3: Stop active transfers before halting the controller

2020-08-19 Thread Wesley Cheng
On 8/19/2020 4:37 AM, Felipe Balbi wrote: > > Hi, > > Wesley Cheng writes: >> In the DWC3 databook, for a device initiated disconnect, the driver is >> required to send dependxfer commands for any pending transfers. >> In addition, before the controller can mo

[ceph-users] Re: radosgw beast access logs

2020-08-19 Thread Wesley Dillingham
We would very much appreciate having this backported to nautilus. Respectfully, *Wes Dillingham* w...@wesdillingham.com LinkedIn On Wed, Aug 19, 2020 at 9:02 AM Casey Bodley wrote: > On Tue, Aug 18, 2020 at 1:33 PM Graham Allan wrote: > > > > Are

[PATCH] usb: dwc3: Stop active transfers before halting the controller

2020-08-18 Thread Wesley Cheng
is a chance the controller will continue accessing stale or freed TRBs and buffers. Signed-off-by: Wesley Cheng --- Verified fix by adding a check for ETIMEDOUT during the run stop call. Shell script writing to the configfs UDC file to trigger disconnect and connect. Batch script to have PC

Re: [RFC v4 1/3] usb: dwc3: Resize TX FIFOs to meet EP bursting requirements

2020-08-18 Thread Wesley Cheng
On 8/12/2020 11:34 AM, Wesley Cheng wrote: >> >> awesome, thanks a lot for this :-) It's a considerable increase in your >> setup. My only fear here is that we may end up creating a situation >> where we can't allocate enough FIFO for all endpoints. This is,

[Mpi-forum] Add No-No Vote for #263

2020-08-17 Thread Wesley Bland via mpi-forum
Hi all, I need to add a very short no-no reading/vote for this week on #263 - Clarification: Section 11.7 - p. 482 - MPI Exception Clarification https://github.com/mpi-forum/mpi-issues/issues/263 Jeff S. found a very minor mistake where I re

Re: [google-appengine] Receiving data from Google Cloud

2020-08-17 Thread wesley chun
ks a lot. Now I got an idea on how to proceed. Also please explain to > me in case there are multiple requests how GCP will handle them - is there > any load balancer? This is because the project is time-critical. > > On Sunday, August 16, 2020 at 1:56:44 AM UTC+5:30, Wesley C (Google) wro

Re: [google-appengine] Receiving data from Google Cloud

2020-08-15 Thread wesley chun
function, all from your browser. The Quickstart sample <https://cloud.google.com/functions/docs/quickstart-python> code is already dropped into the editor and ready for you to modify." Good luck! --Wesley On Fri, Aug 14, 2020 at 11:37 PM Vishnu U wrote: > My aim is like i want to pe

Re: [google-appengine] Receiving data from Google Cloud

2020-08-14 Thread wesley chun
loud storage or cloud data store. > Suppose I received data on app engine from raspberry pi and I perform some > calculation and want to return that data. Is this possible? > On Sat, 15 Aug 2020 at 6:45 AM, wesley chun wrote: > >> While App Engine will serve your needs, based on what

Re: [google-appengine] Receiving data from Google Cloud

2020-08-14 Thread wesley chun
p you want to call in a Docker container, then you should use Google Cloud Run <http://cloud.google.com/run> instead. App Engine is best suited for normal web apps like Flask or Django. Hope this helps! --Wesley On Fri, Aug 14, 2020 at 7:28 AM Vishnu U wrote: > I am working on a projec

Re: [Mpi-forum] August 2020 Meeting Registration Page

2020-08-14 Thread Wesley Bland via mpi-forum
s after each block opens (though voting as soon as the block opens is appreciated to allow me to tally the votes faster). If you have any questions, feel free to email me or send me a Slack message. Thanks, Wes > On Aug 4, 2020, at 3:54 PM, Wesley Bland wrote: > > Hi all, > >

Re: [RFC v4 1/3] usb: dwc3: Resize TX FIFOs to meet EP bursting requirements

2020-08-12 Thread Wesley Cheng
On 8/11/2020 12:12 AM, Felipe Balbi wrote: > > Hi, > > Wesley Cheng writes: >> On 8/10/2020 5:27 AM, Felipe Balbi wrote: >>> Wesley Cheng writes: >>> >>> Hi, >>> >>>> Some devices have USB compositions which may require mul

[ceph-users] Meaning of the "tag" key in bucket metadata

2020-08-12 Thread Wesley Dillingham
Recently we encountered an instance of bucket corruption of two varieties. One in which the bucket metadata was missing and another in which the bucket.instance metadata was missing for various buckets. We have seemingly been successful in restoring the metadata by reconstructing it from the remai

[PATCH v8 4/4] arm64: boot: dts: qcom: pm8150b: Add DTS node for PMIC VBUS booster

2020-08-12 Thread Wesley Cheng
Add the required DTS node for the USB VBUS output regulator, which is available on PM8150B. This will provide the VBUS source to connected peripherals. Signed-off-by: Wesley Cheng --- arch/arm64/boot/dts/qcom/pm8150b.dtsi | 6 ++ arch/arm64/boot/dts/qcom/sm8150-mtp.dts | 4 2 files

[PATCH v8 3/4] arm64: boot: dts: qcom: pm8150b: Add node for USB type C block

2020-08-12 Thread Wesley Cheng
The PM8150B has a dedicated USB type C block, which can be used for type C orientation and role detection. Create the reference node to this type C block for further use. Signed-off-by: Wesley Cheng --- arch/arm64/boot/dts/qcom/pm8150b.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff

[PATCH v8 0/4] Introduce PMIC based USB type C detection

2020-08-12 Thread Wesley Cheng
ole switch handle for the role notifications. It will also have the ability to enable the VBUS output to any connected devices based on if the device is behaving as a UFP or DFP. Wesley Cheng (4): usb: typec: Add QCOM PMIC typec detection driver dt-bindings: usb: Add Qualcomm PMIC type C con

[PATCH v8 1/4] usb: typec: Add QCOM PMIC typec detection driver

2020-08-12 Thread Wesley Cheng
it can enable/disable the VBUS source when acting as a host/device. Signed-off-by: Wesley Cheng Acked-by: Heikki Krogerus Reviewed-by: Stephen Boyd --- drivers/usb/typec/Kconfig | 12 ++ drivers/usb/typec/Makefile | 1 + drivers/usb/typec/qcom-pmic-typec.c | 271

[PATCH v8 2/4] dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding

2020-08-12 Thread Wesley Cheng
include a role switch node and a type C switch. Signed-off-by: Wesley Cheng --- .../bindings/usb/qcom,pmic-typec.yaml | 112 ++ 1 file changed, 112 insertions(+) create mode 100644 Documentation/devicetree/bindings/usb/qcom,pmic-typec.yaml diff --git a/Documentation/devicetree

Re: [RFC v4 1/3] usb: dwc3: Resize TX FIFOs to meet EP bursting requirements

2020-08-12 Thread Wesley Cheng
On 8/11/2020 7:22 PM, Peter Chen wrote: > On Wed, Jun 24, 2020 at 10:31 AM Wesley Cheng wrote: >> >> Some devices have USB compositions which may require multiple endpoints >> that support EP bursting. HW defined TX FIFO sizes may not always be >> sufficient

Re: [RFC v4 1/3] usb: dwc3: Resize TX FIFOs to meet EP bursting requirements

2020-08-10 Thread Wesley Cheng
On 8/10/2020 5:27 AM, Felipe Balbi wrote: > Wesley Cheng writes: > > Hi, > >> Some devices have USB compositions which may require multiple endpoints >> that support EP bursting. HW defined TX FIFO sizes may not always be >> sufficient for these compositions.

Re: Hopefully a simple question

2020-08-10 Thread Wesley Shields
a positive for something being detected? > > On Tuesday, 11 August 2020 10:41:48 UTC+10, Wesley Shields wrote: > The format is . > > In your case, YARA matched two rules on the file c:\Temp\yarfile.yar > > -- WXS > >> On Aug 10, 2020, at 8:33 PM, Michael Fry > w

Re: Hopefully a simple question

2020-08-10 Thread Wesley Shields
The format is . In your case, YARA matched two rules on the file c:\Temp\yarfile.yar -- WXS > On Aug 10, 2020, at 8:33 PM, Michael Fry wrote: > > Hi All, > > So I have recently been asked to use Yara to scan some servers for some IOCs > and I am using the command line version. > > The yar

Re: unsubscribe

2020-08-10 Thread Wesley Peng
Please send an empty message to: user-unsubscr...@ignite.apache.org to unsubscribe yourself from the list. Sijo Mathew wrote:

Re: [PATCH 3/3] usb: dwc3: dwc3-qcom: Find USB connector and register role switch

2020-08-10 Thread Wesley Cheng
On 8/10/2020 5:13 AM, Felipe Balbi wrote: > > Hi, > > Wesley Cheng writes: >> @@ -190,6 +195,73 @@ static int dwc3_qcom_register_extcon(struct dwc3_qcom >> *qcom) >> return 0; >> } >> >> +static int dwc3_qco

Re: run ignitevisorcmd in k8s and docker?

2020-08-06 Thread Wesley Peng
Hi bbweb wrote: we are meeting problem when we run ignitevisorcmd in K8S and docker environment. After we start a cluster in K8S and run ignitevisorcmd in the node, it just can't find any node when running "top" in it, it just show empty topology. Do you have any error log? Are you sure igni

Re: Call for presentations for ApacheCon North America 2020 now open

2020-08-05 Thread Wesley Peng
Congrats. We could prepare a talking for "machine learning application with Ignite", as we did store feature engineering data into ignite for large-scale and fast access. regards. Saikat Maitra wrote: Congrats!!! It looks like both of our talks are on same day, Tuesday, September 29th http

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-08-05 Thread Wesley Whetstone
Change by Wesley Whetstone : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue41491> ___ ___ Python-bug

[issue41491] plistlib can't load macOS BigSur system LaunchAgent

2020-08-05 Thread Wesley Whetstone
New submission from Wesley Whetstone : When attempting to load the new LaunchAgent at `/System/Library/LaunchAgents/com.apple.cvmsCompAgent3600_arm64.plist` plistlib Raises a ValueError of File "/opt/salt/lib/python3.7/plistlib.py", line 272, in handle_end_element handle

Re: [Mpi-forum] Virtual meeting recordings dates mixed up

2020-08-05 Thread Wesley Bland via mpi-forum
Hi Ali, You’re right. There was a syntax error in the website that was mixing up some of the dates here. I corrected it and the webpage should be updated soon. Thanks, Wes > On Aug 3, 2020, at 3:53 AM, Ali Omar Abdelazim Mohammed via mpi-forum > wrote: > > Hi all, > > I noticed that the da

Re: Question about deployment of math computing [EXT]

2020-08-05 Thread Wesley Peng
James, James Smith wrote: The services which use apache/mod_perl work reliably and return data for these - the dancer/starman sometimes fail/hang as there are no backends to serve the requests or those backends timeout requests to the nginx/proxy (but still continue using resources). The team

Re: Question about deployment of math computing

2020-08-04 Thread Wesley Peng
Thank you David. That makes thing clear. I have made mistake to think starman was event driven, who is really preforked. I think any preforked server could serve our depolyment better. Regards. dc...@prosentient.com.au wrote: Hi Wesley, I don't know all the ins and outs of Starman.

Re: Question about deployment of math computing

2020-08-04 Thread Wesley Peng
Hi dc...@prosentient.com.au wrote: That's interesting. After re-reading your earlier email, I think that I misunderstood what you were saying. Since this is a mod_perl listserv, I imagine that the advice will always be to use mod_perl rather than starman? Personally, I'd say either option wo

Re: Question about deployment of math computing

2020-08-04 Thread Wesley Peng
Hi dc...@prosentient.com.au wrote: If your app isn't human-facing, then I don't see why a little delay would be a problem? Our app is not human facing. The application by other department will request the result from our app via HTTP. The company has huge big-data stack deployed, such as

Re: Question about deployment of math computing

2020-08-04 Thread Wesley Peng
Hi Mithun Bhattacharya wrote: Do you really need a webserver which is providing a blocking service ? yes, this is a prediction server, which would be deployed in PROD environment, the client application would request the prediction server for results as scores. You can think it as online rec

Question about deployment of math computing

2020-08-04 Thread Wesley Peng
Hi We do math programming (so called machine learning today) in webserver. The response would be slow, generally it will take 100ms~500ms to finish a request. For this use case, shall we deploy the code within preforked modperl ,or event-driven server like dancer/starman? (we don't use DB like

Re: suggestions for perl as web development language [EXT]

2020-08-04 Thread Wesley Peng
jbiskofski wrote: Excelent, stable, FAST, production ready HTTP server: Starman yes starman is good. we use it for rest-api service, the app code is dancer, whose backend server is starman. if we need more concurrent handlers, a simple front-proxy like nginx would be deployed. regards.

Re: suggestions for perl as web development language [EXT]

2020-08-04 Thread Wesley Peng
Hi Mark Blackman wrote: mod_perl’s relative efficiency can be achieved by other well-known means. for example? thank you.

Re: suggestions for perl as web development language [EXT]

2020-08-04 Thread Wesley Peng
Joseph He wrote: My company uses Perl for web development. It handles real time payment transactions without any problem. Good software is made by the people not by the language. Maybe I am weak on this point, but how perl handle types more strictly? for example, 123 + '456' this is permi

[ceph-users] Apparent bucket corruption error: get_bucket_instance_from_oid failed

2020-08-04 Thread Wesley Dillingham
Long running cluster, currently running 14.2.6 I have a certain user whose buckets have become corrupted in that the following commands: radosgw-admin bucket check --bucket radosgw-admin bucket list --bucket= return with the following: ERROR: could not init bucket: (2) No such file or director

[Mpi-forum] August 2020 Meeting Registration Page

2020-08-04 Thread Wesley Bland via mpi-forum
Hi all, Registration for the August 2020 Meeting is now open. Details are on the logistics page on the website, but the link you need to register is here: https://forms.gle/WbmoWm1iMdWS2QEX7 As always, you must be registered in order to attend and vote. In

suggestions for perl as web development language

2020-08-03 Thread Wesley Peng
greetings, My team use all of perl, ruby, python for scripting stuff. perl is stronger for system admin tasks, and data analysis etc. But for web development, it seems to be not as popular as others. It has less selective frameworks, and even we can't get the right people to do the webdev job wi

[Mpi-forum] Reading and Vote Announcements for August 2020 MPI Forum Meeting

2020-08-03 Thread Wesley Bland via mpi-forum
Hi all, Sorry to get these in at the last minute. I was on vacation for the past few weeks and am just getting back in. I have three announcements this time: Errata Reading and Vote - Clarification: Section 11.7 - p. 482 - MPI Exception Clarification Issue - https://github.com/mpi-forum/mpi-iss

[PATCH v7 1/4] usb: typec: Add QCOM PMIC typec detection driver

2020-08-03 Thread Wesley Cheng
it can enable/disable the VBUS source when acting as a host/device. Signed-off-by: Wesley Cheng Acked-by: Heikki Krogerus --- drivers/usb/typec/Kconfig | 12 ++ drivers/usb/typec/Makefile | 1 + drivers/usb/typec/qcom-pmic-typec.c | 271 3

[PATCH v7 2/4] dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding

2020-08-03 Thread Wesley Cheng
include a role switch node and a type C switch. Signed-off-by: Wesley Cheng --- .../bindings/usb/qcom,pmic-typec.yaml | 131 ++ 1 file changed, 131 insertions(+) create mode 100644 Documentation/devicetree/bindings/usb/qcom,pmic-typec.yaml diff --git a/Documentation/devicetree

[PATCH v7 3/4] arm64: boot: dts: qcom: pm8150b: Add node for USB type C block

2020-08-03 Thread Wesley Cheng
The PM8150B has a dedicated USB type C block, which can be used for type C orientation and role detection. Create the reference node to this type C block for further use. Signed-off-by: Wesley Cheng --- arch/arm64/boot/dts/qcom/pm8150b.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff

[PATCH v7 0/4] Introduce PMIC based USB type C detection

2020-08-03 Thread Wesley Cheng
ed devices based on if the device is behaving as a UFP or DFP. Wesley Cheng (4): usb: typec: Add QCOM PMIC typec detection driver dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding arm64: boot: dts: qcom: pm8150b: Add node for USB type C block arm64: boot: dts: qcom: pm8150b: Ad

[PATCH v7 4/4] arm64: boot: dts: qcom: pm8150b: Add DTS node for PMIC VBUS booster

2020-08-03 Thread Wesley Cheng
Add the required DTS node for the USB VBUS output regulator, which is available on PM8150B. This will provide the VBUS source to connected peripherals. Signed-off-by: Wesley Cheng --- arch/arm64/boot/dts/qcom/pm8150b.dtsi | 6 ++ arch/arm64/boot/dts/qcom/sm8150-mtp.dts | 4 2 files

Re: LLVM 10: lang/crystal

2020-08-03 Thread Wesley Moxam
Providing a new bootstrap won't be a problem (if needed). It would be great to also bump to the latest crystal version ( https://marc.info/?l=openbsd-ports&m=159344614726528&w=2) -- W On Mon, Aug 3, 2020 at 5:09 AM Stuart Henderson wrote: > On 2020/08/02 20:25, George Koehler wrote: > > Hi. Th

Re: [PATCH v6 1/4] usb: typec: Add QCOM PMIC typec detection driver

2020-07-31 Thread Wesley Cheng
On 7/29/2020 1:33 AM, Stephen Boyd wrote: > Quoting Wesley Cheng (2020-07-29 00:13:37) >> diff --git a/drivers/usb/typec/Kconfig b/drivers/usb/typec/Kconfig >> index 559dd06117e7..3e375f82849d 100644 >> --- a/drivers/usb/typec/Kconfig >> +++ b/drivers/usb/typec

Re: Issues - Win2K3 w/ PS Ver:2.0 + YARA 4.0.2

2020-07-31 Thread Wesley Shields
It looks like yara64 won't run because you have a 32bit install of Windows, that can't run 64bit binaries. The problem with yara32 looks like it is permissions, and you don't have access to execute it. Without further information this looks like it has nothing to do with YARA, and is a local p

[PATCH 2/3] phy: qcom-qmp: Register as a typec switch for orientation detection

2020-07-30 Thread Wesley Cheng
The lane select switch for USB typec orientation is within the USB QMP PHY. the current device. It could be connected through an endpoint, to an independent device handling the typec detection, ie the QCOM SPMI typec driver. Signed-off-by: Wesley Cheng --- drivers/phy/qualcomm/Kconfig

[PATCH 0/3] Enable USB type C support on SM8150

2020-07-30 Thread Wesley Cheng
accordingly. This event will then be propagated down to the DWC3 core driver, by the DWC3 QCOM getting a handle to the DWC3 core's role switch. Wesley Cheng (3): arm64: boot: dts: qcom: sm8150: Add nodes for PMIC based typec detection phy: qcom-qmp: Register as a typec switch for orient

[PATCH 3/3] usb: dwc3: dwc3-qcom: Find USB connector and register role switch

2020-07-30 Thread Wesley Cheng
well as attain a reference to the DWC3 core role switch to pass the event down. Signed-off-by: Wesley Cheng --- drivers/usb/dwc3/dwc3-qcom.c | 103 ++- 1 file changed, 101 insertions(+), 2 deletions(-) diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3

[PATCH 1/3] arm64: boot: dts: qcom: sm8150: Add nodes for PMIC based typec detection

2020-07-30 Thread Wesley Cheng
Introduce required child nodes to enable the PMIC based USB type C driver. This consits of connector and endpoint nodes to drivers, which manage the type C mux and the USB role switch. Signed-off-by: Wesley Cheng --- arch/arm64/boot/dts/qcom/sm8150-mtp.dts | 37 - 1 file

[SOLVED] RE: [External] - Re: Issues getting Kerberos to work with realmd and Active Directory

2020-07-30 Thread Wesley Taylor
Sent: Thursday, July 30, 2020 12:33 PM To: Wesley Taylor ; kerberos@mit.edu Subject: [External] - Re: Issues getting Kerberos to work with realmd and Active Directory CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the

Issues getting Kerberos to work with realmd and Active Directory

2020-07-30 Thread Wesley Taylor
Hi All, I am trying to get HTCondor with Kerberos authentication (https://htcondor.readthedocs.io/en/stable/admin-manual/security.html?highlight=Kerberos#kerberos-authentication) to work on some linux machines I have which I joined to Windows Active Directory with realmd. HTCondor tries to auth

[SSSD-users] Re: [External] - Re: How to authenticate machine with Kerberos to Active Directory?

2020-07-30 Thread Wesley Taylor
-users] Re: How to authenticate machine with Kerberos to Active Directory? CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe. On Wed, Jul 29, 2020 at 8:24 PM Wesley Taylor wrote

[SSSD-users] How to authenticate machine with Kerberos to Active Directory?

2020-07-29 Thread Wesley Taylor
Hello, I have a program I am trying to set up which tries to authenticate with the principal host\machine-FQDN@REALM using Kerberos. However, when I run kinit -k, the machine isn't found in the Kerberos database. The reason I think this question belongs here is I used realm join to configure Ker

[PATCH v6 0/4] Introduce PMIC based USB type C detection

2020-07-29 Thread Wesley Cheng
switch for orientation, and will fetch a USB role switch handle for the role notifications. It will also have the ability to enable the VBUS output to any connected devices based on if the device is behaving as a UFP or DFP. Wesley Cheng (4): usb: typec: Add QCOM PMIC typec detection driver d

[PATCH v6 2/4] dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding

2020-07-29 Thread Wesley Cheng
include a role switch node and a type C switch. Signed-off-by: Wesley Cheng --- .../bindings/usb/qcom,pmic-typec.yaml | 131 ++ 1 file changed, 131 insertions(+) create mode 100644 Documentation/devicetree/bindings/usb/qcom,pmic-typec.yaml diff --git a/Documentation/devicetree

[PATCH v6 4/4] arm64: boot: dts: qcom: pm8150b: Add DTS node for PMIC VBUS booster

2020-07-29 Thread Wesley Cheng
Add the required DTS node for the USB VBUS output regulator, which is available on PM8150B. This will provide the VBUS source to connected peripherals. Signed-off-by: Wesley Cheng --- arch/arm64/boot/dts/qcom/pm8150b.dtsi | 6 ++ arch/arm64/boot/dts/qcom/sm8150-mtp.dts | 4 2 files

[PATCH v6 3/4] arm64: boot: dts: qcom: pm8150b: Add node for USB type C block

2020-07-29 Thread Wesley Cheng
The PM8150B has a dedicated USB type C block, which can be used for type C orientation and role detection. Create the reference node to this type C block for further use. Signed-off-by: Wesley Cheng --- arch/arm64/boot/dts/qcom/pm8150b.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff

[PATCH v6 1/4] usb: typec: Add QCOM PMIC typec detection driver

2020-07-29 Thread Wesley Cheng
it can enable/disable the VBUS source when acting as a host/device. Signed-off-by: Wesley Cheng Acked-by: Heikki Krogerus --- drivers/usb/typec/Kconfig | 12 ++ drivers/usb/typec/Makefile | 1 + drivers/usb/typec/qcom-pmic-typec.c | 275 3

Re: [google-appengine] Re: GCP Access

2020-07-22 Thread wesley chun
ailable from GCP in addition to App Engine. If you're considering what's right for you, check out this informative animation <https://lnkd.in/gkeT3AW>. I recommend serverless for cost+convenience, containers for flexibility, and Cloud Run for both! Cheers, --Wesley On Wed, Jul 2

Re: [google-appengine] Re: App Engine doesn't downscale when CPU utilisation is below target_utilization

2020-07-20 Thread wesley chun
fferences b/w standard & flexible environments. Hope this helps! --Wesley On Sun, Jul 19, 2020 at 4:26 PM tz martin wrote: > Does anyone know if potential health check settings (liveness_check or > readiness_check) are as requests that would prevent downscaling instances? > Wonder

Re: [google-appengine] Re: I'm interested to know more about cloud storage free trail under$300

2020-07-20 Thread wesley chun
tier quotas, meaning you don't "eat into" the $300 until that happens. Do your due diligence, research which GCP tools to use, and *only activate the Free Trial when your normal usage on GCP consistently exceeds the Always Free tier*. Otherwise you're not taking full advantage of

RE: Apple Mac Quadra 700

2020-07-15 Thread Wesley Furr
oth better than from Mouser/Digikey/etc. Wesley _ From: vintage-macs@googlegroups.com [mailto:vintage-macs@googlegroups.com] On Behalf Of Thomas Pfaff Sent: Wednesday, July 15, 2020 8:01 PM To: vintage-macs@googlegroups.com Subject: Re: Apple Mac Quadra 700 Hi. Yep am planning on movi

Re: Shell account service providers

2020-07-15 Thread Wesley
Ibsen S Ripsbusker wrote: Are there services that sell managed OpenBSD shell accounts? I mean a service similar to sdf.org. Try google with keywords "online unix terminal for shell scripting", you will find a lot results. regards.

Re: Apple Mac Quadra 700

2020-07-15 Thread wesley
that should not need replacement. Wesley Quoting Thomas Pfaff : Curious... do you know if the capacitors on the Quadra 700 mamaboard do better than the ones in the IIci and such? Capacitors from the pre-china days tend to have very long lifespans but Apple got an early start on shipping &qu

[go-nuts] Ignite go library

2020-07-14 Thread Wesley
Hi Is there any thin client for Ignite by go? https://ignite.apache.org/docs-and-apis.html I didn't see the official one. Thank you. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from

Re: Unsubscribe

2020-07-14 Thread Wesley
please send an empty email to: user-unsubscr...@cassandra.apache.org to unsubscribe yourself from the list. Thank you. srinivasarao daruna wrote: Thank You, Regards, Srini - To unsubscribe, e-mail: user-unsubscr...@cass

Bug#964934: cookiecutter: Upgrade to version 1.7.x

2020-07-12 Thread Wesley Schwengle
of this. Could you bump the version the debian unstable branch? Many thanks, Wesley -- System Information: Debian Release: bullseye/sid APT prefers stable APT policy: (10, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 5.7.0-1-amd64 (SMP w/8

[ovirt-users] Re: RDP

2020-07-12 Thread Wesley Stewart
Are you asking for troubleshooting on getting windows RDP working in a windows 10 guest? Shouldn't have anything to do with ovirt. Do you have a local admin account with the same credentials? That would explain why it works. To test, make a test user, make it an administrator and try instead of

[Spice-devel] last known good spice guest tools for WinXP guest?

2020-07-12 Thread Wesley Parish
-latest but it refuses to install.) My OS is Fedora 31, x86_64, and the Gnome Boxes release is 3.36. Thanks Wesley Parish ___ Spice-devel mailing list Spice-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/spice-devel

Re: [rdo-dev] RDO Cloud operations today

2020-07-10 Thread Wesley Hayutin
On Fri, Jul 10, 2020 at 1:46 AM Alan Pevec wrote: > > last update as of few hours ago was: rdocloud networking should be now > > stable, uplink is not redundant, IT will work on getting back failover > > during the day > > Update as of this morning: > uplink redundancy was restored last night, >

Re: I Became a Solr Committer in 4662 Days. Here’s how you can do it faster!

2020-07-10 Thread Wesley
thanks for share. nice article. Charlie Hull wrote: Thought you might enjoy Eric's blog, it's taken him a while! Some good hints here for those of you interested in contributing more to Solr. https://opensourceconnections.com/blog/2020/07/10/i-became-a-solr-committer-in-4662-days-heres-how-yo

Re: Unsubscribe

2020-07-09 Thread Wesley
please send an empty email to: user-unsubscr...@cassandra.apache.org to unsubscribe yourself from the list. regards. Greg Bone wrote: - To unsubscribe, e-mail: user-unsubscr...@cassandra.apache.org For additional commands, e-m

Re: [PATCH v5 2/6] dt-bindings: usb: Add Qualcomm PMIC type C controller dt-binding

2020-07-09 Thread Wesley Cheng
usb3_role: endpoint@1 { reg = <1>; remote-endpoint = <&dwc3_drd_switch>; }; }; }; }; Thanks Wesley Cheng -- The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project

Re: [rdo-dev] RDO Cloud operations today

2020-07-09 Thread Wesley Hayutin
On Wed, Jul 8, 2020 at 5:11 AM Alan Pevec wrote: > Hi all, > > FYI RDO Cloud is undergoing scheduled movement of some of its racks, > control plane and infra services (www, lists, CI pool) should stay up > all the time. > In case of unplanned outage we'll let you know in this thread and also > an

Re: [ANNOUNCE] Apache Flink 1.11.0 released

2020-07-07 Thread Wesley
Nice news. Congrats! Leonard Xu wrote: Congratulations! Thanks Zhijiang and Piotr for the great work, and thanks everyone involved! Best, Leonard Xu

Re: PE rule matches when run under yara-python but not in yara ??!

2020-07-07 Thread Wesley Shields
I can't replicate this - it does not match on 4.0.2 on my system. There is no rule parsing bug here - the same C code is used when compiling rules using yara on the command line or via python. I've had a couple of people tell me something weird is going on when using pip to install yara-python,

Re: Matching only fullword standalone base64 strings (ending in '==') ?

2020-07-07 Thread Wesley Shields
I don't think fullword makes sense here, given that the base64 modifiers are meant to work when the string you're searching for is embedded anywhere in a base64 encoded string. This requires that it strip some leading and trailing bytes. If you want to find it without this behavior just put the

Re: [prometheus-users] JMX exporter problem, can't run process

2020-07-06 Thread Wesley
what's the log and error message? Jacek 1974 wrote: Anybody? -- You received this message because you are subscribed to the Google Groups "Prometheus Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to prometheus-users+unsubscr...@googlegroups.com

Re: Blog of jdbc interpreter on zeppelin

2020-07-06 Thread Wesley
Jeff Zhang wrote: I write a article about jdbc interpreter on zeppelin, hope it is helpful for you. https://medium.com/@zjffdu/jdbc-interpreter-on-zeppelin-tutorial-8a7958b8c94e Nice article. Thanks for share. regards.

Re: [plonegov-br] Permissão de usuário

2020-07-04 Thread Wesley Lopes
Marco dá uma olhada aqui: https://github.com/collective/collective.cover/issues/855 Em sex., 3 de jul. de 2020 às 12:42, Carolina Machay < carolina.mac...@gmail.com> escreveu: > Obrigada. > > Em sex., 3 de jul. de 2020 às 11:58, André Nogueira > escreveu: > >> Carolina, >> >> A ideia desse perf

<    4   5   6   7   8   9   10   11   12   13   >