All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Series short description
@ 2013-12-24  7:52 Ian Kent
  0 siblings, 0 replies; 12+ messages in thread
From: Ian Kent @ 2013-12-24  7:52 UTC (permalink / raw)
  To: Lan Yixun (dlan); +Cc: autofs mailing list

The following series implements...

---

Ian Kent (4):
      autofs-5.0.8 - fix ipv6 link local address handling
      autofs-5.0.8 - fix fix ipv6 libtirpc getport
      autofs-5.0.8 - fix rpc_portmap_getport() proto not set
      autofs-5.0.8 - fix options compare

Scott Mayhew (1):
      From a22123dad2107a7a872ba44b0ebc478cc4d2367d Mon Sep 17 00:00:00 2001


 include/automount.h    |    1 +
 lib/cat_path.c         |    9 +++++++++
 lib/rpc_subs.c         |   14 +++++++++-----
 modules/mount_autofs.c |   12 ++++++------
 modules/mount_bind.c   |    2 +-
 modules/mount_ext2.c   |    2 +-
 modules/mount_nfs.c    |   34 +++++++++++++++++-----------------
 modules/parse_sun.c    |   22 +++++++++++-----------
 modules/replicated.c   |    9 ++++++---
 9 files changed, 61 insertions(+), 44 deletions(-)

-- 
Signature

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

* Re: [PATCH 0/5] Series short description
  2021-12-06  5:43 Masami Hiramatsu
@ 2021-12-06  7:49 ` Masami Hiramatsu
  0 siblings, 0 replies; 12+ messages in thread
From: Masami Hiramatsu @ 2021-12-06  7:49 UTC (permalink / raw)
  To: Lukasz Majewski; +Cc: u-boot, ilias.apalodimas, sughosh.ganu, jaswinder.singh

Sorry, please ignore this mail, i missed to update the subject.
Thanks,

2021年12月6日(月) 14:43 Masami Hiramatsu <masami.hiramatsu@linaro.org>:
>
> Hi,
>
> This series is improving DFU subsystem. This improves dfu_alt_info
> parser and fixing documents etc.
>
> When I was debuging my patch for updating dfu_alt_info on the
> DeveloperBox platform, I found that dfu_alt_info parser doesn't
> accept redundant spaces and tabs. Also the dfu.rst description
> seems wrong. Moreover, there is no way to check whether the
> parser parses the dfu_alt_info correctly.
>
> These patches fixes such issues. [1/5] is just for avoiding
> buffer overrun, [2/5] and [3/5] improves dfu_alt_info parser
> to accept redundant spaces and tabs, and check the number of
> arguments strictly so that the parser (and user) can notice
> any unexpected parameters. [4/5] fixes the documents (there
> seems some wrong description maybe coming from copy&paste).
> [5/5] allows user to run 'dfu list' even if the platform
> doesn't support DFU_OVER_USB.
>
> Thank you,
>
> ---
>
> Masami Hiramatsu (5):
>       DFU: Do not copy the entity name over the buffer size
>       DFU: Accept redundant spaces and tabs in dfu_alt_info
>       DFU: Check the number of arguments and argument string strictly
>       doc: usage: DFU: Fix dfu_alt_info document
>       cmd/dfu: Enable 'dfu list' command without DFU_OVER_USB
>
>
>  cmd/dfu.c              |    6 +++--
>  doc/usage/dfu.rst      |   57 ++++++++++++++++++++++++++++++++++--------------
>  drivers/dfu/dfu.c      |   37 ++++++++++++++++++++++++-------
>  drivers/dfu/dfu_mmc.c  |   55 +++++++++++++++++++++++++++-------------------
>  drivers/dfu/dfu_mtd.c  |   34 +++++++++++++++++++----------
>  drivers/dfu/dfu_nand.c |   34 ++++++++++++++++++-----------
>  drivers/dfu/dfu_ram.c  |   24 ++++++++++----------
>  drivers/dfu/dfu_sf.c   |   34 ++++++++++++++++++-----------
>  drivers/dfu/dfu_virt.c |    5 +++-
>  include/dfu.h          |   33 ++++++++++++++++++----------
>  10 files changed, 205 insertions(+), 114 deletions(-)
>
> --
> Masami Hiramatsu <masami.hiramatsu@linaro.org>



-- 
Masami Hiramatsu

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

* [PATCH 0/5] Series short description
@ 2021-12-06  5:43 Masami Hiramatsu
  2021-12-06  7:49 ` Masami Hiramatsu
  0 siblings, 1 reply; 12+ messages in thread
From: Masami Hiramatsu @ 2021-12-06  5:43 UTC (permalink / raw)
  To: Lukasz Majewski; +Cc: u-boot, ilias.apalodimas, sughosh.ganu, jaswinder.singh

Hi,

This series is improving DFU subsystem. This improves dfu_alt_info
parser and fixing documents etc.

When I was debuging my patch for updating dfu_alt_info on the
DeveloperBox platform, I found that dfu_alt_info parser doesn't
accept redundant spaces and tabs. Also the dfu.rst description
seems wrong. Moreover, there is no way to check whether the
parser parses the dfu_alt_info correctly.

These patches fixes such issues. [1/5] is just for avoiding
buffer overrun, [2/5] and [3/5] improves dfu_alt_info parser
to accept redundant spaces and tabs, and check the number of
arguments strictly so that the parser (and user) can notice
any unexpected parameters. [4/5] fixes the documents (there
seems some wrong description maybe coming from copy&paste).
[5/5] allows user to run 'dfu list' even if the platform
doesn't support DFU_OVER_USB.

Thank you,

---

Masami Hiramatsu (5):
      DFU: Do not copy the entity name over the buffer size
      DFU: Accept redundant spaces and tabs in dfu_alt_info
      DFU: Check the number of arguments and argument string strictly
      doc: usage: DFU: Fix dfu_alt_info document
      cmd/dfu: Enable 'dfu list' command without DFU_OVER_USB


 cmd/dfu.c              |    6 +++--
 doc/usage/dfu.rst      |   57 ++++++++++++++++++++++++++++++++++--------------
 drivers/dfu/dfu.c      |   37 ++++++++++++++++++++++++-------
 drivers/dfu/dfu_mmc.c  |   55 +++++++++++++++++++++++++++-------------------
 drivers/dfu/dfu_mtd.c  |   34 +++++++++++++++++++----------
 drivers/dfu/dfu_nand.c |   34 ++++++++++++++++++-----------
 drivers/dfu/dfu_ram.c  |   24 ++++++++++----------
 drivers/dfu/dfu_sf.c   |   34 ++++++++++++++++++-----------
 drivers/dfu/dfu_virt.c |    5 +++-
 include/dfu.h          |   33 ++++++++++++++++++----------
 10 files changed, 205 insertions(+), 114 deletions(-)

--
Masami Hiramatsu <masami.hiramatsu@linaro.org>

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

* [PATCH 0/5] Series short description
@ 2010-11-16 20:49 ` John Bonesio
  0 siblings, 0 replies; 12+ messages in thread
From: John Bonesio @ 2010-11-16 20:49 UTC (permalink / raw)
  To: linux-kernel; +Cc: linuxppc-dev, jdl, glikely, devicetree-discuss, david

The following series implements a set of changes to refactor dts (device tree
source) files for systems using the mpc5200b SoC.

The dtc changes allow a base dts to be defined in a common dts file included
with '/include/ <filename>'. This base dts can then be updated and modified
by merging in a second device tree defined in the system specific dts file.

The rest of the changes are the refactoring of the mpc5200b dts files.

---

John Bonesio (5):
      scripts: dtc: Merge in changes from the dtc repository
      powerpc/5200: dts: rename nodes to prepare for refactoring dts files
      powerpc/5200: dts: remove unused properties
      powerpc/5200: dts: Remove incorrect combatible strings
      powerpc/5200: dts: refactor dts files


 arch/powerpc/boot/dts/cm5200.dts    |  198 +++----------------------
 arch/powerpc/boot/dts/digsy_mtc.dts |  179 +++--------------------
 arch/powerpc/boot/dts/lite5200b.dts |  210 ++-------------------------
 arch/powerpc/boot/dts/media5200.dts |  216 +++------------------------
 arch/powerpc/boot/dts/motionpro.dts |  198 +++----------------------
 arch/powerpc/boot/dts/mpc5200b.dtsi |  276 +++++++++++++++++++++++++++++++++++
 arch/powerpc/boot/dts/mucmc52.dts   |  176 ++++++----------------
 arch/powerpc/boot/dts/pcm030.dts    |  201 ++-----------------------
 arch/powerpc/boot/dts/pcm032.dts    |  205 ++------------------------
 arch/powerpc/boot/dts/uc101.dts     |  162 ++++-----------------
 10 files changed, 499 insertions(+), 1522 deletions(-)
 create mode 100644 arch/powerpc/boot/dts/mpc5200b.dtsi

-- 
Signature

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

* [PATCH 0/5] Series short description
@ 2010-11-16 20:49 ` John Bonesio
  0 siblings, 0 replies; 12+ messages in thread
