All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFC 00/26] Kill set_fs() in ALSA codes
@ 2017-05-11 21:08 Takashi Iwai
  2017-05-11 21:09 ` [PATCH RFC 01/26] ALSA: hda - Simplify bound-beep mute control for ALC268 Takashi Iwai
                   ` (26 more replies)
  0 siblings, 27 replies; 41+ messages in thread
From: Takashi Iwai @ 2017-05-11 21:08 UTC (permalink / raw)
  To: alsa-devel

Hi,

this is a slightly lengthy patchset, basically targeted for 4.13, thus
it's still in RFC.  The main purpose of this patchset is to get rid of
get_fs() / set_fs() usages in ALSA codes.

The patchset starts from a patch that looks fairly irrelevant with the
goal (the conversion of HD-audio bind-mute code), but it's a step for
the long trail.  The biggest change in the patchset is the conversion
of copy & silence PCM ops into the new copy_silence ops.  It helped
for reducing the code size and for handling the in-kernel buffer
copies.

The current patches are found in topic/kill-set_fs branch of my
sound.git tree.


thanks,

Takashi

===

Takashi Iwai (26):
  ALSA: hda - Simplify bound-beep mute control for ALC268
  ALSA: hda - Move bind-mixer switch codes to generic parser
  ALSA: hda - Remove the generic bind ctl helpers
  ALSA: hda - Remove the use of set_fs()
  ALSA: hda - Fix a typo in comment
  ALSA: hda - Remove superfluous header inclusions
  ALSA: opl3: Kill unused set_fs()
  ALSA: emu10k1: Get rid of set_fs() usage
  ALSA: pcm: Remove set_fs() in PCM core code
  ALSA: pcm: Introduce copy_silence PCM ops
  ALSA: Update document about copy_silence PCM ops
  ALSA: dummy: Convert to copy_silence ops
  ALSA: es1938: Convert to copy_silence ops
  ALSA: korg1212: Convert to copy_silence ops
  ALSA: nm256: Convert to copy_silence ops
  ALSA: rme32: Convert to copy_silence ops
  ALSA: rme96: Convert to copy_silence ops
  ALSA: rme9652: Convert to copy_silence ops
  ALSA: hdsp: Convert to copy_silence ops
  ALSA: gus: Convert to copy_silence ops
  ALSA: sb: Convert to copy_silence ops
  ALSA: sh: Convert to copy_silence ops
  ASoC: blackfin: Convert to copy_silence ops
  [media] solo6x10: Convert to copy_silence ops
  ALSA: pcm: Drop the old copy and silence ops
  ALSA: pcm: Kill set_fs() usage in OSS layer and USB gadget

 .../sound/kernel-api/writing-an-alsa-driver.rst    | 110 +++++----
 drivers/media/pci/solo6x10/solo6x10-g723.c         |  11 +-
 drivers/usb/gadget/function/u_uac1.c               |   8 +-
 include/sound/pcm.h                                |  19 +-
 sound/core/oss/pcm_oss.c                           |  62 ++---
 sound/core/pcm_compat.c                            |  22 +-
 sound/core/pcm_lib.c                               | 174 +++++++++-----
 sound/core/pcm_native.c                            | 122 ++++++----
 sound/drivers/dummy.c                              |  13 +-
 sound/drivers/opl3/opl3_oss.c                      |  14 --
 sound/isa/gus/gus_pcm.c                            |  43 +---
 sound/isa/sb/emu8000_pcm.c                         |  99 +++-----
 sound/pci/emu10k1/emufx.c                          | 127 ++++++-----
 sound/pci/es1938.c                                 |  11 +-
 sound/pci/hda/hda_codec.c                          | 251 +++------------------
 sound/pci/hda/hda_generic.c                        |  46 +++-
 sound/pci/hda/hda_local.h                          |  61 -----
 sound/pci/hda/patch_realtek.c                      |  37 ++-
 sound/pci/korg1212/korg1212.c                      | 128 +++--------
 sound/pci/nm256/nm256.c                            |  35 ++-
 sound/pci/rme32.c                                  |  49 ++--
 sound/pci/rme96.c                                  |  52 ++---
 sound/pci/rme9652/hdsp.c                           |  44 ++--
 sound/pci/rme9652/rme9652.c                        |  46 ++--
 sound/sh/sh_dac_audio.c                            |  40 +---
 sound/soc/blackfin/bf5xx-ac97-pcm.c                |   6 +-
 sound/soc/blackfin/bf5xx-ac97.c                    |  18 +-
 sound/soc/blackfin/bf5xx-i2s-pcm.c                 |  46 ++--
 sound/soc/soc-pcm.c                                |   3 +-
 29 files changed, 696 insertions(+), 1001 deletions(-)

-- 
2.12.2

^ permalink raw reply	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2019-03-27 11:24 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-11 21:08 [PATCH RFC 00/26] Kill set_fs() in ALSA codes Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 01/26] ALSA: hda - Simplify bound-beep mute control for ALC268 Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 02/26] ALSA: hda - Move bind-mixer switch codes to generic parser Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 03/26] ALSA: hda - Remove the generic bind ctl helpers Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 04/26] ALSA: hda - Remove the use of set_fs() Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 05/26] ALSA: hda - Fix a typo in comment Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 06/26] ALSA: hda - Remove superfluous header inclusions Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 07/26] ALSA: opl3: Kill unused set_fs() Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 08/26] ALSA: emu10k1: Get rid of set_fs() usage Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 09/26] ALSA: pcm: Remove set_fs() in PCM core code Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 10/26] ALSA: pcm: Introduce copy_silence PCM ops Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 11/26] ALSA: Update document about " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 12/26] ALSA: dummy: Convert to copy_silence ops Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 13/26] ALSA: es1938: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 14/26] ALSA: korg1212: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 15/26] ALSA: nm256: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 16/26] ALSA: rme32: " Takashi Iwai
2018-07-18 10:22   ` René Rebe
2018-07-18 10:56     ` Takashi Iwai
2018-07-18 18:10       ` René Rebe
2018-07-18 18:43         ` René Rebe
2018-07-19  8:09           ` René Rebe
2019-03-02 17:19       ` René Rebe
2019-03-24 11:19         ` [PATCH RFC] ALSA: rme32: fix interrupt ack for me René Rebe
2019-03-27 11:14           ` Takashi Iwai
2019-03-27 11:20             ` René Rebe
2019-03-27 11:24               ` Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 17/26] ALSA: rme96: Convert to copy_silence ops Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 18/26] ALSA: rme9652: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 19/26] ALSA: hdsp: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 20/26] ALSA: gus: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 21/26] ALSA: sb: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 22/26] ALSA: sh: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 23/26] ASoC: blackfin: " Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 24/26] [media] solo6x10: " Takashi Iwai
2017-05-11 21:21   ` Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 25/26] ALSA: pcm: Drop the old copy and silence ops Takashi Iwai
2017-05-11 21:09 ` [PATCH RFC 26/26] ALSA: pcm: Kill set_fs() usage in OSS layer and USB gadget Takashi Iwai
2017-05-14  8:23 ` [PATCH RFC 00/26] Kill set_fs() in ALSA codes Takashi Sakamoto
2017-05-15  8:25   ` Takashi Iwai
2017-05-24  2:12     ` Takashi Sakamoto

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.