public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] staging: Android updates
@ 2012-03-07 21:34 John Stultz
  2012-03-07 21:42 ` Greg KH
  2012-03-07 21:46 ` Daniel Walker
  0 siblings, 2 replies; 4+ messages in thread
From: John Stultz @ 2012-03-07 21:34 UTC (permalink / raw)
  To: Greg KH; +Cc: Android Kernel Team, lkml

Hi Greg, 
	Just wanted to send along some Android updates to the staging-next tree
so they can be queued for 3.4. I've pulled these from the
common/android-3.3 branch, and made only some minor changes to keep
everything in the staging dir and to avoid compile issues on x86.

The patches can be browsed over here:
http://git.linaro.org/gitweb?p=people/jstultz/android-dev.git;a=shortlog;h=refs/heads/dev/android-staging-updates

thanks
-john


The following changes since commit 1ec41a31fb695682cab7fc7c1f6ced84d188b6f9:

  staging: ozwpan: remove debug allocator (2012-03-02 16:51:09 -0800)

are available in the git repository at:
  git://git.linaro.org/people/jstultz/android-dev.git dev/android-staging-updates

Colin Cross (11):
      android: binder: fix warning
      android: ram_console: move footer strings
      android: ram_console: drop early buffer support
      android: ram_console: drop verbose ram_console support
      android: ram_console: split out persistent ram
      android: persistent_ram: refactor ecc support
      android: persistent_ram: handle reserving and mapping memory
      android: persistent_ram: make persistent_ram_write atomic
      android: persistent_ram: add notrace to persistent_ram_write
      android: persistent_trace: ftrace into persistent_ram
      android: staging: ram_console: fix crash in ram_console_late_init

Dima Zavin (1):
      android: ram_console: set CON_ANYTIME console flag

John Stultz (1):
      android: lowmemorykiller: Fix warning on 64bit

Nick Kralevich (1):
      android: ram_console: honor dmesg_restrict

 drivers/staging/android/Kconfig            |   70 +---
 drivers/staging/android/Makefile           |    4 +
 drivers/staging/android/binder.c           |    2 +-
 drivers/staging/android/lowmemorykiller.c  |    2 +-
 drivers/staging/android/persistent_ram.c   |  470 ++++++++++++++++++++++++++++
 drivers/staging/android/persistent_ram.h   |   78 +++++
 drivers/staging/android/ram_console.c      |  412 +++++--------------------
 drivers/staging/android/trace_persistent.c |  242 ++++++++++++++
 8 files changed, 888 insertions(+), 392 deletions(-)
 create mode 100644 drivers/staging/android/persistent_ram.c
 create mode 100644 drivers/staging/android/persistent_ram.h
 create mode 100644 drivers/staging/android/trace_persistent.c



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

* Re: [GIT PULL] staging: Android updates
  2012-03-07 21:34 [GIT PULL] staging: Android updates John Stultz
@ 2012-03-07 21:42 ` Greg KH
  2012-03-07 21:52   ` John Stultz
  2012-03-07 21:46 ` Daniel Walker
  1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2012-03-07 21:42 UTC (permalink / raw)
  To: John Stultz; +Cc: Android Kernel Team, lkml

On Wed, Mar 07, 2012 at 01:34:06PM -0800, John Stultz wrote:
> Hi Greg, 
> 	Just wanted to send along some Android updates to the staging-next tree
> so they can be queued for 3.4. I've pulled these from the
> common/android-3.3 branch, and made only some minor changes to keep
> everything in the staging dir and to avoid compile issues on x86.

Ick, I really don't like git pull requests for staging tree stuff at the
moment.  Besides, you didn't sign your pull request, so I couldn't take
it anyway :)

Can you just send these in email using 'git send-email' instead?  That
works with my workflow very easily.

This is especially going to be an issue as some of these patches
conflict with others I just applied in the past 24 hours, and I can fix
them up by hand easier using individual patches in email.

thanks,

greg k-h

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

* Re: [GIT PULL] staging: Android updates
  2012-03-07 21:34 [GIT PULL] staging: Android updates John Stultz
  2012-03-07 21:42 ` Greg KH
@ 2012-03-07 21:46 ` Daniel Walker
  1 sibling, 0 replies; 4+ messages in thread
From: Daniel Walker @ 2012-03-07 21:46 UTC (permalink / raw)
  To: John Stultz; +Cc: Greg KH, Android Kernel Team, lkml

On 03/07/2012 01:34 PM, John Stultz wrote:
>        android: ram_console: move footer strings
>        android: ram_console: drop early buffer support
>        android: ram_console: drop verbose ram_console support
>        android: ram_console: split out persistent ram

What are the differences between mtdoops/ramoops and ram_console? My 
research showed they had different ways of saving the memory, but didn't 
very similar things.

Daniel

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

* Re: [GIT PULL] staging: Android updates
  2012-03-07 21:42 ` Greg KH
@ 2012-03-07 21:52   ` John Stultz
  0 siblings, 0 replies; 4+ messages in thread
From: John Stultz @ 2012-03-07 21:52 UTC (permalink / raw)
  To: Greg KH; +Cc: Android Kernel Team, lkml

On Wed, 2012-03-07 at 13:42 -0800, Greg KH wrote:
> On Wed, Mar 07, 2012 at 01:34:06PM -0800, John Stultz wrote:
> > Hi Greg, 
> > 	Just wanted to send along some Android updates to the staging-next tree
> > so they can be queued for 3.4. I've pulled these from the
> > common/android-3.3 branch, and made only some minor changes to keep
> > everything in the staging dir and to avoid compile issues on x86.
> 
> Ick, I really don't like git pull requests for staging tree stuff at the
> moment.  Besides, you didn't sign your pull request, so I couldn't take
> it anyway :)
> 
> Can you just send these in email using 'git send-email' instead?  That
> works with my workflow very easily.

Sure. I can use git-send-email.

thanks
-john



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

end of thread, other threads:[~2012-03-07 21:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-07 21:34 [GIT PULL] staging: Android updates John Stultz
2012-03-07 21:42 ` Greg KH
2012-03-07 21:52   ` John Stultz
2012-03-07 21:46 ` Daniel Walker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox