Re: [PATCH v2] build: Use AC_HEADER_MAJOR to find device macros

2016-04-17 Thread Vladimir 'phcoder' Serbinenko
Looks good to me. If Andrei is fine with it, I'll let him commit Le Mon, Apr 18, 2016 à 4:28 AM, Mike Gilbert a écrit : > Depending on the OS/libc, device macros are defined in different > headers. > > sys/mkdev.h - BSD, Sun > sys/sysmacros.h - glibc (Linux) > > glibc currently pulls sys/sysmacr

Re: [PATCH] fs: remove implicit compiler calls to memset/memcpy

2016-04-17 Thread Vladimir 'phcoder' Serbinenko
You can use asm to get around msvc limitations. Sth like .global memcpy memcpy: jmp grub_memcpy Where implicit memcpy is inserted is pretty much unpredictable and we're not going to maintain memcpy-free environment because of this Le Mon, Apr 11, 2016 à 1:50 AM, Pete Batard a écrit : > O

Re: btrfs subvolumes [was Re: Bugs and tasks for 2.02[~rc1] ]

2016-04-17 Thread Michael Chang
On Mon, Apr 18, 2016 at 06:22:10AM +0200, Vladimir 'phcoder' Serbinenko wrote: > On Wednesday, April 13, 2016, Olaf Hering wrote: > > > On Fri, Mar 11, Vladimir 'phcoder' Serbinenko wrote: > > > > > On Wednesday, March 9, 2016, Olaf Hering > > > wrote: > > > On Wed, Mar 02, Vladimir 'phcoder'

btrfs subvolumes [was Re: Bugs and tasks for 2.02[~rc1] ]

2016-04-17 Thread Vladimir 'phcoder' Serbinenko
On Wednesday, April 13, 2016, Olaf Hering wrote: > On Fri, Mar 11, Vladimir 'phcoder' Serbinenko wrote: > > > On Wednesday, March 9, 2016, Olaf Hering > > wrote: > > On Wed, Mar 02, Vladimir 'phcoder' Serbinenko wrote: > > > I would like to come up with a complete list of 2.02 blockers in

Re: Bugs and tasks for 2.02[~rc1]

2016-04-17 Thread Vladimir 'phcoder' Serbinenko
On Wednesday, April 13, 2016, Bruce Dubbs wrote: > Vladimir 'phcoder' Serbinenko wrote: > >> Hello, all. I went through the list of bugs and created a shortlist of >> bugs >> that need to be looked at for 2.02. I have marked them with >> plan_release_id >> set to 2.02. >> > > [snip] > > I would l

Re: Bugs and tasks for 2.02[~rc1]

2016-04-17 Thread Vladimir 'phcoder' Serbinenko
On Tuesday, March 29, 2016, Konrad Rzeszutek Wilk wrote: > .snip.. > > What about > > > > - disk IO buffer alignment for small read (I personally prefer the first > > version of Leif's patch that exposes alignment in core, it also allows > > us to print it in ls output) > > > > - F2FS support > >

Bugs and tasks for 2.02[~rc1]

2016-04-17 Thread Vladimir 'phcoder' Serbinenko
Le mar. 22 mars 2016 20:51, Andrei Borzenkov > a écrit : > 22.03.2016 21:48, Vladimir 'phcoder' Serbinenko пишет: > > Sorry, for delay. We have a busy period at work but it should end soon. > > I've put up the list of tasks for 2.02 in a doc: > > > https://docs.google.com/document/d/1O6wveo1_WsAy

[PATCH v2] build: Use AC_HEADER_MAJOR to find device macros

2016-04-17 Thread Mike Gilbert
Depending on the OS/libc, device macros are defined in different headers. sys/mkdev.h - BSD, Sun sys/sysmacros.h - glibc (Linux) glibc currently pulls sys/sysmacros.h into sys/types.h, but this may change in a future release. https://sourceware.org/ml/libc-alpha/2015-11/msg00253.html --- config

Re: [PATCH] build: Use AC_HEADER_MAJOR to find device macros

2016-04-17 Thread Andrei Borzenkov
17.04.2016 18:28, Mike Gilbert пишет: > On Sun, Apr 17, 2016 at 1:53 AM, Andrei Borzenkov wrote: >> 17.04.2016 00:34, Mike Gilbert пишет: >>> Depending on the OS/libc, device macros may be found in 3 places: >>> >> >> Mentioning OS and libc versions that have problem would be helpful. >> > > I am

Re: [PATCH] build: Use AC_HEADER_MAJOR to find device macros

2016-04-17 Thread Mike Gilbert
On Sun, Apr 17, 2016 at 1:53 AM, Andrei Borzenkov wrote: > 17.04.2016 00:34, Mike Gilbert пишет: >> Depending on the OS/libc, device macros may be found in 3 places: >> > > Mentioning OS and libc versions that have problem would be helpful. > I am really only familiar with glibc, though I believe