Displaying 3 results from an estimated 3 matches for "gap_end".
2023 Apr 06
3
[PATCH] ocfs2: Fix wrong search logic in __ocfs2_resv_find_window
...2/reservations.c
index a9d1296d736d..eda672622d1d 100644
--- a/fs/ocfs2/reservations.c
+++ b/fs/ocfs2/reservations.c
@@ -458,10 +458,11 @@ static void __ocfs2_resv_find_window(struct ocfs2_reservation_map *resmap,
{
struct rb_root *root = &resmap->m_reservations;
unsigned int gap_start, gap_end, gap_len;
- struct ocfs2_alloc_reservation *prev_resv, *next_resv;
+ struct ocfs2_alloc_reservation *prev_resv, *next_resv, *best_resv;
struct rb_node *prev, *next;
unsigned int cstart, clen;
unsigned int best_start = 0, best_len = 0;
+ int create_new = 0;
/*
* Nasty cases to consider:...
2023 Apr 29
1
[PATCH] ocfs2: Fix wrong search logic in __ocfs2_resv_find_window
...>> --- a/fs/ocfs2/reservations.c
>> +++ b/fs/ocfs2/reservations.c
>> @@ -458,10 +458,11 @@ static void __ocfs2_resv_find_window(struct ocfs2_reservation_map *resmap,
>> {
>> struct rb_root *root = &resmap->m_reservations;
>> unsigned int gap_start, gap_end, gap_len;
>> - struct ocfs2_alloc_reservation *prev_resv, *next_resv;
>> + struct ocfs2_alloc_reservation *prev_resv, *next_resv, *best_resv;
>> struct rb_node *prev, *next;
>> unsigned int cstart, clen;
>> unsigned int best_start = 0, best_len = 0;
>> +...
2023 Apr 21
2
[PATCH] ocfs2: Fix wrong search logic in __ocfs2_resv_find_window
...d736d..eda672622d1d 100644
> --- a/fs/ocfs2/reservations.c
> +++ b/fs/ocfs2/reservations.c
> @@ -458,10 +458,11 @@ static void __ocfs2_resv_find_window(struct ocfs2_reservation_map *resmap,
> {
> struct rb_root *root = &resmap->m_reservations;
> unsigned int gap_start, gap_end, gap_len;
> - struct ocfs2_alloc_reservation *prev_resv, *next_resv;
> + struct ocfs2_alloc_reservation *prev_resv, *next_resv, *best_resv;
> struct rb_node *prev, *next;
> unsigned int cstart, clen;
> unsigned int best_start = 0, best_len = 0;
> + int create_new = 0;
>...