From: John Bonesio @ 2010-11-16 20:49 UTC (permalink / raw)
  To: linux-kernel-u79uwXL29TY76Z2rM5mHXA
  Cc: glikely-s3s/WqlpOiPyB63q8FvJNQ,
	linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ

The following series implements a set of changes to refactor dts (device tree
source) files for systems using the mpc5200b SoC.

The dtc changes allow a base dts to be defined in a common dts file included
with '/include/ <filename>'. This base dts can then be updated and modified
by merging in a second device tree defined in the system specific dts file.

The rest of the changes are the refactoring of the mpc5200b dts files.

---

John Bonesio (5):
      scripts: dtc: Merge in changes from the dtc repository
      powerpc/5200: dts: rename nodes to prepare for refactoring dts files
      powerpc/5200: dts: remove unused properties
      powerpc/5200: dts: Remove incorrect combatible strings
      powerpc/5200: dts: refactor dts files


 arch/powerpc/boot/dts/cm5200.dts    |  198 +++----------------------
 arch/powerpc/boot/dts/digsy_mtc.dts |  179 +++--------------------
 arch/powerpc/boot/dts/lite5200b.dts |  210 ++-------------------------
 arch/powerpc/boot/dts/media5200.dts |  216 +++------------------------
 arch/powerpc/boot/dts/motionpro.dts |  198 +++----------------------
 arch/powerpc/boot/dts/mpc5200b.dtsi |  276 +++++++++++++++++++++++++++++++++++
 arch/powerpc/boot/dts/mucmc52.dts   |  176 ++++++----------------
 arch/powerpc/boot/dts/pcm030.dts    |  201 ++-----------------------
 arch/powerpc/boot/dts/pcm032.dts    |  205 ++------------------------
 arch/powerpc/boot/dts/uc101.dts     |  162 ++++-----------------
 10 files changed, 499 insertions(+), 1522 deletions(-)
 create mode 100644 arch/powerpc/boot/dts/mpc5200b.dtsi

-- 
Signature

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

* [PATCH 0/5] Series short description
@ 2010-11-16 20:49 ` John Bonesio
  0 siblings, 0 replies; 12+ messages in thread
From: John Bonesio @ 2010-11-16 20:49 UTC (permalink / raw)
  To: linux-kernel; +Cc: glikely, jdl, linuxppc-dev, devicetree-discuss, david

The following series implements a set of changes to refactor dts (device tree
source) files for systems using the mpc5200b SoC.

The dtc changes allow a base dts to be defined in a common dts file included
with '/include/ <filename>'. This base dts can then be updated and modified
by merging in a second device tree defined in the system specific dts file.

The rest of the changes are the refactoring of the mpc5200b dts files.

---

John Bonesio (5):
      scripts: dtc: Merge in changes from the dtc repository
      powerpc/5200: dts: rename nodes to prepare for refactoring dts files
      powerpc/5200: dts: remove unused properties
      powerpc/5200: dts: Remove incorrect combatible strings
      powerpc/5200: dts: refactor dts files


 arch/powerpc/boot/dts/cm5200.dts    |  198 +++----------------------
 arch/powerpc/boot/dts/digsy_mtc.dts |  179 +++--------------------
 arch/powerpc/boot/dts/lite5200b.dts |  210 ++-------------------------
 arch/powerpc/boot/dts/media5200.dts |  216 +++------------------------
 arch/powerpc/boot/dts/motionpro.dts |  198 +++----------------------
 arch/powerpc/boot/dts/mpc5200b.dtsi |  276 +++++++++++++++++++++++++++++++++++
 arch/powerpc/boot/dts/mucmc52.dts   |  176 ++++++----------------
 arch/powerpc/boot/dts/pcm030.dts    |  201 ++-----------------------
 arch/powerpc/boot/dts/pcm032.dts    |  205 ++------------------------
 arch/powerpc/boot/dts/uc101.dts     |  162 ++++-----------------
 10 files changed, 499 insertions(+), 1522 deletions(-)
 create mode 100644 arch/powerpc/boot/dts/mpc5200b.dtsi

-- 
Signature

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

* [PATCH 0/5] Series short description
@ 2010-06-07  4:11 Bruno Randolf
  0 siblings, 0 replies; 12+ messages in thread
From: Bruno Randolf @ 2010-06-07  4:11 UTC (permalink / raw)
  To: linville; +Cc: ath5k-devel, linux-wireless

here i resend the missing ath5k patches rebased against current
wireless-testing.

bruno

---

Bruno Randolf (5):
      ath5k: fix NULL pointer in antenna configuration
      ath5k: update AR5K_PHY_RESTART_DIV_GC values to match masks
      ath5k: new function for setting the antenna switch table
      ath5k: no need to save/restore the default antenna
      ath5k: add debugfs file for queue debugging


 drivers/net/wireless/ath/ath5k/ath5k.h |    1 
 drivers/net/wireless/ath/ath5k/debug.c |   73 ++++++++++++++++++++++++++++++++
 drivers/net/wireless/ath/ath5k/debug.h |    1 
 drivers/net/wireless/ath/ath5k/phy.c   |   43 ++++++++++++++++++-
 drivers/net/wireless/ath/ath5k/reset.c |   41 +++---------------
 5 files changed, 123 insertions(+), 36 deletions(-)

-- 
Signature

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

* Re: [PATCH 0/5] Series short description
  2009-11-17 14:50 Alan Cox
@ 2009-11-19 21:41 ` Jeff Garzik
  0 siblings, 0 replies; 12+ messages in thread
