linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PULL REQUEST] More UBI/UBIFS changes for 3.3
@ 2012-01-13 12:11 Bityutskiy, Artem
  2012-01-14 18:48 ` Dave Jones
  0 siblings, 1 reply; 4+ messages in thread
From: Bityutskiy, Artem @ 2012-01-13 12:11 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel


[-- Attachment #1.1: Type: text/plain, Size: 1078 bytes --]

Hi Linus,

please pull more UBI/UBIFS changes for 3.3, thanks!

The following changes since commit 805a6af8dba5dfdd35ec35dc52ec0122400b2610:

  Linux 3.2 (2012-01-04 15:55:44 -0800)

are available in the git repository at:
  git://git.infradead.org/ubifs-2.6.git linux-next

Artem Bityutskiy (5):
      UBI: fix debugging messages
      UBIFS: make debugging messages light again
      UBIFS: fix debugging messages
      UBIFS: use snprintf instead of sprintf when printing keys
      UBIFS: fix key printing

Richard Weinberger (1):
      UBI: make vid_hdr non-static

 drivers/mtd/ubi/debug.h |    5 ++-
 drivers/mtd/ubi/vtbl.c  |    2 +-
 fs/ubifs/debug.c        |   90 ++++++++++++++++++++++++-----------------------
 fs/ubifs/debug.h        |   44 +++++++++++++----------
 fs/ubifs/journal.c      |    7 ++--
 fs/ubifs/replay.c       |    8 ++--
 fs/ubifs/tnc.c          |   55 ++++++++++++++--------------
 fs/ubifs/tnc_misc.c     |   10 +++---
 8 files changed, 115 insertions(+), 106 deletions(-)

-- 
Best Regards,
Artem Bityutskiy


[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 464 bytes --]

---------------------------------------------------------------------
Intel Finland Oy
Registered Address: PL 281, 00181 Helsinki 
Business Identity Code: 0357606 - 4 
Domiciled in Helsinki 

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.

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

* Re: [PULL REQUEST] More UBI/UBIFS changes for 3.3
  2012-01-13 12:11 [PULL REQUEST] More UBI/UBIFS changes for 3.3 Bityutskiy, Artem
@ 2012-01-14 18:48 ` Dave Jones
  2012-01-15  9:19   ` Anca Emanuel
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Jones @ 2012-01-14 18:48 UTC (permalink / raw)
  To: Bityutskiy, Artem; +Cc: Linus Torvalds, linux-kernel

On Fri, Jan 13, 2012 at 12:11:57PM +0000, Bityutskiy, Artem wrote:
 > Hi Linus,
 > 
 > please pull more UBI/UBIFS changes for 3.3, thanks!
 > 
 > The following changes since commit 805a6af8dba5dfdd35ec35dc52ec0122400b2610:
 > 
 >   Linux 3.2 (2012-01-04 15:55:44 -0800)

This introduced a compile failure if CONFIG_UBIFS_FS_DEBUG is unset.

fs/ubifs/journal.c: In function ‘ubifs_jnl_write_data’:
fs/ubifs/journal.c:700:2: error: implicit declaration of function ‘dbg_jnlk’ [-Werror=implicit-function-declaration]

	Dave

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

* Re: [PULL REQUEST] More UBI/UBIFS changes for 3.3
  2012-01-14 18:48 ` Dave Jones
@ 2012-01-15  9:19   ` Anca Emanuel
  2012-01-15 19:22     ` Artem Bityutskiy
  0 siblings, 1 reply; 4+ messages in thread
From: Anca Emanuel @ 2012-01-15  9:19 UTC (permalink / raw)
  To: Dave Jones, Bityutskiy, Artem, Linus Torvalds, linux-kernel

On Sat, Jan 14, 2012 at 8:48 PM, Dave Jones <davej@redhat.com> wrote:

> This introduced a compile failure if CONFIG_UBIFS_FS_DEBUG is unset.
>
> fs/ubifs/journal.c: In function ‘ubifs_jnl_write_data’:
> fs/ubifs/journal.c:700:2: error: implicit declaration of function ‘dbg_jnlk’ [-Werror=implicit-function-declaration]

And now it is in Linus tree.


  CC [M]  fs/ubifs/journal.o
fs/ubifs/journal.c: In function ‘ubifs_jnl_write_data’:
fs/ubifs/journal.c:700:2: error: implicit declaration of function
‘dbg_jnlk’ [-Werror=implicit-function-declaration]
cc1: some warnings being treated as errors

make[3]: *** [fs/ubifs/journal.o] Error 1
make[2]: *** [fs/ubifs] Error 2
make[1]: *** [fs] Error 2

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

* Re: [PULL REQUEST] More UBI/UBIFS changes for 3.3
  2012-01-15  9:19   ` Anca Emanuel
@ 2012-01-15 19:22     ` Artem Bityutskiy
  0 siblings, 0 replies; 4+ messages in thread
From: Artem Bityutskiy @ 2012-01-15 19:22 UTC (permalink / raw)
  To: Anca Emanuel; +Cc: Dave Jones, Bityutskiy, Artem, Linus Torvalds, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 615 bytes --]

On Sun, 2012-01-15 at 11:19 +0200, Anca Emanuel wrote:
> On Sat, Jan 14, 2012 at 8:48 PM, Dave Jones <davej@redhat.com> wrote:
> 
> > This introduced a compile failure if CONFIG_UBIFS_FS_DEBUG is unset.
> >
> > fs/ubifs/journal.c: In function ‘ubifs_jnl_write_data’:
> > fs/ubifs/journal.c:700:2: error: implicit declaration of function ‘dbg_jnlk’ [-Werror=implicit-function-declaration]
> 
> And now it is in Linus tree.

Sorry for this, I've sent today another pull request with a fix. I was
not careful enough to test UBIFS when debugging is disabled.

-- 
Best Regards,
Artem Bityutskiy

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

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

end of thread, other threads:[~2012-01-15 19:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-13 12:11 [PULL REQUEST] More UBI/UBIFS changes for 3.3 Bityutskiy, Artem
2012-01-14 18:48 ` Dave Jones
2012-01-15  9:19   ` Anca Emanuel
2012-01-15 19:22     ` Artem Bityutskiy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).