Re: [Tinycc-devel] [PATCH 2/2] x86_64-asm: support endbr64 instruction

2024-10-05 Thread Yao Zi via Tinycc-devel
On Sat, Oct 05, 2024 at 06:53:48PM +0200, grischka via Tinycc-devel wrote: > On 29.09.2024 09:58, Yao Zi via Tinycc-devel wrote: > > endbr64 has no operand but comes with a ModR/M byte. Handle it in the > > same way as *fence instructions. > > If you know what you'

[jenkinsci/notification-plugin] 435c3b: Remove redundant suppression

2024-10-03 Thread 'Boris Yao' via Jenkins Commits
redundant throws in tests Commit: 9b1598713e137dd0eaee32bde218139f57e7776a https://github.com/jenkinsci/notification-plugin/commit/9b1598713e137dd0eaee32bde218139f57e7776a Author: Boris Yao <106237859+borisy...@users.noreply.github.com> Date: 2024-10-03 (Thu, 03 Oct 2024) C

[jenkinsci/notification-plugin] 759334: [maven-release-plugin] prepare for next developmen...

2024-10-03 Thread 'Boris Yao' via Jenkins Commits
Branch: refs/heads/master Home: https://github.com/jenkinsci/notification-plugin Commit: 7593341b87ad2806c48f704b94f2be7412909986 https://github.com/jenkinsci/notification-plugin/commit/7593341b87ad2806c48f704b94f2be7412909986 Author: Boris Yao Date: 2024-10-03 (Thu, 03 Oct

[jenkinsci/notification-plugin]

2024-10-03 Thread 'Boris Yao' via Jenkins Commits
Branch: refs/tags/notification-1.18 Home: https://github.com/jenkinsci/notification-plugin To unsubscribe from these emails, change your notification settings at https://github.com/jenkinsci/notification-plugin/settings/notifications -- You received this message because you are subscribed

[jenkinsci/notification-plugin] 2d8057: [maven-release-plugin] prepare release notificatio...

2024-10-03 Thread 'Boris Yao' via Jenkins Commits
Branch: refs/heads/master Home: https://github.com/jenkinsci/notification-plugin Commit: 2d80578b9cacd2117ed5410d38571a20513d8f80 https://github.com/jenkinsci/notification-plugin/commit/2d80578b9cacd2117ed5410d38571a20513d8f80 Author: Boris Yao Date: 2024-10-03 (Thu, 03 Oct

[gem5-users] Re: Page Walker: Where the PTE hits in the memory hierarchy

2024-10-03 Thread Yuan Yao via gem5-users
ield or function/method in the packet that holds this information? > If not, how can I get this information? > > Thanks, -- Best regards, Yuan Yao När du har kontakt med oss på Uppsala universitet med e-post så innebär det att vi behandlar dina personuppgifter. För att läsa mer o

[jenkinsci/notification-plugin] f275bc: Adapt for jetty 12

2024-10-03 Thread 'Boris Yao' via Jenkins Commits
Branch: refs/heads/master Home: https://github.com/jenkinsci/notification-plugin Commit: f275bc31a2e592bc06ee33832ef4b6de47c1b0cd https://github.com/jenkinsci/notification-plugin/commit/f275bc31a2e592bc06ee33832ef4b6de47c1b0cd Author: Boris Yao Date: 2024-08-20 (Tue, 20 Aug

[Bug 2076164] Re: List of "Scan new fingerprint" is incorrect when one or more finger is enrolled

2024-10-02 Thread Yao Wei
Tested on a unit that with gnome-control-center 1:46.0.1-1ubuntu7, the issue is reproducible. After updating the package to 1:46.4-0ubuntu0.24.04.1, this issue is no longer reproducible. Tested by enrolling all fingers and the enrolled fingers do not display in the "Scan new fingerprint" list. *

[Desktop-packages] [Bug 2076164] Re: List of "Scan new fingerprint" is incorrect when one or more finger is enrolled

2024-10-02 Thread Yao Wei
Tested on a unit that with gnome-control-center 1:46.0.1-1ubuntu7, the issue is reproducible. After updating the package to 1:46.4-0ubuntu0.24.04.1, this issue is no longer reproducible. Tested by enrolling all fingers and the enrolled fingers do not display in the "Scan new fingerprint" list. *

[Bug 2076164] Re: List of "Scan new fingerprint" is incorrect when one or more finger is enrolled

