All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Various cleanups
@ 2009-11-27 10:57 Philippe Seewer
       [not found] ` <1259319436-14925-1-git-send-email-philippe.seewer-omB+W0Dpw2o@public.gmane.org>
  0 siblings, 1 reply; 14+ messages in thread
From: Philippe Seewer @ 2009-11-27 10:57 UTC (permalink / raw)
  To: initramfs-u79uwXL29TY76Z2rM5mHXA

While debianizing dracut, debians package checker (lintian) came up with
a few errors and warnings. Since they're not debian specific at all it
makes sense to fix them.

Philippe Seewer (6):
  initqueue: Remove trailing ;
  syslog-genrules.sh: Shebang should be /bin/sh not /bin/dash
  Module scripts should be executable
  All module scripts should have a shebang
  loginit: Fix shebang
  Fix manpage display errors

 dracut.8                                         |   38 ++++++++++++++-------
 modules.d/90crypt/crypt-cleanup.sh               |    1 +
 modules.d/90crypt/parse-crypt.sh                 |    1 +
 modules.d/90dmsquash-live/parse-dmsquash-live.sh |    1 +
 modules.d/90lvm/lvm-cleanup.sh                   |    1 +
 modules.d/90mdraid/mdraid-cleanup.sh             |    1 +
 modules.d/95dasd/parse-dasd.sh                   |    1 +
 modules.d/95dasd_mod/parse-dasd-mod.sh           |    1 +
 modules.d/95iscsi/mount-lun.sh                   |    1 +
 modules.d/95zfcp/parse-zfcp.sh                   |    2 +-
 modules.d/95znet/parse-ccw.sh                    |    1 +
 modules.d/98syslog/syslog-genrules.sh            |    2 +-
 modules.d/99base/initqueue                       |    1 -
 modules.d/99base/loginit                         |    2 +-
 14 files changed, 37 insertions(+), 17 deletions(-)
 mode change 100644 => 100755 modules.d/40network/ifname-genrules.sh
 mode change 100644 => 100755 modules.d/40network/parse-bridge.sh
 mode change 100644 => 100755 modules.d/40network/parse-ifname.sh

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 0/6] Various cleanups
@ 2025-06-27  1:11 Damien Le Moal
  0 siblings, 0 replies; 14+ messages in thread
From: Damien Le Moal @ 2025-06-27  1:11 UTC (permalink / raw)
  To: linux-ide, Niklas Cassel

6 patches to clean libata code and better document parameters (config
and AHCI driver module parameters).

Overall, no functional changes are introduced.

Damien Le Moal (6):
  ata: libata: Remove ATA_DFLAG_ZAC device flag
  ata: libata-scsi: Cleanup ata_scsi_offline_dev()
  ata: Fix SATA_MOBILE_LPM_POLICY description in Kconfig
  ata: libata: Improve LPM policies description
  ata: ahci: Clarify mobile_lpm_policy description
  ata: libata-eh: Move and rename ata_eh_set_lpm()

 drivers/ata/Kconfig       |  36 +++--
 drivers/ata/ahci.c        |   4 +-
 drivers/ata/libata-core.c |  13 +-
 drivers/ata/libata-eh.c   | 304 +++++++++++++++++++-------------------
 drivers/ata/libata-scsi.c |  20 ++-
 drivers/ata/libata.h      |   9 +-
 include/linux/libata.h    |  18 ++-
 7 files changed, 211 insertions(+), 193 deletions(-)

-- 
2.49.0


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 0/6] Various cleanups.
@ 2010-06-25 15:55 Jonathan Cameron
  2010-06-28  8:16 ` Barry Song
  0 siblings, 1 reply; 14+ messages in thread
From: Jonathan Cameron @ 2010-06-25 15:55 UTC (permalink / raw)
  To: linux-iio; +Cc: Barry.Song, Jonathan Cameron

This patch set is the result of taking a look at Barry Song's
RFC.  The idea was to get the simple uncontroversial elements
of that in place before we move on to discussion of the more
involved elements.

One or two general cleanups have slipped in here as well.

