Ignore:
Timestamp:
Apr 19, 2025, 8:08:37 PM (4 months ago)
Author:
David Azarewicz
Message:

Merge in changes from 6.6-LTS branch.
Fixed additional 25+ problems.

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • GPL/trunk/include/linux/mm.h

    r679 r772  
    1111
    1212#define NUMA_NO_NODE    (-1)
    13 /*
    14  * GFP bitmasks..
    15  */
    16 #define __GFP_WAIT      0x01
    17 #define __GFP_LOW       0x02
    18 #define __GFP_MED       0x04
    19 #define __GFP_HIGH      0x08
    20 #define __GFP_IO        0x10
    21 #define __GFP_SWAP      0x20
    22 #define ___GFP_ZERO             0x100u
    23 #define __GFP_ZERO      ((__force gfp_t)___GFP_ZERO)
    24 
    25 #ifdef TARGET_OS2
    26 #define __GFP_DMAHIGHMEM  0x100
    27 #define GFP_DMAHIGHMEM    __GFP_DMAHIGHMEM
    28 #endif
    29 
    30 #define GFP_BUFFER      (__GFP_LOW | __GFP_WAIT)
    31 #define GFP_ATOMIC      (__GFP_HIGH)
    32 #define GFP_USER        (__GFP_LOW | __GFP_WAIT | __GFP_IO)
    33 #define GFP_HIGHUSER    (GFP_USER | __GFP_HIGHMEM)
    34 #define GFP_KERNEL      (__GFP_MED | __GFP_WAIT | __GFP_IO)
    35 #define GFP_NFS         (__GFP_HIGH | __GFP_WAIT | __GFP_IO)
    36 #define GFP_KSWAPD      (__GFP_IO | __GFP_SWAP)
    37 
    38 /* Flag - indicates that the buffer will be suitable for DMA.  Ignored on some
    39    platforms, used as appropriate on others */
    40 
    41 #define GFP_DMA         __GFP_DMA
    42 
    43 /* Flag - indicates that the buffer can be taken from high memory which is not
    44    directly addressable by the kernel */
    45 
    46 #define GFP_HIGHMEM     __GFP_HIGHMEM
    4713
    4814/*
Note: See TracChangeset for help on using the changeset viewer.