From: Jeff Garzik @ 2009-11-19 21:41 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-kernel, linux-ide

On 11/17/2009 09:50 AM, Alan Cox wrote:
> Pending experimental bits. Not necessarily ready to apply but so folks know
> what is going on.

Seems sane, modulo my Kconfig comment, and on-going thread resolution of 
course :)

	Jeff





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

* [PATCH 0/5] Series short description
@ 2009-11-17 14:50 Alan Cox
  2009-11-19 21:41 ` Jeff Garzik
  0 siblings, 1 reply; 12+ messages in thread
From: Alan Cox @ 2009-11-17 14:50 UTC (permalink / raw)
  To: linux-kernel, linux-ide

Pending experimental bits. Not necessarily ready to apply but so folks know
what is going on.

---

Alan Cox (5):
      pata_piccolo: Driver for old Toshiba chipsets
      pata: Update experimental tags
      cmd64x: implement serialization as per notes
      pata_sis: Implement MWDMA for the UDMA 133 capable chips
      pata_via: Blacklist some combinations of Transcend Flash and via


 drivers/ata/Kconfig        |   33 +++++++---
 drivers/ata/Makefile       |    1 
 drivers/ata/ata_generic.c  |    5 +-
 drivers/ata/pata_cmd64x.c  |  132 +++++++++++++++++++++++++++++++++++++++--
 drivers/ata/pata_piccolo.c |  140 ++++++++++++++++++++++++++++++++++++++++++++
 drivers/ata/pata_sis.c     |   88 +++++++++++++++++++++-------
 drivers/ata/pata_via.c     |   27 ++++++++
 include/linux/pci_ids.h    |    7 +-
 8 files changed, 388 insertions(+), 45 deletions(-)
 create mode 100644 drivers/ata/pata_piccolo.c

-- 
My Git tree is full of regressions, my git tree is full of bad C
My Git tree is full of regressions oh git-clone my codebase and see
Git-clone git-clone, oh git-clone my codebase and see, and see
Git-clone git-clone, oh git-clone my codebase and see


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

* Re: [PATCH 0/5] Series short description
  2008-06-12  4:54 Ian Kent
@ 2008-06-12  6:15 ` Ian Kent
  0 siblings, 0 replies; 12+ messages in thread
From: Ian Kent @ 2008-06-12  6:15 UTC (permalink / raw)
  To: Jim Carter; +Cc: autofs mailing list


Another false start.
Wish I could tell StGIT to cancel the send when I decide I don't want to
proceed when editing the cover mail.

On Thu, 2008-06-12 at 12:54 +0800, Ian Kent wrote:
> The following series implements...
> 
> ---
> 
> Ian Kent (5):
>       autofs-5.0.3 - fix submount shutdown handling.
>       autofs-5.0.3 - don't abuse the ap->ghost field on NFS mount
>       autofs-5.0.3 - mount thread create condition handling fix
>       Fix incorrect pthreads condition handling for mount requests.
>       Another fix for don't fail on empty master map.
> 
> 
>  daemon/automount.c     |   82 ++++++++++++------------
>  daemon/direct.c        |  100 +++++++++++++++++------------
>  daemon/indirect.c      |  164 ++++++++++++++++++++++++++++++++++--------------
>  daemon/lookup.c        |    3 -
>  daemon/state.c         |    5 +
>  include/automount.h    |   19 +++++-
>  lib/master.c           |   63 +++++++++++-------
>  modules/lookup_file.c  |    1 
>  modules/mount_autofs.c |    4 +
>  modules/mount_bind.c   |    2 -
>  modules/mount_nfs.c    |   11 ---
>  11 files changed, 277 insertions(+), 177 deletions(-)
> 

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

* [PATCH 0/5] Series short description
@ 2008-06-12  4:54 Ian Kent
  2008-06-12  6:15 ` Ian Kent
  0 siblings, 1 reply; 12+ messages in thread
From: Ian Kent @ 2008-06-12  4:54 UTC (permalink / raw)
  To: Jim Carter, autofs mailing list

The following series implements...

---

Ian Kent (5):
      autofs-5.0.3 - fix submount shutdown handling.
      autofs-5.0.3 - don't abuse the ap->ghost field on NFS mount
      autofs-5.0.3 - mount thread create condition handling fix
      Fix incorrect pthreads condition handling for mount requests.
      Another fix for don't fail on empty master map.


 daemon/automount.c     |   82 ++++++++++++------------
 daemon/direct.c        |  100 +++++++++++++++++------------
 daemon/indirect.c      |  164 ++++++++++++++++++++++++++++++++++--------------
 daemon/lookup.c        |    3 -
 daemon/state.c         |    5 +
 include/automount.h    |   19 +++++-
 lib/master.c           |   63 +++++++++++-------
 modules/lookup_file.c  |    1 
 modules/mount_autofs.c |    4 +
 modules/mount_bind.c   |    2 -
 modules/mount_nfs.c    |   11 ---
 11 files changed, 277 insertions(+), 177 deletions(-)

-- 

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

* [PATCH 0/5] Series short description
@ 2008-02-25 11:20 Vasu Dev
  0 siblings, 0 replies; 12+ messages in thread
From: Vasu Dev @ 2008-02-25 11:20 UTC (permalink / raw)
  To: linux-scsi, devel

The following series implements...

Currently OpenFC maintains several control structures for each enabled fcoe
interface, such as inner and outer fc_port, fcdev, openfc_softc, 
fcs_state (for fc_local_port and fc_virt_fab) etc. Here fc_port should not
be confused with FC protocol's ports related structs, instead fc_port provides 
generic/portable interface to FCS sub module embedded inside openFC 
for egress, ingress handlers and sa events lists to OpenFC per FCoE interface
instance.

I removed outer port instance in these patches, instead used existing fcdev 
structure by direct functions calls between FCS & OpenFC for outer port 
egress and inegress functions. The fcdev is key shared structure per FCoE 
interface between OpenFC and FCoE modules, fcdev can be extended for all 
libfc(TBD) users to access per libfc user instance.
 
Consolidation of more control structures in fcdev will simplify openFC
implementation which will help in converting OpenFC into generic libfc
library as suggested by linux-scsi reviewers.

-- 
Signature : Vasu Dev <vasu.dev@intel.com>

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

end of thread, other threads:[~2021-12-06  7:49 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-24  7:52 [PATCH 0/5] Series short description Ian Kent
  -- strict thread matches above, loose matches on Subject: below --
2021-12-06  5:43 Masami Hiramatsu
2021-12-06  7:49 ` Masami Hiramatsu
2010-11-16 20:49 John Bonesio
2010-11-16 20:49 ` John Bonesio
2010-11-16 20:49 ` John Bonesio
2010-06-07  4:11 Bruno Randolf
2009-11-17 14:50 Alan Cox
2009-11-19 21:41 ` Jeff Garzik
2008-06-12  4:54 Ian Kent
2008-06-12  6:15 ` Ian Kent
2008-02-25 11:20 Vasu Dev

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.