Jonathan Cameron (6):
  staging:iio: Use kasprintf to allocate and fill trig->name
  staging:iio:lis3l02dq remove unused set_ring_length function
  staging:iio: Add and convert drivers to use iio_alloc_pollfunc
  staging:iio: Add iio_triggered_ring postenable and predisable + use
    in drivers
  staging:iio: remove timestamp field from trigger and pass instead
    through pollfuncs
  staging:iio: replace combine_8_to_16 with be16_to_cpup where
    possible.

 drivers/staging/iio/accel/adis16209_ring.c         |   51 ++++---------------
 drivers/staging/iio/accel/adis16209_trigger.c      |   10 ++--
 drivers/staging/iio/accel/adis16240_ring.c         |   51 ++++---------------
 drivers/staging/iio/accel/adis16240_trigger.c      |   10 ++--
 drivers/staging/iio/accel/lis3l02dq_ring.c         |   53 +++++---------------
 drivers/staging/iio/adc/max1363_ring.c             |   45 ++---------------
 drivers/staging/iio/gyro/adis16260_ring.c          |   51 ++++---------------
 drivers/staging/iio/gyro/adis16260_trigger.c       |   10 ++--
 drivers/staging/iio/imu/adis16300_ring.c           |   51 ++++---------------
 drivers/staging/iio/imu/adis16300_trigger.c        |   10 ++--
 drivers/staging/iio/imu/adis16350_ring.c           |   51 ++++---------------
 drivers/staging/iio/imu/adis16350_trigger.c        |   10 ++--
 drivers/staging/iio/imu/adis16400_ring.c           |   51 ++++---------------
 drivers/staging/iio/imu/adis16400_trigger.c        |   10 ++--
 drivers/staging/iio/industrialio-trigger.c         |   48 ++++++++++++++----
 drivers/staging/iio/trigger.h                      |   24 ++++++---
 drivers/staging/iio/trigger/iio-trig-gpio.c        |   12 ++---
 .../staging/iio/trigger/iio-trig-periodic-rtc.c    |   15 ++----
 18 files changed, 164 insertions(+), 399 deletions(-)

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [patch 0/6] Various cleanups
@ 2007-04-04  1:06 ` Jeremy Fitzhardinge
  0 siblings, 0 replies; 14+ messages in thread
From: Jeremy Fitzhardinge @ 2007-04-04  1:06 UTC (permalink / raw)
  To: Andi Kleen; +Cc: virtualization, Andrew Morton, lkml

Hi Andi,

Here's a little batch of cleanups:
 - re-enable VDSO when PARAVIRT is enabled
 - make the parainstructions symbols match the
   other altinstructions naming convention
 - add kernel command-line options to disable altinstructions for
   smp and pv_ops

Oh, and I'm mailing your noreplacement patch back at you, for no
particularly good reason.

	J

-- 

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

end of thread, other threads:[~2025-06-27  1:13 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-27 10:57 [PATCH 0/6] Various cleanups Philippe Seewer
     [not found] ` <1259319436-14925-1-git-send-email-philippe.seewer-omB+W0Dpw2o@public.gmane.org>
2009-11-27 10:57   ` [PATCH 1/6] initqueue: Remove trailing ; Philippe Seewer
2009-11-27 10:57   ` [PATCH 2/6] syslog-genrules.sh: Shebang should be /bin/sh not /bin/dash Philippe Seewer
2009-11-27 10:57   ` [PATCH 3/6] Module scripts should be executable Philippe Seewer
2009-11-27 10:57   ` [PATCH 4/6] All module scripts should have a shebang Philippe Seewer
2009-11-27 10:57   ` [PATCH 5/6] loginit: Fix shebang Philippe Seewer
2009-11-27 10:57   ` [PATCH 6/6] Fix manpage display errors Philippe Seewer
2009-11-27 13:08   ` [PATCH 0/6] Various cleanups Harald Hoyer
  -- strict thread matches above, loose matches on Subject: below --
2025-06-27  1:11 Damien Le Moal
2010-06-25 15:55 Jonathan Cameron
2010-06-28  8:16 ` Barry Song
2010-06-28  9:50   ` Jonathan Cameron
2007-04-04  1:06 [patch " Jeremy Fitzhardinge
2007-04-04  1:06 ` Jeremy Fitzhardinge

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.