linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] UBI/UBIFS updates for 5.1-rc1
@ 2019-03-12 15:13 Richard Weinberger
  2019-03-12 22:18 ` Linus Torvalds
  2019-03-13 16:50 ` pr-tracker-bot
  0 siblings, 2 replies; 5+ messages in thread
From: Richard Weinberger @ 2019-03-12 15:13 UTC (permalink / raw)
  To: torvalds; +Cc: linux-mtd, linux-kernel

Linus,

The following changes since commit a3b22b9f11d9fbc48b0291ea92259a5a810e9438:

  Linux 5.0-rc7 (2019-02-17 18:46:40 -0800)

are available in the Git repository at:

  git://git.infradead.org/linux-ubifs.git tags/upstream-5.1-rc1

for you to fetch changes up to 5578e48e5c0bf4684e68ae08caa2293bfb3f5307:

  ubi: wl: Silence uninitialized variable warning (2019-03-05 21:21:07 +0100)

----------------------------------------------------------------
This pull request contains updates for both UBI and UBIFS:

- A new interface for UBI to deal better with read disturb
- Reject unsupported ioctl flags in UBIFS (xfstests found it)

----------------------------------------------------------------
Dan Carpenter (1):
      ubi: wl: Silence uninitialized variable warning

Hou Tao (1):
      ubifs: Reject unsupported ioctl flags explicitly

Richard Weinberger (2):
      ubi: Introduce in_pq()
      ubi: Expose the bitrot interface

 drivers/mtd/ubi/cdev.c      |  30 ++++++++
 drivers/mtd/ubi/ubi.h       |   1 +
 drivers/mtd/ubi/wl.c        | 174 ++++++++++++++++++++++++++++++++++++++++++--
 fs/ubifs/ioctl.c            |   8 ++
 include/uapi/mtd/ubi-user.h |   5 ++
 5 files changed, 211 insertions(+), 7 deletions(-)




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

* Re: [GIT PULL] UBI/UBIFS updates for 5.1-rc1
  2019-03-12 15:13 [GIT PULL] UBI/UBIFS updates for 5.1-rc1 Richard Weinberger
@ 2019-03-12 22:18 ` Linus Torvalds
  2019-03-12 23:40   ` Linus Torvalds
  2019-03-13 16:50 ` pr-tracker-bot
  1 sibling, 1 reply; 5+ messages in thread
From: Linus Torvalds @ 2019-03-12 22:18 UTC (permalink / raw)
  To: Richard Weinberger; +Cc: linux-mtd, Linux List Kernel Mailing

On Tue, Mar 12, 2019 at 8:13 AM Richard Weinberger <richard@nod.at> wrote:
>
>   git://git.infradead.org/linux-ubifs.git tags/upstream-5.1-rc1

Pulling this thing is taking forever for me. I can _ping_ the site,
but the "git pull" has been hanging for a while.

I really tjhink people need to stop using infradead.org for git
hosting. It really is annoyingly slow.

If you don't have a kernel.org account, use github or gitlab or
something. But use something that isn't excruciatingly slow, ok?

I don't know _why_ infradead.org is so slow, and I don't much care.

It doesn't seem to be due to network issues, because quick look at
things, there's no real network traffic, it's just waiting for the
server to start sending git object information. And git tends to be
good about network bandwidth anyway. But git *does* require some
reasonable server-side resources, and they seem to be lacking in this
case.

                Linus

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

* Re: [GIT PULL] UBI/UBIFS updates for 5.1-rc1
  2019-03-12 22:18 ` Linus Torvalds
@ 2019-03-12 23:40   ` Linus Torvalds
  2019-03-13  8:29     ` Richard Weinberger
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Torvalds @ 2019-03-12 23:40 UTC (permalink / raw)
  To: Richard Weinberger; +Cc: linux-mtd, Linux List Kernel Mailing

On Tue, Mar 12, 2019 at 3:18 PM Linus Torvalds
<torvalds@linux-foundation.org> wrote:
>
> On Tue, Mar 12, 2019 at 8:13 AM Richard Weinberger <richard@nod.at> wrote:
> >
> >   git://git.infradead.org/linux-ubifs.git tags/upstream-5.1-rc1
>
> Pulling this thing is taking forever for me. I can _ping_ the site,
> but the "git pull" has been hanging for a while.

Ok, after leaving it for an hour and a half I just gave up. It's not worth it.

Put your repos on some other host, and re-send the pull requests,

                   Linus

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

* Re: [GIT PULL] UBI/UBIFS updates for 5.1-rc1
  2019-03-12 23:40   ` Linus Torvalds
@ 2019-03-13  8:29     ` Richard Weinberger
  0 siblings, 0 replies; 5+ messages in thread
From: Richard Weinberger @ 2019-03-13  8:29 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-mtd, Linux List Kernel Mailing

Am Mittwoch, 13. März 2019, 00:40:33 CET schrieb Linus Torvalds:
> On Tue, Mar 12, 2019 at 3:18 PM Linus Torvalds
> <torvalds@linux-foundation.org> wrote:
> >
> > On Tue, Mar 12, 2019 at 8:13 AM Richard Weinberger <richard@nod.at> wrote:
> > >
> > >   git://git.infradead.org/linux-ubifs.git tags/upstream-5.1-rc1
> >
> > Pulling this thing is taking forever for me. I can _ping_ the site,
> > but the "git pull" has been hanging for a while.
> 
> Ok, after leaving it for an hour and a half I just gave up. It's not worth it.
> 
> Put your repos on some other host, and re-send the pull requests,

Will do. UML is on kernel.org since ever.
UBIFS is on infradead.org because it was already there when I took over
maintainership. So I will move UBIFS to kernel.org too.

Thanks,
//richard 



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

* Re: [GIT PULL] UBI/UBIFS updates for 5.1-rc1
  2019-03-12 15:13 [GIT PULL] UBI/UBIFS updates for 5.1-rc1 Richard Weinberger
  2019-03-12 22:18 ` Linus Torvalds
@ 2019-03-13 16:50 ` pr-tracker-bot
  1 sibling, 0 replies; 5+ messages in thread
From: pr-tracker-bot @ 2019-03-13 16:50 UTC (permalink / raw)
  To: Richard Weinberger; +Cc: torvalds, linux-mtd, linux-kernel

The pull request you sent on Tue, 12 Mar 2019 16:13:53 +0100:

> git://git.infradead.org/linux-ubifs.git tags/upstream-5.1-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/a840b56ba385059742c2b7f4fd665ec9afb8931e

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

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

end of thread, other threads:[~2019-03-13 16:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-12 15:13 [GIT PULL] UBI/UBIFS updates for 5.1-rc1 Richard Weinberger
2019-03-12 22:18 ` Linus Torvalds
2019-03-12 23:40   ` Linus Torvalds
2019-03-13  8:29     ` Richard Weinberger
2019-03-13 16:50 ` pr-tracker-bot

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).