2024-10-02 Thread Yao Wei
Tested on a unit that with gnome-control-center 1:46.0.1-1ubuntu7, the issue is reproducible. After updating the package to 1:46.4-0ubuntu0.24.04.1, this issue is no longer reproducible. Tested by enrolling all fingers and the enrolled fingers do not display in the "Scan new fingerprint" list. *

Re: [RFC PATCH 1/1] drm/meson: Support drm_panic

2024-10-02 Thread Yao Zi
ess is true, bailing out when AFBC is enabled should be acceptable. Will try to do some AFBC tests if possible and consider it as a latest solution. btw, I forget to check whether drm_gem_fb_vmap() succeeds. Will fix it later. Thanks for your advice again! Best regards, Yao Zi

[RFC PATCH 1/1] drm/meson: Support drm_panic

2024-10-01 Thread Yao Zi
get_scanout_buffer to make the buffer linear. Tested on TTY and Wayland session (Sway). Signed-off-by: Yao Zi --- drivers/gpu/drm/meson/meson_plane.c | 47 +++-- 1 file changed, 44 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/meson/meson_plane.c b/drivers/gpu/drm/meson

[RFC PATCH 0/1] meson/drm: Support drm_panic

2024-10-01 Thread Yao Zi
This patch adds drm_panic support for meson-drm, has been tested on A311D with both TTY and Wayland session. It is an RFC since I am not sure whether AFBC enabled case is handled properly and don't find a good test case. Thanks for your time and advice. Yao Zi (1): drm/meson: Support drm_

Re: Compile error of libbb 1.37.0 on aarch64

2024-09-29 Thread Yao Zi
ocess_block64 > libbb/hash_md5_sha.c:1316:35: note: each undeclared identifier is reported > only once for each function it appears in > make[1]: *** [scripts/Makefile.build:198: libbb/hash_md5_sha.o] Error 1 > make: *** [Makefile:744: libbb] Error 2 This[1] should fix it. Bes

[Tinycc-devel] [PATCH 1/2] x86_64-asm.h: support callq for better compatibility

