Ignore:
Timestamp:
Apr 3, 2017, 4:51:56 PM (8 years ago)
Author:
David Azarewicz
Message:

Merged/reintegrated v2 branch into trunk. Trunk is now v2

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • TabularUnified GPL/trunk/alsa-kernel/core/pcm.c

    r479 r598  
    166166}
    167167
    168 #ifdef CONFIG_SND_VERBOSE_PROCFS
    169 
    170 #define STATE(v) [SNDRV_PCM_STATE_##v] = #v
    171 #define STREAM(v) [SNDRV_PCM_STREAM_##v] = #v
    172 #define READY(v) [SNDRV_PCM_READY_##v] = #v
    173 #define XRUN(v) [SNDRV_PCM_XRUN_##v] = #v
    174 #define SILENCE(v) [SNDRV_PCM_SILENCE_##v] = #v
    175 #define TSTAMP(v) [SNDRV_PCM_TSTAMP_##v] = #v
    176 #define ACCESS(v) [SNDRV_PCM_ACCESS_##v] = #v
    177 #define START(v) [SNDRV_PCM_START_##v] = #v
    178168#define FORMAT(v) [SNDRV_PCM_FORMAT_##v] = #v
    179 #define SUBFORMAT(v) [SNDRV_PCM_SUBFORMAT_##v] = #v
    180169
    181170static char *snd_pcm_format_names[] = {
     
    218207        FORMAT(U18_3LE),
    219208        FORMAT(U18_3BE),
     209        FORMAT(G723_24),
     210        FORMAT(G723_24_1B),
     211        FORMAT(G723_40),
     212        FORMAT(G723_40_1B),
    220213};
    221214
    222 static const char *snd_pcm_format_name(snd_pcm_format_t format)
    223 {
     215const char *snd_pcm_format_name(snd_pcm_format_t format)
     216{
     217        if (format >= ARRAY_SIZE(snd_pcm_format_names))
     218                return "Unknown";
    224219        return snd_pcm_format_names[format];
    225220}
     221EXPORT_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
    226234
    227235static char *snd_pcm_stream_names[] = {
     
    360368                                             struct snd_info_buffer *buffer)
    361369{
    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);
    364371}
    365372
     
    368375{
    369376        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;
    371381        if (!runtime) {
    372382                snd_iprintf(buffer, "closed\n");
    373                 return;
     383                goto unlock;
    374384        }
    375385        if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
    376386                snd_iprintf(buffer, "no setup\n");
    377                 return;
     387                goto unlock;
    378388        }
    379389        snd_iprintf(buffer, "access: %s\n", snd_pcm_access_name(runtime->access));
     
    394404        }
    395405#endif
     406 unlock:
     407        mutex_unlock(&substream->pcm->open_mutex);
    396408}
    397409
     
    400412{
    401413        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;
    403418        if (!runtime) {
    404419                snd_iprintf(buffer, "closed\n");
    405                 return;
     420                goto unlock;
    406421        }
    407422        if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
    408423                snd_iprintf(buffer, "no setup\n");
    409                 return;
     424                goto unlock;
    410425        }
    411426        snd_iprintf(buffer, "tstamp_mode: %s\n", snd_pcm_tstamp_mode_name(runtime->tstamp_mode));
     
    417432        snd_iprintf(buffer, "silence_size: %lu\n", runtime->silence_size);
    418433        snd_iprintf(buffer, "boundary: %lu\n", runtime->boundary);
     434 unlock:
     435        mutex_unlock(&substream->pcm->open_mutex);
    419436}
    420437
     
    423440{
    424441        struct snd_pcm_substream *substream = entry->private_data;
    425         struct snd_pcm_runtime *runtime = substream->runtime;
     442        struct snd_pcm_runtime *runtime;
    426443        struct snd_pcm_status status;
    427444        int err;
     445
     446        mutex_lock(&substream->pcm->open_mutex);
     447        runtime = substream->runtime;
    428448        if (!runtime) {
    429449                snd_iprintf(buffer, "closed\n");
    430                 return;
     450                goto unlock;
    431451        }
    432452        memset(&status, 0, sizeof(status));
     
    434454        if (err < 0) {
    435455                snd_iprintf(buffer, "error %d\n", err);
    436                 return;
     456                goto unlock;
    437457        }
    438458        snd_iprintf(buffer, "state: %s\n", snd_pcm_state_name(status.state));
     459        snd_iprintf(buffer, "owner_pid   : %d\n", pid_vnr(substream->pid));
    439460        snd_iprintf(buffer, "trigger_time: %ld.%09ld\n",
    440461                status.trigger_tstamp.tv_sec, status.trigger_tstamp.tv_nsec);
     
    447468        snd_iprintf(buffer, "hw_ptr      : %ld\n", runtime->status->hw_ptr);
    448469        snd_iprintf(buffer, "appl_ptr    : %ld\n", runtime->control->appl_ptr);
     470 unlock:
     471        mutex_unlock(&substream->pcm->open_mutex);
    449472}
    450473
     
    649672                substream->stream = stream;
    650673                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);
    654674                substream->buffer_bytes_max = UINT_MAX;
    655675                if (prev == NULL)
     
    811831        read_lock(&card->ctl_files_rwlock);
    812832        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)) {
    814834                        prefer_subdevice = kctl->prefer_pcm_subdevice;
    815835                        if (prefer_subdevice != -1)
     
    895915
    896916        init_waitqueue_head(&runtime->sleep);
     917        init_waitqueue_head(&runtime->tsleep);
    897918
    898919        runtime->status->state = SNDRV_PCM_STATE_OPEN;
     
    902923        substream->ref_count = 1;
    903924        substream->f_flags = file->f_flags;
     925        substream->pid = get_pid(task_pid(current));
    904926        pstr->substream_opened++;
    905927        *rsubstream = substream;
     
    921943                       PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control)));
    922944        kfree(runtime->hw_constraints.rules);
     945#ifdef CONFIG_SND_PCM_XRUN_DEBUG
     946        if (runtime->hwptr_log)
     947                kfree(runtime->hwptr_log);
     948#endif
    923949        kfree(runtime);
    924950        substream->runtime = NULL;
     951        put_pid(substream->pid);
     952        substream->pid = NULL;
    925953        substream->pstr->substream_opened--;
    926954}
     
    963991        struct snd_pcm_notify *notify;
    964992        char str[16];
    965         struct snd_pcm *pcm = device->device_data;
     993        struct snd_pcm *pcm;
    966994        struct device *dev;
    967995
    968         if (snd_BUG_ON(!pcm || !device))
     996        if (snd_BUG_ON(!device || !device->device_data))
    969997                return -ENXIO;
     998        pcm = device->device_data;
    970999        mutex_lock(&register_mutex);
    9711000        err = snd_pcm_add(pcm);
     
    11551184int pcm_instances(int card_id)
    11561185{
    1157     int idx;
     1186    //int idx;
    11581187    int pcms = 0;
    11591188    struct snd_pcm *pcm;
Note: See TracChangeset for help on using the changeset viewer.