Changeset 598 for GPL/trunk/alsa-kernel/core/pcm.c
- Timestamp:
- Apr 3, 2017, 4:51:56 PM (8 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk ¶
-
Property svn:mergeinfo
set to
/GPL/branches/uniaud32-2.1.x merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified GPL/trunk/alsa-kernel/core/pcm.c ¶
r479 r598 166 166 } 167 167 168 #ifdef CONFIG_SND_VERBOSE_PROCFS169 170 #define STATE(v) [SNDRV_PCM_STATE_##v] = #v171 #define STREAM(v) [SNDRV_PCM_STREAM_##v] = #v172 #define READY(v) [SNDRV_PCM_READY_##v] = #v173 #define XRUN(v) [SNDRV_PCM_XRUN_##v] = #v174 #define SILENCE(v) [SNDRV_PCM_SILENCE_##v] = #v175 #define TSTAMP(v) [SNDRV_PCM_TSTAMP_##v] = #v176 #define ACCESS(v) [SNDRV_PCM_ACCESS_##v] = #v177 #define START(v) [SNDRV_PCM_START_##v] = #v178 168 #define FORMAT(v) [SNDRV_PCM_FORMAT_##v] = #v 179 #define SUBFORMAT(v) [SNDRV_PCM_SUBFORMAT_##v] = #v180 169 181 170 static char *snd_pcm_format_names[] = { … … 218 207 FORMAT(U18_3LE), 219 208 FORMAT(U18_3BE), 209 FORMAT(G723_24), 210 FORMAT(G723_24_1B), 211 FORMAT(G723_40), 212 FORMAT(G723_40_1B), 220 213 }; 221 214 222 static const char *snd_pcm_format_name(snd_pcm_format_t format) 223 { 215 const char *snd_pcm_format_name(snd_pcm_format_t format) 216 { 217 if (format >= ARRAY_SIZE(snd_pcm_format_names)) 218 return "Unknown"; 224 219 return snd_pcm_format_names[format]; 225 220 } 221 EXPORT_SYMBOL_GPL(snd_pcm_format_name); 222 223 #ifdef CONFIG_SND_VERBOSE_PROCFS 224 225 #define STATE(v) [SNDRV_PCM_STATE_##v] = #v 226 #define STREAM(v) [SNDRV_PCM_STREAM_##v] = #v 227 #define READY(v) [SNDRV_PCM_READY_##v] = #v 228 #define XRUN(v) [SNDRV_PCM_XRUN_##v] = #v 229 #define SILENCE(v) [SNDRV_PCM_SILENCE_##v] = #v 230 #define TSTAMP(v) [SNDRV_PCM_TSTAMP_##v] = #v 231 #define ACCESS(v) [SNDRV_PCM_ACCESS_##v] = #v 232 #define START(v) [SNDRV_PCM_START_##v] = #v 233 #define SUBFORMAT(v) [SNDRV_PCM_SUBFORMAT_##v] = #v 226 234 227 235 static char *snd_pcm_stream_names[] = { … … 360 368 struct snd_info_buffer *buffer) 361 369 { 362 snd_pcm_proc_info_read((struct snd_pcm_substream *)entry->private_data, 363 buffer); 370 snd_pcm_proc_info_read(entry->private_data, buffer); 364 371 } 365 372 … … 368 375 { 369 376 struct snd_pcm_substream *substream = entry->private_data; 370 struct snd_pcm_runtime *runtime = substream->runtime; 377 struct snd_pcm_runtime *runtime; 378 379 mutex_lock(&substream->pcm->open_mutex); 380 runtime = substream->runtime; 371 381 if (!runtime) { 372 382 snd_iprintf(buffer, "closed\n"); 373 return;383 goto unlock; 374 384 } 375 385 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) { 376 386 snd_iprintf(buffer, "no setup\n"); 377 return;387 goto unlock; 378 388 } 379 389 snd_iprintf(buffer, "access: %s\n", snd_pcm_access_name(runtime->access)); … … 394 404 } 395 405 #endif 406 unlock: 407 mutex_unlock(&substream->pcm->open_mutex); 396 408 } 397 409 … … 400 412 { 401 413 struct snd_pcm_substream *substream = entry->private_data; 402 struct snd_pcm_runtime *runtime = substream->runtime; 414 struct snd_pcm_runtime *runtime; 415 416 mutex_lock(&substream->pcm->open_mutex); 417 runtime = substream->runtime; 403 418 if (!runtime) { 404 419 snd_iprintf(buffer, "closed\n"); 405 return;420 goto unlock; 406 421 } 407 422 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) { 408 423 snd_iprintf(buffer, "no setup\n"); 409 return;424 goto unlock; 410 425 } 411 426 snd_iprintf(buffer, "tstamp_mode: %s\n", snd_pcm_tstamp_mode_name(runtime->tstamp_mode)); … … 417 432 snd_iprintf(buffer, "silence_size: %lu\n", runtime->silence_size); 418 433 snd_iprintf(buffer, "boundary: %lu\n", runtime->boundary); 434 unlock: 435 mutex_unlock(&substream->pcm->open_mutex); 419 436 } 420 437 … … 423 440 { 424 441 struct snd_pcm_substream *substream = entry->private_data; 425 struct snd_pcm_runtime *runtime = substream->runtime;442 struct snd_pcm_runtime *runtime; 426 443 struct snd_pcm_status status; 427 444 int err; 445 446 mutex_lock(&substream->pcm->open_mutex); 447 runtime = substream->runtime; 428 448 if (!runtime) { 429 449 snd_iprintf(buffer, "closed\n"); 430 return;450 goto unlock; 431 451 } 432 452 memset(&status, 0, sizeof(status)); … … 434 454 if (err < 0) { 435 455 snd_iprintf(buffer, "error %d\n", err); 436 return;456 goto unlock; 437 457 } 438 458 snd_iprintf(buffer, "state: %s\n", snd_pcm_state_name(status.state)); 459 snd_iprintf(buffer, "owner_pid : %d\n", pid_vnr(substream->pid)); 439 460 snd_iprintf(buffer, "trigger_time: %ld.%09ld\n", 440 461 status.trigger_tstamp.tv_sec, status.trigger_tstamp.tv_nsec); … … 447 468 snd_iprintf(buffer, "hw_ptr : %ld\n", runtime->status->hw_ptr); 448 469 snd_iprintf(buffer, "appl_ptr : %ld\n", runtime->control->appl_ptr); 470 unlock: 471 mutex_unlock(&substream->pcm->open_mutex); 449 472 } 450 473 … … 649 672 substream->stream = stream; 650 673 sprintf(substream->name, "subdevice #%i", idx); 651 snprintf(substream->latency_id, sizeof(substream->latency_id),652 "ALSA-PCM%d-%d%c%d", pcm->card->number, pcm->device,653 (stream ? 'c' : 'p'), idx);654 674 substream->buffer_bytes_max = UINT_MAX; 655 675 if (prev == NULL) … … 811 831 read_lock(&card->ctl_files_rwlock); 812 832 list_for_each_entry(kctl, &card->ctl_files, list, struct snd_ctl_file) { 813 if (kctl->pid == current->pid) {833 if (kctl->pid == task_pid(current)) { 814 834 prefer_subdevice = kctl->prefer_pcm_subdevice; 815 835 if (prefer_subdevice != -1) … … 895 915 896 916 init_waitqueue_head(&runtime->sleep); 917 init_waitqueue_head(&runtime->tsleep); 897 918 898 919 runtime->status->state = SNDRV_PCM_STATE_OPEN; … … 902 923 substream->ref_count = 1; 903 924 substream->f_flags = file->f_flags; 925 substream->pid = get_pid(task_pid(current)); 904 926 pstr->substream_opened++; 905 927 *rsubstream = substream; … … 921 943 PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control))); 922 944 kfree(runtime->hw_constraints.rules); 945 #ifdef CONFIG_SND_PCM_XRUN_DEBUG 946 if (runtime->hwptr_log) 947 kfree(runtime->hwptr_log); 948 #endif 923 949 kfree(runtime); 924 950 substream->runtime = NULL; 951 put_pid(substream->pid); 952 substream->pid = NULL; 925 953 substream->pstr->substream_opened--; 926 954 } … … 963 991 struct snd_pcm_notify *notify; 964 992 char str[16]; 965 struct snd_pcm *pcm = device->device_data;993 struct snd_pcm *pcm; 966 994 struct device *dev; 967 995 968 if (snd_BUG_ON(! pcm || !device))996 if (snd_BUG_ON(!device || !device->device_data)) 969 997 return -ENXIO; 998 pcm = device->device_data; 970 999 mutex_lock(®ister_mutex); 971 1000 err = snd_pcm_add(pcm); … … 1155 1184 int pcm_instances(int card_id) 1156 1185 { 1157 int idx;1186 //int idx; 1158 1187 int pcms = 0; 1159 1188 struct snd_pcm *pcm;
Note:
See TracChangeset
for help on using the changeset viewer.