2024-09-29 Thread Yao Zi via Tinycc-devel
It has the same effect as call. Signed-off-by: Yao Zi --- x86_64-asm.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/x86_64-asm.h b/x86_64-asm.h index 339e1dfb..e4655a7a 100644 --- a/x86_64-asm.h +++ b/x86_64-asm.h @@ -225,6 +225,8 @@ ALT(DEF_ASM_OP2(shrdw, 0x0fad, 0, OPC_MODRM

[Tinycc-devel] [PATCH 0/2] Support compiling QBE generated assembly

2024-09-29 Thread Yao Zi via Tinycc-devel
This series adds support of 'q'-suffixed call and endbr64 instruction, enabling TinyCC to compile QBE generated assembly. Thanks for your time and review. Yao Zi (2): x86_64-asm.h: support callq for better compatibility x86_64-asm: support endbr64 instruction i386-as

[Tinycc-devel] [PATCH 2/2] x86_64-asm: support endbr64 instruction

2024-09-29 Thread Yao Zi via Tinycc-devel
endbr64 has no operand but comes with a ModR/M byte. Handle it in the same way as *fence instructions. Signed-off-by: Yao Zi --- i386-asm.c | 12 +--- x86_64-asm.h | 3 +++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/i386-asm.c b/i386-asm.c index 33783d5f

Re: [DISCUSS] CloudBerry Proposal

2024-09-27 Thread Kent Yao
+1 for CloudBerry's entry into Apache Incubator. I'm interested in serving as a mentor if needed. Kent Yao On 2024/09/27 03:18:58 Roman Shaposhnik wrote: > Hi Apache Incubator folks, > > We would like to propose a new project: CloudBerry. > > Cloudberry Database, buil

ANNOUNCE] Apache Spark 3.5.3 released

2024-09-25 Thread Kent Yao
possible without you. Kent Yao

(spark) branch master updated: [SPARK-48712][SQL][FOLLOWUP] Check whether input is valid utf-8 string or not before entering fast path

2024-09-23 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new e1637e3fbe0a [SPARK-48712][SQL][FOLLOWUP] Check

(spark) branch master updated (19906468d145 -> 4f640e2485d2)

2024-09-21 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/spark.git from 19906468d145 Revert "[SPARK-49495][DOCS] Document and Feature Preview on the master branch via Live GitHub Pages Up

(spark) branch master updated: Revert "[SPARK-49495][DOCS] Document and Feature Preview on the master branch via Live GitHub Pages Updates"

2024-09-21 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new 19906468d145 Revert "[SPARK-49495][DOCS] Doc

[jira] [Resolved] (SPARK-49495) Document and Feature Preview on master branch via Live GitHub Pages Updates

2024-09-21 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao resolved SPARK-49495. -- Fix Version/s: 4.0.0 Resolution: Fixed Issue resolved by pull request 48175 [https

[jira] [Assigned] (SPARK-49495) Document and Feature Preview on master branch via Live GitHub Pages Updates

2024-09-21 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao reassigned SPARK-49495: Assignee: Kent Yao > Document and Feature Preview on master branch via Live GitHub Pages Upda

(spark) branch master updated (0b05b1aa72ce -> bbbc05cbf971)

2024-09-21 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/spark.git from 0b05b1aa72ce [SPARK-48782][SQL][TESTS][FOLLOW-UP] Enable ANSI for malformed input test in ProcedureSuite add

[gem5-dev] Re: Why are stores in the SQ assumed to have valid addresses?

2024-09-19 Thread Yuan Yao via gem5-dev
Thanks a lot! I was troubled by this too! And to add a little info, here is where the _size is set. When a store reaches this stage, its translation has been finished. Thanks a lot! #0 gem5::o3::LSQUnit::LSQEntry::size at lsq_unit.hh:143 #1 in gem5::o3::LSQUnit::write at src/cpu/o3/lsq_unit.c

[Bug 2081124] Re: systemd service dependency loop between cloud-init, NetworkManager and dbus

2024-09-18 Thread Yao Wei
The cloud-init.service file is provided by livecd-rootfs, but we aren't sure what triggered this issue. ** Also affects: livecd-rootfs (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu

[Bug 2081124] Re: systemd service dependency loop between cloud-init, NetworkManager and dbus

2024-09-18 Thread Yao Wei
** Summary changed: - systemd service dependency loop between cloud-init, NetworkManager an dbus + systemd service dependency loop between cloud-init, NetworkManager and dbus -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bug

RE: [PATCH v2 00/48] Use g_assert_not_reached instead of (g_)assert(0, false)

2024-09-18 Thread Xingtao Yao (Fujitsu)
> >> -- > >> 2.39.2 > >> > > > > Which one did you find? Using which grep command? Sorry, I made a mistake. I haven't found anything new yet.

RE: [PATCH v2 00/48] Use g_assert_not_reached instead of (g_)assert(0, false)

2024-09-18 Thread Xingtao Yao (Fujitsu)
> >> -- > >> 2.39.2 > >> > > > > Which one did you find? Using which grep command? Sorry, I made a mistake. I haven't found anything new yet.

[Bug 2081124] [NEW] systemd service dependency loop between cloud-init, NetworkManager an dbus

2024-09-18 Thread Yao Wei
Public bug reported: We got errors that some services like snapd and NetworkManager is not started when running cloud-init or desktop, excerpt from journal below: Sep 13 12:37:41 localhost.localdomain systemd[1]: cloud-init.service: Found ordering cycle on NetworkManager-wait-online.service/star

Re: [PATCH V1] virtio/vhost-user: fix qemu abort when hotunplug vhost-user-net device

2024-09-18 Thread Zhenguo Yao
yaozhenguo 于2024年9月13日周五 16:08写道: > > During the process of hot-unplug in vhost-user-net NIC, vhost_user_cleanup > may add same rcu node to rcu list. Function calls are as follows: > > vhost_user_cleanup > ->vhost_user_host_notifier_remove > ->call_rcu(n, vhost_user_host_notifier_free,

[Bug 2076164] Re: List of "Scan new fingerprint" is incorrect when one or more finger is enrolled

2024-09-18 Thread Yao Wei
Should we fix this issue by bumping minor version, or adding a patch to this package? I see 46.3 is in Noble at the moment. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2076164 Title: List of "Sca

[Desktop-packages] [Bug 2076164] Re: List of "Scan new fingerprint" is incorrect when one or more finger is enrolled

2024-09-18 Thread Yao Wei
Should we fix this issue by bumping minor version, or adding a patch to this package? I see 46.3 is in Noble at the moment. -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to gnome-control-center in Ubuntu. https://bugs.launchpad.net/bugs/2

[Bug 2076164] Re: List of "Scan new fingerprint" is incorrect when one or more finger is enrolled

2024-09-18 Thread Yao Wei
Should we fix this issue by bumping minor version, or adding a patch to this package? I see 46.3 is in Noble at the moment. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu. https://bugs.launchpad.net/bug

Re: [PATCH v2] drm/amdgpu: add dce6 drm_panic support

2024-09-18 Thread Lu Yao
On 2024/9/17 21:21, Alex Deucher wrote: On Mon, Aug 12, 2024 at 2:10 AM Lu Yao wrote: Add support for the drm_panic module, which displays a pretty user friendly message on the screen when a Linux kernel panic occurs. Signed-off-by: Lu Yao Patch looks good to me. Any chance you want to

Re: [PATCH v2] drm/amdgpu: add dce6 drm_panic support

2024-09-17 Thread Lu Yao
On 2024/9/17 21:21, Alex Deucher wrote: On Mon, Aug 12, 2024 at 2:10 AM Lu Yao wrote: Add support for the drm_panic module, which displays a pretty user friendly message on the screen when a Linux kernel panic occurs. Signed-off-by: Lu Yao Patch looks good to me. Any chance you want to

(spark) branch master updated: [SPARK-49495][DOCS][FOLLOWUP] Fix Pandoc installation for GitHub Pages publication action

2024-09-17 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new 7de71a2ec78d [SPARK-49495][DOCS][FOLLOWUP] Fix

(spark) branch master updated: [SPARK-49495][DOCS] Document and Feature Preview on the master branch via Live GitHub Pages Updates

2024-09-17 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new b1807095bef9 [SPARK-49495][DOCS] Document and

[jira] [Resolved] (SPARK-49495) Document and Feature Preview on master branch via Live GitHub Pages Updates

2024-09-17 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao resolved SPARK-49495. -- Fix Version/s: 4.0.0 Resolution: Fixed Issue resolved by pull request 47968 [https

[jira] [Assigned] (SPARK-49495) Document and Feature Preview on master branch via Live GitHub Pages Updates

2024-09-17 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao reassigned SPARK-49495: Assignee: Kent Yao > Document and Feature Preview on master branch via Live GitHub Pages Upda

[VOTE][RESULT] Document and Feature Preview via GitHub Pages

2024-09-17 Thread Kent Yao
Hi dev, The vote[1] for 'Document and Feature Preview via GitHub Pages' passed with 11 +1s (8 bindings, * = binding): +1: Martin Grund Wenchen Fan (*) Gengliang Wang (*) Dongjoon Hyun (*) Mich Talebzadeh Hyukjin Kwon (*) Ruifeng Zheng (*) Xiao Li (*) Holden Karau (*) Liu Cao Kent Y

Re: [VOTE] Document and Feature Preview via GitHub Pages

2024-09-17 Thread Kent Yao
+1 Thank you all for participating in the vote. I'll conclude this vote. Bests, Kent Yao On 2024/09/12 04:46:26 "Liu(Laswift) Cao" wrote: > +1 (non-binding) > > Thank you Kent > > On Wed, Sep 11, 2024 at 9:14 PM Holden Karau wrote: > > > +1 > >

[Bug 2069408] Re: OOBE has a blue background

2024-09-16 Thread Yao Wei
This issue won't appear in stock Ubuntu install, because in stock Ubuntu we do not use gnome-initial-setup to set up the first user. This issue only occurs on OEM images and Raspberry Pi image (idk whether we have them, but that's what I've told) To enter gnome-initial-setup to set up first user,

[Bug 2069408] Re: OOBE has a blue background

2024-09-13 Thread Yao Wei
The issue still persists by default on gnome-initial-setup 46.3-1ubuntu3~24.04.1 I received messages from Desktop Team that this issue will only be fixed on 24.10 onwards. However, it is possible to workaround with a patch in /usr/share/glib-2.0/schemas/10_ubuntu-settings.gschema.override # for

Re: [ANNOUNCE] New PMC member: Siddhant Sangwan

2024-09-13 Thread jackson yao
Congratulations Siddhant! Siddhant Sangwan 于2024年9月12日周四 19:16写道: > Thanks Nanda and Jyotinder! Excited to be a part of the PMC. > > On Mon, 9 Sep, 2024, 12:35 Jyotinder Singh, > wrote: > > > Congratulations Siddhant! > > > > On Mon, 9 Sep 2024 at 12:03 PM, Nandakumar wrote: > > > > > Hi Ozone

(spark) branch branch-3.4 updated: [SPARK-49628][SQL] ConstantFolding should copy stateful expression before evaluating

2024-09-13 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch branch-3.4 in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/branch-3.4 by this push: new 2c06ef1a49d8 [SPARK-49628][SQL

(spark) branch branch-3.5 updated: [SPARK-49628][SQL] ConstantFolding should copy stateful expression before evaluating

2024-09-13 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch branch-3.5 in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/branch-3.5 by this push: new e693e18c7d0e [SPARK-49628][SQL

(spark) branch master updated: [SPARK-49628][SQL] ConstantFolding should copy stateful expression before evaluating

2024-09-13 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new 319e7cc7d0e7 [SPARK-49628][SQL] ConstantFolding

Request to adopt Jenkins notification-plugin

2024-09-12 Thread 'Boris Yao' via Jenkins Developers
e the plugin as the last activity on the PR was a year ago and I don't have answers on the PR. Best regards, -- *Boris Yao* Associate Software Engineer CloudBees, Inc. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubsc

(incubator-gluten-site) branch yaooqinn-patch-1 deleted (was d5a379f)

2024-09-11 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a change to branch yaooqinn-patch-1 in repository https://gitbox.apache.org/repos/asf/incubator-gluten-site.git was d5a379f Update downloads.md The revisions that were on this branch are still contained in

(incubator-gluten-site) branch main updated: Update downloads.md (#26)

2024-09-11 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-gluten-site.git The following commit(s) were added to refs/heads/main by this push: new fc014ca Update downloads.md (#26

(incubator-gluten-site) branch yaooqinn-patch-1 created (now d5a379f)

2024-09-11 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a change to branch yaooqinn-patch-1 in repository https://gitbox.apache.org/repos/asf/incubator-gluten-site.git at d5a379f Update downloads.md This branch includes the following new commits: new d5a379f

(incubator-gluten-site) 01/01: Update downloads.md

2024-09-11 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch yaooqinn-patch-1 in repository https://gitbox.apache.org/repos/asf/incubator-gluten-site.git commit d5a379fa6316c0d07e01bb30e20ee96b480d9771 Author: Kent Yao AuthorDate: Thu Sep 12 14:25:40 2024

RE: [PATCH v4] pci-bridge: avoid linking a single downstream port more than once

2024-09-11 Thread Xingtao Yao (Fujitsu)
> -Original Message- > From: Michael S. Tsirkin > Sent: Tuesday, September 10, 2024 11:17 PM > To: Yao, Xingtao/姚 幸涛 > Cc: marcel.apfelb...@gmail.com; qemu-devel@nongnu.org > Subject: Re: [PATCH v4] pci-bridge: avoid linking a single downstream port > more &g

[VOTE] Document and Feature Preview via GitHub Pages

2024-09-11 Thread Kent Yao
Hi all, Following the discussion[1], I'd like to start the vote for 'Document and Feature Preview via GitHub Pages' Please vote for the next 72 hours:(excluding next weekend) [ ] +1: Accept the proposal [ ] +0 [ ]- 1: I don’t think this is a good idea because … Bests, Kent

Re: [VOTE] Release Apache Spark 3.5.3 (RC3)

2024-09-11 Thread Kent Yao
+1, thank you, Haejoon Kent On 2024/09/11 06:12:19 Gengliang Wang wrote: > +1 > > On Mon, Sep 9, 2024 at 6:01 PM Wenchen Fan wrote: > > > +1 > > > > On Tue, Sep 10, 2024 at 7:42 AM Rui Wang > > wrote: > > > >> +1 (non-binding) > >> > >> > >> -Rui > >> > >> On Mon, Sep 9, 2024 at 4:22 PM Hyukji

Re: Apache Spark 4.0.0-preview2 (?)

2024-09-11 Thread Kent Yao
+1 Thank you Dongjoon Kent On 2024/09/09 15:32:12 Dongjoon Hyun wrote: > Thank you, Liang-Chi, Zhou, Huaxin, Bjørn, Hyukjin, Xinron, Wenchen, Terry, > Yang! > > I'll start to prepare the 1st release candidate for next Monday (9/16). > > Dongjoon. > > -

(spark-website) branch asf-site updated: Update to rexml 3.3.4 (#541)

2024-09-10 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/spark-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 2fd5ce27f7 Update to rexml 3.3.4 (#541

Re: [PATCH] virtio/vhost-user: fix qemu crash when hotunplug vhost-user-net device

2024-09-10 Thread Zhenguo Yao
Stefano Garzarella 于2024年9月3日周二 18:05写道: > > On Wed, Aug 28, 2024 at 02:50:57PM GMT, Zhenguo Yao wrote: > >I am very sorry that my previous description was not accurate. Below I > >will describe the steps to reproduce this problem and my analysis in > >detail.The conditi

(spark-website) branch asf-site updated: docs: update kubeflow spark operator URL (#553)

2024-09-10 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/spark-website.git The following commit(s) were added to refs/heads/asf-site by this push: new d3fcd0f907 docs: update kubeflow spark

[gem5-users] Re: Fixed I/O Address Range in x86

2024-09-10 Thread Yuan Yao via gem5-users
Hi Sam, ''scons build/x86/out/m5 --verbose'' shows ``` g++ -o build/x86/out/m5 -no-pie -static build/x86/call_type/inst.o build/x86/call_type/addr.o build/x86/args.o ... ``` So I guess in your case either ``` gcc -o test test.c -I./include -I./util/m5/src -L./util/m5/b

[PATCH] tracing/timerlat: Move mutex interface_lock declaration outside CONFIG_TIMERLAT_TRACER

2024-09-10 Thread Lu Yao
lock); | ^~ | trace_clock Fixes: e6a53481da29 ("tracing/timerlat: Only clear timer if a kthread exists") Signed-off-by: Lu Yao --- kernel/trace/trace_osnoise.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git

[jira] [Commented] (SPARK-49508) Optimized hadoop-aws dependency, aws-java-sdk-bundle jar is too large

2024-09-06 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49508?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17879827#comment-17879827 ] Kent Yao commented on SPARK-49508: -- That‘s the 'provided' scope for.

[jira] [Commented] (SPARK-49508) Optimized hadoop-aws dependency, aws-java-sdk-bundle jar is too large

2024-09-06 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49508?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17879818#comment-17879818 ] Kent Yao commented on SPARK-49508: -- I don't see this in tar.gz files. Do

(spark) branch master updated: [SPARK-44239][SQL][FOLLOWUP] Do not disable vector memory optimization when hugeVectorThreshold=0 to align its document

2024-09-05 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new e9a6230ae09c [SPARK-44239][SQL][FOLLOWUP] Do not

[PATCH v2] sed: parse delimiters in regular expression correctly

2024-09-05 Thread Yao Zi
/lists.busybox.net/pipermail/busybox/2024-July/090844.html Fixes: e998c7c03 ("sed: fix handling of escaped delimiters in s/// search pattern, closes 14541") Signed-off-by: Yao Zi --- editors/sed.c | 145 ++-- testsuite/sed.tests | 5

Re: [PATCH] sed: don't escape delimiters in bracket expression

2024-09-05 Thread Yao Zi
should be fixed as well. > expression or not because in e.g. s/[/]// the / in the bracket > expression does not terminate the pattern of the substitute command. > > Maybe you can reuse or adapt that code. Best regards, Yao Zi ___ busy

[jira] [Resolved] (SPARK-49408) Poor performance in ProjectingInternalRow

2024-09-05 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49408?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao resolved SPARK-49408. -- Fix Version/s: 3.4.4 4.0.0 3.5.3 Resolution: Fixed Issue

[jira] [Assigned] (SPARK-49408) Poor performance in ProjectingInternalRow

2024-09-05 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49408?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao reassigned SPARK-49408: Assignee: Frank Wong > Poor performance in ProjectingInternal

(spark) branch master updated: [SPARK-49408][SQL] Use IndexedSeq in ProjectingInternalRow

2024-09-05 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new 37f2fa99c31d [SPARK-49408][SQL] Use IndexedSeq in

Re: [PATCH] sed: don't escape delimiters in bracket expression

2024-09-04 Thread Yao Zi
On Mon, Sep 02, 2024 at 11:03:49AM +0200, Emanuele Torre wrote: > On Sun, Sep 01, 2024 at 04:56:27PM +0000, Yao Zi wrote: > > As specified in POSIX standard[1], delimiters in bracket expression > > always have their original meaning, thus 's/[\/]//' matches either '

[jira] [Resolved] (SPARK-49445) Support show tooltip in the progress bar of UI

2024-09-04 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao resolved SPARK-49445. -- Fix Version/s: 4.0.0 Resolution: Fixed Issue resolved by pull request 47908 [https

(spark) branch master updated: [SPARK-49497][BUILD] Upgrade protobuf-java to 3.25.4

2024-09-03 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new 85d4da8b0dbc [SPARK-49497][BUILD] Upgrade protobuf

[jira] [Assigned] (SPARK-49470) Update dataTables from 1.13.5 to 1.13.11

2024-09-03 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49470?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao reassigned SPARK-49470: Assignee: Kent Yao > Update dataTables from 1.13.5 to 1.13

[jira] [Resolved] (SPARK-49470) Update dataTables from 1.13.5 to 1.13.11

2024-09-03 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49470?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao resolved SPARK-49470. -- Fix Version/s: 4.0.0 Resolution: Fixed Issue resolved by pull request 47938 [https

(spark) branch master updated: [SPARK-49470][UI] Update dataTables stylesheets and javascripts from 1.13.5 to 1.13.11

2024-09-03 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/master by this push: new 04725ee71ca7 [SPARK-49470][UI] Update dataTables

[jira] [Created] (SPARK-49495) Document and Feature Preview on master branch via Live GitHub Pages Updates

2024-09-02 Thread Kent Yao (Jira)
Kent Yao created SPARK-49495: Summary: Document and Feature Preview on master branch via Live GitHub Pages Updates Key: SPARK-49495 URL: https://issues.apache.org/jira/browse/SPARK-49495 Project: Spark

(spark) branch branch-3.5 updated: [SPARK-49476][SQL][3.5][FOLLOWUP] Fix base64 proto test

2024-09-02 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch branch-3.5 in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/branch-3.5 by this push: new d8adf4b3109c [SPARK-49476][SQL][3.5

[jira] [Created] (SPARK-49494) Using spark logos from spark-website in docs

2024-09-02 Thread Kent Yao (Jira)
Kent Yao created SPARK-49494: Summary: Using spark logos from spark-website in docs Key: SPARK-49494 URL: https://issues.apache.org/jira/browse/SPARK-49494 Project: Spark Issue Type: Sub-task

[PATCH] sed: don't escape delimiters in bracket expression

2024-09-01 Thread Yao Zi
/2024-July/090844.html Fixes: e998c7c03 ("sed: fix handling of escaped delimiters in s/// search pattern, closes 14541") Signed-off-by: Yao Zi --- editors/sed.c | 41 +++-- testsuite/sed.tests | 2 ++ 2 files changed, 29 insertions(+), 14 de

[PATCH] drm/amdgpu: enable gfxoff quirk on HP 705G4

2024-08-30 Thread Lu Yao
From: Peng Liu Enabling gfxoff quirk results in perfectly usable graphical user interface on HP 705G4 DM with R5 2400G. Without the quirk, X server is completely unusable as every few seconds there is gpu reset due to ring gfx timeout. Signed-off-by: Peng Liu --- drivers/gpu/drm/amd/amdgpu/gf

[PATCH] drm/amdgpu: add raven1 gfxoff quirk

2024-08-30 Thread Lu Yao
From: Peng Liu Fix screen corruption with openkylin. Link: https://bbs.openkylin.top/t/topic/171497 Signed-off-by: Peng Liu --- drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9

RE: [PATCH 1/1] platform-bus: fix refcount leak

2024-08-30 Thread Xingtao Yao (Fujitsu)
> -Original Message- > From: qemu-devel-bounces+yaoxt.fnst=fujitsu@nongnu.org > On Behalf Of Gao > Shiyuan via > Sent: Thursday, August 29, 2024 9:10 PM > To: Paolo Bonzini > Cc: qemu-devel@nongnu.org; gaoshiy...@baidu.com > Subject: [PATCH 1/1] platform-bus: fix refcount leak > >

(spark) branch branch-3.5 updated: [MINOR] Add `artifacts` to `.gitignore`

2024-08-30 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch branch-3.5 in repository https://gitbox.apache.org/repos/asf/spark.git The following commit(s) were added to refs/heads/branch-3.5 by this push: new 30a75d13d681 [MINOR] Add `artifacts` to

(spark) branch master updated (493ca987ca93 -> df4256836d71)

2024-08-30 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/spark.git from 493ca987ca93 [SPARK-49378][DOCS][SS] Break apart the Structured Streaming Programming Guide add df4256836d71 [MINOR

[jira] [Resolved] (SPARK-49378) Break apart the Structured Streaming Programming Guide

2024-08-30 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao resolved SPARK-49378. -- Fix Version/s: 4.0.0 Resolution: Fixed Issue resolved by pull request 47864 [https

[jira] [Assigned] (SPARK-49378) Break apart the Structured Streaming Programming Guide

2024-08-30 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-49378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao reassigned SPARK-49378: Assignee: Neil Ramaswamy > Break apart the Structured Streaming Programming Gu

[jira] [Created] (SPARK-49470) Update dataTables from 1.13.5 to 1.13.11

2024-08-30 Thread Kent Yao (Jira)
Kent Yao created SPARK-49470: Summary: Update dataTables from 1.13.5 to 1.13.11 Key: SPARK-49470 URL: https://issues.apache.org/jira/browse/SPARK-49470 Project: Spark Issue Type: Dependency

[PATCH] drm/amdgpu: enable gfxoff quirk on HP 705G4

2024-08-30 Thread Lu Yao
From: Peng Liu Enabling gfxoff quirk results in perfectly usable graphical user interface on HP 705G4 DM with R5 2400G. Without the quirk, X server is completely unusable as every few seconds there is gpu reset due to ring gfx timeout. Signed-off-by: Peng Liu --- drivers/gpu/drm/amd/amdgpu/gf

[PATCH] drm/amdgpu: add raven1 gfxoff quirk

2024-08-30 Thread Lu Yao
From: Peng Liu Fix screen corruption with openkylin. Link: https://bbs.openkylin.top/t/topic/171497 Signed-off-by: Peng Liu --- drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9

Re: [PATCH] drm/amdgpu: fix OLAND card ip_init failed during kdump caputrue kernel boot

2024-08-30 Thread Lu Yao
On 2024/8/22 22:05, Mario Limonciello wrote: > On 7/23/2024 04:42, Lu Yao wrote: >> [Why] >> When running kdump test on a machine with R7340 card, a hang is caused due >> to the failure of 'amdgpu_device_ip_init()', error message as follows: >> >>&

Re: [VOTE] Release Apache Gluten (Incubating) 1.2.0-RC3

2024-08-29 Thread Kent Yao
Carrying my +1 from dev Kent Yao On 2024/08/26 14:01:55 WeitingChen wrote: > Hi everyone, > > This is a call for a vote to release Apache Gluten (Incubating) version > 1.2.0 release candidate 3. > > The Apache Gluten community has voted and approved the release of Apache &

[jira] [Created] (SPARK-49459) Support CRC32C for Shuffle Checksum

2024-08-29 Thread Kent Yao (Jira)
Kent Yao created SPARK-49459: Summary: Support CRC32C for Shuffle Checksum Key: SPARK-49459 URL: https://issues.apache.org/jira/browse/SPARK-49459 Project: Spark Issue Type: Improvement

Re: [PATCH] drm/amdgpu: fix OLAND card ip_init failed during kdump caputrue kernel boot

2024-08-29 Thread Lu Yao
On 2024/8/22 22:05, Mario Limonciello wrote: > On 7/23/2024 04:42, Lu Yao wrote: >> [Why] >> When running kdump test on a machine with R7340 card, a hang is caused due >> to the failure of 'amdgpu_device_ip_init()', error message as follows: >> >>&

[Bug 2077603] Re: debsum of /usr/sbin/start-stop-daemon failed

2024-08-29 Thread Yao Wei
Tested livecd.ubuntu.minimal.squashfs from https://launchpad.net/~ubuntu- cdimage/+livefs/ubuntu/oracular/ubuntu/+build/676054 (oracular) by `sudo debsums --root [squashfs_root] -c`, it replied no error. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subsc

[jira] [Updated] (SPARK-46037) When Left Join build Left, ShuffledHashJoinExec may result in incorrect results

2024-08-28 Thread Kent Yao (Jira)
[ https://issues.apache.org/jira/browse/SPARK-46037?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kent Yao updated SPARK-46037: - Priority: Blocker (was: Minor) > When Left Join build Left, ShuffledHashJoinExec may result

(spark-website) branch asf-site updated: .htaccess

2024-08-28 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/spark-website.git The following commit(s) were added to refs/heads/asf-site by this push: new dfba8b85b7 .htaccess dfba8b85b7 is

Re: [PATCH] virtio/vhost-user: fix qemu crash when hotunplug vhost-user-net device

2024-08-27 Thread Zhenguo Yao
I am very sorry that my previous description was not accurate. Below I will describe the steps to reproduce this problem and my analysis in detail.The conditions for reproducing this problem are quite demanding. First, let me introduce my environment. I use DPDK vdpa to drive DPU to implement a vho

(spark-website) branch asf-site updated: Add 404 page with instuctions for EOL docs (#552)

2024-08-27 Thread yao
This is an automated email from the ASF dual-hosted git repository. yao pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/spark-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 55912b0bb6 Add 404 page with

  1   2   3   4   5   6   7   8   9   10   >