* [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
* [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: Andrew Morton, virtualization, 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
* [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 1/6] initqueue: Remove trailing ;
[not found] ` <1259319436-14925-1-git-send-email-philippe.seewer-omB+W0Dpw2o@public.gmane.org>
@ 2009-11-27 10:57 ` Philippe Seewer
2009-11-27 10:57 ` [PATCH 2/6] syslog-genrules.sh: Shebang should be /bin/sh not /bin/dash Philippe Seewer
` (5 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Philippe Seewer @ 2009-11-27 10:57 UTC (permalink / raw)
To: initramfs-u79uwXL29TY76Z2rM5mHXA
dash -n complains about the trailing ';' and somehow I think this
really isn't needed.
---
modules.d/99base/initqueue | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/modules.d/99base/initqueue b/modules.d/99base/initqueue
index e5246ee..cc6e7a8 100755
--- a/modules.d/99base/initqueue
+++ b/modules.d/99base/initqueue
@@ -37,5 +37,4 @@ fi
mv -f "/tmp/$$-${job}.sh" "/initqueue${settled}/${job}.sh"
[ -z "$settled" ] && >> /initqueue/work
-;
--
1.6.5.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 2/6] syslog-genrules.sh: Shebang should be /bin/sh not /bin/dash
[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 ` Philippe Seewer
2009-11-27 10:57 ` [PATCH 3/6] Module scripts should be executable Philippe Seewer
` (4 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Philippe Seewer @ 2009-11-27 10:57 UTC (permalink / raw)
To: initramfs-u79uwXL29TY76Z2rM5mHXA
---
modules.d/98syslog/syslog-genrules.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules.d/98syslog/syslog-genrules.sh b/modules.d/98syslog/syslog-genrules.sh
index 64aa08c..8d99fb8 100755
--- a/modules.d/98syslog/syslog-genrules.sh
+++ b/modules.d/98syslog/syslog-genrules.sh
@@ -1,4 +1,4 @@
-#!/bin/dash
+#!/bin/sh
# Creates the syslog udev rules to be triggered when interface becomes online.
. /lib/dracut-lib.sh
--
1.6.5.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 3/6] Module scripts should be executable
[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 ` Philippe Seewer
2009-11-27 10:57 ` [PATCH 4/6] All module scripts should have a shebang Philippe Seewer
` (3 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Philippe Seewer @ 2009-11-27 10:57 UTC (permalink / raw)
To: initramfs-u79uwXL29TY76Z2rM5mHXA
---
0 files changed, 0 insertions(+), 0 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
diff --git a/modules.d/40network/ifname-genrules.sh b/modules.d/40network/ifname-genrules.sh
old mode 100644
new mode 100755
diff --git a/modules.d/40network/parse-bridge.sh b/modules.d/40network/parse-bridge.sh
old mode 100644
new mode 100755
diff --git a/modules.d/40network/parse-ifname.sh b/modules.d/40network/parse-ifname.sh
old mode 100644
new mode 100755
--
1.6.5.3
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 4/6] All module scripts should have a shebang
[not found] ` <1259319436-14925-1-git-send-email-philippe.seewer-omB+W0Dpw2o@public.gmane.org>
` (2 preceding siblings ...)
2009-11-27 10:57 ` [PATCH 3/6] Module scripts should be executable Philippe Seewer
@ 2009-11-27 10:57 ` Philippe Seewer
2009-11-27 10:57 ` [PATCH 5/6] loginit: Fix shebang Philippe Seewer
` (2 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Philippe Seewer @ 2009-11-27 10:57 UTC (permalink / raw)
To: initramfs-u79uwXL29TY76Z2rM5mHXA
---
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 +
10 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/modules.d/90crypt/crypt-cleanup.sh b/modules.d/90crypt/crypt-cleanup.sh
index 1a47d47..3959a07 100755
--- a/modules.d/90crypt/crypt-cleanup.sh
+++ b/modules.d/90crypt/crypt-cleanup.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
# close everything which is not busy
for i in /dev/mapper/luks-*; do
cryptsetup luksClose $i >/dev/null 2>&1
diff --git a/modules.d/90crypt/parse-crypt.sh b/modules.d/90crypt/parse-crypt.sh
index 789bbb0..5c2a94a 100755
--- a/modules.d/90crypt/parse-crypt.sh
+++ b/modules.d/90crypt/parse-crypt.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
if getarg rd_NO_LUKS; then
info "rd_NO_LUKS: removing cryptoluks activation"
rm -f /etc/udev/rules.d/70-luks.rules
diff --git a/modules.d/90dmsquash-live/parse-dmsquash-live.sh b/modules.d/90dmsquash-live/parse-dmsquash-live.sh
index 40ca016..646da36 100755
--- a/modules.d/90dmsquash-live/parse-dmsquash-live.sh
+++ b/modules.d/90dmsquash-live/parse-dmsquash-live.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
# live images are specified with
# root=live:backingdev
diff --git a/modules.d/90lvm/lvm-cleanup.sh b/modules.d/90lvm/lvm-cleanup.sh
index 6efd911..f0b4037 100755
--- a/modules.d/90lvm/lvm-cleanup.sh
+++ b/modules.d/90lvm/lvm-cleanup.sh
@@ -1,2 +1,3 @@
+#!/bin/sh
# stop everything which is not busy
lvm vgchange -a n >/dev/null 2>&1
diff --git a/modules.d/90mdraid/mdraid-cleanup.sh b/modules.d/90mdraid/mdraid-cleanup.sh
index dc3b86f..f4b7810 100755
--- a/modules.d/90mdraid/mdraid-cleanup.sh
+++ b/modules.d/90mdraid/mdraid-cleanup.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
# stop everything which is not busy
for i in /dev/md* /dev/md/*; do
[ -b $i ] || continue
diff --git a/modules.d/95dasd/parse-dasd.sh b/modules.d/95dasd/parse-dasd.sh
index af58b31..47bcfe4 100755
--- a/modules.d/95dasd/parse-dasd.sh
+++ b/modules.d/95dasd/parse-dasd.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
for dasd_arg in $(getargs 'rd_DASD='); do
(
IFS=","
diff --git a/modules.d/95dasd_mod/parse-dasd-mod.sh b/modules.d/95dasd_mod/parse-dasd-mod.sh
index 023c9ad..63a7da4 100755
--- a/modules.d/95dasd_mod/parse-dasd-mod.sh
+++ b/modules.d/95dasd_mod/parse-dasd-mod.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
[ -d /etc/modprobe.d ] || mkdir /etc/modprobe.d
dasd_arg=$(getarg rd_DASD_MOD=)
diff --git a/modules.d/95iscsi/mount-lun.sh b/modules.d/95iscsi/mount-lun.sh
index ff8d4d0..d0b6458 100755
--- a/modules.d/95iscsi/mount-lun.sh
+++ b/modules.d/95iscsi/mount-lun.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
if [ -z $iscsi_lun ]; then
iscsi_lun=0
fi
diff --git a/modules.d/95zfcp/parse-zfcp.sh b/modules.d/95zfcp/parse-zfcp.sh
index 4f502c2..7fcee87 100755
--- a/modules.d/95zfcp/parse-zfcp.sh
+++ b/modules.d/95zfcp/parse-zfcp.sh
@@ -1,4 +1,4 @@
-
+#!/bin/sh
getarg rd_NO_ZFCPCONF && rm /etc/zfcp.conf
for zfcp_arg in $(getargs 'rd_ZFCP='); do
diff --git a/modules.d/95znet/parse-ccw.sh b/modules.d/95znet/parse-ccw.sh
index c8b257f..846c853 100755
--- a/modules.d/95znet/parse-ccw.sh
+++ b/modules.d/95znet/parse-ccw.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
for ccw_arg in $(getargs 'rd_CCW='); do
echo $ccw_arg >> /etc/ccw.conf
done
--
1.6.5.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 5/6] loginit: Fix shebang
[not found] ` <1259319436-14925-1-git-send-email-philippe.seewer-omB+W0Dpw2o@public.gmane.org>
` (3 preceding siblings ...)
2009-11-27 10:57 ` [PATCH 4/6] All module scripts should have a shebang Philippe Seewer
@ 2009-11-27 10:57 ` 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
6 siblings, 0 replies; 14+ messages in thread
From: Philippe Seewer @ 2009-11-27 10:57 UTC (permalink / raw)
To: initramfs-u79uwXL29TY76Z2rM5mHXA
---
modules.d/99base/loginit | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules.d/99base/loginit b/modules.d/99base/loginit
index 8faa132..a777d6f 100755
--- a/modules.d/99base/loginit
+++ b/modules.d/99base/loginit
@@ -1,4 +1,4 @@
-#/bin/sh
+#!/bin/sh
QUIET=$1
--
1.6.5.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH 6/6] Fix manpage display errors
[not found] ` <1259319436-14925-1-git-send-email-philippe.seewer-omB+W0Dpw2o@public.gmane.org>
` (4 preceding siblings ...)
2009-11-27 10:57 ` [PATCH 5/6] loginit: Fix shebang Philippe Seewer
@ 2009-11-27 10:57 ` Philippe Seewer
2009-11-27 13:08 ` [PATCH 0/6] Various cleanups Harald Hoyer
6 siblings, 0 replies; 14+ messages in thread
From: Philippe Seewer @ 2009-11-27 10:57 UTC (permalink / raw)
To: initramfs-u79uwXL29TY76Z2rM5mHXA
Some lines in dracut's manpage are just too long for justified
display on 80c terminals. These small corrections fix this. In addition
man --warnings does not complain anymore about anything at all.
---
dracut.8 | 38 +++++++++++++++++++++++++-------------
1 files changed, 25 insertions(+), 13 deletions(-)
diff --git a/dracut.8 b/dracut.8
index 851a5ce..8303fd0 100644
--- a/dracut.8
+++ b/dracut.8
@@ -104,8 +104,9 @@ root filesystem.
.B init=<path to real init>
.TP
.B root=<path to blockdevice>
-specify e.g. \fI/dev/sda1\fR or
-\fI/dev/disk/by-path/pci-0000:00:1f.1-scsi-0:0:1:0-part1\fR
+specify blockdevice to use as root filesystem.
+e.g. \fI/dev/sda1\fR
+e.g. \fI/dev/disk/by-path/pci-0000:00:1f.1-scsi-0:0:1:0-part1\fR
.TP
.B rootfstype=<filesystem type>
"auto" if not specified, e.g. \fIrootfstype=ext3\fR
@@ -120,7 +121,9 @@ do not honor special mount options for the root filesystem found in
/etc/fstab of the real root.
.SH I18N
+.ad l
e.g. LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=de-latin1-nodeadkeys
+.ad
.TP
.B KEYBOARDTYPE=sun|pc
will be written to /etc/sysconfig/keyboard in the initramfs
@@ -200,6 +203,7 @@ to the specified values
.TP
.B rd_ZFCP=<zfcp adaptor device bus ID>,<WWPN>,<FCPLUN>
rd_ZFCP can be specified multiple times on the kernel command line.
+
example: rd_ZFCP=0.0.4000,0x5005076300C213e9,0x5022000000000000
.TP
.B rd_NO_ZFCPCONF
@@ -208,9 +212,9 @@ ignore zfcp.conf included in the initramfs
.SH CCW
.TP
.B rd_CCW=<nettype>,<subchannels>,<options>
-rd_CCW can be specified multiple times on the kernel command line.
-e.g. rd_CCW=qeth,0.0.0600,0.0.0601,0.0.0602,layer2=1,portname=foo
-e.g. rd_CCW=ctc,0.0.0600,0.0.0601,0.0.0602,protocol=bar
+rd_CCW can be specified multiple times on the kernel command line. Examples:
+ rd_CCW=qeth,0.0.0600,0.0.0601,0.0.0602,layer2=1,portname=foo
+ rd_CCW=ctc,0.0.0600,0.0.0601,0.0.0602,protocol=bar
.SH DHCP
.TP
.B root=dhcp
@@ -244,7 +248,7 @@ Set the NFSv4 domain name. Will overwrite the settings in /etc/idmap.conf.
.SH iSCSI
.TP
-.B root=iscsi:[username:password[reverse:password]@][<servername>]:[<protocol>]:[<port>]:[<LUN>]:<targetname>
+.B root=iscsi:[username:password[:reverse:password]@][<servername>]:[<protocol>]:[<port>]:[<LUN>]:<targetname>
protocol defaults to "6", LUN defaults to "0".
If the "servername" field is provided by BOOTP or DHCP, then that
@@ -261,10 +265,15 @@ http://tools.ietf.org/html/rfc4173
e.g. root=iscsi:192.168.50.1::::iqn.2009-06.dracut:target0
.TP
.B root=??? netroot=iscsi:[username:password[:reverse:password]@][<servername>]:[<protocol>]:[<port>]:[<LUN>]:<targetname> ...
+.ad l
multiple netroot options allow setting up multiple iscsi disks
e.g.
- root=UUID=12424547 netroot=iscsi:192.168.50.1::::iqn.2009-06.dracut:target0 netroot=iscsi:192.168.50.1::::iqn.2009-06.dracut:target1
-.B not yet implemented
+ root=UUID=12424547
+ netroot=iscsi:192.168.50.1::::iqn.2009-06.dracut:target0
+ netroot=iscsi:192.168.50.1::::iqn.2009-06.dracut:target1
+
+.B not yet implemented!
+.ad
.TP
.B root=??? iscsi_initiator= iscsi_target_name= iscsi_target_ip= iscsi_target_port= iscsi_target_group= iscsi_username= iscsi_password= iscsi_in_username= iscsi_in_password=
.TP
@@ -284,13 +293,11 @@ the MAC-address must be lowercase!
mount nbd share from <server>
.TP
.B root=dhcp
- with dhcp root-path=nbd:<server>:<port>[:<fstype>][:<mountopts>]
+with dhcp root-path=nbd:<server>:<port>[:<fstype>][:<mountopts>]
root=dhcp alone directs initrd to look at the DHCP root-path where NBD options can be specified.
This syntax is only usable in cases where you are directly mounting the volume as the rootfs.
.SH Network
-.TP bootdev=<interface>
-.B specify the network interface to boot from
.TP
.B ip={dhcp|on|any}
get ip from dhcp server from all interfaces. If root=dhcp, loop sequentially through all interfaces (eth0, eth1, ...) and use the first with a valid DHCP root-path.
@@ -298,7 +305,9 @@ get ip from dhcp server from all interfaces. If root=dhcp, loop sequentially thr
.B ip=<interface>:{dhcp|on|any}
get ip from dhcp server on a specific interface
.TP
-.B ip=<client-IP-number>:[<server-id>]:<gateway-IP-number>:<netmask>:<client-hostname>:<interface>:{none|off}
+.ad l
+.B ip=<client-IP>:[<server-id>]:<gateway-IP>:<netmask>:<client\%hostname>:<interface>:{none|off}
+.ad
explicit network configuration
.TP
.B ifname=<interface>:<MAC>
@@ -306,6 +315,9 @@ Assign network device name <interface> (ie eth0) to the NIC with MAC <MAC>.
Note letters in the MAC-address must be lowercase!
Note that if you use this option you \fBmust\fR specify an ifname= argument
for all interfaces used in ip= or fcoe= arguments
+.TP
+.B bootdev=<interface>
+specify network interface to use routing and netroot information from. Required if multiple ip= lines are used.
.SH Plymouth Boot Splash
.TP
@@ -331,7 +343,7 @@ set -x for the dracut shell and logs to dmesg, console and /init.log
.B rdbreak
drop to a shell at the end
.TP
-.B rdbreak={cmdline|pre-udev|pre-trigger|initqueue|pre-mount|mount|pre-pivot}
+.B rdbreak={cmdline | pre-udev | pre-trigger | initqueue | pre-mount | mount | pre-pivot}
drop to a shell on defined breakpoint
.TP
.B rdudevinfo
--
1.6.5.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH 0/6] Various cleanups
[not found] ` <1259319436-14925-1-git-send-email-philippe.seewer-omB+W0Dpw2o@public.gmane.org>
` (5 preceding siblings ...)
2009-11-27 10:57 ` [PATCH 6/6] Fix manpage display errors Philippe Seewer
@ 2009-11-27 13:08 ` Harald Hoyer
6 siblings, 0 replies; 14+ messages in thread
From: Harald Hoyer @ 2009-11-27 13:08 UTC (permalink / raw)
To: Philippe Seewer; +Cc: initramfs-u79uwXL29TY76Z2rM5mHXA
On 11/27/2009 11:57 AM, Philippe Seewer wrote:
> 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
>
> --
> To unsubscribe from this list: send the line "unsubscribe initramfs" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
pushed
^ 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
* Re: [PATCH 0/6] Various cleanups.
2010-06-25 15:55 Jonathan Cameron
@ 2010-06-28 8:16 ` Barry Song
2010-06-28 9:50 ` Jonathan Cameron
0 siblings, 1 reply; 14+ messages in thread
From: Barry Song @ 2010-06-28 8:16 UTC (permalink / raw)
To: Jonathan Cameron; +Cc: linux-iio, Barry.Song
On Fri, Jun 25, 2010 at 11:55 PM, Jonathan Cameron <jic23@cam.ac.uk> wrote:
> This patch set is the result of taking a look at Barry Song's
> RFC. =C2=A0The idea was to get the simple uncontroversial elements
> of that in place before we move on to discussion of the more
> involved elements.
Thanks a lot for your great help. I acked the three patches
abstracted from the discussion.
>
> One or two general cleanups have slipped in here as well.
>
> Jonathan Cameron (6):
> =C2=A0staging:iio: Use kasprintf to allocate and fill trig->name
> =C2=A0staging:iio:lis3l02dq remove unused set_ring_length function
> =C2=A0staging:iio: Add and convert drivers to use iio_alloc_pollfunc
> =C2=A0staging:iio: Add iio_triggered_ring postenable and predisable + use
> =C2=A0 =C2=A0in drivers
> =C2=A0staging:iio: remove timestamp field from trigger and pass instead
> =C2=A0 =C2=A0through pollfuncs
> =C2=A0staging:iio: replace combine_8_to_16 with be16_to_cpup where
> =C2=A0 =C2=A0possible.
>
> =C2=A0drivers/staging/iio/accel/adis16209_ring.c =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 | =C2=A0 51 ++++---------------
> =C2=A0drivers/staging/iio/accel/adis16209_trigger.c =C2=A0 =C2=A0 =C2=A0|=
=C2=A0 10 ++--
> =C2=A0drivers/staging/iio/accel/adis16240_ring.c =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 | =C2=A0 51 ++++---------------
> =C2=A0drivers/staging/iio/accel/adis16240_trigger.c =C2=A0 =C2=A0 =C2=A0|=
=C2=A0 10 ++--
> =C2=A0drivers/staging/iio/accel/lis3l02dq_ring.c =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 | =C2=A0 53 +++++---------------
> =C2=A0drivers/staging/iio/adc/max1363_ring.c =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 | =C2=A0 45 ++---------------
> =C2=A0drivers/staging/iio/gyro/adis16260_ring.c =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0| =C2=A0 51 ++++---------------
> =C2=A0drivers/staging/iio/gyro/adis16260_trigger.c =C2=A0 =C2=A0 =C2=A0 |=
=C2=A0 10 ++--
> =C2=A0drivers/staging/iio/imu/adis16300_ring.c =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 | =C2=A0 51 ++++---------------
> =C2=A0drivers/staging/iio/imu/adis16300_trigger.c =C2=A0 =C2=A0 =C2=A0 =
=C2=A0| =C2=A0 10 ++--
> =C2=A0drivers/staging/iio/imu/adis16350_ring.c =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 | =C2=A0 51 ++++---------------
> =C2=A0drivers/staging/iio/imu/adis16350_trigger.c =C2=A0 =C2=A0 =C2=A0 =
=C2=A0| =C2=A0 10 ++--
> =C2=A0drivers/staging/iio/imu/adis16400_ring.c =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 | =C2=A0 51 ++++---------------
> =C2=A0drivers/staging/iio/imu/adis16400_trigger.c =C2=A0 =C2=A0 =C2=A0 =
=C2=A0| =C2=A0 10 ++--
> =C2=A0drivers/staging/iio/industrialio-trigger.c =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 | =C2=A0 48 ++++++++++++++----
> =C2=A0drivers/staging/iio/trigger.h =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0| =C2=A0 24 ++++++---
> =C2=A0drivers/staging/iio/trigger/iio-trig-gpio.c =C2=A0 =C2=A0 =C2=A0 =
=C2=A0| =C2=A0 12 ++---
> =C2=A0.../staging/iio/trigger/iio-trig-periodic-rtc.c =C2=A0 =C2=A0| =C2=
=A0 15 ++----
> =C2=A018 files changed, 164 insertions(+), 399 deletions(-)
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at =C2=A0http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 0/6] Various cleanups.
2010-06-28 8:16 ` Barry Song
@ 2010-06-28 9:50 ` Jonathan Cameron
0 siblings, 0 replies; 14+ messages in thread
From: Jonathan Cameron @ 2010-06-28 9:50 UTC (permalink / raw)
To: Barry Song; +Cc: linux-iio, Barry.Song
On 06/28/10 09:16, Barry Song wrote:
> On Fri, Jun 25, 2010 at 11:55 PM, Jonathan Cameron <jic23@cam.ac.uk> wrote:
>> 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.
> Thanks a lot for your great help. I acked the three patches
> abstracted from the discussion.
Thanks, though for some reason I only got the ack emails on patches
3 and 4. Which other one were you happy to ack? If you have a chane
to cast your eyes over 6 (the be16 one) just to check I got that the
right way round that would be great!
Thanks,
Jonathan
>
>>
>> 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(-)
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
>
^ 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
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.