From: kernel test robot <lkp@intel.com>
To: Ma Ke <make_ruc2021@163.com>,
perex@perex.cz, tiwai@suse.com, Liam.Howlett@oracle.com,
rppt@kernel.org, mgorman@techsingularity.net, mhocko@suse.com,
surenb@google.com
Cc: oe-kbuild-all@lists.linux.dev, alsa-devel@alsa-project.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] ALSA: pcm: oss: Fix race at SNDCTL_DSP_SETTRIGGER
Date: Thu, 21 Sep 2023 23:20:22 +0800 [thread overview]
Message-ID: <202309212328.2UOE4Raf-lkp@intel.com> (raw)
In-Reply-To: <20230921064258.3582115-1-make_ruc2021@163.com>
Hi Ma,
kernel test robot noticed the following build warnings:
[auto build test WARNING on tiwai-sound/for-next]
[also build test WARNING on tiwai-sound/for-linus linus/master v6.6-rc2 next-20230921]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Ma-Ke/ALSA-pcm-oss-Fix-race-at-SNDCTL_DSP_SETTRIGGER/20230921-215828
base: https://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git for-next
patch link: https://lore.kernel.org/r/20230921064258.3582115-1-make_ruc2021%40163.com
patch subject: [PATCH v2] ALSA: pcm: oss: Fix race at SNDCTL_DSP_SETTRIGGER
config: m68k-allyesconfig (https://download.01.org/0day-ci/archive/20230921/202309212328.2UOE4Raf-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230921/202309212328.2UOE4Raf-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202309212328.2UOE4Raf-lkp@intel.com/
All warnings (new ones prefixed by >>):
sound/core/oss/pcm_oss.c: In function 'snd_pcm_oss_set_trigger':
>> sound/core/oss/pcm_oss.c:2092:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
2092 | if (err < 0)
| ^~
sound/core/oss/pcm_oss.c:2094:25: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
2094 | return err;
| ^~~~~~
sound/core/oss/pcm_oss.c:2126:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
2126 | if (err < 0)
| ^~
sound/core/oss/pcm_oss.c:2128:25: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
2128 | return err;
| ^~~~~~
vim +/if +2092 sound/core/oss/pcm_oss.c
2072
2073 static int snd_pcm_oss_set_trigger(struct snd_pcm_oss_file *pcm_oss_file, int trigger)
2074 {
2075 struct snd_pcm_runtime *runtime;
2076 struct snd_pcm_substream *psubstream = NULL, *csubstream = NULL;
2077 int err, cmd;
2078
2079 #ifdef OSS_DEBUG
2080 pr_debug("pcm_oss: trigger = 0x%x\n", trigger);
2081 #endif
2082
2083 psubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
2084 csubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
2085
2086 if (psubstream) {
2087 runtime = psubstream->runtime;
2088 cmd = 0;
2089 if (mutex_lock_interruptible(&runtime->oss.params_lock))
2090 return -ERESTARTSYS;
2091 err = snd_pcm_oss_make_ready_locked(psubstream);
> 2092 if (err < 0)
2093 mutex_unlock(&runtime->oss.params_lock);
2094 return err;
2095 if (trigger & PCM_ENABLE_OUTPUT) {
2096 if (runtime->oss.trigger)
2097 goto _skip1;
2098 if (atomic_read(&psubstream->mmap_count))
2099 snd_pcm_oss_simulate_fill(psubstream,
2100 get_hw_ptr_period(runtime));
2101 runtime->oss.trigger = 1;
2102 runtime->start_threshold = 1;
2103 cmd = SNDRV_PCM_IOCTL_START;
2104 } else {
2105 if (!runtime->oss.trigger)
2106 goto _skip1;
2107 runtime->oss.trigger = 0;
2108 runtime->start_threshold = runtime->boundary;
2109 cmd = SNDRV_PCM_IOCTL_DROP;
2110 runtime->oss.prepare = 1;
2111 }
2112 _skip1:
2113 mutex_unlock(&runtime->oss.params_lock);
2114 if (cmd) {
2115 err = snd_pcm_kernel_ioctl(psubstream, cmd, NULL);
2116 if (err < 0)
2117 return err;
2118 }
2119 }
2120 if (csubstream) {
2121 runtime = csubstream->runtime;
2122 cmd = 0;
2123 if (mutex_lock_interruptible(&runtime->oss.params_lock))
2124 return -ERESTARTSYS;
2125 err = snd_pcm_oss_make_ready_locked(csubstream);
2126 if (err < 0)
2127 mutex_unlock(&runtime->oss.params_lock);
2128 return err;
2129 if (trigger & PCM_ENABLE_INPUT) {
2130 if (runtime->oss.trigger)
2131 goto _skip2;
2132 runtime->oss.trigger = 1;
2133 runtime->start_threshold = 1;
2134 cmd = SNDRV_PCM_IOCTL_START;
2135 } else {
2136 if (!runtime->oss.trigger)
2137 goto _skip2;
2138 runtime->oss.trigger = 0;
2139 runtime->start_threshold = runtime->boundary;
2140 cmd = SNDRV_PCM_IOCTL_DROP;
2141 runtime->oss.prepare = 1;
2142 }
2143 _skip2:
2144 mutex_unlock(&runtime->oss.params_lock);
2145 if (cmd) {
2146 err = snd_pcm_kernel_ioctl(csubstream, cmd, NULL);
2147 if (err < 0)
2148 return err;
2149 }
2150 }
2151 return 0;
2152 }
2153
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2023-09-21 15:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-21 6:42 [PATCH v2] ALSA: pcm: oss: Fix race at SNDCTL_DSP_SETTRIGGER Ma Ke
2023-09-21 13:29 ` Takashi Iwai
2023-09-21 15:20 ` kernel test robot [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202309212328.2UOE4Raf-lkp@intel.com \
--to=lkp@intel.com \
--cc=Liam.Howlett@oracle.com \
--cc=alsa-devel@alsa-project.org \
--cc=linux-kernel@vger.kernel.org \
--cc=make_ruc2021@163.com \
--cc=mgorman@techsingularity.net \
--cc=mhocko@suse.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=perex@perex.cz \
--cc=rppt@kernel.org \
--cc=surenb@google.com \
--cc=tiwai@suse.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).